From d217162c3c528b7e129c93efdd3af1e92d9aa2f8 Mon Sep 17 00:00:00 2001 From: Kargatum Date: Tue, 7 Dec 2021 18:53:30 +0700 Subject: [PATCH] feat(Misc): add support new api (#18) --- CMakeLists.txt | 42 - conf/AzerothShard.conf.dist | 31 + conf/Solo3v3.conf.dist | 28 + conf/azth_mod.conf.dist | 15 - .../00_reputation_vendor_table.sql | 13 + .../db-characters/01_reputation_vendor.sql | 10 + data/sql/db-characters/achievements_dbc.sql | 150 + data/sql/db-characters/armory.sql | 49 + data/sql/db-characters/azth_achievements.sql | 7742 +++++ data/sql/db-characters/bonus_rating.sql | 20 + data/sql/db-characters/buy_log.sql | 7 + .../characters_saved_position.sql | 12 + .../characters_smartstone_commands.sql | 9 + data/sql/db-characters/characters_xp_rate.sql | 5 + .../extra_smartstone_commands.sql | 32 + data/sql/db-characters/gh_char.sql | 5 + .../db-characters/groups_maxLevelGroup.sql | 1 + data/sql/db-characters/guildhouses.sql | 13 + .../hearthstone_criteria_credits.sql | 59 + data/sql/db-characters/hearthstone_quests.sql | 20 + data/sql/db-characters/mail_external.sql | 12 + data/sql/db-characters/pve_stats.sql | 12 + data/sql/db-characters/pvpMode.sql | 9 + .../table_azth_character_morph.sql | 9 + data/sql/db-characters/timewalking.sql | 5047 ++++ data/sql/db-characters/transmog_items.sql | 19529 ++++++++++++ data/sql/db-characters/worldstates.sql | 1 + data/sql/db-world/00-general.sql | 66 + data/sql/db-world/01_items.sql | 24718 ++++++++++++++++ data/sql/db-world/02_pve_quests.sql | 84 + data/sql/db-world/03_update.sql | 119 + data/sql/db-world/04_vendors.sql | 151 + data/sql/db-world/05_quest_tier3.sql | 216 + data/sql/db-world/06_pvp_quests.sql | 216 + data/sql/db-world/07_sacks_of_marks.sql | 61 + data/sql/db-world/08_update.sql | 2 + data/sql/db-world/09_lfg_rewards_update.sql | 11 + data/sql/db-world/10_pvp_quest_english.sql | 56 + data/sql/db-world/alias.sql | 13 + data/sql/db-world/azth_gm_commands.sql | 536 + data/sql/db-world/creature_template.sql | 1 + data/sql/db-world/no_info_announcer.sql | 4 + data/sql/db-world/npc_text.sql | 7 + data/sql/db-world/season.sql | 25 + data/sql/db-world/trainer_spells.sql | 131 + data/sql/db-world/trainers.sql | 14 + data/sql/db-world/world_smartstone.sql | 150 + src/ASCommon/AzthFirstKills.cpp | 193 + src/ASCommon/AzthFirstKills.h | 38 + src/ASCommon/AzthLanguage.cpp | 78 + src/ASCommon/AzthLanguage.h | 38 + src/ASCommon/AzthLanguageStrings.cpp | 142 + src/ASCommon/AzthLanguageStrings.h | 122 + src/ASCommon/AzthMiscPlg.cpp | 61 + src/ASCommon/AzthObject.cpp | 12 + src/ASCommon/AzthObject.h | 63 + src/ASCommon/AzthPlayer.cpp | 705 + src/ASCommon/AzthPlayer.h | 257 + src/ASCommon/AzthPlayerPlg.cpp | 113 + src/ASCommon/AzthSharedDefines.cpp | 4 + src/ASCommon/AzthSharedDefines.h | 90 + src/ASCommon/AzthSystem.cpp | 1 + src/ASCommon/AzthSystem.h | 11 + src/ASCommon/AzthUtils.cpp | 1075 + src/ASCommon/AzthUtils.h | 155 + src/ASCommon/AzthWorldScript.cpp | 27 + src/ASCommon/PluginsMgr.cpp | 13 + src/ASCommon/PluginsMgr.h | 34 + src/ASCommon/cs_azth_custom.cpp | 85 + src/ASCommon/tests/AzthPlgTests.cpp | 1 + src/ASCommon/tests/AzthPlgTests.h | 7 + src/ASCommon/tests/AzthTestSystem.cpp | 27 + src/ASCommon/tests/AzthTestSystem.h | 16 + src/ASPlatform/AZTH.cpp | 384 + src/ASPlatform/AZTH.h | 90 + src/ASPlatform/AZTH_SC.cpp | 1807 ++ src/ArenaSolo3v3/Solo3v3.cpp | 402 + src/ArenaSolo3v3/Solo3v3.h | 131 + src/ArenaSolo3v3/Solo3v3_SC.cpp | 471 + src/ChallengeMode/ChallengeModeMgr.cpp | 45 + src/ChallengeMode/ChallengeModeMgr.h | 45 + src/ChallengeMode/ChallengeModeScript.cpp | 135 + src/GuildHouse/GuildHouse.cpp | 485 + src/GuildHouse/GuildHouse.h | 130 + src/GuildHouse/Teleport.cpp | 374 + src/GuildHouse/Teleport.h | 150 + src/GuildHouse/npc_guildhouse.cpp | 1279 + src/HearthstoneMode/PlayerHearthstoneMode.cpp | 146 + .../azth_custom_hearthstone_mode.cpp | 1216 + .../azth_custom_hearthstone_mode.h | 121 + src/Playerstats/AzthAchievement.cpp | 114 + src/Playerstats/AzthAchievement.h | 65 + src/Playerstats/AzthGroupMgr.cpp | 34 + src/Playerstats/AzthGroupMgr.h | 18 + src/Playerstats/AzthInstanceMgr.cpp | 25 + src/Playerstats/AzthInstanceMgr.h | 21 + src/Playerstats/PStatsScripts.cpp | 107 + src/Playerstats/PlayerStats.cpp | 164 + src/PvpItemLevel/ArenaSeason.cpp | 104 + src/PvpItemLevel/ArenaSeason.h | 41 + src/PvpItemLevel/BGItemLevel.cpp | 249 + src/PvpMode/PlayerPvP.cpp | 28 + src/PvpMode/ProfessionNpc.cpp | 350 + src/PvpMode/PvPMode.cpp | 230 + src/Smartstone/Apps.h | 63 + src/Smartstone/AzthSmartStone.cpp | 620 + src/Smartstone/AzthSmartStone.h | 76 + src/Smartstone/CharApps.cpp | 46 + src/Smartstone/Misc.cpp | 64 + src/Smartstone/PlayerSmartstone.cpp | 378 + src/Smartstone/PvPApps.cpp | 7 + src/Timewalking/AzthLevelStat.cpp | 70 + src/Timewalking/AzthLevelStat.h | 125 + src/Timewalking/AzthTimewalkingUtils.cpp | 686 + src/Timewalking/PlayerTimewalking.cpp | 400 + src/Timewalking/TimeWalking.cpp | 886 + src/Timewalking/raid.cpp | 114 + src/Timewalking/raid.h | 52 + src/Tournament/RatingBonus.cpp | 106 + src/Tournament/RatingBonus.h | 32 + src/XpRates/AzthRateScript.cpp | 41 + src/XpRates/CustomRates.cpp | 50 + src/XpRates/CustomRates.h | 24 + src/XpRates/PlayerXpRates.cpp | 38 + src/azeroth_shard_loader.cpp | 56 + src/loader.cpp | 5 - 126 files changed, 75669 insertions(+), 62 deletions(-) delete mode 100644 CMakeLists.txt create mode 100644 conf/AzerothShard.conf.dist create mode 100644 conf/Solo3v3.conf.dist delete mode 100644 conf/azth_mod.conf.dist create mode 100644 data/sql/db-characters/00_reputation_vendor_table.sql create mode 100644 data/sql/db-characters/01_reputation_vendor.sql create mode 100644 data/sql/db-characters/achievements_dbc.sql create mode 100644 data/sql/db-characters/armory.sql create mode 100644 data/sql/db-characters/azth_achievements.sql create mode 100644 data/sql/db-characters/bonus_rating.sql create mode 100644 data/sql/db-characters/buy_log.sql create mode 100644 data/sql/db-characters/characters_saved_position.sql create mode 100644 data/sql/db-characters/characters_smartstone_commands.sql create mode 100644 data/sql/db-characters/characters_xp_rate.sql create mode 100644 data/sql/db-characters/extra_smartstone_commands.sql create mode 100644 data/sql/db-characters/gh_char.sql create mode 100644 data/sql/db-characters/groups_maxLevelGroup.sql create mode 100644 data/sql/db-characters/guildhouses.sql create mode 100644 data/sql/db-characters/hearthstone_criteria_credits.sql create mode 100644 data/sql/db-characters/hearthstone_quests.sql create mode 100644 data/sql/db-characters/mail_external.sql create mode 100644 data/sql/db-characters/pve_stats.sql create mode 100644 data/sql/db-characters/pvpMode.sql create mode 100644 data/sql/db-characters/table_azth_character_morph.sql create mode 100644 data/sql/db-characters/timewalking.sql create mode 100644 data/sql/db-characters/transmog_items.sql create mode 100644 data/sql/db-characters/worldstates.sql create mode 100644 data/sql/db-world/00-general.sql create mode 100644 data/sql/db-world/01_items.sql create mode 100644 data/sql/db-world/02_pve_quests.sql create mode 100644 data/sql/db-world/03_update.sql create mode 100644 data/sql/db-world/04_vendors.sql create mode 100644 data/sql/db-world/05_quest_tier3.sql create mode 100644 data/sql/db-world/06_pvp_quests.sql create mode 100644 data/sql/db-world/07_sacks_of_marks.sql create mode 100644 data/sql/db-world/08_update.sql create mode 100644 data/sql/db-world/09_lfg_rewards_update.sql create mode 100644 data/sql/db-world/10_pvp_quest_english.sql create mode 100644 data/sql/db-world/alias.sql create mode 100644 data/sql/db-world/azth_gm_commands.sql create mode 100644 data/sql/db-world/creature_template.sql create mode 100644 data/sql/db-world/no_info_announcer.sql create mode 100644 data/sql/db-world/npc_text.sql create mode 100644 data/sql/db-world/season.sql create mode 100644 data/sql/db-world/trainer_spells.sql create mode 100644 data/sql/db-world/trainers.sql create mode 100644 data/sql/db-world/world_smartstone.sql create mode 100644 src/ASCommon/AzthFirstKills.cpp create mode 100644 src/ASCommon/AzthFirstKills.h create mode 100644 src/ASCommon/AzthLanguage.cpp create mode 100644 src/ASCommon/AzthLanguage.h create mode 100644 src/ASCommon/AzthLanguageStrings.cpp create mode 100644 src/ASCommon/AzthLanguageStrings.h create mode 100644 src/ASCommon/AzthMiscPlg.cpp create mode 100644 src/ASCommon/AzthObject.cpp create mode 100644 src/ASCommon/AzthObject.h create mode 100644 src/ASCommon/AzthPlayer.cpp create mode 100644 src/ASCommon/AzthPlayer.h create mode 100644 src/ASCommon/AzthPlayerPlg.cpp create mode 100644 src/ASCommon/AzthSharedDefines.cpp create mode 100644 src/ASCommon/AzthSharedDefines.h create mode 100644 src/ASCommon/AzthSystem.cpp create mode 100644 src/ASCommon/AzthSystem.h create mode 100644 src/ASCommon/AzthUtils.cpp create mode 100644 src/ASCommon/AzthUtils.h create mode 100644 src/ASCommon/AzthWorldScript.cpp create mode 100644 src/ASCommon/PluginsMgr.cpp create mode 100644 src/ASCommon/PluginsMgr.h create mode 100644 src/ASCommon/cs_azth_custom.cpp create mode 100644 src/ASCommon/tests/AzthPlgTests.cpp create mode 100644 src/ASCommon/tests/AzthPlgTests.h create mode 100644 src/ASCommon/tests/AzthTestSystem.cpp create mode 100644 src/ASCommon/tests/AzthTestSystem.h create mode 100644 src/ASPlatform/AZTH.cpp create mode 100644 src/ASPlatform/AZTH.h create mode 100644 src/ASPlatform/AZTH_SC.cpp create mode 100644 src/ArenaSolo3v3/Solo3v3.cpp create mode 100644 src/ArenaSolo3v3/Solo3v3.h create mode 100644 src/ArenaSolo3v3/Solo3v3_SC.cpp create mode 100644 src/ChallengeMode/ChallengeModeMgr.cpp create mode 100644 src/ChallengeMode/ChallengeModeMgr.h create mode 100644 src/ChallengeMode/ChallengeModeScript.cpp create mode 100644 src/GuildHouse/GuildHouse.cpp create mode 100644 src/GuildHouse/GuildHouse.h create mode 100644 src/GuildHouse/Teleport.cpp create mode 100644 src/GuildHouse/Teleport.h create mode 100644 src/GuildHouse/npc_guildhouse.cpp create mode 100644 src/HearthstoneMode/PlayerHearthstoneMode.cpp create mode 100644 src/HearthstoneMode/azth_custom_hearthstone_mode.cpp create mode 100644 src/HearthstoneMode/azth_custom_hearthstone_mode.h create mode 100644 src/Playerstats/AzthAchievement.cpp create mode 100644 src/Playerstats/AzthAchievement.h create mode 100644 src/Playerstats/AzthGroupMgr.cpp create mode 100644 src/Playerstats/AzthGroupMgr.h create mode 100644 src/Playerstats/AzthInstanceMgr.cpp create mode 100644 src/Playerstats/AzthInstanceMgr.h create mode 100644 src/Playerstats/PStatsScripts.cpp create mode 100644 src/Playerstats/PlayerStats.cpp create mode 100644 src/PvpItemLevel/ArenaSeason.cpp create mode 100644 src/PvpItemLevel/ArenaSeason.h create mode 100644 src/PvpItemLevel/BGItemLevel.cpp create mode 100644 src/PvpMode/PlayerPvP.cpp create mode 100644 src/PvpMode/ProfessionNpc.cpp create mode 100644 src/PvpMode/PvPMode.cpp create mode 100644 src/Smartstone/Apps.h create mode 100644 src/Smartstone/AzthSmartStone.cpp create mode 100644 src/Smartstone/AzthSmartStone.h create mode 100644 src/Smartstone/CharApps.cpp create mode 100644 src/Smartstone/Misc.cpp create mode 100644 src/Smartstone/PlayerSmartstone.cpp create mode 100644 src/Smartstone/PvPApps.cpp create mode 100644 src/Timewalking/AzthLevelStat.cpp create mode 100644 src/Timewalking/AzthLevelStat.h create mode 100644 src/Timewalking/AzthTimewalkingUtils.cpp create mode 100644 src/Timewalking/PlayerTimewalking.cpp create mode 100644 src/Timewalking/TimeWalking.cpp create mode 100644 src/Timewalking/raid.cpp create mode 100644 src/Timewalking/raid.h create mode 100644 src/Tournament/RatingBonus.cpp create mode 100644 src/Tournament/RatingBonus.h create mode 100644 src/XpRates/AzthRateScript.cpp create mode 100644 src/XpRates/CustomRates.cpp create mode 100644 src/XpRates/CustomRates.h create mode 100644 src/XpRates/PlayerXpRates.cpp create mode 100644 src/azeroth_shard_loader.cpp delete mode 100644 src/loader.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index 8c14f85..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,42 +0,0 @@ -CU_SET_PATH("CMAKE_AZTH_DIR" "${CMAKE_CURRENT_LIST_DIR}") - -MACRO(AZTH_LOAD_SRC dir) - CU_SUBDIRLIST(sub_DIRS "${CMAKE_AZTH_DIR}/modules/${dir}" TRUE TRUE) - FOREACH(subdir ${sub_DIRS}) - get_filename_component(azth_dir_name ${subdir} DIRECTORY) - - if (NOT (${azth_dir_name} STREQUAL "tests") OR AZTH_WITH_UNIT_TEST) - file(GLOB sources "${subdir}/*.cpp" "${subdir}/*.h") - - set(azth_STAT_SRCS - ${azth_STAT_SRCS} - ${sources} - ) - - set(azth_DIRS - ${subdir} - ${azth_DIRS} - ) - endif() - ENDFOREACH() -ENDMACRO() - -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-as-platform") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-as-common") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-arena-solo-3v3") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-guildhouse") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-hearthstone-mode") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-playerstats") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-challenge-mode") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-pvpitemlevel") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-pvp-mode") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-smartstone") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-timewalking") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-tournament") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/modules/mod-xp-rates") - -AC_ADD_SCRIPTS("${CMAKE_CURRENT_LIST_DIR}/src/") - - -# Add config file -AC_ADD_CONFIG_FILE("${CMAKE_CURRENT_LIST_DIR}/mod-as-common/conf/azth_mod.conf.dist") diff --git a/conf/AzerothShard.conf.dist b/conf/AzerothShard.conf.dist new file mode 100644 index 0000000..5c60955 --- /dev/null +++ b/conf/AzerothShard.conf.dist @@ -0,0 +1,31 @@ +# +# This file is part of the AzerothCore Project. See AUTHORS file for Copyright information +# +# This file is free software; as a special exception the author gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# + +######################################## +# AzerothShard module configuration +######################################## + +# +# Difference between the position level and the player level to disable the reward +# default: 0 (disabled) +# + +ChallengeMode.noReward.deltaLevelHigher = 0 +ChallengeMode.noReward.deltaLevelLower = 0 + +# +# Position levels to start checking for the difference between the position and the player level +# default: 0 (disabled) +# + +ChallengeMode.noReward.startLevelHigher = 0 +ChallengeMode.noReward.startLevelLower = 0 diff --git a/conf/Solo3v3.conf.dist b/conf/Solo3v3.conf.dist new file mode 100644 index 0000000..6e83c15 --- /dev/null +++ b/conf/Solo3v3.conf.dist @@ -0,0 +1,28 @@ +# +# Copyright (С) since 2019 Andrei Guluaev (Winfidonarleyan/Kargatum) https://github.com/Winfidonarleyan +# + +############################### +# Custom configuration system # +############################### +[worldserver] + +################################################################################################### +# SOLO 3v3 ARENA +# +# Solo.3v3.Enable +# Description: Enable system +# Default: 1 +# + +Solo.3v3.Enable = 1 +Solo.3v3.MinLevel = 80 +Solo.3v3.Cost = 45 +Solo.3v3.ArenaPointsMulti = 0.8 +Solo.3v3.FilterTalents = 1 +Solo.3v3.VendorRating = 1 +Arena.1v1.BlockForbiddenTalents = 0 +Arena.CheckEquipAndTalents = 1 +Solo.3v3.CastDeserterOnAfk = 1 +Solo.3v3.CastDeserterOnLeave = 1 +Solo.3v3.StopGameIncomplete = 1 diff --git a/conf/azth_mod.conf.dist b/conf/azth_mod.conf.dist deleted file mode 100644 index f9a5ca8..0000000 --- a/conf/azth_mod.conf.dist +++ /dev/null @@ -1,15 +0,0 @@ -[worldserver] - -# -# Difference between the position level and the player level to disable the reward -# default: 0 (disabled) -# -ChallengeMode.noReward.deltaLevelHigher=0 -ChallengeMode.noReward.deltaLevelLower=0 - -# -# Position levels to start checking for the difference between the position and the player level -# default: 0 (disabled) -# -ChallengeMode.noReward.startLevelHigher=0 -ChallengeMode.noReward.startLevelLower=0 diff --git a/data/sql/db-characters/00_reputation_vendor_table.sql b/data/sql/db-characters/00_reputation_vendor_table.sql new file mode 100644 index 0000000..9f1d9e9 --- /dev/null +++ b/data/sql/db-characters/00_reputation_vendor_table.sql @@ -0,0 +1,13 @@ +DROP TABLE IF EXISTS `reputation_vendor`; +CREATE TABLE `reputation_vendor`( + `vendorId` INT(10) NOT NULL COMMENT 'vendor id', + `reputation` INT(10) NOT NULL DEFAULT 948 COMMENT 'faction required', + `value` INT(10) NOT NULL DEFAULT 3000 COMMENT 'how much reputation is required', + `gossipSatisfied` INT(10) NOT NULL COMMENT 'gossip id when enough reputation', + `gossipUnsatisfied` INT(10) NOT NULL COMMENT 'gossip id when not enough reputation', + PRIMARY KEY (`vendorId`) +); + +-- vendor pvp only +ALTER TABLE `reputation_vendor` + ADD COLUMN `PvPVendor` INT(1) NOT NULL DEFAULT '0' AFTER `gossipUnsatisfied`; diff --git a/data/sql/db-characters/01_reputation_vendor.sql b/data/sql/db-characters/01_reputation_vendor.sql new file mode 100644 index 0000000..f6c480c --- /dev/null +++ b/data/sql/db-characters/01_reputation_vendor.sql @@ -0,0 +1,10 @@ +DELETE FROM `reputation_vendor` WHERE vendorId IN (100002, 100003, 100004, 100005, 100006, 100100, 100101, 100102, 100103); +INSERT INTO `reputation_vendor` (vendorId, reputation, `value`, gossipSatisfied, gossipUnsatisfied) VALUES +(100002, 948, 0, 32001, 32010), +(100003, 948, 3000, 32001, 32010), +(100004, 948, 6000, 32001, 32010), +(100005, 948, 12000, 32001, 32010), +(100006, 948, 21000, 32001, 32010), +(100100, 948, 3000, 32000, 32010), +(100101, 948, 6000, 32002, 32010), +(100102, 948, 0, 32003, 32010); \ No newline at end of file diff --git a/data/sql/db-characters/achievements_dbc.sql b/data/sql/db-characters/achievements_dbc.sql new file mode 100644 index 0000000..7f8ab39 --- /dev/null +++ b/data/sql/db-characters/achievements_dbc.sql @@ -0,0 +1,150 @@ +-- Table structure for table `achievement` + +DROP TABLE IF EXISTS `achievement`; +CREATE TABLE `achievement` ( + `ID` int(11) DEFAULT NULL, + `Faction` int(11) DEFAULT NULL, + `Map` int(11) DEFAULT NULL, + `Previous` int(11) DEFAULT NULL, + `Name` varchar(255) DEFAULT NULL, + `field6` varchar(255) DEFAULT NULL, + `field7` varchar(255) DEFAULT NULL, + `field8` varchar(255) DEFAULT NULL, + `field9` varchar(255) DEFAULT NULL, + `field10` varchar(255) DEFAULT NULL, + `field11` varchar(255) DEFAULT NULL, + `field12` varchar(255) DEFAULT NULL, + `field13` varchar(255) DEFAULT NULL, + `field14` varchar(255) DEFAULT NULL, + `field15` varchar(255) DEFAULT NULL, + `field16` varchar(255) DEFAULT NULL, + `field17` varchar(255) DEFAULT NULL, + `field18` varchar(255) DEFAULT NULL, + `field19` varchar(255) DEFAULT NULL, + `field20` varchar(255) DEFAULT NULL, + `field21` varchar(255) DEFAULT NULL, + `Description` varchar(255) DEFAULT NULL, + `field23` varchar(255) DEFAULT NULL, + `field24` varchar(255) DEFAULT NULL, + `field25` varchar(255) DEFAULT NULL, + `field26` int(11) DEFAULT NULL, + `field27` varchar(255) DEFAULT NULL, + `field28` varchar(255) DEFAULT NULL, + `field29` varchar(255) DEFAULT NULL, + `field30` varchar(255) DEFAULT NULL, + `field31` varchar(255) DEFAULT NULL, + `field32` varchar(255) DEFAULT NULL, + `field33` varchar(255) DEFAULT NULL, + `field34` varchar(255) DEFAULT NULL, + `field35` varchar(255) DEFAULT NULL, + `field36` varchar(255) DEFAULT NULL, + `field37` varchar(255) DEFAULT NULL, + `field38` varchar(255) DEFAULT NULL, + `Category` int(11) DEFAULT NULL, + `Points` int(11) DEFAULT NULL, + `OrderInGroup` int(11) DEFAULT NULL, + `Flags` int(11) DEFAULT NULL, + `SpellIcon` int(11) DEFAULT NULL, + `Reward` varchar(255) DEFAULT NULL, + `field45` varchar(255) DEFAULT NULL, + `field46` varchar(255) DEFAULT NULL, + `Bonus` varchar(255) DEFAULT NULL, + `field48` varchar(255) DEFAULT NULL, + `field49` varchar(255) DEFAULT NULL, + `field50` varchar(255) DEFAULT NULL, + `field51` varchar(255) DEFAULT NULL, + `field52` varchar(255) DEFAULT NULL, + `field53` varchar(255) DEFAULT NULL, + `field54` varchar(255) DEFAULT NULL, + `field55` varchar(255) DEFAULT NULL, + `field56` varchar(255) DEFAULT NULL, + `field57` varchar(255) DEFAULT NULL, + `field58` varchar(255) DEFAULT NULL, + `field59` varchar(255) DEFAULT NULL, + `field60` varchar(255) DEFAULT NULL, + `Demands` int(11) DEFAULT NULL, + `ReferencedAchievement` int(11) DEFAULT NULL, + `icon` text +); + +-- Data for table `achievement` + +LOCK TABLES `achievement` WRITE; +INSERT INTO `achievement` VALUES (6,-1,-1,0,'Level 10','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Reach level 10.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,1,4,3268,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_level_10'),(33,1,-1,0,'Nothing Boring About Borean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 130 quests in Borean Tundra.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,1,136,3336,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_boreantundra_07'),(42,-1,-1,0,'Explore Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore the regions of Eastern Kingdoms.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',97,25,1,0,3490,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_easternkingdoms_01'),(57,-1,30,0,'Deaths in Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in Alterac Valley','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',124,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(60,-1,-1,0,'Total deaths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total deaths','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',122,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(98,-1,-1,0,'Quests completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Quests completed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',133,0,1,9,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(107,-1,-1,0,'Creatures killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Creatures killed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',135,0,1,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(112,-1,-1,0,'Deaths from drowning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths from drowning','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',126,0,1,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(116,-1,-1,0,'Professional Journeyman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Journeyman in a profession.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',169,10,1,0,2846,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_note_01'),(121,-1,-1,0,'Journeyman Cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Journeyman Cook.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,1,0,1467,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_15'),(126,-1,-1,0,'Journeyman Fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Journeyman Fisherman.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,1,0,580,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_fishing'),(131,-1,-1,0,'Journeyman in First Aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Journeyman in first aid.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',172,10,1,0,504,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_sealofsacrifice'),(154,-1,529,0,'Arathi Basin Victory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Arathi Basin.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,1,0,3381,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winab'),(166,-1,489,0,'Warsong Gulch Victory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Warsong Gulch.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,1,0,3387,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winwsg'),(193,-1,-1,0,'Largest hit dealt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Largest hit dealt','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',141,0,1,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(208,-1,566,0,'Eye of the Storm Victory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Eye of the Storm.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,1,0,3384,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_wineos'),(218,-1,30,0,'Alterac Valley Victory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Alterac Valley.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,1,0,3377,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winav'),(238,-1,-1,0,'An Honorable Kill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Achieve an honorable kill.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,1,0,3454,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_p_01'),(263,-1,-1,0,'Ice the Frost Lord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Slay Ahune in the Slave Pens.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,1,0,94,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_frost_summonwaterelemental'),(273,-1,-1,0,'On Metzen!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Save Metzen the Reindeer.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,1,0,3703,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_worldevent_reindeer'),(319,-1,-1,0,'Duels won','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Duels won','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',154,0,1,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(321,-1,-1,0,'Total raid and dungeon deaths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total raid and dungeon deaths','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,1,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(328,-1,-1,0,'Total gold acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total gold acquired','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,1,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(344,-1,-1,0,'Bandages used','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Bandages used','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,1,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(349,-1,-1,0,'Flight paths taken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Flight paths taken','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',134,0,1,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(377,-1,-1,0,'Most factions at Exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most factions at Exalted','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',147,0,1,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(397,-1,-1,0,'Step Into The Arena','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win a ranked arena match at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,1,0,3601,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_featsofstrength_gladiator_10'),(457,-1,-1,0,'Realm First! Level 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,1,256,3275,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_level_80'),(477,-1,574,0,'Utgarde Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in Utgarde Keep.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,1,0,3226,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_utgardekeep_normal'),(489,-1,574,0,'Heroic: Utgarde Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Utgarde Keep bosses on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,1,0,3225,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_utgardekeep_heroic'),(503,-1,-1,0,'50 Quests Completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 50 quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,1,0,3421,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_01'),(522,-1,-1,0,'Somebody Likes Me','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise a reputation to Exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,10,1,0,3609,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_01'),(588,-1,-1,0,'Total Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(605,-1,-1,0,'A Coin of Ancestry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Receive a Coin of Ancestry.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,1,0,2717,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_elvencoins'),(625,-1,615,0,'Besting the Black Dragonflight (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sartharion the Onyx Guardian in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,25,1,0,3255,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_coablackdragonflight_10man'),(629,-1,-1,0,'Ragefire Chasm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Taragaman the Hungerer.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,1,0,1983,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_shadow_summonfelguard'),(647,-1,-1,0,'Hellfire Ramparts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Omor the Unscarred.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,1,0,3680,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_omartheunscarred_01'),(728,-1,-1,0,'Explore Durotar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Durotar, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,1,0,3532,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_durotar'),(763,0,-1,0,'The Burning Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise all of The Burning Crusade dungeon reputations to exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,20,1,0,2365,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_felfireward'),(776,-1,-1,0,'Explore Elwynn Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Elwynn Forest, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,1,0,3536,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_elwynnforest'),(796,-1,-1,0,'Resurrected by priests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Resurrected by priests','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',127,0,1,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(837,-1,-1,0,'Arenas won','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Arenas won','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,1,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(839,-1,-1,0,'Battlegrounds played','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Battlegrounds played','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,1,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(862,-1,-1,0,'Explore Hellfire Peninsula','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Hellfire Peninsula, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14779,10,1,0,3554,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_hellfirepeninsula_01'),(913,-1,-1,0,'To Honor One\'s Elders','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Lunar Festival achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,30,1,0,3698,'Title Reward: Elder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_worldevent_lunar'),(927,-1,-1,0,'Equipped epic items in item slots','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Equipped epic items in item slots','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',191,0,1,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(932,-1,-1,0,'Total 5-player dungeons entered','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total 5-player dungeons entered','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(939,-1,-1,0,'Hills Like White Elekk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete all of Hemet Nesingwary quests in Nagrand up to and including The Ultimate Bloodsport.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,1,0,2165,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mount_ridingelekk'),(940,-1,-1,0,'The Green Hills of Stranglethorn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete all of Hemet Nesingwary quests in Stranglethorn Vale up to and including The Green Hills of Stranglethorn and Big Game Hunter.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14861,10,1,0,916,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mount_whitetiger'),(946,-1,-1,0,'The Argent Dawn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Argent Dawn.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14864,15,1,0,1608,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_talisman_07'),(947,-1,-1,0,'The Argent Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Argent Crusade.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,15,1,0,1672,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_talisman_08'),(972,-1,-1,0,'Trick or Treat!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Receive a handful of a candy from one of the Candy Buckets located in an inn.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,1,0,2652,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_30'),(1042,-1,-1,0,'Number of hugs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Number of hugs','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',131,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1057,-1,-1,0,'Deaths in 2v2','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in 2v2','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',123,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1068,-1,542,0,'Keli\'dan the Breaker kills (The Blood Furnace)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Keli\'dan the Breaker kills (The Blood Furnace)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,1,1,541,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_shadow_bloodboil'),(1091,-1,36,0,'Edwin VanCleef kills (Deadmines)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Edwin VanCleef kills (Deadmines)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,1,1,2692,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_bandana_03'),(1149,-1,-1,0,'Talent tree respecs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Talent tree respecs','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',130,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1184,1,-1,0,'Strange Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Drink the Brewfest beers listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',162,10,1,0,1780,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_drink_08'),(1197,-1,-1,0,'Total kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',128,0,1,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1199,-1,-1,0,'Professions learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Professions learned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',132,0,1,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1242,-1,574,0,'Ingvar the Plunderer kills (Utgarde Keep)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ingvar the Plunderer kills (Utgarde Keep)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,1,1,2813,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_helmet_130'),(1264,-1,-1,0,'Explore Borean Tundra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Borean Tundra, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14780,10,1,0,3330,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_boreantundra_01'),(1283,-1,-1,0,'Classic Dungeonmaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the classic dungeon achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,1,0,1949,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_holy_revivechampion'),(1308,-1,607,0,'Strand of the Ancients Victory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Strand of the Ancients.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,1,0,3402,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_bg_winsoa'),(1487,-1,-1,0,'Total Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1501,-1,-1,0,'Total deaths from other players','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total deaths from other players','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',21,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'trade_engineering'),(1524,-1,-1,0,'Cooking skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cooking skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',178,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1527,-1,-1,0,'Highest Alchemy skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest Alchemy skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1701,-1,-1,0,'Be Mine!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eat the eight \"Bag of Candies\" heart candies listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,1,0,3196,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'inv_valentinescandy'),(1717,-1,571,0,'Wintergrasp Victory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win the battle for Wintergrasp.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,1,0,187,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_frost_chillingblast'),(1791,-1,-1,0,'Home Alone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Use your Hearthstone while your orphan is with you.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',163,10,1,0,776,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_rune_01'),(1876,-1,615,0,'Besting the Black Dragonflight (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sartharion the Onyx Guardian in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,1,0,3254,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_dungeon_coablackdragonflight'),(2676,-1,-1,0,'I Found One!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Find a Brightly Colored Egg.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,1,0,3202,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_egg_09'),(2756,-1,-1,0,'Argent Aspiration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Train to compete in the Argent Tournament by becoming an Aspirant for your race\'s faction.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,1,0,3805,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'achievement_reputation_argentcrusader'),(2856,-1,603,0,'Flame Leviathan kills (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Flame Leviathan kills (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,1,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2886,-1,603,0,'The Siege of Ulduar (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Siege area of Ulduar in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,1,0,3844,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_dungeon_ulduarraid_archway_01'),(2887,-1,603,0,'The Siege of Ulduar (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Siege area of Ulduar in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,1,0,3844,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_dungeon_ulduarraid_archway_01'),(3579,-1,-1,0,'\"FOOD FIGHT!\"','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Bounce food off a fellow feaster\'s head at a Bountiful Table.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,1,0,456,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',1,0,'ability_warrior_battleshout'),(3776,-1,628,0,'Isle of Conquest Victory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Isle of Conquest.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,1,0,4002,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_shield_61'),(3916,-1,-1,0,'Call of the Crusade (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in the Trial of the Crusader in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15002,10,1,0,3744,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','150973000',0,0,'achievement_reputation_argentchampion'),(3917,-1,-1,0,'Call of the Crusade (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in the Trial of the Crusader in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,1,0,3744,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','150973000',0,0,'achievement_reputation_argentchampion'),(4018,-1,-1,0,'Victories over Hunter Champion (Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Hunter Champion (Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,1,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4531,-1,631,0,'Storming the Citadel (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the first four bosses in Icecrown Citadel in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,1,0,4167,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_icecrownentrance'),(4604,-1,631,0,'Storming the Citadel (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the first four bosses in Icecrown Citadel in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,1,0,4167,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_icecrownentrance'),(4713,-1,-1,0,'Bronjahm kills (Forge of Souls)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,1,5,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(7,-1,-1,6,'Level 20','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Reach level 20.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,2,4,3269,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_level_20'),(43,-1,-1,0,'Explore Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore the regions of Kalimdor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',97,25,2,0,3491,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_kalimdor_01'),(59,-1,529,0,'Deaths in Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in Arathi Basin','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',124,0,2,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(95,-1,-1,0,'Average quests completed per day','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Average quests completed per day','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',133,0,2,73,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,98,'NULL'),(122,-1,-1,121,'Expert Cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become an Expert Cook.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,2,0,1467,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_15'),(127,-1,-1,126,'Expert Fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become an Expert Fisherman.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,2,0,580,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_fishing'),(132,-1,-1,131,'Expert in First Aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become an Expert in first aid.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',172,10,2,0,504,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_sealofsacrifice'),(155,-1,529,154,'Arathi Basin Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 100 victories in Arathi Basin.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,2,0,3382,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_win_ab_x_times'),(167,-1,489,166,'Warsong Gulch Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 100 victories in Warsong Gulch.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,2,0,3388,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_win_wsg_x_times'),(209,-1,566,208,'Eye of the Storm Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 100 victories in Eye of the Storm.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,2,0,3385,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_win_eos_x_times'),(219,-1,30,218,'Alterac Valley Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 100 victories in Alterac Valley.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,2,0,3378,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_win_av_x_times'),(252,-1,-1,0,'With a Little Helper from My Friends','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn 50 honorable kills as a Little Helper from the Winter Wondervolt machine.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,2,136,3679,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_worldevent_littlehelper'),(260,-1,-1,0,'Charming','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Create 12 Lovely Charm Bracelets.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,2,0,4134,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_necklace_43'),(271,-1,-1,0,'Burning Hot Pole Dance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Dance at the ribbon pole for 60 seconds while wearing completed Midsummer set.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,2,0,3262,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mage_firestarter'),(288,-1,-1,0,'Out With It','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eat so many Tricky Treats that you get an upset tummy.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,2,0,97,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_shadow_plaguecloud'),(318,-1,-1,0,'Total deaths from opposite faction','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',21,0,2,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(320,-1,-1,0,'Duels lost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Duels lost','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',154,0,2,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(342,-1,-1,0,'Epic items acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Epic items acquired','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',191,0,2,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(378,-1,-1,0,'Most factions at Revered or higher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most factions at Revered or higher','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',147,0,2,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(381,-1,-1,0,'World Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','World Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,2,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(398,-1,-1,397,'Mercilessly Dedicated','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win 100 ranked arena matches at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,2,0,3593,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_featsofstrength_gladiator_01'),(467,-1,-1,0,'Realm First! Level 80 Shaman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First shaman on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,2,256,38,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_nature_bloodlust'),(478,-1,576,0,'The Nexus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in The Nexus.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,2,0,3227,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_nexus70_normal'),(490,-1,576,0,'Heroic: The Nexus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat The Nexus bosses on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,2,0,3228,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_nexus70_heroic'),(504,-1,-1,503,'100 Quests Completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 100 quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,2,0,3420,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_02'),(513,-1,-1,238,'100 Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get 100 honorable kills.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,2,0,3455,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_p_02'),(523,-1,-1,522,'5 Exalted Reputations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise 5 reputations to Exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,10,2,0,3609,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_01'),(527,-1,-1,0,'Largest hit received','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Largest hit received','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',141,0,2,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(594,-1,-1,0,'Deaths from Hogger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths from Hogger','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',126,0,2,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(606,-1,-1,605,'5 Coins of Ancestry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Receive 5 Coins of Ancestry.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,2,0,2717,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_elvencoins'),(624,-1,615,0,'Less Is More (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sartharion the Onyx Guardian and the Twilight Drakes with fewer than 9 players in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,2,0,3253,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_coablackdragonflight_heroic'),(627,-1,-1,0,'Explore Dun Morogh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Dun Morogh, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,2,0,3531,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_dunmorogh'),(628,-1,-1,0,'Deadmines','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Edwin VanCleef.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,2,0,3627,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_edwinvancleef'),(648,-1,542,0,'The Blood Furnace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Keli\'dan the Breaker.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,2,0,3629,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_kelidanthebreaker'),(731,-1,-1,116,'Professional Expert','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become an Expert in a profession.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',169,10,2,0,2846,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_note_01'),(736,-1,-1,0,'Explore Mulgore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Mulgore, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,2,0,3562,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_mulgore_01'),(753,-1,-1,0,'Average gold earned per day','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Average gold earned per day','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,2,73,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,328,'trade_engineering'),(764,1,-1,0,'The Burning Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise all of The Burning Crusade dungeon reputations to exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,20,2,0,2365,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_felfireward'),(798,-1,-1,0,'Rebirthed by druids','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Rebirthed by druids','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',127,0,2,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(838,-1,-1,0,'Arenas played','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Arenas played','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,2,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(863,-1,-1,0,'Explore Zangarmarsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Zangarmarsh, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14779,10,2,0,3585,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_zangarmarsh'),(918,-1,-1,0,'Total deaths in 5-player dungeons','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total deaths in 5-player dungeons','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,2,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(944,-1,-1,0,'They Love Me In That Tunnel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with Timbermaw Hold.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14864,15,2,0,3685,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_timbermaw'),(949,-1,-1,0,'Tuskarrmageddon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with The Kalu\'ak .','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,15,2,0,3702,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_tuskarr'),(1047,-1,-1,0,'Total facepalms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total facepalms','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',131,0,2,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1069,-1,557,0,'Nexus-Prince Shaffar kills (Mana Tombs)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Nexus-Prince Shaffar kills (Mana Tombs)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,2,1,1677,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_nature_groundingtotem'),(1092,-1,33,0,'Archmage Arugal kills (Shadowfang Keep)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Archmage Arugal kills (Shadowfang Keep)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,2,1,2126,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_arcane_prismaticcloak'),(1107,-1,-1,0,'Deaths in 3v3','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in 3v3','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',123,0,2,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1125,-1,-1,0,'Bandage used most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Bandage used most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,2,17,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,344,'NULL'),(1189,1,-1,0,'To Hellfire and Back','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 80 quests in Hellfire Peninsula.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,2,0,3554,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_hellfirepeninsula_01'),(1198,-1,-1,0,'Total kills that grant experience or honor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total kills that grant experience or honor','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',128,0,2,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1201,-1,-1,0,'Professions at maximum skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Professions at maximum skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',132,0,2,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1203,0,-1,0,'Strange Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Drink the Brewfest beers listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',162,10,2,0,1780,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_drink_08'),(1263,-1,-1,0,'Explore Howling Fjord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Howling Fjord, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14780,10,2,0,3331,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_zone_howlingfjord_01'),(1285,-1,-1,0,'Classic Raider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the classic raid achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,20,2,0,3203,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_helmet_74'),(1309,-1,607,1308,'Strand of the Ancients Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 100 victories in Strand of the Ancients.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,2,0,3402,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_bg_winsoa'),(1337,-1,-1,0,'Different creature types killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Different creature types killed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',135,0,2,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,107,'trade_engineering'),(1358,0,-1,0,'Nothing Boring About Borean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 150 quests in Borean Tundra.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,2,136,3336,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_boreantundra_07'),(1462,-1,-1,0,'Badges of Justice acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Badges of Justice acquired','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',130,0,2,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'trade_engineering'),(1488,-1,-1,0,'World Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cumulative for Azeroth, Northrend etc.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,2,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'NULL'),(1504,-1,574,0,'Ingvar the Plunderer kills (Heroic Utgarde Keep)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ingvar the Plunderer kills (Heroic Utgarde Keep)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,2,1,2813,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_helmet_130'),(1525,-1,-1,0,'Cooking daily quests completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cooking daily quests completed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',178,10,2,9,2923,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_cauldron_arcane'),(1676,1,-1,0,'Loremaster of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 700 quests in Eastern Kingdoms.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14861,10,2,136,3490,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_easternkingdoms_01'),(1693,0,-1,0,'Fool For Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Love is in the Air achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,2,0,3699,'Title Reward: The Love Fool','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_worldevent_valentine'),(1718,-1,571,1717,'Wintergrasp Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win 100 battles for Wintergrasp.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,2,0,187,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_frost_chillingblast'),(1729,-1,-1,0,'Alchemy Recipes learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Alchemy Recipes learned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,2,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'NULL'),(1788,-1,-1,0,'Bad Example','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eat the sweets listed below while your orphan is watching.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',163,10,2,0,1519,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_food_31'),(1877,-1,615,0,'Less Is More (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sartharion the Onyx Guardian and the Twilight Drakes with fewer than 21 players in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,2,0,3308,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_dungeon_coablackdragonflight_25man'),(2277,-1,-1,0,'Summons accepted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Summons accepted','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',134,0,2,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(2396,-1,-1,0,'Battleground played the most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Battleground played the most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,2,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,839,'trade_engineering'),(2417,-1,-1,0,'Chocolate Lover','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eat 25 Noblegarden Chocolates during the Noblegarden celebration.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,2,0,3706,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_noblegarden_chocolate_egg'),(2758,-1,-1,2756,'Argent Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Train to compete in the Argent Tournament by becoming a Valiant for your race\'s faction.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,2,0,3744,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'achievement_reputation_argentchampion'),(2857,-1,603,0,'Razorscale kills (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Razorscale kills (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,2,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2888,-1,603,0,'The Antechamber of Ulduar (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Antechamber area of Ulduar in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,2,0,3846,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_boss_tribunalofages'),(2889,-1,603,0,'The Antechamber of Ulduar (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Antechamber area of Ulduar in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,2,0,3846,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_boss_tribunalofages'),(3576,1,-1,0,'Now We\'re Cookin\'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cook up one of every Pilgrim\'s Bounty dish.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,2,0,3678,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'achievement_profession_chefhat'),(3777,-1,628,3776,'Isle of Conquest Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 100 victories in Isle of Conquest.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,2,0,3378,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'achievement_bg_win_av_x_times'),(3812,-1,-1,0,'Call of the Grand Crusade (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in the Trial of the Grand Crusader in 25-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15002,10,2,0,3744,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'achievement_reputation_argentchampion'),(3918,-1,-1,0,'Call of the Grand Crusade (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in the Trial of the Grand Crusader in 10-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,2,0,3744,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','150973000',0,0,'achievement_reputation_argentchampion'),(4019,-1,-1,0,'Victories over Hunter Champion (Heroic Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Hunter Champion (Heroic Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,2,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4628,-1,631,4531,'Heroic: Storming the Citadel (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the first four bosses in Icecrown Citadel in 10-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,2,0,4167,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_icecrownentrance'),(4632,-1,631,4604,'Heroic: Storming the Citadel (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the first four bosses in Icecrown Citadel in 25-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,2,0,4167,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_icecrownentrance'),(4714,-1,-1,0,'Bronjahm kills (Heroic Forge of Souls)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,2,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(8,-1,-1,7,'Level 30','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Reach level 30.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,3,4,3270,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_level_30'),(34,1,-1,0,'I\'ve Toured the Fjord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 130 quests in Howling Fjord.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,3,0,3337,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_howlingfjord_07'),(44,-1,-1,0,'Explore Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore the regions of Outland.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',97,25,3,0,3492,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_outland_01'),(56,-1,489,0,'Deaths in Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in Warsong Gulch','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',124,0,3,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(97,-1,-1,0,'Daily quests completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Daily quests completed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',133,0,3,1,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(113,-1,-1,0,'Deaths from fatigue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths from fatigue','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',126,0,3,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(123,-1,-1,122,'Artisan Cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become an Artisan Cook.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,3,0,1467,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_15'),(128,-1,-1,127,'Artisan Fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become an Artisan Fisherman.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,3,0,580,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_fishing'),(133,-1,-1,132,'Artisan in First Aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become an Artisan in first aid.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',172,10,3,0,504,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_sealofsacrifice'),(165,-1,529,0,'Arathi Basin Perfection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Arathi Basin with a score of 1600 to 0.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,20,3,0,3469,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_abshutout'),(197,-1,-1,0,'Total damage done','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total damage done','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',141,0,3,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(199,-1,489,0,'Capture the Flag','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Personally carry and capture the flag in Warsong Gulch.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,3,0,3390,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_captureflag_wsg'),(221,-1,30,0,'Alterac Grave Robber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Take 50 graveyards in Alterac Valley.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,3,0,3379,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_xkills_avgraveyard'),(255,-1,-1,0,'Bring Me The Head of... Oh Wait','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill the Headless Horseman.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,3,0,1817,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_59'),(259,0,-1,0,'Scrooge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Throw a snowball at Cairne Bloodhoof during the Feast of Winter Veil.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,3,0,1665,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_ammo_snowball'),(333,-1,-1,0,'Gold looted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gold looted','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,3,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(341,-1,-1,0,'Epic items looted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Epic items looted','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',191,0,3,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(350,-1,-1,0,'Mage Portals taken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Mage Portals taken','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',134,0,3,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(363,-1,-1,0,'5v5 matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','5v5 matches','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,3,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(466,-1,-1,0,'Realm First! Level 80 Druid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First druid on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,3,256,261,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_druid_maul'),(480,-1,601,0,'Azjol-Nerub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in Azjol-Nerub.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,3,0,3229,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_azjoluppercity_normal'),(491,-1,601,0,'Heroic: Azjol-Nerub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Azjol-Nerub bosses on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,3,0,3230,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_azjoluppercity_heroic'),(505,-1,-1,504,'250 Quests Completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 250 quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,3,0,3419,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_03'),(515,-1,-1,513,'500 Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get 500 honorable kills.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,3,0,3456,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_p_03'),(524,-1,-1,523,'10 Exalted Reputations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise 10 reputations to Exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,10,3,0,3608,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_02'),(529,-1,-1,0,'Most factions at Honored or higher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most factions at Honored or higher','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',147,0,3,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(562,-1,533,0,'The Arachnid Quarter (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Arachnid Quarter of Naxxramas in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,3,0,1899,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_trinket_naxxramas04'),(563,-1,533,0,'The Arachnid Quarter (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Arachnid Quarter of Naxxramas in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,3,0,1899,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_trinket_naxxramas04'),(607,-1,-1,606,'10 Coins of Ancestry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Receive 10 Coins of Ancestry.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,3,0,2717,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_elvencoins'),(630,-1,-1,0,'Wailing Caverns','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Mutanus the Devourer.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,3,0,3654,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_mutanus_the_devourer'),(649,-1,547,0,'The Slave Pens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Quagmirran.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,3,0,3591,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_quagmirran'),(732,-1,-1,731,'Professional Artisan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become an Artisan in a profession.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',169,10,3,0,2846,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_note_01'),(768,-1,-1,0,'Explore Tirisfal Glades','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Tirisfal Glades, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,3,0,3570,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_tirisfalglades_01'),(783,-1,566,0,'The Perfect Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Eye of the Storm with a score of 1600 to 0.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,3,0,2830,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_brd_banner'),(840,-1,-1,0,'Battlegrounds won','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Battlegrounds won','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,3,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(842,-1,-1,0,'Explore Teldrassil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Teldrassil, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,3,0,3528,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_darnassus'),(867,-1,-1,0,'Explore Terokkar Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Terokkar Forest, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14779,10,3,0,3586,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_terrokar'),(875,-1,-1,398,'Vengefully Dedicated','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win 200 ranked arena matches at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,3,0,3594,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_featsofstrength_gladiator_02'),(893,-1,-1,0,'Cenarion War Hippogryph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Cenarion War Hippogryph from the Cenarion Expedition in Zangarmarsh.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,10,3,0,2554,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_warhippogryph'),(950,-1,-1,0,'Frenzyheart Tribe','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Frenzyheart Tribe.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,10,3,0,956,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mount_whitedirewolf'),(957,-1,-1,0,'Hero of the Zandalar Tribe','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Zandalar Tribe.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14864,10,3,0,2745,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_bijou_green'),(1067,-1,-1,0,'Total times playing world\'s smallest violin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total times playing world\'s smallest violin','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',131,0,3,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1070,-1,560,0,'Epoch Hunter kills (The Escape From Durnholde)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Epoch Hunter kills (The Escape From Durnholde)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,3,1,1701,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_dragon_bronze'),(1093,-1,189,0,'Scarlet Commander Mograine kills (Scarlet Monastery)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Scarlet Commander Mograine kills (Scarlet Monastery)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,3,1,2792,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_52'),(1108,-1,-1,0,'Deaths in 5v5','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in 5v5','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',123,0,3,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1145,-1,-1,0,'King of the Fire Festival','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the quest, \"A Thief\'s Reward\", by stealing the flames from your enemy\'s capital cities.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,3,0,1599,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_helmet_08'),(1200,-1,-1,0,'Secondary skills at maximum skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Secondary skills at maximum skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',132,0,3,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1229,-1,-1,0,'Revived by druids','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Revived by druids','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',127,0,3,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'trade_engineering'),(1231,-1,576,0,'Keristrasza kills (The Nexus)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Keristrasza kills (The Nexus)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,3,1,56,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_frost_freezingbreath'),(1265,-1,-1,0,'Explore Dragonblight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Dragonblight, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14780,10,3,0,3332,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_dragonblight_01'),(1271,0,-1,0,'To Hellfire and Back','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 90 quests in Hellfire Peninsula.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,3,0,3554,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_hellfirepeninsula_01'),(1284,-1,-1,0,'Outland Dungeonmaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Burning Crusade dungeon achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,3,0,1948,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_holy_summonchampion'),(1298,-1,-1,0,'Different bandage types used','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Different bandage types used','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,3,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,344,'trade_engineering'),(1310,-1,607,0,'Storm the Beach','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Capture the Titan Relic in under four minutes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,20,3,0,3403,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'achievement_bg_winsoa_underxminutes'),(1336,-1,-1,0,'Creature type killed the most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Creature type killed the most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',135,0,3,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,107,'trade_engineering'),(1458,-1,-1,0,'Continent with the most Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Continent with the most Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,3,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,381,'trade_engineering'),(1464,-1,-1,0,'Emblems of Heroism acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Emblems of Heroism acquired','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',130,0,3,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'trade_engineering'),(1489,-1,-1,0,'Continent with the most Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Continent with the most Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,3,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,1488,'trade_engineering'),(1532,-1,-1,0,'Highest Blacksmithing skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest Blacksmithing skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,3,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1677,0,-1,0,'Loremaster of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 550 quests in Eastern Kingdoms.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14861,10,3,136,3490,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_zone_easternkingdoms_01'),(1695,-1,-1,0,'Dangerous Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Assist the Steamwheedle Cartel in stopping the sinister Crown Chemical Co. plot.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,3,0,1853,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',1,0,'spell_brokenheart'),(1707,1,-1,0,'Fool For Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Love is in the Air achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,3,0,3699,'Title Reward: The Love Fool','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_worldevent_valentine'),(1745,-1,-1,0,'Cooking Recipes known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cooking Recipes known','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',178,0,3,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'NULL'),(1755,-1,571,0,'Within Our Grasp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Attack Wintergrasp and succeed in 10 minutes or less.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,3,0,145,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_frost_manaburn'),(1789,-1,-1,0,'Daily Chores','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete five daily quests with your orphan out.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',163,10,3,0,162,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_repair'),(1936,-1,-1,0,'Does Your Wolpertinger Linger?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Wolpertinger pet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',162,10,3,0,1312,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',1,0,'inv_drink_13'),(2219,-1,-1,0,'Total deaths in 5-player heroic dungeons','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total deaths in 5-player heroic dungeons','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,3,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'trade_engineering'),(2418,-1,-1,2417,'Chocoholic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eat 100 Noblegarden Chocolates during the Noblegarden celebration.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,3,0,3706,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_noblegarden_chocolate_egg'),(2772,-1,-1,0,'Tilted!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat another player in a mounted duel at the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,3,0,370,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_spear_05'),(2858,-1,603,0,'Ignis the Furnace Master kills (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ignis the Furnace Master kills (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,3,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2890,-1,603,0,'The Keepers of Ulduar (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Keeper bosses of Ulduar in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,3,0,3847,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_dungeon_ulduarraid_misc_05'),(2891,-1,603,0,'The Keepers of Ulduar (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Keeper bosses of Ulduar in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,3,0,3847,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_dungeon_ulduarraid_misc_05'),(3577,0,-1,0,'Now We\'re Cookin\'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cook up one of every Pilgrim\'s Bounty dish.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,3,0,3678,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'achievement_profession_chefhat'),(3797,-1,-1,0,'Upper Back Pain (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Icehowl while at least 2 Snobolds remain alive in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,3,0,1665,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',1,0,'inv_ammo_snowball'),(3813,-1,-1,0,'Upper Back Pain (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Icehowl while at least 4 Snobolds remain alive in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15002,10,3,0,1665,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',1,0,'inv_ammo_snowball'),(3845,-1,628,0,'Isle of Conquest All-Star','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In a single Isle of Conquest battle, assault a base, defend a base, destroy a vehicle and kill a player.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,20,3,0,2268,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'spell_holy_heroism'),(4048,-1,-1,0,'Victories over Mage Champion (Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Mage Champion (Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,3,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4528,-1,631,0,'The Plagueworks (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Plagueworks in Icecrown Citadel in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,3,0,4177,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_plaguewing'),(4605,-1,631,0,'The Plagueworks (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Plagueworks in Icecrown Citadel in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,3,0,4177,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_plaguewing'),(4715,-1,-1,0,'Devourer of Souls kills (Forge of Souls)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,3,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(9,-1,-1,8,'Level 40','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Reach level 40.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,4,4,3271,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_level_40'),(45,-1,-1,0,'Explore Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore the regions of Northrend.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',97,25,4,0,3493,'Reward: Tabard of the Explorer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_northrend_01'),(108,-1,-1,0,'Critters killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Critters killed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',135,0,4,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(114,-1,-1,0,'Deaths from falling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths from falling','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',126,0,4,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(124,-1,-1,123,'Master Cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Master Cook.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,4,0,1467,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_15'),(129,-1,-1,128,'Master Fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Master Fisherman.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,4,0,580,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_fishing'),(134,-1,-1,133,'Master in First Aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Master in first aid.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',172,10,4,0,504,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_sealofsacrifice'),(158,-1,529,0,'Me and the Cappin\' Makin\' it Happen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Take 50 flags in Arathi Basin.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,4,0,3470,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_takexflags_ab'),(200,-1,489,0,'Persistent Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Return 50 flags as a defender in Warsong Gulch.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,4,0,3398,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_interruptx_flagcapture_attempts'),(222,-1,30,0,'Tower Defense','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defend 50 towers in Alterac Valley.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,4,0,3581,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_defendxtowers_av'),(248,-1,-1,0,'Sunday\'s Finest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Discover the White Tuxedo Shirt and Black Tuxedo Pants by opening Brightly Colored Eggs during the Noblegarden celebration.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,4,0,3712,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_shirt_08'),(289,-1,-1,0,'The Savior of Hallow\'s End','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete one of the quests to save a village from the Headless Horseman.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,4,0,3512,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_halloween_bat_01'),(326,-1,-1,0,'Gold from quest rewards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gold from quest rewards','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,4,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(336,-1,-1,0,'Legendary items acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Legendary items acquired','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',191,0,4,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(345,-1,-1,0,'Health potions consumed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Health potions consumed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,4,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(362,-1,-1,0,'5v5 victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','5v5 victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,4,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(383,-1,-1,0,'Arena Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Arena Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,4,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(465,-1,-1,0,'Realm First! Level 80 Paladin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First paladin on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,4,256,25,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_thunderbolt'),(481,-1,619,0,'Ahn\'kahet: The Old Kingdom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in Ahn\'kahet: The Old Kingdom.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,4,0,3231,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_azjollowercity_normal'),(492,-1,619,0,'Heroic: Ahn\'kahet: The Old Kingdom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Ahn\'kahet: The Old Kingdom bosses on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,4,0,3232,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_azjollowercity_heroic'),(506,-1,-1,505,'500 Quests Completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 500 quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,4,0,3418,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_04'),(516,-1,-1,515,'1000 Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get 1000 honorable kills.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,4,0,3457,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_p_04'),(521,-1,-1,524,'15 Exalted Reputations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise 15 reputations to Exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,10,4,0,3607,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_03'),(528,-1,-1,0,'Total damage received','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total damage received','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',141,0,4,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(564,-1,533,0,'The Construct Quarter (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Construct Quarter of Naxxramas in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,4,0,2956,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_rogue_deviouspoisons'),(565,-1,533,0,'The Construct Quarter (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Construct Quarter of Naxxramas in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,4,0,2956,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_rogue_deviouspoisons'),(608,-1,-1,607,'25 Coins of Ancestry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Receive 25 Coins of Ancestry.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,4,0,2717,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_elvencoins'),(631,-1,-1,0,'Shadowfang Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Archmage Arugal.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,4,0,3822,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_archmagearugal'),(650,-1,-1,0,'Underbog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat The Black Stalker.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,4,0,3823,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_theblackstalker'),(733,-1,-1,732,'Professional Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Master in a profession.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',169,10,4,0,2846,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_note_01'),(759,-1,-1,0,'Average daily quests completed per day','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Average daily quests completed per day','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',133,0,4,65,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,97,'trade_engineering'),(784,-1,566,0,'Eye of the Storm Domination','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Eye of the Storm 10 times while holding 4 bases.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,4,0,2830,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_brd_banner'),(799,-1,-1,0,'Spirit returned to body by shamans','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Spirit returned to body by shamans','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',127,0,4,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(859,-1,-1,0,'Explore Eversong Woods','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Eversong Woods, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,4,0,3537,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_eversongwoods'),(860,-1,-1,0,'Explore Azuremyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Azuremyst Isle, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,4,0,3545,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_azuremystisle_01'),(866,-1,-1,0,'Explore Nagrand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Nagrand, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14779,10,4,0,3563,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_nagrand_01'),(876,-1,-1,875,'Brutally Dedicated','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win 300 ranked arena matches at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,4,0,3595,'Reward: Tabard of Brute Force','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_featsofstrength_gladiator_03'),(894,-1,-1,0,'Flying High Over Skettis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status within the Sha\'tari Skyguard.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,10,4,0,2422,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_hunter_pet_netherray'),(917,-1,-1,0,'Total deaths in 10-player raids','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total deaths in 10-player raids','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,4,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(924,-1,-1,0,'Most Northrend factions at Exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most Northrend factions at Exalted','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',147,0,4,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(951,-1,-1,0,'The Oracles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the The Oracles.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,10,4,0,1751,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_murloc_01'),(955,-1,-1,0,'Hydraxian Waterlords','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Hydraxian Waterlords.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14864,10,4,0,2134,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_frost_summonwaterelemental_2'),(1022,1,-1,0,'Flame Warden of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the flames of Eastern Kingdoms.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,4,0,1923,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_summerfest_firespirit'),(1066,-1,-1,0,'Total times LOL\'d','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total times LOL\'d','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',131,0,4,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1071,-1,547,0,'Quagmirran kills (Slave Pens)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Quagmirran kills (Slave Pens)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,4,1,2051,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_herb_06'),(1094,-1,209,0,'Chief Ukorz Sandscalp kills (Zul\'Farrak)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Chief Ukorz Sandscalp kills (Zul\'Farrak)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,4,1,1698,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_banner_01'),(1106,-1,-1,0,'Deaths in Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in Eye of the Storm','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',124,0,4,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1185,-1,-1,0,'The Brewfest Diet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eat 8 of the Brewfest foods listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',162,10,4,0,2996,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_holiday_beerfestpretzel01'),(1190,-1,-1,0,'Mysteries of the Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 54 quests in Zangarmarsh.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,4,0,3585,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_zangarmarsh'),(1202,-1,-1,0,'Weapon skills at maximum skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Weapon skills at maximum skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',132,0,4,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1255,1,-1,0,'Scrooge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Throw a snowball at King Magni Bronzebeard during the Feast of Winter Veil.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,4,0,1665,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'inv_ammo_snowball'),(1266,-1,-1,0,'Explore Grizzly Hills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Grizzly Hills, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14780,10,4,0,3333,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_grizzlyhills_01'),(1287,-1,-1,0,'Outland Dungeon Hero','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the heroic Burning Crusade dungeon achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,20,4,0,1762,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_creature_cursed_02'),(1339,-1,-1,0,'Mage portal taken most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Mage portal taken most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',134,0,4,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,350,'trade_engineering'),(1356,0,-1,0,'I\'ve Toured the Fjord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 105 quests in Howling Fjord.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,4,0,3337,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_howlingfjord_07'),(1465,-1,-1,0,'Emblems of Valor acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Emblems of Valor acquired','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',130,0,4,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'trade_engineering'),(1490,-1,-1,0,'Arena Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Arena Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,4,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'NULL'),(1505,-1,576,0,'Keristrasza kills (Heroic Nexus)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Keristrasza kills (Heroic Nexus)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,4,1,56,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_frost_freezingbreath'),(1678,1,-1,0,'Loremaster of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 700 quests in Kalimdor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14861,10,4,136,3491,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_kalimdor_01'),(1699,-1,-1,0,'Fistful of Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Use a Handful of Rose Petals on each of the race/class combinations listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,4,0,1848,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_dust_04'),(1730,-1,-1,0,'Blacksmithing Plans learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Blacksmithing Plans learned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,4,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'NULL'),(1765,-1,607,0,'Steady Hands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Disarm 5 seaforium charges in a single battle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,4,0,1755,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_bomb_02'),(1792,-1,-1,0,'Aw, Isn\'t It Cute?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain one of the Children\'s Week reward pets.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',163,10,4,0,1588,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_hunter_pet_turtle'),(1976,-1,-1,0,'Dalaran Cooking Awards gained','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Dalaran Cooking Awards gained','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',178,0,4,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'trade_engineering'),(2199,-1,571,0,'Wintergrasp Ranger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 10 players in each of the Wintergrasp areas listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,4,0,2945,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','1811870000',0,0,'ability_mage_shattershield'),(2397,-1,-1,0,'Battleground won the most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Battleground won the most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,4,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,840,'trade_engineering'),(2797,1,-1,0,'Noble Gardener','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Noblegarden achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,4,0,3202,'Title Reward: the Noble','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_egg_09'),(2836,-1,-1,0,'Lance a Lot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Best a rider of every racial faction at the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,4,0,370,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'inv_spear_05'),(2859,-1,603,0,'XT-002 Deconstructor kills (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','XT-002 Deconstructor kills (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,4,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2892,-1,603,0,'The Descent into Madness (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Descent into Madness area of Ulduar in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,4,0,3848,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_boss_yoggsaron_01'),(2893,-1,603,0,'The Descent into Madness (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Descent into Madness area of Ulduar in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,4,0,3848,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_boss_yoggsaron_01'),(3556,1,-1,0,'Pilgrim\'s Paunch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Acquire the Spirit of Sharing from a complete Bountiful Table feast at every Alliance capital.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,4,0,3709,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'inv_misc_organ_10'),(3846,1,628,0,'Resource Glut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Isle of Conquest while your team controls the Quarry and Oil Refinery.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,4,0,3736,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_gizmo_pipe_03'),(3936,-1,-1,0,'Not One, But Two Jormungars (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Acidmaw and Dreadscale within 10 seconds of each other in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,4,0,4025,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_hunter_pet_worm'),(3937,-1,-1,0,'Not One, But Two Jormungars (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Acidmaw and Dreadscale within 10 seconds of each other in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15002,10,4,0,4025,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775100',1,0,'ability_hunter_pet_worm'),(4049,-1,-1,0,'Victories over Mage Champion (Heroic Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Mage Champion (Heroic Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,4,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4629,-1,631,4528,'Heroic: The Plagueworks (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Plagueworks in Icecrown Citadel in 10-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,4,0,4177,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_plaguewing'),(4633,-1,631,4605,'Heroic: The Plagueworks (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Plagueworks in Icecrown Citadel in 25-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,4,0,4177,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_plaguewing'),(4716,-1,-1,0,'Devourer of Souls kills (Heroic Forge of Souls)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,4,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(10,-1,-1,9,'Level 50','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Reach level 50.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,5,4,3272,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_level_50'),(35,1,-1,0,'Might of Dragonblight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 115 quests in Dragonblight.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,5,0,3338,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_dragonblight_07'),(46,-1,-1,0,'World Explorer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Eastern Kingdoms, Kalimdor, Outland and Northrend.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',97,50,5,0,2759,'Title Reward: The Explorer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_map02'),(53,-1,30,0,'Alterac Valley battles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Alterac Valley battles','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,5,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(73,-1,529,0,'Disgracin\' The Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Assault 3 bases in a single Arathi Basin battle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,5,0,456,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_warrior_battleshout'),(94,-1,-1,0,'Quests abandoned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Quests abandoned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',133,0,5,1,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(115,-1,-1,0,'Deaths from fire and lava','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths from fire and lava','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',126,0,5,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(125,-1,-1,124,'Grand Master Cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Grand Master Cook.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,5,0,1467,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_15'),(130,-1,-1,129,'Grand Master Fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Grand Master Fisherman.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,5,0,580,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_fishing'),(135,-1,-1,134,'Grand Master in First Aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Grand Master in first aid.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',172,10,5,0,504,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_sealofsacrifice'),(189,-1,-1,0,'Largest heal cast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Largest heal cast','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',141,0,5,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(214,-1,566,0,'Flurry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Eye of the Storm in under 6 minutes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,5,0,3386,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_wineos_underxminutes'),(224,0,30,0,'Loyal Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In Alterac Valley, kill 50 enemy players in the Hall of the Frostwolf.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,5,0,3582,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_killxenemies_generalsroom'),(249,-1,-1,0,'Dressed for the Occasion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Discover an Elegant Dress by opening Brightly Colored Eggs during the Noblegarden celebration.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,5,0,3713,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_chest_cloth_04'),(281,-1,-1,0,'First Aid skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First Aid skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',178,0,5,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(339,-1,-1,0,'Mounts owned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Mounts owned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',191,0,5,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(353,-1,-1,0,'Number of times hearthed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Number of times hearthed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',134,0,5,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(365,-1,-1,0,'3v3 matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','3v3 matches','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,5,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(382,-1,-1,0,'Battleground Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Battleground Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,5,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(464,-1,-1,0,'Realm First! Level 80 Priest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First priest on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,5,256,1523,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_staff_30'),(482,-1,600,0,'Drak\'Tharon Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in Drak\'Tharon Keep.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,5,0,3233,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_drak\'tharon_normal'),(493,-1,600,0,'Heroic: Drak\'Tharon Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Drak\'Tharon Keep bosses on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,5,0,3234,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_drak\'tharon_heroic'),(507,-1,-1,506,'1000 Quests Completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 1000 quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,5,0,3417,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_05'),(512,-1,-1,516,'5000 Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get 5000 honorable kills.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,5,0,3459,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_p_06'),(520,-1,-1,521,'20 Exalted Reputations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise 20 reputations to Exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,10,5,0,3606,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_04'),(566,-1,533,0,'The Plague Quarter (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Plague Quarter of Naxxramas in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,5,0,2997,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_cauldron_nature'),(567,-1,533,0,'The Plague Quarter (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Plague Quarter of Naxxramas in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,5,0,2997,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_cauldron_nature'),(609,-1,-1,608,'50 Coins of Ancestry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Receive 50 Coins of Ancestry.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,5,0,2717,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_elvencoins'),(632,-1,-1,0,'Blackfathom Deeps','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Aku\'mai.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,5,0,3653,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_bazil_akumai'),(651,-1,-1,0,'Mana-Tombs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Nexus-Prince Shaffar.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,5,0,3666,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_nexus_prince_shaffar'),(699,-1,-1,0,'World Wide Winner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win a ranked arena match in Blade\'s Edge, Nagrand, The Ring of Valor, Dalaran Sewers and the Ruins of Lordaeron at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,5,0,535,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_hunter_pathfinding'),(734,-1,-1,733,'Professional Grand Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Grand Master in a profession.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',169,10,5,0,2846,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_note_01'),(750,-1,-1,0,'Explore The Barrens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore The Barrens, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,5,0,3547,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_barrens_01'),(779,-1,-1,0,'Explore Loch Modan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Loch Modan, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,5,0,3558,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_lochmodan'),(800,-1,-1,0,'Redeemed by paladins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Redeemed by paladins','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',127,0,5,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(865,-1,-1,0,'Explore Blade\'s Edge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Blade\'s Edge Mountains, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14779,10,5,0,3549,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_bladesedgemtns_01'),(872,-1,489,0,'Frenzied Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Return 5 flags in a single Warsong Gulch battle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,5,0,3484,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_returnxflags_def_wsg'),(896,-1,-1,0,'A Quest a Day Keeps the Ogres at Bay','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status within Ogri\'la.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,10,5,0,2448,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_apexis_crystal'),(916,-1,-1,0,'Total deaths in 25-player raids','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total deaths in 25-player raids','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,5,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(919,-1,-1,0,'Gold earned from auctions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gold earned from auctions','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,5,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(925,-1,-1,0,'Most Outland factions at Exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most Outland factions at Exalted','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',147,0,5,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(952,-1,-1,0,'Mercenary of Sholazar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the The Oracles and the Frenzyheart Tribe.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,10,5,0,229,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_nature_mirrorimage'),(956,-1,-1,0,'Brood of Nozdormu','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Brood of Nozdormu.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14864,10,5,0,1701,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_dragon_bronze'),(979,-1,-1,0,'The Mask Task','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Flimsy Mask during Hallow\'s End.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,5,0,2954,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_mask_06'),(1023,1,-1,0,'Flame Warden of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the flames of Kalimdor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,5,0,1923,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_summerfest_firespirit'),(1045,-1,-1,0,'Total cheers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total cheers','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',131,0,5,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1072,-1,546,0,'Black Stalker kills (Underbog)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Black Stalker kills (Underbog)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,5,1,2603,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_nature_elementalprecision_2'),(1095,-1,230,0,'Emperor Dagran Thaurissan kills (Blackrock Depths)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Emperor Dagran Thaurissan kills (Blackrock Depths)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,5,1,2302,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_elemental_mote_fire01'),(1191,1,-1,0,'Terror of Terokkar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 63 quests in Terokkar Forest.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,5,0,3586,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_terrokar'),(1232,-1,601,0,'Anub\'arak kills (Azjol-Nerub)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Anub\'arak kills (Azjol-Nerub)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,5,1,1899,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_trinket_naxxramas04'),(1267,-1,-1,0,'Explore Zul\'Drak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Zul\'Drak, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14780,10,5,0,3334,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_zuldrak_03'),(1279,1,-1,0,'Flirt With Disaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get completely smashed, put on your best perfume, throw a handful of rose petals on Sraaz and then kiss him. You\'ll regret it in the morning.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,5,0,1846,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_valentineperfumebottle'),(1282,-1,-1,0,'Fa-la-la-la-Ogri\'la','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Bomb Them Again! quest while mounted on a flying reindeer during the Feast of Winter Veil.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,5,0,3700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'achievement_worldevent_xmasogre'),(1286,-1,-1,0,'Outland Raider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Burning Crusade raid achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,20,5,0,3204,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_helmet_90'),(1299,-1,-1,0,'Health potion used most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Health potion used most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,5,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,345,'trade_engineering'),(1491,-1,-1,0,'Battleground Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Battleground Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,5,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'NULL'),(1500,-1,-1,0,'Deaths in Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in Strand of the Ancients','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',124,0,5,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1535,-1,-1,0,'Highest Enchanting skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest Enchanting skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,5,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1680,0,-1,0,'Loremaster of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 685 quests in Kalimdor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14861,10,5,136,3491,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_zone_kalimdor_01'),(1737,1,571,0,'Destruction Derby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy each of the vehicles listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,5,0,3505,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_fire_blueflamestrike'),(1757,1,607,0,'Defense of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defend the beach without losing any walls.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,5,0,276,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_warrior_defensivestance'),(1786,-1,-1,0,'School of Hard Knocks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Take your orphan into the battlegrounds and complete the feats listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',163,10,5,0,1511,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_hunter_beastcall02'),(2773,-1,-1,0,'It\'s Just a Flesh Wound','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Unmask and defeat the Black Knight at the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,5,0,2737,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_helmet_44'),(2796,-1,-1,0,'Brew of the Month','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Join the Brew of the Month club.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',162,10,5,0,3082,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'inv_misc_beer_02'),(2798,0,-1,0,'Noble Gardener','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Noblegarden achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,5,0,3202,'Title Reward: the Noble','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_egg_09'),(2860,-1,603,0,'Assembly of Iron kills (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Assembly of Iron kills (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,5,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2894,-1,-1,0,'The Secrets of Ulduar (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in Ulduar in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,25,5,0,3849,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_dungeon_ulduarraid_misc_01'),(2895,-1,-1,0,'The Secrets of Ulduar (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in Ulduar in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,25,5,0,3849,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_dungeon_ulduarraid_misc_01'),(3018,-1,-1,0,'Emblems of Conquest acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Emblems of Conquest acquired','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',130,0,5,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(3557,0,-1,0,'Pilgrim\'s Paunch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Acquire the Spirit of Sharing from a complete Bountiful Table feast at every Horde capital.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,5,0,3709,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'inv_misc_organ_10'),(3851,1,628,3846,'Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Isle of Conquest while controlling the Quarry, Oil Refinery, Shipyard, Siege Workshop and Hangar.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,5,0,4016,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_ingot_cobalt'),(3996,-1,-1,0,'Three Sixty Pain Spike (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Lord Jaraxxus while at least two Mistresses of Pain are alive in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,5,0,1942,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_shadow_shadowmend'),(3997,-1,-1,0,'Three Sixty Pain Spike (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Lord Jaraxxus while at least two Mistresses of Pain are alive in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15002,10,5,0,1942,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_shadow_shadowmend'),(4050,-1,-1,0,'Victories over Rogue Champion (Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Rogue Champion (Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,5,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4529,-1,631,0,'The Crimson Hall (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Crimson Hall in Icecrown Citadel in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,5,0,4178,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_crimsonhall'),(4606,-1,631,0,'The Crimson Hall (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Crimson Hall in Icecrown Citadel in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,5,0,4178,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_crimsonhall'),(4717,-1,-1,0,'Forgemaster Garfrost kills (Pit of Saron)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,5,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(11,-1,-1,10,'Level 60','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Reach level 60.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,6,4,3273,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_level_60'),(49,-1,30,0,'Alterac Valley victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Alterac Valley victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,6,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(58,1,30,0,'Deaths from Drek\'Thar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths from Drek\'Thar','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',124,0,6,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(137,-1,-1,0,'Stocking Up','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Create 500 Heavy Frostweave Bandages.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',172,10,6,0,2497,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_bandage_04'),(153,-1,-1,0,'The Old Gnome and the Sea','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Successfully fish from a school.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,6,0,3694,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_profession_fishing_journeymanfisher'),(178,-1,-1,0,'Enchanting formulae learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Enchanting formulae learned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,6,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(206,1,489,0,'Supreme Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 100 flag carriers in Warsong Gulch.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,6,0,3400,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_kill_flag_carrierwsg'),(213,-1,566,0,'Stormtrooper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 5 flag carriers in a single Eye of the Storm battle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,6,0,3401,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_kill_flag_carriereos'),(277,-1,-1,0,'\'Tis the Season','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','During the Feast of Winter Veil, wear 3 pieces of winter clothing and eat Graccu\'s Mince Meat Fruitcake.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,6,0,1789,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_food_christmasfruitcake_01'),(284,-1,-1,0,'A Mask for All Occasions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Collect the 20 unique Flimsy Masks listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,20,6,0,2953,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_mask_04'),(322,-1,-1,0,'Total deaths to Lich King dungeon bosses','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total deaths to Lich King dungeon bosses','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,6,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(329,-1,-1,0,'Auctions posted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Auctions posted','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,6,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(338,-1,-1,0,'Vanity pets owned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Vanity pets owned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',191,0,6,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(364,-1,-1,0,'3v3 victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','3v3 victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,6,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(399,-1,-1,0,'Just the Two of Us: 1550','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 1550 personal rating in the 2v2 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,6,0,3039,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_2v2_1'),(463,-1,-1,0,'Realm First! Level 80 Warlock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First warlock on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,6,256,155,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_nature_drowsy'),(483,-1,608,0,'The Violet Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Cyanigosa in The Violet Hold.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,6,0,3235,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_theviolethold_normal'),(494,-1,608,0,'Heroic: The Violet Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Cyanigosa in The Violet Hold on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,6,0,3236,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_theviolethold_heroic'),(508,-1,-1,507,'1500 Quests Completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 1500 quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,6,0,3416,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_06'),(509,-1,-1,512,'10000 Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get 10000 honorable kills.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,6,0,3462,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_p_09'),(519,-1,-1,520,'25 Exalted Reputations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise 25 reputations to Exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,10,6,0,3605,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_05'),(568,-1,533,0,'The Military Quarter (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Military Quarter of Naxxramas in 10 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,6,0,2639,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_deathknight_classicon'),(569,-1,533,0,'The Military Quarter (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Military Quarter of Naxxramas in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,6,0,2639,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_deathknight_classicon'),(626,-1,-1,0,'Lunar Festival Finery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Purchase a festive pant suit or festive dress with Coins of Ancestry.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,6,0,2789,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_chest_cloth_59'),(633,-1,-1,0,'Stormwind Stockade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Bazil Thredd.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,6,0,3652,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_bazil_thredd'),(666,-1,-1,0,'Auchenai Crypts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Exarch Maladaar.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,6,0,3590,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_exarch_maladaar'),(735,-1,-1,0,'Working Day and Night','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Grand Master in two professions.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',169,10,6,0,162,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',2,0,'ability_repair'),(801,-1,-1,0,'Resurrected by soulstones','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Resurrected by soulstones','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',127,0,6,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(802,-1,-1,0,'Explore Westfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Westfall, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,6,0,3572,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_westfall_01'),(829,-1,-1,0,'Largest heal received','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Largest heal received','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',141,0,6,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(843,-1,-1,0,'Explore Netherstorm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Netherstorm, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14779,10,6,0,3564,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_netherstorm_01'),(844,-1,-1,0,'Explore Darkshore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Darkshore, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,6,0,3553,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_darkshore_01'),(877,-1,-1,0,'The Cake Is Not A Lie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Bake a Delicious Chocolate Cake.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,6,0,2917,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_celebrationcake_01'),(897,-1,-1,0,'You\'re So Offensive','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Shattered Sun Offensive.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,10,6,0,2807,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_shield_48'),(1007,-1,-1,0,'The Wyrmrest Accord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with The Wyrmrest Accord.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,10,6,0,3684,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_wyrmresttemple'),(1024,1,530,0,'Flame Warden of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the flames of Outland.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,6,0,1923,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_summerfest_firespirit'),(1065,-1,-1,0,'Total waves','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total waves','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',131,0,6,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1073,-1,558,0,'Exarch Maladaar kills (Auchenai Crypts)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Exarch Maladaar kills (Auchenai Crypts)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,6,1,2796,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_staff_52'),(1097,-1,329,0,'Baron Rivendare kills (Stratholme)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Baron Rivendare kills (Stratholme)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,6,1,2718,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_deathknight_armyofthedead'),(1151,1,30,0,'Loyal Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In Alterac Valley, kill 50 enemy players in the Hall of the Stormpike.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,6,0,3582,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_killxenemies_generalsroom'),(1153,-1,-1,0,'Overly Defensive','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defend 3 bases in a single Arathi Basin battle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,6,0,3397,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_ab_defendflags'),(1183,-1,-1,0,'Brew of the Year','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sample 12 beers featured in the Brew of the Month club.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',162,10,6,0,2535,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_holiday_brewfestbuff_01'),(1268,-1,-1,0,'Explore Sholazar Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Sholazar Basin, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14780,10,6,0,3335,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_sholazar_01'),(1272,0,-1,0,'Terror of Terokkar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 68 quests in Terokkar Forest.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,6,0,3586,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_terrokar'),(1280,0,-1,0,'Flirt With Disaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get completely smashed, put on your best perfume, throw a handful of rose petals on Jeremiah Payson and then kiss him. You\'ll regret it in the morning.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,6,0,1846,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_valentineperfumebottle'),(1288,-1,-1,0,'Northrend Dungeonmaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Northrend dungeon achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,6,0,1947,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_holy_championsbond'),(1300,-1,-1,0,'Different health potions used','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Different health potions used','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,6,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,345,'trade_engineering'),(1359,0,-1,0,'Might of Dragonblight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 130 quests in Dragonblight.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,6,0,3338,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_dragonblight_07'),(1466,1,-1,0,'Most Alliance factions at Exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most Alliance factions at Exalted','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',147,0,6,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1506,-1,601,0,'Anub\'arak kills (Heroic Azjol-Nerub)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Anub\'arak kills (Heroic Azjol-Nerub)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,6,1,1899,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_trinket_naxxramas04'),(1716,-1,-1,0,'Battleground with the most Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Battleground with the most Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,6,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,1491,'trade_engineering'),(1719,-1,-1,0,'Battleground with the most Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Battleground with the most Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,6,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,382,'trade_engineering'),(1748,-1,-1,0,'First Aid Manuals learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First Aid Manuals learned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',178,0,6,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'NULL'),(1790,-1,-1,0,'Hail To The King, Baby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat King Ymiron in Utgarde Pinnacle with your orphan out.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',163,10,6,0,3320,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_kingymiron_02'),(1793,-1,-1,0,'For The Children','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Children\'s Week achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,6,0,2523,'Title Reward: Matron/Patron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_toy_04'),(2200,0,607,0,'Defense of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defend the beach without losing any walls.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,6,0,276,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_warrior_defensivestance'),(2416,-1,-1,0,'Hard Boiled','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lay an egg in Un\'Goro Crater\'s Golakka Hot Springs as a rabbit during the Noblegarden celebration.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,6,0,3711,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_egg_07'),(2476,0,571,0,'Destruction Derby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy each of the vehicles listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,6,0,3505,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_fire_blueflamestrike'),(2861,-1,603,0,'Kologarn kills (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kologarn kills (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,6,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(3097,-1,603,0,'Dwarfageddon (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy 100 Steelforged Defenders in 10 seconds on the Ulduar gauntlet in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,6,0,3779,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_vehicle_liquidpyrite _blue'),(3098,-1,603,0,'Dwarfageddon (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy 100 Steelforged Defenders in 10 seconds on the Ulduar gauntlet in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,6,0,3779,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_vehicle_liquidpyrite _blue'),(3580,1,-1,0,'Pilgrim\'s Peril','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','While wearing either a Pilgrim\'s Dress, Robe, or Attire, take a seat at each enemy capital\'s Bountiful Table.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,6,0,1703,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'inv_bannerpvp_01'),(3736,-1,-1,0,'Pony Up!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Purchase and use an Argent Pony from Dame Evniki Kapsalis, the Crusader\'s Quartermaster.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,6,0,1176,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'ability_mount_ridinghorse'),(3798,-1,-1,0,'Resilience Will Fix It (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill all the enemy heroes within 60 seconds of the first one dying in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,6,0,4007,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',1,0,'achievement_arena_5v5_3'),(3814,-1,-1,0,'Resilience Will Fix It (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill all the enemy heroes within 60 seconds of the first one dying in 25-player mode..','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15002,10,6,0,4007,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',1,0,'achievement_arena_5v5_3'),(4051,-1,-1,0,'Victories over Rogue Champion (Heroic Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Rogue Champion (Heroic Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,6,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4176,0,628,0,'Resource Glut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Isle of Conquest while your team controls the Quarry and Oil Refinery.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,6,0,3736,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_gizmo_pipe_03'),(4630,-1,631,4529,'Heroic: The Crimson Hall (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Crimson Hall in Icecrown Citadel in 10-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,6,0,4178,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_crimsonhall'),(4634,-1,631,4606,'Heroic: The Crimson Hall (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Crimson Hall in Icecrown Citadel in 25-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,6,0,4178,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_crimsonhall'),(4728,-1,-1,0,'Forgemaster Garfrost kills (Heroic Pit of Saron)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,6,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4729,-1,-1,0,'Emblems of Triumph acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Emblems of Triumph acquired','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',130,0,6,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(12,-1,-1,11,'Level 70','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Reach level 70.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,7,4,3274,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_level_70'),(32,-1,-1,508,'2000 Quests Completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 2000 quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,7,0,3415,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_07'),(37,1,-1,0,'Fo\' Grizzle My Shizzle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 85 quests in Grizzly Hills.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,7,0,3339,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_grizzlyhills_07'),(55,-1,529,0,'Arathi Basin battles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Arathi Basin battles','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,7,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(141,-1,-1,0,'Ultimate Triage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Use a Heavy Frostweave Bandage to heal another player or yourself with less than 5% health.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',172,10,7,0,2741,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_surgeonglove_01'),(157,-1,529,0,'To The Rescue!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Come to the defense of a base in Arathi Basin 50 times by recapping the flag.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,7,0,2205,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_warrior_victoryrush'),(183,-1,-1,0,'Materials produced from disenchanting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Materials produced from disenchanting','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,7,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(198,-1,-1,0,'Total healing done','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total healing done','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',141,0,7,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(212,-1,566,0,'Storm Capper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Personally carry and capture the flag in Eye of the Storm.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,7,0,3391,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_captureflag_eos'),(225,1,30,0,'Everything Counts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Alterac Valley while your team controls both mines.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,7,0,3433,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winav_bothmines'),(239,-1,-1,509,'25000 Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get 25000 honorable kills.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,7,0,3460,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_p_11'),(275,-1,-1,0,'Veteran Nanny','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Acquire Egbert\'s Egg, Sleepy Willy, and Elekk Training Collar on one character.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',163,50,7,0,2525,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_toy_01'),(330,-1,-1,0,'Auction purchases','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Auction purchases','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,7,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(367,-1,-1,0,'2v2 matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','2v2 matches','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,7,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(400,-1,-1,399,'Just the Two of Us: 1750','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 1750 personal rating in the 2v2 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,7,0,3038,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_2v2_4'),(462,-1,-1,0,'Realm First! Level 80 Hunter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First hunter on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,7,256,2831,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_weapon_bow_07'),(484,-1,604,0,'Gundrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in Gundrak.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,7,0,3237,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_gundrak_normal'),(495,-1,604,0,'Heroic: Gundrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Gundrak bosses on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,7,0,3238,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_gundrak_heroic'),(518,-1,-1,519,'30 Exalted Reputations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise 30 reputations to Exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,10,7,0,3604,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_06'),(572,-1,533,0,'Sapphiron\'s Demise (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sapphiron in Naxxramas in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,7,0,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_dragon_blue'),(573,-1,533,0,'Sapphiron\'s Demise (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sapphiron in Naxxramas in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,7,0,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_dragon_blue'),(593,0,-1,0,'Deaths from Vanndar Stormpike','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths from Vanndar Stormpike','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',124,0,7,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(635,-1,-1,0,'Razorfen Kraul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Charlga Razorflank.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,7,0,3686,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_charlgarazorflank'),(652,-1,-1,0,'The Escape From Durnholde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Epoch Hunter.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,7,0,3824,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_epochhunter'),(730,-1,-1,0,'Skills to Pay the Bills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Become a Grand Master in fishing, first aid and cooking.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',169,10,7,0,1657,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_note_02'),(841,-1,-1,0,'Explore Wetlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Wetlands, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,7,0,3573,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_wetlands_01'),(861,-1,-1,0,'Explore Bloodmyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Bloodmyst Isle, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,7,0,3551,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_bloodmystisle_01'),(864,-1,-1,0,'Explore Shadowmoon Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Shadowmoon Valley, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14779,10,7,0,3584,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_shadowmoon'),(898,-1,-1,0,'On Wings of Nether','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with Netherwing.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,10,7,0,1928,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mount_netherdrakepurple'),(906,-1,-1,0,'Kickin\' It Up a Notch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete each of The Rokk\'s 4 cooking daily quests listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,7,0,2923,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_cauldron_arcane'),(922,-1,-1,0,'Mana potions consumed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Mana potions consumed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,7,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(926,0,-1,0,'Most Horde factions at Exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most Horde factions at Exalted','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',147,0,7,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(928,-1,-1,0,'Extra bank slots purchased','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Extra bank slots purchased','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',191,0,7,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(933,-1,-1,0,'Total 10-player raids entered','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total 10-player raids entered','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,7,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(981,-1,-1,0,'That Sparkling Smile','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Show off your sparkling smile by using a Tooth Pick.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,7,0,3510,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_halloween_smiley_01'),(1008,-1,-1,0,'The Kirin Tor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with The Kirin Tor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,10,7,0,3682,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_kirintor'),(1034,1,-1,0,'The Fires of Azeroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Flame Warden of Eastern Kingdoms, Kalimdor and Outland achievements.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,7,0,12,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_fireball'),(1038,1,-1,0,'The Flame Warden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Midsummer achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,20,7,0,2974,'Title Reward: Flame Warden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_summerfest_symbol_high'),(1074,-1,556,0,'Talon King Ikiss kills (Sethekk Halls)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Talon King Ikiss kills (Sethekk Halls)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,7,1,2378,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_feather_13'),(1096,-1,229,0,'General Drakkisath kills (Blackrock Spire)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','General Drakkisath kills (Blackrock Spire)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,7,1,1551,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_shield_20'),(1111,-1,-1,0,'2v2 Arena Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','2v2 Arena Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,7,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1192,1,-1,0,'Nagrand Slam','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 75 quests in Nagrand.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,7,0,3563,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_nagrand_01'),(1233,-1,619,0,'Herald Volazj kills (Ahn\'kahet: The Old Kingdom)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Herald Volazj kills (Ahn\'kahet: The Old Kingdom)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,7,1,1256,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_monsterspidercarapace_01'),(1252,0,489,0,'Supreme Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 100 flag carriers in Warsong Gulch.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,7,0,3400,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_bg_kill_flag_carrierwsg'),(1253,-1,-1,0,'Raised as a ghoul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raised as a ghoul','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',127,0,7,1,221,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_shadow_animatedead'),(1257,-1,-1,0,'The Scavenger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Successfully fish in each of the junk nodes listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,7,0,3068,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_crate_05'),(1260,-1,-1,0,'Drunken Stupor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fall 65 yards without dying while completely smashed during the Brewfest Holiday.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',162,10,7,0,2402,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_cask_02'),(1281,-1,-1,0,'The Rocket\'s Red Glare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Shoot off 10 Red Rocket Clusters in 25 seconds or less.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,7,0,2368,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_missilelarge_red'),(1289,-1,-1,0,'Northrend Dungeon Hero','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the heroic Northrend dungeon achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,20,7,0,857,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_rogue_feigndeath'),(1295,-1,-1,0,'Crashin\' & Thrashin\'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gain 25 crashes with your Crashin\' Thrashin\' Racer during the Feast of Winter Veil.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,7,0,2367,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_gizmo_goblingtonkcontroller'),(1457,-1,-1,0,'Explore Crystalsong Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Crystalsong Forest, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14780,10,7,0,3471,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_zone_crystalsong_01'),(1492,-1,-1,0,'2v2 Arena Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','2v2 Arena Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,7,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1519,-1,-1,0,'Fishing skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fishing skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',178,0,7,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1704,-1,-1,0,'I Pitied The Fool','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Pity the Love Fool in the locations specified below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,7,0,2339,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_crate_03'),(1723,-1,571,0,'Vehicular Gnomeslaughter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 100 players in Wintergrasp using a vehicle or a cannon.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,7,136,2547,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_mount_gyrocoptor'),(1761,-1,607,0,'The Dapper Sapper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Plant 100 Seaforium charges which successfully damage a wall.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,7,0,2565,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_bomb_01'),(2216,-1,-1,0,'Most deadly Lich King dungeon boss','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most deadly Lich King dungeon boss','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,7,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,322,'trade_engineering'),(2419,1,-1,0,'Spring Fling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Find your pet Spring Rabbit another one to love in each of the towns listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,7,0,3202,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_egg_09'),(2777,1,-1,0,'Champion of Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent Darnassus in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,7,0,3801,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_symbol_nightelf'),(2868,-1,603,0,'Auriaya kills (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Auriaya kills (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,7,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2905,-1,603,0,'Unbroken (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan on the first try without anyone repairing their vehicle in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,7,0,325,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_wrench_02'),(2906,-1,603,0,'Unbroken (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan on the first try without anyone repairing their vehicle in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,7,0,325,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_wrench_02'),(3581,0,-1,0,'Pilgrim\'s Peril','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','While wearing either a Pilgrim\'s Dress, Robe, or Attire, take a seat at each enemy capital\'s Bountiful Table.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,7,0,1704,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'inv_bannerpvp_02'),(3799,-1,-1,0,'Salt and Pepper (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Twin Val\'kyr in 3 minutes or less in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,7,0,4005,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',1,0,'achievement_boss_svalasorrowgrave'),(3815,-1,-1,0,'Salt and Pepper (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Twin Val\'kyr in 3 minutes or less in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15002,10,7,0,4005,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',1,0,'achievement_boss_svalasorrowgrave'),(4052,-1,-1,0,'Victories over Shaman Champion (Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Shaman Champion (Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,7,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4177,0,628,4176,'Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Isle of Conquest while controlling the Quarry, Oil Refinery, Shipyard, Siege Workshop and Hangar.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,7,0,4016,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_ingot_cobalt'),(4527,-1,631,0,'The Frostwing Halls (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Frostwing Halls in Icecrown Citadel in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,7,0,4158,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_frostwinghalls'),(4607,-1,631,0,'The Frostwing Halls (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Frostwing Halls in Icecrown Citadel in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,7,0,4158,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_frostwinghalls'),(4718,-1,-1,0,'Ick and Krick kills (Pit of Saron)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,7,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4730,-1,-1,0,'Emblems of Frost acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Emblems of Frost acquired','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',130,0,7,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(13,-1,-1,12,'Level 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Reach level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,8,4,3275,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_level_80'),(51,-1,529,0,'Arathi Basin victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Arathi Basin victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,8,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(150,-1,-1,0,'The Fishing Diplomat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish something up in Orgrimmar and Stormwind.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,8,0,2737,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_44'),(161,-1,529,0,'Resilient Victory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Overcome a 500 resource disadvantage in a match of Arathi Basin and claim victory.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,8,0,3468,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_bg_overcome500disadvantage'),(168,-1,489,0,'Warsong Gulch Perfection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Warsong Gulch with a score of 3 to 0.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,8,0,3485,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winwsg_3-0'),(181,-1,-1,0,'Items disenchanted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Items disenchanted','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,8,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(216,-1,566,0,'Bound for Glory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In a single Eye of the Storm match, capture the flag 3 times without dying.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,8,0,2267,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_arcane_massdispel'),(279,-1,-1,0,'Simply Abominable','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the quest to retrieve Smokywood Pastures\' stolen treats and receive a Smokywood Pastures\' Thank You.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,8,0,3190,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_helmet_68'),(295,-1,230,0,'Direbrewfest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill Coren Direbrew.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',162,10,8,0,2788,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_dwarf_01'),(323,-1,-1,0,'Total deaths to Lich King 10-player raid bosses','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total deaths to Lich King 10-player raid bosses','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,8,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(331,-1,-1,0,'Most expensive bid on auction','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most expensive bid on auction','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,8,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(366,-1,-1,0,'2v2 victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','2v2 victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,8,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(401,-1,-1,400,'Just the Two of Us: 2000','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 2000 personal rating in the 2v2 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,8,0,3037,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_2v2_5'),(461,-1,-1,0,'Realm First! Level 80 Death Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First death knight on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,8,256,2639,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_deathknight_classicon'),(485,-1,599,0,'Halls of Stone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the boss encounters in Halls of Stone.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,8,0,3239,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_ulduar77_normal'),(496,-1,599,0,'Heroic: Halls of Stone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the boss encounters in the Halls of Stone on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,8,0,3240,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_ulduar77_heroic'),(574,-1,533,0,'Kel\'Thuzad\'s Defeat (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kel\'Thuzad in Naxxramas in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,8,0,1898,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_trinket_naxxramas06'),(575,-1,533,0,'Kel\'Thuzad\'s Defeat (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kel\'Thuzad in Naxxramas in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,8,0,1898,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_trinket_naxxramas06'),(634,-1,-1,0,'Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Mekgineer Thermaplugg.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,8,0,3641,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_mekgineer_thermaplugg'),(653,-1,-1,0,'Sethekk Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Talon King Ikiss.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,8,0,3631,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_talonkingikiss'),(769,-1,-1,0,'Explore Silverpine Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Silverpine Forest, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,8,0,3576,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_silverpine_01'),(830,-1,-1,0,'Total healing received','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total healing received','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',141,0,8,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(845,-1,-1,0,'Explore Ashenvale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Ashenvale, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,8,0,3543,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_ashenvale_01'),(869,-1,-1,239,'50000 Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get 50000 honorable kills.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,8,0,3461,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_p_14'),(899,1,-1,0,'Oh My, Kurenai','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Kurenai.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,15,8,0,2208,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_foot_centaur'),(931,-1,-1,0,'Total factions encountered','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total factions encountered','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',147,0,8,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(934,-1,-1,0,'Total 25-player raids entered','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total 25-player raids entered','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,8,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(978,-1,-1,32,'3000 Quests Completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 3000 quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,50,8,0,3414,'Title Reward: The Seeker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_08'),(1009,-1,-1,0,'Knights of the Ebon Blade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Knights of the Ebon Blade.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,10,8,0,3683,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_knightsoftheebonblade'),(1014,-1,-1,518,'35 Exalted Reputations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise 35 reputations to Exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,10,8,0,3603,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_07'),(1028,1,-1,0,'Extinguishing Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Desecrate the Horde\'s bonfires in Eastern Kingdoms.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,8,0,1920,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_masterofelements'),(1039,0,-1,0,'The Flame Keeper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Midsummer achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,20,8,0,2975,'Title Reward: Flame Keeper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_summerfest_symbol_low'),(1040,1,-1,0,'Rotten Hallow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ruin Hallow\'s End for the Horde by completing Sergeant Hartman\'s quests which involve crashing the wickerman festival and cleaning up the stinkbombs from Southshore.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,8,0,3480,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_halloween_rottenegg_01'),(1043,-1,-1,0,'Greed rolls made on loot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Greed rolls made on loot','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',191,0,8,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1075,-1,555,0,'Murmur kills (Shadow Labyrinth)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Murmur kills (Shadow Labyrinth)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,8,1,2793,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_mace_54'),(1102,-1,309,0,'Hakkar kills (Zul\'Gurub)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Hakkar kills (Zul\'Gurub)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,8,1,2804,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_coin_15'),(1110,-1,-1,0,'3v3 Arena Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','3v3 Arena Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,8,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1164,0,30,0,'Everything Counts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Alterac Valley while your team controls both mines.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,8,0,3433,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winav_bothmines'),(1269,-1,-1,0,'Explore Storm Peaks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Storm Peaks, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14780,10,8,0,3404,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_stormpeaks_01'),(1273,0,-1,0,'Nagrand Slam','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 87 quests in Nagrand.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,8,0,3563,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_nagrand_01'),(1291,-1,-1,0,'Lonely?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Enjoy a Buttermilk Delight with someone in Dalaran at a Romantic Picnic during the Love is in the Air celebration.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,8,0,2545,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_basket_01'),(1301,-1,-1,0,'Mana potion used most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Mana potion used most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,8,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,922,'trade_engineering'),(1311,-1,530,0,'Medium Rare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill one of the extremely rare and hard to find Outland creatures listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14779,10,8,0,134,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'spell_shadow_deathscream'),(1357,0,-1,0,'Fo\' Grizzle My Shizzle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 75 quests in Grizzly Hills.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,8,0,3339,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_grizzlyhills_07'),(1493,-1,-1,0,'3v3 Arena Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','3v3 Arena Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,8,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1507,-1,619,0,'Herald Volazj kills (Heroic Ahn\'kahet)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Herald Volazj kills (Heroic Ahn\'kahet)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,8,1,1256,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_monsterspidercarapace_01'),(1518,-1,-1,0,'Fish caught','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish caught','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',178,0,8,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1552,-1,-1,0,'Frenzied Firecracker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Shoot off 10 Festival Firecrackers in 30 seconds or less.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,8,0,355,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_bomb_05'),(1727,-1,571,0,'Leaning Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy a tower in Wintergrasp.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,8,0,2661,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',1,0,'spell_arcane_teleporttheramore'),(1800,-1,-1,0,'The Outland Gourmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cook each of the Outland cooking recipes listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,8,0,3162,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_food_84_roastclefthoof'),(2193,-1,607,0,'Explosives Expert','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Plant 5 Seaforium charges which successfully damage a wall in a single battle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,8,0,355,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_bomb_05'),(2497,0,-1,0,'Spring Fling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Find your pet Spring Rabbit another one to love in each of the towns listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,8,0,3202,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_egg_09'),(2760,1,-1,2777,'Exalted Champion of Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent Darnassus in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,8,0,3801,'Title Reward: of Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_symbol_nightelf'),(2862,-1,603,0,'Hodir victories (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Hodir victories (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,8,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2907,-1,603,0,'Three Car Garage (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan while in each of the following vehicles in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,8,0,656,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_gizmo_02'),(2908,-1,603,0,'Three Car Garage (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan while in each of the following vehicles in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,8,0,656,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_gizmo_02'),(3596,1,-1,0,'Pilgrim\'s Progress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete each of the Pilgrim\'s Bounty dailies.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,8,0,3966,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'inv_helmet_65'),(3800,-1,-1,0,'The Traitor King (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 40 Swarm Scarabs within 30 seconds in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,8,0,4006,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'achievement_boss_anubarak'),(3816,-1,-1,0,'The Traitor King (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 40 Swarm Scarabs within 30 seconds in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15002,10,8,0,4006,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'achievement_boss_anubarak'),(3838,-1,-1,0,'Dungeon & Raid Emblem','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot an Emblem of Heroism, Valor, Conquest, Triumph or Frost.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,8,8,1950,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'spell_holy_empowerchampion'),(3847,-1,628,0,'Four Car Garage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In Isle of Conquest, control the following vehicles:','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,8,0,656,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_gizmo_02'),(4053,-1,-1,0,'Victories over Shaman Champion (Heroic Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Shaman Champion (Heroic Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,8,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4631,-1,631,4527,'Heroic: The Frostwing Halls (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Frostwing Halls in Icecrown Citadel in 10-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,8,0,4158,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_frostwinghalls'),(4635,-1,631,4607,'Heroic: The Frostwing Halls (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of The Frostwing Halls in Icecrown Citadel in 25-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,8,0,4158,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_frostwinghalls'),(4719,-1,-1,0,'Ick and Krick kills (Heroic Pit of Saron)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,8,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(36,-1,-1,0,'The Empire of Zul\'Drak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 100 quests in Zul\'Drak.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,9,0,3340,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_zuldrak_07'),(54,-1,566,0,'Eye of the Storm battles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eye of the Storm battles','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,9,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(103,-1,-1,0,'Circle of Blood matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Circle of Blood matches','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,9,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(156,-1,529,0,'Territorial Dominance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win 10 Arathi Basin matches while controlling all 5 flags.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,9,0,3452,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winab_5cap'),(201,-1,489,0,'Warsong Expedience','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Warsong Gulch in under 7 minutes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,9,0,3389,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winwsg_underxminutes'),(226,-1,30,0,'The Alterac Blitz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Alterac Valley in 6 minutes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,20,9,0,3380,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winav_underxminutes'),(306,-1,-1,0,'Master Angler of Azeroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win the Booty Bay fishing contest or the Kalu\'ak Fishing Derby.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,20,9,0,577,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_fish_06'),(332,-1,-1,0,'Most expensive auction sold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most expensive auction sold','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,9,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(460,-1,-1,0,'Realm First! Level 80 Mage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First mage on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,9,256,2832,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_staff_13'),(486,-1,602,0,'Halls of Lightning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in Halls of Lightning.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,9,0,3241,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_ulduar80_normal'),(497,-1,602,0,'Heroic: Halls of Lightning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Halls of Lightning bosses on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,9,0,3242,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_ulduar80_heroic'),(576,-1,-1,0,'The Fall of Naxxramas (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in Naxxramas in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,25,9,0,3258,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_naxxramas_normal'),(577,-1,-1,0,'The Fall of Naxxramas (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in Naxxramas in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,50,9,0,3259,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_naxxramas_10man'),(587,-1,566,0,'Stormy Assassin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In a single Eye of the Storm battle, get 5 honorable kills at each of the bases.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,9,0,2837,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_druid_galewinds'),(636,-1,-1,0,'Razorfen Downs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Amnennar the Coldbringer.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,9,0,3655,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_amnennar_the_coldbringer'),(654,-1,-1,0,'Shadow Labyrinth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Murmur.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,9,0,3825,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_murmur'),(705,-1,-1,0,'Master of Arms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise four weapon skills to 400.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,25,9,0,279,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',4,0,'ability_warrior_offensivestance'),(846,-1,-1,0,'Explore Thousand Needles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Thousand Needles, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,9,0,3580,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_thousandneedles_01'),(858,-1,-1,0,'Explore Ghostlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Ghostlands, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,9,0,3540,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_ghostlands'),(870,-1,-1,869,'100000 Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get 100000 honorable kills.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,9,0,3453,'Title Reward: Of the Horde or Of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_p_15'),(901,0,-1,0,'Mag\'har of Draenor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with The Mag\'har.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,15,9,0,2208,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_foot_centaur'),(937,-1,-1,0,'Elune\'s Blessing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Elune\'s Blessing quest by defeating Omen.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,9,0,2821,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_aspiration'),(973,-1,-1,0,'5 Daily Quests Complete','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 5 daily quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,9,0,3424,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_daily_01'),(1010,-1,-1,0,'Northrend Vanguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gain exalted reputation with the Argent Crusade, Wyrmrest Accord, Kirin Tor and Knights of the Ebon Blade.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,20,9,0,2207,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_misc_hellifrepvpcombatmorale'),(1015,-1,-1,1014,'40 Exalted Reputations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise 40 reputations to Exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,10,9,0,3602,'Title Reward: The Exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_08'),(1029,1,-1,0,'Extinguishing Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Desecrate the Horde\'s bonfires in Kalimdor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,9,0,1920,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_masterofelements'),(1041,0,-1,0,'Rotten Hallow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ruin Hallow\'s End for the Alliance by completing Darkcaller Yanka\'s quests which involve going to Southshore, ruining the kegs with rotten eggs and tossing stinkbombs into the town.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,9,0,3480,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_halloween_rottenegg_01'),(1044,-1,-1,0,'Need rolls made on loot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Need rolls made on loot','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',191,0,9,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1076,-1,269,0,'Aeonus kills (Opening of the Dark Portal)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Aeonus kills (Opening of the Dark Portal)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,9,1,1699,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_dragon_black'),(1098,-1,249,0,'Onyxia kills (Onyxia\'s Lair)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Onyxia kills (Onyxia\'s Lair)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,9,1,1548,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_dragon_01'),(1103,-1,-1,0,'Lich King 5-player dungeons completed (final boss killed)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 5-player dungeons completed (final boss killed)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,9,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1109,-1,-1,0,'5v5 Arena Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','5v5 Arena Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,9,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1159,-1,-1,401,'Just the Two of Us: 2200','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 2200 personal rating in the 2v2 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,9,0,3036,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_2v2_7'),(1186,-1,-1,0,'Down With The Dark Iron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defend the Brewfest camp from the Dark Iron attack and complete the quest, \"This One Time, When I Was Drunk...\"','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',162,10,9,0,3072,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_ore_mithril_01'),(1193,-1,-1,0,'On the Blade\'s Edge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 86 quests in Blade\'s Edge Mountains.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,9,0,3549,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_bladesedgemtns_01'),(1234,-1,600,0,'The Prophet Tharon\'ja kills (Drak\'Tharon Keep)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','The Prophet Tharon\'ja kills (Drak\'Tharon Keep)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,9,1,2912,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_staff_63'),(1270,-1,-1,0,'Explore Icecrown','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Icecrown, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14780,10,9,0,3473,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_icecrown_01'),(1302,-1,-1,0,'Different mana potions used','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Different mana potions used','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,9,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,922,'trade_engineering'),(1312,-1,530,1311,'Bloody Rare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill all of the extremely rare and hard to find Outland creatures listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14779,25,9,0,134,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,1311,'spell_shadow_deathscream'),(1456,-1,-1,0,'Fish and other things caught','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish and other things caught','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',178,0,9,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1494,-1,-1,0,'5v5 Arena Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','5v5 Arena Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,9,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1544,-1,-1,0,'Highest Engineering skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest Engineering skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,9,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1687,-1,-1,0,'Let It Snow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','During the Feast of Winter Veil, use a Handful of Snowflakes on each of the race/class combinations listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,9,0,976,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'spell_frost_frostshock'),(1694,-1,-1,0,'Lovely Luck Is On Your Side','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Open a Lovely Dress Box and receive a Lovely Black Dress.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,9,0,3193,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_chest_cloth_50'),(1751,-1,571,0,'Didn\'t Stand a Chance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 20 mounted players using a tower cannon.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,9,0,3434,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_bg_kill_on_mount'),(1762,1,607,0,'Not Even a Scratch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win a Strand of the Ancients battle without losing any siege vehicles.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,9,0,457,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_warrior_charge'),(1777,-1,-1,0,'The Northrend Gourmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cook 15 of the Northrend recipes listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,9,0,3211,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',15,0,'inv_misc_food_138_fish'),(2217,-1,-1,0,'Most deadly Lich King 10-player raid boss','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most deadly Lich King 10-player raid boss','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,9,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,323,'trade_engineering'),(2420,0,-1,0,'Noble Garden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Hide a Brightly Colored Egg in Silvermoon City.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,9,0,3329,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_egg_06'),(2778,1,-1,0,'Champion of the Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent the Exodar in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,9,0,3796,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_symbol_draenei'),(2863,-1,603,0,'Thorim victories (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Thorim victories (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,9,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2909,-1,603,0,'Take Out Those Turrets (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy a Flame Leviathan Defense Turret in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,9,0,3854,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_theflameleviathan_01'),(2910,-1,603,0,'Take Out Those Turrets (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy a Flame Leviathan Defense Turret in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,9,0,2589,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_missilesmall_red'),(3457,-1,-1,0,'The Captain\'s Booty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Drink with the Dread Captain Demeza to join her crew during Pirates\' Day.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,9,0,2421,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'inv_helmet_66'),(3597,0,-1,0,'Pilgrim\'s Progress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete each of the Pilgrim\'s Bounty dailies.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,9,0,3966,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'inv_helmet_65'),(3808,-1,-1,0,'A Tribute to Skill (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In the Trial of the Grand Crusader, reach a Tribute Chest with at least 25 attempts remaining in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,9,0,3293,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',1,0,'inv_crown_14'),(3817,-1,-1,0,'A Tribute to Skill (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In the Trial of the Grand Crusader, reach a Tribute Chest with at least 25 attempts remaining in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15002,10,9,0,3293,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',1,0,'inv_crown_14'),(3839,-1,-1,3838,'25 Dungeon & Raid Emblems','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 25 Emblems of Heroism, Valor, Conquest, Triumph or Frost.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,9,136,1950,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'spell_holy_empowerchampion'),(3848,-1,628,0,'A-bomb-inable','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In a single Isle of Conquest battle, use 5 Seaforium Bombs on the enemy gates.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,9,0,2565,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_misc_bomb_01'),(4054,-1,-1,0,'Victories over Warrior Champion (Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Warrior Champion (Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,9,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4530,-1,631,0,'The Frozen Throne (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Lich King in Icecrown Citadel in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,9,0,4179,'Title: The Kingslayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_frozenthrone'),(4597,-1,631,0,'The Frozen Throne (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Lich King in Icecrown Citadel in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,9,0,4179,'Title: The Kingslayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_frozenthrone'),(4720,-1,-1,0,'Scourgelord Tyrannus kills (Pit of Saron)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,9,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(16,-1,-1,0,'Did Somebody Order a Knuckle Sandwich?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise your unarmed skill to 400.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,10,0,1997,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_warrior_secondwind'),(39,-1,-1,0,'Into the Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 75 quests in Sholazar Basin.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,10,0,3341,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_sholazar_07'),(50,-1,566,0,'Eye of the Storm victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eye of the Storm victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,10,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(104,-1,-1,0,'Circle of Blood victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Circle of Blood victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,10,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(159,-1,529,0,'Let\'s Get This Done','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Arathi Basin in 6 minutes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,10,0,3383,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winab_underxminutes'),(204,-1,489,0,'Ironman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In a single Warsong Gulch battle, carry and capture the flag 3 times without dying.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,10,0,3482,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_3flagcap_nodeaths'),(223,-1,30,0,'The Sickly Gazelle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In Alterac Valley, kill an enemy in the Field of Strife before they dismount.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,10,0,3434,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_kill_on_mount'),(293,-1,571,0,'Disturbing the Peace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','While wearing 3 pieces of Brewfest clothing, get completely smashed and dance in Dalaran.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',162,10,10,0,2518,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_beer_01'),(324,-1,-1,0,'Total deaths to Lich King 25-player raid bosses','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Total deaths to Lich King 25-player raid bosses','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,10,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(402,-1,-1,0,'Three\'s Company: 1550','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 1550 personal rating in the 3v3 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,10,0,3050,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_3v3_1'),(459,-1,-1,0,'Realm First! Level 80 Warrior','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First warrior on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,10,256,1462,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_sword_27'),(487,-1,578,0,'The Oculus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in The Oculus.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,10,0,3243,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_nexus80_normal'),(498,-1,578,0,'Heroic: The Oculus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat The Oculus bosses on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,10,0,3244,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_nexus80_heroic'),(578,-1,533,0,'The Dedicated Few (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of Naxxramas with less than 9 people in the zone in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,25,10,0,61,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_shadow_raisedead'),(579,-1,533,0,'The Dedicated Few (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses of Naxxramas with less than 21 people in the zone in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,50,10,0,61,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_shadow_raisedead'),(637,-1,189,0,'Scarlet Monastery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Scarlet Crusade within the Scarlet Monastery.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,10,0,2792,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_52'),(655,-1,-1,0,'Opening of the Dark Portal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Aeonus.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,10,0,3826,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_aeonus_01'),(726,-1,-1,0,'Mr. Pinchy\'s Magical Crawdad Box','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish your way to Mr. Pinchy\'s Magical Crawdad Box.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,10,0,2105,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_fish_14'),(762,0,-1,0,'Ambassador of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted reputation with 5 home cities.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,10,10,0,3374,'Title Reward: Ambassador','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_16'),(780,-1,-1,0,'Explore Redridge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Redridge Mountains, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,10,0,3565,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_redridgemountains'),(847,-1,-1,0,'Explore Stonetalon Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Stonetalon Mountains, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,10,0,3578,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_stonetalon_01'),(902,-1,-1,0,'Chief Exalted Officer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with The Consortium.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,10,10,0,2558,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_enchant_shardprismaticlarge'),(912,-1,-1,0,'Elders of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the Elders which are located in Eastern Kingdoms','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,10,0,2218,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_symbolofhope'),(921,-1,-1,0,'Gold from vendors','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gold from vendors','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,10,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(923,-1,-1,0,'Elixirs consumed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Elixirs consumed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,10,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(974,-1,-1,973,'50 Daily Quests Complete','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 50 daily quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,10,0,3425,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_daily_02'),(1011,0,-1,0,'The Winds of the North','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gain exalted reputation with the Horde Expedition.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,20,10,0,2625,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_misc_hellifrepvpthrallmarfavor'),(1030,1,-1,0,'Extinguishing Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Desecrate the Horde\'s bonfires in Outland.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,10,0,1920,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_masterofelements'),(1077,-1,545,0,'Warlord Kalithresh kills (The Steamvault)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Warlord Kalithresh kills (The Steamvault)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,10,1,1647,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_spear_04'),(1099,-1,409,0,'Ragnaros kills (Molten Core)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ragnaros kills (Molten Core)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,10,1,2290,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_elemental_totem'),(1104,-1,-1,0,'Lich King 10-player raids completed (final boss killed)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 10-player raids completed (final boss killed)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,10,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1113,-1,-1,0,'Alterac Valley Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Alterac Valley Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,10,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1157,-1,-1,0,'Duel-icious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win a duel against another player.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,10,0,2023,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_dualwieldspecialization'),(1194,-1,-1,0,'Into the Nether','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 120 quests in Netherstorm.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,10,0,3564,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_netherstorm_01'),(1258,-1,566,0,'Take a Chill Pill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In Eye of the Storm, kill a player who is under the effects of the Berserker power-up.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,10,0,3423,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_bg_killingblow_berserker'),(1261,-1,-1,0,'G.N.E.R.D. Rage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn 50 honorable kills while under the influence of the G.N.E.R.D. buff. It\'s a slap in the face!','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,10,0,2006,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_warrior_rampage'),(1495,-1,-1,0,'Alterac Valley Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Alterac Valley Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,10,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1508,-1,600,0,'The Prophet Tharon\'ja kills (Heroic Drak\'Tharon Keep)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','The Prophet Tharon\'ja kills (Heroic Drak\'Tharon Keep)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,10,1,2912,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_staff_63'),(1526,-1,-1,0,'Fishing daily quests completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fishing daily quests completed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',178,10,10,9,2736,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_fishingpole_01'),(1683,0,-1,0,'Brewmaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Brewfest achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,10,0,3697,'Title Reward: Brewmaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_worldevent_brewmaster'),(1685,0,-1,0,'Bros. Before Ho Ho Ho\'s','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Use Mistletoe on the Horde \"Brothers\" during the Feast of Winter Veil.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,10,0,1793,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_herb_09'),(1703,-1,-1,0,'My Love is Like a Red, Red Rose','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Bouquet of Red or Ebon Roses during the Love is in the Air celebration.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,10,0,1937,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'inv_rosebouquet01'),(1734,-1,-1,0,'Engineering Schematics learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Engineering Schematics learned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,10,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'NULL'),(1778,-1,-1,1777,'The Northrend Gourmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cook 30 of the Northrend recipes listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,10,0,3212,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',30,1777,'inv_misc_food_141_fish'),(2080,-1,-1,0,'Black War Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Black War Mammoth.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,10,0,3444,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_mount_mammoth_black'),(2192,0,607,0,'Not Even a Scratch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win a Strand of the Ancients battle without losing any siege vehicles.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,10,0,457,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_warrior_charge'),(2256,-1,-1,0,'Northern Exposure','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill one of the extremely rare and hard to find Northrend creatures listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14780,10,10,0,3637,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',1,0,'achievement_zone_stormpeaks_03'),(2421,1,-1,0,'Noble Garden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Hide a Brightly Colored Egg in Stormwind City.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,10,0,3329,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_egg_06'),(2761,1,-1,2778,'Exalted Champion of the Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent the Exodar in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,10,0,3796,'Title Reward: of the Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_symbol_draenei'),(2864,-1,603,0,'Freya victories (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Freya victories (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,10,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2911,-1,603,0,'Shutout (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan without causing a System Shutdown in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,10,0,3504,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_enggizmos_02'),(2912,-1,603,0,'Shutout (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan without causing a System Shutdown in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,10,0,3504,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_enggizmos_02'),(3558,-1,-1,0,'Sharing is Caring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Pass one of every dish at a Bountiful Table.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,10,0,79,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'spell_holy_layonhands'),(3809,-1,-1,3808,'A Tribute to Mad Skill (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In the Trial of the Grand Crusader, reach a Tribute Chest with at least 45 attempts remaining in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,10,0,4008,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',1,0,'inv_crown_15'),(3818,-1,-1,3817,'A Tribute to Mad Skill (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In the Trial of the Grand Crusader, reach a Tribute Chest with at least 45 attempts remaining in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15002,10,10,0,4008,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',1,0,'inv_crown_15'),(3840,-1,-1,3839,'50 Dungeon & Raid Emblems','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 50 Emblems of Heroism, Valor, Conquest, Triumph or Frost.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,10,136,1950,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'spell_holy_empowerchampion'),(3849,-1,628,0,'A-bomb-ination','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In a single Isle of Conquest battle, use 5 Huge Seaforium Bombs on the enemy gates','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,10,0,1755,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_misc_bomb_02'),(4055,-1,-1,0,'Victories over Warrior Champion (Heroic Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Warrior Champion (Heroic Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,10,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4583,-1,631,4530,'Bane of the Fallen King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Lich King in Icecrown Citadel in 10-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,10,0,4148,'Title: Bane of the Fallen King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_lichking'),(4584,-1,631,4597,'The Light of Dawn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Lich King in Icecrown Citadel in 25-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,10,0,2821,'Title: the Light of Dawn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_aspiration'),(4721,-1,-1,0,'Scourgelord Tyrannus kills (Heroic Pit of Saron)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,10,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4778,-1,-1,0,'Disenchant rolls made on loot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Disenchant rolls made on loot','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',191,0,10,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(38,-1,-1,0,'The Summit of Storm Peaks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 100 quests in Storm Peaks.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,11,0,3405,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_stormpeaks_07'),(162,-1,529,0,'We Had It All Along *cough*','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Arathi Basin by 10 points (1600 to 1590).','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,11,0,1876,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_shadow_improvedvampiricembrace'),(220,1,30,0,'Stormpike Perfection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Alterac Valley without losing a tower or captain. You must also control all of the Horde\'s towers.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,20,11,0,2897,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_stormpiketrinket_03'),(233,-1,566,0,'Bloodthirsty Berserker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get a killing blow while under the effects of the berserker buff in Eye of the Storm.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,11,0,38,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_nature_bloodlust'),(245,-1,-1,0,'That Takes Class','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get an honorable, killing blow on one of each class.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,11,0,244,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_cheapshot'),(291,-1,-1,0,'Check Your Head','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Use Weighted Jack-o\'-Lanterns to put pumpkin heads on each of the races listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,11,0,2528,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_bag_28_halloween'),(303,-1,-1,0,'Have Keg, Will Travel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Brewfest mount, or transform yours into one using Brewfest Hops.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',162,10,11,0,354,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_cask_01'),(403,-1,-1,402,'Three\'s Company: 1750','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 1750 personal rating in the 3v3 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,11,0,3049,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_3v3_4'),(458,-1,-1,0,'Realm First! Level 80 Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First rogue on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,11,256,1834,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_throwingknife_04'),(488,-1,575,0,'Utgarde Pinnacle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in Utgarde Pinnacle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,11,0,3245,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_utgardepinnacle_normal'),(499,-1,575,0,'Heroic: Utgarde Pinnacle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Utgarde Pinnacle bosses on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,11,0,3246,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_utgardepinnacle_heroic'),(546,-1,-1,0,'Safe Deposit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Buy 7 additional bank slots.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,11,0,2492,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_box_01'),(638,-1,-1,0,'Uldaman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Archaedas.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,11,0,3656,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_archaedas'),(656,-1,-1,0,'The Steamvault','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Warlord Kalithresh.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,11,0,3657,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_warlord_kalithresh'),(712,0,-1,0,'Warsong Outrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gain exalted reputation with the Warsong Outriders.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,11,0,282,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_warrior_warcry'),(778,-1,-1,0,'Explore Duskwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Duskwood, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,11,0,3533,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_duskwood'),(848,-1,-1,0,'Explore Desolace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Desolace, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,11,0,3530,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_desolace'),(878,-1,-1,0,'One That Didn\'t Get Away','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Catch one of the rare fish in the list below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,11,0,2918,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_fish_35'),(900,-1,-1,0,'The Czar of Sporeggar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with Sporeggar.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,15,11,0,2920,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_mushroom_11'),(911,-1,-1,0,'Elders of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the Elders which are located in Kalimdor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,11,0,2218,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_symbolofhope'),(948,1,-1,0,'Ambassador of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted reputation with 5 home cities.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,10,11,0,3375,'Title Reward: Ambassador','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_16'),(975,-1,-1,974,'200 Daily Quests Complete','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 200 daily quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,11,0,3426,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_daily_03'),(1012,1,-1,0,'The Winds of the North','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gain exalted reputation with the Alliance Vanguard.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,20,11,0,2413,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_misc_hellifrepvphonorholdfavor'),(1035,1,-1,0,'Desecration of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Extinguishing Eastern Kingdoms, Kalimdor and Outland achievements.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,11,0,1920,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_masterofelements'),(1078,-1,540,0,'Warchief Kargath Bladefist kills (The Shattered Halls)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Warchief Kargath Bladefist kills (The Shattered Halls)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,11,1,1962,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_warrior_endlessrage'),(1100,-1,469,0,'Nefarian kills (Blackwing Lair)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Nefarian kills (Blackwing Lair)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,11,1,1699,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_dragon_black'),(1114,-1,-1,0,'Arathi Basin Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Arathi Basin Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,11,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1146,-1,-1,0,'Gold spent on travel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gold spent on travel','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,11,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1195,-1,-1,0,'Shadow of the Betrayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 90 quests in Shadowmoon Valley.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,11,0,3584,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_shadowmoon'),(1235,-1,608,0,'Cyanigosa kills (The Violet Hold)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cyanigosa kills (The Violet Hold)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,11,1,1955,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_trinket_naxxramas02'),(1303,-1,-1,0,'Elixir consumed most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Elixir consumed most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,11,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,923,'trade_engineering'),(1496,-1,-1,0,'Arathi Basin Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Arathi Basin Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,11,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1538,-1,-1,0,'Highest Herbalism skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest Herbalism skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,11,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1547,-1,-1,0,'Dalaran Sewers matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Dalaran Sewers matches','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,11,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'NULL'),(1549,-1,607,0,'Strand of the Ancients battles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16775166',153,0,11,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1684,1,-1,0,'Brewmaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Brewfest achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,11,0,3697,'Title Reward: Brewmaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_worldevent_brewmaster'),(1686,1,-1,0,'Bros. Before Ho Ho Ho\'s','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Use Mistletoe on the Alliance \"Brothers\" during the Feast of Winter Veil.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,11,0,1793,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_herb_09'),(1697,1,-1,0,'Nation of Adoration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Lovely Charm Bracelet daily quest for each Alliance capital.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,11,0,3192,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'inv_valentinescard02'),(1763,-1,607,0,'Artillery Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy 100 vehicles using a turret.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,11,0,2244,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_weapon_rifle_19'),(1768,-1,-1,0,'Lich King 25-player raids completed (final boss killed)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 25-player raids completed (final boss killed)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,11,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'trade_engineering'),(1779,-1,-1,1778,'The Northrend Gourmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cook 45 of the Northrend recipes listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,11,0,3213,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',45,1777,'inv_misc_food_140_fish'),(1858,-1,533,0,'Arachnophobia (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Maexxna in Naxxramas within 20 minutes of Anub\'Rekhan\'s death in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,11,0,3515,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_halloween_spider_01'),(1859,-1,533,0,'Arachnophobia (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill Maexxna in Naxxramas within 20 minutes of Anub\'Rekhan\'s death in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,11,0,3515,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_halloween_spider_01'),(2085,-1,-1,0,'50 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 50 Stone Keeper\'s Shards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,11,0,3448,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_platnumdisks'),(2218,-1,-1,0,'Most deadly Lich King 25-player raid boss','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most deadly Lich King 25-player raid boss','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,11,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,324,'trade_engineering'),(2257,-1,-1,2256,'Frostbitten','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill all of the extremely rare and hard to find Northrend creatures listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14780,25,11,0,3638,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,2256,'achievement_zone_dragonblight_09'),(2422,-1,-1,0,'Shake Your Bunny-Maker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Use Spring Flowers to place rabbit ears upon females of at least 18th level.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,11,0,1216,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_flower_02'),(2779,1,-1,0,'Champion of Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent the Gnomeregan Exiles in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,11,0,3799,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_symbol_gnome'),(2865,-1,603,0,'Mimiron victories (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Mimiron victories (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,11,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2913,-1,603,0,'Orbital Bombardment (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan with at least 1 Orbital Defense System active in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,11,0,554,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_orb_04'),(2918,-1,603,0,'Orbital Bombardment (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan with 1 Orbital Defense System active in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,11,0,554,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_orb_04'),(3582,-1,-1,0,'Terokkar Turkey Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Talon King Ikiss while wearing a Pilgrim\'s Hat and either a Pilgrim\'s Dress, Robe, or Attire.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,11,0,3631,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'achievement_boss_talonkingikiss'),(3810,-1,-1,3809,'A Tribute to Insanity (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In the Trial of the Grand Crusader, reach a Tribute Chest with 50 attempts remaining in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,11,0,3916,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_crown_13'),(3819,-1,-1,3818,'A Tribute to Insanity (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In the Trial of the Grand Crusader, reach a Tribute Chest with 50 attempts remaining in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15002,10,11,0,3916,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_crown_13'),(3841,-1,-1,3840,'100 Dungeon & Raid Emblems','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 100 Emblems of Heroism, Valor, Conquest, Triumph or Frost.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,11,136,1950,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'spell_holy_empowerchampion'),(3850,-1,628,0,'Mowed Down','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In Isle of Conquest, destroy 10 vehicles and 100 players with turrets.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,11,0,3435,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_misc_missilesmallcluster_red'),(4022,-1,-1,0,'Victories over Argent Confessor Paletress (Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Argent Confessor Paletress (Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,11,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4532,-1,-1,0,'Fall of the Lich King (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in Icecrown Citadel in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,25,11,0,4157,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_frostmourne'),(4608,-1,-1,0,'Fall of the Lich King (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in Icecrown Citadel in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,25,11,0,4157,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_frostmourne'),(4722,-1,-1,0,'Falric kills (Halls of Reflection)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,11,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(40,-1,-1,0,'Icecrown: The Final Goal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 140 quests in Icecrown.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,12,0,3474,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_icecrown_07'),(211,-1,566,0,'Storm Glory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','While your team holds 4 of the bases in Eye of the Storm, personally grab the flag and capture it.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,10,12,0,3508,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_hld4bases_eos'),(246,1,-1,0,'Know Thy Enemy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get an honorable, killing blow on five different races.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,12,0,245,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_gouge'),(283,-1,-1,0,'The Masquerade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get transformed by the Hallowed Wands listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,12,0,3513,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_halloween_ghost_01'),(405,-1,-1,403,'Three\'s Company: 2000','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 2000 personal rating in the 3v3 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,12,0,3048,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_3v3_5'),(479,-1,595,0,'The Culling of Stratholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in Caverns of Time: Stratholme.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,12,0,3248,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_cotstratholme_normal'),(500,-1,595,0,'Heroic: The Culling of Stratholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Caverns of Time: Stratholme bosses on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,12,0,3249,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_cotstratholme_heroic'),(639,-1,209,0,'Zul\'Farrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Chief Ukorz Sandscalp.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,12,0,3687,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_chiefukorzsandscalp'),(657,-1,-1,0,'The Shattered Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Warchief Kargath Bladefist.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,12,0,3827,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_kargathbladefist_01'),(710,0,-1,0,'The Defiler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gain exalted reputation with The Forsaken Defilers.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,12,0,2847,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_shadow_psychichorrors'),(713,1,-1,0,'Silverwing Sentinel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gain exalted reputation with the Silverwing Sentinels.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,12,0,131,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_racial_shadowmeld'),(752,-1,-1,0,'Deaths in Naxxramas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in Naxxramas','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,12,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(772,-1,-1,0,'Explore Hillsbrad Foothills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Hillsbrad Foothills, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,12,0,3555,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_hillsbradfoothills'),(850,-1,-1,0,'Explore Dustwallow Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Dustwallow Marsh, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,12,0,3534,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_dustwallowmarsh'),(873,0,30,0,'Frostwolf Perfection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win Alterac Valley without losing a tower or captain. You must also control all of the Alliance\'s towers.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,20,12,0,2898,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_frostwolftrinket_03'),(903,-1,-1,0,'Shattrath Divided','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with The Scryers or The Aldor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,10,12,0,2174,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_arcane_portalshattrath'),(942,1,-1,0,'The Diplomat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise your reputation level from unfriendly to exalted with Timbermaw Hold, Sporeggar and the Kurenai.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,25,12,0,2737,'Title Reward: The Diplomat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_44'),(976,-1,-1,975,'500 Daily Quests Complete','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 500 daily quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,12,0,3427,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_daily_04'),(1025,0,-1,0,'Flame Keeper of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the flames of Eastern Kingdoms.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,12,0,1923,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_summerfest_firespirit'),(1079,-1,554,0,'Pathaleon the Calculator kills (The Mechanar)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Pathaleon the Calculator kills (The Mechanar)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,12,1,2529,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_wand_19'),(1101,-1,531,0,'C\'Thun kills (Temple of Ahn\'Qiraj)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','C\'Thun kills (Temple of Ahn\'Qiraj)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14821,5,12,1,1826,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_ahnqirajtrinket_06'),(1115,-1,-1,0,'Warsong Gulch Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Warsong Gulch Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,12,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1147,-1,-1,0,'Gold spent at barber shops','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gold spent at barber shops','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,12,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1176,-1,-1,0,'Got My Mind On My Money','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 100 gold.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,12,0,2992,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_coin_06'),(1275,-1,-1,0,'Bombs Away','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Fires Over Skettis quest in under 2 minutes 15 seconds while not in a group.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,12,0,2505,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_bomb_07'),(1304,-1,-1,0,'Different elixirs used','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Different elixirs used','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,12,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,923,'trade_engineering'),(1396,-1,571,0,'Elders of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the Elders which are located in Northrend.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,12,0,2218,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_holy_symbolofhope'),(1404,-1,-1,0,'Realm First! Level 80 Gnome','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First gnome on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,12,256,3283,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_character_gnome_male'),(1467,-1,-1,0,'Lich King 5-player bosses killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 5-player bosses killed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,10,12,9,2813,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_helmet_130'),(1497,-1,-1,0,'Warsong Gulch Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Warsong Gulch Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,12,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1509,-1,608,0,'Cyanigosa kills (Heroic Violet Hold)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cyanigosa kills (Heroic Violet Hold)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,12,1,1955,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_trinket_naxxramas02'),(1539,-1,-1,0,'Highest Inscription skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest Inscription skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,12,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1548,-1,-1,0,'Dalaran Sewers victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Dalaran Sewers victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,12,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'NULL'),(1550,-1,607,0,'Strand of the Ancients victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16775166',153,0,12,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1656,1,-1,0,'Hallowed Be Thy Name','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Hallow\'s End achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,12,0,3514,'Title Reward: The Hallowed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_halloween_witch_01'),(1688,-1,-1,0,'The Winter Veil Gourmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','During the Feast of Winter Veil, use your culinary expertise to produce a Gingerbread Cookie, Egg Nog and Hot Apple Cider.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,12,0,3191,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_food_62'),(1698,0,-1,0,'Nation of Adoration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Lovely Charm Bracelet daily quest for each Horde capital.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,12,0,3192,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'inv_valentinescard02'),(1836,-1,-1,0,'Old Crafty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up Old Crafty in Orgrimmar.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,12,0,2918,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'inv_misc_fish_35'),(1856,-1,533,0,'Make Quick Werk Of Him (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Patchwerk in Naxxramas in 3 minutes or less in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,12,0,313,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_shadow_abominationexplosion'),(1857,-1,533,0,'Make Quick Werk Of Him (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill Patchwerk in Naxxramas in 3 minutes or less in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,12,0,97,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_plaguecloud'),(1998,-1,-1,0,'Dalaran Cooking Award','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Dalaran Cooking Award.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,12,0,2468,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_ribbon_01'),(2082,-1,-1,0,'Ice Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain an Ice Mammoth.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,10,12,0,3446,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_mount_mammoth_white'),(2086,-1,-1,2085,'100 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 100 Stone Keeper\'s Shards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,12,0,3448,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_platnumdisks'),(2189,-1,607,0,'Artillery Expert','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy 5 vehicles using a turret in a single battle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,12,0,1617,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_ammo_bullet_03'),(2436,-1,-1,0,'Desert Rose','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Use Spring Robes to plant a flower in each of the deserts listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,12,0,3060,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shaman_giftearthmother'),(2762,1,-1,2779,'Exalted Champion of Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent the Gnomeregan Exiles in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,12,0,3799,'Title Reward: of Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_symbol_gnome'),(2866,-1,603,0,'General Vezax kills (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','General Vezax kills (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,12,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2914,-1,603,2913,'Orbital Devastation (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan with at least 2 Orbital Defense Systems active in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,12,0,287,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_orb_03'),(2916,-1,603,2918,'Orbital Devastation (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan with 2 Orbital Defense Systems active in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,12,0,287,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_orb_03'),(3578,-1,-1,0,'The Turkinator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Hunt enough Wild Turkeys quickly enough to gain Turkey Triumph.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,12,0,2221,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'ability_hunter_silenthunter'),(3842,-1,-1,3841,'250 Dungeon & Raid Emblems','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 250 Emblems of Heroism, Valor, Conquest, Triumph or Frost.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,12,136,1950,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'spell_holy_empowerchampion'),(3852,-1,628,0,'Cut the Blue Wire... No the Red Wire!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In Isle of Conquest, disarm 25 bombs.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,12,0,355,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_misc_bomb_05'),(4023,-1,-1,0,'Victories over Argent Confessor Paletress (Heroic Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Argent Confessor Paletress (Heroic Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,12,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4080,-1,-1,3810,'A Tribute to Dedicated Insanity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Meet the criteria for A Tribute to Insanity without any raid member having used an item only obtainable from 25-player Coliseum, or any more powerful item.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15001,10,12,0,3805,'Title: Argent Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_argentcrusader'),(4636,-1,-1,4532,'Heroic: Fall of the Lich King (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in Icecrown Citadel in 10-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,25,12,0,4157,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_frostmourne'),(4637,-1,-1,4608,'Heroic: Fall of the Lich King (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat every boss in Icecrown Citadel in 25-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,25,12,0,4157,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_frostmourne'),(4723,-1,-1,0,'Falric kills (Heroic Halls of Reflection)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,12,5,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(52,-1,489,0,'Warsong Gulch battles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Warsong Gulch battles','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,13,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(101,-1,-1,0,'Ring of Trials matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ring of Trials matches','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,13,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(292,-1,-1,0,'Sinister Calling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Sinister Squashling pet and Hallowed Helm.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,13,0,3511,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_halloween_cat_01'),(561,-1,-1,0,'D.E.H.T.A\'s Little P.I.T.A.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Uphold D.E.H.T.A\'s beliefs by completing all of the quests up to and including the Assassination of Harold Lane.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,13,0,3476,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_boreantundra_11'),(582,-1,30,0,'Alterac Valley All-Star','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In a single Alterac Valley battle, assault a graveyard, defend a graveyard, assault a tower, defend a tower and slay someone in the Field of Strife.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,20,13,0,2268,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_heroism'),(640,-1,-1,0,'Maraudon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Princess Theradras.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,13,0,3689,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_princesstheradras'),(658,-1,-1,0,'The Mechanar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Pathaleon the Calculator.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,13,0,3688,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_pathaleonthecalculator'),(711,1,-1,0,'Knight of Arathor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gain exalted reputation with The League of Arathor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,10,13,0,1934,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_warrior_rallyingcry'),(782,-1,-1,0,'Explore Swamp of Sorrows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Swamp of Sorrows, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,13,0,3569,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_swampsorrows_01'),(811,-1,-1,0,'Flasks consumed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Flasks consumed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,13,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(849,-1,-1,0,'Explore Feralas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Feralas, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,13,0,3539,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_feralas'),(910,-1,-1,0,'Elders of the Dungeons','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the Elders which are located inside the dungeons.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,13,0,2218,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_symbolofhope'),(943,0,-1,0,'The Diplomat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise your reputation level from unfriendly to exalted with Timbermaw Hold, Sporeggar and The Mag\'har.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,25,13,0,2737,'Title Reward: The Diplomat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_44'),(958,-1,-1,0,'Sworn to the Deathsworn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Ashtongue Deathsworn.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,10,13,0,3696,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_ashtonguedeathsworn'),(977,-1,-1,976,'1000 Daily Quests Complete','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete 1000 daily quests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,13,0,3428,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_daily_05'),(1005,0,-1,0,'Know Thy Enemy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get an honorable, killing blow on five different races.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,13,0,245,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_gouge'),(1026,0,-1,0,'Flame Keeper of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the flames of Kalimdor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,13,0,1923,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_summerfest_firespirit'),(1080,-1,553,0,'Warp Splinter kills (The Botanica)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Warp Splinter kills (The Botanica)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,13,1,2794,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_weapon_shortblade_57'),(1112,-1,-1,0,'Eye of the Storm Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eye of the Storm Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,13,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1148,-1,-1,0,'Gold spent on postage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gold spent on postage','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,13,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1160,-1,-1,405,'Three\'s Company: 2200','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 2200 personal rating in the 3v3 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,13,0,3047,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_3v3_7'),(1171,-1,-1,0,'Master of Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Eye of the Storm achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14803,25,13,0,1931,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_nature_eyeofthestorm'),(1177,-1,-1,1176,'Got My Mind On My Money','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 1,000 gold.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,13,0,2802,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_coin_04'),(1236,-1,604,0,'Gal\'darah kills (Gundrak)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gal\'darah kills (Gundrak)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,13,1,2914,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_shield_59'),(1259,-1,489,0,'Not So Fast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In Warsong Gulch, kill a player who is under the effects of the speed power-up.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,13,0,517,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_rogue_trip'),(1276,-1,-1,0,'Blade\'s Edge Bomberman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Bomb Them Again! quest in under 2 minutes 15 seconds while not in a group.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,13,0,1696,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_bomb_04'),(1405,-1,-1,0,'Realm First! Level 80 Blood Elf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First blood elf on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,13,256,3323,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_character_bloodelf_female'),(1485,-1,-1,0,'Lich King 5-player different bosses killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 5-player different bosses killed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,13,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,1467,'trade_engineering'),(1498,-1,-1,0,'Eye of the Storm Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eye of the Storm Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,13,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1657,0,-1,0,'Hallowed Be Thy Name','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Hallow\'s End achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,13,0,3514,'Title Reward: The Hallowed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_halloween_witch_01'),(1689,-1,-1,0,'He Knows If You\'ve Been Naughty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Open one of the presents underneath the Winter Veil tree once they are available.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,13,0,1859,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',1,0,'inv_holiday_christmas_present_01'),(1700,-1,-1,0,'Perma-Peddle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a permanent Peddlefeet pet by procuring a Truesilver Shafted Arrow.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,13,0,288,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',1,0,'inv_ammo_arrow_02'),(1735,-1,-1,0,'Inscriptions learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Inscriptions learned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,13,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'NULL'),(1764,-1,607,0,'Drop it!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 100 players carrying seaforium.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,13,0,454,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_hunter_beastsoothe'),(1837,-1,-1,0,'Old Ironjaw','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up Old Ironjaw in Ironforge.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,13,0,1881,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'inv_misc_fish_31'),(1996,-1,533,0,'The Safety Dance (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Heigan the Unclean in Naxxramas without anyone in the raid dying in 10 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,13,0,2116,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_rogue_quickrecovery'),(1999,-1,-1,1998,'10 Dalaran Cooking Awards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain 10 Dalaran Cooking Awards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,13,0,2468,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_ribbon_01'),(2083,-1,-1,0,'Grand Ice Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Grand Ice Mammoth.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,10,13,0,3446,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_mount_mammoth_white'),(2087,-1,-1,2086,'250 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 250 Stone Keeper\'s Shards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,13,0,3448,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_platnumdisks'),(2139,-1,533,0,'The Safety Dance (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Heigan the Unclean in Naxxramas without anyone in the raid dying in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,13,0,2116,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'ability_rogue_quickrecovery'),(2576,-1,-1,0,'Blushing Bride','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kiss someone wearing an Elegant Dress while wearing a White Tuxedo Shirt and Black Tuxedo Pants.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',159,10,13,0,694,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_soothingkiss'),(2780,1,-1,0,'Champion of Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent Ironforge in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,13,0,3797,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_symbol_dwarf'),(2869,-1,603,0,'Yogg-Saron kills (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Yogg-Saron kills (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,13,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2915,-1,603,2914,'Nuked from Orbit (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan with at least 3 Orbital Defense Systems active in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,13,0,3850,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_orb_05'),(2917,-1,603,2916,'Nuked from Orbit (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan with 3 Orbital Defense Systems active in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,13,0,3850,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_orb_05'),(3516,-1,-1,0,'Deaths in Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in Ulduar','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,13,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'trade_engineering'),(3559,-1,-1,0,'Turkey Lurkey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Blast those dirty, sneaking Rogues with your Turkey Shooter.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14981,10,13,0,3589,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'inv_torch_unlit'),(3778,0,650,0,'Trial of the Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in the Trial of the Champion.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,13,0,370,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_spear_05'),(3843,-1,-1,3842,'500 Dungeon & Raid Emblems','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 500 Emblems of Heroism, Valor, Conquest, Triumph or Frost.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,13,136,1950,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'spell_holy_empowerchampion'),(3853,-1,628,0,'All Over the Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In a single Isle of Conquest battle, kill a player at each of the following locations:','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,13,0,4017,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_weapon_shortblade_37'),(4024,-1,-1,0,'Victories over Eadric the Pure (Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Eadric the Pure (Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,13,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4297,0,650,0,'Heroic: Trial of the Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in the Trial of the Champion on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,13,0,370,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_spear_05'),(4534,-1,631,0,'Boned (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Lord Marrowgar without any raid member remaining impaled for more than 8 seconds in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,13,0,4159,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_lordmarrowgar'),(4610,-1,631,0,'Boned (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Lord Marrowgar without any raid member remaining impaled for more than 8 seconds in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,13,0,4159,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_lordmarrowgar'),(4724,-1,-1,0,'Marwyn kills (Halls of Reflection)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,13,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(31,-1,-1,0,'A Simple Re-Quest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete a daily quest every day for five consecutive days.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,14,0,3481,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_quests_completed_daily_x5'),(100,-1,-1,0,'Ring of Trials victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ring of Trials victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,14,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(105,-1,-1,0,'Warsong Gulch victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Warsong Gulch victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,14,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(110,-1,-1,0,'Lich King 5-player boss killed the most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 5-player boss killed the most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,14,17,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,1467,'NULL'),(203,1,489,0,'Not In My House','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In a single Warsong Gulch battle, kill 2 flag carriers before they leave the Silverwing Flag Room.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,14,0,3583,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_killflagcarriers_grabflag_capit'),(247,-1,-1,0,'Make Love, Not Warcraft','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Emote /hug on a dead enemy before they release corpse.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,14,0,1853,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_brokenheart'),(406,-1,-1,0,'High Five: 1550','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 1550 personal rating in the 5v5 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,14,0,3046,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_5v5_1'),(547,-1,-1,0,'Veteran of the Wrathgate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Dragonblight quests leading up to and including the Return to Angrathar.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,14,0,3475,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_zone_icecrown_05'),(560,-1,-1,0,'Deadliest Catch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up Gahz\'ranka in Zul\'Gurub using the Mudskunk Lure.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,14,0,1751,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_murloc_01'),(583,-1,529,0,'Arathi Basin All-Star','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Assault and Defend 2 bases in a single Arathi Basin match.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,20,14,0,2729,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_warrior_intensifyrage'),(641,-1,-1,0,'Sunken Temple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Shade of Eranikus.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,14,0,3690,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_shadeoferanikus'),(659,-1,-1,0,'The Botanica','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Warp Splinter.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,14,0,3642,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_warpsplinter'),(706,0,-1,0,'Frostwolf Howler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Frostwolf Howler.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,14,0,2826,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_frostwolftrinket_01'),(765,-1,-1,0,'Explore Badlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Badlands, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,14,0,3546,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_badlands_01'),(851,-1,-1,0,'Explore Tanaris Desert','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Tanaris Desert, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,14,0,3577,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_tanaris_01'),(914,-1,-1,0,'Elders of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the Elders which are located in the Horde capital cities.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,14,0,2218,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_symbolofhope'),(945,-1,-1,0,'The Argent Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Argent Dawn and the Argent Crusade.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,25,14,0,2139,'Title Reward: The Argent Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_holyguidance'),(959,-1,-1,0,'The Scale of the Sands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with The Scale of the Sands.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,10,14,0,2937,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_enchant_dustillusion'),(965,0,-1,0,'Tricks and Treats of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Visit the Candy Buckets in Kalimdor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,14,0,3509,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_halloween_candy_01'),(1027,0,530,0,'Flame Keeper of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the flames of Outland.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,14,0,1923,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_summerfest_firespirit'),(1081,-1,552,0,'Harbinger Skyriss kills (The Arcatraz)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Harbinger Skyriss kills (The Arcatraz)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,14,1,2313,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_datacrystal02'),(1150,-1,-1,0,'Gold spent on talent tree respecs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gold spent on talent tree respecs','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,14,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1178,-1,-1,1177,'Got My Mind On My Money','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 5,000 gold.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,14,0,2994,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_coin_03'),(1262,1,-1,0,'Loremaster of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Outland quest achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,14,0,3492,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_zone_outland_01'),(1305,-1,-1,0,'Flask consumed most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Flask consumed most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,14,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,811,'trade_engineering'),(1406,-1,-1,0,'Realm First! Level 80 Draenei','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First draenei on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,14,256,3324,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_character_draenei_female'),(1486,-1,-1,0,'Strand of the Ancients Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Strand of the Ancients Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,14,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1499,-1,-1,0,'Strand of the Ancients Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Strand of the Ancients Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,14,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1510,-1,604,0,'Gal\'darah kills (Heroic Gundrak)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gal\'darah kills (Heroic Gundrak)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,14,1,2914,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_shield_59'),(1540,-1,-1,0,'Highest Jewelcrafting skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest Jewelcrafting skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,14,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1690,-1,-1,0,'A Frosty Shake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','During the Feast of Winter Veil, use your Winter Veil Disguise kit to become a snowman and then dance with another snowman in Dalaran.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,14,0,501,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_frost_frostward'),(1696,-1,-1,0,'The Rocket\'s Pink Glare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Shoot off 10 Love Rockets in 20 seconds or less.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,14,0,3195,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'inv_valentinepinkrocket'),(1997,-1,-1,0,'Momma Said Knock You Out (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Grand Widow Faerlina in Naxxramas without dispelling or preventing frenzy in 10 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,14,0,543,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_shadow_curseofmannoroth'),(2000,-1,-1,1999,'25 Dalaran Cooking Awards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain 25 Dalaran Cooking Awards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,14,0,2468,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_ribbon_01'),(2088,-1,-1,2087,'500 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 500 Stone Keeper\'s Shards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,14,0,3448,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_platnumdisks'),(2140,-1,-1,0,'Momma Said Knock You Out (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Grand Widow Faerlina in Naxxramas without dispelling or preventing frenzy in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,14,0,543,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'spell_shadow_curseofmannoroth'),(2190,-1,607,0,'Drop it now!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 5 players carrying seaforium in a single battle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,14,0,2908,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_rogue_dismantle'),(2763,1,-1,2780,'Exalted Champion of Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent Ironforge in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,14,0,3797,'Title Reward: of Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_symbol_dwarf'),(2867,-1,603,0,'Algalon the Observer kills (Ulduar 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Algalon the Observer kills (Ulduar 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,14,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(3056,-1,603,2915,'Orbit-uary (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan with all 4 Orbital Defense Systems active in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,14,0,1521,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_shadowegg'),(3057,-1,603,2917,'Orbit-uary (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Flame Leviathan with 4 Orbital Defense Systems active in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,14,0,1521,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_shadowegg'),(3456,-1,-1,0,'Dead Man\'s Party','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Dance with Catrina to become a skeleton during the Day of the Dead.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,14,0,3932,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2029990000',0,0,'inv_misc_bone_humanskull_02'),(3844,-1,-1,3843,'1000 Dungeon & Raid Emblems','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 1000 Emblems of Heroism, Valor, Conquest, Triumph or Frost.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,14,136,1950,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'spell_holy_empowerchampion'),(3854,-1,-1,0,'Back Door Job','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In Isle of Conquest, enter the enemy courtyard while their gates still stand.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,14,0,3768,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'ability_vehicle_launchplayer'),(4025,-1,-1,0,'Victories over Eadric the Pure (Heroic Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over Eadric the Pure (Heroic Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,14,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4296,1,650,0,'Trial of the Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in the Trial of the Champion.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,14,0,370,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_spear_05'),(4298,1,650,0,'Heroic: Trial of the Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in the Trial of the Champion on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,14,0,370,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_spear_05'),(4535,-1,631,0,'Full House (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Lady Deathwhisper with at least five different types of Cultists active at the time of her demise in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,14,0,4160,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_ladydeathwhisper'),(4598,-1,-1,0,'The Ashen Verdict','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Ashen Verdict.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14866,15,14,0,1672,'Title: Of the Ashen Verdict','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_talisman_08'),(4611,-1,631,0,'Full House (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Lady Deathwhisper with at least five different types of Cultists active at the time of her demise in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,14,0,4160,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_ladydeathwhisper'),(4725,-1,-1,0,'Marwyn kills (Heroic Halls of Reflection)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,14,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4780,-1,-1,0,'Deaths in Trial of the Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in Trial of the Crusader','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,14,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(144,-1,-1,0,'The Lurker Above','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up The Lurker Below in Serpentshrine Cavern.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,15,0,1734,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_creature_poison_05'),(334,-1,-1,0,'Most gold ever owned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Most gold ever owned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',140,0,15,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(389,-1,-1,0,'Gurubashi Arena Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot the Arena Master trinket from the Gurubashi Arena.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,15,0,2977,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_armorkit_14'),(407,-1,-1,406,'High Five: 1750','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 1750 personal rating in the 5v5 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,15,0,3045,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_5v5_4'),(584,-1,529,0,'Arathi Basin Assassin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get five honorable kills at each of the bases in a single Arathi Basin battle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,20,15,0,2285,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_hunter_rapidkilling'),(642,-1,-1,0,'Blackrock Depths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Emperor Dagran Thaurissan.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,15,0,3662,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_emperordagranthaurissan'),(660,-1,-1,0,'The Arcatraz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Harbinger Skyriss.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,15,0,3659,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_harbinger_skyriss'),(707,1,-1,0,'Stormpike Battle Charger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Stormpike Battle Charger.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,15,0,2827,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_stormpiketrinket_01'),(781,-1,-1,0,'Explore Stranglethorn Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Stranglethorn Vale, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,15,0,3568,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_stranglethorn_01'),(852,-1,-1,0,'Explore Azshara','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Azshara, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,15,0,3544,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_azshara_01'),(915,-1,-1,0,'Elders of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Honor the Elders which are located in the Alliance capital cities.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',160,10,15,0,2218,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_symbolofhope'),(941,-1,-1,0,'Hemet Nesingwary: The Collected Quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Green Hills of Stranglethorn, Hills Like White Elekk and Snows of Northrend achievements.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,15,0,2926,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_weapon_rifle_05'),(953,-1,-1,0,'Guardian of Cenarius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with the Cenarion Circle and Cenarion Expedition.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',201,25,15,0,553,'Title Reward: Guardian of Cenarius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_racial_ultravision'),(960,-1,-1,0,'The Violet Eye','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with The Violet Eye.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,10,15,0,1487,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_mindsooth'),(961,-1,-1,0,'Honorary Frenzyheart','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the 8 daily quests for the Frenzyheart listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,15,0,3477,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_sholazar_08'),(967,0,-1,0,'Tricks and Treats of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Visit the Candy Buckets in Eastern Kingdoms.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,15,0,2951,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_27'),(1036,0,-1,0,'The Fires of Azeroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Flame Keeper of Eastern Kingdoms, Kalimdor and Outland achievements.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,15,0,12,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_fireball'),(1082,-1,585,0,'Kael\'thas Sunstrider kills (Magister\'s Terrace)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kael\'thas Sunstrider kills (Magister\'s Terrace)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,15,1,2787,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_pheonixpet_01'),(1180,-1,-1,1178,'Got My Mind On My Money','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 10,000 gold.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,15,0,2993,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_coin_02'),(1188,-1,-1,0,'Shafted!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Shoot 10 players with the Silver Shafted Arrow.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,15,0,288,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_ammo_arrow_02'),(1237,-1,599,0,'Sjonnir the Ironshaper kills (Halls of Stone)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sjonnir the Ironshaper kills (Halls of Stone)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,15,1,2325,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_statue_06'),(1251,0,489,0,'Not In My House','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In a single Warsong Gulch battle, kill 2 flag carriers before they leave the Warsong Flag Room.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,15,0,3583,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_bg_killflagcarriers_grabflag_capit'),(1274,0,-1,0,'Loremaster of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Outland quest achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14862,10,15,0,3492,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_outland_01'),(1306,-1,-1,0,'Different flasks consumed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Different flasks consumed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,15,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,811,'trade_engineering'),(1407,-1,-1,0,'Realm First! Level 80 Dwarf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First dwarf on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,15,256,3286,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_character_dwarf_male'),(1545,-1,-1,0,'Ring of Valor matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ring of Valor matches','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,15,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'NULL'),(1738,-1,-1,0,'Jewelcrafting Designs learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Jewelcrafting Designs learned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,15,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'NULL'),(1766,-1,607,0,'Ancient Protector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 10 players in the Courtyard of the Ancients in a single battle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,15,0,2957,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_rogue_bloodsplatter'),(1770,-1,-1,0,'Lich King 10-player bosses killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 10-player bosses killed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,15,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'trade_engineering'),(2001,-1,-1,2000,'50 Dalaran Cooking Awards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain 50 Dalaran Cooking Awards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,15,0,2468,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_ribbon_01'),(2089,-1,-1,2088,'1000 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 1000 Stone Keeper\'s Shards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,15,0,3448,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_platnumdisks'),(2178,-1,533,0,'Shocking! (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thaddius in Naxxramas without anyone in the raid crossing the negative and positive charges in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,15,0,1886,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_chargepositive'),(2179,-1,533,0,'Shocking! (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thaddius in Naxxramas without anyone in the raid crossing the negative and positive charges in 25 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,15,0,1886,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_chargepositive'),(2781,1,-1,0,'Champion of Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent Stormwind in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,15,0,3800,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_symbol_human'),(2872,-1,603,0,'Flame Leviathan kills (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Flame Leviathan kills (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,15,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2919,-1,603,0,'A Quick Shave (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Razorscale without allowing her to fly into the air more than once in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,15,0,3851,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_razorscale'),(2921,-1,603,0,'A Quick Shave (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Razorscale without allowing her to fly into the air more than once in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,15,0,3851,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_razorscale'),(3478,1,-1,0,'Pilgrim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Pilgrim\'s Bounty achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,15,0,3936,'Reward: Pilgrim Title & Plump Turkey Pet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_thanksgiving_turkey'),(3856,1,-1,0,'Demolition Derby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy the following vehicles in Isle of Conquest','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,15,0,2306,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_gizmo_supersappercharge'),(3876,-1,-1,3844,'1500 Dungeon & Raid Emblems','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 1500 Emblems of Heroism, Valor, Conquest, Triumph or Frost.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,15,136,1950,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'spell_holy_empowerchampion'),(4026,-1,-1,0,'The Black Knight kills (Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','The Black Knight kills (Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,15,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4096,-1,628,0,'Isle of Conquest battles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Isle of Conquest battles','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,15,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4436,1,-1,0,'BB King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Pelt the enemy leaders listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,15,0,393,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_weapon_rifle_01'),(4516,-1,632,0,'The Forge of Souls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in The Forge of Souls','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,15,0,4149,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_forgeofsouls'),(4519,-1,632,0,'Heroic: The Forge of Souls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in The Forge of Souls on Heroic difficulty','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,15,0,4149,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_forgeofsouls'),(4536,-1,631,0,'I\'m on a Boat (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Claim victory in the Gunship Battle without any raid member visiting the enemy gunship more than twice in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,15,0,4145,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_dungeon_hordeairship'),(4612,-1,631,0,'I\'m on a Boat (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Claim victory in the Gunship Battle without any raid member visiting the enemy gunship more than once in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,15,0,4145,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_dungeon_hordeairship'),(4726,-1,-1,0,'Lich King escapes (Halls of Reflection)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,15,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4777,-1,-1,0,'Isle of Conquest Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Isle of Conquest Killing Blows','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',137,0,15,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4779,-1,-1,0,'Isle of Conquest Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Isle of Conquest Honorable Kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',136,0,15,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4781,-1,-1,0,'Deaths in Icecrown Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deaths in Icecrown Citadel','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',125,0,15,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(202,1,489,0,'Quick Cap','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Grab the flag and capture it in under 75 seconds.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,16,0,3483,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_grab_cap_flagunderxseconds'),(346,-1,-1,0,'Beverages consumed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Beverages consumed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,16,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(396,-1,-1,0,'Gurubashi Arena Grand Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete Short John Mithril\'s quest to obtain the Arena Grand Master trinket.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,16,0,2555,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_armorkit_04'),(404,-1,-1,407,'High Five: 2000','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 2000 personal rating in the 5v5 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,16,0,3044,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_5v5_5'),(643,-1,-1,0,'Lower Blackrock Spire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Overlord Wyrmthalak.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,16,0,3650,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_overlord_wyrmthalak'),(661,-1,-1,0,'Magister\'s Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kael\'thas Sunstrider.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,16,0,3665,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_kael\'thassunstrider_01'),(708,0,-1,0,'Hero of the Frostwolf Clan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gain exalted reputation with the Frostwolf Clan.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,16,0,2828,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_frostwolftrinket_05'),(760,-1,-1,0,'Explore Alterac Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Alterac Mountains, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,16,0,3541,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_alteracmountains_01'),(853,-1,-1,0,'Explore Felwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Felwood, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,16,0,3538,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_felwood'),(905,-1,-1,0,'Old Man Barlowned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete each of Old Man Barlo\'s 5 fishing daily quests listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,16,0,3693,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_profession_fishing_oldmanbarlowned'),(962,-1,-1,0,'Savior of the Oracles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the 8 daily quests for the Oracles listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,16,0,3478,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_sholazar_11'),(968,0,-1,0,'Tricks and Treats of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Visit the Candy Buckets in Outland.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,16,0,2952,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_29'),(1031,0,-1,0,'Extinguishing Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Desecrate the Alliance\'s bonfires in Eastern Kingdoms.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,16,0,1920,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_masterofelements'),(1083,-1,532,0,'Prince Malchezaar kills (Karazhan)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Prince Malchezaar kills (Karazhan)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,16,1,2294,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_arcane_blast'),(1169,1,-1,0,'Master of Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Arathi Basin achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,25,16,0,1156,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_amulet_07'),(1181,-1,-1,1180,'Got My Mind On My Money','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 25,000 gold.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,16,0,2801,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_coin_01'),(1408,-1,-1,0,'Realm First! Level 80 Human','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First human on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,16,256,3325,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_character_human_female'),(1511,-1,599,0,'Sjonnir the Ironshaper kills (Heroic Halls of Stone)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sjonnir the Ironshaper kills (Heroic Halls of Stone)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,16,1,2325,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_statue_06'),(1546,-1,-1,0,'Ring of Valor victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ring of Valor victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,16,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'NULL'),(1576,-1,-1,0,'Of Blood and Anguish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Ring of Blood quests in Nagrand and the Ampitheater of Anguish quests in Zul\'Drak.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,16,0,1599,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_helmet_08'),(1638,-1,-1,0,'Skyshattered','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Captain Skyshatter in the Dragonmaw race on Netherwing Ledge.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14865,10,16,0,1928,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_mount_netherdrakepurple'),(1702,-1,-1,0,'Sweet Tooth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sample the Love is in the Air candies listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,16,0,1855,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_valentineschocolate02'),(1722,-1,624,0,'Archavon the Stone Watcher (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Archavon the Stone Watcher in 10 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,16,0,2351,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_statue_07'),(1771,-1,-1,0,'Lich King 10-player different bosses killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 10-player different bosses killed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,16,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,1770,'trade_engineering'),(1977,-1,-1,0,'Dalaran Jewelcrafter\'s Tokens gained','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Dalaran Jewelcrafter\'s Tokens gained','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,16,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'trade_engineering'),(2002,-1,-1,2001,'100 Dalaran Cooking Awards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain 100 Dalaran Cooking Awards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,16,0,2468,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_ribbon_01'),(2180,-1,533,0,'Subtraction (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thaddius in Naxxramas with less than 9 players in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,16,0,1885,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_chargenegative'),(2181,-1,533,0,'Subtraction (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thaddius in Naxxramas with less than 21 players in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,16,0,1885,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_chargenegative'),(2191,-1,607,0,'Ancient Courtyard Protector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 100 players in the Courtyard of the Ancients.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,10,16,0,856,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_rogue_ambush'),(2764,1,-1,2781,'Exalted Champion of Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent Stormwind in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,16,0,3800,'Title Reward: of Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_symbol_human'),(2873,-1,603,0,'Razorscale kills (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Razorscale kills (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,16,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2923,-1,603,0,'Iron Dwarf, Medium Rare (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat 25 Dark Rune Guardian Dwarves with Razorscale\'s Flame Breath in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,16,0,3853,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_dungeon_ulduarraid_irondwarf_01'),(2924,-1,603,0,'Iron Dwarf, Medium Rare (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat 25 Dark Rune Guardian Dwarves with Razorscale\'s Flame Breath in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,16,0,3853,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_dungeon_ulduarraid_irondwarf_01'),(3656,0,-1,0,'Pilgrim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Pilgrim\'s Bounty achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,16,0,3936,'Reward: Pilgrim Title & Plump Turkey Pet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_thanksgiving_turkey'),(4027,-1,-1,0,'The Black Knight kills (Heroic Trial of the Champion)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','The Black Knight kills (Heroic Trial of the Champion)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,16,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4097,-1,-1,0,'Isle of Conquest victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Isle of Conquest victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,16,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(4256,0,-1,0,'Demolition Derby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy the following vehicles in Isle of Conquest','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,16,0,2306,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_gizmo_supersappercharge'),(4316,-1,-1,3876,'2500 Dungeon & Raid Emblems','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot 2500 Emblems of Heroism, Valor, Conquest, Triumph or Frost.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,16,136,1950,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_empowerchampion'),(4437,0,-1,0,'BB King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Pelt the enemy leaders listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',156,10,16,0,393,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_weapon_rifle_01'),(4517,-1,658,0,'The Pit of Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in The Pit of Saron.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,16,0,4150,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_pitofsaron'),(4520,-1,658,0,'Heroic: The Pit of Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in The Pit of Saron on Heroic difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,16,0,4150,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_pitofsaron'),(4537,-1,631,0,'I\'ve Gone and Made a Mess (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Deathbringer before Mark of the Fallen Champion is cast three times in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,16,0,4161,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_saurfang'),(4613,-1,631,0,'I\'ve Gone and Made a Mess (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Deathbringer before Mark of the Fallen Champion is cast five times in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,16,0,4161,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_saurfang'),(4727,-1,-1,0,'Lich King escapes (Heroic Halls of Reflection)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712188',15062,0,16,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(99,-1,-1,0,'Ruins of Lordaeron matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ruins of Lordaeron matches','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,17,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(388,1,-1,0,'City Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 50 enemy players in any of your home cities.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,17,136,3574,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_a'),(393,-1,-1,0,'Alterac Valley towers defended','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Alterac Valley towers defended','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,17,1,1243604,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(667,-1,543,0,'Heroic: Hellfire Ramparts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the leaders of Hellfire Ramparts on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,17,0,3680,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_omartheunscarred_01'),(709,1,-1,0,'Hero of the Stormpike Guard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gain exalted reputation with the Stormpike Guard.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,17,0,2829,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_stormpiketrinket_05'),(761,-1,-1,0,'Explore Arathi Highlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Arathi Highlands, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,17,0,3542,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_arathihighlands_01'),(854,-1,-1,0,'Explore Un\'Goro Crater','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Un\'Goro Crater, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,17,0,3588,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_ungorocrater_01'),(891,-1,-1,0,'Giddy Up!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Learn the apprentice riding skill.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,17,0,1176,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mount_ridinghorse'),(938,-1,-1,0,'The Snows of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete all of Hemet Nesingwary quests in Northrend up to and including Post-partum Aggression.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,17,0,1581,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_hunter_pet_crocolisk'),(971,0,-1,0,'Tricks and Treats of Azeroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Kalimdor, Eastern Kingdoms and Outland Tricks and Treats achievements.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,20,17,0,1743,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_28'),(1032,0,-1,0,'Extinguishing Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Desecrate the Alliance\'s bonfires in Kalimdor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,17,0,1920,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_masterofelements'),(1084,-1,568,0,'Zul\'jin kills (Zul\'Aman)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Zul\'jin kills (Zul\'Aman)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,17,1,2806,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_114'),(1161,-1,-1,404,'High Five: 2200','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn a 2200 personal rating in the 5v5 bracket of the arena at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,17,0,3043,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_5v5_7'),(1170,0,-1,0,'Master of Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Arathi Basin achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14802,25,17,0,1156,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_amulet_07'),(1182,-1,-1,0,'The Bread Winner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Make 10,000 gold from quest rewards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,17,0,2995,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_coin_16'),(1225,-1,530,0,'Outland Angler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Catch a fish in each of the specific nodes listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,17,0,3691,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_profession_fishing_outlandangler'),(1238,-1,602,0,'Loken kills (Halls of Lightning)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loken kills (Halls of Lightning)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,17,1,320,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_lightning_lightningbolt01'),(1307,-1,-1,0,'Upper Blackrock Spire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat General Drakkisath.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,17,0,3821,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'achievement_boss_generaldrakkisath'),(1409,-1,-1,0,'Realm First! Level 80 Night Elf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First night elf on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,17,256,3288,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_character_nightelf_male'),(1502,0,489,0,'Quick Cap','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Grab the flag and capture it in under 75 seconds.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,17,0,3483,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_bg_grab_cap_flagunderxseconds'),(1536,-1,-1,0,'Highest Leatherworking skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest Leatherworking skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,17,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1658,-1,-1,0,'Champion of the Frozen Wastes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the dungeon and raid bosses listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,17,0,182,'Title Reward: Champion of the Frozen Wastes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_frost_chillingarmor'),(1691,0,-1,0,'Merrymaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Winter Veil achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,17,0,3695,'Title Reward: Merrymaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_worldevent_merrymaker'),(1721,-1,624,0,'Archavon the Stone Watcher (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Archavon the Stone Watcher in 25 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,17,0,2351,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_statue_07'),(1772,-1,-1,0,'Lich King 10-player boss killed the most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 10-player boss killed the most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,17,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,1770,'trade_engineering'),(1773,-1,-1,0,'Beverage consumed most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Beverage consumed most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,17,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,346,'trade_engineering'),(1780,-1,-1,0,'Second That Emotion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eat each one of the \"emotion\" foods listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,17,0,1854,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_valentineschocolate01'),(2182,-1,533,0,'Spore Loser (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Loatheb in Naxxramas without killing any spores in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,17,0,3099,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_herb_ragveil'),(2183,-1,533,0,'Spore Loser (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Loatheb in Naxxramas without killing any spores in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,17,0,3099,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_herb_ragveil'),(2194,1,-1,0,'Master of Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Strand of the Ancients achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,25,17,0,3402,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_bg_winsoa'),(2782,1,-1,0,'Champion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent every Alliance race\'s faction in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,17,0,3807,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_banner_human'),(2874,-1,603,0,'Ignis the Furnace Master kills (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ignis the Furnace Master kills (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,17,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2925,-1,603,0,'Shattered (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Ignis the Furnace Master after shattering 2 Iron Constructs within 5 seconds in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,17,0,976,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_frost_frostshock'),(2926,-1,603,0,'Shattered (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Ignis the Furnace Master after shattering 2 Iron Constructs within 5 seconds in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,17,0,976,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_frost_frostshock'),(3855,-1,628,0,'Glaive Grave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In Isle of Conquest, kill 10 players with a Glaive Thrower without dying.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,10,17,0,85,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'ability_upgrademoonglaive'),(4028,-1,-1,0,'Victories over the Beasts of Northrend (Trial of the Crusader 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Beasts of Northrend (Trial of the Crusader 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,17,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4518,-1,668,0,'The Halls of Reflection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in The Halls of Reflection.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14806,10,17,0,4151,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_hallsofreflection'),(4521,-1,668,0,'Heroic: The Halls of Reflection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the bosses in The Halls of Reflection on Heroic difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,17,0,4151,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_icecrown_hallsofreflection'),(4538,-1,631,0,'Dances with Oozes (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Rotface without a Big Ooze casting Unstable Ooze Explosion in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,17,0,636,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_nature_acid_01'),(4614,-1,631,0,'Dances with Oozes (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Rotface without a Big Ooze casting Unstable Ooze Explosion in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,17,0,636,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_nature_acid_01'),(4624,-1,-1,0,'Tough Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the trio of Crown Chemical Co. apothecaries in Shadowfang Keep.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',187,10,17,0,1076,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_undead_01'),(4639,-1,-1,0,'Lord Marrowgar kills (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lord Marrowgar kills (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,17,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(102,-1,-1,0,'Ruins of Lordaeron victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ruins of Lordaeron victories','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,18,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(207,-1,489,0,'Save The Day','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill the enemy who is carrying your flag in the opposing team\'s flag room while the opposing team\'s flag is at their base, within their control.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,10,18,0,2119,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_rogue_surpriseattack'),(394,-1,-1,0,'Alterac Valley towers captured','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Alterac Valley towers captured','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,18,1,1243604,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(408,-1,-1,0,'Hot Streak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win ten ranked matches in a row at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,18,0,11,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_fire'),(644,-1,429,0,'King of Dire Maul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat each wing of Dire Maul.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,18,0,559,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_warrior_decisivestrike'),(668,-1,542,0,'Heroic: The Blood Furnace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Keli\'dan the Breaker on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,18,0,3629,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_kelidanthebreaker'),(773,-1,-1,0,'Explore The Hinterlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore The Hinterlands, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,18,0,3556,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_hinterlands_01'),(855,-1,-1,0,'Explore Moonglade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Moonglade, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,18,0,1660,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_arcane_teleportmoonglade'),(889,-1,-1,891,'Fast and Furious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Learn the journeyman riding skill.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,18,0,836,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mount_blackpanther'),(963,1,-1,0,'Tricks and Treats of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Visit the Candy Buckets in Kalimdor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,18,0,3509,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_halloween_candy_01'),(1006,0,-1,0,'City Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 50 enemy players in any of your home cities.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,18,136,3575,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_h'),(1033,0,-1,0,'Extinguishing Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Desecrate the Alliance\'s bonfires in Outland.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,18,0,1920,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_masterofelements'),(1085,-1,565,0,'Gruul kills (Gruul\'s Lair)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gruul kills (Gruul\'s Lair)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,18,1,2798,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_shoulder_59'),(1166,-1,30,0,'To the Looter Go the Spoils','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loot the Autographed Picture of Foror & Tigule in Alterac Valley.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,10,18,0,2990,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_scroll_10'),(1410,-1,-1,0,'Realm First! Level 80 Orc','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First orc on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,18,256,3289,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_character_orc_male'),(1512,-1,602,0,'Loken kills (Heroic Halls of Lightning)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loken kills (Heroic Halls of Lightning)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,18,1,320,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_lightning_lightningbolt01'),(1517,-1,571,0,'Northrend Angler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Catch a fish in each of the specific nodes listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,18,0,3692,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_profession_fishing_northrendangler'),(1596,-1,-1,0,'Guru of Drakuru','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the main storyline quests involving Drakuru listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,18,0,3479,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_zuldrak_05'),(1681,1,-1,0,'The Loremaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the quest achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,18,0,1644,'Reward: Title & Loremaster\'s Colors','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_book_07'),(1692,1,-1,0,'Merrymaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Winter Veil achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,10,18,0,3695,'Title Reward: Merrymaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_worldevent_merrymaker'),(1740,-1,-1,0,'Leatherworking Patterns learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Leatherworking Patterns learned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,18,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'NULL'),(1756,-1,-1,0,'Lich King 25-player bosses killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 25-player bosses killed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,18,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'trade_engineering'),(1774,-1,-1,0,'Different beverages consumed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Different beverages consumed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,18,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,346,'trade_engineering'),(1781,-1,-1,0,'Critter Gitter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Using Critter Bites, coerce 10 critters to be your pet within 3 minutes or less.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,18,0,2482,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_food_88_ravagernuggets'),(1919,-1,574,0,'On The Rocks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Prince Keleseth in Utgarde Keep on Heroic Difficulty without shattering any Frost Tombs.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,18,0,3260,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_mage_coldasice'),(2136,-1,-1,0,'Glory of the Hero','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Heroic Dungeon achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,25,18,0,3494,'Reward: Red Proto-Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_25'),(2176,-1,533,0,'And They Would All Go Down Together (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the 4 Horsemen in Naxxramas, ensuring that they all die within 15 seconds of each other in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,18,0,3005,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_deathknight_summondeathcharger'),(2177,-1,533,0,'And They Would All Go Down Together (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the 4 Horsemen in Naxxramas, ensuring that they all die within 15 seconds of each other in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,18,0,3005,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_deathknight_summondeathcharger'),(2195,0,-1,0,'Master of Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Strand of the Ancients achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14881,25,18,0,3402,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_bg_winsoa'),(2770,1,-1,2782,'Exalted Champion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent every Alliance race\'s faction in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,18,0,3807,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_tournaments_banner_human'),(2884,-1,603,0,'XT-002 Deconstructor kills (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','XT-002 Deconstructor kills (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,18,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2927,-1,603,0,'Hot Pocket (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Survive being thrown into Ignis the Furnace Master\'s Slag Pot in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,18,0,31,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_fire_immolation'),(2928,-1,603,0,'Hot Pocket (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Survive being thrown into Ignis the Furnace Master\'s Slag Pot in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,18,0,31,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_fire_immolation'),(3136,-1,624,0,'Emalon the Storm Watcher (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Emalon the Storm Watcher in 10 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,18,0,2350,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_statue_10'),(3857,1,-1,0,'Master of Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Isle of Conquest achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,25,18,0,3387,'Reward: Tabard of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winwsg'),(4030,-1,-1,0,'Victories over the Beasts of Northrend (Trial of the Grand Crusader 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Beasts of Northrend (Trial of the Grand Crusader 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,18,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4577,-1,631,0,'Flu Shot Shortage (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Festergut while none of the players in your raid group ever had 3 stacks of Inoculated in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,18,0,4162,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_festergutrotface'),(4615,-1,631,0,'Flu Shot Shortage (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Festergut while none of the players in your raid group ever had 3 stacks of Inoculated in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,18,0,4162,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_festergutrotface'),(4640,-1,-1,0,'Lord Marrowgar kills (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lord Marrowgar kills (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,18,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(347,-1,-1,0,'Food eaten','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Food eaten','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,19,9,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(585,-1,-1,0,'Eye of the Storm flags captured','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Eye of the Storm flags captured','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,19,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(596,-1,-1,0,'Highest 5 man personal rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest 5 man personal rating','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,19,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(603,0,-1,0,'Wrath of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 5 Alliance players in each of the cities listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,19,0,2815,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_trinket_thrallmar'),(645,-1,289,0,'Scholomance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the leaders of Scholomance.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,19,0,308,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_senseundead'),(669,-1,547,0,'Heroic: The Slave Pens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Quagmirran on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,19,0,3591,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_quagmirran'),(774,-1,-1,0,'Explore Searing Gorge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Searing Gorge, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,19,0,3566,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_searinggorge_01'),(856,-1,-1,0,'Explore Silithus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Silithus, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,19,0,3567,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_silithus_01'),(890,-1,-1,889,'Into The Wild Blue Yonder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Learn the expert riding skill.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,19,0,2054,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mount_gryphon_01'),(966,1,-1,0,'Tricks and Treats of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Visit the Candy Buckets in Eastern Kingdoms.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,19,0,2951,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_27'),(1037,0,-1,0,'Desecration of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Extinguishing Eastern Kingdoms, Kalimdor and Outland achievements.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,19,0,1920,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_masterofelements'),(1086,-1,544,0,'Magtheridon kills (Magtheridon\'s Lair)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Magtheridon kills (Magtheridon\'s Lair)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,19,1,2675,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_weapon_halberd14'),(1162,-1,-1,0,'Hotter Streak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win ten ranked matches in a row with a rating above 1800 at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,19,0,11,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_fire'),(1167,1,-1,0,'Master of Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Alterac Valley achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,25,19,0,2839,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_necklace_21'),(1172,1,-1,0,'Master of Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Warsong Gulch achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,25,19,0,2835,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_rune_07'),(1239,-1,578,0,'Ley-Guardian Eregos kills (The Oculus)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ley-Guardian Eregos kills (The Oculus)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,19,1,180,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_frost_chainsofice'),(1277,-1,-1,0,'Rapid Defense','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Defending Wyrmrest Temple quest in under 3 minutes while not in a group.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,19,0,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(1411,-1,-1,0,'Realm First! Level 80 Tauren','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First tauren on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,19,256,3326,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_character_tauren_female'),(1537,-1,-1,0,'Highest Mining skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest Mining skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,19,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1682,0,-1,0,'The Loremaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the quest achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',96,10,19,0,1644,'Reward: Title & Loremaster\'s Colors','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_book_07'),(1759,-1,-1,0,'Lich King 25-player different bosses killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 25-player different bosses killed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,19,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,1756,'trade_engineering'),(1785,-1,-1,0,'Dinner Impossible','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Present a Great Feast in each of the battlegrounds listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,19,0,1578,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_hunter_pet_boar'),(2137,-1,-1,0,'Glory of the Raider (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the 10-player raid achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,25,19,0,3499,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_22'),(2144,1,-1,0,'What A Long, Strange Trip It\'s Been','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the world events achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,50,19,0,3500,'Reward: Violet Proto-Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_masterofallbgs'),(2146,-1,533,0,'The Hundred Club (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sapphiron in Naxxramas without any member of the raid having a frost resist value over 100 in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,19,0,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2147,-1,533,0,'The Hundred Club (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sapphiron in Naxxramas without any member of the raid having a frost resist value over 100 in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,19,0,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2150,-1,-1,0,'Split Personality','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Grand Magus Telestra in The Nexus on Heroic Difficulty after having killed her images within 5 seconds of each other during both splits.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,19,0,3392,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_dungeon_nexus70_25man'),(2817,1,-1,2770,'Exalted Argent Champion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent every Alliance race\'s faction in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,19,0,3807,'Title Reward: Crusader. Unlocks Crusader dailies at the Argent Tournament.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_banner_human'),(2885,-1,603,0,'Assembly of Iron kills (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Assembly of Iron kills (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,19,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2929,-1,603,0,'Stokin\' the Furnace (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Ignis the Furnace Master in 4 minutes in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,19,0,3855,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_ignis_01'),(2930,-1,603,0,'Stokin\' the Furnace (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Ignis the Furnace Master in 4 minutes in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,19,0,3855,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_ignis_01'),(3137,-1,624,0,'Emalon the Storm Watcher (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Emalon the Storm Watcher in 25 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,19,0,2350,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_statue_10'),(3217,-1,-1,0,'Chasing Marcia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete each of Marcia Chase\'s 5 fishing daily quests listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,19,0,2933,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_fishingpole_03'),(3957,0,-1,0,'Master of Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Isle of Conquest achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15003,25,19,0,3387,'Reward: Tabard of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_winwsg'),(4031,-1,-1,0,'Victories over the Beasts of Northrend (Trial of the Crusader 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Beasts of Northrend (Trial of the Crusader 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,19,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4578,-1,631,0,'Nausea, Heartburn, Indigestion... (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Professor Putricide without using Regurgitated Ooze on the Abomination in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,19,0,4163,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_profputricide'),(4616,-1,631,0,'Nausea, Heartburn, Indigestion... (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Professor Putricide without using Regurgitated Ooze on the Abomination in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,19,0,4163,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_profputricide'),(4641,-1,-1,0,'Lord Marrowgar kills (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lord Marrowgar kills (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,19,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(272,-1,-1,0,'Torch Juggler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Juggle 40 torches in 15 seconds in Dalaran.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',161,10,20,0,2944,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_torch_thrown'),(395,-1,-1,0,'Warsong Gulch flags captured','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Warsong Gulch flags captured','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,20,1,1243604,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(409,-1,-1,0,'Last Man Standing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Be the sole survivor at the end of a ranked 5v5 match at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,20,0,2176,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_surgeoflight'),(595,-1,-1,0,'Highest 3 man personal rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest 3 man personal rating','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,20,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(604,1,-1,0,'Wrath of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 5 Horde players in each of the cities listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,20,0,2503,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_trinket_honorhold'),(646,-1,329,0,'Stratholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the evil masterminds inhabiting Stratholme.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,20,0,2718,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_deathknight_armyofthedead'),(670,-1,546,0,'Heroic: Underbog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat The Black Stalker on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,20,0,3823,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_theblackstalker'),(766,-1,-1,0,'Explore Blasted Lands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Blasted Lands, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,20,0,3550,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_blastedlands_01'),(857,-1,-1,0,'Explore Winterspring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Winterspring, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14778,10,20,0,3587,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_winterspring'),(892,-1,-1,890,'The Right Stuff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Learn the artisan riding skill.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,20,0,2055,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mount_wyvern_01'),(969,1,-1,0,'Tricks and Treats of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Visit the Candy Buckets in Outland.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,10,20,0,2952,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_29'),(1087,-1,548,0,'Lady Vashj kills (Serpentshrine Cavern)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lady Vashj kills (Serpentshrine Cavern)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,20,1,2379,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_elemental_primal_water'),(1168,0,-1,0,'Master of Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Alterac Valley achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14801,25,20,0,2839,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelry_necklace_21'),(1173,0,-1,0,'Master of Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Warsong Gulch achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14804,25,20,0,2835,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_rune_07'),(1243,-1,-1,0,'Fish Don\'t Leave Footprints','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Learn the ability to find fish.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,20,0,3701,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2097090000',0,0,'achievement_profession_fishing_findfish'),(1412,-1,-1,0,'Realm First! Level 80 Troll','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First troll on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,20,256,3291,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_character_troll_male'),(1428,-1,-1,0,'Mine Sweeper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get caught in 10 consecutive land mine explosions in the Sparksocket Minefield without landing.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,20,0,1755,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_bomb_02'),(1513,-1,578,0,'Ley-Guardian Eregos kills (Heroic Oculus)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Ley-Guardian Eregos kills (Heroic Oculus)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,20,1,180,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_frost_chainsofice'),(1760,-1,-1,0,'Lich King 25-player boss killed the most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lich King 25-player boss killed the most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,20,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,1756,'trade_engineering'),(1775,-1,-1,0,'Different foods eaten','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Different foods eaten','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,20,33,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,347,'trade_engineering'),(1795,-1,-1,0,'Lunch Lady','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Learn 25 cooking recipes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,20,0,2353,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_food_66'),(2036,-1,576,0,'Intense Cold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Keristrasza in The Nexus on Heroic Difficulty without allowing Intense Cold to reach more than two stacks.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,20,0,2965,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_mage_chilledtothebone'),(2138,-1,-1,0,'Glory of the Raider (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the 25-player raid achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,25,20,0,2044,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_06'),(2145,0,-1,0,'What A Long, Strange Trip It\'s Been','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the world events achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',155,50,20,0,3500,'Reward: Violet Proto-Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_bg_masterofallbgs'),(2184,-1,533,0,'Just Can\'t Get Enough (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kel\'Thuzad in Naxxramas while killing at least 18 abominations in his chamber in 10 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,20,0,2623,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_deathknight_plaguestrike'),(2185,-1,533,0,'Just Can\'t Get Enough (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kel\'Thuzad in Naxxramas while killing at least 18 abominations in his chamber in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,20,0,2623,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_deathknight_plaguestrike'),(2783,0,-1,0,'Champion of Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent Orgrimmar in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,20,0,3802,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_symbol_orc'),(2875,-1,603,0,'Kologarn kills (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kologarn kills (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,20,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2931,-1,603,0,'Nerf Engineering (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat XT-002 Deconstructor without him recovering any health from XS-013 in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,20,0,3857,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_enggizmos_14'),(2932,-1,603,0,'Nerf Engineering (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat XT-002 Deconstructor without him recovering any health from XS-013 Scrapbots in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,20,0,3857,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_enggizmos_14'),(3216,-1,-1,0,'Smelting Recipes learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Smelting Recipes learned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,20,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,0,'NULL'),(3836,-1,624,0,'Koralon the Flame Watcher (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Koralon the Flame Watcher in 10 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,20,0,2019,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'spell_fire_totemofwrath'),(4029,-1,-1,0,'Victories over the Beasts of Northrend (Trial of the Grand Crusader 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Beasts of Northrend (Trial of the Grand Crusader 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,20,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4582,-1,631,0,'The Orb Whisperer (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Blood Council without anyone in the raid taking more than 23,000 spell damage in a single hit in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,20,0,4164,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_princetaldaram'),(4617,-1,631,0,'The Orb Whisperer (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Blood Council without anyone in the raid taking more than 25,000 spell damage in a single hit in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,20,0,4164,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_princetaldaram'),(4642,-1,-1,0,'Lord Marrowgar kills (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lord Marrowgar kills (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,20,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(41,1,-1,0,'Loremaster of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Northrend quest achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,21,0,3493,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_northrend_01'),(370,-1,-1,0,'Highest 2 man personal rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest 2 man personal rating','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,21,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(586,-1,-1,0,'Warsong Gulch flags returned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Warsong Gulch flags returned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',153,0,21,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(610,1,1,0,'Death to the Warchief!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill Thrall.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,21,0,3660,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_leader_ thrall'),(671,-1,557,0,'Heroic: Mana-Tombs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Nexus-Prince Shaffar on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,21,0,3666,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_nexus_prince_shaffar'),(688,-1,-1,0,'Zul\'Gurub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Hakkar.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,21,0,3651,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_hakkar'),(775,-1,-1,0,'Explore Burning Steppes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Burning Steppes, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,21,0,3552,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_burningsteppes_01'),(964,-1,-1,0,'Going Down?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fall 65 yards without dying.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,21,0,2901,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_shadow_twistedfaith'),(970,1,-1,0,'Tricks and Treats of Azeroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Kalimdor, Eastern Kingdoms and Outland Tricks and Treats achievements.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',158,20,21,0,1743,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_28'),(1088,-1,550,0,'Kael\'thas Sunstrider kills (Tempest Keep)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kael\'thas Sunstrider kills (Tempest Keep)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,21,1,2800,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_staff_73'),(1240,-1,575,0,'King Ymiron kills (Utgarde Pinnacle)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','King Ymiron kills (Utgarde Pinnacle)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,21,1,2885,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_mace_80'),(1413,-1,-1,0,'Realm First! Level 80 Forsaken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First forsaken on the realm to achieve level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,21,256,3292,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_character_undead_male'),(1541,-1,-1,0,'Highest Skinning skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest Skinning skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,21,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1776,-1,-1,0,'Food eaten most','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Food eaten most','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,21,17,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,347,'trade_engineering'),(1796,-1,-1,1795,'Short Order Cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Learn 50 cooking recipes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,21,0,1788,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_food_65'),(2037,-1,576,0,'Chaos Theory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Anomalus in The Nexus on Heroic Difficulty without destroying any Chaotic Rifts.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,21,0,3392,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_dungeon_nexus70_25man'),(2090,-1,-1,0,'Challenger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the Challenger title in an arena season at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,21,0,3596,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',1,0,'achievement_featsofstrength_gladiator_04'),(2094,-1,571,0,'A Penny For Your Thoughts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up the copper coins listed below from the Dalaran fountain.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,21,0,3451,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,0,'inv_misc_coin_19'),(2186,-1,533,0,'The Immortal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Within one raid lockout period, defeat every boss in Naxxramas without allowing any raid member to die during any of the boss encounters in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,21,0,2143,'Title Reward: The Immortal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_holy_weaponmastery'),(2187,-1,533,0,'The Undying','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Within one raid lockout period, defeat every boss in Naxxramas without allowing any raid member to die during any of the boss encounters in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,21,0,2292,'Title Reward: The Undying','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_holy_sealofvengeance'),(2765,0,-1,2783,'Exalted Champion of Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent Orgrimmar in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,21,0,3802,'Title Reward: of Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_symbol_orc'),(2882,-1,603,0,'Auriaya kills (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Auriaya kills (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,21,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2933,-1,603,0,'Nerf Scrapbots (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat 20 XS-013 Scrapbots within 12 seconds using XE-321 Boombots in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,21,0,2565,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_bomb_01'),(2935,-1,603,0,'Nerf Scrapbots (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat 20 XS-013 Scrapbots within 12 seconds using XE-321 Boombots in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,21,0,2565,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_bomb_01'),(2957,-1,-1,0,'Glory of the Ulduar Raider (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the 10-player raid achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,25,21,0,3876,'Reward: Rusted Proto-Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_19'),(3837,-1,624,0,'Koralon the Flame Watcher (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Koralon the Flame Watcher in 25 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,21,0,2019,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'spell_fire_totemofwrath'),(4032,-1,-1,0,'Lord Jaraxxus kills (Trial of the Crusader 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lord Jaraxxus kills (Trial of the Crusader 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,21,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4456,-1,-1,0,'Random Lich King (normal) dungeons completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','LFG random Lich King normal dungeons completed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,21,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4539,-1,603,0,'Once Bitten, Twice Shy (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Blood-Queen Lana\'thel once as a vampire and again without becoming a vampire in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,21,0,4165,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_lanathel'),(4618,-1,631,0,'Once Bitten, Twice Shy (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Blood-Queen Lana\'thel once as a vampire and again without becoming a vampire in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,21,0,4165,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_lanathel'),(4643,-1,-1,0,'Lady Deathwhisper kills (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lady Deathwhisper kills (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,21,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(545,-1,-1,0,'Shave and a Haircut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Visit a Barber Shop and get your hair cut.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,22,0,2766,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_comb_02'),(589,-1,-1,0,'Highest 5 man team rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest 5 man team rating','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,22,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(611,1,1,0,'Bleeding Bloodhoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill Cairne Bloodhoof.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,22,0,3669,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_leader_cairne bloodhoof'),(622,-1,616,0,'The Spellweaver\'s Downfall (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Malygos in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,22,0,3256,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_nexusraid'),(623,-1,616,0,'The Spellweaver\'s Downfall (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Malygos in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,25,22,0,3257,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_nexusraid_10man'),(672,-1,558,0,'Heroic: Auchenai Crypts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Exarch Maladaar on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,22,0,3590,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_exarch_maladaar'),(689,-1,-1,0,'Ruins of Ahn\'Qiraj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Ossirian the Unscarred.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,22,0,3681,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_ossiriantheunscarred'),(777,-1,-1,0,'Explore Deadwind Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Deadwind Pass, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,22,0,3529,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_deadwindpass'),(812,-1,-1,0,'Healthstones used','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Healthstones used','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',145,0,22,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1089,-1,564,0,'Illidan Stormrage kills (The Black Temple)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Illidan Stormrage kills (The Black Temple)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,22,1,2596,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_weapon_glave_01'),(1296,-1,601,0,'Watch Him Die','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Krik\'thir the Gatewatcher in Azjol-Nerub on Heroic Difficulty while Watcher Gashra, Watcher Narji, and Watcher Silthik are still alive.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,22,0,3250,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_dungeon_azjoluppercity_25man'),(1360,0,-1,0,'Loremaster of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Northrend quest achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14863,10,22,0,3493,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_zone_northrend_01'),(1415,-1,-1,0,'Realm First! Grand Master Alchemist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in alchemy.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,22,256,339,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_alchemy'),(1514,-1,575,0,'King Ymiron kills (Heroic Utgarde Pinnacle)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','King Ymiron kills (Heroic Utgarde Pinnacle)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,22,1,2885,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_mace_80'),(1542,-1,-1,0,'Highest Tailoring skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest Tailoring skill','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,22,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'trade_engineering'),(1797,-1,-1,1796,'Chef de Partie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Learn 75 cooking recipes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,22,0,2485,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_food_60'),(2093,-1,-1,0,'Rival','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the Rival title in an arena season at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,22,0,3597,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',1,0,'achievement_featsofstrength_gladiator_05'),(2095,-1,571,0,'Silver in the City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up the silver coins listed below from the Dalaran fountain.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,22,0,3450,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,0,'inv_misc_coin_18'),(2784,0,-1,0,'Champion of Sen\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent Sen\'jin in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,22,0,3804,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_symbol_troll'),(2934,-1,603,0,'Nerf Gravity Bombs (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat XT-002 Deconstructor without any raid member dying from a Gravity Bomb in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,22,0,1755,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_bomb_02'),(2936,-1,603,0,'Nerf Gravity Bombs (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat XT-002 Deconstructor without any raid member dying from a Gravity Bomb in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,22,0,1755,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_bomb_02'),(2958,-1,-1,0,'Glory of the Ulduar Raider (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the 25-player raid achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,25,22,0,3877,'Reward: Ironbound Proto-Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_122'),(3256,-1,603,0,'Hodir victories (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Hodir victories (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,22,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','150971000',0,0,'inv_misc_head_dragon_blue'),(4033,-1,-1,0,'Lord Jaraxxus kills (Trial of the Grand Crusader 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lord Jaraxxus kills (Trial of the Grand Crusader 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,22,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4556,-1,-1,0,'Random Lich King (heroic) dungeons completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','LFG random Lich King heroic dungeons completed','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14807,0,22,9,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4579,-1,631,0,'Portal Jockey (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Enter every portal spawned by Valithria Dreamwalker before healing her to full health in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,22,0,3690,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_shadeoferanikus'),(4585,-1,624,0,'Toravon the Ice Watcher (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Toravon the Ice Watcher in 10 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,22,0,681,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_frost_frostbrand'),(4619,-1,631,0,'Portal Jockey (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Enter every portal spawned by Valithria Dreamwalker before healing her to full health in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,22,0,3690,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_shadeoferanikus'),(4654,-1,-1,0,'Lady Deathwhisper kills (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lady Deathwhisper kills (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,22,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(590,-1,-1,0,'Highest 3 man team rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest 3 man team rating','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,23,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(612,1,-1,0,'Downing the Dark Lady','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill Lady Sylvanas Windrunner.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,23,0,3661,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_leader_sylvanas'),(673,-1,560,0,'Heroic: The Escape From Durnholde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Epoch Hunter on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,23,0,3824,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_epochhunter'),(686,-1,-1,0,'Molten Core','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Ragnaros.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,23,0,3819,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_ragnaros'),(770,-1,-1,0,'Explore Western Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Western Plaguelands, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,23,0,3571,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_westernplaguelands_01'),(1017,-1,-1,0,'Can I Keep Him?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a companion pet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,23,0,1522,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_box_petcarrier_01'),(1090,-1,580,0,'Kil\'jaeden kills (Sunwell Plateau)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kil\'jaeden kills (Sunwell Plateau)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14822,5,23,1,2807,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_shield_48'),(1241,-1,595,0,'Mal\'Ganis defeated (Caverns of Time: Stratholme)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Mal\'Ganis defeated (Caverns of Time: Stratholme)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,23,1,2413,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_misc_hellifrepvphonorholdfavor'),(1297,-1,601,0,'Hadronox Denied','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Hadronox in Azjol-Nerub on Heroic Difficulty before he webs the top doors and prevents more creatures from spawning.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,23,0,3251,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_dungeon_azjoluppercity_10man'),(1414,-1,-1,0,'Realm First! Grand Master Blacksmith','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in blacksmithing.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,23,256,335,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_blacksmithing'),(1741,-1,-1,0,'Tailoring Patterns learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Tailoring Patterns learned','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',173,0,23,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'NULL'),(1798,-1,-1,1797,'Sous Chef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Learn 100 cooking recipes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,23,0,3218,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_food_13'),(1874,-1,616,0,'You Don\'t Have An Eternity (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Malygos in 6 minutes or less in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,23,0,3256,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_dungeon_nexusraid'),(1875,-1,616,0,'You Don\'t Have An Eternity (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Malygos in 6 minutes or less in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,23,0,3256,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_dungeon_nexusraid'),(1957,-1,571,0,'There\'s Gold In That There Fountain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up the gold coins listed below from the Dalaran fountain.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,23,0,3328,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2097090000',0,0,'inv_misc_coin_17'),(2092,-1,-1,0,'Duelist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the Duelist title in an arena season at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,23,0,3598,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',1,0,'achievement_featsofstrength_gladiator_06'),(2766,0,-1,2784,'Exalted Champion of Sen\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent Sen\'jin in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,23,0,3804,'Title Reward: of Sen\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_symbol_troll'),(2937,-1,603,0,'Must Deconstruct Faster (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat XT-002 Deconstructor in 205 seconds in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,23,0,3811,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_xt002deconstructor_01'),(2938,-1,603,0,'Must Deconstruct Faster (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat XT-002 Deconstructor in 205 seconds in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,23,0,3811,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_xt002deconstructor_01'),(3257,-1,603,0,'Thorim victories (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Thorim victories (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,23,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','150971000',0,0,'inv_misc_head_dragon_blue'),(4034,-1,-1,0,'Lord Jaraxxus kills (Trial of the Crusader 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lord Jaraxxus kills (Trial of the Crusader 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,23,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4580,-1,631,0,'All You Can Eat (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sindragosa in 10-player mode without any member of your raid receiving more than 5 stacks of Mystic Buffet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,23,0,4166,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_sindragosa'),(4586,-1,624,0,'Toravon the Ice Watcher (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Toravon the Ice Watcher in 25 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,23,0,681,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_frost_frostbrand'),(4602,-1,-1,0,'Glory of the Icecrown Raider (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the 10-player raid achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,25,23,0,3203,'Reward: Bloodbathed Frostbrood Vanquisher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_74'),(4620,-1,631,0,'All You Can Eat (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sindragosa in 25-player mode without any member of your raid receiving more than 5 stacks of Mystic Buffet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,23,0,4166,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_sindragosa'),(4655,-1,-1,0,'Lady Deathwhisper kills (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lady Deathwhisper kills (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,23,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(15,-1,-1,1017,'Plenty of Pets','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Collect 15 unique companion pets.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,24,0,1522,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_box_petcarrier_01'),(374,-1,-1,0,'Highest 2 man team rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Highest 2 man team rating','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',152,0,24,1,4,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'NULL'),(613,1,530,0,'Killed in Quel\'Thalas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill Lor\'themar Theron.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,24,0,3670,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_leader_lorthemar_theron'),(674,-1,556,0,'Heroic: Sethekk Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Talon King Ikiss on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,24,0,3631,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_talonkingikiss'),(685,-1,-1,0,'Blackwing Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Nefarian.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,24,0,3817,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_nefarion'),(771,-1,-1,0,'Explore Eastern Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Eastern Plaguelands, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,24,0,3535,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_easternplaguelands'),(1416,-1,-1,0,'Realm First! Cooking Grand Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in cooking.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,24,256,1467,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_food_15'),(1515,-1,595,0,'Mal\'Ganis defeated (Heroic CoT: Stratholme)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Mal\'Ganis defeated (Heroic CoT: Stratholme)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,5,24,1,2413,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_misc_hellifrepvphonorholdfavor'),(1752,1,-1,0,'Master of Wintergrasp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Wintergrasp achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,24,0,187,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_frost_chillingblast'),(1799,-1,-1,1798,'Chef de Cuisine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Learn 160 cooking recipes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,24,0,3219,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_food_92_lobster'),(1860,-1,601,0,'Gotta Go!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Anub\'arak in Azjol-Nerub on Heroic Difficulty in 4 minutes or less.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,24,0,3295,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_dungeon_azjoluppercity'),(1869,-1,616,0,'A Poke In The Eye (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Malygos with fewer than 9 in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,24,0,3304,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'achievement_dungeon_nexusraid_heroic'),(1870,-1,616,0,'A Poke In The Eye (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Malygos with fewer than 21 in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,24,0,3305,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'achievement_dungeon_nexusraid_25man'),(1958,-1,-1,0,'I Smell A Giant Rat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up the Giant Sewer Rat from The Underbelly in Dalaran.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,24,0,1781,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2097090000',1,0,'inv_misc_monstertail_03'),(2091,-1,-1,0,'Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the Gladiator title in an arena season at level 80.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,10,24,0,3599,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',1,0,'achievement_featsofstrength_gladiator_07'),(2785,0,-1,0,'Champion of Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent Silvermoon City in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,24,0,3795,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_symbol_bloodelf'),(3058,-1,603,0,'Heartbreaker (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat XT-002 Deconstructor after destroying his heart in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,24,0,3875,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_valentinescardtornleft'),(3059,-1,603,0,'Heartbreaker (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat XT-002 Deconstructor after destroying his heart in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,24,0,3875,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_valentinescardtornleft'),(3258,-1,603,0,'Freya victories (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Freya victories (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,24,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','150971000',0,0,'inv_misc_head_dragon_blue'),(4035,-1,-1,0,'Lord Jaraxxus kills (Trial of the Grand Crusader 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lord Jaraxxus kills (Trial of the Grand Crusader 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,24,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4601,-1,631,0,'Been Waiting a Long Time for This (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Allow Necrotic Plague to stack to 30 before defeating the Lich King in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,24,0,3141,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_deathknight_bloodplague'),(4603,-1,-1,0,'Glory of the Icecrown Raider (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the 25-player raid achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,25,24,0,4156,'Reward: Icebound Frostbrood Vanquisher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_151'),(4621,-1,631,0,'Been Waiting a Long Time for This (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Allow Necrotic Plague to stack to 30 before defeating the Lich King in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,24,0,3141,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_deathknight_bloodplague'),(4656,-1,-1,0,'Lady Deathwhisper kills (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Lady Deathwhisper kills (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,24,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(614,1,-1,0,'For The Alliance!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Slay the leaders of the Horde.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,20,25,0,1704,'Reward: Black War Bear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_bannerpvp_02'),(675,-1,-1,0,'Heroic: Shadow Labyrinth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Murmur on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,25,0,3825,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_murmur'),(687,-1,-1,0,'Temple of Ahn\'Qiraj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat C\'Thun.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,25,0,3677,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_cthun'),(868,-1,-1,0,'Explore Isle of Quel\'Danas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Explore Isle of Quel\'Danas, revealing the covered areas of the world map.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14777,10,25,0,3557,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_zone_isleofqueldanas'),(1174,-1,-1,0,'The Arena Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the arena achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',165,50,25,0,3600,'Title Reward: Arena Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_featsofstrength_gladiator_08'),(1248,-1,-1,15,'Plethora of Pets','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Collect 25 unique companion pets.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,25,0,1522,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_box_petcarrier_01'),(1361,-1,533,0,'Anub\'Rekhan kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Anub\'Rekhan kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,25,1,1899,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_trinket_naxxramas04'),(1417,-1,-1,0,'Realm First! Grand Master Enchanter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in enchanting.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,25,256,578,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engraving'),(1862,-1,619,0,'Volazj\'s Quick Demise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Herald Volazj in Ahn\'kahet on Heroic Difficulty in 2 minutes or less.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,25,0,3296,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_dungeon_azjollowercity_25man'),(2148,-1,616,0,'Denyin\' the Scion (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deliver a killing blow to a Scion of Eternity while riding on a hover disk in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,25,0,3501,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_elemental_mote_shadow01'),(2149,-1,616,0,'Denyin\' the Scion (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deliver a killing blow to a Scion of Eternity while riding on a hover disk in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,25,0,3501,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_elemental_mote_shadow01'),(2767,0,-1,2785,'Exalted Champion of Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent Silvermoon City in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,25,0,3795,'Title Reward: of Silvermoon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_symbol_bloodelf'),(2776,0,-1,0,'Master of Wintergrasp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Wintergrasp achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14901,10,25,0,187,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-50396700',0,0,'spell_frost_chillingblast'),(2879,-1,603,0,'Mimiron victories (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Mimiron victories (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,25,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2939,-1,603,0,'I Choose You, Runemaster Molgeim (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Assembly of Iron with Runemaster Molgeim as the last member alive in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,25,0,3858,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_theironcouncil_01'),(2942,-1,603,0,'I Choose You, Runemaster Molgeim (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Assembly of Iron with Runemaster Molgeim as the last member alive in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,25,0,3858,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_theironcouncil_01'),(3218,-1,-1,0,'Turtles All the Way Down','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up a Sea Turtle mount from any fishing pool in Northrend.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,25,0,3890,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'inv_misc_fish_turtle_02'),(3296,-1,-1,0,'Cooking with Style','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Chef\'s Hat.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,25,0,3678,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'achievement_profession_chefhat'),(4036,-1,-1,0,'Victories over the Faction Champions (Trial of the Crusader 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Faction Champions (Trial of the Crusader 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,25,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4476,-1,-1,0,'Looking For More','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Use the Dungeon Finder tool to finish random heroic dungeons until you have grouped with 10 random players total.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,25,0,3168,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_2v2_3'),(4581,-1,631,0,'Neck-Deep in Vile (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill every Vile Spirit that spawns before it explodes and then defeat the Lich King in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15041,10,25,0,3789,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_shadow_devouringplague'),(4622,-1,631,0,'Neck-Deep in Vile (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill every Vile Spirit that spawns before it explodes and then defeat the Lich King in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15042,10,25,0,3789,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_shadow_devouringplague'),(4644,-1,-1,0,'Gunship Battle victories (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gunship Battle victories (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,25,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(615,0,0,0,'Storming Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill King Varian Wrynn.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,26,0,3671,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_leader_king_varian_wrynn'),(676,-1,269,0,'Heroic: Opening of the Dark Portal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Aeonus on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,26,0,3826,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_aeonus_01'),(1250,-1,-1,1248,'Shop Smart, Shop Pet...Smart','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Collect 50 unique companion pets.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,26,0,1522,'Reward: Reeking Pet Carrier','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_box_petcarrier_01'),(1372,-1,533,0,'Gluth kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gluth kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,26,1,97,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_plaguecloud'),(1418,-1,-1,0,'Realm First! Grand Master Engineer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in engineering.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,26,256,333,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1556,-1,-1,0,'25 Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up 25 items.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,26,0,3179,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_fish_50'),(1801,-1,-1,0,'Captain Rumsey\'s Lager','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Brew up some of Captain Rumsey\'s Lager.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,26,0,1513,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_drink_03'),(2038,-1,619,0,'Respect Your Elders','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Elder Nadox in Ahn\'kahet on Heroic Difficulty without killing any Ahn\'kahar Guardians.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,26,0,3393,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_head_nerubian_01'),(2047,-1,615,0,'Gonna Go When the Volcano Blows (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sartharion the Onyx Guardian without getting hit by Lava Strike in 10 player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,26,0,3087,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_shaman_lavaflow'),(2048,-1,615,0,'Gonna Go When the Volcano Blows (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sartharion the Onyx Guardian without getting hit by Lava Strike in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,26,0,3087,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_shaman_lavaflow'),(2188,-1,229,0,'Leeeeeeeeeeeeeroy!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 50 rookery whelps within 15 seconds.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14808,10,26,0,3495,'Title: Jenkins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mount_drake_red'),(2786,0,-1,0,'Champion of Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent Thunder Bluff in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,26,0,3803,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_symbol_tauren'),(2880,-1,603,0,'General Vezax kills (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','General Vezax kills (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,26,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2940,-1,603,0,'I Choose You, Stormcaller Brundir (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Assembly of Iron with Stormcaller Brundir as the last member alive in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,26,0,3858,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_theironcouncil_01'),(2943,-1,603,0,'I Choose You, Stormcaller Brundir (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Assembly of Iron with Stormcaller Brundir as the last member alive in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,26,0,3858,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_theironcouncil_01'),(4037,-1,-1,0,'Victories over the Faction Champions (Trial of the Grand Crusader 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Faction Champions (Trial of the Grand Crusader 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,26,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4477,-1,-1,4476,'Looking For Many','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Use the Dungeon Finder tool to finish random heroic dungeons until you have grouped with 50 random players total.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,26,0,3049,'Title: the Patient','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_3v3_4'),(4659,-1,-1,0,'Gunship Battle victories (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gunship Battle victories (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,26,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(616,0,0,0,'Death to the King!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill King Magni Bronzebeard.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,27,0,3672,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_leader_king_magni_bronzebeard'),(677,-1,-1,0,'Heroic: The Steamvault','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Warlord Kalithresh on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,27,0,3657,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_warlord_kalithresh'),(1366,-1,533,0,'Gothik the Harvester kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gothik the Harvester kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,27,1,2639,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_deathknight_classicon'),(1419,-1,-1,0,'Realm First! First Aid Grand Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in first aid.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,27,256,504,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_sealofsacrifice'),(1557,-1,-1,1556,'50 Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up 50 items.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,27,0,3179,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_fish_50'),(1782,1,-1,0,'Our Daily Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete each of the cooking daily quests offered by Katherine Lee in Dalaran.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,27,0,259,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_food_12'),(2049,-1,615,0,'Twilight Assist (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','With at least one Twilight Drake still alive, engage and defeat Sartharion the Onyx Guardian in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,27,0,3252,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_dungeon_coablackdragonflight_normal'),(2052,-1,615,0,'Twilight Assist (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','With at least one Twilight Drake still alive, engage and defeat Sartharion the Onyx Guardian in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,27,0,3252,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_coablackdragonflight_normal'),(2056,-1,619,0,'Volunteer Work','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Jedoga Shadowseeker in Ahn\'kahet on Heroic Difficulty without killing any Twilight Volunteers.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,27,0,3436,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_character_orc_female'),(2516,-1,-1,1250,'Lil\' Game Hunter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Collect 75 unique companion pets.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,27,0,1522,'Reward: Little Fawn\'s Salt Lick','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_box_petcarrier_01'),(2768,0,-1,2786,'Exalted Champion of Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent Thunder Bluff in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,27,0,3803,'Title Reward: of Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_symbol_tauren'),(2883,-1,603,0,'Yogg-Saron kills (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Yogg-Saron kills (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,27,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2941,-1,603,0,'I Choose You, Steelbreaker (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Assembly of Iron with Steelbreaker as the last member alive in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,27,0,3858,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_theironcouncil_01'),(2944,-1,603,0,'I Choose You, Steelbreaker (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Assembly of Iron with Steelbreaker as the last member alive in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,27,0,3858,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_theironcouncil_01'),(4038,-1,-1,0,'Victories over the Faction Champions (Trial of the Crusader 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Faction Champions (Trial of the Crusader 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,27,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4478,-1,-1,4477,'Looking For Multitudes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Use the Dungeon Finder tool to finish random heroic dungeons until you have grouped with 100 random players total.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',168,10,27,0,4007,'Reward: Perky Pug','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_arena_5v5_3'),(4660,-1,-1,0,'Gunship Battle victories (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gunship Battle victories (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,27,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(617,0,1,0,'Immortal No More','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill High Priestess Tyrande Whisperwind.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,28,0,3673,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_leader_tyrande_whisperwind'),(621,-1,-1,0,'Represent','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Equip a tabard.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,28,0,2637,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_shirt_guildtabard_01'),(678,-1,-1,0,'Heroic: The Shattered Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Warchief Kargath Bladefist on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,28,0,3827,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_kargathbladefist_01'),(1362,-1,533,0,'Grand Widow Faerlina kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Grand Widow Faerlina kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,28,1,1899,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_trinket_naxxramas04'),(1420,-1,-1,0,'Realm First! Grand Master Angler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in fishing.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,28,256,580,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_fishing'),(1558,-1,-1,1557,'100 Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up 100 items.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,28,0,3179,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_fish_50'),(1783,0,-1,0,'Our Daily Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete each of the cooking daily quests offered by Awilo Lon\'gomba in Dalaran.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,28,0,259,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_food_12'),(2050,-1,615,0,'Twilight Duo (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','With at least two Twilight Drakes still alive, engage and defeat Sartharion the Onyx Guardian in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,28,0,3252,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_dungeon_coablackdragonflight_normal'),(2053,-1,615,0,'Twilight Duo (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','With at least two Twilight Drakes still alive, engage and defeat Sartharion the Onyx Guardian in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,28,0,3252,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_dungeon_coablackdragonflight_normal'),(2151,-1,600,0,'Consumption Junction','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Trollgore in Drak\'Tharon Keep on Heroic Difficulty before Consume reaches ten stacks.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,28,0,3502,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_dungeon_drak\'tharon_25man'),(2787,0,-1,0,'Champion of the Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent the Undercity in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,28,0,3798,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_symbol_scourge'),(2881,-1,603,0,'Algalon the Observer kills (Ulduar 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Algalon the Observer kills (Ulduar 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,28,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_head_dragon_blue'),(2945,-1,603,0,'But I\'m On Your Side (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Assembly of Iron while under the effect of an Iron Boot Flask in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,28,0,1763,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'inv_drink_01'),(2946,-1,603,0,'But I\'m On Your Side (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Assembly of Iron while under the effect of an Iron Boot Flask in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,28,0,1763,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'inv_drink_01'),(4039,-1,-1,0,'Victories over the Faction Champions (Trial of the Grand Crusader 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Faction Champions (25-player Trial of the Grand Crusader)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,28,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4661,-1,-1,0,'Gunship Battle victories (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gunship Battle victories (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,28,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(618,0,530,0,'Putting Out the Light','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill Prophet Velen.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,29,0,3674,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_leader_prophet_velen'),(679,-1,554,0,'Heroic: The Mechanar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Pathaleon the Calculator on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,29,0,3688,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_pathaleonthecalculator'),(1020,-1,-1,621,'Ten Tabards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Equip 10 unique tabards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,29,160,2637,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',10,621,'inv_shirt_guildtabard_01'),(1371,-1,533,0,'Grobbulus kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Grobbulus kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,29,1,97,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_plaguecloud'),(1421,-1,-1,0,'Realm First! Grand Master Herbalist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in herbalism.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,29,256,345,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_herbalism'),(1559,-1,-1,1558,'250 Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up 250 items.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,29,0,3179,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_fish_50'),(1563,1,-1,0,'Hail to the Chef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the cooking achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,29,0,3678,'Title Reward: Chef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_profession_chefhat'),(2039,-1,600,0,'Better Off Dred','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Engage King Dred in Drak\'Tharon Keep on Heroic Difficulty and slay 6 Drakkari Gutrippers or Drakkari Scytheclaw during his defeat.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,29,0,3313,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'ability_hunter_pet_devilsaur'),(2051,-1,615,0,'The Twilight Zone (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','With all three Twilight Drakes still alive, engage and defeat Sartharion the Onyx Guardian in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,29,0,3252,'Title Reward: Of the Nightfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_coablackdragonflight_normal'),(2054,-1,615,0,'The Twilight Zone (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','With all three Twilight Drakes still alive, engage and defeat Sartharion the Onyx Guardian in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,29,0,3252,'Title Reward: Twilight Vanquisher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_coablackdragonflight_normal'),(2769,0,-1,2787,'Exalted Champion of the Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent the Undercity in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,29,0,3798,'Title Reward: of the Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_symbol_scourge'),(2870,-1,624,0,'Emalon the Storm Watcher kills (Wintergrasp 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Emalon the Storm Watcher kills (Wintergrasp 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,29,1,187,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_frost_chillingblast'),(2947,-1,603,0,'Can\'t Do That While Stunned (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Assembly of Iron without allowing Stormcaller Brundir to damage anyone with Chain Lightning or Lightning Whirl in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,29,0,320,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'spell_lightning_lightningbolt01'),(2948,-1,603,0,'Can\'t Do That While Stunned (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Assembly of Iron without allowing Stormcaller Brundir to damage anyone with Chain Lightning or Lightning Whirl in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,29,0,320,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'spell_lightning_lightningbolt01'),(4040,-1,-1,0,'Val\'kyr Twins kills (Trial of the Crusader 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Val\'kyr Twins kills (Trial of the Crusader 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,29,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4645,-1,-1,0,'Deathbringer kills (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deathbringer kills (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,29,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(619,0,-1,0,'For The Horde!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Slay the leaders of the Alliance.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,20,30,0,1703,'Reward: Black War Bear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_bannerpvp_01'),(680,-1,553,0,'Heroic: The Botanica','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Warp Splinter on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,30,0,3642,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_warpsplinter'),(1021,-1,-1,1020,'Twenty-Five Tabards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Equip 25 unique tabards.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,30,160,3040,'Reward: Tabard of the Achiever','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',25,621,'inv_chest_cloth_30'),(1369,-1,533,0,'Heigan the Unclean kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Heigan the Unclean kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,30,1,2997,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_cauldron_nature'),(1422,-1,-1,0,'Realm First! Grand Master Scribe','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in inscription.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,30,256,2557,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_feather_05'),(1560,-1,-1,1559,'500 Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up 500 items.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,30,0,3179,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_fish_50'),(1784,0,-1,0,'Hail to the Chef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the cooking achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',170,10,30,0,3678,'Title Reward: Chef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_profession_chefhat'),(2057,-1,600,0,'Oh Novos!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Novos the Summoner in Drak\'Tharon Keep on Heroic Difficulty without allowing any undead minions to reach the floor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,30,0,2718,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_deathknight_armyofthedead'),(2788,0,-1,0,'Champion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn the right to represent every Horde race\'s faction in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,30,0,3806,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_tournaments_banner_orc'),(2951,-1,603,0,'With Open Arms (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kologarn without destroying either of his arms in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,30,0,3859,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_kologarn_01'),(2952,-1,603,0,'With Open Arms (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kologarn without destroying either of his arms in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,30,0,3859,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_kologarn_01'),(3236,-1,624,0,'Emalon the Storm Watcher kills (Wintergrasp 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Emalon the Storm Watcher kills (Wintergrasp 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14963,10,30,1,187,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','150971000',0,0,'spell_frost_chillingblast'),(4041,-1,-1,0,'Val\'kyr Twins kills (Trial of the Grand Crusader 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Val\'kyr Twins kills (Trial of the Grand Crusader 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,30,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4396,-1,249,0,'Onyxia\'s Lair (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Onyxia in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,30,0,3820,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_onyxia'),(4397,-1,249,0,'Onyxia\'s Lair (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Onyxia in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,30,0,3820,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_onyxia'),(4662,-1,-1,0,'Deathbringer kills (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deathbringer kills (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,30,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(556,-1,-1,0,'Epic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Equip an epic item in every slot with a minimum item level of 213.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,25,31,0,2808,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_enchant_voidcrystal'),(681,-1,-1,0,'Heroic: The Arcatraz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Harbinger Skyriss on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,31,0,3659,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_harbinger_skyriss'),(700,0,-1,0,'Freedom of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain an Insignia or Medallion of the Horde.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,31,0,2811,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_jewelry_trinketpvp_02'),(1375,-1,533,0,'Four Horsemen kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Four Horsemen kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,31,1,2639,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_deathknight_classicon'),(1423,-1,-1,0,'Realm First! Grand Master Jewelcrafter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in jewelcrafting.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,31,256,1768,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_gem_01'),(1561,-1,-1,1560,'1000 Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Fish up 1000 items.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,31,0,3179,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_fish_50'),(1816,-1,608,0,'Defenseless','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Cyanigosa in The Violet Hold without using Defense Control Crystals and with Prison Seal Integrity at 100% while in Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,31,0,3264,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_dungeon_theviolethold_25man'),(2771,0,-1,2788,'Exalted Champion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent every Horde race\'s faction in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,31,0,3806,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_tournaments_banner_orc'),(2953,-1,603,0,'Disarmed (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy both of Kologarn\'s arms and then Kologarn himself within 12 seconds in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,31,0,560,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_warrior_disarm'),(2954,-1,603,0,'Disarmed (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Destroy both of Kologarn\'s arms and then Kologarn himself within 12 seconds in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,31,0,560,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_warrior_disarm'),(4042,-1,-1,0,'Val\'kyr Twins kills (Trial of the Crusader 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Val\'kyr Twins kills (Trial of the Crusader 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,31,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4402,-1,249,0,'More Dots! (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Onyxia in less than 5 minutes in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,31,0,3821,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_generaldrakkisath'),(4405,-1,249,0,'More Dots! (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Onyxia in less than 5 minutes in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,31,0,3821,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_generaldrakkisath'),(4663,-1,-1,0,'Deathbringer kills (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deathbringer kills (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,31,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(557,-1,-1,0,'Superior','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Equip a superior item in every slot with a minimum item level of 187.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,32,0,133,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_frost_wizardmark'),(682,-1,585,0,'Heroic: Magister\'s Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kael\'thas Sunstrider on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,32,0,3664,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_kael\'thassunstrider_01'),(701,1,-1,0,'Freedom of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain an Insignia or Medallion of the Alliance.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,32,0,2812,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_jewelry_trinketpvp_01'),(1374,-1,533,0,'Instructor Razuvious kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Instructor Razuvious kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,32,1,2639,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_deathknight_classicon'),(1424,-1,-1,0,'Realm First! Grand Master Leatherworker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in leatherworking.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,32,256,346,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_leatherworking'),(1865,-1,608,0,'Lockdown!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Xevozz, Lavanthor, Ichoron, Zuramat the Obliterator, Erekem, and Moragg in The Violet Hold on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,32,0,3300,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'achievement_dungeon_theviolethold_10man'),(2096,-1,-1,0,'The Coin Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the coin fishing achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,32,0,2993,'Reward: Titanium Seal of Dalaran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_coin_02'),(2816,0,-1,2771,'Exalted Argent Champion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn exalted status with and the right to represent every Horde race\'s faction in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,32,0,3806,'Title Reward: Crusader. Unlocks Crusader dailies at the Argent Tournament.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_banner_orc'),(2955,-1,603,0,'If Looks Could Kill (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kologarn without any raid member being hit by Focused Eyebeams in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,32,0,2446,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_fire_blueflamebolt'),(2956,-1,603,0,'If Looks Could Kill (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kologarn without any raid member being hit by Focused Eyebeams in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,32,0,2446,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_fire_blueflamebolt'),(4043,-1,-1,0,'Val\'kyr Twins kills (Trial of the Grand Crusader 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Val\'kyr Twins kills (Trial of the Grand Crusader 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,32,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4403,-1,249,0,'Many Whelps! Handle It! (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cause 50 Onyxia Whelplings to hatch within 10 seconds of Onyxia\'s liftoff, and then defeat her in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,32,0,1699,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_dragon_black'),(4406,-1,249,0,'Many Whelps! Handle It! (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Cause 50 Onyxia Whelplings to hatch within 10 seconds of Onyxia\'s liftoff, and then defeat her in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,32,0,1699,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_dragon_black'),(4664,-1,-1,0,'Deathbringer kills (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Deathbringer kills (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,32,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(558,-1,-1,0,'Greedy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win a greed roll on a superior or better item above level 185 by rolling 100.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,33,0,2802,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_coin_04'),(690,-1,-1,0,'Karazhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Prince Malchezaar in Karazhan.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,33,0,3828,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_princemalchezaar_02'),(727,-1,-1,0,'Call in the Cavalry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain one of the war mounts through the honor system.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,33,0,1178,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_blackdirewolf'),(1370,-1,533,0,'Loatheb kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loatheb kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,33,1,2997,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_cauldron_nature'),(1425,-1,-1,0,'Realm First! Grand Master Miner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in mining.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,33,256,336,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_mining'),(1516,-1,-1,0,'Accomplished Angler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the fishing achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',171,10,33,0,580,'Title Reward: Salty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_fishing'),(2041,-1,608,0,'Dehydration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Ichoron in the Violet Hold on Heroic Difficulty without allowing any Ichor Globules to merge.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,33,0,2134,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_frost_summonwaterelemental_2'),(2959,-1,603,0,'Rubble and Roll (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kologarn after causing at least 25 Rubble creatures to spawn in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,33,0,2380,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_elemental_primal_earth'),(2960,-1,603,0,'Rubble and Roll (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kologarn after causing at least 25 Rubble creatures to spawn in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,33,0,2380,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_elemental_primal_earth'),(3676,1,-1,0,'A Silver Confidant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn both exalted status with The Silver Covenant and the right to represent a city in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,33,0,2383,'Unlocks Silver Covenant dailies at the Argent Tournament.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_elemental_primal_mana'),(4044,-1,-1,0,'Times completed the Trial of the Crusader (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Times completed the Trial of the Crusader (10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,33,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4404,-1,249,0,'She Deep Breaths More (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Onyxia without anyone taking damage from a Deep Breath in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,33,0,2128,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_burnout'),(4407,-1,249,0,'She Deep Breaths More (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Onyxia without anyone taking damage from a Deep Breath in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,33,0,2128,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_fire_burnout'),(4646,-1,-1,0,'Festergut kills (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Festergut kills (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,33,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(229,-1,-1,0,'The Grim Reaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get 30 Honorable Kills in a single battle in any battleground.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,34,0,1933,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_shadow_nethercloak'),(559,-1,-1,0,'Needy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Win a need roll on a superior or better item above level 185 by rolling 100.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,34,0,2801,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_coin_01'),(691,-1,-1,0,'Zul\'Aman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Zul\'jin in Zul\'Aman.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,34,0,3630,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_zuljin'),(1363,-1,533,0,'Maexxna kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Maexxna kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,34,1,1899,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_trinket_naxxramas04'),(1426,-1,-1,0,'Realm First! Grand Master Skinner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in skinning.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,34,256,736,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_pelt_wolf_01'),(2153,-1,608,0,'A Void Dance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Zuramat the Obliterator in The Violet Hold on Heroic Difficulty without killing any void sentries.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,34,0,2242,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_enchant_voidsphere'),(3006,-1,603,0,'Crazy Cat Lady (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Auriaya without destroying her Sanctum Sentries in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,34,0,3870,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_auriaya_01'),(3007,-1,603,0,'Crazy Cat Lady (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Auriaya without destroying her Sanctum Sentries in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,34,0,3870,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_auriaya_01'),(3677,0,-1,0,'The Sunreavers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn both exalted status with The Sunreavers and the right to represent a city in the Argent Tournament.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,34,0,3976,'Unlocks Sunreaver dailies at the Argent Tournament.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_elemental_primal_nether'),(4016,-1,-1,0,'Earth, Wind & Fire (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Archavon the Stone Watcher, Emalon the Storm Watcher, and Koralon the Flame Watcher within 60 seconds of each other in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,34,0,2603,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_nature_elementalprecision_2'),(4017,-1,-1,0,'Earth, Wind & Fire (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Archavon the Stone Watcher, Emalon the Storm Watcher, and Koralon the Flame Watcher within 60 seconds of each other in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,34,0,2603,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_nature_elementalprecision_2'),(4045,-1,-1,0,'Times completed the Trial of the Grand Crusader (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Times completed the Trial of the Grand Crusader (10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,34,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4665,-1,-1,0,'Festergut kills (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Festergut kills (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,34,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(692,-1,-1,0,'Gruul\'s Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Gruul the Dragonkiller in Gruul\'s Lair.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,35,0,3628,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_gruulthedragonkiller'),(714,0,-1,0,'The Conqueror','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise your reputation values in Warsong Gulch, Arathi Basin and Alterac Valley to Exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,20,35,0,2563,'Title Reward: Conqueror','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tabardpvp_04'),(1165,-1,-1,0,'My Sack is \"Gigantique\"','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Equip Haris Pilton\'s \"Gigantique\" Bag.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,35,0,2989,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_bag_27'),(1365,-1,533,0,'Noth the Plaguebringer kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Noth the Plaguebringer kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,35,1,2997,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_cauldron_nature'),(1427,-1,-1,0,'Realm First! Grand Master Tailor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First person on the realm to achieve 450 skill in tailoring.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,35,256,341,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_tailoring'),(1864,-1,604,0,'What the Eck?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Gal\'darah in Gundrak on Heroic Difficulty while under the effects of Eck Residue.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,35,0,3299,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_dungeon_gundrak_25man'),(3076,-1,603,0,'Nine Lives (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Feral Defender while defeating Auriaya in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,35,0,836,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_mount_blackpanther'),(3077,-1,603,0,'Nine Lives (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Feral Defender while defeating Auriaya in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,35,0,836,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'ability_mount_blackpanther'),(4046,-1,-1,0,'Times completed the Trial of the Crusader (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Times completed the Trial of the Crusader (25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,35,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4596,-1,-1,0,'The Sword in the Skull','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Recover the missing hilt of Quel\'Delar, draw the blade from its resting place, reforge the weapon, purify it in the Sunwell, and present it for your just reward.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14941,10,35,0,4143,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_sword_155'),(4666,-1,-1,0,'Festergut kills (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Festergut kills (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,35,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4815,-1,-1,0,'The Twilight Destroyer (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Halion in The Ruby Sanctum in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,35,0,164,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_shadow_twilight'),(4817,-1,-1,0,'The Twilight Destroyer (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Halion in The Ruby Sanctum in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,35,0,164,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_shadow_twilight'),(693,-1,-1,0,'Magtheridon\'s Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Magtheridon in Magtheridon\'s Lair.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,36,0,3640,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_magtheridon'),(907,1,-1,0,'The Justicar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise your reputation values in Warsong Gulch, Arathi Basin and Alterac Valley to Exalted.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,20,36,0,2924,'Title Reward: Justicar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tabardpvp_03'),(1187,-1,-1,0,'The Keymaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the keys listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,36,0,2502,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_key_13'),(1364,-1,533,0,'Patchwerk kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Patchwerk kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,36,1,97,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_plaguecloud'),(1400,-1,616,0,'Realm First! Magic Seeker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Participated in the realm first defeat of Malygos in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,36,768,1700,'Title Reward: The Magic Seeker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_dragon_blue'),(2152,-1,604,0,'Share The Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Gal\'darah in Gundrak on Heroic Difficulty and have 5 unique party members get impaled throughout the fight.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,36,0,2714,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'ability_mount_kotobrewfest'),(2961,-1,603,0,'Cheese the Freeze (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Hodir without any raid member being hit by Flash Freeze in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,36,0,56,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_frost_freezingbreath'),(2962,-1,603,0,'Cheese the Freeze (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Hodir without any raid member being hit by Flash Freeze in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,36,0,56,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_frost_freezingbreath'),(4047,-1,-1,0,'Times completed the Trial of the Grand Crusader (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Times completed the Trial of the Grand Crusader (25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,0,36,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4667,-1,-1,0,'Festergut kills (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Festergut kills (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,36,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4816,-1,-1,4815,'Heroic: The Twilight Destroyer (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Halion in The Ruby Sanctum in 25-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14923,10,36,0,164,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_shadow_twilight'),(4818,-1,-1,4817,'Heroic: The Twilight Destroyer (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Halion in The Ruby Sanctum in 10-player Heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14922,10,36,0,164,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_shadow_twilight'),(456,-1,615,0,'Realm First! Obsidian Slayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Participated in the realm first defeat of Sartharion the Onyx Guardian in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,37,768,3308,'Title Reward: Obsidian Slayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_dungeon_coablackdragonflight_25man'),(694,-1,-1,0,'Serpentshrine Cavern','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Lady Vashj in Serpentshrine Cavern.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,37,0,3658,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_ladyvashj'),(908,1,-1,0,'Call to Arms!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the level 80 versions of the Call to Arms daily battleground quests listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,37,0,2841,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_warrior_incite'),(1206,-1,-1,0,'To All The Squirrels I\'ve Loved Before','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Show the critters of Azeroth how much you /love them.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,37,0,3132,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_jewelcrafting_crimsonhare'),(1373,-1,533,0,'Thaddius kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Thaddius kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,37,1,97,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_plaguecloud'),(2040,-1,604,0,'Less-rabi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Moorabi in Gundrak on Heroic Difficulty while preventing him from transforming into a mammoth at any point during the encounter.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,37,0,3394,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_monsterhorn_04'),(2963,-1,603,0,'I Have the Coolest Friends (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Hodir without any friendly NPC dying in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,37,0,36,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_frost_manarecharge'),(2965,-1,603,0,'I Have the Coolest Friends (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Hodir without any friendly NPC dying in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,37,0,36,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_frost_manarecharge'),(4074,-1,624,0,'Koralon the Flame Watcher kills (Wintergrasp 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Koralon the Flame Watcher kills (Wintergrasp 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,10,37,1,187,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_frost_chillingblast'),(4647,-1,-1,0,'Rotface kills (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Rotface kills (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,37,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(696,-1,-1,0,'Tempest Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kael\'thas Sunstrider in Tempest Keep.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,38,0,3284,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_character_bloodelf_male'),(909,0,-1,0,'Call to Arms!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the level 80 versions of the Call to Arms daily battleground quests listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,38,0,2841,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_warrior_incite'),(1376,-1,533,0,'Sapphiron kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sapphiron kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,38,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_head_dragon_blue'),(1402,-1,533,0,'Realm First! Conqueror of Naxxramas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Participated in the realm first defeat of Kel\'Thuzad in Naxxramas in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,38,768,1898,'Title Reward: Conqueror of Naxxramas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_trinket_naxxramas06'),(2058,-1,604,0,'Snakes. Why\'d It Have To Be Snakes?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Slad\'ran in Gundrak on Heroic Difficulty without getting snake wrapped.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,38,0,2936,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'ability_hunter_cobrastrikes'),(2557,-1,-1,0,'To All The Squirrels Who Shared My Life','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Show more critters of Azeroth how much you /love them.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,38,0,3132,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','1694430000',0,0,'inv_jewelcrafting_crimsonhare'),(2967,-1,603,0,'Getting Cold in Here (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Hodir without any raid member having more than 2 stacks of Biting Cold in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,38,0,3862,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_boss_hodir_01'),(2968,-1,603,0,'Getting Cold in Here (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Hodir without any raid member having more than 2 stacks of Biting Cold in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,38,0,501,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_frost_frostward'),(4075,-1,624,0,'Koralon the Flame Watcher kills (Wintergrasp 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Koralon the Flame Watcher kills (Wintergrasp 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15021,10,38,1,187,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_frost_chillingblast'),(4668,-1,-1,0,'Rotface kills (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Rotface kills (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,38,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(227,-1,-1,0,'Damage Control','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Do 300,000 damage or healing in a single battle in any battleground. The damage or healing must be done to a player.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,39,0,3422,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_bg_topdps'),(695,-1,-1,0,'The Battle for Mount Hyjal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Archimonde in The Battle for Mount Hyjal.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,39,0,3639,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_archimonde'),(1377,-1,533,0,'Kel\'Thuzad kills (Naxxramas 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kel\'Thuzad kills (Naxxramas 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,39,1,1898,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_trinket_naxxramas06'),(1866,-1,599,0,'Good Grief','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Maiden of Grief in the Halls of Stone on Heroic Difficulty in 1 minute or less.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,39,0,3301,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'achievement_dungeon_ulduar77_10man'),(2556,-1,-1,0,'Pest Control','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Slay the following pests.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,39,0,1586,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','1694430000',0,0,'ability_hunter_pet_spider'),(2970,-1,603,0,'Staying Buffed All Winter (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Possess the effects of Toasty Fire, Storm Power and Starlight at the same time in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,39,0,11,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'spell_fire_fire'),(3117,-1,603,0,'Realm First! Death\'s Demise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Participated in the realm first defeat of Yogg-Saron without the assistance of any Keepers in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,39,768,3848,'Title Reward: Death\'s Demise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_yoggsaron_01'),(3182,-1,603,0,'I Could Say That This Cache Was Rare (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Hodir before he shatters his rare cache in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,39,0,3927,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-33619500',0,0,'inv_box_04'),(4669,-1,-1,0,'Rotface kills (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Rotface kills (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,39,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(231,-1,-1,0,'Wrecking Ball','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Get 20 killing blows without dying in a single battle in any battleground.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,40,16,2770,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_warrior_trauma'),(697,-1,-1,0,'The Black Temple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Illidan Stormrage in The Black Temple.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,40,0,3663,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_illidan'),(1254,-1,-1,0,'Friend or Fowl?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Slay 15 turkeys in 3 minutes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,40,0,1467,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_food_15'),(2155,-1,599,0,'Abuse the Ooze','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Sjonnir the Ironshaper in the Halls of Stone on Heroic Difficulty and kill 5 Iron Sludges during the encounter.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,40,0,1541,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_slime_01'),(2596,-1,533,0,'Mr. Bigglesworth kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Mr. Bigglesworth kills','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,40,33,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_head_dragon_blue'),(2969,-1,603,0,'Staying Buffed All Winter (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Possess the effects of Toasty Fire, Storm Power and Starlight at the same time in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,40,0,11,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'spell_fire_fire'),(3184,-1,603,0,'I Could Say That This Cache Was Rare (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Hodir before he shatters his rare cache in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,40,0,3927,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'inv_box_04'),(3259,-1,603,0,'Realm First! Celestial Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Participated in the realm first defeat of Algalon the Observer in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,40,768,3869,'Title Reward: The Celestial Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_algalon_01'),(4670,-1,-1,0,'Rotface kills (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Rotface kills (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,40,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(698,-1,-1,0,'Sunwell Plateau','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Kil\'jaeden in Sunwell Plateau.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14805,10,41,0,3592,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_kiljaedan'),(1244,-1,-1,0,'Well Read','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Read the books listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,41,0,2892,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'inv_misc_book_04'),(1368,-1,533,0,'Anub\'Rekhan kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Anub\'Rekhan kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,41,1,1899,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_trinket_naxxramas04'),(2016,1,-1,0,'Grizzled Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Grizzly Hills PvP daily quests listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,41,0,3343,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_zone_grizzlyhills_11'),(2154,-1,599,0,'Brann Spankin\' New','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Tribunal of Ages encounter in the Halls of Stone on Heroic Difficulty without allowing Brann Bronzebeard to take any damage.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,41,0,3286,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_character_dwarf_male'),(2971,-1,603,0,'Don\'t Stand in the Lightning (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thorim without any raid member being struck by Lightning Charge in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,41,0,320,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_lightning_lightningbolt01'),(2972,-1,603,0,'Don\'t Stand in the Lightning (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thorim without any raid member being struck by Lightning Charge in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,41,0,320,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_lightning_lightningbolt01'),(4078,-1,649,0,'Realm First! Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Participated in the realm first conquest of the Trial of the Grand Crusader with 50 attempts remaining in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,41,768,3805,'Title Reward: The Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_argentcrusader'),(4648,-1,-1,0,'Blood Prince Council kills (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Blood Prince Council kills (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,41,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1378,-1,533,0,'Gluth kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gluth kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,42,1,97,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_plaguecloud'),(1867,-1,602,0,'Timely Death','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Loken in the Halls of Lightning on Heroic Difficulty in 2 minutes or less.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,42,0,3302,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'achievement_dungeon_ulduar80_25man'),(1956,-1,571,0,'Higher Learning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Read the volumes of \"The Schools of Arcane Magic\" found in Dalaran listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,42,0,1865,'Reward: The Schools of Arcane Magic - Mastery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_book_11'),(2017,0,-1,0,'Grizzled Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Grizzly Hills PvP daily quests listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,10,42,0,3343,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_zone_grizzlyhills_11'),(2973,-1,603,0,'I\'ll Take You All On (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thorim, the Ancient Rune Giant and the Runic Colossus in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,42,0,3864,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_dungeon_ulduarraid_ironsentinel_01'),(2974,-1,603,0,'I\'ll Take You All On (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thorim, the Ancient Rune Giant and the Runic Colossus in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,42,0,3864,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_dungeon_ulduarraid_ironsentinel_01'),(4576,-1,631,0,'Realm First! Fall of the Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Participated in the realm first defeat of the Lich King in 25-player heroic mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,42,768,4127,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_96'),(4671,-1,-1,0,'Blood Prince Council kills (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Blood Prince Council kills (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,42,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(230,1,-1,0,'Battlemaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the battleground achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,50,43,0,3372,'Title Reward: Battlemaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_15'),(1379,-1,533,0,'Gothik the Harvester kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gothik the Harvester kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,43,1,2639,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_deathknight_classicon'),(1463,-1,-1,0,'Realm First! Northrend Vanguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','First player on the realm to gain exalted reputation with the Argent Crusade, Wyrmrest Accord, Kirin Tor and Knights of the Ebon Blade.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,43,256,2207,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_misc_hellifrepvpcombatmorale'),(1833,-1,-1,0,'It\'s Happy Hour Somewhere','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Drink 25 different types of beverages.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,43,160,3083,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',25,346,'inv_misc_beer_04'),(1834,-1,602,0,'Lightning Struck','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat General Bjarngrim in the Halls of Lightning on Heroic Difficulty while he has a Temporary Electrical Charge.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,43,0,3242,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_dungeon_ulduar80_heroic'),(2975,-1,603,0,'Who Needs Bloodlust? (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thorim while under the effect of Aura of Celerity in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,43,0,122,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_nature_wispsplode'),(2976,-1,603,0,'Who Needs Bloodlust? (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thorim while under the effect of Aura of Celerity in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,43,0,122,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_nature_wispsplode'),(4672,-1,-1,0,'Blood Prince Council kills (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Blood Prince Council kills (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,43,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(662,-1,-1,0,'Collector\'s Edition: Mini-Diablo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Owner of the World of Warcraft Collector\'s Edition Mini-Diablo pet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,44,0,2795,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_diablostone'),(1175,0,-1,0,'Battlemaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the battleground achievements listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',95,50,44,0,3373,'Title Reward: Battlemaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_15'),(1380,-1,533,0,'Grand Widow Faerlina kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Grand Widow Faerlina kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,44,1,1899,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_trinket_naxxramas04'),(1832,-1,-1,0,'Tastes Like Chicken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sample 50 different kinds of Azeroth\'s delectable dishes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,44,160,3266,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',50,347,'inv_misc_food_115_condorsoup'),(2042,-1,602,0,'Shatter Resistant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Volkhan in the Halls of Lightning on Heroic Difficulty without allowing him to shatter more than 4 Brittle Golems.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,44,0,937,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_fire_incinerate'),(2977,-1,603,0,'Siffed (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Force Thorim to enter the arena while Sif is present in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,44,0,3863,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_thorim'),(2978,-1,603,0,'Siffed (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Force Thorim to enter the arena while Sif is present in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,44,0,3863,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_thorim'),(4673,-1,-1,0,'Blood Prince Council kills (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Blood Prince Council kills (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,44,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(663,-1,-1,0,'Collector\'s Edition: Panda','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Owner of the World of Warcraft Collector\'s Edition Panda pet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,45,0,2531,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_belt_05'),(1381,-1,533,0,'Grobbulus kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Grobbulus kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,45,1,97,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_plaguecloud'),(1817,-1,595,0,'The Culling of Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Infinite Corruptor in The Culling of Stratholme on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,45,0,3265,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_dungeon_cotstratholme_25man'),(2076,-1,-1,0,'Armored Brown Bear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain an Armored Brown Bear from Mei Francis in Dalaran.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,45,0,3497,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_mount_polarbear_brown'),(3176,-1,603,2977,'Lose Your Illusion (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thorim while Sif is present in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,45,0,3863,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'achievement_boss_thorim'),(3183,-1,603,2978,'Lose Your Illusion (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Thorim while Sif is present in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,45,0,3863,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'achievement_boss_thorim'),(4649,-1,-1,0,'Valithria Dreamwalker rescues (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Valithria Dreamwalker rescues (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,45,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(664,-1,-1,0,'Collector\'s Edition: Zergling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Owner of the World of Warcraft Collector\'s Edition Zergling pet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,46,0,214,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_shadow_summonfelhunter'),(1382,-1,533,0,'Heigan the Unclean kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Heigan the Unclean kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,46,1,2997,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_cauldron_nature'),(1872,-1,595,0,'Zombiefest!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kill 100 Risen Zombies in 1 minute in The Culling of Stratholme on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,46,0,3012,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_deathknight_explode_ghoul'),(2077,-1,-1,0,'Wooly Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Wooly Mammoth from Mei Francis in Dalaran.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,46,0,3443,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_mount_mammoth_brown'),(2979,-1,603,0,'Lumberjacked (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Elder Brightleaf, Elder Ironbranch and Elder Stonebark within 15 seconds of each other in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,46,0,2258,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_druid_forceofnature'),(3118,-1,603,0,'Lumberjacked (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Elder Brightleaf, Elder Ironbranch and Elder Stonebark within 15 seconds of each other in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,46,0,2258,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',1,0,'ability_druid_forceofnature'),(4674,-1,-1,0,'Valithria Dreamwalker rescues (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Valithria Dreamwalker rescues (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,46,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(665,-1,-1,0,'Collector\'s Edition: Netherwhelp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Owner of the The Burning Crusade\'s Collector\'s Edition Netherwhelp pet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,47,0,2449,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_netherwhelp'),(1383,-1,533,0,'Four Horsemen kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Four Horsemen kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,47,1,2639,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_deathknight_classicon'),(2043,-1,575,0,'The Incredible Hulk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Force Svala Sorrowgrave to kill a Scourge Hulk on Heroic Difficulty in Utgarde Pinnacle.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,47,0,460,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_shadow_summoninfernal'),(2078,-1,-1,0,'Traveler\'s Tundra Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Traveler\'s Tundra Mammoth from Mei Francis in Dalaran.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,47,0,3443,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_mount_mammoth_brown'),(2980,-1,603,0,'Con-speed-atory (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Freya within 20 minutes of the first creature you kill in the Conservatory of Life in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,47,0,2864,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'ability_druid_flourish'),(2981,-1,603,0,'Con-speed-atory (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Freya within 20 minutes of the first creature you kill in the Conservatory of Life in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,47,0,2864,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'ability_druid_flourish'),(4675,-1,-1,0,'Valithria Dreamwalker rescues (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Valithria Dreamwalker rescues (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,47,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(683,-1,-1,0,'Collector\'s Edition: Frost Wyrm Whelp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Owner of the Wrath of the Lich King\'s Collector\'s Edition Frost Wyrm Whelp pet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,48,0,3752,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_pet_frostwyrm'),(1384,-1,533,0,'Instructor Razuvious kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Instructor Razuvious kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,48,1,2639,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_deathknight_classicon'),(1873,-1,575,0,'Lodi Dodi We Loves the Skadi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Skadi the Ruthless in Utgarde Pinnacle on Heroic Difficulty within 3 minutes of starting the gauntlet event.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,48,0,3307,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_dungeon_utgardepinnacle_10man'),(2097,-1,-1,0,'Get to the Choppa!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Mekgineer\'s Chopper or a Mechano-hog.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,48,0,1101,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',1,0,'inv_misc_key_14'),(2984,-1,603,0,'Deforestation (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat 2 Ancient Water Spirits, 2 Storm Lashers and 2 Snaplashers within 10 seconds in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,48,0,40,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'spell_nature_naturetouchdecay'),(2985,-1,603,0,'Deforestation (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat 2 Ancient Water Spirits, 2 Storm Lashers and 2 Snaplashers within 10 seconds in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,48,0,40,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'spell_nature_naturetouchdecay'),(4676,-1,-1,0,'Valithria Dreamwalker rescues (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Valithria Dreamwalker rescues (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,48,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1385,-1,533,0,'Loatheb kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Loatheb kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,49,1,2997,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_cauldron_nature'),(2084,-1,-1,0,'Ring of the Kirin Tor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Purchase a Signet of the Kirin Tor, Band of the Kirin Tor, Loop of the Kirin Tor, or Ring of the Kirin Tor in Dalaran.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,49,0,3447,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'inv_jewelry_ring_73'),(2156,-1,575,0,'My Girl Loves to Skadi All the Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Skadi the Ruthless in Utgarde Pinnacle on Heroic Difficulty after having killed Grauf from 100% to dead in a single pass.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,49,0,3319,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_boss_kingymiron_01'),(2982,-1,603,0,'Getting Back to Nature (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Freya while she is affected by 25 stacks of Attuned to Nature in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,49,0,3865,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_freya_01'),(2983,-1,603,0,'Getting Back to Nature (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Freya while she is affected by 25 stacks of Attuned to Nature in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,49,0,3865,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_freya_01'),(4650,-1,-1,0,'Professor Putricide kills (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Professor Putricide kills (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,49,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(4824,-1,-1,0,'Collector\'s Edition: Mini Thor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Owner of the Starcraft II Collector\'s Edition Mini Thor pet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,49,0,4347,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_sigil_thorim'),(411,-1,-1,0,'Murky','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of Murky from the 2005 BlizzCon in Anaheim, California.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,50,0,2316,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_egg_03'),(1386,-1,533,0,'Maexxna kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Maexxna kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,50,1,1899,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_trinket_naxxramas04'),(2157,-1,575,0,'King\'s Bane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat King Ymiron in Utgarde Pinnacle on Heroic Difficulty without anyone in the party triggering Bane.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,50,0,3321,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'achievement_boss_kingymiron_03'),(2716,-1,-1,0,'Dual Talent Specialization','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Visit your class trainer when you are at least level 40 and activate your Dual Talent Specialization.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,50,0,2970,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-16842300',0,0,'achievement_general'),(3177,-1,603,0,'Knock on Wood (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Freya while leaving at least 1 Elder alive in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,50,0,3642,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'achievement_boss_warpsplinter'),(3185,-1,603,0,'Knock on Wood (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Freya while leaving at least 1 Elder alive in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,50,0,3642,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'achievement_boss_warpsplinter'),(4677,-1,-1,0,'Professor Putricide kills (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Professor Putricide kills (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,50,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(412,-1,-1,0,'Murloc Costume','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of the Murloc Costume from the 2007 BlizzCon in Anaheim, California.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,51,0,1751,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_head_murloc_01'),(1387,-1,533,0,'Noth the Plaguebringer kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Noth the Plaguebringer kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,51,1,2997,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_cauldron_nature'),(1871,-1,578,0,'Experienced Drake Rider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','On three different visits to The Oculus, get credit for defeating Ley-Guardian Eregos while riding an Amber, Emerald, and Ruby drake on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,51,0,3306,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'achievement_dungeon_nexus80_10man'),(2141,-1,-1,0,'Stable Keeper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain 10 mounts.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,51,0,2165,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'ability_mount_ridingelekk'),(3178,-1,603,3177,'Knock, Knock on Wood (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Freya while leaving at least 2 Elders alive in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,51,0,3642,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'achievement_boss_warpsplinter'),(3186,-1,603,3185,'Knock, Knock on Wood (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Freya while leaving at least 2 Elders alive in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,51,0,3642,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'achievement_boss_warpsplinter'),(4678,-1,-1,0,'Professor Putricide kills (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Professor Putricide kills (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,51,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(415,-1,-1,0,'Big Blizzard Bear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of the Big Blizzard Bear from the 2008 BlizzCon.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,52,0,3895,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_bigblizzardbear'),(1367,-1,533,0,'Patchwerk kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Patchwerk kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,52,1,97,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_plaguecloud'),(1868,-1,578,0,'Make It Count','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Ley-Guardian Eregos in The Oculus on Heroic Difficulty within 20 minutes of Drakos the Interrogator\'s death.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,52,0,3303,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'achievement_dungeon_nexus80_25man'),(2142,-1,-1,2141,'Filling Up The Barn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain 25 mounts.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,52,0,2406,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2063530000',0,0,'ability_mount_ridingelekkelite_green'),(3179,-1,603,3178,'Knock, Knock, Knock on Wood (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Freya while leaving all 3 Elders alive in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,52,0,3642,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'achievement_boss_warpsplinter'),(3187,-1,603,3186,'Knock, Knock, Knock on Wood (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Freya while leaving all 3 Elders alive in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,52,0,3642,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'achievement_boss_warpsplinter'),(4679,-1,-1,0,'Professor Putricide kills (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Professor Putricide kills (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,52,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(1388,-1,533,0,'Thaddius kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Thaddius kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,53,1,97,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_plaguecloud'),(2044,-1,578,0,'Ruby Void','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Ley-Guardian Eregos in The Oculus on Heroic Difficulty without anyone in your party using a Ruby Drake.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,53,0,3495,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_mount_drake_red'),(2143,-1,-1,2142,'Leading the Cavalry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain 50 mounts.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,53,0,3444,'Reward: Albino Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mount_mammoth_black'),(2989,-1,603,0,'Set Up Us the Bomb (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Mimiron without anyone in the raid being hit by the following in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,53,0,3261,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'ability_mage_missilebarrage'),(3237,-1,603,0,'Set Up Us the Bomb (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Mimiron without anyone in the raid being hit by the following in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,53,0,3261,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','134183000',0,0,'ability_mage_missilebarrage'),(3536,-1,-1,0,'The Marine Marine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of Grunty\'s Heavy Murloc Egg from the 2009 BlizzCon.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,53,0,2316,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',1,0,'inv_egg_03'),(4651,-1,-1,0,'Blood Queen Lana\'thel kills (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Blood Queen Lana\'thel kills (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,53,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(414,-1,-1,0,'Tyrael\'s Hilt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of Tyrael\'s Hilt from the 2008 World Wide Invitational in Paris, France.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,54,0,2657,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_sword_07'),(1389,-1,533,0,'Sapphiron kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sapphiron kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,54,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_head_dragon_blue'),(2045,-1,578,0,'Emerald Void','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Ley-Guardian Eregos in The Oculus on Heroic Difficulty without anyone in your party using an Emerald Drake.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,54,0,3441,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_mount_drake_blue'),(2536,1,-1,2143,'Mountain o\' Mounts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain 100 mounts.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,54,0,2328,'Reward: Blue Dragonhawk Mount','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_hunter_pet_dragonhawk'),(2995,-1,603,0,'Not-So-Friendly Fire (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Force Mimiron to kill an Assault Bot with a Rocket Strike in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,54,0,2665,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_gizmo_rocketlauncher'),(3138,-1,603,0,'Not-So-Friendly Fire (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Force Mimiron to kill an Assault Bot with a Rocket Strike in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,54,0,2665,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_gizmo_rocketlauncher'),(4680,-1,-1,0,'Blood Queen Lana\'thel kills (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Blood Queen Lana\'thel kills (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,54,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(454,0,-1,0,'Scout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Scout\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,55,0,3344,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_01'),(1390,-1,533,0,'Kel\'Thuzad kills (Naxxramas 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Kel\'Thuzad kills (Naxxramas 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,55,1,1898,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_trinket_naxxramas06'),(2046,-1,578,0,'Amber Void','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Ley-Guardian Eregos in The Oculus on Heroic Difficulty without anyone in your party using an Amber Drake.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,55,0,3440,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_mount_drake_bronze'),(2537,0,-1,2143,'Mountain o\' Mounts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain 100 mounts.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',92,10,55,0,2328,'Reward: Red Dragonhawk Mount','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_hunter_pet_dragonhawk'),(3180,-1,603,0,'Firefighter (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Mimiron after activating his Self-Destruct mechanism in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,55,0,1696,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'inv_misc_bomb_04'),(3189,-1,603,0,'Firefighter (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Mimiron after activating his Self-Destruct mechanism in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,55,0,1696,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'inv_misc_bomb_04'),(4681,-1,-1,0,'Blood Queen Lana\'thel kills (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Blood Queen Lana\'thel kills (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,55,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(468,0,-1,0,'Grunt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Grunt\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,56,0,3345,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_02'),(1392,-1,615,0,'Sartharion kills (Chamber of the Aspects 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sartharion kills (Chamber of the Aspects 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,56,1,1699,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_head_dragon_black'),(2996,-1,603,0,'Shadowdodger (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat General Vezax without any raid member being hit by Shadow Crash in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,56,0,1939,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_painspike'),(2997,-1,603,0,'Shadowdodger (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat General Vezax without any raid member being hit by Shadow Crash in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,56,0,1939,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_painspike'),(3802,-1,-1,0,'Argent Confessor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','On separate visits to the Trial of the Champion, get credit for defeating Argent Confessor Paletress after suppressing five different memories of the past on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,56,0,2792,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',5,0,'inv_helmet_52'),(4682,-1,-1,0,'Blood Queen Lana\'thel kills (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Blood Queen Lana\'thel kills (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,56,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(453,0,-1,0,'Sergeant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Sergeant\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,57,0,3346,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_03'),(1393,-1,615,0,'Sartharion kills (Chamber of the Aspects 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sartharion kills (Chamber of the Aspects 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,57,1,1699,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_head_dragon_black'),(3181,-1,603,0,'I Love the Smell of Saronite in the Morning (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat General Vezax after defeating the Saronite Animus in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,57,0,3868,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'achievement_boss_generalvezax_01'),(3188,-1,603,0,'I Love the Smell of Saronite in the Morning (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat General Vezax after defeating the Saronite Animus in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,57,0,3868,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-385941000',0,0,'achievement_boss_generalvezax_01'),(3803,-1,-1,0,'The Faceroller','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Eadric the Pure in the Trial of the Champion with his own hammer on Heroic Difficulty.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,57,0,42,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'ability_thunderclap'),(4652,-1,-1,0,'Sindragosa kills (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sindragosa kills (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,57,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(450,0,-1,0,'Senior Sergeant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Senior Sergeant\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,58,0,3347,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_04'),(1391,-1,616,0,'Malygos kills (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Malygos kills (10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,58,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_head_dragon_blue'),(3009,-1,603,0,'Kiss and Make Up (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','/Kiss Sara in Ulduar while she is angry with you in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,58,0,3192,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_valentinescard02'),(3011,-1,603,0,'Kiss and Make Up (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','/Kiss Sara in Ulduar while she is angry with you in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,58,0,3192,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_valentinescard02'),(3804,-1,-1,0,'I\'ve Had Worse','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Black Knight in the Trial of the Champion on Heroic Difficulty without any player in the group being hit by a ghoul explosion.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,58,0,1652,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_helmet_23'),(4684,-1,-1,0,'Sindragosa kills (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sindragosa kills (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,58,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(452,0,-1,0,'First Sergeant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"First Sergeant\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,59,0,3348,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_05'),(1394,-1,616,0,'Malygos kills (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Malygos kills (25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,59,1,1700,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_misc_head_dragon_blue'),(3157,-1,603,0,'Three Lights in the Darkness (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron with the assistance of three or fewer Keepers in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,59,0,2206,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-33619500',0,0,'spell_shadow_shadesofdarkness'),(3161,-1,603,0,'Three Lights in the Darkness (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron with the assistance of three or fewer Keepers in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,59,0,2206,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-33619500',0,0,'spell_shadow_shadesofdarkness'),(4522,-1,632,0,'Soul Power','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Bronjahm in The Forge of Souls on Heroic Difficulty with at least 4 Corrupted Soul Fragments alive.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,59,0,4152,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_bronjahm'),(4683,-1,-1,0,'Sindragosa kills (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sindragosa kills (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,59,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(451,0,-1,0,'Stone Guard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Stone Guard\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,60,0,3349,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_06'),(1753,-1,624,0,'Archavon the Stone Watcher kills (Wintergrasp 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Archavon the Stone Watcher kills (Wintergrasp 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,60,1,187,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_frost_chillingblast'),(3141,-1,603,3157,'Two Lights in the Darkness (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron with the assistance of two or fewer Keepers in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,60,0,2206,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-234946000',0,0,'spell_shadow_shadesofdarkness'),(3162,-1,603,3161,'Two Lights in the Darkness (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron with the assistance of two or fewer Keepers in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,60,0,2206,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-33619500',0,0,'spell_shadow_shadesofdarkness'),(4523,-1,632,0,'Three Faced','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the Devourer of Souls in The Forge of Souls on Heroic Difficulty without him successfully casting Phantom Blast.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,60,0,4153,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_devourerofsouls'),(4685,-1,-1,0,'Sindragosa kills (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Sindragosa kills (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,60,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(449,0,-1,0,'Blood Guard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Blood Guard\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,61,0,3350,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_07'),(1754,-1,624,0,'Archavon the Stone Watcher kills (Wintergrasp 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Archavon the Stone Watcher kills (Wintergrasp 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14823,10,61,1,187,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_frost_chillingblast'),(3158,-1,603,3141,'One Light in the Darkness (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron with the assistance of one or fewer Keepers in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,61,0,2206,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-33619500',0,0,'spell_shadow_shadesofdarkness'),(3163,-1,603,3162,'One Light in the Darkness (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron with the assistance of one or fewer Keepers in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,61,0,2206,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-33619500',0,0,'spell_shadow_shadesofdarkness'),(4524,-1,658,0,'Doesn\'t Go to Eleven','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Forgemaster Garfrost in The Pit of Saron on Heroic Difficulty before any player gets 11 stacks of Permafrost.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,61,0,4154,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_forgemaster'),(4653,-1,-1,0,'Victories over the Lich King (Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Lich King (Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,61,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(469,0,-1,0,'Legionnaire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Legionnaire\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,62,0,3351,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_08'),(3159,-1,603,3158,'Alone in the Darkness (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron without the assistance of any Keepers in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,62,0,2206,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-33619500',0,0,'spell_shadow_shadesofdarkness'),(3164,-1,603,3163,'Alone in the Darkness (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron without the assistance of any Keepers in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,62,0,2206,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-33619500',0,0,'spell_shadow_shadesofdarkness'),(4525,-1,658,0,'Don\'t Look Up','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Clear the hallway before Scourgelord Tyrannus in The Pit of Saron on Heroic Difficulty without anyone taking icicle damage on the first try.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,62,0,4155,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_scourgelordtyrannus'),(4686,-1,-1,0,'Victories over the Lich King (Heroic Icecrown 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Lich King (Heroic Icecrown 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,62,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(448,0,-1,0,'Centurion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Centurion\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,63,0,3352,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_09'),(3008,-1,603,0,'Drive Me Crazy (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron without any raid member going insane in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,63,0,77,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_mindrot'),(3010,-1,603,0,'Drive Me Crazy (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron without any raid member going insane in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,63,0,77,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_mindrot'),(4526,-1,668,0,'We\'re Not Retreating; We\'re Advancing in a Different Direction.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Escape from the Lich King in under 6 minutes.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14921,10,63,0,4148,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_lichking'),(4687,-1,-1,0,'Victories over the Lich King (Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Lich King (Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,63,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(447,0,-1,0,'Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Champion\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,64,0,3353,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_10'),(3012,-1,603,0,'He\'s Not Getting Any Older (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron within 7 minutes in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,64,0,3848,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_yoggsaron_01'),(3013,-1,603,0,'He\'s Not Getting Any Older (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Yogg-Saron within 7 minutes in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,64,0,3848,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_yoggsaron_01'),(4688,-1,-1,0,'Victories over the Lich King (Heroic Icecrown 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Victories over the Lich King (Heroic Icecrown 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,64,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(444,0,-1,0,'Lieutenant General','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Lieutenant General\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,65,0,3354,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_11'),(3014,-1,603,0,'They\'re Coming Out of the Walls (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat 9 Guardians of Yogg-Saron within 12 seconds in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,65,0,3871,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_heraldvolazj'),(3017,-1,603,0,'They\'re Coming Out of the Walls (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat 9 Guardians of Yogg-Saron within 12 seconds in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,65,0,3871,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'achievement_boss_heraldvolazj'),(4657,-1,-1,0,'Toravon the Ice Watcher kills (Wintergrasp 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Toravon the Ice Watcher kills (Wintergrasp 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,65,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(446,0,-1,0,'General','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"General\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,66,0,3355,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_12'),(3015,-1,603,0,'In His House He Waits Dreaming (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Experience all 3 visions of Yogg-Saron\'s mind in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,66,0,1940,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_brainwash'),(3016,-1,603,0,'In His House He Waits Dreaming (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Experience all 3 visions of Yogg-Saron\'s mind in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,66,0,1940,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_brainwash'),(4658,-1,-1,0,'Toravon the Ice Watcher kills (Wintergrasp 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Toravon the Ice Watcher kills (Wintergrasp 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,66,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(445,0,-1,0,'Warlord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Warlord\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,67,0,3356,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_13'),(3036,-1,603,0,'Observed (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Algalon the Observer in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,67,0,3869,'Title Reward: Starcaller','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_algalon_01'),(3037,-1,603,0,'Observed (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Algalon the Observer in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,67,0,3869,'Title Reward: The Astral Walker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_algalon_01'),(4821,-1,-1,0,'Halion kills (Ruby Sanctum 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Halion kills (Ruby Sanctum 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,67,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(443,0,-1,0,'High Warlord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"High Warlord\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,68,0,3357,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_h_14'),(3002,-1,603,0,'Supermassive (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Algalon the Observer after closing 3 Black Holes within 10 seconds in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,68,0,2848,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_mindtwisting'),(3003,-1,603,0,'Supermassive (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Algalon the Observer after closing 3 Black Holes within 10 seconds in 10-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,68,0,2848,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_shadow_mindtwisting'),(4822,-1,-1,0,'Halion kills (Heroic Ruby Sanctum 10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Halion kills (Heroic Ruby Sanctum 10 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,68,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(442,1,-1,0,'Private','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Private\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,69,0,3358,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_01'),(3004,-1,603,0,'He Feeds On Your Tears (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Algalon the Observer in 10-player mode without any raid member dying to Algalon at any point during that raid lockout period.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,69,0,3197,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_misc_emotionsad'),(3005,-1,603,0,'He Feeds On Your Tears (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Algalon the Observer in 25-player mode without any raid member dying to Algalon at any point during that raid lockout period.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,69,0,3197,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'spell_misc_emotionsad'),(4820,-1,-1,0,'Halion kills (Ruby Sanctum 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Halion kills (Ruby Sanctum 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,69,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(470,1,-1,0,'Corporal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Corporal\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,70,0,3359,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_02'),(2904,-1,603,0,'Conqueror of Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat each boss in Ulduar in 25-player mode without allowing any raid member to die to that boss at any point during that raid lockout period.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14962,10,70,0,2143,'Title Reward: Conqueror of Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_weaponmastery'),(3316,-1,603,0,'Herald of the Titans','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat Algalon the Observer in 10-player mode without anyone in the raid wearing any equipment with an item level higher than is available in 10-player Ulduar.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,70,0,3869,'Title Reward: Herald of the Titans','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_boss_algalon_01'),(4823,-1,-1,0,'Halion kills (Heroic Ruby Sanctum 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Halion kills (Heroic Ruby Sanctum 25 player)','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',15062,0,70,1,1,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'trade_engineering'),(471,1,-1,0,'Sergeant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Sergeant\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,71,0,3360,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_03'),(2903,-1,603,0,'Champion of Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat each boss in Ulduar in 10-player mode without allowing any raid member to die to that boss at any point during that raid lockout period.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',14961,10,71,0,2292,'Title Reward: Champion of Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_holy_sealofvengeance'),(441,1,-1,0,'Master Sergeant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Master Sergeant\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,72,0,3361,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_04'),(440,1,-1,0,'Sergeant Major','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Sergeant Major\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,73,0,3362,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_05'),(439,1,-1,0,'Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Knight\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,74,0,3363,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_06'),(472,1,-1,0,'Knight-Lieutenant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Knight-Lieutenant\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,75,0,3364,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_07'),(438,1,-1,0,'Knight-Captain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Knight-Captain\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,76,0,3365,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_08'),(437,1,-1,0,'Knight-Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Knight-Champion\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,77,0,3366,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_09'),(436,1,-1,0,'Lieutenant Commander','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Lieutenant Commander\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,78,0,3367,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_10'),(435,1,-1,0,'Commander','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Commander\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,79,0,3368,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_11'),(473,1,-1,0,'Marshal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Marshal\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,80,0,3369,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_12'),(434,1,-1,0,'Field Marshal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Field Marshal\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,81,0,3370,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_13'),(433,1,-1,0,'Grand Marshal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Grand Marshal\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,82,0,3371,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_pvp_a_14'),(432,-1,-1,0,'Champion of the Naaru','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Champion of the Naaru\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,83,0,2843,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_mace_51'),(431,-1,-1,0,'Hand of A\'dal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earned the title, \"Hand of A\'dal\".','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,84,0,2570,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_mace_25'),(1205,-1,-1,0,'Hero of Shattrath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Gained exalted status with The Scryers and The Aldor.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,85,0,2175,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'spell_arcane_teleportshattrath'),(871,-1,-1,0,'Avast Ye, Admiral!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Bloodsail Admiral\'s Hat... and try to get some fresh air every now and then.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,88,0,2421,'Title: Bloodsail Admiral','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_helmet_66'),(879,-1,-1,0,'Old School Ride','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Owner of one of the original epic mounts that are no longer attainable.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,89,0,1177,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_mountainram'),(729,-1,-1,0,'Deathcharger\'s Reins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Deathcharger\'s Reins from Baron Rivendare in Stratholme.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,90,0,1241,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_undeadhorse'),(980,-1,-1,0,'The Horseman\'s Reins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain The Horseman\'s Reins from The Headless Horseman in the Scarlet Monastery during Hallow\'s End.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,91,0,2628,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_belt_12'),(880,-1,-1,0,'Swift Zulian Tiger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Swift Zulian Tiger from High Priest Thekal in Zul\'Gurub.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,92,0,1181,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_jungletiger'),(881,-1,-1,0,'Swift Razzashi Raptor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Swift Razzashi Raptor from Bloodlord Mandokir in Zul\'Gurub.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,93,0,1180,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_raptor'),(882,-1,-1,0,'Fiery Warhorse\'s Reins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Fiery Warhorse\'s Reins from Attumen the Huntsman in Karazhan.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,94,0,1715,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_dreadsteed'),(883,-1,-1,0,'Reins of the Raven Lord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Reins of the Raven Lord from Anzu in Sethekk Halls.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,95,0,2467,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv-mount_raven_54'),(884,-1,-1,0,'Swift White Hawkstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Swift White Hawkstrider from Kael\'thas Sunstrider in Magister\'s Terrace.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,96,0,2399,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_cockatricemountelite_green'),(885,-1,-1,0,'Ashes of Al\'ar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Ashes of Al\'ar from Kael\'thas Sunstrider in Tempest Keep.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,97,0,1927,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_summerfest_brazierorange'),(4626,-1,-1,0,'And I\'ll Form the Head!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain Mimiron\'s Head from 25-player Yogg-Saron with no Keepers assisting you.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,98,0,1815,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_enggizmos_03'),(4627,-1,-1,0,'Big Love Rocket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Big Love Rocket from Apothecary Hummel in Shadowfang Keep during Love is in the Air.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,99,0,3195,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_valentinepinkrocket'),(4625,-1,-1,0,'Invincible\'s Reins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain Invincible from Arthas in Icecrown Citadel.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,100,0,3005,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'spell_deathknight_summondeathcharger'),(4079,0,-1,0,'A Tribute to Immortality','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In the Trial of the Grand Crusader, reach a Tribute Chest with 50 attempts remaining and without allowing any raid member to die during any of the boss encounters in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,101,0,3744,'Reward: Crusader\'s Black Warhorse','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_argentchampion'),(4156,1,-1,0,'A Tribute to Immortality','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','In the Trial of the Grand Crusader, reach a Tribute Chest with 50 attempts remaining and without allowing any raid member to die during any of the boss encounters in 25-player mode.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,102,0,3744,'Reward: Crusader\'s White Warhorse','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_reputation_argentchampion'),(886,-1,-1,0,'Swift Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Swift Nether Drake from Arena Season 1 of The Burning Crusade.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,103,0,2333,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_netherdrakeelite'),(887,-1,-1,0,'Merciless Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Merciless Nether Drake from Arena Season 2 of The Burning Crusade.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,104,0,2333,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_netherdrakeelite'),(888,-1,-1,0,'Vengeful Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Vengeful Nether Drake from Arena Season 3 of The Burning Crusade.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,105,0,2333,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_netherdrakeelite'),(2316,-1,-1,0,'Brutal Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Brutal Nether Drake from Arena Season 4 of The Burning Crusade.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,106,0,2333,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',1,0,'ability_mount_netherdrakeelite'),(3096,-1,-1,0,'Deadly Gladiator\'s Frostwyrm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Deadly Gladiator\'s Frostwyrm from Arena Season 5 of Wrath of the Lich King.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,107,0,3913,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'ability_mount_redfrostwyrm_01'),(3756,-1,-1,0,'Furious Gladiator\'s Frostwyrm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Furious Gladiator\'s Frostwyrm from Arena Season 6 of Wrath of the Lich King.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,108,0,3913,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',1,0,'ability_mount_redfrostwyrm_01'),(3757,-1,-1,0,'Relentless Gladiator\'s Frostwyrm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Relentless Gladiator\'s Frostwyrm from Arena Season 7 of Wrath of the Lich King.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,109,0,3913,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',1,0,'ability_mount_redfrostwyrm_01'),(4600,-1,-1,0,'Wrathful Gladiator\'s Frostwyrm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain the Wrathful Gladiator\'s Frostwyrm from Arena Season 8 of Wrath of the Lich King.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,110,0,3913,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_mount_redfrostwyrm_01'),(430,-1,-1,0,'Amani War Bear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Owner of Amani War Bear.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,111,0,957,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'ability_druid_challangingroar'),(424,-1,-1,0,'Why? Because It\'s Red','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Red Qiraji Resonating Crystal.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,112,0,1812,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_qirajicrystal_02'),(429,-1,-1,0,'Sulfuras, Hand of Ragnaros','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Wielder of Sulfuras, Hand of Ragnaros.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,113,0,2444,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_hammer_unique_sulfuras'),(428,-1,-1,0,'Thunderfury, Blessed Blade of the Windseeker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Wielder of Thunderfury, Blessed Blade of the Windseeker.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,114,0,2756,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_sword_39'),(425,-1,-1,0,'Atiesh, Greatstaff of the Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Wielder of Atiesh, Greatstaff of the Guardian.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,115,0,2757,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_staff_medivh'),(426,-1,-1,0,'Warglaives of Azzinoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Wielder of a set of Warglaives of Azzinoth.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,116,0,2596,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_weapon_glave_01'),(725,-1,-1,0,'Thori\'dal, the Stars\' Fury','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Wielder of Thori\'dal, the Stars\' Fury.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,117,0,2842,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_weapon_bow_39'),(3142,-1,-1,0,'Val\'anyr, Hammer of Ancient Kings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Wielder of Val\'anyr, Hammer of Ancient Kings.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,118,0,3818,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-67173900',0,0,'inv_mace_99'),(4623,-1,-1,0,'Shadowmourne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Wielder of Shadowmourne.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,119,0,4182,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_axe_114'),(418,-1,-1,0,'Merciless Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Achieved Merciless Gladiator title.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,120,0,3593,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_featsofstrength_gladiator_01'),(419,-1,-1,0,'Vengeful Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Achieved Vengeful Gladiator title.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,121,0,3594,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_featsofstrength_gladiator_02'),(420,-1,-1,0,'Brutal Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Achieved Brutal Gladiator title.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,122,0,3595,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_featsofstrength_gladiator_03'),(3336,-1,-1,0,'Deadly Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Achieved Deadly Gladiator title.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,123,0,3596,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'achievement_featsofstrength_gladiator_04'),(3436,-1,-1,0,'Furious Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Achieved Furious Gladiator title.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,124,0,3597,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'achievement_featsofstrength_gladiator_05'),(3758,-1,-1,0,'Relentless Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Achieved Relentless Gladiator title.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,125,0,3598,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'achievement_featsofstrength_gladiator_06'),(4599,-1,-1,0,'Wrathful Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Achieved Wrathful Gladiator title.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,126,0,3599,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_featsofstrength_gladiator_07'),(416,-1,-1,0,'Scarab Lord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Opened the gates of Ahn\'Qiraj.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,127,0,3567,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'achievement_zone_silithus_01'),(1292,-1,-1,0,'Yellow Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of the 2007 Vintage Yellow Brewfest Stein.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,128,0,3082,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'inv_misc_beer_02'),(1293,-1,-1,0,'Blue Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of the 2008 Vintage Blue Brewfest Stein.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,129,0,3083,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',1,0,'inv_misc_beer_04'),(4782,-1,-1,0,'Green Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of the 2009 Vintage Green Brewfest Stein.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,130,0,4223,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_beer_06'),(1636,-1,-1,0,'Competitor\'s Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of a Competitor\'s Tabard from the 2008 Spirit of Competition event.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,131,0,2970,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_general'),(1637,-1,-1,0,'Spirit of Competition','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of a Spirit of Competition pet from the 2008 Spirit of Competition event.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,132,0,2970,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'achievement_general'),(1705,-1,-1,0,'Clockwork Rocket Bot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of the 2007 Vintage Winter Veil gift, the Clockwork Rocket Bot.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,133,0,1859,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2097090000',1,0,'inv_holiday_christmas_present_01'),(1706,-1,-1,0,'Crashin\' Thrashin\' Racer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of the 2008 Vintage Winter Veil gift, the Crashin\' Thrashin\' Racer.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,134,0,1859,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_holiday_christmas_present_01'),(1436,-1,-1,0,'Friends In High Places','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Zhevra mount through the Recruit-a-Friend program.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,135,0,1716,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_mount_charger'),(2079,-1,-1,0,'Tabard of the Protector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtained a Tabard of the Protector from the Dark Portal event.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,136,0,2637,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'inv_shirt_guildtabard_01'),(2116,-1,-1,0,'Tabard of the Argent Dawn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtained a Tabard of the Argent Dawn from the Scourge Invasion event.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,137,0,2637,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_shirt_guildtabard_01'),(2398,-1,-1,0,'WoW\'s 4th Anniversary','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Logged in during WoW\'s 4th Anniversary.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,138,0,2917,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'inv_misc_celebrationcake_01'),(4400,-1,-1,0,'WoW\'s 5th Anniversary','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Logged in during WoW\'s 5th Anniversary.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,139,0,2917,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_celebrationcake_01'),(2336,-1,-1,0,'Insane in the Membrane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Raise your reputation with the areas listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,140,0,2938,'Title Reward: The Insane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_mage_brainfreeze'),(2456,-1,-1,0,'Vampire Hunter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Slew Prince Tenris Mirkblood and acquired his Vampiric Batling pet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,141,0,1577,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',1,0,'ability_hunter_pet_bat'),(2357,-1,-1,0,'Dreadsteed of Xoroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Completed the Dreadsteed of Xoroth warlock quest.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,142,0,1715,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'ability_mount_dreadsteed'),(2496,-1,-1,0,'The Fifth Element','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain an Aqual Quintessence.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,143,0,2134,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2113860000',0,0,'spell_frost_summonwaterelemental_2'),(2358,-1,-1,0,'Charger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Completed the paladin quest to obtain a Charger.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,144,0,1716,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_mount_charger'),(2359,-1,-1,0,'Swift Flight Form','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Completed the druid quest to obtain Swift Flight Form.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,145,0,2274,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',0,0,'ability_druid_flightform'),(3618,-1,-1,0,'Murkimus the Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of a Murkimus the Gladiator pet.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,146,0,370,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',1,0,'inv_spear_05'),(3636,-1,-1,0,'Jade Tiger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Logged in during the Jade Tiger giveaway.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,147,0,283,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',0,0,'inv_misc_gem_stone_01'),(3896,-1,-1,0,'Onyx Panther','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Proud owner of an Onyx Panther.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,148,0,1809,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16718800',0,0,'inv_misc_qirajicrystal_05'),(2081,-1,-1,0,'Grand Black War Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Grand Black War Mammoth.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,149,0,3444,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2080310000',1,0,'ability_mount_mammoth_black'),(3496,-1,-1,0,'A Brew-FAST Mount','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain an epic Brewfest mount.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,150,0,354,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',1,0,'inv_cask_01'),(3356,1,-1,0,'Winterspring Frostsaber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Winterspring Frosaber.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,151,0,1510,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',1,0,'ability_mount_pinktiger'),(3357,0,-1,0,'Venomhide Ravasaur','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Obtain a Venomhide Ravasaur.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,152,0,1584,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775200',2,0,'ability_hunter_pet_raptor'),(4496,-1,-1,0,'It\'s Over Nine Thousand!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn more than 9000 achievement points.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,153,0,561,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'ability_warrior_innerrage'),(684,-1,-1,0,'Onyxia\'s Lair (Level 60)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Defeat the classic, level 60 version of Onyxia.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,154,0,3820,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'achievement_boss_onyxia'),(2018,-1,-1,0,'Timear Foresees','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Complete the Northrend daily dungeon quests listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,155,0,2215,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'spell_arcane_focusedpower'),(2019,-1,-1,0,'Proof of Demise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Completed the Northrend daily dungeon quests listed below.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,156,0,3028,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2130640000',0,0,'ability_paladin_swiftretribution'),(4784,1,-1,0,'Emblematic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn any variety of Emblem.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,157,0,4234,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_frostemblem_01'),(4785,0,-1,0,'Emblematic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','Earn any variety of Emblem.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,158,0,4234,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',1,0,'inv_misc_frostemblem_01'),(4786,1,-1,0,'Operation: Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','You assisted High Tinker Mekkatorque and the Gnomeregan Exiles in the recapture of Gnomeregan\'s surface.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,159,0,3799,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_tournaments_symbol_gnome'),(4790,0,-1,0,'Zalazane\'s Fall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190','You assisted Vol\'jin in the final defeat of Zalazane, recapturing the Echo Isles for the Darkspear trolls.','0','0','0',0,'0','0','0','0','0','0','0','0','0','0','0','16712190',81,0,160,0,2513,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712200',0,0,'inv_misc_head_troll_01'); +UNLOCK TABLES; + +-- Table structure for table `achievementCategory` + +DROP TABLE IF EXISTS `achievementCategory`; +CREATE TABLE `achievementCategory` ( + `ID` int(11) DEFAULT NULL, + `ParentID` int(11) DEFAULT NULL, + `Name` varchar(255) DEFAULT NULL, + `field4` varchar(255) DEFAULT NULL, + `field5` varchar(255) DEFAULT NULL, + `field6` varchar(255) DEFAULT NULL, + `field7` varchar(255) DEFAULT NULL, + `field8` varchar(255) DEFAULT NULL, + `field9` varchar(255) DEFAULT NULL, + `field10` varchar(255) DEFAULT NULL, + `field11` varchar(255) DEFAULT NULL, + `field12` varchar(255) DEFAULT NULL, + `field13` varchar(255) DEFAULT NULL, + `field14` varchar(255) DEFAULT NULL, + `field15` varchar(255) DEFAULT NULL, + `field16` varchar(255) DEFAULT NULL, + `field17` varchar(255) DEFAULT NULL, + `field18` varchar(255) DEFAULT NULL, + `field19` varchar(255) DEFAULT NULL, + `ui_order` int(11) DEFAULT NULL +); + +-- Data for table `achievementCategory` + +LOCK TABLES `achievementCategory` WRITE; +INSERT INTO `achievementCategory` VALUES (92,-1,'General','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(123,122,'Arenas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(130,1,'Character','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(135,128,'Creatures','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(140,130,'Wealth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(152,21,'Rated Arenas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(160,155,'Lunar Festival','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(165,95,'Arena','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(170,169,'Cooking','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(178,132,'Secondary Skills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(14777,97,'Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(14808,168,'Classic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(14821,14807,'Classic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(14861,96,'Classic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(14864,201,'Classic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1),(96,-1,'Quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(124,122,'Battlegrounds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(136,128,'Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(141,1,'Combat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(145,130,'Consumables','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(153,21,'Battlegrounds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(171,169,'Fishing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(173,132,'Professions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(187,155,'Love is in the Air','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(14778,97,'Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(14801,95,'Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(14805,168,'The Burning Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(14822,14807,'The Burning Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(14862,96,'The Burning Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(14865,201,'The Burning Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2),(97,-1,'Exploration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(125,122,'Dungeons','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(128,1,'Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(137,128,'Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(147,130,'Reputation','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(154,21,'World','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(159,155,'Noblegarden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(172,169,'First Aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(14779,97,'Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(14802,95,'Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(14806,168,'Lich King Dungeon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(14823,14807,'Wrath of the Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(14863,96,'Wrath of the Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(14866,201,'Wrath of the Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3),(95,-1,'Player vs. Player','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4),(122,1,'Deaths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4),(126,122,'World','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4),(163,155,'Children\'s Week','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4),(191,130,'Gear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4),(14780,97,'Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4),(14803,95,'Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4),(14921,168,'Lich King Heroic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4),(14963,14807,'Secrets of Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4),(127,122,'Resurrection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',5),(133,1,'Quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',5),(161,155,'Midsummer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',5),(168,-1,'Dungeons & Raids','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',5),(14804,95,'Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',5),(14922,168,'Lich King 10-Player Raid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',5),(15021,14807,'Call of the Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',5),(162,155,'Brewfest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6),(169,-1,'Professions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6),(14807,1,'Dungeons & Raids','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6),(14881,95,'Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6),(14923,168,'Lich King 25-Player Raid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6),(15062,14807,'Fall of the Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6),(132,1,'Skills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',7),(158,155,'Hallow\'s End','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',7),(201,-1,'Reputation','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',7),(14901,95,'Wintergrasp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',7),(14961,168,'Secrets of Ulduar 10-Player Raid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',7),(134,1,'Travel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',8),(155,-1,'World Events','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',8),(14962,168,'Secrets of Ulduar 25-Player Raid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',8),(14981,155,'Pilgrim\'s Bounty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',8),(15003,95,'Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',8),(81,-1,'Feats of Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9),(131,1,'Social','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9),(156,155,'Winter Veil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9),(15001,168,'Call of the Crusade 10-Player Raid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9),(1,-1,'Statistics','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10),(21,1,'Player vs. Player','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10),(14941,155,'Argent Tournament','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10),(15002,168,'Call of the Crusade 25-Player Raid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10),(15041,168,'Fall of the Lich King 10-Player Raid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11),(15042,168,'Fall of the Lich King 25-Player Raid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12); +UNLOCK TABLES; + +-- Table structure for table `achievementCriteria` + +DROP TABLE IF EXISTS `achievementCriteria`; +CREATE TABLE `achievementCriteria` ( + `ID` int(11) DEFAULT NULL, + `Achievement` int(11) DEFAULT NULL, + `Type` int(11) DEFAULT NULL, + `asset_id` int(11) DEFAULT NULL, + `Quantity` int(11) DEFAULT NULL, + `start_ +event` int(11) DEFAULT NULL, + `start_asset` int(11) DEFAULT NULL, + `fail_event` int(11) DEFAULT NULL, + `fail_asset` int(11) DEFAULT NULL, + `Description` varchar(255) DEFAULT NULL, + `field11` varchar(255) DEFAULT NULL, + `field12` varchar(255) DEFAULT NULL, + `field13` varchar(255) DEFAULT NULL, + `field14` varchar(255) DEFAULT NULL, + `field15` varchar(255) DEFAULT NULL, + `field16` varchar(255) DEFAULT NULL, + `field17` varchar(255) DEFAULT NULL, + `field18` varchar(255) DEFAULT NULL, + `field19` varchar(255) DEFAULT NULL, + `field20` varchar(255) DEFAULT NULL, + `field21` varchar(255) DEFAULT NULL, + `field22` varchar(255) DEFAULT NULL, + `field23` varchar(255) DEFAULT NULL, + `field24` varchar(255) DEFAULT NULL, + `field25` varchar(255) DEFAULT NULL, + `field26` varchar(255) DEFAULT NULL, + `Flags` int(11) DEFAULT NULL, + `timer_start_event` int(11) DEFAULT NULL, + `timer_asset_id` int(11) DEFAULT NULL, + `timer_time` int(11) DEFAULT NULL, + `ui_order` int(11) DEFAULT NULL +); + +-- Data for table `achievementCriteria` + +LOCK TABLES `achievementCriteria` WRITE; +INSERT INTO `achievementCriteria` VALUES (34,6,5,0,10,0,0,0,0,'Reach level 10','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(35,7,5,0,20,0,0,0,0,'Reach level 20','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(36,8,5,0,30,0,0,0,0,'Reach level 30','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(37,9,5,0,40,0,0,0,0,'Reach level 40','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(38,10,5,0,50,0,0,0,0,'Reach level 50','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(39,11,5,0,60,0,0,0,0,'Reach level 60','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(40,12,5,0,70,0,0,0,0,'Reach level 70','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(41,13,5,0,80,0,0,0,0,'Reach level 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(72,31,10,0,5,2,0,2,0,'Complete a daily quest every day for five consecutive days','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(73,32,9,0,2000,0,0,0,0,'Complete 2000 quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(74,33,11,3537,130,0,0,0,0,'Complete 130 quests in Boren Tundra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(75,34,11,495,130,0,0,0,0,'Complete 130 quests in Howling Fjord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(76,35,11,65,115,0,0,0,0,'Complete 115 quests in Dragonblight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(77,36,11,66,100,0,0,0,0,'Complete 100 Zul\'Drak Quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(78,37,11,394,85,0,0,0,0,'Complete 85 quests in Grizzly Hills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(79,38,11,67,100,0,0,0,0,'Complete 100 Storm Peaks Quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(80,39,11,3711,75,0,0,0,0,'Complete 75 Sholazar Basin quests.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(81,40,11,210,140,0,0,0,0,'Complete 140 Icecrown Glacier quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(82,41,8,33,1,0,0,0,0,'Nothing Boring About Borean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(94,46,8,42,1,0,0,0,0,'Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(100,49,1,30,0,0,0,0,0,'Alterac Valley victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(102,51,1,529,0,0,0,0,0,'Arathi Basin victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(104,53,15,30,0,0,0,0,0,'Alterac Valley battles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(105,54,15,566,0,0,0,0,0,'Eye of the Storm battles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(106,55,15,529,0,0,0,0,0,'Arathi Basin battles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(107,56,16,489,0,0,0,0,0,'Deaths in Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(108,57,16,30,0,0,0,0,0,'Deaths in Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(110,59,16,529,0,0,0,0,0,'Arathi Basin Deaths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(111,60,17,0,0,0,0,0,0,'Total deaths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(123,73,30,122,3,3,529,3,529,'Assault 3 bases in a single Arathi Basin battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,0,0,0,1),(140,105,1,489,0,0,0,0,0,'Warsong Gulch Victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(147,112,26,1,0,0,0,0,0,'Deaths from drowning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(148,113,26,0,0,0,0,0,0,'Deaths from fatigue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(149,114,26,2,0,0,0,0,0,'Deaths from falling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(150,115,26,5,0,0,0,0,0,'Deaths from fire and lava','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(162,197,13,0,0,0,0,0,0,'Total damage done','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(164,281,7,171,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',0,0,0,0,1),(166,154,1,529,1,0,0,0,0,'Win Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(167,16,7,162,400,0,0,0,0,'Unarmed skill raised to 400','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(168,121,40,185,2,0,0,0,0,'Become a journeyman cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(169,321,18,5,0,0,0,0,0,'5 man instances','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(176,155,1,529,100,0,0,0,0,'Complete 100 victories in Arathi Basin.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(177,166,1,489,1,0,0,0,0,'Win Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(189,477,0,23953,1,0,0,0,0,'Prince Keleseth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(195,478,0,26731,1,0,0,0,0,'Grand Magus Telestra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(199,482,0,26630,1,0,0,0,0,'Trollgore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(203,487,0,27654,1,0,0,0,0,'Drakos the Interrogator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(209,488,0,26693,1,0,0,0,0,'Skadi the Ruthless','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(211,479,0,26529,1,0,0,0,0,'Meathook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(215,485,0,27975,1,0,0,0,0,'Maiden of Grief','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(218,486,0,28586,1,0,0,0,0,'General Bjarngrim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(221,167,1,489,100,0,0,0,0,'Complete 100 victories in Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(222,208,1,566,1,0,0,0,0,'Win Eye of the Storm.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(223,209,1,566,100,0,0,0,0,'Complete 100 victories in Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(224,218,1,30,1,0,0,0,0,'Win Alterac Valley.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(225,219,1,30,100,0,0,0,0,'Complete 100 victories in Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(226,230,8,1167,0,0,0,0,0,'Master of Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(230,503,9,0,50,0,0,0,0,'Complete 50 quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(231,504,9,0,100,0,0,0,0,'Complete 100 quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(232,505,9,0,250,0,0,0,0,'Complete 250 quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(233,506,9,0,500,0,0,0,0,'Complete 500 quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(234,507,9,0,1000,0,0,0,0,'Complete 1000 quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(236,508,9,0,1500,0,0,0,0,'Complete 1500 quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(285,547,27,12499,1,0,0,0,0,'Return to Angrathar - Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(306,397,37,0,1,0,0,0,0,'Win 1 ranked arena match','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(307,398,37,0,100,0,0,0,0,'Win 100 ranked arena matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(308,158,30,122,50,0,0,0,0,'Take 50 flags in Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(318,429,36,17182,1,0,0,0,0,'Sulfuras, Hand of Ragnaros','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(325,426,36,32838,1,0,0,0,0,'Warglaive of Azzinoth (Off Hand)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(328,416,27,8743,1,0,0,0,0,'Scarab Lord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(329,399,39,2,1550,0,0,0,0,'1550 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(330,402,39,3,1550,0,0,0,0,'1550 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(331,406,39,5,1550,0,0,0,0,'1550 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(332,400,39,2,1750,0,0,0,0,'1750 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(333,403,39,3,1750,0,0,0,0,'1750 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(334,407,39,5,1750,0,0,0,0,'1750 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(335,401,39,2,2000,0,0,0,0,'2000 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(336,405,39,3,2000,0,0,0,0,'2000 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(337,404,39,5,2000,0,0,0,0,'2000 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(347,561,27,11892,1,0,0,0,0,'Assassination of Harold Lane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(349,411,36,20371,1,0,0,0,0,'Blue Murloc Egg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(350,412,36,33079,1,0,0,0,0,'Murloc Costume','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(351,562,0,15956,1,0,0,0,0,'Anub\'Rekhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(357,564,0,16028,1,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(365,566,0,15954,1,0,0,0,0,'Noth the Plaguebringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(372,568,0,16061,1,0,0,0,0,'Instructor Razuvious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(379,572,0,15989,1,0,0,0,0,'Sapphiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(381,574,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(382,575,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(383,576,8,562,0,0,0,0,0,'The Arachnid Quarter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(389,577,8,563,0,0,0,0,0,'The Arachnid Quarter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(406,306,27,8193,1,0,0,0,0,'Win the Booty Bay fishing contest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(409,255,0,23682,1,0,0,0,0,'Headless Horseman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(414,157,30,123,50,0,0,0,0,'Defend 50 bases','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(416,199,30,42,1,0,0,0,0,'Capture the flag','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(417,200,30,44,50,0,0,0,0,'Return the flag 50 times','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(418,212,30,183,1,0,0,0,0,'Capture the flag','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(419,221,30,63,50,0,0,0,0,'Take 50 graveyards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(420,222,30,64,50,0,0,0,0,'50 towers defended','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(421,582,30,63,1,3,30,3,30,'Assault a graveyard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,1),(426,583,30,122,2,3,529,3,529,'Assault 2 bases','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,1),(431,584,31,3421,5,3,529,3,529,'Kill 5 people at the blacksmith','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,1),(436,393,30,64,0,0,0,0,0,'Alterac Valley towers defended','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(437,394,30,61,0,0,0,0,0,'Alterac Valley towers captured','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(438,585,30,183,0,0,0,0,0,'Eye of the Storm flag captures','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(439,395,30,42,0,0,0,0,0,'Warsong Gulch flags captured','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(440,586,30,44,0,0,0,0,0,'Warsong Gulch flags returned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(441,587,31,3870,5,3,566,3,566,'Kill 5 people at the Blood Elf Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,1),(447,595,39,3,0,0,0,0,0,'Highest 3 man personal rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(448,374,38,2,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',0,0,0,0,1),(449,590,38,3,0,0,0,0,0,'Highest 3 man team rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(450,589,38,5,0,0,0,0,0,'Highest 5 man team rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(451,370,39,2,0,0,0,0,0,'Highest 2 man personal rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(452,596,39,5,0,0,0,0,0,'Highest 5 man personal rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(455,594,20,448,0,0,0,0,0,'Deaths from Hogger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(456,58,20,11946,0,0,0,0,0,'Killed by Drek\'Thar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(472,605,36,21100,1,0,0,0,0,'Receive a Coin of Ancestry.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(473,606,36,21100,5,0,0,0,0,'Receive 5 Coins of Ancestry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(474,607,36,21100,10,0,0,0,0,'Receive 10 Coins of Ancestry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(475,608,36,21100,25,0,0,0,0,'Receive 25 Coins of Ancestry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(476,609,36,21100,50,0,0,0,0,'Receive 50 Coins of Ancestry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(477,263,0,25740,1,0,0,0,0,'Ahune','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(478,273,27,8762,1,0,0,0,0,'Metzen saved','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(480,610,0,4949,1,0,0,0,0,'Thrall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(481,611,0,3057,1,0,0,0,0,'Cairne Bloodhoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(482,612,0,10181,1,0,0,0,0,'Lady Sylvanas Windrunner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(483,613,0,16802,1,0,0,0,0,'Lor\'themar Theron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(484,614,8,610,0,0,0,0,0,'Death to the Warchief!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(489,616,0,2784,1,0,0,0,0,'King Magni Bronzebeard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(490,617,0,7999,1,0,0,0,0,'High Priestess Tyrande Whisperwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(491,618,0,17468,1,0,0,0,0,'Prophet Velen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(492,619,8,615,0,0,0,0,0,'Storming Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(496,626,36,21541,1,0,0,0,0,'Festive Black Pant Suit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(502,627,43,117,1,0,0,0,0,'Coldridge Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(520,622,0,28859,1,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(521,623,0,28859,1,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(523,625,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(524,628,0,639,1,0,0,0,0,'Edwin VanCleef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(525,629,0,11520,1,0,0,0,0,'Taragaman the Hungerer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(526,630,0,3654,1,0,0,0,0,'Mutanus the Devourer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(527,631,0,4275,1,0,0,0,0,'Archmage Arugal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(528,632,0,4829,1,0,0,0,0,'Aku\'mai','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(529,633,0,1716,1,0,0,0,0,'Bazil Thredd','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(530,634,0,7800,1,0,0,0,0,'Mekgineer Thermaplugg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(531,635,0,4421,1,0,0,0,0,'Charlga Razorflank','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(532,636,0,7358,1,0,0,0,0,'Amnennar the Coldbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(537,637,0,4543,1,0,0,0,0,'Bloodmage Thalnos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(538,638,0,2748,1,0,0,0,0,'Archaedas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(539,639,0,7267,1,0,0,0,0,'Chief Ukorz Sandscalp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(540,640,0,12201,1,0,0,0,0,'Princess Theradras','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(541,641,0,5709,1,0,0,0,0,'Shade of Eranikus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(542,642,0,9019,1,0,0,0,0,'Emperor Dagran Thaurissan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(544,643,0,9568,1,0,0,0,0,'Overlord Wyrmthalak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(545,644,0,11492,1,0,0,0,0,'Alzzin the Wildshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(548,645,0,10508,1,0,0,0,0,'Ras Frostwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(550,646,0,10813,1,0,0,0,0,'Balnazzar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(552,647,0,17308,1,0,0,0,0,'Omor the Unscarred','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(555,648,0,17377,1,0,0,0,0,'Keli\'dan the Breaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(556,649,0,17942,1,0,0,0,0,'Quagmirran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(557,650,0,17882,1,0,0,0,0,'The Black Stalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(558,651,0,18344,1,0,0,0,0,'Nexus-Prince Shaffar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(559,652,0,18096,1,0,0,0,0,'Epoch Hunter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(560,653,0,18473,1,0,0,0,0,'Talon King Ikiss','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(561,654,0,18708,1,0,0,0,0,'Murmur','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(562,655,0,17881,1,0,0,0,0,'Aeonus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(563,656,0,17798,1,0,0,0,0,'Warlord Kalithresh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(564,657,0,16808,1,0,0,0,0,'Warchief Kargath Bladefist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(565,658,0,19220,1,0,0,0,0,'Pathaleon the Calculator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(566,659,0,17977,1,0,0,0,0,'Warp Splinter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(567,660,0,20912,1,0,0,0,0,'Harbinger Skyriss','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(568,661,0,24664,1,0,0,0,0,'Kael\'thas Sunstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(569,662,36,13584,1,0,0,0,0,'Diablo Stone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(570,663,36,13583,1,0,0,0,0,'Panda Collar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(571,664,36,13582,1,0,0,0,0,'Zergling Leash','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(572,665,36,25535,1,0,0,0,0,'Netherwhelp\'s Collar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(573,666,0,18373,1,0,0,0,0,'Exarch Maladaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(592,683,36,39286,1,0,0,0,0,'Frosty\'s Collar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(594,685,0,11583,1,0,0,0,0,'Nefarian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(595,686,0,11502,1,0,0,0,0,'Ragnaros','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(596,687,0,15727,1,0,0,0,0,'C\'Thun','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(597,688,0,14834,1,0,0,0,0,'Hakkar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(598,689,0,15339,1,0,0,0,0,'Ossirian the Unscarred','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(599,690,0,15690,1,0,0,0,0,'Prince Malchezaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(600,691,0,23863,1,0,0,0,0,'Zul\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(601,692,0,19044,1,0,0,0,0,'Gruul the Dragonkiller','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(602,693,0,17257,1,0,0,0,0,'Magtheridon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(603,694,0,21212,1,0,0,0,0,'Lady Vashj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(604,695,0,17968,1,0,0,0,0,'Archimonde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(605,696,0,19622,1,0,0,0,0,'Kael\'thas Sunstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(606,697,0,22917,1,0,0,0,0,'Illidan Stormrage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(607,698,0,25315,1,0,0,0,0,'Kil\'jaeden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(608,699,32,562,1,0,0,0,0,'Blade\'s Edge Arena','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(611,165,1,529,1,3,529,3,529,'Arathi Basin Shutout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(612,122,40,185,3,0,0,0,0,'Become an expert cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(613,123,40,185,4,0,0,0,0,'Become an artisan cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(614,124,40,185,5,0,0,0,0,'Become a master cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(615,125,40,185,6,0,0,0,0,'Become a grand master cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(616,116,40,171,2,0,0,0,0,'Alchemy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(641,705,7,44,400,0,0,0,0,'Axes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(645,714,8,708,0,0,0,0,0,'Hero of the Frostwolf Clan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(707,433,44,14,0,0,0,0,0,'Grand Marshal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(708,434,44,13,0,0,0,0,0,'Field Marshal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(709,473,44,12,0,0,0,0,0,'Marshal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(710,435,44,11,0,0,0,0,0,'Commander','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(711,436,44,10,0,0,0,0,0,'Lieutenant Commander','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(712,437,44,9,0,0,0,0,0,'Knight-Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(713,438,44,8,0,0,0,0,0,'Knight-Captain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(714,472,44,7,0,0,0,0,0,'Knight-Lieutenant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(721,439,44,6,0,0,0,0,0,'Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(722,440,44,5,0,0,0,0,0,'Sergeant Major','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(723,441,44,4,0,0,0,0,0,'Master Sergeant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(724,471,44,3,0,0,0,0,0,'Sergeant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(725,470,44,2,0,0,0,0,0,'Corporal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(726,442,44,1,0,0,0,0,0,'Private','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(727,443,44,14,0,0,0,0,0,'High Warlord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(728,445,44,13,0,0,0,0,0,'Warlord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(729,446,44,12,0,0,0,0,0,'General','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(730,444,44,11,0,0,0,0,0,'Lieutenant General','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(731,447,44,10,0,0,0,0,0,'Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(732,448,44,9,0,0,0,0,0,'Centurion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(733,469,44,8,0,0,0,0,0,'Legionnaire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(734,449,44,7,0,0,0,0,0,'Blood Guard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(735,451,44,6,0,0,0,0,0,'Stone Guard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(736,452,44,5,0,0,0,0,0,'First Sergeant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(737,450,44,4,0,0,0,0,0,'Senior Sergeant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(738,453,44,3,0,0,0,0,0,'Sergeant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(739,468,44,2,0,0,0,0,0,'Grunt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(740,454,44,1,0,0,0,0,0,'Scout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(741,725,36,34334,1,0,0,0,0,'Thori\'dal, the Stars\' Fury','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(742,432,27,10888,1,0,0,0,0,'Trial of the Naaru','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(744,431,27,10445,1,0,0,0,0,'The Vials of Eternity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(746,428,27,7787,1,0,0,0,0,'Thunderfury, Blessed Blade of the Windseeker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(747,425,27,9269,1,0,0,0,0,'Atiesh, Greatstaff of the Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(752,546,45,0,7,0,0,0,0,'Purchase 7 bank slots','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(758,201,1,489,1,0,0,3,489,'Win Warsong Gulch in under 7 minutes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,1,8563,420,1),(759,700,36,18834,1,0,0,0,0,'Insignia of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(779,701,36,18863,1,0,0,0,0,'Insignia of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(799,726,36,27445,1,0,0,0,0,'Magical Crawdad Box','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(822,728,43,242,1,0,0,0,0,'Valley of Trials','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(835,126,40,356,2,0,0,0,0,'Become a journeyman fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(836,127,40,356,3,0,0,0,0,'Become a expert fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(837,128,40,356,4,0,0,0,0,'Become an artisan fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(838,129,40,356,5,0,0,0,0,'Become a master fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(839,130,40,356,6,0,0,0,0,'Become a grand master fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(840,131,40,129,2,0,0,0,0,'Become a journeyman in first aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(841,132,40,129,3,0,0,0,0,'Become a expert in first aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(842,133,40,129,4,0,0,0,0,'Become an artisan in first aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(843,134,40,129,5,0,0,0,0,'Become a master in first aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(844,135,40,129,6,0,0,0,0,'Become a grand master in first aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(845,730,8,130,0,0,0,0,0,'Grand Master Fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(848,731,40,171,3,0,0,0,0,'Alchemy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(859,732,40,171,4,0,0,0,0,'Alchemy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(870,733,40,171,5,0,0,0,0,'Alchemy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(881,734,40,171,6,0,0,0,0,'Alchemy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(892,735,40,171,6,0,0,0,0,'Alchemy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(903,736,43,182,1,0,0,0,0,'Red Cloud Mesa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(917,750,43,461,1,0,0,0,0,'Boulder Lode Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(943,752,16,533,0,0,0,0,0,'Deaths in Naxxramas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(944,760,43,441,1,0,0,0,0,'Chillwind Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(962,761,43,561,1,0,0,0,0,'Circle of West Binding','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(977,522,47,0,1,0,0,0,0,'Get a reputation to exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(978,523,47,0,5,0,0,0,0,'5 reputations to exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(979,524,47,0,10,0,0,0,0,'10 reputations to exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(980,521,47,0,15,0,0,0,0,'15 reputations to exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(981,520,47,0,20,0,0,0,0,'20 reputations to exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(982,377,47,0,0,0,0,0,0,'Exalted Reputations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(984,519,47,0,25,0,0,0,0,'25 reputations to exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(985,518,47,0,30,0,0,0,0,'30 reputations to exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(986,710,46,510,42000,0,0,0,0,'Exalted with The Defilers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(987,711,46,509,42000,0,0,0,0,'Exalted with The League of Arathor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(988,712,46,889,42000,0,0,0,0,'Exalted with Warsong Outriders','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(989,713,46,890,42000,0,0,0,0,'Exalted with Silverwing Sentinels','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(990,708,46,729,42000,0,0,0,0,'Exalted with the Frostwolf Clan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(991,709,46,730,42000,0,0,0,0,'Exalted with the Stormpike Guard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(992,762,46,76,42000,0,0,0,0,'Exalted Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1003,763,46,947,42000,0,0,0,0,'Thrallmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1009,764,46,946,42000,0,0,0,0,'Honor Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1014,765,43,581,1,0,0,0,0,'Lethlor Ravine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1028,766,43,821,1,0,0,0,0,'Dreadmaul Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1037,768,43,236,1,0,0,0,0,'Deathknell','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1053,769,43,301,1,0,0,0,0,'Malden\'s Orchard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1068,770,43,961,1,0,0,0,0,'Darrowmere Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1081,771,43,894,1,0,0,0,0,'Thondroril River','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1103,772,43,401,1,0,0,0,0,'Darrow Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1115,773,43,601,1,0,0,0,0,'Aerie Peak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1129,774,43,721,1,0,0,0,0,'Firewatch Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1136,775,43,781,1,0,0,0,0,'Dreadmaul Rock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1146,776,43,125,1,0,0,0,0,'Northshire Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1158,777,43,941,1,0,0,0,0,'Deadman\'s Crossing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1161,778,43,421,1,0,0,0,0,'The Hushed Bank','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1176,779,43,318,1,0,0,0,0,'The Loch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1185,780,43,364,1,0,0,0,0,'Lakeshire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1196,781,43,503,1,0,0,0,0,'Booty Bay','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1223,782,43,541,1,0,0,0,0,'Itharius\'s Cave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1234,156,1,529,10,0,0,0,0,'Win 10 Arathi Basin matches while controlling all 5 flags','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(1235,162,1,529,1,3,529,3,529,'Victory in Arathi Basin with a score of 1600 to 1590','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1236,168,1,489,1,3,489,3,489,'Victory in Warsong Gulch with a shutout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1237,159,1,529,1,0,0,3,529,'Win in 6 minutes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,1,9158,360,1),(1238,783,1,566,1,3,566,3,566,'Win 1600 to 0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1239,784,1,566,10,0,0,0,0,'Win Eye of the Storm 10 times while holding 4 bases','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(1240,214,1,566,1,0,0,3,566,'Win in 6 minutes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,1,13180,360,1),(1241,226,1,30,1,0,0,3,30,'Win in 6 minutes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,1,9166,360,1),(1242,220,1,30,1,3,30,3,30,'Balinda and Vandaar survive','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,1),(1243,796,28,48171,0,0,0,0,0,'Resurrection (Rank 7)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1244,801,29,47882,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1245,800,28,48950,0,0,0,0,0,'Redemption','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1246,799,28,49277,0,0,0,0,0,'Ancestral Spirit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1247,798,28,48477,0,0,0,0,0,'Rebirth (Rank 7)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1248,802,43,288,1,0,0,0,0,'Sentinel Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1262,841,43,381,1,0,0,0,0,'Menethil Harbor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1285,42,8,776,1,0,0,0,0,'Elwynn Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1299,842,43,91,1,0,0,0,0,'Shadowglen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1310,843,43,1179,1,0,0,0,0,'Area 52','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1314,844,43,345,1,0,0,0,0,'Auberdine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1323,845,43,741,1,0,0,0,0,'The Zoram Strand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1341,846,43,687,1,0,0,0,0,'The Great Lift','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1350,847,43,931,1,0,0,0,0,'Camp Aparaje','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1361,850,43,661,1,0,0,0,0,'Theramore Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1365,848,43,775,1,0,0,0,0,'Tethris Aran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1369,849,43,981,1,0,0,0,0,'Dream Bough','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1401,853,43,861,1,0,0,0,0,'Felpaw Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1405,851,43,658,1,0,0,0,0,'Gadgetzan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1409,852,43,841,1,0,0,0,0,'Bay of Storms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1453,854,43,621,1,0,0,0,0,'Fire Plume Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1460,856,43,1021,1,0,0,0,0,'The Crystal Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1464,855,43,701,1,0,0,0,0,'Lake Elune\'ara','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1473,857,43,1001,1,0,0,0,0,'Frostfire Hot Springs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1486,43,8,728,1,0,0,0,0,'Durotar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1504,858,43,1148,1,0,0,0,0,'Tranquillien','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1508,859,43,1127,1,0,0,0,0,'Sunstrider Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1552,860,43,1364,1,0,0,0,0,'Ammen Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1573,861,43,1328,1,0,0,0,0,'Amberweb Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1603,867,43,1166,1,0,0,0,0,'Bleeding Hollow Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1611,863,43,1126,1,0,0,0,0,'Cenarion Refuge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1614,864,43,1101,1,0,0,0,0,'Coilskar Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1618,865,43,1288,1,0,0,0,0,'Bash\'ir Landing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1622,866,43,1189,1,0,0,0,0,'Forge Camp: Fear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1631,862,43,1219,1,0,0,0,0,'The Stair of Destiny','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1782,44,8,862,1,0,0,0,0,'Hellfire Peninsula','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1789,868,43,1454,1,0,0,0,0,'Sun\'s Reach Harbor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1800,871,27,4621,1,0,0,0,0,'Complete the Avast Ye, Admiral quest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1801,872,30,44,5,3,489,3,489,'Return 5 flags in a single battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9,0,0,0,1),(1802,204,30,42,3,3,489,1,0,'3 captures and no death','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',14,0,0,0,1),(1811,873,1,30,1,3,30,3,30,'Galvagar and Drek\'Thar survive','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,1),(1820,229,35,0,30,3,529,3,529,'30 hks in arathi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1829,875,37,0,200,0,0,0,0,'Win 200 ranked arena matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(1830,876,37,0,300,0,0,0,0,'Win 300 ranked arena matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(1831,137,29,45546,500,0,0,0,0,'Create 500 Heavy Frostweave Bandages','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(1832,877,29,43779,1,0,0,0,0,'Make Delicious Chocolate Cake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1835,878,42,6360,1,0,0,0,0,'Steelscale Crushfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1847,879,36,13317,1,0,0,0,0,'Ivory Raptor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1863,882,36,30480,1,0,0,0,0,'Fiery Warhorse\'s Reins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1867,886,36,30609,1,0,0,0,0,'Swift Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1868,887,36,34092,1,0,0,0,0,'Merciless Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1869,888,36,37676,1,0,0,0,0,'Vengeful Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1870,889,40,762,2,0,0,0,0,'Journeyman Riding','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1871,890,40,762,3,0,0,0,0,'Expert Riding','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1872,891,40,762,1,0,0,0,0,'Apprentice Riding','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1873,892,40,762,4,0,0,0,0,'Artisan Riding','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1874,893,36,33999,1,0,0,0,0,'Cenarion War Hippogryph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1875,894,46,1031,42000,0,0,0,0,'Exalted with Sha\'tari Skyguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1877,896,46,1038,42000,0,0,0,0,'Exalted with Ogri\'la','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1878,897,46,1077,42000,0,0,0,0,'Exalted with Shattered Sun Offensive','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1879,898,46,1015,42000,0,0,0,0,'Exalted with Netherwing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1880,899,46,978,42000,0,0,0,0,'Exalted with the Kurenai','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1881,900,46,970,42000,0,0,0,0,'Exalted with the Sporeggar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1882,901,46,941,42000,0,0,0,0,'Exalted with The Mag\'har','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1883,902,46,933,42000,0,0,0,0,'Exalted with the Consortium','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1884,903,46,934,42000,0,0,0,0,'Exalted with The Scryers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(1886,905,27,11665,1,0,0,0,0,'Crocolisks in the City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1891,906,27,11377,1,0,0,0,0,'Revenge is Tasty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1896,907,8,709,0,0,0,0,0,'Hero of the Stormpike Guard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1902,908,27,11335,1,0,0,0,0,'Call to Arms: Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1906,909,27,11339,1,0,0,0,0,'Call to Arms: Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1910,910,27,8676,1,0,0,0,0,'Elder Wildmane in Zul\'Farrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1916,911,27,8670,1,0,0,0,0,'Elder Runetotem in Razor Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1922,912,27,8653,1,0,0,0,0,'Elder Goldwell in Kharanos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1934,913,8,912,0,0,0,0,0,'Elders of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1991,914,27,8677,1,0,0,0,0,'Elder Darkhorn in Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(1999,915,27,8718,1,0,0,0,0,'Elder Bladeswift in Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2002,928,45,0,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',0,0,0,0,1),(2003,937,27,8868,1,0,0,0,0,'Complete Elune\'s Blessing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2004,938,27,12614,1,0,0,0,0,'Post-partum Aggression','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2005,939,27,9852,1,0,0,0,0,'The Ultimate Bloodsport','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2006,940,27,338,1,0,0,0,0,'The Green Hills of Stranglethorn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2008,941,8,940,0,0,0,0,0,'The Green Hills of Stranglethorn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2011,942,46,576,42000,0,0,0,0,'Exalted with Timbermaw Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2014,943,46,576,42000,0,0,0,0,'Exalted with Timbermaw Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2017,944,46,576,42000,0,0,0,0,'Timbermaw Exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2020,946,46,529,42000,0,0,0,0,'Argent Dawn exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2022,947,46,1106,42000,0,0,0,0,'Argent Crusade exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2023,945,8,946,0,0,0,0,0,'The Argent Dawn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2030,948,46,72,42000,0,0,0,0,'Exalted Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2035,949,46,1073,42000,0,0,0,0,'The Kalu\'ak exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2036,950,46,1104,42000,0,0,0,0,'Frenzyheart Tribe exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2037,951,46,1105,42000,0,0,0,0,'The Oracles exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2039,952,8,951,0,0,0,0,0,'The Oracles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2041,480,0,28684,1,0,0,0,0,'Krik\'thir the Gatewatcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2045,953,46,609,42000,0,0,0,0,'Exalted with Cenarion Circle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2048,955,46,749,42000,0,0,0,0,'Exalted with the Hydraxian Waterlords','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2049,956,46,910,42000,0,0,0,0,'Exalted with the Brood of Nozdormu','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2050,957,46,270,42000,0,0,0,0,'Exalted with the Zandalar Tribe','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2051,958,46,1012,42000,0,0,0,0,'Exalted with the Ashtongue Deathsworn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2052,959,46,990,42000,0,0,0,0,'Exalted with The Scale of the Sands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2053,960,46,967,42000,0,0,0,0,'Exalted with The Violet Eye','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2054,961,27,12702,1,0,0,0,0,'Chicken Party!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2062,962,27,12704,1,0,0,0,0,'Appeasing the Great Rain Stone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2070,288,29,42966,1,0,0,0,0,'Upset Tummy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2071,963,27,12345,1,0,0,0,0,'Ashenvale, Astranaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2072,964,24,0,6500,0,0,0,0,'65 yards without dying','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2099,965,27,12396,1,0,0,0,0,'Barrens, Ratchet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2132,966,27,12332,1,0,0,0,0,'Dun Morogh, Kharanos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2145,967,27,12402,1,0,0,0,0,'Eastern Plaguelands, Light\'s Hope Chapel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2195,969,27,12358,1,0,0,0,0,'Blade\'s Edge Mountains, Sylvanaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2217,968,27,12394,1,0,0,0,0,'Blade\'s Edge Mountains, Mok\'Nathal Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2225,971,8,965,0,0,0,0,0,'Tricks and Treats of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2228,970,8,963,0,0,0,0,0,'Tricks and Treats of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2231,972,36,37586,1,0,0,0,0,'Handful of Candy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2232,973,14,0,5,0,0,0,0,'Complete 5 daily quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(2233,974,14,0,50,0,0,0,0,'Complete 50 daily quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(2234,975,14,0,200,0,0,0,0,'Complete 200 daily quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(2235,976,14,0,500,0,0,0,0,'Complete 500 daily quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(2236,977,14,0,1000,0,0,0,0,'Complete 1000 daily quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(2239,978,9,0,3000,0,0,0,0,'Complete 3000 quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(2260,979,36,34000,1,0,0,0,0,'Flimsy Female Blood Elf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2281,289,27,12135,1,0,0,0,0,'\"Let the Fires Come!\"','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2285,981,41,37604,1,0,0,0,0,'Use Tooth Pick','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2335,621,57,20132,1,0,0,0,0,'Arathor Battle Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2341,545,48,0,1,0,0,0,0,'Visit a barbershop and pay for using their services.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2342,556,49,0,1,0,0,0,0,'Head','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2358,558,51,100,1,0,0,0,0,'Roll greed and get exactly 100 on an item over level 185.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2359,245,52,6,1,0,0,0,0,'Death Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2369,246,53,10,1,0,0,0,0,'Blood Elf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2374,1005,53,11,1,0,0,0,0,'Draenei','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2379,247,54,56,1,0,0,0,0,'Hug a dead enemy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2400,227,13,0,300000,3,30,3,30,'Do more than 300,000 Damage in Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,1),(2408,408,37,0,10,4,0,4,0,'Win 10 arenas without losing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(2412,559,50,100,1,0,0,0,0,'roll need and get exactly 100 on an item above 185','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2415,1007,46,1091,42000,0,0,0,0,'Exalted with Wyrmrest Accord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2416,1008,46,1090,42000,0,0,0,0,'Exalted with Kirin Tor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2417,1009,46,1098,42000,0,0,0,0,'Exalted with Knights of the Ebon Blade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(2418,1010,8,947,0,0,0,0,0,'The Argent Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2422,1011,46,1052,42000,0,0,0,0,'Exalted with Horde Expedition','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2425,1012,46,1037,42000,0,0,0,0,'Exalted with Alliance Vanguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(2428,1014,47,0,35,0,0,0,0,'35 reputations to exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(2429,1015,47,0,40,0,0,0,0,'40 reputations to exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(2430,414,36,39656,1,0,0,0,0,'Tyrael\'s Hilt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3063,1022,27,11804,1,0,0,0,0,'Arathi Highlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3076,1023,27,11805,1,0,0,0,0,'Ashenvale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3089,1024,27,11807,1,0,0,0,0,'Blade\'s Edge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3101,1025,27,11840,1,0,0,0,0,'Arathi Highlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3112,1026,27,11841,1,0,0,0,0,'Ashenvale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3124,1027,27,11843,1,0,0,0,0,'Blade\'s Edge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3131,1028,27,11764,1,0,0,0,0,'Arathi Highlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3142,1029,27,11765,1,0,0,0,0,'Ashenvale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3154,1030,27,11767,1,0,0,0,0,'Blade\'s Edge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3161,1031,27,11732,1,0,0,0,0,'Arathi Highlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3174,1032,27,11734,1,0,0,0,0,'Ashenvale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3186,1033,27,11736,1,0,0,0,0,'Blade\'s Edge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3193,1034,8,1022,0,0,0,0,0,'Flame Warden of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3196,1035,8,1028,0,0,0,0,0,'Extinguishing Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3199,1036,8,1025,0,0,0,0,0,'Flame Keeper of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3202,1037,8,1031,0,0,0,0,0,'Extinguishing Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3205,1038,8,1034,0,0,0,0,0,'The Fires of Azeroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3207,1039,8,1036,0,0,0,0,0,'The Fires of Azeroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3209,283,28,24733,1,0,0,0,0,'Transformed by Hallowed Wand - Bat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3216,1040,27,1658,1,0,0,0,0,'Crashing the Wickerman Festival','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3218,1041,27,8409,1,0,0,0,0,'Rotten Eggs and Ruined Kegs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3220,249,42,19028,1,0,0,0,0,'Elegant Dress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3221,248,42,6833,1,0,0,0,0,'White Tuxedo Shirt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3225,389,36,18706,1,0,0,0,0,'Arena Master obtained','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3227,396,27,7838,1,0,0,0,0,'Arena Grandmaster quest complete','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3231,1042,54,56,0,0,0,0,0,'Number of hugs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3232,1047,54,390,0,0,0,0,0,'Total facepalms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3233,1045,54,21,0,0,0,0,0,'Total cheers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3236,1065,54,101,0,0,0,0,0,'Total waves','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3237,1067,54,143,0,0,0,0,0,'Total times playing world\'s smallest violin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3238,1066,54,60,0,0,0,0,0,'laugh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3239,1068,0,17377,1,0,0,0,0,'Keli\'dan the Breaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3240,1071,0,17942,1,0,0,0,0,'Quagmirran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3241,1069,0,18344,1,0,0,0,0,'Nexus-Prince Shaffar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3242,1070,0,18096,1,0,0,0,0,'Epoch Hunter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3243,1072,0,17882,1,0,0,0,0,'The Black Stalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3244,1073,0,18373,1,0,0,0,0,'Exarch Maladaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3245,1074,0,18473,1,0,0,0,0,'Talon King Ikiss','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3246,1075,0,18708,1,0,0,0,0,'Murmur','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3247,1076,0,17881,1,0,0,0,0,'Aeonus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3248,1077,0,17798,1,0,0,0,0,'Warlord Kalithresh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3249,1078,0,16808,1,0,0,0,0,'Warchief Kargath Bladefist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3250,1079,0,19220,1,0,0,0,0,'Pathaleon the Calculator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3251,1080,0,17977,1,0,0,0,0,'Warp Splinter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3252,1081,0,20912,1,0,0,0,0,'Harbinger Skyriss','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3253,1082,0,24664,1,0,0,0,0,'Kael\'thas Sunstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3254,1083,0,15690,1,0,0,0,0,'Prince Malchezaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3255,1084,0,23863,1,0,0,0,0,'Zul\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3256,1085,0,19044,1,0,0,0,0,'Gruul the Dragonkiller','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3257,1086,0,17257,1,0,0,0,0,'Magtheridon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3258,1087,0,21212,1,0,0,0,0,'Lady Vashj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3259,1088,0,19622,1,0,0,0,0,'Kael\'thas Sunstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3260,1089,0,22917,1,0,0,0,0,'Illidan Stormrage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3261,1090,0,25315,1,0,0,0,0,'Kil\'jaeden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3262,1091,0,639,1,0,0,0,0,'Edwin VanCleef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3263,1092,0,4275,1,0,0,0,0,'Archmage Arugal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3264,1093,0,3976,1,0,0,0,0,'Scarlet Commander Mograine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3265,1094,0,7267,1,0,0,0,0,'Chief Ukorz Sandscalp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3266,1095,0,9019,1,0,0,0,0,'Emperor Dagran Thaurissan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3268,1096,0,10363,1,0,0,0,0,'General Drakkisath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3270,1097,0,10440,1,0,0,0,0,'Baron Rivendare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3271,1098,0,10184,1,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3272,1099,0,11502,1,0,0,0,0,'Ragnaros','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3273,1100,0,11583,1,0,0,0,0,'Nefarian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3274,1101,0,15727,1,0,0,0,0,'C\'Thun','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3275,1102,0,14834,1,0,0,0,0,'Hakkar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3276,1106,16,566,0,0,0,0,0,'Deaths in Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3301,344,41,19307,1,0,0,0,0,'Alterac Valley Runecloth Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3351,1145,27,9365,1,0,0,0,0,'Alliance, A Thief\'s Reward','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3353,216,30,183,3,3,566,1,0,'3 caps and no death','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,0,0,0,1),(3354,333,67,0,0,0,0,0,0,'Total gold looted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(3355,326,62,0,0,0,0,0,0,'Total gold from quest rewards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(3356,1146,63,0,0,0,0,0,0,'Gold spent on travel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(3357,1147,65,0,0,0,0,0,0,'Gold spent at barber shops','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(3358,1148,66,0,0,0,0,0,0,'Gold spent on postage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(3359,1149,61,0,0,0,0,0,0,'Talent tree respecs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3360,1150,60,0,0,0,0,0,0,'Gold spent on talent tree respecs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(3361,921,59,0,0,0,0,0,0,'Gold from vendors','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(3362,224,31,4407,50,0,0,0,0,'50 honorable kills in the Hall of the Frostwolf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3363,1151,31,4408,50,0,0,0,0,'50 honorable kills in the Hall of the Stormpike','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3368,231,56,0,20,3,30,1,0,'Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,1),(3372,1153,30,123,3,3,529,3,529,'Defend 3 Bases','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,0,0,0,1),(3381,1159,39,2,2200,0,0,0,0,'2200 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3382,1160,39,3,2200,0,0,0,0,'2200 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3383,1161,39,5,2200,0,0,0,0,'2200 rating','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3384,1162,37,0,10,4,0,4,0,'Win 10 arenas without losing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3386,225,1,30,1,3,30,3,30,'Kobold Cave Owned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,1),(3388,1164,1,30,1,3,30,3,30,'Kobold Cave Owned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,1),(3390,1165,57,38082,1,0,0,0,0,'\"Gigantique\" Bag','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3391,1166,42,18228,1,0,0,0,0,'Autographed Picture of Foror & Tigule','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3392,1167,8,219,0,0,0,0,0,'Alterac Valley Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3404,1168,8,219,0,0,0,0,0,'Alterac Valley Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3416,1169,8,155,0,0,0,0,0,'Arathi Basin Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3431,1170,8,155,0,0,0,0,0,'Arathi Basin Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3446,1171,8,209,0,0,0,0,0,'Eye of the Storm Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3461,1172,8,167,0,0,0,0,0,'Warsong Gulch Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3476,1173,8,167,0,0,0,0,0,'Warsong Gulch Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3488,1174,8,699,0,0,0,0,0,'World Wide Winner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3500,1175,8,1168,0,0,0,0,0,'Master of Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3506,1176,67,0,1000000,0,0,0,0,'Loot 100 gold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',33,0,0,0,1),(3507,1177,67,0,10000000,0,0,0,0,'Loot 1,000 gold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',33,0,0,0,1),(3510,1180,67,0,100000000,0,0,0,0,'Loot 10,000 gold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',33,0,0,0,1),(3511,1181,67,0,250000000,0,0,0,0,'Loot 25,000 gold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',33,0,0,0,1),(3512,1178,67,0,50000000,0,0,0,0,'Loot 5,000 gold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',33,0,0,0,1),(3513,1182,62,0,100000000,0,0,0,0,'10,000 gold from quest rewards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',33,0,0,0,1),(3515,1183,28,42256,1,0,0,0,0,'Wild Winter Pilsner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3527,1184,41,33030,1,0,0,0,0,'Barleybrew Clear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3542,1185,41,34063,1,0,0,0,0,'Dried Sausage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3557,1186,27,12020,1,0,0,0,0,'Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3559,1187,36,30633,1,0,0,0,0,'Auchenai Key','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3572,1188,41,22200,10,0,0,0,0,'10x Silver Shafted Arrow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3574,484,0,29304,1,0,0,0,0,'Slad\'ran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3578,481,0,29308,1,0,0,0,0,'Prince Taldaram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3582,483,0,31134,1,0,0,0,0,'Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3583,1189,11,3483,80,0,0,0,0,'80 Hellfire quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3584,1190,11,3521,54,0,0,0,0,'54 Zangarmarsh quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3585,1191,11,3519,63,0,0,0,0,'63 Terokkar Forest quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3586,1192,11,3518,75,0,0,0,0,'75 Nagrand quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3587,1193,11,3522,86,0,0,0,0,'86 Blade\'s Edge Mountains quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3588,1194,11,3523,120,0,0,0,0,'120 Netherstorm quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3589,1195,11,3520,90,0,0,0,0,'90 Shadowmoon Valley quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3594,1203,41,34021,1,0,0,0,0,'Brewdoo Magic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3615,1206,54,225,1,0,0,0,0,'Squirrel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3622,144,28,54587,1,0,0,0,0,'Fished up Lurker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3623,1225,72,182954,1,0,0,0,0,'Brackish Mixed School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3629,319,76,0,0,0,0,0,0,'Duels won','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3630,320,77,0,0,0,0,0,0,'Duels lost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3631,98,9,0,0,0,0,0,0,'Total quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3639,1231,0,26723,1,0,0,0,0,'Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3643,1232,0,29120,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3647,1233,0,29311,1,0,0,0,0,'Herald Volazj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3651,1234,0,26632,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3652,1235,0,31134,1,0,0,0,0,'Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3656,1236,0,29306,1,0,0,0,0,'Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3659,1237,0,27978,1,0,0,0,0,'Sjonnir the Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3663,1238,0,28923,1,0,0,0,0,'Kronus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3667,1239,0,27656,1,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3669,1240,0,26861,1,0,0,0,0,'King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3674,1241,0,26533,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3679,1242,0,23980,1,0,0,0,0,'Ingvar the Plunderer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3680,1157,76,0,1,0,0,0,0,'Win a duel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3681,1243,34,43308,0,0,0,0,0,'Find Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3683,560,41,19974,1,0,0,0,0,'Mudskunk Lure','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3684,233,56,0,1,3,566,3,566,'Berserking killing blow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3685,213,70,0,5,3,566,3,566,'5 Flag Carriers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9,0,0,0,1),(3686,1017,75,778,1,0,0,0,0,'Obtain a companion pet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3689,15,75,778,15,0,0,0,0,'Obtain 15 companion pets','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3690,1248,75,778,25,0,0,0,0,'Obtain 25 companion pets','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3692,1250,75,778,50,0,0,0,0,'Obtain 50 companion pets','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3693,211,30,183,1,0,0,0,0,'Capture a flag with 4 bases held','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3698,206,70,0,100,0,0,0,0,'Horde Flag Carriers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3699,1252,70,0,100,0,0,0,0,'Alliance Flag Carriers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3701,489,0,23953,1,0,0,0,0,'Prince Keleseth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3705,667,0,17308,1,0,0,0,0,'Omor the Unscarred','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3708,674,0,18473,1,0,0,0,0,'Talon King Ikiss','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3709,682,0,24664,1,0,0,0,0,'Kael\'thas Sunstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3710,668,0,17377,1,0,0,0,0,'Keli\'dan the Breaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3711,669,0,17942,1,0,0,0,0,'Quagmirran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3712,670,0,17882,1,0,0,0,0,'The Black Stalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3713,671,0,18344,1,0,0,0,0,'Nexus-Prince Shaffar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3714,672,0,18373,1,0,0,0,0,'Exarch Maladaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3715,673,0,18096,1,0,0,0,0,'Epoch Hunter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3716,675,0,18708,1,0,0,0,0,'Murmur','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3717,676,0,17881,1,0,0,0,0,'Aeonus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3718,677,0,17798,1,0,0,0,0,'Warlord Kalithresh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3719,678,0,16808,1,0,0,0,0,'Warchief Kargath Bladefist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3720,679,0,19220,1,0,0,0,0,'Pathaleon the Calculator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3721,680,0,17977,1,0,0,0,0,'Warp Splinter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3722,681,0,20912,1,0,0,0,0,'Harbinger Skyriss','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3723,557,49,0,1,0,0,0,0,'Head','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3762,1244,68,175738,1,0,0,0,0,'Aegwynn and the Dragon Hunt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3804,161,1,529,1,0,0,0,0,'Overcome a 500 resource disadvantage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3814,1253,29,46619,0,0,0,0,0,'Raised as a ghoul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3815,1229,28,50763,1,0,0,0,0,'Revive (Rank 7)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3821,1254,28,25285,1,0,0,0,0,'15 Turkeys in 3 minutes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3822,409,28,26549,1,0,0,0,0,'Last man standing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3826,252,35,0,50,0,0,0,0,'26157','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(3834,563,0,15956,1,0,0,0,0,'Anub\'Rekhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3837,565,0,16028,1,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3841,567,0,15954,1,0,0,0,0,'Noth the Plaguebringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3844,569,0,16061,1,0,0,0,0,'Instructor Razuvious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3847,573,0,15989,1,0,0,0,0,'Sapphiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3865,153,72,182954,1,0,0,0,0,'Brackish Mixed School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3872,1257,72,182952,1,0,0,0,0,'Steam Pump Flotsam','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3879,1258,70,0,1,3,566,3,566,'Killed a Berserking Player','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3880,1259,70,0,1,3,489,3,489,'Killed a Sprinting Player','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3881,1260,24,0,6500,0,0,0,0,'65 yards without dying while sloshed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3882,1261,35,0,50,0,0,0,0,'50 Honorable Kills with the G.N.E.R.D. buff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3883,1262,8,1189,0,0,0,0,0,'To Hellfire and Back','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3904,45,8,1264,0,0,0,0,0,'Borean Tundra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3912,1271,11,3483,90,0,0,0,0,'90 Hellfire quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3913,1272,11,3519,68,0,0,0,0,'68 Terokkar Forest quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3914,1273,11,3518,87,0,0,0,0,'87 Nagrand quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(3915,1274,8,1271,0,0,0,0,0,'To Hellfire and Back','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3922,1275,27,11008,1,0,0,10,0,'Fires Over Skettis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,2,11008,135,1),(3923,1276,27,11023,1,0,0,10,0,'Bomb Them Again!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,2,11023,135,1),(3924,1277,27,12372,1,0,0,10,0,'Defending Wyrmrest Temple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,2,12372,180,1),(3931,1279,54,58,1,0,0,0,0,'Kissed Sraaz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3932,1281,41,21576,10,0,0,0,0,'Shoot off 10 Red Rocket Clusters in 25 seconds or less','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,9,21576,25,1),(3936,1282,27,11023,1,0,0,0,0,'Summon Reindeer Flying Mount Tier 3.5 (Brown) (PVP Reward)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(3939,1283,8,628,0,0,0,0,0,'Deadmines','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(3964,1284,8,647,0,0,0,0,0,'Hellfire Ramparts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4009,1285,8,685,0,0,0,0,0,'Blackwing Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4014,1286,8,690,0,0,0,0,0,'Karazhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4023,1287,8,667,0,0,0,0,0,'Heroic Hellfire Ramparts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4040,1288,8,477,0,0,0,0,0,'Utgarde Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4056,1289,8,489,0,0,0,0,0,'Heroic Utgarde Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4071,1291,41,22236,1,0,0,0,0,'Buttermilk Delight at Romantic Picnic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4072,1292,36,32912,1,0,0,0,0,'Yellow Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4078,1293,36,33016,1,0,0,0,0,'Blue Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4090,1295,28,49444,25,0,0,0,0,'Gain 25 crashes with your Crashin\' Thrashin\' Racer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(4091,328,59,0,0,0,0,0,0,'Money from vendors','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(4111,295,0,23872,1,0,0,0,0,'Coren Direbrew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4112,293,54,34,1,0,0,0,0,'/dance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4122,1264,43,1462,0,0,0,0,0,'Temple City of En\'kilah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4136,1263,43,1559,0,0,0,0,0,'Kamagua','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4159,1265,43,1501,0,0,0,0,0,'Galakrond\'s Rest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4178,1266,43,1463,0,0,0,0,0,'Conquest Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4192,1267,43,1530,0,0,0,0,0,'Gundrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4206,1268,43,1544,0,0,0,0,0,'River\'s Heart','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4219,919,80,0,0,0,0,0,0,'Gold Earned from Auctions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(4220,329,82,0,0,0,0,0,0,'Auctions Posted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4221,330,84,0,0,0,0,0,0,'Total Auction Purchases','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4222,331,83,0,0,0,0,0,0,'Highest Auction Bid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(4223,332,85,0,0,0,0,0,0,'Highest sale value on an auction','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(4224,334,86,0,0,0,0,0,0,'Most gold ever owned:','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,1),(4227,1280,110,27571,1,0,0,0,0,'Handful of Rose Petals on Jeremiah Payson','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4230,277,29,25990,1,0,0,0,0,'Graccu\'s Mince Meat Fruitcake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4240,1296,0,28684,1,0,0,0,0,'Krik\'thir the Gatewatcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4244,1297,0,28921,1,0,0,0,0,'Hadronox','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4266,684,27,7495,1,0,0,0,0,'Victory for the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4288,345,41,32947,0,0,0,0,0,'Auchenai Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4308,922,41,32948,0,0,0,0,0,'Auchenai Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4337,923,41,20080,0,0,0,0,0,'Sheen of Zanza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4410,811,41,22861,0,0,0,0,0,'Flask of Blinding Light','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4439,1307,0,10363,1,0,0,0,0,'General Drakkisath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4501,1308,1,607,1,0,0,0,0,'Win Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4502,1309,1,607,100,0,0,0,0,'Complete 100 victories in Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(4504,1311,0,18695,1,0,0,0,0,'Ambassador Jerrikar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4654,346,41,32667,0,0,0,0,0,'Bash Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(4719,812,41,5510,0,0,0,0,0,'Greater Healthstone (0)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4737,924,46,1106,42000,0,0,0,0,'Exlated with the Argent Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4750,925,46,1012,42000,0,0,0,0,'Exlated with Ashtongue Deathsworn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4768,927,49,14,1,0,0,0,0,'Cloak is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4787,339,75,777,0,0,0,0,0,'Number of mounts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4788,338,75,778,0,0,0,0,0,'Vanity pets owned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4943,198,55,0,0,0,0,0,0,'Total healing done','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4944,1197,78,0,0,0,0,0,0,'Total NPC kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4946,1198,78,0,0,0,0,0,0,'Kill an NPC that yields XP','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4948,107,78,0,0,0,0,0,0,'Beasts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4958,108,78,0,0,0,0,0,0,'Critters killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4959,1111,70,0,0,0,0,0,0,'2v2 Arena Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4960,1110,70,0,0,0,0,0,0,'3v3 Arena Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4961,1109,70,0,0,0,0,0,0,'5v5 Arena Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4962,1057,17,0,0,0,0,0,0,'2v2 Deaths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4963,1107,17,0,0,0,0,0,0,'3v3 Deaths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4964,1108,17,0,0,0,0,0,0,'5v5 Deaths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4965,593,20,11948,0,0,0,0,0,'Killed by Vanndar Stormpike','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4985,97,14,0,0,0,0,0,0,'Daily quests complete','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4987,932,19,5,0,0,0,0,0,'5-man instances run','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4988,933,19,10,0,0,0,0,0,'10-man instances run','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4989,934,19,25,0,0,0,0,0,'25-man raids run','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4990,178,75,333,0,0,0,0,0,'Enchanting formulae known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4991,181,29,13262,0,0,0,0,0,'Disenchanted items','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(4992,350,68,183384,0,0,0,0,0,'Portal to Shattrath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5008,353,29,8690,0,0,0,0,0,'Hearthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5018,460,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5020,388,70,0,50,0,0,0,0,'Stormwind City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(5031,1006,70,0,50,0,0,0,0,'Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(5040,1356,11,495,105,0,0,0,0,'Complete 105 quests in Howling Fjord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5041,1357,11,394,75,0,0,0,0,'Complete 75 quests in Grizzly Hills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5042,1358,11,3537,150,0,0,0,0,'Complete 140 quests in Boren Tundra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(5044,1359,11,65,130,0,0,0,0,'Complete 130 quests in Dragonblight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5045,1360,8,1358,1,0,0,0,0,'Nothing Boring About Borean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5079,284,36,34000,1,0,0,0,0,'Flimsy Female Blood Elf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5100,1361,0,15956,1,0,0,0,0,'Anub\'Rekhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5101,1362,0,15953,1,0,0,0,0,'Grand Widow Faerlina','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5102,1363,0,15952,1,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5103,1367,0,16028,1,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5104,1365,0,15954,1,0,0,0,0,'Noth the Plaguebringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5108,1366,0,16060,1,0,0,0,0,'Gothik the Harvester','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5110,1364,0,16028,1,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5111,1368,0,15956,1,0,0,0,0,'Anub\'Rekhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5112,1369,0,15936,1,0,0,0,0,'Heigan the Unclean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5113,1370,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5114,1371,0,15931,1,0,0,0,0,'Grobbulus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5117,1372,0,15932,1,0,0,0,0,'Gluth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5119,1373,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5120,1374,0,16061,1,0,0,0,0,'Instructor Razuvious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5121,1375,0,16062,1,0,0,0,0,' Need to hook up event','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5122,1376,0,15989,1,0,0,0,0,'Sapphiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5123,1377,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5124,1378,0,15932,1,0,0,0,0,'Gluth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5125,1379,0,16060,1,0,0,0,0,'Gothik the Harvester','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5126,1380,0,15953,1,0,0,0,0,'Grand Widow Faerlina','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5127,1381,0,15931,1,0,0,0,0,'Grobbulus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5128,1382,0,15936,1,0,0,0,0,'Heigan the Unclean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5129,1383,0,16062,1,0,0,0,0,' Need to hook up event','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5130,1384,0,16061,1,0,0,0,0,'Instructor Razuvious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5131,1385,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5132,1386,0,15952,1,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5133,1387,0,15954,1,0,0,0,0,'Noth the Plaguebringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5134,1388,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5135,1389,0,15989,1,0,0,0,0,'Sapphiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5136,1390,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5137,1391,0,28859,1,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5138,1392,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5139,1393,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5140,1394,0,28859,1,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5141,1396,27,13012,1,0,0,0,0,'Elder Sardis in Valiance Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5203,615,0,29611,1,0,0,0,0,'King Varian Wrynn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5212,457,5,0,80,0,0,0,0,'Level 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5213,467,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5214,466,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5215,465,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5216,464,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5217,463,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5218,462,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5219,461,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5220,459,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5221,458,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5223,1400,0,28859,1,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5224,456,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5227,1402,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5229,1404,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5230,1405,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5231,1406,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5232,1407,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5233,1408,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5234,1409,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5235,1410,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5236,1411,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5237,1412,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5238,1413,5,0,80,0,0,0,0,'Level to 80','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5240,1414,7,164,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5241,1415,7,171,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5242,1416,7,185,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5243,1417,7,333,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5244,1418,7,202,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5245,490,0,26731,1,0,0,0,0,'Grand Magus Telestra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5249,1419,7,129,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5250,1420,7,356,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5251,1421,7,182,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5252,1422,7,773,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5253,1423,7,755,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5254,1424,7,165,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5255,1425,7,186,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5256,1426,7,393,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5257,1427,7,197,450,0,0,0,0,'Skill to 450','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5258,1428,29,57064,1,0,0,0,0,'Landmine Knockback','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5267,1436,34,49322,0,0,0,0,0,'Zhevra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5272,259,110,21343,1,0,0,0,0,'Snowball Cairne Bloodhoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5274,150,109,3,1,0,0,0,0,'Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5288,1456,109,3,0,0,0,0,0,'Fish and other things caught','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5289,94,107,0,0,0,0,0,0,'Quests abandoned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5290,1457,43,1597,0,0,0,0,0,'The Azure Front','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5299,378,87,0,0,0,0,0,0,'Factions at revered','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5300,529,88,0,0,0,0,0,0,'Factions at honored','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5301,931,89,0,0,0,0,0,0,'Total factions encountered','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5304,183,109,4,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5305,349,108,0,0,0,0,0,0,'Flight paths taken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5306,1463,8,947,0,0,0,0,0,'The Argent Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5310,1462,36,29434,0,0,0,0,0,'Badges of Justice acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5311,1464,36,40752,0,0,0,0,0,'Emblems of Heroism acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5312,1465,36,40753,0,0,0,0,0,'Emblems of Valor acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5313,926,46,530,42000,0,0,0,0,'Exalted with Darkspear Trolls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5328,1466,46,69,42000,0,0,0,0,'Exalted with Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5343,342,36,0,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5344,341,42,0,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5345,336,36,0,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5371,527,102,0,0,0,0,0,0,'Largest hit received','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5372,528,103,0,0,0,0,0,0,'Total damage received','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5373,193,101,0,0,0,0,0,0,'Largest hit dealt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5374,829,106,0,0,0,0,0,0,'Largest heal received','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5375,830,105,0,0,0,0,0,0,'Total healing received','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5376,189,104,0,0,0,0,0,0,'Largest heal cast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5377,1467,0,23953,1,0,0,0,0,'Prince Keleseth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5492,381,35,0,0,0,0,0,0,'Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5499,382,35,0,0,0,0,0,0,'Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5507,1113,35,0,0,0,0,0,0,'Alterac Valley Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5508,1114,35,0,0,0,0,0,0,'Arathi Basin Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5509,1115,35,0,0,0,0,0,0,'Warsong Gulch Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5510,1112,35,0,0,0,0,0,0,'Eye of the Storm Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5511,1486,35,0,0,0,0,0,0,'Strand of the Ancients Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5512,1488,56,0,0,0,0,0,0,'Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5529,1487,56,0,0,0,0,0,0,'Total Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5533,1490,56,0,0,0,0,0,0,'Nagrand Arena','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5536,1491,56,0,0,0,0,0,0,'Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5541,1492,56,0,0,0,0,0,0,'2v2 Arena Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5542,1493,56,0,0,0,0,0,0,'3v3 Arena Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5543,1494,56,0,0,0,0,0,0,'5v5 Arena Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5544,1495,56,0,0,0,0,0,0,'Alterac Valley Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5545,1496,56,0,0,0,0,0,0,'Arathi Basin Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5546,1497,56,0,0,0,0,0,0,'Warsong Gulch Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5547,1498,56,0,0,0,0,0,0,'Eye of the Storm Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5548,1499,56,0,0,0,0,0,0,'Strand of the Ancients Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5549,1500,16,607,0,0,0,0,0,'Deaths in Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5551,1199,40,171,1,0,0,0,0,'Alchemy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5562,1200,7,129,450,0,0,0,0,'First Aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5565,1201,7,171,450,0,0,0,0,'Alchemy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5576,1202,7,43,400,0,0,0,0,'Swords','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5593,318,17,0,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5594,1501,23,0,0,0,0,0,0,'Total deaths from other players','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5597,418,74,0,1,0,0,0,0,'Merciless Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5599,419,74,0,1,0,0,0,0,'Vengeful Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5600,420,74,0,1,0,0,0,0,'Brutal Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5601,202,69,23333,1,0,0,0,0,'Pick up flag while it\'s at the base','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,1),(5603,1502,69,23335,1,0,0,0,0,'Pick up flag while it\'s at the base','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,1),(5605,207,70,0,1,0,0,0,0,'Carrying Horde Flag','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5608,1504,0,23980,1,0,0,0,0,'Ingvar the Plunderer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5609,1505,0,26723,1,0,0,0,0,'Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5610,1506,0,29120,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5611,1507,0,29311,1,0,0,0,0,'Herald Volazj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5612,1508,0,26632,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5613,1509,0,31134,1,0,0,0,0,'Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5614,1510,0,29306,1,0,0,0,0,'Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5615,1511,0,27978,1,0,0,0,0,'Sjonnir the Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5616,1512,0,28923,1,0,0,0,0,'Kronus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5617,1513,0,27656,1,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5618,1514,0,26861,1,0,0,0,0,'King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5620,1515,73,18716,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5621,1103,0,23980,1,0,0,0,0,'Ingvar the Plunderer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5662,1516,8,130,0,0,0,0,0,'Grand Master Fisherman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5680,1517,72,192051,1,0,0,0,0,'Borean Man O\' War School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5692,1104,0,28859,1,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5695,1518,109,3,0,0,0,0,0,'Fish caught','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5696,1519,7,356,450,0,0,0,0,'Fishing skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5701,1524,7,185,450,0,0,0,0,'Cooking skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5702,1525,27,11377,1,0,0,0,0,'Revenge is Tasty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5706,1526,27,11665,1,0,0,0,0,'Crocolisks in the City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5711,1527,7,171,450,0,0,0,0,'Alchemy skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5712,1532,7,164,450,0,0,0,0,'Blacksmithing skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5713,1535,7,333,450,0,0,0,0,'Enchanting skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5714,1542,7,197,450,0,0,0,0,'Tailoring skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5715,1538,7,182,450,0,0,0,0,'Herbalism skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5716,1539,7,773,450,0,0,0,0,'Inscription skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5717,1540,7,755,450,0,0,0,0,'Jewelcrafting skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5718,1536,7,165,450,0,0,0,0,'Leatherworking skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5719,1537,7,186,450,0,0,0,0,'Mining skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5720,1541,7,393,450,0,0,0,0,'Skinning skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5722,1544,7,202,450,0,0,0,0,'Engineering skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5723,363,33,562,0,0,0,0,0,'Blade\'s Edge 5v5 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5724,365,33,562,0,0,0,0,0,'Blade\'s Edge 3v3 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5725,367,33,562,0,0,0,0,0,'Blade\'s Edge 2v2 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5726,362,32,562,0,0,0,0,0,'Blade\'s Edge 5v5 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5727,364,32,562,0,0,0,0,0,'Blade\'s Edge 3v3 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5728,366,32,562,0,0,0,0,0,'Blade\'s Edge 2v2 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5729,103,33,562,0,0,0,0,0,'Circle of Blood matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5730,101,33,559,0,0,0,0,0,'Ring of Trials matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5731,1545,33,618,0,0,0,0,0,'Ring of Valor matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5732,99,33,572,0,0,0,0,0,'Ruins of Lordaeron matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5733,1547,33,617,0,0,0,0,0,'Dalaran Sewers matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5734,104,32,562,0,0,0,0,0,'Circle of Blood victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5735,100,32,559,0,0,0,0,0,'Ring of Trials victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5736,102,32,572,0,0,0,0,0,'Ruins of Lordaeron victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5737,1546,32,618,0,0,0,0,0,'Ring of Valor victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5738,1548,32,617,0,0,0,0,0,'Dalaran Sewers victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5739,837,32,562,0,0,0,0,0,'Blade\'s Edge Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5740,838,33,562,0,0,0,0,0,'Blade\'s Edge Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5741,839,15,30,0,0,0,0,0,'Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5742,840,1,30,0,0,0,0,0,'Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5743,1549,15,607,0,0,0,0,0,'Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5745,50,1,566,0,0,0,0,0,'Eye of the Storm victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5746,1550,1,607,0,0,0,0,0,'Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5747,52,15,489,0,0,0,0,0,'Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5755,1552,41,21747,10,0,0,0,0,'Shoot off 10 Festival Firecrackers in 30 seconds or less','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,9,21747,30,1),(5756,1556,109,3,25,0,0,0,0,'Catch 25 fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5757,1557,109,3,50,0,0,0,0,'Catch 50 fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5758,1558,109,3,100,0,0,0,0,'Catch 100 fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5759,1559,109,3,250,0,0,0,0,'Catch 250 fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5760,1560,109,3,500,0,0,0,0,'Catch 500 fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5761,1561,109,3,1000,0,0,0,0,'Catch 1000 fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(5763,1563,8,125,0,0,0,0,0,'Grand Master Cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5772,291,110,44212,1,0,0,0,0,'Gnome','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5783,292,34,42609,0,0,0,0,0,'Sinister Squashling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5798,1576,27,9977,1,0,0,0,0,'The Ring of Blood: The Final Challenge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5802,1044,93,0,0,0,0,0,0,'Need rolls for loot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5803,1043,94,0,0,0,0,0,0,'Greed rolls on loot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5804,1596,27,12238,1,0,0,0,0,'Cleansing Drak\'Tharon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5812,1636,36,36941,1,0,0,0,0,'Competitor\'s Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5814,1637,34,48406,0,0,0,0,0,'Spirit of Competition','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5815,1638,27,11071,1,0,0,0,0,'Skyshatter Race','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(5818,1656,8,972,0,0,0,0,0,'Trick or Treat!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5831,1657,8,972,0,0,0,0,0,'Trick or Treat!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5843,1269,43,1579,0,0,0,0,0,'Brunnhildar Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5859,1270,43,1596,0,0,0,0,0,'The Bombardment','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5889,1658,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian (10 or 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(5900,1676,11,36,700,0,0,0,0,'Alterac Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(5952,1677,11,36,550,0,0,0,0,'Alterac Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(6004,1678,11,3428,700,0,0,0,0,'Ahn\'Qiraj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(6099,1680,11,3428,685,0,0,0,0,'Ahn\'Qiraj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(6143,1681,8,1676,0,0,0,0,0,'Loremaster of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6147,1682,8,1677,0,0,0,0,0,'Loremaster of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6159,729,34,17481,0,0,0,0,0,'Rivendare\'s Deathcharger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6160,980,34,48025,0,0,0,0,0,'Headless Horseman\'s Mount','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6161,880,34,24252,0,0,0,0,0,'Swift Zulian Tiger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6162,881,34,24242,0,0,0,0,0,'Swift Razzashi Raptor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6164,883,34,41252,0,0,0,0,0,'Raven Lord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6165,884,34,46628,0,0,0,0,0,'Swift White Hawkstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6166,885,34,40192,0,0,0,0,0,'Ashes of Al\'ar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6170,430,34,43688,0,0,0,0,0,'Amani War Bear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6174,1683,8,1185,0,0,0,0,0,'The Brewfest Diet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6181,1684,8,1185,0,0,0,0,0,'The Brewfest Diet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6207,303,34,50869,0,0,0,0,0,'Brewfest Kodo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6211,706,34,23509,0,0,0,0,0,'Frostwolf Howler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6212,707,34,23510,0,0,0,0,0,'Stormpike Battle Charger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6213,727,34,22719,0,0,0,0,0,'Black Battlestrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6223,279,27,7045,1,0,0,0,0,'A Smokywood Pastures\' Thank You!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6225,1685,110,26004,1,0,0,0,0,'Brother Malach in the Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6228,1686,110,26004,1,0,0,0,0,'Brother Nimetz in Stranglethorn Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6237,1687,110,44755,1,0,0,0,0,'Orc Death Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6247,1688,29,21143,1,0,0,0,0,'Gingerbread Cookie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6250,1689,27,11528,1,0,0,0,0,'Unique Toy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6261,1690,54,34,1,0,0,0,0,'/dance in dalaran with a snowman as a snowman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6262,1691,8,273,0,0,0,0,0,'On Metzen!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6274,1692,8,273,0,0,0,0,0,'On Metzen!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6293,1694,42,22279,1,0,0,0,0,'Lovely Black Dress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6294,1695,27,24658,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6295,1696,41,34258,10,0,0,0,0,'Shoot off 10 Love Rockets in 20 seconds or less','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,9,34258,20,1),(6312,1699,110,27571,1,0,0,0,0,'Gnome Warlock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6322,1700,34,27570,0,0,0,0,0,'Peddlefeet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6324,1701,29,70577,1,0,0,0,0,'Be Mine!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6332,1702,41,22236,1,0,0,0,0,'Buttermilk Delight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6336,1703,36,22206,1,0,0,0,0,'Bouquet of Red Roses','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6342,1705,27,11528,1,0,0,0,0,'Clockwork Rocket Bot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6343,1704,54,203,1,0,0,0,0,'Wintergrasp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6351,1693,8,260,0,0,0,0,0,'Charming','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6365,1707,8,260,0,0,0,0,0,'Charming','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6384,1721,0,31125,1,0,0,0,0,'Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6385,1722,0,31125,1,0,0,0,0,'Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6386,1729,75,171,0,0,0,0,0,'Alchemy recipes known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6387,1730,75,164,0,0,0,0,0,'Blacksmithing plans known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6388,1734,75,202,0,0,0,0,0,'Engineering Schematics known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6389,1735,75,773,0,0,0,0,0,'Inscriptions known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6390,1738,75,755,0,0,0,0,0,'Jewelcrafting Designs known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6391,1740,75,165,0,0,0,0,0,'Leatherworking Patterns known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6392,1741,75,197,0,0,0,0,0,'Tailoring Patterns known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6393,1745,75,185,0,0,0,0,0,'Cooking recipes known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6394,1748,75,129,0,0,0,0,0,'First Aid Manuals learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6395,1753,0,31125,1,0,0,0,0,'Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6396,1754,0,31125,1,0,0,0,0,'Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6397,1756,0,15932,1,0,0,0,0,'Gluth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6413,1768,0,28859,1,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6416,1770,0,15932,1,0,0,0,0,'Gluth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6436,1717,28,56902,1,0,0,0,0,'Win Wintergrasp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6440,1737,0,27881,1,0,0,0,0,'Wintergrasp Catapult','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6446,1764,70,0,100,0,0,0,0,'Kill 100 players carrying seaforium','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6447,1765,29,1843,5,3,607,3,607,'Disarm 5 seaforium charges in a single battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9,0,0,0,1),(6486,1777,29,58523,1,0,0,0,0,'Bad Clams','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6600,1780,41,43491,1,0,0,0,0,'Bad Clams','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6606,1781,41,43004,10,0,0,0,0,'Get 10 critters in 3 minutes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,9,43004,180,1),(6608,1782,27,13100,1,0,0,0,0,'Infused Mushroom Meatloaf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6613,1783,27,13112,1,0,0,0,0,'Infused Mushroom Meatloaf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6618,1784,8,125,0,0,0,0,0,'Grand Master Cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6626,1785,41,34753,1,0,0,0,0,'Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6633,604,70,0,5,0,0,0,0,'Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6637,603,70,0,5,0,0,0,0,'Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6641,1786,30,183,1,0,0,0,0,'Capture the flag in Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6651,1788,41,7228,1,0,0,0,0,'Tigule and Foror\'s Strawberry Ice Cream','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6659,1790,0,26861,1,0,0,0,0,'King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6661,1792,36,23015,1,0,0,0,0,'Rat Cage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6674,1793,8,1791,0,0,0,0,0,'Home Alone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6751,1795,112,185,25,0,0,0,0,'Learn 25 cooking recipes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6752,1796,112,185,50,0,0,0,0,'Learn 50 cooking recipes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6753,1797,112,185,75,0,0,0,0,'Learn 75 cooking recipes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6754,1798,112,185,100,0,0,0,0,'Learn 100 cooking recipes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6755,1799,112,185,160,0,0,0,0,'Learn 160 cooking recipes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6758,1800,29,43779,1,0,0,0,0,'Delicious Chocolate Cake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6761,1801,29,45695,1,0,0,0,0,'Captain Rumsey\'s Lager','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6790,870,113,0,100000,0,0,0,0,'Get 100000 honorable kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6791,869,113,0,50000,0,0,0,0,'Get 50000 honorable kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6792,239,113,0,25000,0,0,0,0,'Get 25000 honorable kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6793,509,113,0,10000,0,0,0,0,'Get 10000 honorable kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6794,512,113,0,5000,0,0,0,0,'Get 5000 honorable kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6795,516,113,0,1000,0,0,0,0,'Get 1000 honorable kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6796,515,113,0,500,0,0,0,0,'Get 500 honorable kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6797,513,113,0,100,0,0,0,0,'Get 100 honorable kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(6798,238,113,0,1,0,0,0,0,'Achieve an honorable kill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6799,141,110,45544,1,0,0,0,0,'First Aid Below 5%','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6800,223,70,0,1,0,0,0,0,'Kill someone in the Field of Strife before they dismount','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6802,578,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6803,1816,0,31134,1,0,0,0,0,'Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6804,271,28,58934,1,0,0,0,0,'Dance at the ribbon pole for 60 seconds while wearing completed Midsummer set.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6805,500,0,26529,1,0,0,0,0,'Meathook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6813,493,0,26630,1,0,0,0,0,'Trollgore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6817,3838,42,40752,1,0,0,0,0,'Emblem of Heroism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(6819,3839,42,40752,25,0,0,0,0,'Loot 25 Emblems of Heroism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(6820,3840,42,40752,50,0,0,0,0,'Loot 50 Emblems of Heroism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(6821,3841,42,40752,100,0,0,0,0,'Loot 100 Emblems of Heroism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(6822,3842,42,40752,250,0,0,0,0,'Loot 250 Emblems of Heroism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(6823,3843,42,40752,500,0,0,0,0,'Loot 500 Emblems of Heroism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(6824,3844,42,40752,1000,0,0,0,0,'Loot 1000 Emblems of Heroism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(6831,497,0,28586,1,0,0,0,0,'General Bjarngrim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6835,1834,0,28586,1,0,0,0,0,'General Bjarngrim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6839,495,0,29304,1,0,0,0,0,'Slad\'ran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6845,917,18,10,0,0,0,0,0,'10 man raids','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6846,916,18,25,0,0,0,0,0,'25 man raids','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6847,918,18,5,0,0,0,0,0,'5 man instances','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6848,491,0,28684,1,0,0,0,0,'Krik\'thir the Gatewatcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6851,492,0,29308,1,0,0,0,0,'Prince Taldaram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6855,494,0,31134,1,0,0,0,0,'Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6856,496,0,27975,1,0,0,0,0,'Maiden of Grief','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6859,498,0,27654,1,0,0,0,0,'Drakos the Interrogator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6864,499,0,26668,1,0,0,0,0,'Svala Sorrowgrave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(6937,272,110,45280,40,0,0,0,0,'40 torches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,5,45280,15,1),(6974,415,36,43599,1,0,0,0,0,'Big Blizzard Bear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6980,1836,36,34486,1,0,0,0,0,'Old Crafty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(6984,1837,42,34484,1,0,0,0,0,'Old Ironjaw','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7020,203,70,0,2,3,489,3,489,'Kill 2 flag carriers before they leave the Silverwing Flag Room','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9,0,0,0,1),(7021,1251,70,0,2,3,489,3,489,'Kill 2 flag carriers before they leave the Warsong Flag Room','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9,0,0,0,1),(7032,347,41,27667,0,0,0,0,0,'Spicy Crawdad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7126,1856,0,16028,1,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,10286,180,1),(7127,1857,0,16028,1,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,10286,180,1),(7128,1858,0,15952,1,0,0,0,0,'Kill Maexxna within 20 minutes of Anub\'Rekhan\'s death.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,9891,1200,1),(7129,1859,0,15952,1,0,0,0,0,'Kill Maexxna within 20 minutes of Anub\'Rekhan\'s death.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,9891,1200,1),(7130,1860,0,29120,1,0,0,0,0,'Kill Anub\'arak in 4 minutes or less.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,20381,240,1),(7133,1862,0,29311,1,0,0,0,0,'Kill Herald Volazj on Heroic Difficulty in 2 minutes or less.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,20382,120,1),(7136,1864,0,29306,1,0,0,0,0,'Kill Gal\'darah while under the effects of Eck Residue.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7137,1865,0,29266,1,0,0,0,0,'Xevozz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7143,1866,0,27975,1,0,0,0,0,'Kill the Maiden of Grief in 1 minute or less.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,20383,60,1),(7144,1867,0,28923,1,0,0,0,0,'Kill Loken on Heroic Difficulty in 2 minutes or less.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,20384,120,1),(7145,1868,0,27656,1,0,0,0,0,'Kill Ley-Guardian Eregos within 20 minutes of Drakos the Interrogator\'s death.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,18153,1200,1),(7159,579,0,15956,1,0,0,0,0,'Anub\'Rekhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7174,1869,0,28859,1,0,0,0,0,'Defeat Malygos with fewer than 9','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7175,1870,0,28859,1,0,0,0,0,'Defeat Malygos with fewer than 21','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7177,1871,0,27656,1,0,0,0,0,'Amber Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7180,1872,0,27737,100,0,0,0,0,'Kill 100 Risen Zombies in 1 minute','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,7,27737,60,1),(7181,1873,0,26693,1,0,0,0,0,'Kill Skadi the Ruthless on Heroic Difficulty within 3 minutes of starting the guantlet event','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,17726,180,1),(7182,1874,0,28859,1,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,20387,360,1),(7183,1875,0,28859,1,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,20387,360,1),(7184,1876,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7185,1877,0,30449,1,0,0,0,0,'Vesperon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7189,624,0,30449,1,0,0,0,0,'Vesperon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7231,1919,0,23953,1,0,0,0,0,'Defeat Prince Keleseth on Heroic Difficulty without shattering any Frost Tombs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7232,1936,36,32233,1,0,0,0,0,'Wolpertinger\'s Tankard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7236,1956,68,192708,1,0,0,0,0,'The Schools of Arcane Magic - Introduction','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7244,1957,36,43641,1,0,0,0,0,'Anduin Wrynn\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7260,1958,36,43698,1,0,0,0,0,'Giant Sewer Rat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7262,1976,36,43016,0,0,0,0,0,'Dalaran Cooking Awards gained','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7263,1977,36,41596,0,0,0,0,0,'Dalaran Jewelcrafter\'s Tokens gained','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7264,1996,0,15936,1,0,0,0,0,'Defeat Heigan the Unclean without anyone in the raid dying.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7265,1997,0,15953,1,0,0,0,0,'Defeat Grand Widow Faerlina without dispelling or preventing frenzy.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7266,1998,36,43016,1,0,0,0,0,'Dalaran Cooking Award','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7267,1999,36,43016,10,0,0,0,0,'10 Dalaran Cooking Awards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7268,2000,36,43016,25,0,0,0,0,'25 Dalaran Cooking Awards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7269,2001,36,43016,50,0,0,0,0,'50 Dalaran Cooking Awards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7270,2002,36,43016,100,0,0,0,0,'100 Dalaran Cooking Awards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7278,2016,27,12444,1,0,0,0,0,'Blackriver Skirmish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7287,2017,27,12170,1,0,0,0,0,'Blackriver Brawl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7296,2018,27,13240,1,0,0,0,0,'Timear Foresees Centrifuge Constructs in your Future!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7300,2019,27,13245,1,0,0,0,0,'Proof of Demise: Ingvar the Plunderer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7315,2036,0,26723,1,13,20542,9,59900,'Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7316,2037,0,26763,1,0,0,0,0,'Anomalus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7317,2038,0,29309,1,0,0,0,0,'Elder Nadox','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7318,2039,0,27483,1,0,0,0,0,'King Dred','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7319,2040,0,29305,1,0,0,0,0,'Moorabi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7320,2041,0,29313,1,0,0,0,0,'Ichoron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7321,2042,0,28587,1,0,0,0,0,'Volkhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7322,2043,0,26555,1,0,0,0,0,'Scourge Hulk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7323,2044,0,27656,1,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7324,2045,0,27656,1,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7325,2046,0,27656,1,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7326,2047,0,28860,1,13,19800,9,57591,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7327,2048,0,28860,1,13,19800,9,57591,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7328,2049,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7329,2050,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7330,2051,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7331,2052,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7332,2053,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7333,2054,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7358,1706,36,37710,1,0,0,0,0,'Crashin\' Thrashin\' Racer Controller','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7359,2056,0,29310,1,0,0,0,0,'Jedoga Shadowseeker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7361,2057,0,26631,1,0,0,0,0,'Novos the Summoner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7363,2058,0,29304,1,13,20573,9,55099,'Slad\'ran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7365,1718,28,56902,100,0,0,0,0,'Win Wintergrasp 100 times','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7368,2076,34,60116,0,0,0,0,0,'Armored Brown Bear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7371,2077,34,59793,0,0,0,0,0,'Wooly Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7380,2078,34,61425,0,0,0,0,0,'Traveler\'s Tundra Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7382,2079,36,28788,1,0,0,0,0,'Tabard of the Protector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7387,2080,34,59788,0,0,0,0,0,'Black War Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7391,2081,34,61465,0,0,0,0,0,'Grand Black War Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7393,2082,36,44080,1,0,0,0,0,'Ice Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7397,2083,36,44086,1,0,0,0,0,'Grand Ice Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7401,2084,36,40586,1,0,0,0,0,'Band of the Kirin Tor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7403,2085,42,43228,50,0,0,0,0,'Loot 50 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7404,2086,42,43228,100,0,0,0,0,'Loot 100 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7405,2087,42,43228,250,0,0,0,0,'Loot 250 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7406,2088,42,43228,500,0,0,0,0,'Loot 500 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7407,2089,42,43228,1000,0,0,0,0,'Loot 1000 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7408,2090,74,0,1,0,0,0,0,'Challenger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7412,2091,74,0,1,0,0,0,0,'Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7415,2092,74,0,1,0,0,0,0,'Duelist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7418,2093,74,0,1,0,0,0,0,'Rival','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7441,2094,42,43702,1,0,0,0,0,'Alonsus Faol\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7463,2095,42,43687,1,0,0,0,0,'Aegwynn\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7486,2096,8,2094,0,0,0,0,0,'A Penny For Your Thoughts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7491,2097,34,55531,0,0,0,0,0,'Mechano-hog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7493,2116,36,22999,1,0,0,0,0,'Tabard of the Argent Dawn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7494,1817,0,32273,1,0,0,0,0,'Infinite Corruptor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7496,2136,8,1919,0,0,0,0,0,'On The Rocks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7528,2137,8,578,0,0,0,0,0,'The Dedicated Few','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7538,2138,8,579,0,0,0,0,0,'The Dedicated Few (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7548,2139,0,15936,1,0,0,0,0,'Defeat Heigan the Unclean without anyone in the raid dying.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7549,2140,0,15953,1,0,0,0,0,'Defeat Grand Widow Faerlina without dispelling or preventing frenzy.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7550,2141,75,777,10,0,0,0,0,'Obtain 10 mounts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7551,2142,75,777,25,0,0,0,0,'Obtain 25 mounts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7552,2143,75,777,50,0,0,0,0,'Obtain 50 mounts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7553,2144,8,913,0,0,0,0,0,'To Honor One\'s Elders','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7560,2145,8,913,0,0,0,0,0,'To Honor One\'s Elders','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7567,2146,0,15989,1,0,0,0,0,'The Hundred Club','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7568,2147,0,15989,1,0,0,0,0,'Sapphiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7573,2148,56,0,1,0,0,0,0,'Deliver a killing blow to a Scion of Eternity while riding on a hover disk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7574,2149,56,0,1,0,0,0,0,'Deliver a killing blow to a Scion of Eternity while riding on a hover disk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7577,2150,0,26731,1,0,0,0,0,'Grand Magus Telestra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7579,2151,0,26630,1,0,0,0,0,'Trollgore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7583,2152,0,29306,1,0,0,0,0,'Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7587,2153,0,29314,1,0,0,0,0,'Zuramat the Obliterator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7590,2154,28,59046,1,0,0,0,0,'The Tribunal of Ages','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7593,2155,0,27978,1,0,0,0,0,'Sjonnir the Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7595,2156,0,26693,1,0,0,0,0,'Kill Skadi the Ruthless on Heroic Difficulty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7598,2157,0,26861,1,0,0,0,0,'King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7600,2176,28,59450,1,0,0,0,0,'The Four Horsemen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7601,2177,28,59450,1,0,0,0,0,'The Four Horsemen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7604,2178,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7605,2179,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7608,2180,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7609,2181,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7612,2182,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7613,2183,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7614,2184,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7615,2185,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7616,2186,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7617,2187,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7622,2188,0,10161,50,0,0,0,0,'Kill 50 rookery whelps within 15 seconds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,7,10161,15,1),(7625,1763,0,28781,100,0,0,0,0,'Destroy 100 vehicles using a turret','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7626,1762,1,607,1,0,0,0,0,'Win a Strand of the Ancients battle without losing any siege vehicles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7628,2189,0,28781,5,3,607,3,607,'Destroy 5 vehicles using a turret in a single battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9,0,0,0,1),(7629,2190,70,0,5,3,607,3,607,'Kill 5 players carrying seaforium in a single battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9,0,0,0,1),(7630,1766,70,0,10,3,607,3,607,'Kill 10 players in the Courtyard of the Ancients in a single battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9,0,0,0,1),(7631,2191,70,0,100,0,0,0,0,'Kill 100 players in the Courtyard of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7632,1761,28,60937,100,0,0,0,0,'Plant 100 Seaforium charges which successfully damage a wall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7634,2192,1,607,1,0,0,0,0,'Win a Strand of the Ancients battle without losing any siege vehicles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7635,2193,28,60937,5,3,607,3,607,'Plant 5 Seaforium charges which successfully damage a wall in a single battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',9,0,0,0,1),(7636,1757,28,52459,1,0,0,0,0,'Defend the beach without losing any walls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7642,2194,8,1309,0,0,0,0,0,'Strand of the Ancients Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7654,2195,8,1309,0,0,0,0,0,'Strand of the Ancients Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7666,1755,28,56902,1,0,0,0,0,'Attack Wintergrasp and succeed in 10 minutes or less.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7703,1751,70,0,20,0,0,0,0,'Kill 20 mounted players using a tower cannon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(7704,1723,70,0,100,0,0,0,0,'Vehicle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(7709,2199,70,0,10,0,0,0,0,'Wintergrasp Fortress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7722,1752,8,1718,0,0,0,0,0,'Wintergrasp Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7740,2200,28,52459,1,0,0,0,0,'Defend the beach without losing any walls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(7770,322,20,26763,0,0,0,0,0,'Anomalus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7807,323,20,15956,0,0,0,0,0,'Anub\'Rekhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7828,324,20,15956,0,0,0,0,0,'Anub\'Rekhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(7849,2219,18,5,0,0,0,0,0,'5 man heroic instances','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(8100,2256,0,32517,1,0,0,0,0,'Loque\'nahak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(8586,2277,114,0,1,0,0,0,0,'Summons accepted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(8758,1310,28,65246,1,0,0,3,607,'Win in 4 minutes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,23748,240,1),(8778,2316,36,43516,1,0,0,0,0,'Brutal Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(8818,2336,46,87,9000,0,0,0,0,'Honored with Bloodsail Buccaneers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(8839,383,70,0,0,0,0,0,0,'Blade\'s Edge Arena Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(8905,2357,27,7631,1,0,0,0,0,'Dreadsteed of Xoroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(8906,2358,27,7647,1,0,0,0,0,'Judgment and Redemption','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(8908,2359,27,11001,1,0,0,0,0,'Vanquish the Raven God','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9058,2398,74,0,1,0,0,0,0,'Logged in during 4th anniversary event','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9060,1727,28,20723,1,0,0,0,0,'Destroy a tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9118,2416,29,61718,1,0,0,0,0,'Lay a Noblegarden Egg in the Golakka Hot Springs.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9119,2417,29,61874,25,0,0,0,0,'Eat 25 Noblegarden Chocolates','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(9120,2418,29,61874,100,0,0,0,0,'Eat 100 Noblegarden Chocolates','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(9121,2419,29,61875,1,0,0,0,0,'Azure Watch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9122,2420,29,61820,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9123,2421,29,61820,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9124,2422,110,61815,1,0,0,0,0,'Blood Elf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9138,2436,29,61818,1,0,0,0,0,'The Badlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9158,2456,42,38658,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9167,275,34,40634,0,0,0,0,0,'Peanut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9178,2476,0,27881,1,0,0,0,0,'Wintergrasp Catapult','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9198,2496,27,6824,1,0,0,0,0,'Complete Hyrdaxis\' Tasks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9202,2497,29,61875,1,0,0,0,0,'Bloodhoof Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9218,2516,75,778,75,0,0,0,0,'Obtain 75 companion pets','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(9223,2536,75,777,100,0,0,0,0,'Obtain 100 mounts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(9224,2537,75,777,100,0,0,0,0,'Obtain 100 mounts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(9299,2557,54,225,1,0,0,0,0,'Arctic Hare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9358,2556,0,3300,1,0,0,0,0,'Adder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9420,424,34,26054,0,0,0,0,0,'Red Qiraji Resonating Crystal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9438,2596,0,16998,1,0,0,0,0,'Mr. Bigglesworth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9538,2676,42,45072,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9598,2716,5,0,40,0,0,0,0,'Level up to 40.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9668,2770,8,2760,0,0,0,0,0,'Champion of Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9673,2771,8,2765,0,0,0,0,0,'Champion of Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9678,2760,46,69,42000,0,0,0,0,'Exalted with Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9679,2761,46,930,42000,0,0,0,0,'Exalted with Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9680,2762,46,54,42000,0,0,0,0,'Exalted with Gnomeregan Exiles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9681,2763,46,47,42000,0,0,0,0,'Exalted with Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9682,2764,46,72,42000,0,0,0,0,'Exalted with Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9683,2765,46,76,42000,0,0,0,0,'Exalted with Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9684,2766,46,530,42000,0,0,0,0,'Exalted with Darkspear Trolls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9685,2767,46,911,42000,0,0,0,0,'Exalted with Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9686,2768,46,81,42000,0,0,0,0,'Exalted with Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9687,2769,46,68,42000,0,0,0,0,'Exalted with Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9698,2756,27,13667,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9746,2758,27,13691,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,1),(9758,2776,8,1718,0,0,0,0,0,'Wintergrasp Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9773,2777,27,13725,1,0,0,0,0,'Champion of Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9774,2778,27,13724,1,0,0,0,0,'Champion of the Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9775,2779,27,13723,1,0,0,0,0,'Champion of Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9776,2780,27,13713,1,0,0,0,0,'Champion of Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9777,2781,27,13699,1,0,0,0,0,'Champion of Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9778,2782,8,2777,0,0,0,0,0,'Champion of Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9783,2783,27,13726,1,0,0,0,0,'Champion of Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9784,2784,27,13727,1,0,0,0,0,'Champion of Sen\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9785,2785,27,13731,1,0,0,0,0,'Champion of Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9786,2786,27,13728,1,0,0,0,0,'Champion of Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9787,2787,27,13729,1,0,0,0,0,'Champion of the Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9788,2788,8,2783,0,0,0,0,0,'Champion of Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9798,2772,76,0,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9858,2576,54,58,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9859,2796,27,12420,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9863,2797,8,2676,0,0,0,0,0,'I Found One!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9871,2798,8,2676,0,0,0,0,0,'I Found One!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9898,2816,8,947,0,0,0,0,0,'The Argent Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9904,2817,8,947,0,0,0,0,0,'The Argent Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9918,2836,28,64805,1,0,0,0,0,'Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9938,2856,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9939,2857,0,33186,1,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9940,2858,0,33118,1,0,0,0,0,'Ignis the Furnace Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9941,2859,0,33293,1,0,0,0,0,'XT-002 Deconstructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9943,2861,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9947,2865,0,33432,1,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9948,2866,0,33271,1,0,0,0,0,'General Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9950,2868,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9951,2869,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9952,2870,0,33993,1,0,0,0,0,'Emalon the Storm Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(9954,2872,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9955,2873,0,33186,1,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9956,2874,0,33118,1,0,0,0,0,'Ignis the Furnace Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9957,2884,0,33293,1,0,0,0,0,'XT-002 Deconstructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9959,2875,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9963,2879,0,33432,1,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9964,2880,0,33271,1,0,0,0,0,'General Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9966,2882,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9967,2883,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(9999,2886,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10003,2887,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10023,2892,0,33271,1,0,0,0,0,'General Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10025,2893,0,33271,1,0,0,0,0,'General Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10027,2894,8,2886,0,0,0,0,0,'The Siege of Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10031,2895,8,2887,0,0,0,0,0,'Heroic: The Siege of Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10042,2903,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10044,2905,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10045,2906,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10046,2907,0,33113,1,0,0,0,0,'Salvaged Chopper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10049,2908,0,33113,1,0,0,0,0,'Salvaged Chopper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10054,2911,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10055,2912,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10056,2913,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10057,2914,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10058,2915,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10059,2916,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10060,2917,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10061,2918,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10062,2919,0,33186,1,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10063,2921,0,33186,1,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10066,2923,0,33388,25,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(10067,2924,0,33388,25,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(10068,2925,0,33118,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10069,2926,0,33118,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10072,2929,0,33118,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,20951,240,1),(10073,2930,0,33118,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,20951,240,1),(10074,2931,0,33293,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10075,2932,0,33293,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10077,2934,0,33293,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10079,2936,0,33293,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10080,2937,0,33293,1,0,0,0,0,'XT-002 Deconstructor dead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,21027,205,1),(10081,2938,0,33293,1,0,0,0,0,'Kill the XT-002','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,21027,205,1),(10082,2939,0,32927,1,0,0,0,0,'Runemaster Molgeim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10083,2940,0,32857,1,0,0,0,0,'Stormcaller Brundir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10084,2941,0,32867,1,0,0,0,0,'Steelbreaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10085,2942,0,32927,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10086,2943,0,32857,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10087,2944,0,32867,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10088,2945,0,32927,1,0,0,0,0,'Runemaster Molgeim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10089,2946,0,32857,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10090,2947,0,32857,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10091,2948,0,32857,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10095,2952,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10099,2956,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10100,2957,8,3056,0,0,0,0,0,'Orbit-uary','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10133,2960,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10173,2996,0,33271,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10184,3007,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10185,3008,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10187,3009,54,58,1,0,0,0,0,'Sara','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10189,3011,54,58,1,0,0,0,0,'Sara','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10196,3018,36,45624,0,0,0,0,0,'Emblems of Conquest acquired','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10218,3056,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10219,3057,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10220,3059,0,33293,1,0,0,0,0,'XT-002 Deconstructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10221,3058,0,33293,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10222,2773,27,13664,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10223,2969,69,62821,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10229,2970,69,62821,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10243,3077,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10247,2967,69,64899,1,13,20905,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,0,0,0,1),(10248,2968,69,64899,1,13,20905,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,0,0,0,1),(10258,2963,69,64899,1,13,20905,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,0,0,0,1),(10259,2961,69,64899,1,13,20905,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,0,0,0,1),(10260,2965,69,64899,1,13,20905,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,0,0,0,1),(10261,2962,69,64899,1,13,20905,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,0,0,0,1),(10262,3096,36,46708,1,0,0,0,0,'Deadly Gladiator\'s Frostwyrm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10279,3117,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10284,2953,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,21687,12,1),(10285,2951,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10286,2955,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10289,2977,28,64980,1,0,0,0,0,'Force Thorim to enter the arena while Sif is present','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10290,2959,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10291,3013,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,21001,420,1),(10292,3012,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,21001,420,1),(10293,3014,0,33136,9,0,0,0,0,'Kill 9 Guardians of Yogg-Saron in 12 seconds.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,7,33136,12,1),(10294,3017,0,33136,9,0,0,0,0,'Kill 9 Guardians of Yogg-Saron in 12 seconds..','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,7,33136,12,1),(10296,3010,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10303,2973,28,64985,1,0,0,0,0,'Defeat Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10304,2975,28,64985,1,0,0,0,0,'Thorim: Kill Thorim while Aura of Celerity is active.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10305,2971,28,64985,1,0,0,0,0,'Thorim: Do not by struck by Lightning Charge.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10306,2997,0,33271,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,1),(10309,2972,28,64985,1,0,0,0,0,'Avoid Thorim\'s Lightning Charge.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10310,2974,28,64985,1,0,0,0,0,'Defeat Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10313,2976,28,64985,1,0,0,0,0,'Defeat Thorim while buffed with Aura of Celerity.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10314,2978,28,64980,1,0,0,0,0,'Force Thorim to enter the arena while Sif is present','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10321,3016,69,63988,1,0,0,0,0,'The Assassination of King Llane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10324,3015,69,63988,1,0,0,0,0,'The Assassination of King Llane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10338,3136,0,33993,1,0,0,0,0,'Emalon the Storm Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10339,3137,0,33993,1,0,0,0,0,'Emalon the Storm Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10352,2904,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10365,2958,8,3057,0,0,0,0,0,'Orbit-uary (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10388,3141,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10391,1791,29,8690,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,1),(10394,2984,29,65015,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10396,2985,29,65015,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10399,3076,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10400,3006,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10401,2933,28,65037,20,0,0,0,0,'Kill 20 XS-013 Scrapbots with an XE-321 Boombot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,6,65037,12,1),(10402,2935,28,65037,20,0,0,0,0,'Kill 20 XS-013 Scrapbots with an XE-321 Boombot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,6,65037,12,1),(10405,2995,28,65040,1,0,0,0,0,'Assault Bot Destroyed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10406,3138,28,65040,1,0,0,0,0,'Assault Bot Destroyed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10408,2890,69,64899,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10409,3158,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10410,3157,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10412,3159,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10414,3161,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10415,3162,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10416,3163,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10417,3164,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10430,2927,69,62836,1,0,0,0,0,'Slag Pot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10431,2928,69,63536,1,0,0,0,0,'Slag Pot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10440,3176,28,64985,1,0,0,0,0,'Force Thorim to enter the arena while Sif is present','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10441,1255,110,21343,1,0,0,0,0,'Snowball King Magni Bronzebeard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10445,2982,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10446,2980,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,1,21597,1200,1),(10447,3177,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10448,3178,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10449,3179,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10450,3180,0,33432,1,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10451,3181,0,33271,1,0,0,0,0,'Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10452,3182,69,64899,1,13,20905,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,0,0,0,1),(10453,2891,69,64899,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10457,3183,28,64985,1,0,0,0,0,'Force Thorim to enter the arena while Sif is present','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10458,3184,69,64899,1,13,20905,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,0,0,0,1),(10459,3185,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10460,3186,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10461,3187,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10462,3188,0,33271,1,0,0,0,0,'Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10463,3189,0,33432,1,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10518,3216,75,186,0,0,0,0,0,'Smelting Recipes Known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10520,3217,27,13830,1,0,0,0,0,'The Ghostfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10525,3218,36,46109,1,0,0,0,0,'Sea Turtle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10542,3236,0,33993,1,0,0,0,0,'Emalon the Storm Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10543,2989,0,33432,1,0,0,0,0,'A Proximity Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10546,3237,0,33432,1,0,0,0,0,'A Proximity Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10558,2863,28,64985,1,0,0,0,0,'Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10559,2864,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10560,2862,69,64899,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10561,3257,28,64985,1,0,0,0,0,'Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10562,3256,69,64899,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10563,3258,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10565,2867,28,65184,1,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10566,2881,28,65184,1,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10567,3036,28,65184,1,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10568,3004,28,65184,1,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10569,3037,28,65184,1,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10570,3005,28,65184,1,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10578,2888,28,65195,1,0,0,0,0,'Assembly of Iron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10579,2889,28,65195,1,0,0,0,0,'Assembly of Iron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10580,2860,28,65195,1,0,0,0,0,'Assembly of Iron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10581,2885,28,65195,1,0,0,0,0,'Assembly of Iron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10619,2909,56,0,1,0,0,0,0,'Leviathan Turret','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10620,2910,56,0,1,0,0,0,0,'Leviathan Turret','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10638,3296,36,46349,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16772094',2,0,0,0,1),(10678,3316,28,65184,1,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10698,3259,28,65184,1,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10718,3336,74,0,1,0,0,0,0,'Deadly Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10720,2979,28,65296,1,0,0,0,0,'Lumberjacked','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,1,21686,15,1),(10721,3118,28,65296,1,0,0,0,0,'Lumberjacked','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,1,21686,15,1),(10722,2954,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,21687,12,1),(10738,3356,34,17229,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16772094',2,0,0,0,1),(10740,3357,34,64659,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16772094',2,0,0,0,1),(10758,2983,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10780,3003,28,65312,3,0,0,0,0,'Close 3 Black Holes within 10 seconds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,1,21697,10,1),(10782,3002,28,65312,3,0,0,0,0,'Close 3 Black Holes within 10 seconds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,1,21697,10,1),(10784,3376,28,65322,1,0,0,0,0,'Flame Leviathan + 1 (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10785,3377,28,65323,1,0,0,0,0,'Flame Leviathan + 2 (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10786,3378,28,65324,1,0,0,0,0,'Flame Leviathan + 3 (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10787,3379,28,65325,1,0,0,0,0,'Flame Leviathan + 4 (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10788,3380,28,65322,1,0,0,0,0,'Flame Leviathan + 1 (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10789,3381,28,65323,1,0,0,0,0,'Flame Leviathan + 2 (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10790,3382,28,65324,1,0,0,0,0,'Flame Leviathan + 3 (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10791,3383,28,65325,1,0,0,0,0,'Flame Leviathan + 4 (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10792,3384,28,65326,1,0,0,0,0,'Kill XT Heart (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10793,3385,28,65327,1,0,0,0,0,'Wound XT Heart (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10794,3386,28,65326,1,0,0,0,0,'Kill XT Heart (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10795,3387,28,65327,1,0,0,0,0,'Wound XT Heart (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10796,3388,28,65330,1,0,0,0,0,'Molgeim last (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10797,3390,28,65331,1,0,0,0,0,'Steelbreaker last (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10798,3389,28,65330,1,0,0,0,0,'Molgeim last (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10799,3391,28,65331,1,0,0,0,0,'Steelbreaker last (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10800,3392,28,64980,1,0,0,0,0,'Force Thorim to enter the arena while Sif is present','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10801,3393,28,64980,1,0,0,0,0,'Force Thorim to enter the arena while Sif is present','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10802,3394,28,65334,1,0,0,0,0,'Freya +1 (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10803,3396,28,65335,1,0,0,0,0,'Freya +2 (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10804,3398,28,65334,1,0,0,0,0,'Freya +3 (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10805,3395,28,65334,1,0,0,0,0,'Freya +1 (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10806,3397,28,65335,1,0,0,0,0,'Freya +2 (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10807,3399,28,65334,1,0,0,0,0,'Freya +3 (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10808,3400,28,65337,1,0,0,0,0,'Mimiron (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10809,3401,28,65337,1,0,0,0,0,'Mimiron (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10810,3402,28,65338,1,0,0,0,0,'General Vezax (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10811,3403,28,65338,1,0,0,0,0,'General Vezax (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10812,3404,28,65339,1,0,0,0,0,'Yogg + 3 (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10813,3405,28,65340,1,0,0,0,0,'Yogg + 2 (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10814,3406,28,65341,1,0,0,0,0,'Yogg + 1 (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10815,3407,28,65342,1,0,0,0,0,'Yogg + 0 (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10816,3408,28,65339,1,0,0,0,0,'Yogg + 3 (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10817,3409,28,65340,1,0,0,0,0,'Yogg + 2 (10)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10818,3410,28,65341,1,0,0,0,0,'Yogg + 1 (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10819,3411,28,65342,1,0,0,0,0,'Yogg + 0 (25)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10838,3142,27,13629,1,0,0,0,0,'Val\'anyr, Hammer of Ancient Kings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10858,3097,28,65387,100,0,0,0,0,'Steelforged Defenders slain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,6,65387,10,1),(10860,3098,28,65387,100,0,0,0,0,'Steelforged Defenders slain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,6,65387,10,1),(10882,2981,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,1,21597,1200,1),(10898,3436,74,0,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775166',2,0,0,0,1),(10918,3456,69,65386,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775166',2,0,0,0,1),(10919,3457,69,50517,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16774142',2,0,0,0,1),(10940,3478,8,3579,0,0,0,0,0,'\"FOOD FIGHT!\"','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(10961,3496,34,43900,0,0,0,0,0,'swift brewfest ram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(10998,3516,16,603,0,0,0,0,0,'Deaths in Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11038,3536,36,46802,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16776702',2,0,0,0,1),(11078,3556,69,61849,1,0,0,0,0,'Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11082,3557,69,61849,1,0,0,0,0,'Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11086,3558,29,66376,1,0,0,0,0,'Candied Sweet Potatoes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11119,3576,29,62051,1,0,0,0,0,'Candied Sweet Potato','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11123,3577,29,66034,1,0,0,0,0,'Candied Sweet Potato','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11128,3578,29,62021,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16713726',2,0,0,0,1),(11134,3580,69,65403,1,0,0,0,0,'Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11139,3581,69,65403,1,0,0,0,0,'Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11142,3582,0,18473,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16714238',2,0,0,0,1),(11163,3559,110,61781,1,0,0,0,0,'Blood Elf Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11168,3579,110,61925,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16741886',2,0,0,0,1),(11201,3596,27,14048,1,0,0,0,0,'Can\'t Get Enough Turkey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11203,3597,27,14061,1,0,0,0,0,'Can\'t Get Enough Turkey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11223,3618,36,46892,1,0,0,0,0,'Murkimus\' Tiny Spear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11238,3636,74,0,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16773118',2,0,0,0,1),(11266,3656,8,3579,0,0,0,0,0,'\"FOOD FIGHT!\"','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11278,3676,46,1094,42000,0,0,0,0,'Exalted with The Silver Covenant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11279,3677,46,1124,42000,0,0,0,0,'Exalted with The Sunreavers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11320,3696,27,13725,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,1),(11358,3736,29,67056,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,1),(11398,3756,36,46171,1,0,0,0,0,'Furious Gladiator\'s Frostwyrm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11400,3757,36,47840,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11402,3758,74,0,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,1),(11418,3776,1,628,1,0,0,0,0,'Win Isle of Conquest.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11419,3777,1,628,100,0,0,0,0,'Complete 100 victories in Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(11420,3778,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11478,3836,0,35013,1,0,0,0,0,'Koralon the Flame Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11479,3837,0,35013,1,0,0,0,0,'Koralon the Flame Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11492,3847,28,68363,1,0,0,0,0,'Glaive Thrower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11497,3856,56,0,1,0,0,0,0,'Glaive Thrower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11502,3857,8,3777,0,0,0,0,0,'Isle of Conquest Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11542,3812,0,34797,1,0,0,0,0,'Defeat the Beasts of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11618,3876,42,40752,1500,0,0,0,0,'Emblem of Heroism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(11638,3896,34,67527,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,1),(11679,3916,0,34797,1,0,0,0,0,'Defeat the Beasts of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11684,3917,0,34797,1,0,0,0,0,'Defeat the Beasts of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11689,3918,0,34797,1,0,0,0,0,'Defeat the Beasts of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11749,3957,8,3777,0,0,0,0,0,'Isle of Conquest Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11778,3799,0,34497,1,0,0,0,0,'Val\'kyr Twins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,21853,180,1),(11779,3797,0,34797,1,0,0,0,0,'Icehowl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11780,3813,0,34797,1,0,0,0,0,'Icehowl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11789,3804,28,68663,1,0,0,0,0,'Ghoul Explode','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11799,3814,28,68620,1,0,0,0,0,'Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11803,3798,28,68620,1,0,0,0,0,'Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11818,3815,0,34497,1,0,0,0,0,'Val\'kyr Twins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,21853,180,1),(11838,3996,0,34780,1,0,0,0,0,'Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11839,3997,0,34780,1,0,0,0,0,'Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11858,3803,28,68197,1,0,0,0,0,'Defeat Eadric with his own hammer.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11863,3802,28,68206,1,0,0,0,0,'Hogger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11882,4056,28,68517,1,0,0,0,0,'Beasts Attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11902,4074,0,35013,1,0,0,0,0,'Koralon the Flame Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11903,4075,0,35013,1,0,0,0,0,'Koralon the Flame Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(11958,4096,15,628,0,0,0,0,0,'Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(11959,4097,1,628,0,0,0,0,0,'Isle of Conquest victories','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12018,4016,28,68308,1,0,0,0,0,'Earth, Wind and Fire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12019,4017,28,68308,1,0,0,0,0,'Earth, Wind and Fire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12059,3845,28,68357,1,3,628,3,628,'Destroy a vehicle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,1),(12060,3846,1,628,1,0,0,0,0,'Win Isle of Conquest.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12061,4176,1,628,1,0,0,0,0,'Win Isle of Conquest.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12062,3851,1,628,1,3,628,3,628,'Win Isle of Conquest.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12064,4177,1,628,1,3,628,3,628,'Win Isle of Conquest.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12066,3848,29,68366,5,3,628,3,628,'Bombs used on enemy gates','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',13,0,0,0,1),(12067,3849,29,68367,5,3,628,3,628,'Bombs used on enemy gates','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',13,0,0,0,1),(12114,3850,28,68357,10,0,0,0,0,'Vehicles killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(12116,3800,28,68186,40,0,0,0,0,'Swarm Scarabs Slain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,6,68186,30,1),(12132,3852,29,1843,25,0,0,0,0,'Bombs disarmed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(12158,3853,31,4747,1,3,628,3,628,'Workshop','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4,0,0,0,1),(12163,3854,28,68502,1,0,0,0,0,'Courtyard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12178,4256,56,0,1,0,0,0,0,'Glaive Thrower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12183,3855,35,0,10,0,0,1,0,'Players killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(12198,3816,28,68515,40,0,0,0,0,'Swarm Scarabs Slain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,6,68515,30,1),(12199,4276,0,34797,1,0,0,0,0,'Defeat the Beasts of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12200,4277,0,34780,1,0,0,0,0,'Defeat Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12201,4278,28,68184,1,0,0,0,0,'Defeat the Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12202,4279,0,34496,1,0,0,0,0,'Defeat the Twin Val\'kyr','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12203,4280,0,34660,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12204,4281,0,34797,1,0,0,0,0,'Defeat the Beasts of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12205,4282,0,34780,1,0,0,0,0,'Defeat Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12206,4283,28,68184,1,0,0,0,0,'Defeat the Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12207,4284,0,34496,1,0,0,0,0,'Defeat the Twin Val\'kyr','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12208,4285,0,34660,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12209,4057,28,68517,1,0,0,0,0,'Beasts Attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12210,4058,28,68517,1,0,0,0,0,'Beasts Attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12211,4059,28,68517,1,0,0,0,0,'Beasts Attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12212,4060,28,68518,1,0,0,0,0,'Jaraxxus Attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12213,4061,28,68518,1,0,0,0,0,'Jaraxxus Attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12214,4063,28,68518,1,0,0,0,0,'Jaraxxus Attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12215,4062,28,68518,1,0,0,0,0,'Jaraxxus Attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12216,4064,28,68519,1,0,0,0,0,'Faction Champions attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12217,4065,28,68519,1,0,0,0,0,'Faction Champions attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12218,4066,28,68519,1,0,0,0,0,'Faction Champions attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12219,4067,28,68519,1,0,0,0,0,'Faction Champions attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12220,4068,28,68520,1,0,0,0,0,'Val\'kyr Twins attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12221,4070,28,68520,1,0,0,0,0,'Val\'kyr Twins attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12222,4069,28,68520,1,0,0,0,0,'Val\'kyr Twins attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12223,4071,28,68520,1,0,0,0,0,'Val\'kyr Twins attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12224,4072,28,68521,1,0,0,0,0,'Anub\'arak attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12225,4073,28,68521,1,0,0,0,0,'Anub\'arak attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12226,4076,28,68521,1,0,0,0,0,'Anub\'arak attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12227,4077,28,68521,1,0,0,0,0,'Anub\'arak attempt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12228,4028,0,34797,1,0,0,0,0,'Defeat the Beasts of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12229,4030,0,34797,1,0,0,0,0,'Defeat the Beasts of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12230,4031,0,34797,1,0,0,0,0,'Defeat the Beasts of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12231,4029,0,34797,1,0,0,0,0,'Defeat the Beasts of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12232,4032,0,34780,1,0,0,0,0,'Defeat Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12233,4033,0,34780,1,0,0,0,0,'Defeat Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12234,4034,0,34780,1,0,0,0,0,'Defeat Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12235,4035,0,34780,1,0,0,0,0,'Defeat Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12236,4036,28,68184,1,0,0,0,0,'Defeat the Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12237,4037,28,68184,1,0,0,0,0,'Defeat the Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12238,4038,28,68184,1,0,0,0,0,'Defeat the Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12239,4039,28,68184,1,0,0,0,0,'Defeat the Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12240,4040,0,34496,1,0,0,0,0,'Defeat the Twin Val\'kyr','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12241,4041,0,34496,1,0,0,0,0,'Defeat the Twin Val\'kyr','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12242,4042,0,34496,1,0,0,0,0,'Defeat the Twin Val\'kyr','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12243,4043,0,34496,1,0,0,0,0,'Defeat the Twin Val\'kyr','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12244,4044,0,34564,1,0,0,0,0,'Complete the Trial of the Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12245,4045,0,34564,1,0,0,0,0,'Complete the Trial of the Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12246,4046,0,34564,1,0,0,0,0,'Complete the Trial of the Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12247,4047,0,34564,1,0,0,0,0,'Complete the Trial of the Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12278,3937,28,68523,1,0,0,0,0,'Kill Acidmaw & Dreadscale within 10sec','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12280,3936,28,68523,1,0,0,0,0,'Kill Acidmaw & Dreadscale within 10sec','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12302,4296,28,68572,1,0,0,0,0,'Mokra the Skullcrusher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12310,4297,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12318,4298,28,68572,1,0,0,0,0,'Mokra the Skullcrusher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12338,3817,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12341,3818,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12343,3819,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12344,3808,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12347,3809,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12349,3810,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12350,4078,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12358,4079,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12359,4156,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12360,4080,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12398,1789,14,0,5,0,0,0,0,'Complete five daily quests with your orphan out.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,1),(12418,4316,42,40752,2500,0,0,0,0,'Emblem of Heroism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,1),(12519,4376,28,68663,1,0,0,0,0,'The Black Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12538,4054,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12539,4055,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12540,4018,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12541,4019,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12542,4048,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12543,4049,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12544,4050,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12545,4051,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12546,4052,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12547,4053,28,68572,1,0,0,0,0,'Marshal Jacob Alerius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12548,4022,28,68574,1,0,0,0,0,'Argent Confessor Paletress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12549,4023,28,68574,1,0,0,0,0,'Argent Confessor Paletress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12550,4024,28,68575,1,0,0,0,0,'Eadric the Pure','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12551,4025,28,68575,1,0,0,0,0,'Eadric the Pure','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12552,4026,28,68663,1,0,0,0,0,'The Black Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12553,4027,28,68663,1,0,0,0,0,'The Black Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12558,4396,0,10184,1,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12559,4397,0,10184,1,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12562,4400,74,0,1,0,0,0,0,'Logged in during 5th anniversary event','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12564,4402,0,10184,1,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,6601,300,1),(12565,4403,0,10184,1,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12566,4404,0,10184,1,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12567,4405,0,10184,1,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,6601,300,1),(12568,4406,0,10184,1,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12569,4407,0,10184,1,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12618,4416,34,10697,0,0,0,0,0,'Crimson Whelpling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12635,4417,34,17481,0,0,0,0,0,'Rivendare\'s Deathcharger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12662,4436,110,67531,1,0,0,0,0,'Cairne Bloodhoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12665,4437,110,67531,1,0,0,0,0,'High Tinker Mekkatorque','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12678,4456,0,23980,1,0,0,0,0,'Ingvar the Plunderer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12698,4496,115,0,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(12738,4516,0,36497,1,0,0,0,0,'Bronjahm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12740,4517,0,36494,1,0,0,0,0,'Forgemaster Garfrost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12742,4518,0,38112,1,0,0,0,0,'Falric','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12745,4519,0,36497,1,0,0,0,0,'Bronjahm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12747,4520,0,36494,1,0,0,0,0,'Forgemaster Garfrost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12750,4521,0,38112,1,0,0,0,0,'Falric','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12752,4522,0,36497,1,0,0,0,0,'Bronjahm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12756,4526,28,72830,1,0,0,0,0,'Ghoul Explode','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,22615,360,1),(12757,4527,28,72706,1,0,0,0,0,'Rescue Valithiria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12759,4528,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12762,4529,0,37970,1,0,0,0,0,'Defeat the Blood Prince Council','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12764,4530,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12765,4532,8,4531,0,0,0,0,0,'Storming the Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12770,4531,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12775,4534,0,36612,1,0,0,0,0,'Lord Marrowgar slain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12776,4535,28,72827,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12777,4536,28,72959,1,0,0,0,0,'Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12778,4537,28,72928,1,0,0,0,0,'Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12780,4539,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel without becoming a vampire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12798,4556,0,23980,1,0,0,0,0,'Ingvar the Plunderer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12818,4576,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12822,4580,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12823,4581,0,36597,1,0,0,0,0,'Vile Spirits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12825,4583,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12826,4584,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12827,4585,0,38433,1,0,0,0,0,'Toravon the Ice Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12828,4586,0,38433,1,0,0,0,0,'Toravon the Ice Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12838,1697,27,24610,1,0,0,0,0,'A Gift for the High Priestess of Elune','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12842,1698,27,24612,1,0,0,0,0,'A Gift for the Warchief','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12846,260,29,69531,12,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',1,0,0,0,1),(12902,4596,27,24795,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(12909,4597,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12911,4598,46,1156,42000,0,0,0,0,'Ashen Verdict Exalted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12912,4599,74,0,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(12913,4600,36,50435,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(12945,4604,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12949,4605,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12952,4606,0,37970,1,0,0,0,0,'Defeat the Blood Prince Council','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12954,4607,28,72706,1,0,0,0,0,'Rescue Valithiria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12956,4608,8,4604,0,0,0,0,0,'Storming the Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(12962,4610,0,36612,1,0,0,0,0,'Lord Marrowgar slain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12966,4614,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12967,4615,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12968,4616,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12969,4617,0,37970,1,0,0,0,0,'Prince Valanar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12971,4619,28,72706,1,0,0,0,0,'Valithria','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12972,4620,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12975,4623,27,24549,1,0,0,0,0,'Shadowmourne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12976,4523,0,36502,1,0,0,0,0,'Devourer of Souls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12977,4577,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12978,4579,28,72706,1,0,0,0,0,'Valithria','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12984,4538,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12987,4578,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(12992,4624,0,36296,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(12993,4524,0,36494,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(12994,4525,28,72845,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(12997,4611,28,72827,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13008,4625,34,72286,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(13009,4626,34,63796,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(13010,4627,34,71342,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(13012,4618,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel without becoming a vampire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13029,4476,119,0,10,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',1,0,0,0,1),(13030,4477,119,0,50,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',1,0,0,0,1),(13031,4478,119,0,100,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',1,0,0,0,1),(13033,4582,0,37970,1,0,0,0,0,'Prince Valanar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13036,4613,28,72928,1,0,0,0,0,'Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13039,4628,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13043,4629,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13046,4630,0,37970,1,0,0,0,0,'Defeat the Blood Prince Council','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13048,4631,28,72706,1,0,0,0,0,'Rescue Valithiria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13050,4632,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13054,4633,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13057,4634,0,37970,1,0,0,0,0,'Defeat the Blood Prince Council','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13059,4635,28,72706,1,0,0,0,0,'Rescue Valithiria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13061,4636,8,4628,0,0,0,0,0,'Storming the Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13066,4637,8,4632,0,0,0,0,0,'Storming the Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13071,4602,8,4628,0,0,0,0,0,'Heroic: Storming the Citadel (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13075,4603,8,4632,0,0,0,0,0,'Heroic: Storming the Citadel (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13080,4612,28,72959,1,0,0,0,0,'Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13089,4639,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13090,4640,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13091,4642,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13092,4641,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13093,4643,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13094,4644,28,72959,1,0,0,0,0,'Claim victory in the Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13095,4645,28,72928,1,0,0,0,0,'The Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13096,4646,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13097,4647,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13098,4648,0,37970,1,0,0,0,0,'Defeat the Blood Prince Council','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13099,4649,28,72706,1,0,0,0,0,'Rescue Valithiria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13100,4650,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13101,4651,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13102,4652,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13103,4653,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13104,4654,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13105,4655,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13106,4656,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13107,4657,0,38433,1,0,0,0,0,'Toravon the Ice Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13108,4658,0,38433,1,0,0,0,0,'Toravon the Ice Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13109,4660,28,72959,1,0,0,0,0,'Claim victory in the Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13110,4659,28,72959,1,0,0,0,0,'Claim victory in the Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13111,4661,28,72959,1,0,0,0,0,'Claim victory in the Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13112,4663,28,72928,1,0,0,0,0,'The Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13113,4662,28,72928,1,0,0,0,0,'The Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13114,4664,28,72928,1,0,0,0,0,'The Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13115,4666,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13116,4665,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13117,4667,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13118,4669,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13119,4668,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13120,4670,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13121,4672,0,37970,1,0,0,0,0,'Defeat the Blood Prince Council','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13122,4671,0,37970,1,0,0,0,0,'Defeat the Blood Prince Council','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13123,4673,0,37970,1,0,0,0,0,'Defeat the Blood Prince Council','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13124,4675,28,72706,1,0,0,0,0,'Rescue Valithiria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13125,4674,28,72706,1,0,0,0,0,'Rescue Valithiria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13126,4676,28,72706,1,0,0,0,0,'Rescue Valithiria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13127,4678,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13128,4677,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13129,4679,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13130,4681,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13131,4680,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13132,4682,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13133,4683,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13134,4684,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13135,4685,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13136,4687,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13137,4686,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13138,4688,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13139,4689,28,73045,1,0,0,0,0,'Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13140,4690,28,73045,1,0,0,0,0,'Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13141,4691,28,73047,1,0,0,0,0,'Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13142,4692,28,73047,1,0,0,0,0,'Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13143,4693,28,73048,1,0,0,0,0,'Gunship','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13144,4694,28,73048,1,0,0,0,0,'Gunship','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13145,4695,28,73049,1,0,0,0,0,'Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13146,4696,28,73049,1,0,0,0,0,'Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13147,4697,28,73050,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13148,4698,28,73050,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13149,4699,28,73051,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13150,4700,28,73051,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13151,4701,28,73052,1,0,0,0,0,'Blood Princes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13152,4702,28,73052,1,0,0,0,0,'Blood Princes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13153,4703,28,73053,1,0,0,0,0,'Valithria','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13154,4704,28,73053,1,0,0,0,0,'Valithria','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13155,4705,28,73054,1,0,0,0,0,'Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13156,4706,28,73054,1,0,0,0,0,'Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13157,4707,28,73055,1,0,0,0,0,'Blood Queen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13158,4708,28,73055,1,0,0,0,0,'Blood Queen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13159,4709,28,73056,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13160,4712,28,73056,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13161,4710,28,73057,1,0,0,0,0,'Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13162,4711,28,73057,1,0,0,0,0,'Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13166,4713,0,36497,1,0,0,0,0,'Bronjahm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13167,4714,0,36497,1,0,0,0,0,'Bronjahm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13168,4716,0,36502,1,0,0,0,0,'Devourer of Souls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13169,4715,0,36502,1,0,0,0,0,'Devourer of Souls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13170,4717,0,36494,1,0,0,0,0,'Forgemaster Garfrost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13172,4718,0,36476,1,0,0,0,0,'Ick and Krick','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13173,4719,0,36476,1,0,0,0,0,'Ick and Krick','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13174,4720,0,36658,1,0,0,0,0,'Scourgelord Tyrannus and Rimefang','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13175,4721,0,36658,1,0,0,0,0,'Scourgelord Tyrannus and Rimefang','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13176,4722,0,38112,1,0,0,0,0,'Falric','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13177,4723,0,38112,1,0,0,0,0,'Falric','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13178,4724,0,38113,1,0,0,0,0,'Marwyn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13179,4725,0,38113,1,0,0,0,0,'Marwyn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13180,4726,28,72830,1,0,0,0,0,'Survive the encounter with the Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13181,4727,28,72830,1,0,0,0,0,'Survive the encounter with the Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13182,4728,0,36494,1,0,0,0,0,'Forgemaster Garfrost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13183,4729,36,47241,0,0,0,0,0,'Emblems of Triumph acquired ','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13184,4730,36,49426,0,0,0,0,0,'Emblems of Frost acquired ','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13185,4731,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13186,4732,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13187,4733,28,72959,1,0,0,0,0,'Claim victory in the Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13188,4734,28,72928,1,0,0,0,0,'The Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13189,4735,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13190,4736,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13191,4737,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13192,4738,0,37970,1,0,0,0,0,'Defeat the Blood Prince Council','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13193,4739,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13194,4740,28,72706,1,0,0,0,0,'Rescue Valithiria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13195,4741,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13196,4742,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13197,4743,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13198,4744,28,72959,1,0,0,0,0,'Claim victory in the Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13199,4745,28,72928,1,0,0,0,0,'The Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13200,4746,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13201,4747,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13202,4748,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13203,4749,0,37970,1,0,0,0,0,'Defeat the Blood Prince Council','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13204,4750,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13205,4751,28,72706,1,0,0,0,0,'Rescue Valithiria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13206,4752,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13207,4753,28,73045,1,0,0,0,0,'Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13208,4754,28,73045,1,0,0,0,0,'Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13209,4755,28,73047,1,0,0,0,0,'Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13210,4756,28,73047,1,0,0,0,0,'Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13211,4757,28,73048,1,0,0,0,0,'Gunship','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13212,4758,28,73048,1,0,0,0,0,'Gunship','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13213,4759,28,73049,1,0,0,0,0,'Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13214,4760,28,73049,1,0,0,0,0,'Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13215,4761,28,73050,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13216,4762,28,73050,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13217,4763,28,73051,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13218,4764,28,73051,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13219,4765,28,73052,1,0,0,0,0,'Blood Princes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13220,4766,28,73052,1,0,0,0,0,'Blood Princes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13221,4767,28,73053,1,0,0,0,0,'Valithria','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13222,4768,28,73053,1,0,0,0,0,'Valithria','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13223,4769,28,73054,1,0,0,0,0,'Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13224,4770,28,73054,1,0,0,0,0,'Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13225,4771,28,73055,1,0,0,0,0,'Blood Queen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13226,4772,28,73055,1,0,0,0,0,'Blood Queen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13227,4773,28,73056,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13228,4774,28,73056,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13229,4775,28,73057,1,0,0,0,0,'Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13230,4776,28,73057,1,0,0,0,0,'Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13243,4622,0,36597,1,0,0,0,0,'Vile Spirits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13244,4621,0,36597,1,0,0,0,0,'Allow Necrotic Plague to stack to 30 before defeating the Lich King in 25-player mode.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13246,4601,0,36597,1,0,0,0,0,'Allow Necrotic Plague to stack to 30 before defeating the Lich King in 10-player mode.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13253,588,113,0,0,0,0,0,0,'Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13255,4777,56,0,0,0,0,0,0,'Isle of Conquest Killing Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13258,4778,117,0,0,0,0,0,0,'Disenchant rolls made on loot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13261,4779,35,0,0,0,0,0,0,'Isle of Conquest Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13306,4780,16,649,0,0,0,0,0,'Deaths in Trial of the Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13307,4781,16,631,0,0,0,0,0,'Deaths in Icecrown Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,1),(13372,4782,36,37892,1,0,0,0,0,'Green Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13379,4784,36,40752,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(13384,4785,36,40752,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(13389,4786,27,25393,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(13395,4788,46,932,42000,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,1),(13409,4789,46,934,42000,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,1),(13421,4790,27,25445,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(13422,4791,118,0,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,1),(13423,4792,121,0,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,1),(13424,4793,123,0,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,1),(13425,4794,120,0,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,1),(13426,4795,122,0,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,1),(13427,1205,8,4788,1,0,0,0,0,'Exalted with The Aldor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13451,4815,0,39863,1,0,0,0,0,'Halion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13452,4816,0,39863,1,0,0,0,0,'Halion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13453,4817,0,39863,1,0,0,0,0,'Halion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13454,4818,0,39863,1,0,0,0,0,'Halion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13465,4820,0,39863,1,0,0,0,0,'Halion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13466,4821,0,39863,1,0,0,0,0,'Halion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13467,4823,0,39863,1,0,0,0,0,'Halion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13468,4822,0,39863,1,0,0,0,0,'Halion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,1),(13469,4824,36,56806,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,1),(84,41,8,35,1,0,0,0,0,'Might of Dragonblight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(95,46,8,43,1,0,0,0,0,'Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(151,115,26,3,0,0,0,0,0,'Deaths from fire and lava','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(170,321,18,10,0,0,0,0,0,'10 man instances','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(190,477,0,24200,1,0,0,0,0,'Skarvald the Constructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(196,478,0,26763,1,0,0,0,0,'Anomalus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(200,482,0,26631,1,0,0,0,0,'Novos the Summoner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(205,487,0,27655,1,0,0,0,0,'Mage-Lord Urom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(207,488,0,26668,1,0,0,0,0,'Svala Sorrowgrave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(213,479,0,26532,1,0,0,0,0,'Chrono-Lord Epoch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(220,486,0,28546,1,0,0,0,0,'Ionar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(227,230,8,1169,0,0,0,0,0,'Master of Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(286,547,27,12500,1,0,0,0,0,'Return to Angrathar - Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(326,426,36,32837,1,0,0,0,0,'Warglaive of Azzinoth (Main Hand)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(352,562,0,15953,1,0,0,0,0,'Grand Widow Faerlina','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(358,564,0,15931,1,0,0,0,0,'Grobbulus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(366,566,0,15936,1,0,0,0,0,'Heigan the Unclean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(373,568,0,16060,1,0,0,0,0,'Gothik the Harvester','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(384,576,8,564,0,0,0,0,0,'The Construct Quarter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(390,577,8,565,0,0,0,0,0,'The Construct Quarter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(422,582,30,65,1,3,30,3,30,'Defend a graveyard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,2),(427,583,30,123,2,3,529,3,529,'Defend 2 bases','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,2),(432,584,31,3420,5,3,529,3,529,'Kill 5 people at the farm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,2),(442,587,31,3871,5,3,566,3,566,'Kill 5 people at the Draenei Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,2),(479,273,27,8746,1,0,0,0,0,'Metzen saved','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(485,614,8,611,0,0,0,0,0,'Bleeding Bloodhoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(493,619,8,616,0,0,0,0,0,'Death to the King!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(497,626,36,21544,1,0,0,0,0,'Festive Blue Pant Suit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(503,627,43,116,1,0,0,0,0,'Chill Breeze Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(535,637,0,6487,1,0,0,0,0,'Arcanist Doan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(546,644,0,11496,1,0,0,0,0,'Immol\'thar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(549,645,0,1853,1,0,0,0,0,'Darkmaster Gandling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(551,646,0,10440,1,0,0,0,0,'Baron Rivendare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(609,699,32,559,1,0,0,0,0,'Nagrand Arena','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(617,116,40,164,2,0,0,0,0,'Blacksmithing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(646,714,8,710,0,0,0,0,0,'The Defiler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(651,705,7,45,400,0,0,0,0,'Bows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(745,431,27,10985,1,0,0,0,0,'A Distraction for Akama','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(748,425,27,9270,1,0,0,0,0,'Atiesh, Greatstaff of the Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(760,700,36,18853,1,0,0,0,0,'Insignia of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(780,701,36,18864,1,0,0,0,0,'Insignia of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(823,728,43,244,1,0,0,0,0,'Sen\'jin Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(846,730,8,135,0,0,0,0,0,'Grand Master in First Aid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(849,731,40,164,3,0,0,0,0,'Blacksmithing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(860,732,40,164,4,0,0,0,0,'Blacksmithing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(871,733,40,164,5,0,0,0,0,'Blacksmithing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(882,734,40,164,6,0,0,0,0,'Blacksmithing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(893,735,40,164,6,0,0,0,0,'Blacksmithing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(904,736,43,184,1,0,0,0,0,'Palemane Rock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(918,750,43,462,1,0,0,0,0,'The Sludge Fen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(945,760,43,442,1,0,0,0,0,'Corrahn\'s Dagger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(963,761,43,562,1,0,0,0,0,'Northfold Manor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(993,762,46,81,42000,0,0,0,0,'Exalted Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1007,763,46,942,42000,0,0,0,0,'Cenarion Expedition','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1010,764,46,935,42000,0,0,0,0,'The Sha\'tar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1015,765,43,582,1,0,0,0,0,'Camp Boff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1029,766,43,822,1,0,0,0,0,'Garrison Armory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1038,768,43,235,1,0,0,0,0,'Solliden Farmstead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1054,769,43,302,1,0,0,0,0,'The Shining Strand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1069,770,43,962,1,0,0,0,0,'Caer Darrow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1082,771,43,893,1,0,0,0,0,'The Marris Stead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1104,772,43,402,1,0,0,0,0,'Tarren Mill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1116,773,43,602,1,0,0,0,0,'Plaguemist Ravine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1130,774,43,722,1,0,0,0,0,'The Cauldron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1137,775,43,782,1,0,0,0,0,'Morgan\'s Vigil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1147,776,43,122,1,0,0,0,0,'Goldshire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1159,777,43,1061,1,0,0,0,0,'The Vice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1162,778,43,422,1,0,0,0,0,'Addle\'s Stead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1174,779,43,316,1,0,0,0,0,'Stonewrought Dam','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1188,780,43,363,1,0,0,0,0,'Lake Everstill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1197,781,43,524,1,0,0,0,0,'Nesingwary\'s Expedition','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1224,782,43,542,1,0,0,0,0,'Misty Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1249,802,43,284,1,0,0,0,0,'Saldean\'s Farm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1263,841,43,382,1,0,0,0,0,'Black Channel Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1277,42,8,760,1,0,0,0,0,'Alterac Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1300,842,43,84,1,0,0,0,0,'Ban\'ethil Hollow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1311,843,43,1180,1,0,0,0,0,'Manaforge B\'naar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1315,844,43,341,1,0,0,0,0,'Ruins of Mathystra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1324,845,43,742,1,0,0,0,0,'Lake Falathim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1342,846,43,686,1,0,0,0,0,'Darkcloud Pinnacle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1351,847,43,930,1,0,0,0,0,'Grimtotem Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1362,850,43,662,1,0,0,0,0,'Witch Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1366,848,43,774,1,0,0,0,0,'Nijel\'s Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1395,849,43,997,1,0,0,0,0,'Lower Wilds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1402,853,43,862,1,0,0,0,0,'Talonbranch Glade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1406,851,43,659,1,0,0,0,0,'Sandsorrow Watch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1410,852,43,842,1,0,0,0,0,'The Shattered Strand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1454,854,43,622,1,0,0,0,0,'Golakka Hot Springs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1462,856,43,1023,1,0,0,0,0,'Valor\'s Rest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1474,857,43,1002,1,0,0,0,0,'Timbermaw Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1487,43,8,736,1,0,0,0,0,'Mulgore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1505,858,43,1150,1,0,0,0,0,'Suncrown Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1509,859,43,1128,1,0,0,0,0,'Ruins of Silvermoon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1553,860,43,1363,1,0,0,0,0,'Ammen Ford','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1574,861,43,1329,1,0,0,0,0,'Axxarien','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1606,862,43,1200,1,0,0,0,0,'Expedition Armory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1610,863,43,1125,1,0,0,0,0,'Ango\'rosh Grounds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1615,864,43,1103,1,0,0,0,0,'Eclipse Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1619,865,43,1289,1,0,0,0,0,'Bladed Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1623,866,43,1190,1,0,0,0,0,'Garadar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1783,44,8,863,1,0,0,0,0,'Zangarmarsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1791,868,43,1456,1,0,0,0,0,'Dawnstar Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(1812,873,1,30,1,3,30,3,30,'Tower A1 owned by the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,2),(1821,229,35,0,30,3,30,3,30,'30 hks in av','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(1824,204,1,489,1,3,489,3,489,'win warsong','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',14,0,0,0,2),(1825,220,1,30,1,3,30,3,30,'win av','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,2),(1837,878,42,13917,1,0,0,0,0,'103 Pound Mightfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1887,905,27,11666,1,0,0,0,0,'Bait Bandits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1892,906,27,11379,1,0,0,0,0,'Super Hot Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1899,907,8,711,0,0,0,0,0,'Knight of Arathor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1903,908,27,11336,1,0,0,0,0,'Call to Arms: Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1907,909,27,11340,1,0,0,0,0,'Call to Arms: Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1911,910,27,8713,1,0,0,0,0,'Elder Starsong in the Sunken Temple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1917,911,27,8720,1,0,0,0,0,'Elder Skygleam in Azshara','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1923,912,27,8647,1,0,0,0,0,'Elder Bellowrage in Blasted Lands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1935,913,8,911,0,0,0,0,0,'Elders of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1992,914,27,8678,1,0,0,0,0,'Elder Wheathoof in Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(1997,915,27,8866,1,0,0,0,0,'Elder Bronzebeard in Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2007,940,27,208,1,0,0,0,0,'Big Game Hunter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2009,941,8,939,0,0,0,0,0,'Hills Like White Elekk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2013,942,46,978,42000,0,0,0,0,'Exalted with the Kurenai','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2016,943,46,941,42000,0,0,0,0,'Exalted with the The Mag\'har','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2024,945,8,947,0,0,0,0,0,'The Argent Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2031,948,46,47,42000,0,0,0,0,'Exalted Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2040,952,8,950,0,0,0,0,0,'Frenzyheart Tribe','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2042,480,0,28921,1,0,0,0,0,'Hadronox','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2046,953,46,942,42000,0,0,0,0,'Exalted with Cenarion Expedition','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2055,961,27,12703,1,0,0,0,0,'Kartak\'s Rampage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2063,962,27,12705,1,0,0,0,0,'Will of the Titans','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2073,963,27,12333,1,0,0,0,0,'Azuremyst Isle, Azure Watch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2100,965,27,12398,1,0,0,0,0,'Dustwallow Marsh, Mudsprocket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2133,966,27,12344,1,0,0,0,0,'Duskwood, Darkshire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2146,967,27,12397,1,0,0,0,0,'Stranglethorn Vale, Booty Bay','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2196,969,27,12359,1,0,0,0,0,'Blade\'s Edge Mountains, Toshley\'s Station','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2218,968,27,12393,1,0,0,0,0,'Blade\'s Edge Mountains, Thunderlord Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2226,971,8,967,0,0,0,0,0,'Tricks and Treats of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2229,970,8,966,0,0,0,0,0,'Tricks and Treats of Eastern Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2261,979,36,34001,1,0,0,0,0,'Flimsy Female Draenei Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(2282,289,27,12139,1,0,0,0,0,'\"Let the Fires Come!\"','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(2336,621,57,31776,1,0,0,0,0,'Consortium Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(2343,556,49,1,1,0,0,0,0,'Neck','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2360,245,52,11,1,0,0,0,0,'Druid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2370,246,53,2,1,0,0,0,0,'Orc','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2375,1005,53,1,1,0,0,0,0,'Human','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(2401,227,13,0,300000,3,529,3,529,'Do 300,000 Damage in Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,2),(2419,1010,8,1007,0,0,0,0,0,'The Wyrmrest Accord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3064,1022,27,11808,1,0,0,0,0,'Blasted Lands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3077,1023,27,11806,1,0,0,0,0,'Azuremyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3090,1024,27,11818,1,0,0,0,0,'Hellfire Peninsula','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3102,1025,27,11842,1,0,0,0,0,'Badlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3113,1026,27,11845,1,0,0,0,0,'Desolace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3125,1027,27,11851,1,0,0,0,0,'Hellfire Peninsula','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3132,1028,27,11766,1,0,0,0,0,'Badlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3143,1029,27,11769,1,0,0,0,0,'Desolace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3155,1030,27,11775,1,0,0,0,0,'Hellfire Peninsula','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3162,1031,27,11737,1,0,0,0,0,'Blasted Lands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3175,1032,27,11735,1,0,0,0,0,'Azuremyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3187,1033,27,11747,1,0,0,0,0,'Hellfire Peninsula','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3194,1034,8,1023,0,0,0,0,0,'Flame Warden of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3197,1035,8,1029,0,0,0,0,0,'Extinguishing Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3200,1036,8,1026,0,0,0,0,0,'Flame Keeper of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3203,1037,8,1032,0,0,0,0,0,'Extinguishing Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3206,1038,8,1035,0,0,0,0,0,'Desecration of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3208,1039,8,1037,0,0,0,0,0,'Desecration of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3210,283,28,24737,1,0,0,0,0,'Transformed by Hallowed Wand - Ghost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3217,1040,27,8373,1,0,0,0,0,'The Power of Pine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3219,1041,27,1657,1,0,0,0,0,'Stinking Up Southshore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3222,248,42,6835,1,0,0,0,0,'Black Tuxedo Pants','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3228,396,36,19024,1,0,0,0,0,'Arena Grand Master item gained','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(3302,344,41,20065,1,0,0,0,0,'Arathi Basin Mageweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3352,1145,27,9339,1,0,0,0,0,'Horde, A Thief\'s Reward','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(3369,231,56,0,20,3,529,1,0,'Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,2),(3387,225,1,30,1,3,30,3,30,'Trogg Cave Owned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,2),(3389,1164,1,30,1,3,30,3,30,'Trogg Cave Owned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,2),(3393,1167,8,221,0,0,0,0,0,'Alterac Grave Robber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3405,1168,8,221,0,0,0,0,0,'Alterac Grave Robber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3417,1169,8,165,0,0,0,0,0,'Arathi Basin Perfection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3432,1170,8,165,0,0,0,0,0,'Arathi Basin Perfection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3447,1171,8,783,0,0,0,0,0,'The Perfect Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3462,1172,8,199,0,0,0,0,0,'Capture the Flag','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3477,1173,8,199,0,0,0,0,0,'Capture the Flag','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3489,1174,8,876,0,0,0,0,0,'Brutally Dedicated','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3501,1175,8,1170,0,0,0,0,0,'Master of Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3516,1183,28,43959,1,0,0,0,0,'Stranglethorn Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3528,1184,41,33029,1,0,0,0,0,'Barleybrew Dark','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3543,1185,41,33024,1,0,0,0,0,'Pickled Sausage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3558,1186,27,12192,1,0,0,0,0,'Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(3560,1187,36,18249,1,0,0,0,0,'Crescent Key','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3575,484,0,29305,1,0,0,0,0,'Moorabi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3579,481,0,29309,1,0,0,0,0,'Elder Nadox','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3595,1203,41,33034,1,0,0,0,0,'Gordok Grog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3610,903,46,932,42000,0,0,0,0,'Exalted with The Aldor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(3624,1225,72,182959,1,0,0,0,0,'Bluefish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3702,489,0,24200,1,0,0,0,0,'Skarvald the Constructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3706,667,0,17536,1,0,0,0,0,'Nazan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3724,557,49,1,1,0,0,0,0,'Neck','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3739,1206,54,225,1,0,0,0,0,'Steam Frog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3763,1244,68,21581,1,0,0,0,0,'Aftermath of the Second War','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3805,161,1,529,1,0,0,0,0,'Overcome a 500 resource disadvantage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(3827,252,35,0,50,0,0,0,0,'26272','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(3835,563,0,15953,1,0,0,0,0,'Grand Widow Faerlina','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3838,565,0,15931,1,0,0,0,0,'Grobbulus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3842,567,0,15936,1,0,0,0,0,'Heigan the Unclean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3845,569,0,16060,1,0,0,0,0,'Gothik the Harvester','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3853,153,72,180582,1,0,0,0,0,'Lesser Oily Blackmouth School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(3873,1257,72,180901,1,0,0,0,0,'Bloodsail Wreckage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3884,1262,8,1190,0,0,0,0,0,'Mysteries of the Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3905,45,8,1263,0,0,0,0,0,'Howling Fjord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3916,1274,8,1190,0,0,0,0,0,'Mysteries of the Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3929,1280,54,58,1,0,0,0,0,'Kissed Jeremiah Payson','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3937,1282,27,11023,1,0,0,0,0,'Summon Reindeer Flying Mount Tier 3.0 (Brown)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(3940,1283,8,629,0,0,0,0,0,'Ragefire Chasm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(3965,1284,8,648,0,0,0,0,0,'The Blood Furnace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4010,1285,8,686,0,0,0,0,0,'Molten Core','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4015,1286,8,691,0,0,0,0,0,'Zul\'Aman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4024,1287,8,668,0,0,0,0,0,'Heroic The Blood Furnace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4041,1288,8,478,0,0,0,0,0,'The Nexus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4057,1289,8,490,0,0,0,0,0,'Heroic The Nexus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4073,1292,36,32917,1,0,0,0,0,'Filled Yellow Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4079,1293,36,33017,1,0,0,0,0,'Filled Blue Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4092,328,62,0,0,0,0,0,0,'Money from questing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,2),(4123,1264,43,1464,0,0,0,0,0,'Steeljaw\'s Caravan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4137,1263,43,1493,0,0,0,0,0,'Cauldros Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4160,1265,43,1497,0,0,0,0,0,'Lake Indu\'le','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4179,1266,43,1465,0,0,0,0,0,'Drak\'Tharon Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4193,1267,43,1531,0,0,0,0,0,'Drak\'Sotra Fields','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4207,1268,43,1545,0,0,0,0,0,'The Savage Thicket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4238,629,27,5761,1,0,0,0,0,'Slaying the Beast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4239,628,27,166,1,0,0,0,0,'The Defias Brotherhood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4246,630,27,6981,1,0,0,0,0,'The Glowing Shard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4247,631,27,1014,1,0,0,0,0,'Arugal Must Die','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4249,633,27,391,1,0,0,0,0,'The Stockade Riots','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4250,635,27,1102,1,0,0,0,0,'A Vengeful Fate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4252,634,27,2929,1,0,0,0,0,'The Grand Betrayal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4254,636,27,3636,1,0,0,0,0,'Bring the Light','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4256,638,27,2278,1,0,0,0,0,'The Platinum Discs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4259,640,27,7065,1,0,0,0,0,'Corruption of Earth and Seed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4261,641,27,3373,1,0,0,0,0,'The Essence of Eranikus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4262,642,27,4362,1,0,0,0,0,'The Fate of the Kingdom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4264,688,27,8183,1,0,0,0,0,'The Heart of Hakkar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4265,689,27,8791,1,0,0,0,0,'The Fall of Ossirian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4268,684,27,7635,1,0,0,0,0,'A Proper String','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4289,345,41,32905,0,0,0,0,0,'Bottled Nethergon Vapor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4311,922,41,33093,0,0,0,0,0,'Mana Potion Injector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4411,811,41,13513,0,0,0,0,0,'Flask of Chromatic Resistance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4440,643,27,5081,1,0,0,0,0,'Maxwell\'s Mission','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4443,1307,27,5102,1,0,0,0,0,'General Drakkisath\'s Demise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4447,685,27,7781,1,0,0,0,0,'The Lord of Blackrock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4450,687,27,8656,1,0,0,0,0,'Striker\'s Hauberk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4461,647,27,9575,1,0,0,0,0,'Weaken the Ramparts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4463,650,27,9719,1,0,0,0,0,'Stalk the Stalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4464,651,27,10165,1,0,0,0,0,'Undercutting the Competition','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4465,666,27,10167,1,0,0,0,0,'Auchindoun...','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4467,652,27,10284,1,0,0,0,0,'Escape from Durnholde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4468,653,27,10098,1,0,0,0,0,'Terokk\'s Legacy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4469,654,27,10095,1,0,0,0,0,'Into the Heart of the Labyrinth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4471,655,27,9836,1,0,0,0,0,'The Master\'s Touch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4473,656,27,9763,1,0,0,0,0,'The Warlord\'s Hideout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4475,657,27,9492,1,0,0,0,0,'Turning the Tide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4480,658,27,10704,1,0,0,0,0,'How to Break Into the Arcatraz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4481,659,27,10704,1,0,0,0,0,'How to Break Into the Arcatraz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4482,660,27,10882,1,0,0,0,0,'Harbinger of Doom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4484,661,27,11492,1,0,0,0,0,'Hard to Kill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4485,675,27,10885,1,0,0,0,0,'Trial of the Naaru: Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4486,677,27,10885,1,0,0,0,0,'Trial of the Naaru: Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4487,678,27,9524,1,0,0,0,0,'Imprisoned in the Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4490,681,27,10886,1,0,0,0,0,'Trial of the Naaru: Tenacity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4491,690,27,9844,1,0,0,0,0,'A Demonic Presence','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4492,691,27,11178,1,0,0,0,0,'Blood of the Warlord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4493,692,27,10901,1,0,0,0,0,'The Cudgel of Kar\'desh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4494,693,27,10888,1,0,0,0,0,'Trial of the Naaru: Magtheridon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4497,694,27,10445,1,0,0,0,0,'The Vials of Eternity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4498,696,27,10445,1,0,0,0,0,'The Vials of Eternity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4500,697,27,10959,1,0,0,0,0,'The Fall of the Betrayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4505,1311,0,18682,1,0,0,0,0,'Bog Lurker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4597,698,36,34247,1,0,0,0,0,'Apolyon, the Soul-Render','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4618,695,36,30909,1,0,0,0,0,'Antonidas\'s Aegis of Rapt Concentration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(4720,812,41,19010,0,0,0,0,0,'Greater Healthstone (1)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4738,924,46,1073,42000,0,0,0,0,'Exlated with the Kalu\'ak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4751,925,46,942,42000,0,0,0,0,'Exlated with Cenarion Expedition','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4769,927,49,3,1,0,0,0,0,'Body is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4940,867,43,1161,1,0,0,0,0,'Allerian Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4949,107,78,0,0,0,0,0,0,'Demons','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4966,796,28,25435,0,0,0,0,0,'Resurrection (Rank 6)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4972,798,28,26994,0,0,0,0,0,'Rebirth (Rank 6)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4978,1229,28,50764,0,0,0,0,0,'Revive (Rank 6)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4984,98,14,0,0,0,0,0,0,'Daily quests','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(4993,350,68,191164,0,0,0,0,0,'Portal to Dalaran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5019,33,11,4024,130,0,0,0,0,'Complete 130 quests in Borean Tundra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(5021,388,70,0,50,0,0,0,0,'Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(5032,1006,70,0,50,0,0,0,0,'Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(5043,1358,11,4024,150,0,0,0,0,'Complete 140 quests in Borean Tundra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(5046,1360,8,1359,1,0,0,0,0,'Might of Dragonblight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5080,284,36,34001,1,0,0,0,0,'Flimsy Female Draenei Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5142,1396,27,13013,1,0,0,0,0,'Elder Beldak in Westfall Brigade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5246,490,0,26763,1,0,0,0,0,'Anomalus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5268,1436,34,48954,0,0,0,0,0,'Zhevra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(5275,150,109,3,1,0,0,0,0,'Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5291,1457,43,1598,0,0,0,0,0,'The Decrepit Flow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5307,1463,8,1007,0,0,0,0,0,'The Wyrmrest Accord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5314,926,46,76,42000,0,0,0,0,'Exalted with Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5329,1466,46,54,42000,0,0,0,0,'Exalted with Gnomergan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5467,1467,0,26529,1,0,0,0,0,'Meathook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5493,381,35,0,0,0,0,0,0,'Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5500,382,35,0,0,0,0,0,0,'Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5530,1488,56,0,0,0,0,0,0,'Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5534,1490,56,0,0,0,0,0,0,'Blade\'s Edge Arena','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5537,1491,56,0,0,0,0,0,0,'Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5552,1199,40,164,1,0,0,0,0,'Blacksmithing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5563,1200,7,185,450,0,0,0,0,'Cooking','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5568,1201,7,202,450,0,0,0,0,'Engineering','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5577,1202,7,55,400,0,0,0,0,'Two-Handed Swords','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5592,281,7,129,450,0,0,0,0,'First aid skill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,2),(5602,202,30,42,1,0,0,0,0,'Cap in 75 seconds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,6,61266,75,2),(5606,207,70,0,1,0,0,0,0,'Carrying Alliance Flag','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(5619,1241,73,18716,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5631,1103,0,26861,1,0,0,0,0,'King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5663,1516,8,153,0,0,0,0,0,'The Old Gnome and the Sea','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5681,1517,72,192053,1,0,0,0,0,'Deep Sea Monsterbelly School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5691,1104,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5703,1525,27,11379,1,0,0,0,0,'Super Hot Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5707,1526,27,11666,1,0,0,0,0,'Bait Bandits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5764,1563,8,877,0,0,0,0,0,'The Cake Is Not A Lie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5774,291,110,44212,1,0,0,0,0,'Blood Elf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5787,1291,69,45123,1,0,0,0,0,'Romantic Picnic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(5799,1576,27,12948,1,0,0,0,0,'The Champion of Anguish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5805,1596,27,12713,1,0,0,0,0,'Betrayal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5819,1656,8,288,0,0,0,0,0,'Out With It','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5820,288,29,42966,1,0,0,0,0,'Upset Tummy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(5832,1657,8,288,0,0,0,0,0,'Out With It','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5844,1269,43,1590,0,0,0,0,0,'Narvir\'s Cradle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5860,1270,43,1563,0,0,0,0,0,'Icecrown Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5888,1658,0,15990,1,0,0,0,0,'Kel\'Thuzad (10 or 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5892,839,15,529,0,0,0,0,0,'Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5896,840,1,529,0,0,0,0,0,'Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(5901,1676,11,45,700,0,0,0,0,'Arathi Highlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(5953,1677,11,45,550,0,0,0,0,'Arathi Highlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(6005,1678,11,331,700,0,0,0,0,'Ashenvale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(6100,1680,11,331,685,0,0,0,0,'Ashenvale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(6140,341,90,0,0,0,0,0,0,'Epic Items Looted','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6141,336,91,0,0,0,0,0,0,'Legendary items obtained','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6142,342,91,0,0,0,0,0,0,'Epic items obtained','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6144,1681,8,1678,0,0,0,0,0,'Loremaster of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6148,1682,8,1680,0,0,0,0,0,'Loremaster of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6152,662,34,17708,0,0,0,0,0,'Mini Diablo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6153,663,34,17707,0,0,0,0,0,'Panda Cub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6154,664,34,17709,0,0,0,0,0,'Zergling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6155,665,34,32298,0,0,0,0,0,'Netherwhelp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6156,683,34,52615,0,0,0,0,0,'Frosty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6157,411,34,24696,0,0,0,0,0,'Murky','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6158,414,34,53082,0,0,0,0,0,'Tyrael','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6163,882,34,36702,0,0,0,0,0,'Fiery Warhorse','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6167,886,34,37015,0,0,0,0,0,'Swift Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6168,887,34,44744,0,0,0,0,0,'Merciless Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6169,888,34,49193,0,0,0,0,0,'Vengeful Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6175,1683,8,2796,0,0,0,0,0,'Brew of the Month','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6182,1684,8,2796,0,0,0,0,0,'Brew of the Month','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6192,879,34,17450,0,0,0,0,0,'Ivory Raptor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6206,893,34,43927,0,0,0,0,0,'Cenarion War Hippogryph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6208,303,34,43900,0,0,0,0,0,'swift brewfest ram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6214,727,34,22718,0,0,0,0,0,'Black War Kodo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6224,279,27,6984,1,0,0,0,0,'A Smokywood Pastures\' Thank You!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6226,1685,110,26004,1,0,0,0,0,'Durkot Wolfbrother in Warsong Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6236,1686,110,26004,1,0,0,0,0,'Brother Anton in Nijel\'s Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6238,1687,110,44755,1,0,0,0,0,'Human Warrior','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6248,1688,29,21144,1,0,0,0,0,'Egg Nog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6251,1689,27,8744,1,0,0,0,0,'A Carefully Wrapped Present','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6258,1690,41,17712,1,0,0,0,0,'Winter Veil Disguise Kit in Dalaran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6263,1691,8,252,0,0,0,0,0,'With a Little Helper from My Friends','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6275,1692,8,252,0,0,0,0,0,'With a Little Helper from My Friends','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6302,1699,110,27571,1,0,0,0,0,'Orc Death Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6323,1700,36,22235,1,0,0,0,0,'Truesilver Shafted Arrow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6325,1701,29,70579,1,0,0,0,0,'I\'ll follow you all around Azeroth.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6333,1702,41,22237,1,0,0,0,0,'Dark Desire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6344,1704,54,203,1,0,0,0,0,'Battle Ring of Gurubashi Arena','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6348,1706,27,13203,1,0,0,0,0,'Crashin\' Thrashin\' Racer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6349,1705,36,34425,1,0,0,0,0,'Clockwork Rocket Bot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6352,1693,8,1188,0,0,0,0,0,'Shafted!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6366,1707,8,1188,0,0,0,0,0,'Shafted!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6382,726,34,33050,0,0,0,0,0,'Magical Crawdad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6414,1768,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6434,1515,28,58630,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6441,1737,0,28094,1,0,0,0,0,'Wintergrasp Demolisher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6487,1777,29,45569,1,0,0,0,0,'Baked Manta Ray','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6601,1780,41,43492,1,0,0,0,0,'Haunted Herring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6609,1782,27,13101,1,0,0,0,0,'Convention at the Legerdemain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6614,1783,27,13113,1,0,0,0,0,'Convention at the Legerdemain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6619,1784,8,877,0,0,0,0,0,'The Cake Is Not A Lie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6627,1785,41,34753,1,0,0,0,0,'Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6634,604,70,0,5,0,0,0,0,'Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6638,603,70,0,5,0,0,0,0,'Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6642,1786,30,61,1,0,0,0,0,'Assault a tower in Alterac Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6652,1788,41,43490,1,0,0,0,0,'Tasty Cupcake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6663,1792,34,28740,0,0,0,0,0,'Whiskers the Rat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6744,1793,8,1788,0,0,0,0,0,'Bad Example','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6759,1800,29,33290,1,0,0,0,0,'Blackened Trout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6789,432,74,0,1,0,0,0,0,'Champion of the Naaru','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6806,500,0,26532,1,0,0,0,0,'Chrono-Lord Epoch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6814,493,0,26631,1,0,0,0,0,'Novos the Summoner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6818,3838,42,40753,1,0,0,0,0,'Emblem of Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(6825,3839,42,40753,25,0,0,0,0,'25 Emblems of Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(6826,3840,42,40753,50,0,0,0,0,'50 Emblems of Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(6827,3841,42,40753,100,0,0,0,0,'100 Emblems of Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(6828,3842,42,40753,250,0,0,0,0,'250 Emblems of Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(6829,3843,42,40753,500,0,0,0,0,'500 Emblems of Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(6830,3844,42,40753,1000,0,0,0,0,'1000 Emblems of Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(6832,497,0,28546,1,0,0,0,0,'Ionar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6840,495,0,29305,1,0,0,0,0,'Moorabi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6849,491,0,28921,1,0,0,0,0,'Hadronox','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6852,492,0,29309,1,0,0,0,0,'Elder Nadox','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6858,496,0,27978,1,0,0,0,0,'Sjonnir the Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6860,498,0,27655,1,0,0,0,0,'Mage-Lord Urom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6865,499,0,26687,1,0,0,0,0,'Gortok Palehoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6935,485,28,59046,1,0,0,0,0,'The Tribunal of Ages','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(6975,415,34,58983,0,0,0,0,0,'Big Blizzard Bear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6981,1836,42,34486,1,0,0,0,0,'Old Crafty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(6982,1837,36,34484,1,0,0,0,0,'Old Ironjaw','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7138,1865,0,29312,1,0,0,0,0,'Lavanthor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7157,578,0,16060,1,0,0,0,0,'Gothik the Harvester','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7167,579,0,15936,1,0,0,0,0,'Heigan the Unclean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7178,1871,0,27656,1,0,0,0,0,'Emerald Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7188,1877,0,30452,1,0,0,0,0,'Tenebron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7190,624,0,30452,1,0,0,0,0,'Tenebron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7195,1066,54,52,0,0,0,0,0,'guffaw','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7221,1745,112,185,0,0,0,0,0,'Cooking recipes known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7222,1748,112,129,0,0,0,0,0,'First Aid Manuals learned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7223,1729,112,171,0,0,0,0,0,'Alchemy recipes known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7224,1730,112,164,0,0,0,0,0,'Blacksmithing plans known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7225,178,112,333,0,0,0,0,0,'Enchanting formulae known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7226,1734,112,202,0,0,0,0,0,'Engineering Schematics known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7227,1735,112,773,0,0,0,0,0,'Inscriptions known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7228,1738,112,755,0,0,0,0,0,'Jewelcrafting Designs known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7229,1740,112,165,0,0,0,0,0,'Leatherworking Patterns known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7230,1741,112,197,0,0,0,0,0,'Tailoring Patterns known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7233,1936,34,39709,0,0,0,0,0,'Wolpertinger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7237,1956,68,192709,1,0,0,0,0,'The Schools of Arcane Magic - Abjuration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7245,1957,36,43640,1,0,0,0,0,'Archimonde\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7261,1958,34,59250,0,0,0,0,0,'Giant Sewer Rat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7279,2016,27,12268,1,0,0,0,0,'Pieces Parts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7288,2017,27,12270,1,0,0,0,0,'Shred the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7297,2018,27,13241,1,0,0,0,0,'Timear Foresees Ymirjar Berserkers in your Future!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7301,2019,27,13246,1,0,0,0,0,'Proof of Demise: Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7369,2076,34,60114,0,0,0,0,0,'Armored Brown Bear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7372,2077,34,59791,0,0,0,0,0,'Wooly Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7381,2078,34,61447,0,0,0,0,0,'Traveler\'s Tundra Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7388,2080,34,59785,0,0,0,0,0,'Black War Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7392,2081,34,61467,0,0,0,0,0,'Grand Black War Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7394,2082,36,43958,1,0,0,0,0,'Ice Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7398,2083,36,43961,1,0,0,0,0,'Grand Ice Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7402,2084,36,40585,1,0,0,0,0,'Signet of the Kirin Tor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7416,2092,74,0,1,0,0,0,0,'Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7419,2093,74,0,1,0,0,0,0,'Duelist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7442,2094,42,43703,1,0,0,0,0,'Ansirem\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7464,2095,42,43686,1,0,0,0,0,'Alleria\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7487,2096,8,2095,0,0,0,0,0,'Silver in the City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7492,2097,34,60424,0,0,0,0,0,'Mekgineer\'s Chopper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7529,2137,8,1858,0,0,0,0,0,'Arachnophobia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7539,2138,8,1859,0,0,0,0,0,'Arachnophobia (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7554,2144,8,1707,0,0,0,0,0,'Fool For Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7561,2145,8,1693,0,0,0,0,0,'Fool For Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7580,2136,8,2150,0,0,0,0,0,'Split Personality','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7643,2194,8,1310,0,0,0,0,0,'Storm the Beach','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7655,2195,8,1310,0,0,0,0,0,'Storm the Beach','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7705,1723,70,0,100,0,0,0,0,'Cannon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(7710,2199,70,0,10,0,0,0,0,'Eastspark Workshop','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7723,1752,8,1755,0,0,0,0,0,'Within Our Grasp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7767,389,36,19024,1,0,0,0,0,'Arena Grand Master obtained','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(7769,1502,30,42,1,0,0,0,0,'Cap in 75 seconds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,6,61265,75,2),(7771,322,20,26794,0,0,0,0,0,'Ormorok the Tree-Shaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7805,1375,28,59450,1,0,0,0,0,'The Four Horsemen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7806,1383,28,59450,1,0,0,0,0,'The Four Horsemen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7810,323,20,15953,0,0,0,0,0,'Grand Widow Faerlina','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7830,324,20,16060,0,0,0,0,0,'Gothik the Harvester','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7855,799,28,2008,0,0,0,0,0,'Ancestral Spirit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(7859,800,28,10324,0,0,0,0,0,'Redemption','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8101,2256,0,32501,1,0,0,0,0,'High Thane Jorfus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8146,686,27,7787,1,0,0,0,0,'Thunderfury, Blessed Blade of the Windseeker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(8588,837,32,559,0,0,0,0,0,'Nagrand Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8591,838,33,617,0,0,0,0,0,'Dalaran Sewers Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8596,363,33,559,0,0,0,0,0,'Nagrand 5v5 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8602,362,32,618,0,0,0,0,0,'Ring of Valor 5v5 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8604,365,33,559,0,0,0,0,0,'Nagrand 3v3 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8608,364,32,559,0,0,0,0,0,'Nagrand 3v3 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8612,367,33,559,0,0,0,0,0,'nagrand 2v2 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8615,366,32,617,0,0,0,0,0,'Dalran 2v2 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8648,923,41,3388,0,0,0,0,0,'Strong Troll\'s Blood Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8699,347,41,20227,0,0,0,0,0,'Highlander\'s Iron Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(8759,1310,28,65246,1,0,0,3,607,'Win in 4 minutes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,21702,240,2),(8761,801,29,20760,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8779,2316,34,58615,0,0,0,0,0,'Brutal Nether Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(8819,2336,46,21,42000,0,0,0,0,'Exalted with Booty Bay','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(8907,2358,27,9737,1,0,0,0,0,'True Masters of the Light','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(9061,1727,28,60676,1,0,0,0,0,'Destroy a tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(9082,412,41,33079,1,0,0,0,0,'Murloc Costume','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(9139,2436,29,61818,1,0,0,0,0,'Desolace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9143,2422,110,61815,1,0,0,0,0,'Draenei','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9159,2456,34,51851,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(9160,1198,113,0,0,0,0,0,0,'Honroable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9161,383,70,0,0,0,0,0,0,'Dalaran Sewers Arena Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9168,275,34,40613,0,0,0,0,0,'Willy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9179,2476,0,28094,1,0,0,0,0,'Wintergrasp Demolisher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9199,2419,29,61875,1,0,0,0,0,'Dolanaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9203,2497,29,61875,1,0,0,0,0,'Brill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9258,1234,28,61863,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9260,1508,28,61863,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9300,2557,54,225,1,0,0,0,0,'Borean Marmot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9338,1703,36,44731,1,0,0,0,0,'Bouquet of Ebon Roses','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(9619,2716,69,63624,1,0,0,0,0,'Learn a Second Talent Specialization.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(9658,2760,27,13725,1,0,0,0,0,'Champion of Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9659,2761,27,13724,1,0,0,0,0,'Champion of the Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9660,2762,27,13723,1,0,0,0,0,'Champion of Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9661,2763,27,13713,1,0,0,0,0,'Champion of Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9662,2764,27,13699,1,0,0,0,0,'Champion of Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9663,2765,27,13726,1,0,0,0,0,'Champion of Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9664,2766,27,13727,1,0,0,0,0,'Champion of Sen\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9665,2767,27,13731,1,0,0,0,0,'Champion of Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9666,2768,27,13728,1,0,0,0,0,'Champion of Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9667,2769,27,13729,1,0,0,0,0,'Champion of the Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9669,2770,8,2761,0,0,0,0,0,'Champion of the Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9674,2771,8,2766,0,0,0,0,0,'Champion of Sen\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9699,2756,27,13668,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(9719,2090,74,0,1,0,0,0,0,'Rival','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(9756,2758,27,13707,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,2),(9759,2776,8,1755,0,0,0,0,0,'Within Our Grasp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9779,2782,8,2778,0,0,0,0,0,'Champion of the Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9789,2788,8,2784,0,0,0,0,0,'Champion of Sen\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9818,2556,0,1412,1,0,0,0,0,'Squirrel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9819,2596,0,16998,1,0,0,0,0,'Mr. Bigglesworth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9839,259,110,25677,1,0,0,0,0,'Snowball Cairne Bloodhoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(9860,2796,27,12278,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(9864,2797,8,2418,0,0,0,0,0,'Chocoholic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9872,2798,8,2418,0,0,0,0,0,'Chocoholic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9899,2816,8,2765,0,0,0,0,0,'Champion of Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9905,2817,8,2760,0,0,0,0,0,'Champion of Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9968,1770,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(9969,1756,0,33113,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10000,2886,0,33186,1,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10004,2887,0,33186,1,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10008,2888,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10016,2889,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10024,2892,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10026,2893,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10028,2894,8,2888,0,0,0,0,0,'The Antechamber of Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10032,2895,8,2889,0,0,0,0,0,'Heroic: The Antechamber of Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10047,2907,0,33113,1,0,0,0,0,'Salvaged Siege Engine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10050,2908,0,33113,1,0,0,0,0,'Salvaged Siege Engine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10102,2957,8,2930,0,0,0,0,0,'Stokin\' the Furnace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10224,2836,28,64808,1,0,0,0,0,'The Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10238,2970,69,62807,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10240,2969,69,62807,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10263,3096,34,64927,0,0,0,0,0,'Deadly Gladiator\'s Frostwyrm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10287,2973,0,32872,1,0,0,0,0,'Participate in slaying Runic Colossus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10311,2974,0,32872,1,0,0,0,0,'Participate in slaying Runic Colossus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10322,3016,69,63988,1,0,0,0,0,'The Forging of the Demon Soul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10325,3015,69,63988,1,0,0,0,0,'The Forging of the Demon Soul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10342,2903,0,33118,1,0,0,0,0,'Ignis the Furnace Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10355,2904,0,33118,1,0,0,0,0,'Ignis the Furnace Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10367,2958,8,2929,0,0,0,0,0,'Stokin\' the Furnace (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10395,2984,28,65015,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10397,2985,28,65015,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10418,2945,0,32857,1,0,0,0,0,'Stormcaller Brundir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10420,2946,0,32867,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10422,2947,0,32867,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10424,2948,0,32867,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10438,2890,28,64985,1,0,0,0,0,'Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10442,1255,110,46661,1,0,0,0,0,'Snowball King Magni Bronzebeard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10454,2891,28,64985,1,0,0,0,0,'Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10519,3216,112,186,0,0,0,0,0,'Smelting Recipes Known','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10521,3217,27,13832,1,0,0,0,0,'Jewel of the Sewers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10526,3218,34,64731,0,0,0,0,0,'Sea Turtle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10544,2989,0,33432,1,0,0,0,0,'A Rocket Strike','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10547,3237,0,33432,1,0,0,0,0,'A Rocket Strike','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(10739,3356,36,13086,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16772094',2,0,0,0,2),(10741,3357,36,46102,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16772094',2,0,0,0,2),(10781,3003,28,65184,1,0,0,9,65311,'Defeat Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4,0,0,0,2),(10783,3002,28,65184,1,0,0,9,65311,'Defeat Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4,0,0,0,2),(10881,2091,74,0,1,0,0,0,0,'Deadly Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(10965,3496,34,49379,0,0,0,0,0,'Great Brewfest Kodo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11039,3536,34,66030,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16776702',2,0,0,0,2),(11080,3556,69,61849,1,0,0,0,0,'The Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11083,3557,69,61849,1,0,0,0,0,'Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11118,3576,29,62049,1,0,0,0,0,'Cranberry Chutney','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11124,3577,29,66035,1,0,0,0,0,'Cranberry Chutney','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11135,3580,69,65403,1,0,0,0,0,'Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11138,3581,69,65403,1,0,0,0,0,'The Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11164,3559,110,61781,1,0,0,0,0,'Dwarf Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11167,3558,29,66372,1,0,0,0,0,'Cranberry Chutney','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11178,3579,110,61926,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16741886',2,0,0,0,2),(11200,3596,27,14051,1,0,0,0,0,'Don\'t Forget The Stuffing!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11204,3597,27,14062,1,0,0,0,0,'Don\'t Forget The Stuffing!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11225,3618,36,45180,1,0,0,0,0,'Murkimus\' Little Spear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11258,3478,8,3576,0,0,0,0,0,'Now Were Cookin\'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11267,3656,8,3577,0,0,0,0,0,'Now Were Cookin\'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11321,3696,27,13724,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,2),(11330,3676,8,3696,0,0,0,0,0,'Argent Tournament Rank: Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11331,3677,8,3696,0,0,0,0,0,'Argent Tournament Rank: Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11399,3756,34,65439,0,0,0,0,0,'Furious Gladiator\'s Frostwyrm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11401,3757,34,67336,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11487,3845,30,245,1,3,628,3,628,'Assault a base','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,2),(11493,3847,28,68364,1,0,0,0,0,'Siege Engine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11498,3856,56,0,1,0,0,0,0,'Demolisher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11503,3857,8,3851,0,0,0,0,0,'Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11546,3812,0,34780,1,0,0,0,0,'Defeat Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11619,3876,42,40753,1500,0,0,0,0,'Emblem of Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(11639,3896,36,48527,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,2),(11680,3916,0,34780,1,0,0,0,0,'Defeat Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11685,3917,0,34780,1,0,0,0,0,'Defeat Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11690,3918,0,34780,1,0,0,0,0,'Defeat Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11718,263,0,25865,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775678',2,0,0,0,2),(11719,353,29,39937,0,0,0,0,0,'Ruby Slippers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11750,3957,8,4177,0,0,0,0,0,'Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(11800,3814,28,68620,1,0,0,0,0,'Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11801,3813,0,34797,1,0,0,0,0,'Icehowl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11802,3797,0,34797,1,0,0,0,0,'Icehowl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11804,3798,28,68620,1,0,0,0,0,'Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11860,3815,0,34497,1,0,0,0,0,'Val\'kyr Twins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,21853,180,2),(11861,3996,0,34780,1,0,0,0,0,'Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11862,3997,0,34780,1,0,0,0,0,'Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(11904,3802,28,68206,1,0,0,0,0,'VanCleef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12038,594,20,34942,0,0,0,0,0,'Deaths from Hogger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12063,3851,1,628,1,3,628,3,628,'Win Isle of Conquest.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12065,4177,1,628,1,3,628,3,628,'Win Isle of Conquest.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12068,3850,35,0,100,0,0,0,0,'Players killed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',1,0,0,0,2),(12159,3853,31,4750,1,3,628,3,628,'Hangar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4,0,0,0,2),(12179,4256,56,0,1,0,0,0,0,'Demolisher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12258,3799,0,34497,1,0,0,0,0,'Val\'kyr Twins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',10,1,21853,180,2),(12279,3937,28,68523,1,0,0,0,0,'Kill Acidmaw & Dreadscale within 10sec','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12281,3936,28,68523,1,0,0,0,0,'Kill Acidmaw & Dreadscale within 10sec','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12298,3778,28,68572,1,0,0,0,0,'Lana Stouthammer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12303,4296,28,68572,1,0,0,0,0,'Deathstalker Visceri','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12311,4297,28,68572,1,0,0,0,0,'Lana Stouthammer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12319,4298,28,68572,1,0,0,0,0,'Deathstalker Visceri','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12339,3817,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12342,3818,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12345,3808,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12348,3809,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12419,4316,42,40753,2500,0,0,0,0,'Emblem of Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,2),(12478,429,57,17182,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12479,428,57,19019,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12482,725,57,34334,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12619,4416,34,10696,0,0,0,0,0,'Azure Whelpling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12661,4436,110,67531,1,0,0,0,0,'Lady Sylvanas Windrunner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12664,4437,110,67531,1,0,0,0,0,'King Magni Bronzebeard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12679,4456,0,26861,1,0,0,0,0,'King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12739,4516,0,36502,1,0,0,0,0,'Devourer of Souls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12741,4517,0,36476,1,0,0,0,0,'Ick and Krick','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12746,4519,0,36502,1,0,0,0,0,'Devourer of Souls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12748,4520,0,36476,1,0,0,0,0,'Ick and Krick','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12758,4527,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12760,4528,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12763,4529,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12767,4532,8,4528,0,0,0,0,0,'The Plagueworks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12773,4531,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12799,4556,0,26861,1,0,0,0,0,'King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12839,1697,27,24611,1,0,0,0,0,'A Gift for the Prophet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12843,1698,27,24615,1,0,0,0,0,'A Gift for the Regent Lord of Quel\'Thalas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12859,1279,110,27571,1,0,0,0,0,'Handful of Rose Petals on Sraaz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12878,1695,27,24659,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,2),(12903,4596,27,24796,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,2),(12908,292,42,33292,1,0,0,0,0,'Hallowed Helm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12910,306,27,24803,1,0,0,0,0,'Win the Kalu\'ak Fishing Derby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12914,4600,34,71810,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,2),(12948,4604,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12950,4605,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12953,4606,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12955,4607,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12959,4608,8,4605,0,0,0,0,0,'The Plagueworks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12979,4579,28,72706,1,0,0,0,0,'Valithria','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12980,4619,28,72706,1,0,0,0,0,'Valithria','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12981,4616,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12982,4615,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12983,4614,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12985,4538,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12986,4577,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12988,4578,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12989,4620,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12990,4518,0,38113,1,0,0,0,0,'Marwyn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12991,4521,0,38113,1,0,0,0,0,'Marwyn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(12995,4535,28,72827,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12996,4580,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(12998,4611,28,72827,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13011,4539,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel while a vampire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13013,4618,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel while a vampire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13032,4617,0,37970,1,0,0,0,0,'Prince Valanar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13034,4582,0,37970,1,0,0,0,0,'Prince Valanar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13035,4537,28,72928,1,0,0,0,0,'Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13037,4613,28,72928,1,0,0,0,0,'Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13040,4628,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13044,4629,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13047,4630,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13049,4631,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13051,4632,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13055,4633,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13058,4634,0,37955,1,0,0,0,0,'Defeat Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13060,4635,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13062,4636,8,4629,0,0,0,0,0,'The Plagueworks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13067,4637,8,4633,0,0,0,0,0,'The Plagueworks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13072,4602,8,4629,0,0,0,0,0,'Heroic: The Plagueworks (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13076,4603,8,4633,0,0,0,0,0,'Heroic: The Plagueworks (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13079,4536,28,72959,1,0,0,0,0,'Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13081,4612,28,72959,1,0,0,0,0,'Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13163,4581,0,36597,1,0,0,0,0,'Vile Spirits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13164,4622,0,36597,1,0,0,0,0,'Vile Spirits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13233,2186,28,59450,1,0,0,0,0,'The Four Horsemen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13237,2187,28,59450,1,0,0,0,0,'The Four Horsemen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13245,4621,0,36597,1,0,0,0,0,'Allow Necrotic Plague to stack to 30 before defeating the Lich King in 25-player mode.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13247,4601,0,36597,1,0,0,0,0,'Allow Necrotic Plague to stack to 30 before defeating the Lich King in 10-player mode.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13257,346,41,43523,0,0,0,0,0,'Conjured Mana Strudel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13259,1197,113,0,0,0,0,0,0,'Honorable Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,2),(13373,4782,36,37895,1,0,0,0,0,'Filled Green Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13380,4784,36,40753,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,2),(13385,4785,36,40753,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,2),(13393,4534,0,36612,1,0,0,0,0,'Lord Marrowgar slain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13394,4610,0,36612,1,0,0,0,0,'Lord Marrowgar slain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13397,4788,36,31779,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,2),(13410,4789,36,31780,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,2),(13428,1205,8,4789,1,0,0,0,0,'Exalted with The Scryers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(13470,4824,34,78381,0,0,0,0,0,'Frosty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,2),(85,41,8,36,1,0,0,0,0,'The Empire of Zul\'Drak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(96,46,8,44,1,0,0,0,0,'Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(171,321,18,25,0,0,0,0,0,'25 man instances','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(191,477,0,24201,1,0,0,0,0,'Dalronn the Controller','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(197,478,0,26794,1,0,0,0,0,'Ormorok the Tree-Shaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(201,482,0,27483,1,0,0,0,0,'King Dred','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(204,487,0,27447,1,0,0,0,0,'Varos Cloudstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(208,488,0,26687,1,0,0,0,0,'Gortok Palehoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(212,479,0,26530,1,0,0,0,0,'Salramm the Fleshcrafter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(216,485,0,27977,1,0,0,0,0,'Krystallus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(219,486,0,28587,1,0,0,0,0,'Volkhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(229,230,8,1172,0,0,0,0,0,'Master of Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(353,562,0,15952,1,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(359,564,0,15932,1,0,0,0,0,'Gluth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(367,566,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(385,576,8,566,0,0,0,0,0,'The Plague Quarter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(391,577,8,567,0,0,0,0,0,'The Plague Quarter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(423,582,30,61,1,3,30,3,30,'Assault a tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,3),(433,584,31,3423,5,3,529,3,529,'Kill 5 people at the gold mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,3),(443,587,31,3872,5,3,566,3,566,'Kill 5 people at the Fel Reaver ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,3),(486,614,8,612,0,0,0,0,0,'Downing the Dark Lady','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(494,619,8,617,0,0,0,0,0,'Immortal No More','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(498,626,36,21543,1,0,0,0,0,'Festive Teal Pant Suit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(504,627,43,115,1,0,0,0,0,'Shimmer Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(536,637,0,3975,1,0,0,0,0,'Herod','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(547,644,0,11501,1,0,0,0,0,'King Gordok','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(610,699,32,572,1,0,0,0,0,'Ruins of Lordaeron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(618,116,40,333,2,0,0,0,0,'Enchanting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(648,714,8,712,0,0,0,0,0,'Warsong Outrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(652,705,7,226,400,0,0,0,0,'Crossbows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(749,425,27,9257,1,0,0,0,0,'Atiesh, Greatstaff of the Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(761,700,36,18849,1,0,0,0,0,'Insignia of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(781,701,36,18857,1,0,0,0,0,'Insignia of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(824,728,43,246,1,0,0,0,0,'Kolkar Crag','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(847,730,8,125,0,0,0,0,0,'Grand Master Cook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(850,731,40,333,3,0,0,0,0,'Enchanting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(861,732,40,333,4,0,0,0,0,'Enchanting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(872,733,40,333,5,0,0,0,0,'Enchanting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(883,734,40,333,6,0,0,0,0,'Enchanting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(894,735,40,333,6,0,0,0,0,'Enchanting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(914,736,43,186,1,0,0,0,0,'Bloodhoof Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(919,750,43,463,1,0,0,0,0,'The Mor\'shan Rampart','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(949,760,43,443,1,0,0,0,0,'Crushridge Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(994,762,46,68,42000,0,0,0,0,'Exalted Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1006,763,46,1011,42000,0,0,0,0,'Lower City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1012,764,46,942,42000,0,0,0,0,'Cenarion Expedition','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1016,765,43,583,1,0,0,0,0,'Agmond\'s End','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1030,766,43,823,1,0,0,0,0,'Nethergarde Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1039,768,43,234,1,0,0,0,0,'Agamand Mills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1055,769,43,303,1,0,0,0,0,'The Dead Field','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1070,770,43,963,1,0,0,0,0,'Sorrow Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1083,771,43,892,1,0,0,0,0,'The Undercroft','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1105,772,43,403,1,0,0,0,0,'Durnholde Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1117,773,43,603,1,0,0,0,0,'Hiri\'watha','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1131,774,43,723,1,0,0,0,0,'Blackchar Cave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1138,775,43,783,1,0,0,0,0,'Terror Wing Path','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1148,776,43,124,1,0,0,0,0,'Fargodeep Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1160,777,43,1062,1,0,0,0,0,'Karazhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1163,778,43,423,1,0,0,0,0,'Raven Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1175,779,43,317,1,0,0,0,0,'Mo\'grosh Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1186,780,43,361,1,0,0,0,0,'Three Corners','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1198,781,43,515,1,0,0,0,0,'Grom\'gol Base Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1225,782,43,543,1,0,0,0,0,'The Harborage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1250,802,43,282,1,0,0,0,0,'Furlbrow\'s Pumpkin Farm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1264,841,43,383,1,0,0,0,0,'Bluegill Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1278,42,8,761,1,0,0,0,0,'Arathi Highlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1301,842,43,86,1,0,0,0,0,'Dolanaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1312,843,43,1181,1,0,0,0,0,'Manaforge Coruu','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1316,844,43,342,1,0,0,0,0,'Tower of Althalaxx','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1325,845,43,743,1,0,0,0,0,'Maestra\'s Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1343,846,43,685,1,0,0,0,0,'The Screeching Canyon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1352,847,43,929,1,0,0,0,0,'Malaka\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1363,850,43,663,1,0,0,0,0,'Brackenwall Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1367,848,43,773,1,0,0,0,0,'Sargeron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1370,849,43,982,1,0,0,0,0,'Oneiros','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1403,853,43,863,1,0,0,0,0,'Irontree Woods','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1407,851,43,656,1,0,0,0,0,'Noonshade Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1411,852,43,843,1,0,0,0,0,'Jagged Reef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1455,854,43,623,1,0,0,0,0,'Terror Run','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1463,856,43,1024,1,0,0,0,0,'Cenarion Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1475,857,43,1003,1,0,0,0,0,'Lake Kel\'Theril','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1488,43,8,842,1,0,0,0,0,'Teldrassil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1506,858,43,1151,1,0,0,0,0,'Goldenmist Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1510,859,43,1129,1,0,0,0,0,'West Sanctum','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1554,860,43,1365,1,0,0,0,0,'Azure Watch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1575,861,43,1330,1,0,0,0,0,'Blacksilt Shore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1604,867,43,1167,1,0,0,0,0,'Cenarion Thicket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1607,862,43,1201,1,0,0,0,0,'Falcon Watch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1612,863,43,1133,1,0,0,0,0,'Feralfen Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1616,864,43,1104,1,0,0,0,0,'Legion Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1620,865,43,1290,1,0,0,0,0,'Bladespire Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1624,866,43,1191,1,0,0,0,0,'Halaa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1784,44,8,867,1,0,0,0,0,'Terokkar Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1792,868,43,1457,1,0,0,0,0,'Sunwell Plateau','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(1803,220,1,30,1,3,30,3,30,'Tower A1 owned by the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,3),(1822,229,35,0,30,3,566,3,566,'30 hks in eots','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(1826,873,1,30,1,3,30,3,30,'win av','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,3),(1838,878,42,13913,1,0,0,0,0,'22 Pound Lobster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1848,879,36,8586,1,0,0,0,0,'Mottled Red Raptor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(1888,905,27,11669,1,0,0,0,0,'Felblood Fillet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1893,906,27,11380,1,0,0,0,0,'Manalicious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1901,907,8,713,0,0,0,0,0,'Silverwing Sentinel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1904,908,27,11337,1,0,0,0,0,'Call to Arms: Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1908,909,27,11341,1,0,0,0,0,'Call to Arms: Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1912,910,27,8635,1,0,0,0,0,'Elder Splitrock in Maraudon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1918,911,27,8717,1,0,0,0,0,'Elder Moonwarden in The Crossroads','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1924,912,27,8649,1,0,0,0,0,'Elder Stormbrow in Goldshire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1936,913,8,910,0,0,0,0,0,'Elders of the Dungeons','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1993,914,27,8648,1,0,0,0,0,'Elder Darkcore in Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(1998,915,27,8646,1,0,0,0,0,'Elder Hammershout in Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2010,941,8,938,0,0,0,0,0,'The Snows of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2012,942,46,970,42000,0,0,0,0,'Exalted with the Sporeggar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2015,943,46,970,42000,0,0,0,0,'Exalted with the Sporeggar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2032,948,46,69,42000,0,0,0,0,'Exalted Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2043,480,0,29120,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2044,761,43,563,1,0,0,0,0,'Boulder\'gor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2056,961,27,12759,1,0,0,0,0,'Tools of War','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2064,962,27,12761,1,0,0,0,0,'Mastery of the Crystals','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2074,963,27,12341,1,0,0,0,0,'Bloodmyst Isle, Blood Watch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2101,965,27,12401,1,0,0,0,0,'Silithus, Cenarion Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2134,966,27,12286,1,0,0,0,0,'Elwynn Forest, Goldshire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2147,967,27,12380,1,0,0,0,0,'Arathi Highlands, Hammerfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2197,969,27,12352,1,0,0,0,0,'Hellfire Peninsula, Honor Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2219,968,27,12389,1,0,0,0,0,'Hellfire Peninsula, Falcon Watch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2227,971,8,968,0,0,0,0,0,'Tricks and Treats of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2230,970,8,969,0,0,0,0,0,'Tricks and Treats of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2262,979,36,20562,1,0,0,0,0,'Flimsy Female Dwarf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(2283,289,27,11131,1,0,0,0,0,'Stop the Fires!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(2337,621,57,31405,1,0,0,0,0,'Tabard of the Illidari','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(2344,556,49,2,1,0,0,0,0,'Shoulder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2361,245,52,3,1,0,0,0,0,'Hunter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2371,246,53,6,1,0,0,0,0,'Tauren','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2376,1005,53,7,1,0,0,0,0,'Gnome','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(2402,227,13,0,300000,3,489,3,489,'Do 300,000 Damage in Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,3),(2420,1010,8,1008,0,0,0,0,0,'The Kirin Tor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3065,1022,27,11810,1,0,0,0,0,'Burning Steppes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3078,1023,27,11809,1,0,0,0,0,'Bloodmyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3091,1024,27,11821,1,0,0,0,0,'Nagrand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3103,1025,27,11844,1,0,0,0,0,'Burning Steppes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3114,1026,27,11846,1,0,0,0,0,'Durotar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3126,1027,27,11854,1,0,0,0,0,'Nagrand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3133,1028,27,11768,1,0,0,0,0,'Burning Steppes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3144,1029,27,11770,1,0,0,0,0,'Durotar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3156,1030,27,11778,1,0,0,0,0,'Nagrand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3163,1031,27,11739,1,0,0,0,0,'Burning Steppes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3176,1032,27,11738,1,0,0,0,0,'Bloodmyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3188,1033,27,11750,1,0,0,0,0,'Nagrand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3195,1034,8,1024,0,0,0,0,0,'Flame Warden of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3198,1035,8,1030,0,0,0,0,0,'Extinguishing Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3201,1036,8,1027,0,0,0,0,0,'Flame Keeper of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3204,1037,8,1033,0,0,0,0,0,'Extinguishing Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3211,283,28,24719,1,0,0,0,0,'Transformed by Hallowed Wand - Leper Gnome','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3226,389,27,7810,1,0,0,0,0,'Arena Master Quest Completed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(3303,344,41,20066,1,0,0,0,0,'Arathi Basin Runecloth Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3370,231,56,0,20,3,566,1,0,'Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,3),(3394,1167,8,222,0,0,0,0,0,'Tower Defense','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3406,1168,8,222,0,0,0,0,0,'Tower Defense','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3418,1169,8,158,0,0,0,0,0,'Me and the Cappin\' Makin\' it Happen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3433,1170,8,158,0,0,0,0,0,'Me and the Cappin\' Makin\' it Happen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3448,1171,8,784,0,0,0,0,0,'Eye of the Storm Domination','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3463,1172,8,200,0,0,0,0,0,'Persistent Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3478,1173,8,200,0,0,0,0,0,'Persistent Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3490,1174,8,1159,0,0,0,0,0,'Just the Two of Us: 2200','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3502,1175,8,1173,0,0,0,0,0,'Master of Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3517,1183,28,42263,1,0,0,0,0,'Springtime Stout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3529,1184,41,33028,1,0,0,0,0,'Barleybrew Light','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3544,1185,41,33023,1,0,0,0,0,'Savory Sausage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3562,1187,36,30635,1,0,0,0,0,'Key of Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3576,484,0,29307,1,0,0,0,0,'Drakkari Colossus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3580,481,0,29310,1,0,0,0,0,'Jedoga Shadowseeker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3596,1203,41,34020,1,0,0,0,0,'Jungle River Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3625,1225,72,182958,1,0,0,0,0,'Mudfish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3703,489,0,24201,1,0,0,0,0,'Dalronn the Controller','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3725,557,49,2,1,0,0,0,0,'Shoulder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3741,1206,54,225,1,0,0,0,0,'Borean Frog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3764,1244,68,175734,1,0,0,0,0,'Arathor and the Troll Wars','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3806,161,1,529,1,0,0,0,0,'Overcome a 500 resource disadvantage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(3816,667,0,17537,1,0,0,0,0,'Vazruden the Herald','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3828,252,35,0,50,0,0,0,0,'26273','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(3836,563,0,15952,1,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3839,565,0,15932,1,0,0,0,0,'Gluth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3843,567,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3849,306,36,19970,1,0,0,0,0,'Arcanite Fishing Pole','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(3866,153,72,182959,1,0,0,0,0,'Bluefish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(3874,1257,72,180662,1,0,0,0,0,'Schooner Wreckage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3885,1262,8,1191,0,0,0,0,0,'Terror of Terokkar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3906,45,8,1265,0,0,0,0,0,'Dragonblight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3917,1274,8,1272,0,0,0,0,0,'Terror of Terokkar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3938,1282,27,11023,1,0,0,0,0,'Summon Reindeer Flying Mount Tier 2.0 (Brown)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(3941,1283,8,630,0,0,0,0,0,'Wailing Caverns','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(3966,1284,8,649,0,0,0,0,0,'The Slave Pens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4011,1285,8,687,0,0,0,0,0,'Temple of Ahn\'Qiraj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4016,1286,8,692,0,0,0,0,0,'Gruul\'s Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4025,1287,8,669,0,0,0,0,0,'Heroic The Slave Pens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4042,1288,8,479,0,0,0,0,0,'Caverns of Time: Stratholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4058,1289,8,500,0,0,0,0,0,'Heroic Caverns of Time: Stratholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4074,1292,36,32918,1,0,0,0,0,'Filled Yellow Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4080,1293,36,33018,1,0,0,0,0,'Filled Blue Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4093,328,67,0,0,0,0,0,0,'Money looted from creatures','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,3),(4124,1264,43,1467,0,0,0,0,0,'Riplash Strand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4138,1263,43,1495,0,0,0,0,0,'Camp Winterhoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4161,1265,43,1489,0,0,0,0,0,'Ruby Dragonshrine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4180,1266,43,1466,0,0,0,0,0,'Drakil\'jin Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4194,1267,43,1532,0,0,0,0,0,'Ampitheater of Anguish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4208,1268,43,1546,0,0,0,0,0,'The Mosslight Pillar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4251,635,27,1101,1,0,0,0,0,'The Crone of the Kraul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4253,634,27,2841,1,0,0,0,0,'Rig Wars','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4255,636,27,3341,1,0,0,0,0,'Bring the End','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4257,638,27,2339,1,0,0,0,0,'Find the Gems and Power Source','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4260,640,27,7064,1,0,0,0,0,'Corruption of Earth and Seed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4263,642,27,4003,1,0,0,0,0,'The Royal Rescue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4267,684,27,7490,1,0,0,0,0,'Victory for the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4290,345,41,33934,0,0,0,0,0,'Crystal Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4312,922,41,22832,0,0,0,0,0,'Super Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4338,923,41,20079,0,0,0,0,0,'Spirit of Zanza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4408,628,27,373,1,0,0,0,0,'The Unsent Letter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4412,811,41,33208,0,0,0,0,0,'Flask of Chromatic Wonder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4437,686,27,8620,1,0,0,0,0,'The Only Prescription','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4441,643,27,4903,1,0,0,0,0,'Warlord\'s Command','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4444,1307,27,6602,1,0,0,0,0,'Blood of the Black Dragon Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4448,685,27,7783,1,0,0,0,0,'The Lord of Blackrock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4451,687,27,8638,1,0,0,0,0,'Deathdealer\'s Vest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4462,647,27,9572,1,0,0,0,0,'Weaken the Ramparts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4466,666,27,10164,1,0,0,0,0,'Everything Will Be Alright','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4470,654,27,10885,1,0,0,0,0,'Trial of the Naaru: Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4472,655,27,10297,1,0,0,0,0,'The Opening of the Dark Portal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4474,656,27,10885,1,0,0,0,0,'Trial of the Naaru: Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4476,657,27,9495,1,0,0,0,0,'The Will of the Warchief','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4483,660,27,10886,1,0,0,0,0,'Trial of the Naaru: Tenacity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4488,678,27,9525,1,0,0,0,0,'Imprisoned in the Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4499,696,27,11007,1,0,0,0,0,'Kael\'thas and the Verdant Sphere','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4506,1311,0,18697,1,0,0,0,0,'Chief Engineer Lorthander','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4598,698,36,34341,1,0,0,0,0,'Borderland Paingrips','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4619,695,36,30908,1,0,0,0,0,'Apostle of Argus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4721,812,41,19011,0,0,0,0,0,'Greater Healthstone (2)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4739,924,46,1104,42000,0,0,0,0,'Exlated with the Frenzyheart Tribe','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4752,925,46,946,42000,0,0,0,0,'Exlated with Honor Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4770,927,49,4,1,0,0,0,0,'Chest is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4789,697,36,32838,1,0,0,0,0,'Warglaive of Azzinoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4849,694,36,30106,1,0,0,0,0,'Belt of One-Hundred Deaths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4908,692,36,28825,1,0,0,0,0,'Aldori Legacy Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4939,693,27,11116,1,0,0,0,0,'Trial of the Naaru: Magtheridon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(4950,107,78,0,0,0,0,0,0,'Dragonkin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4967,796,28,20770,0,0,0,0,0,'Resurrection (Rank 5)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4973,798,28,20748,0,0,0,0,0,'Rebirth (Rank 5)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4979,1229,28,50765,0,0,0,0,0,'Revive (Rank 5)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(4994,350,68,176498,0,0,0,0,0,'Portal to Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5022,388,70,0,50,0,0,0,0,'Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(5033,1006,70,0,50,0,0,0,0,'Shepherd\'s Gate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(5047,1360,8,36,1,0,0,0,0,'The Empire of Zul\'Drak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5081,284,36,20562,1,0,0,0,0,'Flimsy Female Dwarf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5143,1396,27,13014,1,0,0,0,0,'Elder Morthie in Star\'s Rest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5247,490,0,26794,1,0,0,0,0,'Ormorok the Tree-Shaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5269,1436,36,37719,1,0,0,0,0,'Zhevra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(5270,263,27,11972,1,0,0,0,0,'Ahune Kill Quest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(5292,1457,43,1599,0,0,0,0,0,'Sunreaver\'s Command','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5308,1463,8,1008,0,0,0,0,0,'The Kirin Tor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5315,926,46,81,42000,0,0,0,0,'Exalted with Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5330,1466,46,47,42000,0,0,0,0,'Exalted with Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5459,1467,0,27654,1,0,0,0,0,'Drakos the Interrogator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5494,381,35,0,0,0,0,0,0,'Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5501,382,35,0,0,0,0,0,0,'Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5531,1488,56,0,0,0,0,0,0,'Burning Crusade Areas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5535,1490,56,0,0,0,0,0,0,'Ruind of Lordaeron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5538,1491,56,0,0,0,0,0,0,'Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5553,1199,40,333,1,0,0,0,0,'Enchanting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5564,1200,7,356,450,0,0,0,0,'Fishing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5566,1201,7,164,450,0,0,0,0,'Blacksmithing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5578,1202,7,44,400,0,0,0,0,'Axes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5630,1103,0,27656,1,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5647,1104,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5664,1516,8,1257,0,0,0,0,0,'The Scavenger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5682,1517,72,192048,1,0,0,0,0,'Dragonfin Angelfish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5704,1525,27,11380,1,0,0,0,0,'Manalicious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5708,1526,27,11669,1,0,0,0,0,'Felblood Fillet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5765,1563,8,906,0,0,0,0,0,'Kickin\' It Up a Notch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5775,291,110,44212,1,0,0,0,0,'Draenei','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5821,1656,8,255,0,0,0,0,0,'Bring Me The Head of... Oh Wait','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5833,1657,8,255,0,0,0,0,0,'Bring Me The Head of... Oh Wait','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5845,1269,43,1576,0,0,0,0,0,'Dun Niffelem','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5861,1270,43,1564,0,0,0,0,0,'Onslaught Harbor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5890,1658,0,28859,1,0,0,0,0,'Malygos (10 or 25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5893,839,15,566,0,0,0,0,0,'Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5897,840,1,566,0,0,0,0,0,'Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(5902,1676,11,3,700,0,0,0,0,'Badlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(5954,1677,11,3,550,0,0,0,0,'Badlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(6006,1678,11,16,700,0,0,0,0,'Azshara','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(6101,1680,11,16,685,0,0,0,0,'Azshara','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(6145,1681,8,1262,0,0,0,0,0,'Loremaster of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6149,1682,8,1274,0,0,0,0,0,'Loremaster of Outland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6177,1683,8,295,0,0,0,0,0,'Direbrewfest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6184,1684,8,295,0,0,0,0,0,'Direbrewfest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6209,303,34,43899,0,0,0,0,0,'Brewfest Ram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(6215,727,34,22720,0,0,0,0,0,'Black War Ram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6229,1686,110,26004,1,0,0,0,0,'Brother Wilhelm in Goldshire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6239,1687,110,44755,1,0,0,0,0,'Tauren Shaman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6249,1688,29,45022,1,0,0,0,0,'Hot Apple Cider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6252,1689,27,8767,1,0,0,0,0,'A Gently Shaken Gift','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(6257,1690,41,17712,1,0,0,0,0,'Winter Veil Disguise Kit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(6264,1691,8,259,0,0,0,0,0,'Scrooge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6276,1692,8,1255,0,0,0,0,0,'Scrooge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6291,1038,8,263,0,0,0,0,0,'Ice the Frost Lord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6313,1699,110,27571,1,0,0,0,0,'Human Death Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6326,1701,29,70578,1,0,0,0,0,'All yours.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6334,1702,41,22239,1,0,0,0,0,'Sweet Surprise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6345,1704,54,203,1,0,0,0,0,'Arathi Basin Blacksmith','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6350,1705,34,54187,0,0,0,0,0,'Clockwork Rocket Bot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(6353,1693,8,1280,0,0,0,0,0,'Flirt With Disaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6367,1707,8,1279,0,0,0,0,0,'Flirt With Disaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6415,1768,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6435,1241,28,58630,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6444,1737,0,32627,1,0,0,0,0,'Wintergrasp Siege Engine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6461,346,41,38698,0,0,0,0,0,'Bitter Plasma','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(6488,1777,29,58065,1,0,0,0,0,'Dalaran Clam Chowder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6602,1780,41,43488,1,0,0,0,0,'Last Weeks Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6610,1782,27,13102,1,0,0,0,0,'Sewer Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6615,1783,27,13114,1,0,0,0,0,'Sewer Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6620,1784,8,906,0,0,0,0,0,'Kickin\' It Up a Notch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6628,1785,41,34753,1,0,0,0,0,'Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6635,604,70,0,5,0,0,0,0,'Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6639,603,70,0,5,0,0,0,0,'The Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6643,1786,30,122,1,0,0,0,0,'Assault a flag in Arathi Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6653,1788,41,42429,1,0,0,0,0,'Red Velvet Cupcake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6662,1685,110,26004,1,0,0,0,0,'Brother Keltan in Icecrown','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6668,1792,34,40634,0,0,0,0,0,'Peanut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(6745,1793,8,1789,0,0,0,0,0,'Daily Chores','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6760,1800,29,33279,1,0,0,0,0,'Buzzard Bites','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6807,500,0,26530,1,0,0,0,0,'Salramm the Fleshcrafter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6815,493,0,27483,1,0,0,0,0,'King Dred','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6833,497,0,28587,1,0,0,0,0,'Volkhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6841,495,0,29307,1,0,0,0,0,'Drakkari Colossus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6850,491,0,29120,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6853,492,0,29310,1,0,0,0,0,'Jedoga Shadowseeker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6861,498,0,27447,1,0,0,0,0,'Varos Cloudstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6863,499,0,26693,1,0,0,0,0,'Skadi the Ruthless','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(6936,496,28,59046,1,0,0,0,0,'The Tribunal of Ages','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7139,1865,0,29313,1,0,0,0,0,'Ichoron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7146,578,0,15956,1,0,0,0,0,'Anub\'Rekhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7163,579,0,15931,1,0,0,0,0,'Grobbulus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7179,1871,0,27656,1,0,0,0,0,'Ruby Drake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7187,1877,0,30451,1,0,0,0,0,'Shadron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7191,624,0,30451,1,0,0,0,0,'Shadron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7192,568,28,59450,1,0,0,0,0,'The Four Horsemen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7193,569,28,59450,1,0,0,0,0,'The Four Horsemen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7196,1066,54,76,0,0,0,0,0,'rofl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7238,1956,68,192710,1,0,0,0,0,'The Schools of Arcane Magic - Conjuration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7246,1957,36,43639,1,0,0,0,0,'Arthas\' Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7280,2016,27,12296,1,0,0,0,0,'Life or Death','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7289,2017,27,12280,1,0,0,0,0,'Making Repairs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7298,2018,27,13243,1,0,0,0,0,'Timear Foresees Infinite Agents in your Future!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7302,2019,27,13247,1,0,0,0,0,'Proof of Demise: Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7338,1039,8,271,0,0,0,0,0,'Burning Hot Pole Dance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7395,2082,34,59799,0,0,0,0,0,'Ice Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(7399,2083,34,59804,0,0,0,0,0,'Grand Ice Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(7443,2094,42,43704,1,0,0,0,0,'Attumen\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7465,2095,42,43678,1,0,0,0,0,'Antonidas\' Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7488,2096,8,1957,0,0,0,0,0,'There\'s Gold In That There Fountain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7497,2136,8,2036,0,0,0,0,0,'Intense Cold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7530,2137,8,1856,0,0,0,0,0,'Make Quick Werk Of Him','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7540,2138,8,1857,0,0,0,0,0,'Make Quick Werk Of Him (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7644,2194,8,1765,0,0,0,0,0,'Steady Hands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7656,2195,8,1765,0,0,0,0,0,'Steady Hands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7706,1723,70,0,100,0,0,0,0,'Shredder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(7714,2199,70,0,10,0,0,0,0,'Flamewatch Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7724,1752,8,2199,0,0,0,0,0,'Wintergrasp Ranger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7772,322,20,26731,0,0,0,0,0,'Grand Magus Telestra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7809,323,20,16060,0,0,0,0,0,'Gothik the Harvester','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7832,324,20,15931,0,0,0,0,0,'Grobbulus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7854,799,28,20609,0,0,0,0,0,'Ancestral Spirit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7862,800,28,7328,0,0,0,0,0,'Redemption','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(7867,801,28,20758,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(8102,2256,0,32495,1,0,0,0,0,'Hildana Deathstealer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(8590,837,32,618,0,0,0,0,0,'Ring of Valor Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(8592,838,33,559,0,0,0,0,0,'Nagrand Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(8597,363,33,572,0,0,0,0,0,'Ruins of Lordaeron 5v5 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(8601,362,32,572,0,0,0,0,0,'Ruins of Lordaeron 5v5 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(8606,365,33,618,0,0,0,0,0,'Ring of Valor 3v3 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(8610,364,32,618,0,0,0,0,0,'Ring of Valor 3v3 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(8613,367,33,572,0,0,0,0,0,'Ruins of Lordaeron 2v2 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(8616,366,32,559,0,0,0,0,0,'Nagrand 2v2 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(8698,347,41,20226,0,0,0,0,0,'Highlander\'s Field Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(8820,2336,46,577,42000,0,0,0,0,'Exalted with Everlook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9142,2436,29,61818,1,0,0,0,0,'Silithus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9145,2422,110,61815,1,0,0,0,0,'Dwarf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9162,383,70,0,0,0,0,0,0,'Nagrand Arena Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9169,275,34,40614,0,0,0,0,0,'Egbert','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9180,2476,0,28312,1,0,0,0,0,'Wintergrasp Siege Engine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9200,2419,29,61875,1,0,0,0,0,'Goldshire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9204,2497,29,61875,1,0,0,0,0,'Falconwing Square','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9259,1234,69,61863,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9261,1508,69,61863,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9301,2557,54,225,1,0,0,0,0,'Fjord Penguin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9359,2556,0,32261,1,0,0,0,0,'Crystal Spider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9418,2084,36,44934,1,0,0,0,0,'Loop of the Kirin Tor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(9670,2770,8,2762,0,0,0,0,0,'Champion of Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9675,2771,8,2767,0,0,0,0,0,'Champion of Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9718,2093,74,0,1,0,0,0,0,'Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(9720,2090,74,0,1,0,0,0,0,'Duelist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(9757,2758,27,13693,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,3),(9760,2776,8,2199,0,0,0,0,0,'Wintergrasp Ranger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9780,2782,8,2779,0,0,0,0,0,'Champion of Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9790,2788,8,2785,0,0,0,0,0,'Champion of Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9838,259,110,46661,1,0,0,0,0,'Snowball Cairne Bloodhoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(9861,2796,27,12421,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(9865,2797,8,2416,0,0,0,0,0,'Hard Boiled','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9877,2798,8,2436,0,0,0,0,0,'Desert Rose','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9879,2144,8,2797,0,0,0,0,0,'Noble Gardener','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9880,2145,8,2798,0,0,0,0,0,'Noble Gardener','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9900,2816,8,2766,0,0,0,0,0,'Champion of Sen\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9906,2817,8,2761,0,0,0,0,0,'Champion of the Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9970,1770,0,33186,1,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(9971,1756,0,33186,1,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10001,2886,0,33293,1,0,0,0,0,'XT-002 Deconstructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10005,2887,0,33293,1,0,0,0,0,'XT-002 Deconstructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10010,2888,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10018,2889,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10029,2894,8,2890,0,0,0,0,0,'The Keepers of Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10033,2895,8,2891,0,0,0,0,0,'Heroic: The Keepers of Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10035,3838,42,45624,1,0,0,0,0,'Emblem of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(10036,3839,42,45624,25,0,0,0,0,'Emblem of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(10037,3840,42,45624,50,0,0,0,0,'Emblem of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(10038,3841,42,45624,100,0,0,0,0,'Emblem of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(10039,3842,42,45624,250,0,0,0,0,'Emblem of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(10040,3843,42,45624,500,0,0,0,0,'Emblem of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(10041,3844,42,45624,1000,0,0,0,0,'Emblem of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(10048,2907,0,33113,1,0,0,0,0,'Salvaged Demolisher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10051,2908,0,33113,1,0,0,0,0,'Salvaged Demolisher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10101,2957,8,2923,0,0,0,0,0,'Iron Dwarf, Medium Rare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10225,2836,28,64809,1,0,0,0,0,'Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10239,2970,69,65134,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(10241,2969,69,63711,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(10288,2973,0,32873,1,0,0,0,0,'Participate in slaying Ancient Rune Giant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10312,2974,0,32873,1,0,0,0,0,'Participate in slaying Ancient Rune Giant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10323,3016,69,63988,1,0,0,0,0,'The Tortured Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10326,3015,69,63988,1,0,0,0,0,'The Tortured Champion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10340,2903,0,33186,1,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10353,2904,0,33186,1,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10366,2958,8,2924,0,0,0,0,0,'Iron Dwarf, Medium Rare (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10419,2945,0,32867,1,0,0,0,0,'Steelbreaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(10421,2946,0,32927,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(10423,2947,0,32927,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(10425,2948,0,32927,1,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(10443,1255,110,25677,1,0,0,0,0,'Snowball King Magni Bronzebeard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(10444,2890,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10455,2891,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10522,3217,27,13834,1,0,0,0,0,'Dangerously Delicious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10545,2989,0,33432,1,0,0,0,0,'A Bomb Bot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10548,3237,0,33432,1,0,0,0,0,'A Bomb Bot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(10742,3357,28,65302,20,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16772606',2,0,0,0,3),(11079,3556,69,61849,1,0,0,0,0,'Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11084,3557,69,61849,1,0,0,0,0,'Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11088,3558,29,66374,1,0,0,0,0,'Pumpkin Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11120,3576,29,62044,1,0,0,0,0,'Pumpkin Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11125,3577,29,66036,1,0,0,0,0,'Pumpkin Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11136,3580,69,65403,1,0,0,0,0,'Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11140,3581,69,65403,1,0,0,0,0,'Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11165,3559,110,61781,1,0,0,0,0,'Gnome Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11179,3579,110,61927,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16741886',2,0,0,0,3),(11202,3596,27,14054,1,0,0,0,0,'Easy As Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11205,3597,27,14060,1,0,0,0,0,'Easy As Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11224,3618,34,63318,0,0,0,0,0,'Murkimus the Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(11259,3478,8,3556,0,0,0,0,0,'Pilgrim\'s Paunch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11268,3656,8,3557,0,0,0,0,0,'Pilgrim\'s Paunch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11322,3696,27,13723,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,3),(11488,3845,30,246,1,3,628,3,628,'Defend a base','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,3),(11494,3847,28,68365,1,0,0,0,0,'Demolisher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11500,3856,56,0,1,0,0,0,0,'Catapult','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11504,3857,8,3847,0,0,0,0,0,'Four Car Garage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11620,3876,42,45624,1500,0,0,0,0,'Emblem of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(11678,3812,28,68184,1,0,0,0,0,'Defeat the Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11681,3916,28,68184,1,0,0,0,0,'Defeat the Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11686,3917,28,68184,1,0,0,0,0,'Defeat the Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11691,3918,28,68184,1,0,0,0,0,'Defeat the Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11751,3957,8,3847,0,0,0,0,0,'Four Car Garage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(11905,3802,28,68206,1,0,0,0,0,'Mutanus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12160,3853,31,4749,1,3,628,3,628,'Docks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4,0,0,0,3),(12181,4256,56,0,1,0,0,0,0,'Catapult','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12299,3778,28,68572,1,0,0,0,0,'Colosos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12304,4296,28,68572,1,0,0,0,0,'Runok Wildmane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12312,4297,28,68572,1,0,0,0,0,'Colosos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12320,4298,28,68572,1,0,0,0,0,'Runok Wildmane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12340,3817,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(12346,3808,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(12420,4316,42,45624,2500,0,0,0,0,'Emblem of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,3),(12480,426,57,32838,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(12620,4416,34,10698,0,0,0,0,0,'Emerald Whelpling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(12660,4436,110,67531,1,0,0,0,0,'Lor\'themar Theron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12663,4437,110,67531,1,0,0,0,0,'King Varian Wrynn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12680,4456,0,27656,1,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12743,4518,28,72830,1,0,0,0,0,'Survive the encounter with the Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12744,4517,0,36658,1,0,0,0,0,'Scourgelord Tyrannus and Rimefang','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12749,4520,0,36658,1,0,0,0,0,'Scourgelord Tyrannus and Rimefang','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12751,4521,28,72830,1,0,0,0,0,'Survive the encounter with the Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12761,4528,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12768,4532,8,4529,0,0,0,0,0,'The Crimson Hall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12771,4531,28,72959,1,0,0,0,0,'Claim victory in the Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12800,4556,0,27656,1,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12840,1697,27,24609,1,0,0,0,0,'A Gift for the Lord of Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12844,1698,27,24614,1,0,0,0,0,'A Gift for the High Chieftain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12879,1695,27,24660,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,3),(12904,4596,27,24798,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,3),(12947,4604,28,72959,1,0,0,0,0,'Claim victory in the Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12951,4605,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12960,4608,8,4606,0,0,0,0,0,'The Crimson Hall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(12999,2091,74,0,1,0,0,0,0,'Furious Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(13001,2092,74,0,1,0,0,0,0,'Deadly Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(13041,4628,28,72959,1,0,0,0,0,'Claim victory in the Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(13045,4629,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(13052,4632,28,72959,1,0,0,0,0,'Claim victory in the Gunship Battle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(13056,4633,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(13063,4636,8,4630,0,0,0,0,0,'The Crimson Hall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(13068,4637,8,4634,0,0,0,0,0,'The Crimson Hall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(13073,4602,8,4630,0,0,0,0,0,'Heroic: The Crimson Hall (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(13077,4603,8,4634,0,0,0,0,0,'Heroic: The Crimson Hall (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,3),(13234,2186,0,15952,1,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(13238,2187,0,15952,1,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(13374,4782,36,37897,1,0,0,0,0,'Filled Green Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,3),(13381,4784,36,45624,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,3),(13386,4785,36,45624,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,3),(13398,4788,34,35535,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,3),(13411,4789,34,35532,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,3),(86,41,8,37,1,0,0,0,0,'Fo\' Grizzle My Shizzle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(97,46,8,45,1,0,0,0,0,'Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(192,477,0,23980,1,0,0,0,0,'Ingvar the Plunderer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(198,478,0,26723,1,0,0,0,0,'Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(206,487,0,27656,1,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(210,488,0,26861,1,0,0,0,0,'King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(217,485,0,27978,1,0,0,0,0,'Sjonnir the Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(228,230,8,1171,0,0,0,0,0,'Master of Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(360,564,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(386,576,8,568,0,0,0,0,0,'The Military Quarter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(392,577,8,569,0,0,0,0,0,'The Military Quarter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(424,582,30,64,1,3,30,3,30,'Defend a tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,4),(434,584,31,3422,5,3,529,3,529,'Kill 5 people at the lumber mill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,4),(444,587,31,3869,5,3,566,3,566,'Kill 5 people at the Mage Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,4),(487,614,8,613,0,0,0,0,0,'Killed in Quel\'Thalas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(495,619,8,618,0,0,0,0,0,'Putting Out the Light','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(499,626,36,21157,1,0,0,0,0,'Festive Green Dress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(505,627,43,113,1,0,0,0,0,'Kharanos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(522,624,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(534,637,0,3976,1,0,0,0,0,'Scarlet Commander Mograine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(619,116,40,202,2,0,0,0,0,'Engineering','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(653,705,7,173,400,0,0,0,0,'Daggers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(750,425,27,9271,1,0,0,0,0,'Atiesh, Greatstaff of the Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(762,700,36,18851,1,0,0,0,0,'Insignia of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(782,701,36,18862,1,0,0,0,0,'Insignia of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(825,728,43,248,1,0,0,0,0,'Echo Isles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(851,731,40,202,3,0,0,0,0,'Engineering','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(862,732,40,202,4,0,0,0,0,'Engineering','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(873,733,40,202,5,0,0,0,0,'Engineering','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(884,734,40,202,6,0,0,0,0,'Engineering','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(895,735,40,202,6,0,0,0,0,'Engineering','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(905,736,43,188,1,0,0,0,0,'Winterhoof Water Well','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(920,750,43,464,1,0,0,0,0,'Dreadmist Peak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(950,760,43,444,1,0,0,0,0,'Dalaran Crater','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(964,761,43,564,1,0,0,0,0,'Thoradin\'s Wall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(995,762,46,530,42000,0,0,0,0,'Exalted Darkspear Trolls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1008,763,46,989,42000,0,0,0,0,'Keepers of Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1011,764,46,1011,42000,0,0,0,0,'Lower City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1017,765,43,584,1,0,0,0,0,'Mirage Flats','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1031,766,43,824,1,0,0,0,0,'Serpent\'s Coil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1040,768,43,233,1,0,0,0,0,'Stillwater Pond','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1056,769,43,304,1,0,0,0,0,'The Skittering Dark','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1071,770,43,964,1,0,0,0,0,'Ruins of Andorhal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1084,771,43,891,1,0,0,0,0,'Crown Guard Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1106,772,43,404,1,0,0,0,0,'Dun Garok','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1118,773,43,604,1,0,0,0,0,'Quel\'Danil Lodge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1132,774,43,724,1,0,0,0,0,'The Sea of Cinders','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1139,775,43,784,1,0,0,0,0,'Blackrock Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1149,776,43,121,1,0,0,0,0,'Stormwind City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1164,778,43,424,1,0,0,0,0,'Raven Hill Cemetery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1177,779,43,319,1,0,0,0,0,'Silver Stream Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1187,780,43,362,1,0,0,0,0,'Lakeridge Highway','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1199,781,43,525,1,0,0,0,0,'Rebel Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1226,782,43,544,1,0,0,0,0,'Splinterspear Junction','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1251,802,43,281,1,0,0,0,0,'The Jansen Stead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1265,841,43,384,1,0,0,0,0,'Whelgar\'s Excavation Site','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1279,42,8,765,1,0,0,0,0,'Badlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1302,842,43,87,1,0,0,0,0,'Gnarlpine Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1313,843,43,1182,1,0,0,0,0,'Manaforge Duro','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1317,844,43,343,1,0,0,0,0,'Cliffspring River','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1326,845,43,744,1,0,0,0,0,'Thistlefur Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1344,846,43,684,1,0,0,0,0,'Freewind Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1353,847,43,928,1,0,0,0,0,'Webwinder Path','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1364,850,43,664,1,0,0,0,0,'The Quagmire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1368,848,43,772,1,0,0,0,0,'Thunder Axe Fortress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1371,849,43,983,1,0,0,0,0,'Ruins of Ravenwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1404,853,43,864,1,0,0,0,0,'Jadefire Run','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1408,851,43,655,1,0,0,0,0,'Steamwheedle Port','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1412,852,43,844,1,0,0,0,0,'Bitter Reaches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1456,854,43,624,1,0,0,0,0,'The Slithering Scar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1468,856,43,1025,1,0,0,0,0,'Hive\'Zora','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1476,857,43,1004,1,0,0,0,0,'Starfall Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1507,858,43,1152,1,0,0,0,0,'Windrunner Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1511,859,43,1130,1,0,0,0,0,'Sunsail Anchorage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1555,860,43,1366,1,0,0,0,0,'Bristlelimb Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1576,861,43,1331,1,0,0,0,0,'Bladewood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1600,43,8,860,1,0,0,0,0,'Azuremyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1605,867,43,1168,1,0,0,0,0,'Firewing Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1608,862,43,1202,1,0,0,0,0,'Hellfire Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1613,863,43,1136,1,0,0,0,0,'Hewn Bog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1617,864,43,1105,1,0,0,0,0,'Netherwing Ledge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1621,865,43,1291,1,0,0,0,0,'Bloodmaul Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1625,866,43,1192,1,0,0,0,0,'Kil\'sorrow Fortress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1785,44,8,866,1,0,0,0,0,'Nagrand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1793,868,43,1458,1,0,0,0,0,'Magisters\' Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(1804,220,1,30,1,3,30,3,30,'Tower A1 owned by the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,4),(1813,873,1,30,1,3,30,3,30,'Tower A1 owned by the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,4),(1823,229,35,0,30,3,489,3,489,'30 hks in wsg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(1827,486,0,28923,1,0,0,0,0,'Loken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1839,878,42,6295,1,0,0,0,0,'15 Pound Mud Snapper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1889,905,27,11667,1,0,0,0,0,'The One That Got Away','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1894,906,27,11381,1,0,0,0,0,'Soup for the Soul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1905,908,27,11338,1,0,0,0,0,'Call to Arms: Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1909,909,27,11342,1,0,0,0,0,'Call to Arms: Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1913,910,27,8644,1,0,0,0,0,'Elder Stonefort in Blackrock Spire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1919,911,27,8686,1,0,0,0,0,'Elder High Mountain in Camp Taurajo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(1925,912,27,8722,1,0,0,0,0,'Elder Meadowrun in Western Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2000,913,8,914,0,0,0,0,0,'Elders of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2033,948,46,54,42000,0,0,0,0,'Exalted Gnomeregan Exiles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2057,961,27,12760,1,0,0,0,0,'Secret Strength of the Frenzyheart','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2065,962,27,12762,1,0,0,0,0,'Power of the Great Ones','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2075,963,27,12338,1,0,0,0,0,'Darkshore, Auberdine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2102,965,27,12399,1,0,0,0,0,'Tanaris, Gadgetzan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2135,966,27,12346,1,0,0,0,0,'Hillsbrad Foothills, Southshore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2148,967,27,12385,1,0,0,0,0,'Badlands, Kargath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2198,969,27,12353,1,0,0,0,0,'Hellfire Peninsula, Temple of Telhamat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2220,968,27,12392,1,0,0,0,0,'Nagrand, Garadar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2263,979,36,20392,1,0,0,0,0,'Flimsy Female Gnome Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(2284,289,27,11219,1,0,0,0,0,'Stop the Fires!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(2338,621,57,28788,1,0,0,0,0,'Tabard of the Protector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(2345,556,49,4,1,0,0,0,0,'Chest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2362,245,52,8,1,0,0,0,0,'Mage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2372,246,53,5,1,0,0,0,0,'Undead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2377,1005,53,3,1,0,0,0,0,'Dwarf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(2403,227,13,0,300000,3,566,3,566,'Do 300,000 Damage in Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,4),(2421,1010,8,1009,0,0,0,0,0,'Knights of the Ebon Blade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3066,1022,27,11813,1,0,0,0,0,'Dun Morogh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3079,1023,27,11811,1,0,0,0,0,'Darkshore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3092,1024,27,11830,1,0,0,0,0,'Netherstorm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3104,1025,27,11848,1,0,0,0,0,'Eversong Woods','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3115,1026,27,11847,1,0,0,0,0,'Dustwallow Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3127,1027,27,11835,1,0,0,0,0,'Netherstorm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3134,1028,27,11772,1,0,0,0,0,'Eversong Woods','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3145,1029,27,11771,1,0,0,0,0,'Dustwallow Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3157,1030,27,11799,1,0,0,0,0,'Netherstorm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3164,1031,27,11742,1,0,0,0,0,'Dun Morogh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3177,1032,27,11740,1,0,0,0,0,'Darkshore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3189,1033,27,11759,1,0,0,0,0,'Netherstorm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3212,283,28,24718,1,0,0,0,0,'Transformed by Hallowed Wand - Ninja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3304,344,41,20067,1,0,0,0,0,'Arathi Basin Silk Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3371,231,56,0,20,3,489,1,0,'Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,4),(3395,1167,8,1151,0,0,0,0,0,'Loyal Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3407,1168,8,224,0,0,0,0,0,'Loyal Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3419,1169,8,73,0,0,0,0,0,'Disgracin\' The Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3434,1170,8,73,0,0,0,0,0,'Disgracin\' The Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3449,1171,8,214,0,0,0,0,0,'Flurry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3464,1172,8,872,0,0,0,0,0,'Frenzied Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3479,1173,8,872,0,0,0,0,0,'Frenzied Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3491,1174,8,1160,0,0,0,0,0,'Three\'s Company: 2200','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3503,1175,8,1171,0,0,0,0,0,'Master of Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3518,1183,28,43961,1,0,0,0,0,'Metok\'s Bubble Bock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3531,1184,41,33034,1,0,0,0,0,'Gordok Grog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3545,1185,41,34065,1,0,0,0,0,'Spiced Onion Cheese','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3563,1187,36,12382,1,0,0,0,0,'Key to the City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3577,484,0,29306,1,0,0,0,0,'Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3581,481,0,29311,1,0,0,0,0,'Herald Volazj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3597,1203,41,34018,1,0,0,0,0,'Long Stride Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3626,1225,72,182956,1,0,0,0,0,'School of Darter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3704,489,0,23980,1,0,0,0,0,'Ingvar the Plunderer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3726,557,49,4,1,0,0,0,0,'Chest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3744,1206,54,225,1,0,0,0,0,'Cat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3765,1244,68,175758,1,0,0,0,0,'Archimonde\'s Return and the Flight to Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3807,161,1,529,1,0,0,0,0,'Overcome a 500 resource disadvantage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(3829,252,35,0,50,0,0,0,0,'26274','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(3840,565,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3850,306,36,19979,1,0,0,0,0,'Hook of the Master Angler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(3856,153,72,180664,1,0,0,0,0,'Sparse Oily Blackmouth School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(3875,1257,72,180685,1,0,0,0,0,'Waterlogged Wreckage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3886,1262,8,1192,0,0,0,0,0,'Nagrand Slam','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3907,45,8,1266,0,0,0,0,0,'Grizzly Hills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3918,1274,8,1273,0,0,0,0,0,'Nagrand Slam','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3942,1283,8,631,0,0,0,0,0,'Shadowfang Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(3967,1284,8,650,0,0,0,0,0,'Underbog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4012,1285,8,688,0,0,0,0,0,'Zul\'Gurub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4017,1286,8,693,0,0,0,0,0,'Magtheridon\'s Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4026,1287,8,670,0,0,0,0,0,'Heroic Underbog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4043,1288,8,480,0,0,0,0,0,'Azjol-Nerub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4059,1289,8,491,0,0,0,0,0,'Heroic Azjol-Nerub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4075,1292,36,32915,1,0,0,0,0,'Filled Yellow Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4081,1293,36,33019,1,0,0,0,0,'Filled Blue Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4125,1264,43,1469,0,0,0,0,0,'Kaskala','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4139,1263,43,1496,0,0,0,0,0,'Apothecary Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4162,1265,43,1490,0,0,0,0,0,'Obsidian Dragonshrine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4181,1266,43,1468,0,0,0,0,0,'Dun Argol','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4195,1267,43,1533,0,0,0,0,0,'Altar of Sseratus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4209,1268,43,1547,0,0,0,0,0,'Makers\' Overlook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4225,328,80,0,0,0,0,0,0,'Money from auctions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',32,0,0,0,4),(4258,638,27,2204,1,0,0,0,0,'Restoring the Necklace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4269,684,27,8620,1,0,0,0,0,'The Only Prescription','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4291,345,41,4596,0,0,0,0,0,'Discolored Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4313,922,41,32902,0,0,0,0,0,'Bottled Nethergon Energy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4339,923,41,20081,0,0,0,0,0,'Swiftness of Zanza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4409,635,27,6522,1,0,0,0,0,'An Unholy Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4413,811,41,13511,0,0,0,0,0,'Flask of Distilled Wisdom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4442,643,27,5089,1,0,0,0,0,'General Drakkisath\'s Command','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4445,1307,27,6502,1,0,0,0,0,'Drakefire Amulet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4449,685,27,8730,1,0,0,0,0,'Nefarius\'s Corruption','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4452,687,27,8562,1,0,0,0,0,'Conqueror\'s Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4477,657,27,9524,1,0,0,0,0,'Imprisoned in the Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4489,678,27,10884,1,0,0,0,0,'Trial of the Naaru: Mercy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4495,693,27,11002,1,0,0,0,0,'The Fall of Magtheridon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4507,1311,0,18681,1,0,0,0,0,'Coilfang Emissary','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4544,686,36,19137,1,0,0,0,0,'Onslaught Girdle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4599,698,36,34241,1,0,0,0,0,'Cloak of Unforgivable Sin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4620,695,36,30906,1,0,0,0,0,'Bristleblitz Striker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4722,812,41,5509,0,0,0,0,0,'Healthstone (0)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4740,924,46,1105,42000,0,0,0,0,'Exlated with the Oracles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4753,925,46,947,42000,0,0,0,0,'Exlated with Thrallmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4771,927,49,7,1,0,0,0,0,'Feet are epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4790,697,36,32837,1,0,0,0,0,'Warglaive of Azzinoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4820,696,36,32458,1,0,0,0,0,'Ashes of Al\'ar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4850,694,36,30104,1,0,0,0,0,'Cobra-Lash Boots','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4909,692,36,28794,1,0,0,0,0,'Axe of the Gronn Lords','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(4951,107,78,0,0,0,0,0,0,'Elemental','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4968,796,28,10881,0,0,0,0,0,'Resurrection (Rank 4)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4974,798,28,20747,0,0,0,0,0,'Rebirth (Rank 4)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4980,1229,28,50766,0,0,0,0,0,'Revive (Rank 4)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(4995,350,68,182351,0,0,0,0,0,'Portal to Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5023,388,70,0,50,0,0,0,0,'Cenarion Enclave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(5034,1006,70,0,50,0,0,0,0,'Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(5048,1360,8,1357,1,0,0,0,0,'Fo\' Grizzle My Shizzle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5082,284,36,20392,1,0,0,0,0,'Flimsy Female Gnome Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5144,1396,27,13015,1,0,0,0,0,'Elder Fargal in Frosthold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5248,490,0,26723,1,0,0,0,0,'Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5293,1457,43,1600,0,0,0,0,0,'Forlorn Woods','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5309,1463,8,1009,0,0,0,0,0,'Knights of the Ebon Blade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5316,926,46,68,42000,0,0,0,0,'Exalted with Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5331,1466,46,72,42000,0,0,0,0,'Exalted with Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5495,381,35,0,0,0,0,0,0,'Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5502,382,35,0,0,0,0,0,0,'Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5532,1488,56,0,0,0,0,0,0,'Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5539,1491,56,0,0,0,0,0,0,'Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5554,1199,40,202,1,0,0,0,0,'Engineering','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5569,1201,7,182,450,0,0,0,0,'Herbalism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5579,1202,7,172,400,0,0,0,0,'Two-Handed Axes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5643,1104,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5665,1516,8,150,0,0,0,0,0,'The Fishing Diplomat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5683,1517,72,192049,1,0,0,0,0,'Fangtooth Herring School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5705,1525,27,11381,1,0,0,0,0,'Soup for the Soul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5709,1526,27,11667,1,0,0,0,0,'The One That Got Away','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5776,291,110,44212,1,0,0,0,0,'Dwarf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5809,699,32,618,1,0,0,0,0,'The Ring of Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5822,1656,8,289,0,0,0,0,0,'The Savior of Hallow\'s End','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5834,1657,8,289,0,0,0,0,0,'The Savior of Hallow\'s End','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5846,1269,43,1580,0,0,0,0,0,'Bor\'s Breath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5862,1270,43,1568,0,0,0,0,0,'The Broken Front','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5878,1658,0,29120,1,0,0,0,0,'Heroic: Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5894,839,15,607,0,0,0,0,0,'Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5898,840,1,607,0,0,0,0,0,'Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(5903,1676,11,25,700,0,0,0,0,'Badlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(5955,1677,11,25,550,0,0,0,0,'Badlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(6007,1678,11,3524,700,0,0,0,0,'Azuremyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(6102,1680,11,3524,685,0,0,0,0,'Azuremyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(6146,1681,8,41,0,0,0,0,0,'Loremaster of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6150,1682,8,1360,0,0,0,0,0,'Loremaster of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6178,1683,8,1186,0,0,0,0,0,'Down With The Dark Iron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6185,1684,8,1186,0,0,0,0,0,'Down With The Dark Iron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6193,879,34,16084,0,0,0,0,0,'Mottled Red Raptor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(6210,303,34,49379,0,0,0,0,0,'Great Brewfest Kodo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(6216,727,34,22717,0,0,0,0,0,'Black War Steed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6231,1686,110,26004,1,0,0,0,0,'Brother Karman in Theramore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6240,1687,110,44755,1,0,0,0,0,'Night Elf Druid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6253,1689,27,8788,1,0,0,0,0,'A Gently Shaken Gift','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(6265,1691,8,1282,0,0,0,0,0,'Fa-la-la-la-Ogri\'la','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6277,1692,8,1282,0,0,0,0,0,'Fa-la-la-la-Ogri\'la','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6314,1699,110,27571,1,0,0,0,0,'Night Elf Priest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6327,1701,29,70581,1,0,0,0,0,'I\'m all yours!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6335,1702,41,22238,1,0,0,0,0,'Very Berry Cream','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6346,1704,54,203,1,0,0,0,0,'The Culling of Stratholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6354,1693,8,1291,0,0,0,0,0,'Lonely?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6368,1707,8,1291,0,0,0,0,0,'Lonely?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6381,479,28,58630,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6432,1103,28,58630,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6433,1467,28,58630,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6445,1737,0,28366,1,0,0,0,0,'Wintergrasp Tower Cannon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6489,1777,29,45561,1,0,0,0,0,'Grilled Bonescale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6603,1780,41,43490,1,0,0,0,0,'Tasty Cupcake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6604,1563,8,1779,0,0,0,0,0,'The Northrend Gourmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6611,1782,27,13103,1,0,0,0,0,'Cheese for Glowergold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6616,1783,27,13115,1,0,0,0,0,'Cheese for Glowergold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6621,1784,8,1779,0,0,0,0,0,'The Northrend Gourmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6629,1785,41,34753,1,0,0,0,0,'Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6636,604,70,0,5,0,0,0,0,'Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6640,603,70,0,5,0,0,0,0,'Stormwind City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6644,1786,30,44,1,0,0,0,0,'Return a fallen flag in Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6654,1788,41,33924,1,0,0,0,0,'Delicious Chocolate Cake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6664,1792,36,23007,1,0,0,0,0,'Piglet\'s Collar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(6746,1793,8,1792,0,0,0,0,0,'Aw, Isn\'t It Cute?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6764,1800,29,36210,1,0,0,0,0,'Clam Bar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6808,500,28,58630,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6834,497,0,28923,1,0,0,0,0,'Loken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6842,495,0,29306,1,0,0,0,0,'Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6854,492,0,29311,1,0,0,0,0,'Herald Volazj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6857,496,0,27977,1,0,0,0,0,'Krystallus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6862,498,0,27656,1,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(6866,499,0,26861,1,0,0,0,0,'King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7140,1865,0,29314,1,0,0,0,0,'Zuramat the Obliterator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7150,578,0,15931,1,0,0,0,0,'Grobbulus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7170,579,0,16060,1,0,0,0,0,'Gothik the Harvester','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7186,1877,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7197,1066,54,45,0,0,0,0,0,'giggle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7239,1956,68,192711,1,0,0,0,0,'The Schools of Arcane Magic - Divination','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7247,1957,36,43638,1,0,0,0,0,'Arugal\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7281,2016,27,12244,1,0,0,0,0,'Shredder Repair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7290,2017,27,12284,1,0,0,0,0,'Keep \'Em on their Heels','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7299,2018,27,13244,1,0,0,0,0,'Timear Foresees Titanium Vanguards in your Future!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7303,2019,27,13248,1,0,0,0,0,'Proof of Demise: King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7334,1038,8,271,0,0,0,0,0,'Burning Hot Pole Dance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7339,1039,8,263,0,0,0,0,0,'Ice the Frost Lord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7396,2082,34,59797,0,0,0,0,0,'Ice Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(7400,2083,34,59802,0,0,0,0,0,'Grand Ice Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(7444,2094,42,43705,1,0,0,0,0,'Danath\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7466,2095,42,43676,1,0,0,0,0,'Arcanist Doan\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7498,2136,8,2037,0,0,0,0,0,'Chaos Theory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7531,2137,8,1996,0,0,0,0,0,'The Safety Dance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7541,2138,8,2139,0,0,0,0,0,'The Safety Dance (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7555,2144,8,1793,0,0,0,0,0,'For The Children','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7562,2145,8,1793,0,0,0,0,0,'For The Children','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7645,2194,8,1761,0,0,0,0,0,'The Dapper Sapper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7657,2195,8,1761,0,0,0,0,0,'The Dapper Sapper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7707,1723,70,0,100,0,0,0,0,'Fighter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(7711,2199,70,0,10,0,0,0,0,'The Broken Temple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7726,1752,8,2080,0,0,0,0,0,'Black War Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7787,322,20,28586,0,0,0,0,0,'General Bjarngrim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7808,323,20,15932,0,0,0,0,0,'Gluth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7848,324,20,31125,0,0,0,0,0,'Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7853,799,28,20610,0,0,0,0,0,'Ancestral Spirit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(7861,800,28,10322,0,0,0,0,0,'Redemption','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8103,2256,0,32357,1,0,0,0,0,'Old Crystalbark','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8158,263,36,35280,1,0,0,0,0,'Tabard of Summer Flames','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(8587,837,32,617,0,0,0,0,0,'Dalaran Sewers Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8594,838,33,618,0,0,0,0,0,'Ring of Valor Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8595,363,33,617,0,0,0,0,0,'Dalara 5v5 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8600,362,32,559,0,0,0,0,0,'Nagrand 5v5 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8605,365,33,572,0,0,0,0,0,'Ruind of Lordaeron 3v3 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8609,364,32,572,0,0,0,0,0,'Ruins of Lordaeron 3v3 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8614,367,33,618,0,0,0,0,0,'Ring of Valor 2v2 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8618,366,32,618,0,0,0,0,0,'Ring of Valor 2v2 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8697,347,41,20225,0,0,0,0,0,'Highlander\'s Enriched Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(8763,801,29,20759,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8821,2336,46,369,42000,0,0,0,0,'Exalted with Gadgetzan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8918,321,18,15,0,0,0,0,0,'15 man instances','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(8987,346,41,4953,0,0,0,0,0,'Trogg Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(9098,482,69,61863,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9099,493,69,61863,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9140,2436,29,61818,1,0,0,0,0,'Tanaris','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9146,2422,110,61815,1,0,0,0,0,'Gnome','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9163,383,70,0,0,0,0,0,0,'Ruins of Lordaeron Arena Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9165,1490,56,0,0,0,0,0,0,'Dalaran Sewers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9181,2476,0,28366,1,0,0,0,0,'Wintergrasp Tower Cannon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9201,2419,29,61875,1,0,0,0,0,'Kharanos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9205,2497,29,61875,1,0,0,0,0,'Razor Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9302,2557,54,225,1,0,0,0,0,'Fjord Turkey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9360,2556,0,24270,1,0,0,0,0,'Devouring Maggot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9419,2084,36,44935,1,0,0,0,0,'Ring of the Kirin Tor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(9671,2770,8,2764,0,0,0,0,0,'Champion of Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9676,2771,8,2769,0,0,0,0,0,'Champion of the Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9754,2758,27,13708,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,4),(9761,2776,8,2080,0,0,0,0,0,'Black War Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9781,2782,8,2781,0,0,0,0,0,'Champion of Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9791,2788,8,2787,0,0,0,0,0,'Champion of the Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9862,2796,27,12306,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(9866,2797,8,2419,0,0,0,0,0,'Spring Fling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9878,2798,8,2576,0,0,0,0,0,'Blushing Bride','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9901,2816,8,2767,0,0,0,0,0,'Champion of Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9907,2817,8,2762,0,0,0,0,0,'Champion of Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9972,1770,0,33118,1,0,0,0,0,'Ignis the Furnace Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9973,1756,0,33118,1,0,0,0,0,'Ignis the Furnace Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(9998,1768,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10002,2886,0,33118,1,0,0,0,0,'Ignis the Furnace Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10006,2887,0,33118,1,0,0,0,0,'Ignis the Furnace Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10014,2890,0,33432,1,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10030,2894,8,2892,0,0,0,0,0,'The Descent into Madness','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10034,2895,8,2893,0,0,0,0,0,'Heroic: The Descent into Madness','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10103,2957,8,3058,0,0,0,0,0,'Heartbreaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10226,2836,28,64810,1,0,0,0,0,'Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10341,2903,0,33293,1,0,0,0,0,'XT-002 Deconstructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10354,2904,0,33293,1,0,0,0,0,'XT-002 Deconstructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10368,2958,8,3059,0,0,0,0,0,'Heartbreaker (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10456,2891,0,33432,1,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(10523,3217,27,13833,1,0,0,0,0,'Blood is Thicker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11081,3556,69,61849,1,0,0,0,0,'Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11085,3557,69,61849,1,0,0,0,0,'Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11089,3558,29,66373,1,0,0,0,0,'Slow-Roasted Turkey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11121,3576,29,62045,1,0,0,0,0,'Slow-Roasted Turkey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11126,3577,29,66037,1,0,0,0,0,'Slow-Roasted Turkey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11137,3580,69,65403,1,0,0,0,0,'Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11141,3581,69,65403,1,0,0,0,0,'Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11158,3559,110,61781,1,0,0,0,0,'Human Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11180,3579,110,61929,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16741886',2,0,0,0,4),(11198,3596,27,14055,1,0,0,0,0,'She Says Potato','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11206,3597,27,14058,1,0,0,0,0,'She Says Potato','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11260,3478,8,3580,0,0,0,0,0,'Pilgrim\'s Peril','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11269,3656,8,3581,0,0,0,0,0,'Pilgrim\'s Peril','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11323,3696,27,13713,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,4),(11491,3845,70,0,1,3,628,3,628,'Kill a player','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,4),(11495,3847,28,68362,1,0,0,0,0,'Catapult','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11501,3856,56,0,1,0,0,0,0,'Siege Engine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11505,3857,8,3848,0,0,0,0,0,'A-bomb-inable','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11547,3812,0,34496,1,0,0,0,0,'Defeat the Twin Val\'kyr','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11552,3838,42,47241,1,0,0,0,0,'Emblem of Triumph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(11556,3839,42,47241,25,0,0,0,0,'Emblem of Triumph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(11601,3840,42,47241,50,0,0,0,0,'Emblem of Triumph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(11605,3841,42,47241,100,0,0,0,0,'Emblem of Triumph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(11609,3842,42,47241,250,0,0,0,0,'Emblem of Triumph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(11613,3843,42,47241,500,0,0,0,0,'Emblem of Triumph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(11617,3844,42,47241,1000,0,0,0,0,'Emblem of Triumph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(11621,3876,42,47241,1500,0,0,0,0,'Emblem of Triumph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(11682,3916,0,34496,1,0,0,0,0,'Defeat the Twin Val\'kyr','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11687,3917,0,34496,1,0,0,0,0,'Defeat the Twin Val\'kyr','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11692,3918,0,34496,1,0,0,0,0,'Defeat the Twin Val\'kyr','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11752,3957,8,3848,0,0,0,0,0,'A-bomb-inable','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(11906,3802,28,68206,1,0,0,0,0,'Herod','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12161,3853,31,4752,1,3,628,3,628,'Horde Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4,0,0,0,4),(12182,4256,56,0,1,0,0,0,0,'Siege Engine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12300,3778,28,68572,1,0,0,0,0,'Ambrose Boltspark','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12305,4296,28,68572,1,0,0,0,0,'Eressea Dawnsinger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12313,4297,28,68572,1,0,0,0,0,'Ambrose Boltspark','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12321,4298,28,68572,1,0,0,0,0,'Eressea Dawnsinger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12421,4316,42,47241,2500,0,0,0,0,'Emblem of Triumph','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,4),(12481,426,57,32837,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(12621,4416,34,67413,0,0,0,0,0,'Darting Hatchling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(12658,4436,110,67531,1,0,0,0,0,'Thrall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12667,4437,110,67531,1,0,0,0,0,'Prophet Velen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12681,4456,28,58630,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12766,4532,8,4527,0,0,0,0,0,'The Frostwing Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12772,4531,28,72928,1,0,0,0,0,'The Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12801,4556,28,58630,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12841,1697,27,24597,1,0,0,0,0,'A Gift for the King of Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12845,1698,27,24613,1,0,0,0,0,'A Gift for the Banshee Queen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12880,1695,27,24662,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,4),(12905,4596,27,24799,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,4),(12946,4604,28,72928,1,0,0,0,0,'The Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(12958,4608,8,4607,0,0,0,0,0,'The Frostwing Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(13000,2091,74,0,1,0,0,0,0,'Relentless Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(13002,2092,74,0,1,0,0,0,0,'Furious Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(13004,2093,74,0,1,0,0,0,0,'Furious Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(13006,2090,74,0,1,0,0,0,0,'Furious Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(13042,4628,28,72928,1,0,0,0,0,'The Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(13053,4632,28,72928,1,0,0,0,0,'The Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(13064,4636,8,4631,0,0,0,0,0,'The Frostwing Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(13069,4637,8,4635,0,0,0,0,0,'The Frostwing Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(13074,4602,8,4631,0,0,0,0,0,'Heroic: The Frostwing Halls (10 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(13078,4603,8,4635,0,0,0,0,0,'Heroic: The Frostwing Halls (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,4),(13236,2186,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(13239,2187,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(13375,4782,36,37896,1,0,0,0,0,'Filled Green Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,4),(13382,4784,36,47241,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,4),(13387,4785,36,47241,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,4),(13399,4788,34,37884,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,4),(13412,4789,34,35525,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,4),(83,41,8,34,1,0,0,0,0,'I\'ve Toured the Fjord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(387,576,8,572,0,0,0,0,0,'Sapphiron\'s Demise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(393,577,8,573,0,0,0,0,0,'Sapphiron\'s Demise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(425,582,31,3057,1,3,30,3,30,'Kill someone in the Field of Strife','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,5),(435,584,31,3424,5,3,529,3,529,'Kill 5 people at the stables','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',12,0,0,0,5),(500,626,36,21538,1,0,0,0,0,'Festive Pink Dress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(506,627,43,111,1,0,0,0,0,'Misty Pine Refuge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(533,637,0,3977,1,0,0,0,0,'High Inquisitor Whitemane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(620,116,40,182,2,0,0,0,0,'Herbalism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(654,705,7,46,400,0,0,0,0,'Guns','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(763,700,36,18845,1,0,0,0,0,'Insignia of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(783,701,36,18856,1,0,0,0,0,'Insignia of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(826,728,43,250,1,0,0,0,0,'Tiragarde Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(852,731,40,182,3,0,0,0,0,'Herbalism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(863,732,40,182,4,0,0,0,0,'Herbalism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(874,733,40,182,5,0,0,0,0,'Herbalism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(885,734,40,182,6,0,0,0,0,'Herbalism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(896,735,40,182,6,0,0,0,0,'Herbalism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(906,736,43,190,1,0,0,0,0,'The Rolling Plains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(921,750,43,465,1,0,0,0,0,'The Dry Hills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(951,760,43,445,1,0,0,0,0,'Dandred\'s Fold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(965,761,43,565,1,0,0,0,0,'Stromgarde Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(996,762,46,911,42000,0,0,0,0,'Exalted Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1005,763,46,935,42000,0,0,0,0,'The Sha\'tar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1013,764,46,989,42000,0,0,0,0,'Keepers of Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1018,765,43,585,1,0,0,0,0,'Camp Cagg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1032,766,43,825,1,0,0,0,0,'The Dark Portal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1041,768,43,232,1,0,0,0,0,'Nightmare Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1057,769,43,305,1,0,0,0,0,'North Tide\'s Hollow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1072,770,43,965,1,0,0,0,0,'The Bulwark','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1085,771,43,890,1,0,0,0,0,'The Fungal Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1107,772,43,405,1,0,0,0,0,'Nethander Stead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1119,773,43,605,1,0,0,0,0,'Shadra\'Alor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1133,774,43,725,1,0,0,0,0,'Tanner Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1140,775,43,785,1,0,0,0,0,'Ruins of Thaurissan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1150,776,43,123,1,0,0,0,0,'Forest\'s Edge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1165,778,43,425,1,0,0,0,0,'Vul\'Gol Ogre Mound','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1178,779,43,320,1,0,0,0,0,'North Gate Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1189,780,43,365,1,0,0,0,0,'Redridge Canyons','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1200,781,43,526,1,0,0,0,0,'Kurzen\'s Compound','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1227,782,43,545,1,0,0,0,0,'The Shifting Mire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1252,802,43,283,1,0,0,0,0,'Jangolode Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1266,841,43,385,1,0,0,0,0,'Sundown Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1280,42,8,766,1,0,0,0,0,'Blasted Lands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1303,842,43,88,1,0,0,0,0,'Lake Al\'Ameth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1318,844,43,344,1,0,0,0,0,'Bashal\'Aran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1327,845,43,745,1,0,0,0,0,'The Shrine of Aessina','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1345,846,43,683,1,0,0,0,0,'Splithoof Crag','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1354,847,43,927,1,0,0,0,0,'Boulderslide Ravine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1372,849,43,984,1,0,0,0,0,'The Twin Colossals','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1373,848,43,771,1,0,0,0,0,'Kormek\'s Hut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1396,850,43,665,1,0,0,0,0,'The Den of Flame','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1413,851,43,654,1,0,0,0,0,'Zalashji\'s Den','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1429,852,43,845,1,0,0,0,0,'Tower of Eldara','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1444,853,43,865,1,0,0,0,0,'Shatter Scar Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1457,854,43,625,1,0,0,0,0,'The Marshlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1469,856,43,1026,1,0,0,0,0,'Hive\'Regal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1477,857,43,1005,1,0,0,0,0,'Mazthoril','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1489,43,8,750,1,0,0,0,0,'The Barrens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1512,859,43,1132,1,0,0,0,0,'North Sanctum','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1536,858,43,1153,1,0,0,0,0,'Sanctum of the Moon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1556,860,43,1367,1,0,0,0,0,'Emberglade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1577,861,43,1332,1,0,0,0,0,'Bloodcurse Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1609,862,43,1203,1,0,0,0,0,'Honor Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1647,863,43,1139,1,0,0,0,0,'Marshlight Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1668,864,43,1107,1,0,0,0,0,'Shadowmoon Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1688,865,43,1292,1,0,0,0,0,'Bloodmaul Outpost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1713,866,43,1193,1,0,0,0,0,'Laughing Skull Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1729,867,43,1169,1,0,0,0,0,'Grangol\'var Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1762,843,43,1183,1,0,0,0,0,'Manaforge Ara','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1786,44,8,865,1,0,0,0,0,'Blade\'s Edge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1794,868,43,1459,1,0,0,0,0,'Greengill Coast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(1805,220,1,30,1,3,30,3,30,'Tower A3 owned by the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,5),(1814,873,1,30,1,3,30,3,30,'Tower A3 owned by the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,5),(1840,878,42,13887,1,0,0,0,0,'52 Pound Redgill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1849,879,36,12354,1,0,0,0,0,'Palomino','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(1890,905,27,11668,1,0,0,0,0,'Shrimpin\' Ain\'t Easy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1914,910,27,8619,1,0,0,0,0,'Elder Morndeep in Blackrock Depths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1920,911,27,8680,1,0,0,0,0,'Elder Windtotem in Ratchet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(1926,912,27,8716,1,0,0,0,0,'Elder Starglade in Zul\'Gurub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2001,913,8,915,0,0,0,0,0,'Elders of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2034,948,46,930,42000,0,0,0,0,'Exalted Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2058,961,27,12732,1,0,0,0,0,'The Heartblood\'s Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2066,962,27,12736,1,0,0,0,0,'Song of Reflection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2076,963,27,12334,1,0,0,0,0,'Darnassus, Craftsmen\'s Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2103,965,27,12400,1,0,0,0,0,'Winterspring, Everlook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2136,966,27,12351,1,0,0,0,0,'Hinterlands, Aerie Peak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2149,967,27,12365,1,0,0,0,0,'Eversong Woods, Fairbreeze Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2199,969,27,12357,1,0,0,0,0,'Nagrand, Telaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2221,968,27,12388,1,0,0,0,0,'Hellfire Peninsula, Thrallmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2264,979,36,20565,1,0,0,0,0,'Flimsy Female Human Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(2339,621,57,35280,1,0,0,0,0,'Tabard of Summer Flames','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(2346,556,49,5,1,0,0,0,0,'Waist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2363,245,52,2,1,0,0,0,0,'Paladin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2373,246,53,8,1,0,0,0,0,'Troll','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(2378,1005,53,4,1,0,0,0,0,'Night Elf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3067,1022,27,11814,1,0,0,0,0,'Duskwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3080,1023,27,11812,1,0,0,0,0,'Desolace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3093,1024,27,11823,1,0,0,0,0,'Shadowmoon Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3105,1025,27,11850,1,0,0,0,0,'Ghostlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3116,1026,27,11849,1,0,0,0,0,'Feralas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3128,1027,27,11855,1,0,0,0,0,'Shadowmoon Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3135,1028,27,11774,1,0,0,0,0,'Ghostlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3146,1029,27,11773,1,0,0,0,0,'Feralas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3158,1030,27,11779,1,0,0,0,0,'Shadowmoon Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3165,1031,27,11743,1,0,0,0,0,'Duskwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3178,1032,27,11741,1,0,0,0,0,'Desolace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3190,1033,27,11752,1,0,0,0,0,'Shadowmoon Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3213,283,28,24717,1,0,0,0,0,'Transformed by Hallowed Wand - Pirate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3305,344,41,20232,1,0,0,0,0,'Defiler\'s Mageweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3396,1167,8,225,0,0,0,0,0,'Everything Counts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3408,1168,8,1164,0,0,0,0,0,'Everything Counts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3420,1169,8,1153,0,0,0,0,0,'Overly Defensive','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3435,1170,8,1153,0,0,0,0,0,'Overly Defensive','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3450,1171,8,213,0,0,0,0,0,'Stormtrooper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3465,1172,8,168,0,0,0,0,0,'Warsong Gulch Perfection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3480,1173,8,168,0,0,0,0,0,'Warsong Gulch Perfection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3492,1174,8,1161,0,0,0,0,0,'High Five: 2200','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3519,1183,28,42261,1,0,0,0,0,'Lord of Frost\'s Private Label','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3534,1184,41,33036,1,0,0,0,0,'Mudder\'s Milk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3546,1185,41,33025,1,0,0,0,0,'Spicy Smoked Sausage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3564,1187,36,27991,1,0,0,0,0,'Shadow Labyrinth Key','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3598,1203,41,33036,1,0,0,0,0,'Mudder\'s Milk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3627,1225,72,182957,1,0,0,0,0,'Highland Mixed School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3727,557,49,5,1,0,0,0,0,'Waist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3745,1206,54,225,1,0,0,0,0,'Chicken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3766,1244,68,21582,1,0,0,0,0,'Beyond the Dark Portal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3808,161,1,529,1,0,0,0,0,'Overcome a 500 resource disadvantage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(3867,153,72,182958,1,0,0,0,0,'Mudfish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(3876,1257,72,180751,1,0,0,0,0,'Floating Wreckage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3887,1262,8,1193,0,0,0,0,0,'On the Blade\'s Edge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3908,45,8,1267,0,0,0,0,0,'Zul\'Drak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3919,1274,8,1193,0,0,0,0,0,'On the Blade\'s Edge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3943,1283,8,632,0,0,0,0,0,'Blackfathom Deeps','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(3968,1284,8,651,0,0,0,0,0,'Mana-Tombs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4013,1285,8,689,0,0,0,0,0,'Ruins of Ahn\'Qiraj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4018,1286,8,694,0,0,0,0,0,'Serpentshrine Cavern','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4027,1287,8,671,0,0,0,0,0,'Heroic Mana-Tombs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4044,1288,8,481,0,0,0,0,0,'Ahn\'kahet: The Old Kingdom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4060,1289,8,492,0,0,0,0,0,'Heroic Ahn\'kahet: The Old Kingdom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4076,1292,36,32920,1,0,0,0,0,'Filled Yellow Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4082,1293,36,33020,1,0,0,0,0,'Filled Blue Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4126,1264,43,1473,0,0,0,0,0,'Garrosh\'s Landing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4140,1263,43,1498,0,0,0,0,0,'Vengeance Landing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4163,1265,43,1491,0,0,0,0,0,'New Hearthglen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4182,1266,43,1470,0,0,0,0,0,'Granite Springs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4196,1267,43,1534,0,0,0,0,0,'Altar of Rhunok','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4210,1268,43,1548,0,0,0,0,0,'Makers\' Perch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4270,684,27,7509,1,0,0,0,0,'The Forging of Quel\'Serrar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4292,345,41,31676,0,0,0,0,0,'Fel Regeneration Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4314,922,41,33935,0,0,0,0,0,'Crystal Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4340,923,41,28103,0,0,0,0,0,'Adept\'s Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4415,811,41,22851,0,0,0,0,0,'Flask of Fortification','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4446,643,27,4742,1,0,0,0,0,'Seal of Ascension','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4454,687,27,8666,1,0,0,0,0,'Genesis Vest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4478,657,27,9525,1,0,0,0,0,'Imprisoned in the Citadel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4496,693,27,11003,1,0,0,0,0,'The Fall of Magtheridon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4508,1311,0,18694,1,0,0,0,0,'Collidus the Warp-Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4564,685,36,19380,1,0,0,0,0,'Therazane\'s Link','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4600,698,36,34333,1,0,0,0,0,'Coif of Alleria','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4621,695,36,30902,1,0,0,0,0,'Cataclysm\'s Edge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4723,812,41,19008,0,0,0,0,0,'Healthstone (1)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4741,924,46,1091,42000,0,0,0,0,'Exlated with the Wyrmrest Accord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4754,925,46,978,42000,0,0,0,0,'Exlated with the Kurenai','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4772,927,49,11,1,0,0,0,0,'Ring is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4791,697,36,32336,1,0,0,0,0,'Black Bow of the Betrayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4821,696,36,29997,1,0,0,0,0,'Band of the Ranger-General','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4851,694,36,33482,1,0,0,0,0,'Cobra-Lash Boots','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4910,692,36,28802,1,0,0,0,0,'Bloodmaw Magus-Blade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(4952,107,78,0,0,0,0,0,0,'Giant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4969,796,28,10880,0,0,0,0,0,'Resurrection (Rank 3)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4975,798,28,20742,0,0,0,0,0,'Rebirth (Rank 3)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4981,1229,28,50767,0,0,0,0,0,'Revive (Rank 3)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(4996,350,68,184594,0,0,0,0,0,'Portal to Shattrath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5024,388,70,0,50,0,0,0,0,'Craftsmen\'s Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(5035,1006,70,0,50,0,0,0,0,'Elder Rise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(5049,1360,8,1356,1,0,0,0,0,'I\'ve Toured the Fjord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5053,495,0,29932,1,0,0,0,0,'Eck the Ferocious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5054,492,0,30258,1,0,0,0,0,'Amanitar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5057,1307,27,9013,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(5076,227,13,0,300000,3,607,3,607,'Do 300,000 Damage in Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,5),(5083,284,36,20565,1,0,0,0,0,'Flimsy Female Human Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5145,1396,27,13033,1,0,0,0,0,'Elder Arp in D.E.H.T.A','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5294,1457,43,1601,0,0,0,0,0,'Windrunner\'s Overlook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5317,926,46,911,42000,0,0,0,0,'Exalted with Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5332,1466,46,930,42000,0,0,0,0,'Exalted with Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5447,1467,0,31134,1,0,0,0,0,'Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(5503,382,35,0,0,0,0,0,0,'Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5540,1491,56,0,0,0,0,0,0,'Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5555,1199,40,182,1,0,0,0,0,'Herbalism','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5570,1201,7,773,450,0,0,0,0,'Inscription','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5580,1202,7,54,400,0,0,0,0,'Maces','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5629,1103,0,28923,1,0,0,0,0,'Kronus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5666,1516,8,306,0,0,0,0,0,'Master Angler of Stranglethorn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5684,1517,72,192050,1,0,0,0,0,'Glacial Salmon School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5710,1526,27,11668,1,0,0,0,0,'Shrimpin\' Ain\'t Easy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5777,291,110,44212,1,0,0,0,0,'Human','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5810,699,32,617,1,0,0,0,0,'Dalaran Sewers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5824,1656,8,981,0,0,0,0,0,'That Sparkling Smile','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5836,1657,8,981,0,0,0,0,0,'That Sparkling Smile','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5847,1269,43,1581,0,0,0,0,0,'Valkyrion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5863,1270,43,1570,0,0,0,0,0,'The Fleshwerks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5883,1658,0,27978,1,0,0,0,0,'Heroic: Sjonnir the Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5895,839,15,489,0,0,0,0,0,'Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5899,840,1,489,0,0,0,0,0,'Warsong Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(5904,1676,11,1583,700,0,0,0,0,'Blackrock Spire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(5956,1677,11,1583,550,0,0,0,0,'Blackrock Spire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(6008,1678,11,719,700,0,0,0,0,'Blackfathom Deeps','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(6103,1680,11,719,685,0,0,0,0,'Blackfathom Deeps','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(6190,1683,8,303,0,0,0,0,0,'Have Keg, Will Travel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6217,727,34,22724,0,0,0,0,0,'Black War Wolf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6230,1686,110,26004,1,0,0,0,0,'Brother Kristoff in Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6241,1687,110,44755,1,0,0,0,0,'Undead Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6254,1689,27,8803,1,0,0,0,0,'A Festive Gift','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(6266,1691,8,277,0,0,0,0,0,'\'Tis the Season','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6278,1692,8,277,0,0,0,0,0,'\'Tis the Season','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6315,1699,110,27571,1,0,0,0,0,'Orc Shaman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6328,1701,29,70574,1,0,0,0,0,'Hot Lips.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6347,1704,54,203,1,0,0,0,0,'Naxxramas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6356,1693,8,1695,0,0,0,0,0,'Dangerous Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6370,1707,8,1695,0,0,0,0,0,'Dangerous Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6490,1777,29,45563,1,0,0,0,0,'Grilled Sculpin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6605,1563,8,1780,0,0,0,0,0,'Second That Emotion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6612,1782,27,13107,1,0,0,0,0,'Mustard Dogs!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6617,1783,27,13116,1,0,0,0,0,'Mustard Dogs!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6622,1784,8,1780,0,0,0,0,0,'Second That Emotion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6630,1785,41,34753,1,0,0,0,0,'Eye of the Storm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6655,1788,41,42434,1,0,0,0,0,'Lovely Cake Slice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6665,1792,34,28739,0,0,0,0,0,'Mr. Wiggles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(6747,1793,8,1786,0,0,0,0,0,'School of Hard Knocks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(6765,1800,29,33291,1,0,0,0,0,'Feltail Delight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7141,1865,0,29315,1,0,0,0,0,'Erekem','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7154,578,0,15936,1,0,0,0,0,'Heigan the Unclean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7160,579,0,15953,1,0,0,0,0,'Grand Widow Faerlina','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7194,1066,54,23,0,0,0,0,0,'chuckle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7235,1684,8,1936,0,0,0,0,0,'Does Your Wolpertinger Linger?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7240,1956,68,192713,1,0,0,0,0,'The Schools of Arcane Magic - Enchantment','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7248,1957,36,43637,1,0,0,0,0,'Brann Bronzebeard\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7282,2016,27,12289,1,0,0,0,0,'Kick \'Em While They\'re Down','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7291,2017,27,12288,1,0,0,0,0,'Overwhelmed!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7304,2019,27,13249,1,0,0,0,0,'Proof of Demise: The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7336,1038,8,1145,0,0,0,0,0,'King of the Fire Festival','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7340,1039,8,1145,0,0,0,0,0,'King of the Fire Festival','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7445,2094,42,43706,1,0,0,0,0,'Dornaa\'s Shiny Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7467,2095,42,43675,1,0,0,0,0,'Fandral Staghelm\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7499,2136,8,1296,0,0,0,0,0,'Watch Him Die','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7532,2137,8,1997,0,0,0,0,0,'Momma Said Knock You Out','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7542,2138,8,2140,0,0,0,0,0,'Momma Said Knock You Out (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7556,2144,8,1038,0,0,0,0,0,'The Flame Warden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7563,2145,8,1039,0,0,0,0,0,'The Flame Keeper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7623,231,56,0,20,3,607,1,0,'Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,5),(7640,230,8,2194,0,0,0,0,0,'Master of Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7641,1175,8,2195,0,0,0,0,0,'Master of Strand of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7646,2194,8,2193,0,0,0,0,0,'Explosives Expert','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7658,2195,8,2193,0,0,0,0,0,'Explosives Expert','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7708,1723,70,0,100,0,0,0,0,'Bomber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(7715,2199,70,0,10,0,0,0,0,'Shadowsight Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7728,1752,8,2089,0,0,0,0,0,'1000 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7789,322,20,28587,0,0,0,0,0,'Volkhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7811,323,20,15931,0,0,0,0,0,'Grobbulus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7847,324,20,28859,0,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7852,799,28,20776,0,0,0,0,0,'Ancestral Spirit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7860,800,28,10324,0,0,0,0,0,'Redemption','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(7868,801,28,3026,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8104,2256,0,32358,1,0,0,0,0,'Fumblub Gearwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8159,263,36,35279,1,0,0,0,0,'Tabard of Summer Skies','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(8589,837,32,572,0,0,0,0,0,'Ruins of Lordaeron Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8593,838,33,572,0,0,0,0,0,'Ruins of Lordaeron Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8598,363,33,618,0,0,0,0,0,'Ring of Valor 5v5 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8599,362,32,617,0,0,0,0,0,'Dalaran 5v5 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8603,365,33,617,0,0,0,0,0,'Dalaran 3v3 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8607,364,32,617,0,0,0,0,0,'Dalaran 3v3 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8611,367,33,617,0,0,0,0,0,'Dalaran 2v2 Matches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8617,366,32,572,0,0,0,0,0,'Ruins of Lordaeron 2v2 Wins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8696,347,41,20224,0,0,0,0,0,'Defiler\'s Iron Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(8822,2336,46,470,42000,0,0,0,0,'Exalted with Ratchet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8838,321,18,40,0,0,0,0,0,'40 man instances','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(8989,346,41,15723,0,0,0,0,0,'Tea with Sugar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(9141,2436,29,61818,1,0,0,0,0,'Thousand Needles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9144,2422,110,61815,1,0,0,0,0,'Human','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9164,383,70,0,0,0,0,0,0,'The Ring of Valor Arena Kills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9166,1490,56,0,0,0,0,0,0,'Ring of Valor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9303,2557,54,225,1,0,0,0,0,'Glacier Penguin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9361,2556,0,9699,1,0,0,0,0,'Fire Beetle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9578,686,36,17182,1,0,0,0,0,'Sulfuras, Hand of Ragnaros','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(9672,2770,8,2763,0,0,0,0,0,'Champion of Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9677,2771,8,2768,0,0,0,0,0,'Champion of Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9721,2090,74,0,1,0,0,0,0,'Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(9755,2758,27,13696,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,5),(9764,2776,8,2089,0,0,0,0,0,'1000 Stone Keeper\'s Shards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9782,2782,8,2780,0,0,0,0,0,'Champion of Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9792,2788,8,2786,0,0,0,0,0,'Champion of Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9867,2797,8,2421,0,0,0,0,0,'Noble Garden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9873,2798,8,2416,0,0,0,0,0,'Hard Boiled','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9902,2816,8,2769,0,0,0,0,0,'Champion of the Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9908,2817,8,2764,0,0,0,0,0,'Champion of Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9974,1770,0,33293,1,0,0,0,0,'XT-002 Deconstructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(9975,1756,0,33293,1,0,0,0,0,'XT-002 Deconstructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(10104,2957,8,2941,0,0,0,0,0,'I Choose You, Steelbreaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(10227,2836,28,64811,1,0,0,0,0,'Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(10369,2958,8,2944,0,0,0,0,0,'I Choose You, Steelbreaker (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(10524,3217,27,13836,1,0,0,0,0,'Disarmed!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(10598,2903,28,65195,1,0,0,0,0,'Assembly of Iron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(10599,2904,28,65195,1,0,0,0,0,'Assembly of Iron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(10879,2093,74,0,1,0,0,0,0,'Deadly Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(10966,303,41,37750,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16774142',2,0,0,0,5),(11090,3558,29,66375,1,0,0,0,0,'Spice Bread Stuffing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11122,3576,29,62050,1,0,0,0,0,'Spice Bread Stuffing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11127,3577,29,66038,1,0,0,0,0,'Spice Bread Stuffing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11159,3559,110,61781,1,0,0,0,0,'Night Elf Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11181,3579,110,61928,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16741886',2,0,0,0,5),(11199,3596,27,14053,1,0,0,0,0,'We\'re Out of Cranberry Chutney Again?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11207,3597,27,14059,1,0,0,0,0,'We\'re Out of Cranberry Chutney Again?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11261,3478,8,3596,0,0,0,0,0,'Pilgrim\'s Progress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11270,3656,8,3597,0,0,0,0,0,'Pilgrim\'s Progress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11324,3696,27,13699,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,5),(11506,3857,8,3849,0,0,0,0,0,'A-bomb-ination','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11549,3812,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11683,3916,0,34564,1,0,0,0,0,'Complete the Trial of the Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11688,3917,0,34564,1,0,0,0,0,'Complete the Trial of the Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11693,3918,0,34564,1,0,0,0,0,'Complete the Trial of the Grand Crusader','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11753,3957,8,3849,0,0,0,0,0,'A-bomb-ination','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11907,3802,28,68206,1,0,0,0,0,'Lucifron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(11960,1525,27,13100,1,0,0,0,0,'Infused Mushroom Meatloaf - Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(12162,3853,31,4753,1,3,628,3,628,'Alliance Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',4,0,0,0,5),(12301,3778,28,68572,1,0,0,0,0,'Jaelyne Evensong','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(12306,4296,28,68572,1,0,0,0,0,'Zul\'tore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(12314,4297,28,68572,1,0,0,0,0,'Jaelyne Evensong','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(12322,4298,28,68572,1,0,0,0,0,'Zul\'tore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(12498,3838,42,49426,1,0,0,0,0,'Emblem of Frost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(12499,3839,42,49426,25,0,0,0,0,'Emblem of Frost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(12500,3840,42,49426,50,0,0,0,0,'Emblem of Frost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(12501,3841,42,49426,100,0,0,0,0,'Emblem of Frost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(12502,3842,42,49426,250,0,0,0,0,'Emblem of Frost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(12503,3843,42,49426,500,0,0,0,0,'Emblem of Frost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(12504,3844,42,49426,1000,0,0,0,0,'Emblem of Frost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(12505,3876,42,49426,1500,0,0,0,0,'Emblem of Frost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(12506,4316,42,49426,2500,0,0,0,0,'Emblem of Frost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,5),(12579,229,35,0,30,3,628,3,628,'30 hks in ioc','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(12622,4416,34,67415,0,0,0,0,0,'Gundrak Hatchling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(12659,4436,110,67531,1,0,0,0,0,'Vol\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(12666,4437,110,67531,1,0,0,0,0,'Tyrande Whisperwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(12682,4456,0,28923,1,0,0,0,0,'Kronus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(12769,4532,8,4530,0,0,0,0,0,'The Frozen Throne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(12802,4556,0,28923,1,0,0,0,0,'Kronus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(12881,1695,27,24663,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,5),(12906,4596,27,24800,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,5),(12917,4602,8,4534,0,0,0,0,0,'Boned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(12957,4608,8,4597,0,0,0,0,0,'The Frozen Throne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(13003,2092,74,0,1,0,0,0,0,'Relentless Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(13016,4603,8,4610,0,0,0,0,0,'Boned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(13065,4636,8,4583,0,0,0,0,0,'The Frozen Throne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(13070,4637,8,4584,0,0,0,0,0,'The Frozen Throne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(13235,2186,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(13240,2187,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(13308,1104,0,34564,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(13310,1768,0,34564,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,5),(13376,4782,36,37894,1,0,0,0,0,'Filled Green Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,5),(13383,4784,36,49426,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,5),(13388,4785,36,49426,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,5),(13400,4788,34,35529,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,5),(13413,4789,34,31432,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,5),(88,41,8,39,1,0,0,0,0,'Into the Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(388,576,8,574,0,0,0,0,0,'Kel\'Thuzad\'s Defeat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(394,577,8,575,0,0,0,0,0,'Kel\'Thuzad\'s Defeat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(501,626,36,21539,1,0,0,0,0,'Festive Purple Dress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(507,627,43,110,1,0,0,0,0,'The Tundrid Hills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(621,116,40,773,2,0,0,0,0,'Inscription','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(655,705,7,54,400,0,0,0,0,'Maces','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(764,700,36,29592,1,0,0,0,0,'Insignia of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(784,701,36,18858,1,0,0,0,0,'Insignia of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(827,728,43,252,1,0,0,0,0,'Razor Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(853,731,40,773,3,0,0,0,0,'Inscription','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(864,732,40,773,4,0,0,0,0,'Inscription','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(875,733,40,773,5,0,0,0,0,'Inscription','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(886,734,40,773,6,0,0,0,0,'Inscription','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(897,735,40,773,6,0,0,0,0,'Inscription','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(907,736,43,192,1,0,0,0,0,'The Venture Co. Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(922,750,43,466,1,0,0,0,0,'The Forgotten Pools','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(952,760,43,446,1,0,0,0,0,'Gallows\' Corner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(966,761,43,566,1,0,0,0,0,'Faldir\'s Cove','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1019,765,43,586,1,0,0,0,0,'Apocryphan\'s Rest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1033,766,43,826,1,0,0,0,0,'Altar of Storms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1042,768,43,231,1,0,0,0,0,'Cold Hearth Manor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1058,769,43,306,1,0,0,0,0,'Fenris Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1073,770,43,966,1,0,0,0,0,'Felstone Field','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1086,771,43,889,1,0,0,0,0,'Darrowshire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1108,772,43,406,1,0,0,0,0,'Eastern Strand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1120,773,43,606,1,0,0,0,0,'Valorwind Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1134,774,43,726,1,0,0,0,0,'Grimesilt Dig Site','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1141,775,43,786,1,0,0,0,0,'The Pillar of Ash','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1151,776,43,126,1,0,0,0,0,'Jerod\'s Landing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1166,778,43,426,1,0,0,0,0,'Twilight Grove','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1179,779,43,321,1,0,0,0,0,'The Farstrider Lodge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1191,780,43,367,1,0,0,0,0,'Alther\'s Mill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1201,781,43,502,1,0,0,0,0,'Wild Shore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1228,782,43,546,1,0,0,0,0,'Stonard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1253,802,43,285,1,0,0,0,0,'The Molsen Farm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1267,841,43,386,1,0,0,0,0,'Saltspray Glen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1281,42,8,775,1,0,0,0,0,'Burning Steppes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1304,842,43,89,1,0,0,0,0,'Pools of Arlithrien','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1319,844,43,346,1,0,0,0,0,'Ameth\'Aran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1328,845,43,746,1,0,0,0,0,'Fire Scar Shrine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1346,846,43,682,1,0,0,0,0,'Windbreak Canyon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1355,847,43,926,1,0,0,0,0,'Sishir Canyon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1374,848,43,770,1,0,0,0,0,'Kolkar Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1384,849,43,985,1,0,0,0,0,'The Forgotten Coast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1397,850,43,666,1,0,0,0,0,'Wyrmbog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1414,851,43,653,1,0,0,0,0,'Lost Rigger Cove','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1430,852,43,846,1,0,0,0,0,'Temple of Arkkoran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1445,853,43,866,1,0,0,0,0,'Bloodvenom Falls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1458,854,43,626,1,0,0,0,0,'Ironstone Plateau','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1470,856,43,1027,1,0,0,0,0,'The Scarab Wall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1478,857,43,1010,1,0,0,0,0,'Everlook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1490,43,8,844,1,0,0,0,0,'Darkshore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1513,859,43,1134,1,0,0,0,0,'East Sanctum','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1537,858,43,1155,1,0,0,0,0,'Sanctum of the Sun','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1557,860,43,1368,1,0,0,0,0,'Fairbridge Strand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1578,861,43,1333,1,0,0,0,0,'Blood Watch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1626,862,43,1208,1,0,0,0,0,'Mag\'har Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1648,863,43,1141,1,0,0,0,0,'Quagg Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1669,864,43,1110,1,0,0,0,0,'The Black Temple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1689,865,43,1293,1,0,0,0,0,'Broken Wilds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1714,866,43,1194,1,0,0,0,0,'Spirit Fields','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1731,867,43,1171,1,0,0,0,0,'Stonebreaker Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1763,843,43,1184,1,0,0,0,0,'Manaforge Ultris','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1787,44,8,843,1,0,0,0,0,'Netherstorm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1795,868,43,1460,1,0,0,0,0,'The Dead Scar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(1806,220,1,30,1,3,30,3,30,'Tower A4 owned by the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,6),(1815,873,1,30,1,3,30,3,30,'Tower A4 owned by the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,6),(1841,878,42,13905,1,0,0,0,0,'29 Pound Salmon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1915,910,27,8727,1,0,0,0,0,'Elder Farwhisper in Stratholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1927,912,27,8674,1,0,0,0,0,'Elder Winterhoof in Booty Bay','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(1951,911,27,8715,1,0,0,0,0,'Elder Bladeleaf in Dolanaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(2059,961,27,12741,1,0,0,0,0,'Strength of the Tempest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(2067,962,27,12726,1,0,0,0,0,'Song of Wind and Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(2077,963,27,12348,1,0,0,0,0,'Desolace, Nijel\'s Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(2105,965,27,12377,1,0,0,0,0,'Ashenvale, Splintertree Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(2137,966,27,12335,1,0,0,0,0,'Ironforge, The Commons','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(2150,967,27,12364,1,0,0,0,0,'Eversong Woods, Falconwing Square','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(2200,969,27,12360,1,0,0,0,0,'Shadowmoon Valley, Wildhammer Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(2222,968,27,12395,1,0,0,0,0,'Shadowmoon Valley, Shadowmoon Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(2265,979,36,20563,1,0,0,0,0,'Flimsy Female Nightelf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(2340,621,57,5976,1,0,0,0,0,'Guild Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(2347,556,49,6,1,0,0,0,0,'Legs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(2364,245,52,5,1,0,0,0,0,'Priest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3068,1022,27,11816,1,0,0,0,0,'Elwynn Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3081,1023,27,11815,1,0,0,0,0,'Dustwallow Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3094,1024,27,11825,1,0,0,0,0,'Terokkar Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3106,1025,27,11853,1,0,0,0,0,'Hillsbrad Foothills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3117,1026,27,11852,1,0,0,0,0,'Mulgore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3129,1027,27,11858,1,0,0,0,0,'Terokkar Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3136,1028,27,11776,1,0,0,0,0,'Hillsbrad Foothills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3147,1029,27,11777,1,0,0,0,0,'Mulgore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3159,1030,27,11782,1,0,0,0,0,'Terokkar Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3166,1031,27,11745,1,0,0,0,0,'Elwynn Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3179,1032,27,11744,1,0,0,0,0,'Dustwallow Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3191,1033,27,11754,1,0,0,0,0,'Terokkar Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3214,283,28,24724,1,0,0,0,0,'Transformed by Hallowed Wand - Skeleton','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3306,344,41,20234,1,0,0,0,0,'Defiler\'s Runecloth Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3397,1167,8,226,0,0,0,0,0,'The Alterac Blitz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3409,1168,8,226,0,0,0,0,0,'The Alterac Blitz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3421,1169,8,157,0,0,0,0,0,'To The Rescue!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3436,1170,8,157,0,0,0,0,0,'To The Rescue!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3451,1171,8,212,0,0,0,0,0,'Storm Capper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3466,1172,8,201,0,0,0,0,0,'Warsong Expedience','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3481,1173,8,201,0,0,0,0,0,'Warsong Expedience','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3493,1174,8,408,0,0,0,0,0,'Hot Streak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3520,1183,28,42255,1,0,0,0,0,'Izzard\'s Ever Flavor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3535,1184,41,33035,1,0,0,0,0,'Ogre Mead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3547,1185,41,34064,1,0,0,0,0,'Succulent Sausage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3565,1187,36,11000,1,0,0,0,0,'Shadowforge Key','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3599,1203,41,33035,1,0,0,0,0,'Ogre Mead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3628,1225,72,182953,1,0,0,0,0,'Sporefish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3728,557,49,6,1,0,0,0,0,'Legs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3746,1206,54,225,1,0,0,0,0,'Cow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3767,1244,68,175726,1,0,0,0,0,'Charge of the Dragonflights','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3809,161,1,529,1,0,0,0,0,'Overcome a 500 resource disadvantage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(3859,153,72,180682,1,0,0,0,0,'Oily Blackmouth School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(3888,1262,8,1194,0,0,0,0,0,'Into the Nether','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3909,45,8,1268,0,0,0,0,0,'Sholazar Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3920,1274,8,1194,0,0,0,0,0,'Into the Nether','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3944,1283,8,633,0,0,0,0,0,'Stormwind Stockade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(3969,1284,8,652,0,0,0,0,0,'The Escape From Durnholde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4019,1286,8,695,0,0,0,0,0,'The Battle for Mount Hyjal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4028,1287,8,673,0,0,0,0,0,'Heroic The Escape From Durnholde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4045,1288,8,482,0,0,0,0,0,'Drak\'Tharon Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4061,1289,8,493,0,0,0,0,0,'Heroic Drak\'Tharon Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4077,1292,36,32919,1,0,0,0,0,'Filled Yellow Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4083,1293,36,33021,1,0,0,0,0,'Filled Blue Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4127,1264,43,1475,0,0,0,0,0,'Death\'s Stand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4141,1263,43,1500,0,0,0,0,0,'Steel Gate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4164,1265,43,1492,0,0,0,0,0,'Naxxramas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4183,1266,43,1471,0,0,0,0,0,'Grizzlemaw','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4197,1267,43,1535,0,0,0,0,0,'Altar of Quetz\'lun','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4211,1268,43,1549,0,0,0,0,0,'The Suntouched Pillar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4271,684,36,17966,1,0,0,0,0,'Onyxia Hide Backpack','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4293,345,41,1710,0,0,0,0,0,'Greater Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4315,922,41,12190,0,0,0,0,0,'Dreamless Sleep Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4341,923,41,9155,0,0,0,0,0,'Arcane Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4416,811,41,22853,0,0,0,0,0,'Flask of Mighty Restoration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4455,687,27,8622,1,0,0,0,0,'Stormcaller\'s Hauberk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4479,657,27,10884,1,0,0,0,0,'Trial of the Naaru: Mercy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4509,1311,0,18689,1,0,0,0,0,'Crippler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4545,686,36,19138,1,0,0,0,0,'Band of Sulfuras','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4565,685,36,19376,1,0,0,0,0,'Archimtiros\' Ring of Reckoning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4601,698,36,34245,1,0,0,0,0,'Cover of Ursol the Wise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4622,695,36,30912,1,0,0,0,0,'Leggings of Eternity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4724,812,41,19009,0,0,0,0,0,'Healthstone (2)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4742,924,46,1090,42000,0,0,0,0,'Exlated with the Kirin Tor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4755,925,46,1015,42000,0,0,0,0,'Exlated with the Netherwing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4773,927,49,10,1,0,0,0,0,'Ring is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4792,697,36,32375,1,0,0,0,0,'Bulwark of Azzinoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4822,696,36,29990,1,0,0,0,0,'Crown of the Sun','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4852,694,36,30110,1,0,0,0,0,'Coral Band of the Revived','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4879,693,36,29458,1,0,0,0,0,'Aegis of the Vindicator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4911,692,36,28804,1,0,0,0,0,'Collar of Cho\'gall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(4953,107,78,0,0,0,0,0,0,'Humanoid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4970,796,28,2010,0,0,0,0,0,'Resurrection (Rank 2)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4976,798,28,20739,0,0,0,0,0,'Rebirth (Rank 2)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4982,1229,28,50768,0,0,0,0,0,'Revive (Rank 2)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(4997,350,68,176497,0,0,0,0,0,'Portal to Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5025,388,70,0,50,0,0,0,0,'The Temple Gardens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,6),(5036,1006,70,0,50,0,0,0,0,'Hunter Rise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,6),(5050,1360,8,39,1,0,0,0,0,'Into the Basin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5058,1307,27,8999,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(5084,284,36,20563,1,0,0,0,0,'Flimsy Female Nightelf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5146,1396,27,13016,1,0,0,0,0,'Elder Northal in Transitus Shield','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5162,913,8,1396,0,0,0,0,0,'Elders of Northrend','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5295,1457,43,1603,0,0,0,0,0,'The Great Tree','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5318,926,46,510,42000,0,0,0,0,'Exalted with The Defilers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5333,1466,46,509,42000,0,0,0,0,'Exalted with The League of Arathor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5448,1467,0,29304,1,0,0,0,0,'Slad\'ran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5556,1199,40,773,1,0,0,0,0,'Inscription','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5567,1201,7,333,450,0,0,0,0,'Enchanting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5581,1202,7,160,400,0,0,0,0,'Two-Handed Maces','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5628,1103,0,27978,1,0,0,0,0,'Sjonnir the Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5667,1516,8,726,0,0,0,0,0,'Mr. Pinchy\'s Magical Crawdad Box','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5685,1517,72,192059,1,0,0,0,0,'Glassfin Minnow School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5778,291,110,44212,1,0,0,0,0,'Night Elf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5825,1656,8,1040,0,0,0,0,0,'Rotten Hallow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5837,1657,8,1041,0,0,0,0,0,'Rotten Hallow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5848,1269,43,1584,0,0,0,0,0,'Terrace of the Makers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5864,1270,43,1572,0,0,0,0,0,'Aldur\'thar: The Desolation Gate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5877,1658,0,26723,1,0,0,0,0,'Heroic: Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(5905,1676,11,1584,700,0,0,0,0,'Blackrock Depths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,6),(5957,1677,11,1584,550,0,0,0,0,'Blackrock Depths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,6),(6009,1678,11,3525,700,0,0,0,0,'Bloodmyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,6),(6104,1680,11,3525,685,0,0,0,0,'Bloodmyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,6),(6194,879,34,16082,0,0,0,0,0,'Palomino','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(6218,727,34,48027,0,0,0,0,0,'Black War Elekk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6232,1686,110,26004,1,0,0,0,0,'Brother Joshua in Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6242,1687,110,44755,1,0,0,0,0,'Troll Hunter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6255,1689,27,8768,1,0,0,0,0,'A Gaily Wrapped Present','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(6268,1691,8,279,0,0,0,0,0,'Simply Abominable','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6280,1692,8,279,0,0,0,0,0,'Simply Abominable','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6316,1699,110,27571,1,0,0,0,0,'Tauren Druid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6329,1701,29,70575,1,0,0,0,0,'You\'re Mine!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6357,1693,8,1696,0,0,0,0,0,'The Rocket\'s Pink Glare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6372,1707,8,1697,0,0,0,0,0,'Nation of Adoration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6491,1777,29,58525,1,0,0,0,0,'Haunted Herring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6607,1563,8,1781,0,0,0,0,0,'Critter Gitter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6623,1784,8,1781,0,0,0,0,0,'Critter Gitter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6656,1788,41,42431,1,0,0,0,0,'Dalaran Brownie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6666,1792,36,23002,1,0,0,0,0,'Speedy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(6749,1793,8,1790,0,0,0,0,0,'Hail To The King, Baby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(6766,1800,29,33284,1,0,0,0,0,'Ravager Dog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7142,1865,0,29316,1,0,0,0,0,'Moragg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7147,578,0,15953,1,0,0,0,0,'Grand Widow Faerlina','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7172,579,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7234,1683,8,1936,0,0,0,0,0,'Does Your Wolpertinger Linger?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7241,1956,68,192865,1,0,0,0,0,'The Schools of Arcane Magic - Illusion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7249,1957,36,43636,1,0,0,0,0,'Chromie\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7283,2016,27,12316,1,0,0,0,0,'Keep Them at Bay!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7292,2017,27,12432,1,0,0,0,0,'Riding the Red Rocket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7305,2019,27,13250,1,0,0,0,0,'Proof of Demise: Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7337,1038,8,272,0,0,0,0,0,'Torch Juggler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7341,1039,8,272,0,0,0,0,0,'Torch Juggler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7446,2094,42,43707,1,0,0,0,0,'Eitrigg\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7468,2095,42,43677,1,0,0,0,0,'High Tinker Mekkatorque\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7500,2136,8,1297,0,0,0,0,0,'Hadronox Denied','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7557,2144,8,1684,0,0,0,0,0,'Brewmaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7564,2145,8,1683,0,0,0,0,0,'Brewmaster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7603,2138,8,2186,0,0,0,0,0,'The Immortal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7606,2137,8,2178,0,0,0,0,0,'Shocking!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7647,2194,8,1762,0,0,0,0,0,'Not Even a Scratch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7659,2195,8,2192,0,0,0,0,0,'Not Even a Scratch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7718,2199,70,0,10,0,0,0,0,'The Cauldron of Flames','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7729,1752,8,1722,0,0,0,0,0,'Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7785,322,20,27975,0,0,0,0,0,'Maiden of Grief','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7813,323,20,16061,0,0,0,0,0,'Instructor Razuvious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7846,324,20,28860,0,0,0,0,0,'Sartharion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7851,799,28,20777,0,0,0,0,0,'Ancestral Spirit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(7858,800,28,20772,0,0,0,0,0,'Redemption','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(8105,2256,0,32361,1,0,0,0,0,'Icehorn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(8160,1684,8,303,0,0,0,0,0,'Have Keg, Will Travel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(8695,347,41,20223,0,0,0,0,0,'Defiler\'s Field Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(8765,801,29,20758,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(8823,2336,46,909,42000,0,0,0,0,'Exalted with Darkmoon Faire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(8919,321,18,20,0,0,0,0,0,'20 man instances','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(8991,346,41,18269,0,0,0,0,0,'Gordok Green Grog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(9147,2422,110,61815,1,0,0,0,0,'Night Elf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(9304,2557,54,225,1,0,0,0,0,'Grizzly Squirrel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(9362,2556,0,24174,1,0,0,0,0,'Fjord Rat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(9752,2758,27,13711,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,6),(9765,2776,8,1722,0,0,0,0,0,'Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(9868,2797,8,2422,0,0,0,0,0,'Shake Your Bunny-Maker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(9874,2798,8,2497,0,0,0,0,0,'Spring Fling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(9903,2816,8,2768,0,0,0,0,0,'Champion of Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(9909,2817,8,2763,0,0,0,0,0,'Champion of Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(9919,2836,28,64812,1,0,0,0,0,'Sen\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(9976,1770,0,32867,1,0,0,0,0,'Assembly of Iron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(9977,1756,0,32867,1,0,0,0,0,'Assembly of Iron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(10105,2957,8,2953,0,0,0,0,0,'Disarmed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(10348,2903,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(10357,2904,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(10370,2958,8,2954,0,0,0,0,0,'Disarmed (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(10967,303,41,39477,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16774142',2,0,0,0,6),(11160,3559,110,61781,1,0,0,0,0,'Orc Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(11262,3478,8,3558,0,0,0,0,0,'Sharing is Caring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(11271,3656,8,3558,0,0,0,0,0,'Sharing is Caring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(11325,3696,27,13726,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,6),(11507,3857,8,3850,0,0,0,0,0,'Mowed Down','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(11559,3778,28,68574,1,0,0,0,0,'Argent Confessor Paletress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(11754,3957,8,3850,0,0,0,0,0,'Mowed Down','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(11908,3802,28,68206,1,0,0,0,0,'Thunderaan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(12078,1525,27,13101,1,0,0,0,0,'Feast for the Legerddemain - Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(12307,4296,28,68574,1,0,0,0,0,'Argent Confessor Paletress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(12315,4297,28,68574,1,0,0,0,0,'Argent Confessor Paletress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(12323,4298,28,68574,1,0,0,0,0,'Argent Confessor Paletress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(12379,227,13,0,300000,3,628,3,628,'Do 300,000 Damage in Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,6),(12578,231,56,0,20,3,628,1,0,'Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,6),(12623,4416,34,67418,0,0,0,0,0,'Ravasaur Hatchling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(12683,4456,0,27978,1,0,0,0,0,'Sjonnir the Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(12803,4556,0,27978,1,0,0,0,0,'Sjonnir the Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(12882,1695,27,24664,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,6),(12907,4596,27,24801,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,6),(12918,4602,8,4535,0,0,0,0,0,'Full House','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(13005,2093,74,0,1,0,0,0,0,'Relentless Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(13007,2090,74,0,1,0,0,0,0,'Relentless Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(13017,4603,8,4611,0,0,0,0,0,'Full House','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(13254,1491,56,0,0,0,0,0,0,'Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(13260,382,35,0,0,0,0,0,0,'Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(13309,1104,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(13311,1768,0,36597,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(13363,1526,27,13830,0,0,0,0,0,'The Ghostfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(13368,839,15,628,0,0,0,0,0,'Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(13369,840,1,628,0,0,0,0,0,'Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,6),(13377,4782,36,37893,1,0,0,0,0,'Filled Green Brewfest Stein','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,6),(13401,4788,34,31433,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,6),(13414,4789,34,29613,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,6),(87,41,8,38,1,0,0,0,0,'The Summit of Storm Peaks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(508,627,43,109,1,0,0,0,0,'Amberstill Ranch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(622,116,40,755,2,0,0,0,0,'Jewelcrafting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(656,705,7,229,400,0,0,0,0,'Polearms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(765,700,36,18852,1,0,0,0,0,'Insignia of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(785,701,36,18859,1,0,0,0,0,'Insignia of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(828,728,43,254,1,0,0,0,0,'Razormane Grounds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(854,731,40,755,3,0,0,0,0,'Jewelcrafting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(865,732,40,755,4,0,0,0,0,'Jewelcrafting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(876,733,40,755,5,0,0,0,0,'Jewelcrafting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(887,734,40,755,6,0,0,0,0,'Jewelcrafting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(898,735,40,755,6,0,0,0,0,'Jewelcrafting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(908,736,43,194,1,0,0,0,0,'Ravaged Caravan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(923,750,43,467,1,0,0,0,0,'Honor\'s Stand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(953,760,43,447,1,0,0,0,0,'Gavin\'s Naze','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(967,761,43,567,1,0,0,0,0,'Circle of Inner Binding','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1020,765,43,587,1,0,0,0,0,'Kargath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1034,766,43,827,1,0,0,0,0,'Dreadmaul Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1043,768,43,230,1,0,0,0,0,'Brill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1059,769,43,307,1,0,0,0,0,'The Decrepit Ferry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1074,770,43,967,1,0,0,0,0,'Dalson\'s Tears','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1087,771,43,888,1,0,0,0,0,'Pestilent Scar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1109,772,43,407,1,0,0,0,0,'Southshore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1121,773,43,607,1,0,0,0,0,'Agol\'watha','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1135,774,43,727,1,0,0,0,0,'Dustfire Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1142,775,43,787,1,0,0,0,0,'Blackrock Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1152,776,43,127,1,0,0,0,0,'Tower of Azora','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1167,778,43,427,1,0,0,0,0,'The Yorgen Farmstead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1180,779,43,322,1,0,0,0,0,'Ironband\'s Excavation Site','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1192,780,43,368,1,0,0,0,0,'Stonewatch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1202,781,43,504,1,0,0,0,0,'Nek\'mani Wellspring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1229,782,43,547,1,0,0,0,0,'Pool of Tears','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1254,802,43,286,1,0,0,0,0,'Gold Coast Quarry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1268,841,43,387,1,0,0,0,0,'Ironbeard\'s Tomb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1283,42,8,627,1,0,0,0,0,'Dun Morogh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1305,842,43,92,1,0,0,0,0,'Starbreeze Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1320,844,43,347,1,0,0,0,0,'Grove of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1329,845,43,747,1,0,0,0,0,'Astranaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1347,846,43,681,1,0,0,0,0,'The Shimmering Flats','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1356,847,43,925,1,0,0,0,0,'Windshear Crag','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1375,848,43,769,1,0,0,0,0,'Ethel Rethor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1385,849,43,986,1,0,0,0,0,'Dire Maul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1398,850,43,667,1,0,0,0,0,'Alcaz Island','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1415,851,43,652,1,0,0,0,0,'Waterspring Field','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1431,852,43,847,1,0,0,0,0,'Legash Encampment','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1446,853,43,867,1,0,0,0,0,'Jaedenar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1459,854,43,627,1,0,0,0,0,'Lakkari Tar Pits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1472,856,43,1417,1,0,0,0,0,'Staghelm Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1481,857,43,1008,1,0,0,0,0,'Owl Wing Thicket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1514,859,43,1135,1,0,0,0,0,'Farstrider Retreat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1538,858,43,1157,1,0,0,0,0,'Dawnstar Spire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1558,860,43,1369,1,0,0,0,0,'Geezle\'s Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1579,861,43,1334,1,0,0,0,0,'Bristlelimb Enclave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1601,43,8,861,1,0,0,0,0,'Bloodmyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1627,862,43,1215,1,0,0,0,0,'Pools of Aggonar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1649,863,43,1146,1,0,0,0,0,'Telredor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1670,864,43,1112,1,0,0,0,0,'The Deathforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1690,865,43,1294,1,0,0,0,0,'Circle of Blood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1715,866,43,1195,1,0,0,0,0,'Sunspring Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1732,867,43,1173,1,0,0,0,0,'Tuurem','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1764,843,43,1185,1,0,0,0,0,'Ruins of Farahlon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1788,44,8,864,1,0,0,0,0,'Shadowmoon Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1807,220,1,30,1,3,30,3,30,'Tower H1 owned by the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,7),(1816,873,1,30,1,3,30,3,30,'Tower H1 owned by the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,7),(1842,878,42,13880,1,0,0,0,0,'68 Pound Grouper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1850,879,36,12353,1,0,0,0,0,'White Stallion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(1937,912,27,8642,1,0,0,0,0,'Elder Silvervein in Thelsamar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(1952,911,27,8721,1,0,0,0,0,'Elder Starweave in Auberdine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(2060,961,27,12734,1,0,0,0,0,'Rejek: First Blood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(2068,962,27,12735,1,0,0,0,0,'A Cleansing Song','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(2078,963,27,12349,1,0,0,0,0,'Dustwallow Marsh, Theramore Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(2106,965,27,12375,1,0,0,0,0,'Barrens, Camp Taurajo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(2138,966,27,12339,1,0,0,0,0,'Loch Modan, Thelsamar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(2151,967,27,12373,1,0,0,0,0,'Ghostlands, Tranquillien','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(2201,969,27,12356,1,0,0,0,0,'Terokkar Forest, Allerian Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(2223,968,27,12391,1,0,0,0,0,'Terokkar Forest, Stonebreaker Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(2266,979,36,20569,1,0,0,0,0,'Flimsy Female Orc Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(2348,556,49,7,1,0,0,0,0,'Feet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(2365,245,52,4,1,0,0,0,0,'Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(2893,621,57,31779,1,0,0,0,0,'Aldor Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(3069,1022,27,11819,1,0,0,0,0,'Hillsbrad Foothills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3082,1023,27,11817,1,0,0,0,0,'Feralas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3095,1024,27,11829,1,0,0,0,0,'Zangarmarsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3107,1025,27,11584,1,0,0,0,0,'Silverpine Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3118,1026,27,11836,1,0,0,0,0,'Silithus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3130,1027,27,11863,1,0,0,0,0,'Zangarmarsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3137,1028,27,11580,1,0,0,0,0,'Silverpine Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3148,1029,27,11800,1,0,0,0,0,'Silithus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3160,1030,27,11787,1,0,0,0,0,'Zangarmarsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3167,1031,27,11748,1,0,0,0,0,'Hillsbrad Foothills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3180,1032,27,11746,1,0,0,0,0,'Feralas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3192,1033,27,11758,1,0,0,0,0,'Zangarmarsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3215,283,28,24741,1,0,0,0,0,'Transformed by Hallowed Wand - Wisp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3307,344,41,20235,1,0,0,0,0,'Defiler\'s Silk Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3364,227,55,0,300000,3,30,3,30,'300,000 healing in av','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,7),(3398,1167,8,223,0,0,0,0,0,'The Sickly Gazelle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3410,1168,8,223,0,0,0,0,0,'The Sickly Gazelle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3422,1169,8,161,0,0,0,0,0,'Resilient Victory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3437,1170,8,161,0,0,0,0,0,'Resilient Victory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3452,1171,8,216,0,0,0,0,0,'Bound for Glory','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3467,1172,8,204,0,0,0,0,0,'Ironman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3482,1173,8,204,0,0,0,0,0,'Ironman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3494,1174,8,1162,0,0,0,0,0,'Hotter Streak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3521,1183,28,42264,1,0,0,0,0,'Draenic Pale Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3539,1184,41,33031,1,0,0,0,0,'Thunder 45','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3548,1185,41,33043,1,0,0,0,0,'The Essential Brewfest Pretzel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3566,1187,36,28395,1,0,0,0,0,'Shattered Halls Key','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3600,1203,41,34019,1,0,0,0,0,'Path of Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3729,557,49,7,1,0,0,0,0,'Feet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3747,1206,54,225,1,0,0,0,0,'Crab','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3768,1244,68,175761,1,0,0,0,0,'Civil War in the Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3810,161,1,529,1,0,0,0,0,'Overcome a 500 resource disadvantage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(3868,153,72,182956,1,0,0,0,0,'School of Darter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(3889,1262,8,1195,0,0,0,0,0,'Shadow of the Betrayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3921,1274,8,1195,0,0,0,0,0,'Shadow of the Betrayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3945,1283,8,634,0,0,0,0,0,'Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(3970,1284,8,653,0,0,0,0,0,'Sethekk Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4020,1286,8,696,0,0,0,0,0,'Tempest Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4029,1287,8,674,0,0,0,0,0,'Heroic Sethekk Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4046,1288,8,483,0,0,0,0,0,'The Violet Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4062,1289,8,494,0,0,0,0,0,'Heroic The Violet Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4128,1264,43,1476,0,0,0,0,0,'Coldarra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4142,1263,43,1502,0,0,0,0,0,'Scalawag Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4165,1265,43,1494,0,0,0,0,0,'Light\'s Trust','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4184,1266,43,1472,0,0,0,0,0,'Rage Fang Shrine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4198,1267,43,1536,0,0,0,0,0,'Altar of Mam\'toth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4212,1268,43,1550,0,0,0,0,0,'Rainspeaker Canopy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4272,684,36,17067,1,0,0,0,0,'Ancient Cornerstone Grimoire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(4294,345,41,929,0,0,0,0,0,'Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4316,922,41,20002,0,0,0,0,0,'Greater Dreamless Sleep Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4342,923,41,34537,0,0,0,0,0,'Bloodberry Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4414,811,41,40084,0,0,0,0,0,'Flask of Endless Rage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4453,687,27,8627,1,0,0,0,0,'Avenger\'s Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(4510,1311,0,18686,1,0,0,0,0,'Doomsayer Jurim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4546,686,36,18814,1,0,0,0,0,'Choker of the Fire Lord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(4566,685,36,19364,1,0,0,0,0,'Ashkandi, Greatsword of the Brotherhood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(4602,698,36,34332,1,0,0,0,0,'Cowl of Gul\'dan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(4623,695,36,30903,1,0,0,0,0,'Legguards of Endless Rage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(4725,812,41,5511,0,0,0,0,0,'Lesser Healthstone (0)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4743,924,46,1098,42000,0,0,0,0,'Exlated with the Knights of the Ebon Blade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4756,925,46,1038,42000,0,0,0,0,'Exlated with Ogri\'la','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4774,927,49,9,1,0,0,0,0,'Gloves are Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4793,697,36,32525,1,0,0,0,0,'Cowl of the Illidari High Lord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(4823,696,36,29987,1,0,0,0,0,'Gauntlets of the Sun King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(4853,694,36,30103,1,0,0,0,0,'Fang of Vashj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(4880,693,36,28777,1,0,0,0,0,'Cloak of the Pit Stalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(4912,692,36,28803,1,0,0,0,0,'Cowl of Nature\'s Breath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(4954,107,78,0,0,0,0,0,0,'Mechanical','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4971,796,28,2006,0,0,0,0,0,'Resurrection (Rank 1)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4977,798,28,20484,0,0,0,0,0,'Rebirth (Rank 1)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4983,1229,28,50769,0,0,0,0,0,'Revive (Rank 1)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(4998,350,68,176499,0,0,0,0,0,'Portal to Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5026,388,70,0,50,0,0,0,0,'Tradesmen\'s Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,7),(5037,1006,70,0,50,0,0,0,0,'Spirit Rise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,7),(5051,1360,8,38,1,0,0,0,0,'The Summit of Storm Peaks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5059,1307,27,9000,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(5085,284,36,20569,1,0,0,0,0,'Flimsy Female Orc Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5147,1396,27,13018,1,0,0,0,0,'Elder Sandrene in Lakeside Landing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5259,910,27,13017,1,0,0,0,0,'Elder Jarten in Utgarde Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5296,1457,43,1602,0,0,0,0,0,'Violet Stand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5298,45,8,1457,0,0,0,0,0,'Crystalsong Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5319,926,46,889,42000,0,0,0,0,'Exalted with Warsong Outriders','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5334,1466,46,890,42000,0,0,0,0,'Exalted with Silverwing Sentinels','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5463,1467,0,26693,1,0,0,0,0,'Skadi the Ruthless','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5557,1199,40,755,1,0,0,0,0,'Jewelcrafting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5571,1201,7,755,450,0,0,0,0,'Jewelcrafting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5582,1202,7,473,400,0,0,0,0,'Fist Weapons','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5623,1103,0,29120,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5668,1516,8,878,0,0,0,0,0,'One That Didn\'t Get Away','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5686,1517,72,192052,1,0,0,0,0,'Imperial Manta Ray School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5779,291,110,44212,1,0,0,0,0,'Orc','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5826,1656,8,1261,0,0,0,0,0,'G.N.E.R.D. Rage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5838,1657,8,1261,0,0,0,0,0,'G.N.E.R.D. Rage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5849,1269,43,1587,0,0,0,0,0,'Sparksocket Minefield','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5865,1270,43,1566,0,0,0,0,0,'Sindragosa\'s Fall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5879,1658,0,29311,1,0,0,0,0,'Heroic: Herald Volazj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(5906,1676,11,4,700,0,0,0,0,'Blasted Lands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,7),(5958,1677,11,4,550,0,0,0,0,'Blasted Lands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,7),(6010,1678,11,148,700,0,0,0,0,'Darkshore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,7),(6105,1680,11,148,685,0,0,0,0,'Darkshore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,7),(6219,727,34,22723,0,0,0,0,0,'Black War Tiger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6233,1686,110,26004,1,0,0,0,0,'Brother Crowley in Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6243,1687,110,44755,1,0,0,0,0,'Gnome Mage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6256,1689,27,8769,1,0,0,0,0,'A Ticking Present','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(6269,1691,8,1687,0,0,0,0,0,'Let It Snow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6281,1692,8,1687,0,0,0,0,0,'Let It Snow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6286,913,8,609,0,0,0,0,0,'50 Coins of Ancestry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6318,1699,110,27571,1,0,0,0,0,'Undead Warrior','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6330,1701,29,70576,1,0,0,0,0,'You\'re the best!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6358,1693,8,1698,0,0,0,0,0,'Nation of Adoration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6371,1707,8,1696,0,0,0,0,0,'The Rocket\'s Pink Glare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6492,1777,29,58521,1,0,0,0,0,'Last Week\'s Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6624,1563,8,1782,0,0,0,0,0,'Critter Gitter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6625,1784,8,1783,0,0,0,0,0,'Critter Gitter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6657,1788,41,42430,1,0,0,0,0,'Dalaran Doughnut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(6667,1792,34,28738,0,0,0,0,0,'Speedy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(6767,1800,29,43758,1,0,0,0,0,'Stormchops','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7148,578,0,15952,1,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7161,579,0,15952,1,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7242,1956,68,192866,1,0,0,0,0,'The Schools of Arcane Magic - Necromancy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7250,1957,36,43635,1,0,0,0,0,'Kel\'Thuzad\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7284,2016,27,12314,1,0,0,0,0,'Down With Captain Zorna!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7293,2017,27,12315,1,0,0,0,0,'Crush Captain Brightwater!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7306,2019,27,13251,1,0,0,0,0,'Proof of Demise: Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7447,2094,42,43708,1,0,0,0,0,'Elling Trias\' Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7469,2095,42,43683,1,0,0,0,0,'Khadgar\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7501,2136,8,1860,0,0,0,0,0,'Gotta Go!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7558,2144,8,1656,0,0,0,0,0,'Hallowed Be Thy Name','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7565,2145,8,1657,0,0,0,0,0,'Hallowed Be Thy Name','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7607,2138,8,2179,0,0,0,0,0,'Shocking! (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7610,2137,8,2180,0,0,0,0,0,'Subtraction','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7648,2194,8,1763,0,0,0,0,0,'Artillery Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7660,2195,8,1763,0,0,0,0,0,'Artillery Veteran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7712,2199,70,0,10,0,0,0,0,'The Sunken Ring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7730,1752,8,1721,0,0,0,0,0,'Heroic: Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7788,322,20,28546,0,0,0,0,0,'Ionar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7815,323,20,15952,0,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7845,324,20,16064,0,0,0,0,0,'Thane Korth\'azz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7850,799,28,25590,0,0,0,0,0,'Ancestral Spirit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7856,800,28,48949,0,0,0,0,0,'Redemption','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(7866,801,28,20759,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(8106,2256,0,32377,1,0,0,0,0,'Perobas the Bloodthirster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(8694,347,41,20222,0,0,0,0,0,'Defiler\'s Enriched Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(8824,2336,46,349,42000,0,0,0,0,'Exalted with Ravenholdt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(8993,346,41,19318,0,0,0,0,0,'Bottled Alterac Spring Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(9148,2422,110,61815,1,0,0,0,0,'Orc','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(9305,2557,54,225,1,0,0,0,0,'Huge Toad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(9363,2556,0,32258,1,0,0,0,0,'Gold Beetle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(9753,2758,27,13694,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,7),(9766,2776,8,1721,0,0,0,0,0,'Heroic: Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(9869,2797,8,2436,0,0,0,0,0,'Desert Rose','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(9875,2798,8,2420,0,0,0,0,0,'Noble Garden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(9920,2836,28,64813,1,0,0,0,0,'Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(9978,1770,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(9979,1756,0,32930,1,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(10111,2957,8,3006,0,0,0,0,0,'Crazy Cat Lady','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(10351,2903,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(10363,2904,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(10376,2958,8,3007,0,0,0,0,0,'Crazy Cat Lady (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(10878,2090,74,0,1,0,0,0,0,'Deadly Gladiator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(10968,303,41,39476,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16774142',2,0,0,0,7),(11161,3559,110,61781,1,0,0,0,0,'Troll Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(11263,3478,8,3582,0,0,0,0,0,'Terokkar Turkey Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(11272,3656,8,3582,0,0,0,0,0,'Terokkar Turkey Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(11326,3696,27,13727,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,7),(11508,3857,8,3852,0,0,0,0,0,'Cut the Blue Wire... No the Red Wire!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(11560,3778,28,68575,1,0,0,0,0,'Eadric the Pure','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(11755,3957,8,3852,0,0,0,0,0,'Cut the Blue Wire... No the Red Wire!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(11909,3802,28,68206,1,0,0,0,0,'Chromaggus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(12079,1525,27,13113,1,0,0,0,0,'Feast for the Legerdemain - Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(12308,4296,28,68575,1,0,0,0,0,'Eadric the Pure','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(12316,4297,28,68575,1,0,0,0,0,'Eadric the Pure','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(12324,4298,28,68575,1,0,0,0,0,'Eadric the Pure','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(12624,4416,34,67419,0,0,0,0,0,'Razormaw Hatchling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,7),(12684,4456,0,29120,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(12804,4556,0,29120,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(12883,1695,27,24665,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,7),(12919,4602,8,4536,0,0,0,0,0,'I\'m on a Boat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(13018,4603,8,4612,0,0,0,0,0,'I\'m on a Boat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(13364,1526,27,13832,0,0,0,0,0,'The Jewel of the Sewers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,7),(13402,4788,34,29615,0,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,7),(13415,4789,36,29125,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,7),(89,41,8,40,1,0,0,0,0,'Icecrown: The Final Goal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(509,627,43,108,1,0,0,0,0,'Helm\'s Bed Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(623,116,40,165,2,0,0,0,0,'Leatherworking','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(657,705,7,136,400,0,0,0,0,'Staves','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(766,700,36,18846,1,0,0,0,0,'Insignia of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(786,701,36,18854,1,0,0,0,0,'Insignia of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(829,728,43,256,1,0,0,0,0,'Thunder Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(855,731,40,165,3,0,0,0,0,'Leatherworking','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(866,732,40,165,4,0,0,0,0,'Leatherworking','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(877,733,40,165,5,0,0,0,0,'Leatherworking','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(888,734,40,165,6,0,0,0,0,'Leatherworking','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(899,735,40,165,6,0,0,0,0,'Leatherworking','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(916,736,43,196,1,0,0,0,0,'The Golden Plains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(924,750,43,468,1,0,0,0,0,'Grol\'dom Farm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(954,760,43,448,1,0,0,0,0,'Growless Cave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(968,761,43,568,1,0,0,0,0,'Thandol Span','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1021,765,43,588,1,0,0,0,0,'The Dustbowl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1035,766,43,828,1,0,0,0,0,'The Tainted Scar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1044,768,43,229,1,0,0,0,0,'Garren\'s Haunt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1060,769,43,308,1,0,0,0,0,'The Sepulcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1075,770,43,968,1,0,0,0,0,'The Writhing Haunt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1088,771,43,887,1,0,0,0,0,'Corin\'s Crossing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1110,772,43,408,1,0,0,0,0,'Hillsbrad Fields','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1122,773,43,608,1,0,0,0,0,'The Creeping Ruin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1143,775,43,788,1,0,0,0,0,'Draco\'dar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1153,776,43,128,1,0,0,0,0,'Brackwell Pumpkin Patch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1168,778,43,428,1,0,0,0,0,'Brightwood Grove','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1181,779,43,323,1,0,0,0,0,'Grizzlepaw Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1193,780,43,369,1,0,0,0,0,'Render\'s Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1203,781,43,505,1,0,0,0,0,'Mistvale Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1230,782,43,548,1,0,0,0,0,'Stagalbog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1255,802,43,287,1,0,0,0,0,'The Dead Acre','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1269,841,43,388,1,0,0,0,0,'Dun Modr','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1284,42,8,778,1,0,0,0,0,'Duskwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1306,842,43,93,1,0,0,0,0,'The Oracle Glade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1321,844,43,348,1,0,0,0,0,'Remtravel\'s Excavation','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1330,845,43,748,1,0,0,0,0,'Iris Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1348,846,43,688,1,0,0,0,0,'Camp E\'thok','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1357,847,43,924,1,0,0,0,0,'Sun Rock Retreat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1376,848,43,768,1,0,0,0,0,'Valley of Spears','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1386,849,43,987,1,0,0,0,0,'Feral Scar Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1416,851,43,651,1,0,0,0,0,'Abyssal Sands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1432,852,43,848,1,0,0,0,0,'Thalassian Base Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1447,853,43,868,1,0,0,0,0,'Ruins of Constellas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1482,857,43,1009,1,0,0,0,0,'Ice Thistle Hills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1491,43,8,845,1,0,0,0,0,'Ashenvale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1515,859,43,1137,1,0,0,0,0,'Stillwhisper Pond','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1539,858,43,1158,1,0,0,0,0,'Farstrider Enclave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1559,860,43,1370,1,0,0,0,0,'Moongraze Woods','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1580,861,43,1335,1,0,0,0,0,'Kessel\'s Crossing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1628,862,43,1216,1,0,0,0,0,'Ruins of Sha\'naar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1650,863,43,1147,1,0,0,0,0,'The Dead Mire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1671,864,43,1116,1,0,0,0,0,'The Hand of Gul\'dan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1691,865,43,1295,1,0,0,0,0,'Death\'s Door','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1716,866,43,1196,1,0,0,0,0,'Telaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1733,867,43,1176,1,0,0,0,0,'Shattrath City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1765,843,43,1186,1,0,0,0,0,'Tempest Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1808,220,1,30,1,3,30,3,30,'Tower H2 owned by the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,8),(1817,873,1,30,1,3,30,3,30,'Tower H2 owned by the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,8),(1846,878,42,44703,1,0,0,0,0,'Dark Herring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1938,912,27,8675,1,0,0,0,0,'Elder Skychaser in Sentinel Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(1953,911,27,8673,1,0,0,0,0,'Elder Bloodhoof in Bloodhoof Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(2061,961,27,12758,1,0,0,0,0,'A Hero\'s Headgear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(2069,962,27,12737,1,0,0,0,0,'Song of Fecundity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(2079,963,27,12337,1,0,0,0,0,'Exodar, Seat of the Naaru','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(2107,965,27,12374,1,0,0,0,0,'Barrens, The Crossroads','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(2139,966,27,12342,1,0,0,0,0,'Redridge Mountains, Lakeshire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(2152,967,27,12376,1,0,0,0,0,'Hillsbrad Foothills, Tarren Mill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(2202,969,27,12355,1,0,0,0,0,'Zangarmarsh, Orebor Harborage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(2224,968,27,12390,1,0,0,0,0,'Zangarmarsh, Zabra\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(2267,979,36,20571,1,0,0,0,0,'Flimsy Female Tauren Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(2349,556,49,8,1,0,0,0,0,'Wrist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(2366,245,52,7,1,0,0,0,0,'Shaman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(2894,621,57,20131,1,0,0,0,0,'Battle Tabard of the Defilers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(3070,1022,27,11820,1,0,0,0,0,'Loch Modan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3083,1023,27,11831,1,0,0,0,0,'Silithus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3108,1025,27,11837,1,0,0,0,0,'Stranglethorn Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3119,1026,27,11856,1,0,0,0,0,'Stonetalon Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3138,1028,27,11801,1,0,0,0,0,'Stranglethorn Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3149,1029,27,11780,1,0,0,0,0,'Stonetalon Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3168,1031,27,11749,1,0,0,0,0,'Loch Modan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3181,1032,27,11760,1,0,0,0,0,'Silithus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3308,344,41,38640,1,0,0,0,0,'Dense Frostweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3365,227,55,0,300000,3,529,3,529,'300,000 healing in ab','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,8),(3399,1167,8,220,0,0,0,0,0,'Stormpike Perfection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3411,1168,8,873,0,0,0,0,0,'Frostwolf Perfection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3423,1169,8,156,0,0,0,0,0,'Territorial Dominance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3438,1170,8,156,0,0,0,0,0,'Territorial Dominance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3453,1171,8,233,0,0,0,0,0,'Bloodthirsty Berserker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3469,1172,8,203,0,0,0,0,0,'Not In My House','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3484,1173,8,1251,0,0,0,0,0,'Not In My House','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3496,1174,8,409,0,0,0,0,0,'Last Man Standing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3522,1183,28,42257,1,0,0,0,0,'Blackrock Lager','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3540,1184,41,33032,1,0,0,0,0,'Thunderbrew Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3549,1185,41,33026,1,0,0,0,0,'The Golden Link','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3567,1187,36,7146,1,0,0,0,0,'The Scarlet Key','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3601,1203,41,34017,1,0,0,0,0,'Small Step Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3730,557,49,8,1,0,0,0,0,'Wrist','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3748,1206,54,225,1,0,0,0,0,'Deer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3769,1244,68,175855,1,0,0,0,0,'Empires\' Fall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3811,161,1,529,1,0,0,0,0,'Overcome a 500 resource disadvantage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(3851,153,72,180900,1,0,0,0,0,'Abundant Oily Blackmouth School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(3910,45,8,1269,0,0,0,0,0,'Storm Peaks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3946,1283,8,635,0,0,0,0,0,'Razorfen Kraul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(3971,1284,8,654,0,0,0,0,0,'Shadow Labyrinth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4021,1286,8,697,0,0,0,0,0,'The Black Temple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4030,1287,8,675,0,0,0,0,0,'Heroic Shadow Labyrinth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4047,1288,8,484,0,0,0,0,0,'Gundrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4063,1289,8,495,0,0,0,0,0,'Heroic Gundrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4129,1264,43,1480,0,0,0,0,0,'Bor\'gorok Outpost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4143,1263,43,1503,0,0,0,0,0,'Nifflevar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4166,1265,43,1499,0,0,0,0,0,'Icemist Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4185,1266,43,1474,0,0,0,0,0,'Thor Modan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4199,1267,43,1537,0,0,0,0,0,'Altar of Har\'koa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4213,1268,43,1551,0,0,0,0,0,'The Lifeblood Pillar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4282,684,36,17068,1,0,0,0,0,'Deathbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(4295,345,41,858,0,0,0,0,0,'Lesser Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4317,922,41,22836,0,0,0,0,0,'Major Dreamless Sleep Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4343,923,41,10592,0,0,0,0,0,'Catseye Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4456,687,27,8661,1,0,0,0,0,'Doomcaller\'s Robes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(4511,1311,0,18698,1,0,0,0,0,'Ever-Core the Punisher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4547,686,36,18815,1,0,0,0,0,'Essence of the Pure Flame','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(4567,685,36,19381,1,0,0,0,0,'Boots of the Shadow Flame','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(4603,698,36,34339,1,0,0,0,0,'Cowl of Light\'s Purity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(4624,695,36,30907,1,0,0,0,0,'Mail of Fevered Pursuit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(4726,812,41,19006,0,0,0,0,0,'Lesser Healthstone (1)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4744,924,46,1085,42000,0,0,0,0,'Exlated with the Warsong Offensive','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4757,925,46,970,42000,0,0,0,0,'Exlated with the Sporeggar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4775,927,49,0,1,0,0,0,0,'Helm is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4794,697,36,32500,1,0,0,0,0,'Crystal Spire of Karabor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(4824,696,36,29995,1,0,0,0,0,'Leggings of Murderous Intent','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(4854,694,36,30112,1,0,0,0,0,'Glorious Gauntlets of Crestfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(4881,693,36,28782,1,0,0,0,0,'Crystalheart Pulse-Staff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(4913,692,36,28830,1,0,0,0,0,'Dragonspine Trophy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(4955,107,78,0,0,0,0,0,0,'Undead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(4999,350,68,182352,0,0,0,0,0,'Portal to Silvermoon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5027,388,70,0,50,0,0,0,0,'Warrior\'s Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,8),(5038,1006,70,0,50,0,0,0,0,'The Pools of Vision','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,8),(5052,1360,8,40,1,0,0,0,0,'Icecrown: The Final Goal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5060,1307,27,9001,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(5086,284,36,20571,1,0,0,0,0,'Flimsy Female Tauren Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5148,1396,27,13024,1,0,0,0,0,'Elder Wanikaya in Rainspeaker Rapids','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5260,910,27,13021,1,0,0,0,0,'Elder Igasho in The Nexus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5297,1457,43,1604,0,0,0,0,0,'The Unbound Thicket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5320,926,46,729,42000,0,0,0,0,'Exalted with Frostwolf Clan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5335,1466,46,730,42000,0,0,0,0,'Exalted with Stormpike Guard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5436,1467,0,28684,1,0,0,0,0,'Krik\'thir the Gatewatcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5558,1199,40,165,1,0,0,0,0,'Leatherworking','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5572,1201,7,165,450,0,0,0,0,'Leatherworking','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5583,1202,7,46,400,0,0,0,0,'Guns','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5624,1103,0,29311,1,0,0,0,0,'Herald Volazj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5669,1516,8,905,0,0,0,0,0,'Old Man Barlowned','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5687,1517,72,192054,1,0,0,0,0,'Moonglow Cuttlefish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5780,291,110,44212,1,0,0,0,0,'Tauren','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5827,1656,8,291,0,0,0,0,0,'Check Your Head','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5839,1657,8,291,0,0,0,0,0,'Check Your Head','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5850,1269,43,1593,0,0,0,0,0,'Engine of the Makers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5866,1270,43,1573,0,0,0,0,0,'Valhalas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5884,1658,0,28923,1,0,0,0,0,'Heroic: Loken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(5907,1676,11,46,700,0,0,0,0,'Burning Steppes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,8),(5959,1677,11,46,550,0,0,0,0,'Burning Steppes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,8),(6011,1678,11,405,700,0,0,0,0,'Desolace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,8),(6106,1680,11,405,685,0,0,0,0,'Desolace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,8),(6195,879,34,16083,0,0,0,0,0,'White Stallion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(6220,727,34,22721,0,0,0,0,0,'Black War Raptor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6234,1686,110,26004,1,0,0,0,0,'Brother Cassius in Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6244,1687,110,44755,1,0,0,0,0,'Dwarf Paladin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6270,1691,8,1685,0,0,0,0,0,'Bros. Before Ho Ho Ho\'s','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6282,1692,8,1686,0,0,0,0,0,'Bros. Before Ho Ho Ho\'s','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6287,913,8,626,0,0,0,0,0,'Lunar Festival Finery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6317,1699,110,27571,1,0,0,0,0,'Troll Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6331,1701,29,70580,1,0,0,0,0,'I LOVE YOU','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6359,1693,8,1699,0,0,0,0,0,'Fistful of Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6373,1707,8,1699,0,0,0,0,0,'Fistful of Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6493,1777,29,45549,1,0,0,0,0,'Mammoth Meal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6631,1563,8,1785,0,0,0,0,0,'Dinner Impossible','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6632,1784,8,1785,0,0,0,0,0,'Dinner Impossible','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(6669,1792,36,32616,1,0,0,0,0,'Egbert\'s Egg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(6768,1800,29,33292,1,0,0,0,0,'Blackened Sporefish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7158,578,0,15989,1,0,0,0,0,'Sapphiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7171,579,0,15989,1,0,0,0,0,'Sapphiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7243,1956,68,192867,1,0,0,0,0,'The Schools of Arcane Magic - Transmutation','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7251,1957,36,43628,1,0,0,0,0,'Lady Jaina Proudmoore\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7285,2016,27,12323,1,0,0,0,0,'Smoke \'Em Out','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7294,2017,27,12317,1,0,0,0,0,'Keep Them at Bay','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7307,2019,27,13252,1,0,0,0,0,'Proof of Demise: Sjonnir The Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7448,2094,42,43709,1,0,0,0,0,'Falstad Wildhammer\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7470,2095,42,43682,1,0,0,0,0,'King Anasterian Sunstrider\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7503,2136,8,1862,0,0,0,0,0,'Volazj\'s Quick Demise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7533,2137,8,622,0,0,0,0,0,'The Spellweaver\'s Downfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7559,2144,8,1692,0,0,0,0,0,'Merrymaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7566,2145,8,1691,0,0,0,0,0,'Merrymaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7619,2138,8,2177,0,0,0,0,0,'And They Would All Go Down Together (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7649,2194,8,2189,0,0,0,0,0,'Artillery Expert','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7661,2195,8,2189,0,0,0,0,0,'Artillery Expert','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7716,2199,70,0,10,0,0,0,0,'Winter\'s Edge Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7732,1752,8,1737,0,0,0,0,0,'Destruction Derby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7764,322,20,24201,0,0,0,0,0,'Dalronn the Controller','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7824,323,20,16064,0,0,0,0,0,'Thane Korth\'azz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7844,324,20,16063,0,0,0,0,0,'Sir Zeliek','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(7857,800,28,20773,0,0,0,0,0,'Redemption','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(8107,2256,0,32386,1,0,0,0,0,'Vigdis the War Maiden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(8693,347,41,20064,0,0,0,0,0,'Arathi Basin Iron Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(8739,1689,27,13203,1,0,0,0,0,'Winter Veil Gift','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(8764,801,29,3026,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(8825,2336,46,809,42000,0,0,0,0,'Exalted with Shen\'dralar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(8995,346,41,21241,0,0,0,0,0,'Winter Veil Eggnogg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(9149,2422,110,61815,1,0,0,0,0,'Tauren','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(9306,2557,54,225,1,0,0,0,0,'Lava Crab','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(9364,2556,0,16068,1,0,0,0,0,'Larva','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(9750,2758,27,13709,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,8),(9767,2776,8,2476,0,0,0,0,0,'Destruction Derby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(9870,2797,8,2576,0,0,0,0,0,'Blushing Bride','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(9876,2798,8,2422,0,0,0,0,0,'Shake Your Bunny-Maker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(9980,1770,0,33411,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(9981,1756,0,33411,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(10106,2957,8,3182,0,0,0,0,0,'I Could Say That This Cache Was Rare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(10228,2836,28,64814,1,0,0,0,0,'Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(10371,2958,8,3184,0,0,0,0,0,'I Could Say That This Cache Was Rare (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(10439,2903,69,64899,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(10719,2904,69,64899,1,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(10969,303,41,37816,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16774654',2,0,0,0,8),(11162,3559,110,61781,1,0,0,0,0,'Undead Rogue','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(11264,3478,8,3578,0,0,0,0,0,'The Turkinator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(11273,3656,8,3578,0,0,0,0,0,'The Turkinator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(11327,3696,27,13731,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,8),(11509,3857,8,3853,0,0,0,0,0,'All Over the Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(11561,3778,28,68663,1,0,0,0,0,'The Black Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(11756,3957,8,3853,0,0,0,0,0,'All Over the Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(11910,3802,28,68206,1,0,0,0,0,'Hakkar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(12080,1525,27,13102,1,0,0,0,0,'Infused Mushroom Meatloaf - Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(12309,4296,28,68663,1,0,0,0,0,'The Black Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(12317,4297,28,68663,1,0,0,0,0,'The Black Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(12439,4298,28,68663,1,0,0,0,0,'The Black Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(12625,4416,34,67420,0,0,0,0,0,'Razzashi Hatchling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,8),(12685,4456,0,29311,1,0,0,0,0,'Herald Volazj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(12805,4556,0,29311,1,0,0,0,0,'Herald Volazj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(12884,1695,27,24666,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,8),(12920,4602,8,4537,0,0,0,0,0,'I\'ve Gone and Made a Mess','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(13019,4603,8,4613,0,0,0,0,0,'I\'ve Gone and Made a Mess','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(13248,811,41,46377,0,0,0,0,0,'Flask of Endless Rage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(13365,1526,27,13834,0,0,0,0,0,'Dangerously Delicious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,8),(13403,4788,36,29123,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,8),(13416,4789,36,29126,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,8),(510,627,43,107,1,0,0,0,0,'Gol\'Bolar Quarry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(624,116,40,186,2,0,0,0,0,'Mining','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(753,705,7,43,400,0,0,0,0,'Swords','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(767,700,36,18850,1,0,0,0,0,'Insignia of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(787,701,36,29593,1,0,0,0,0,'Insignia of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(830,728,43,258,1,0,0,0,0,'Drygulch Ravine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(856,731,40,186,3,0,0,0,0,'Mining','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(867,732,40,186,4,0,0,0,0,'Mining','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(878,733,40,186,5,0,0,0,0,'Mining','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(889,734,40,186,6,0,0,0,0,'Mining','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(900,735,40,186,6,0,0,0,0,'Mining','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(909,736,43,198,1,0,0,0,0,'Thunderhorn Water Well','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(925,750,43,469,1,0,0,0,0,'Far Watch Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(955,760,43,449,1,0,0,0,0,'Lordamere Internment Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(969,761,43,569,1,0,0,0,0,'Boulderfist Hall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1022,765,43,589,1,0,0,0,0,'Valley of Fangs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1036,766,43,829,1,0,0,0,0,'Rise of the Defiler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1046,768,43,227,1,0,0,0,0,'Brightwater Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1061,769,43,309,1,0,0,0,0,'Deep Elem Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1076,770,43,969,1,0,0,0,0,'Northridge Lumber Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1089,771,43,886,1,0,0,0,0,'Lake Mereldar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1111,772,43,409,1,0,0,0,0,'Western Strand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1123,773,43,609,1,0,0,0,0,'The Altar of Zul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1144,775,43,789,1,0,0,0,0,'Altar of Storms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1154,776,43,129,1,0,0,0,0,'Eastvale Logging Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1169,778,43,429,1,0,0,0,0,'The Rotting Orchard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1182,779,43,324,1,0,0,0,0,'Thelsamar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1190,780,43,366,1,0,0,0,0,'Render\'s Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1204,781,43,506,1,0,0,0,0,'Bloodsail Compound','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1231,782,43,549,1,0,0,0,0,'Sorrowmurk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1256,802,43,289,1,0,0,0,0,'Moonbrook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1270,841,43,389,1,0,0,0,0,'Angerfang Encampment','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1287,42,8,772,1,0,0,0,0,'Hillsbrad Foothills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1307,842,43,94,1,0,0,0,0,'Wellspring Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1322,844,43,349,1,0,0,0,0,'The Master\'s Glaive','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1331,845,43,749,1,0,0,0,0,'The Ruins of Stardust','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1349,846,43,689,1,0,0,0,0,'Highperch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1358,847,43,923,1,0,0,0,0,'The Charred Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1377,848,43,767,1,0,0,0,0,'Kodo Graveyard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1387,849,43,988,1,0,0,0,0,'Frayfeather Highlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1417,851,43,650,1,0,0,0,0,'Broken Pillar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1433,852,43,849,1,0,0,0,0,'Ursolan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1448,853,43,869,1,0,0,0,0,'Jadefire Glen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1483,857,43,1011,1,0,0,0,0,'Winterfall Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1492,43,8,846,1,0,0,0,0,'Thousand Needles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1516,859,43,1138,1,0,0,0,0,'Duskwither Grounds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1540,858,43,1162,1,0,0,0,0,'Howling Ziggurat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1560,860,43,1371,1,0,0,0,0,'Odesyus\' Landing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1581,861,43,1336,1,0,0,0,0,'Middenvale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1629,862,43,1217,1,0,0,0,0,'Temple of Telhamat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1651,863,43,1149,1,0,0,0,0,'The Lagoon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1672,864,43,1118,1,0,0,0,0,'Warden\'s Cage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1692,865,43,1297,1,0,0,0,0,'Forge Camp: Anger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1717,866,43,1197,1,0,0,0,0,'The Ring of Trials','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1734,867,43,1276,1,0,0,0,0,'Raastok Glade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1766,843,43,1187,1,0,0,0,0,'The Heap','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1809,220,1,30,1,3,30,3,30,'Tower H3 owned by the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,9),(1818,873,1,30,1,3,30,3,30,'Tower H3 owned by the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,9),(1843,878,42,6364,1,0,0,0,0,'32 Pound Catfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1851,879,36,12330,1,0,0,0,0,'Red Wolf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(1939,912,27,8636,1,0,0,0,0,'Elder Rumblerock in Burning Steppes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(1954,911,27,8725,1,0,0,0,0,'Elder Riversong in Astranaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(2080,963,27,12350,1,0,0,0,0,'Feralas, Feathermoon Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(2108,965,27,12381,1,0,0,0,0,'Desolace, Shadowprey Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(2140,966,27,12336,1,0,0,0,0,'Stormwind, The Trade District','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(2153,967,27,12387,1,0,0,0,0,'Hinterlands, Revantusk Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(2203,969,27,12354,1,0,0,0,0,'Zangarmarsh, Telredor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(2211,968,27,12406,1,0,0,0,0,'Blade\'s Edge Mountains, Evergrove','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(2268,979,36,20567,1,0,0,0,0,'Flimsy Female Troll Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(2350,556,49,9,1,0,0,0,0,'Hands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(2367,245,52,9,1,0,0,0,0,'Warlock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(2895,621,57,25549,1,0,0,0,0,'Blood Knight Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(3071,1022,27,11822,1,0,0,0,0,'Redridge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3084,1023,27,11833,1,0,0,0,0,'Tanaris','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3109,1025,27,11857,1,0,0,0,0,'Swamp of Sorrows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3120,1026,27,11838,1,0,0,0,0,'Tanaris','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3139,1028,27,11781,1,0,0,0,0,'Swamp of Sorrows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3150,1029,27,11802,1,0,0,0,0,'Tanaris','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3169,1031,27,11751,1,0,0,0,0,'Redridge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3182,1032,27,11762,1,0,0,0,0,'Tanaris','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3309,344,41,34721,1,0,0,0,0,'Frostweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3366,227,55,0,300000,3,566,3,566,'300,000 healing in eots','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,9),(3400,1167,8,582,0,0,0,0,0,'Alterac Valley All-Star','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3412,1168,8,582,0,0,0,0,0,'Alterac Valley All-Star','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3424,1169,8,159,0,0,0,0,0,'Let\'s Get This Done','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3439,1170,8,159,0,0,0,0,0,'Let\'s Get This Done','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3470,1172,8,202,0,0,0,0,0,'Quick Cap','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3485,1173,8,1502,0,0,0,0,0,'Quick Cap','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3523,1183,28,42259,1,0,0,0,0,'Binary Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3541,1184,41,33033,1,0,0,0,0,'Thunderbrew Stout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3569,1187,36,13704,1,0,0,0,0,'Skeleton Key','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3602,1203,41,34022,1,0,0,0,0,'Stout Shrunken Head','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3731,557,49,9,1,0,0,0,0,'Hands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3749,1206,54,225,1,0,0,0,0,'Ewe','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3770,1244,68,175731,1,0,0,0,0,'Exile of the High Elves','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3812,161,1,529,1,0,0,0,0,'Overcome a 500 resource disadvantage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(3862,153,72,180750,1,0,0,0,0,'Teeming Oily Blackmouth School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(3911,45,8,1270,0,0,0,0,0,'Icecrown','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3947,1283,8,636,0,0,0,0,0,'Razorfen Downs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(3973,1284,8,655,0,0,0,0,0,'Opening of the Dark Portal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4022,1286,8,698,0,0,0,0,0,'Sunwell Plateau','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4032,1287,8,676,0,0,0,0,0,'Heroic Opening of the Dark Portal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4048,1288,8,485,0,0,0,0,0,'Halls of Stone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4064,1289,8,496,0,0,0,0,0,'Heroic Halls of Stone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4130,1264,43,1483,0,0,0,0,0,'Amber Ledge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4144,1263,43,1505,0,0,0,0,0,'Gjalerbron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4167,1265,43,1504,0,0,0,0,0,'Emerald Dragonshrine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4186,1266,43,1477,0,0,0,0,0,'Venture Bay','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4200,1267,43,1538,0,0,0,0,0,'Zim\'Torga','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4214,1268,43,1552,0,0,0,0,0,'The Avalanche','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4283,684,36,17075,1,0,0,0,0,'Vis\'kag the Bloodletter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(4296,345,41,17348,0,0,0,0,0,'Major healing Draught','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4321,922,41,31677,0,0,0,0,0,'Fel Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4344,923,41,8423,0,0,0,0,0,'Cerebral Cortex Compound','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4417,811,41,13506,0,0,0,0,0,'Flask of Petrification','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4457,687,27,8633,1,0,0,0,0,'Enigma Robes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(4512,1311,0,18678,1,0,0,0,0,'Fulgorge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4548,686,36,18816,1,0,0,0,0,'Perdition\'s Blade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(4568,685,36,19378,1,0,0,0,0,'Cloak of the Brood Lord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(4604,698,36,34345,1,0,0,0,0,'Crown of Anasterian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(4625,695,36,30905,1,0,0,0,0,'Midnight Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(4727,812,41,19007,0,0,0,0,0,'Lesser Healthstone (2)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4745,924,46,1067,42000,0,0,0,0,'Exlated with the Hand of Vengeance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4758,925,46,933,42000,0,0,0,0,'Exlated with the Consortium','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4776,927,49,6,1,0,0,0,0,'Legs are Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(4795,697,36,32235,1,0,0,0,0,'Cursed Vision of Sargeras','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(4825,696,36,29996,1,0,0,0,0,'Rod of the Sun King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(4855,694,36,30102,1,0,0,0,0,'Krakken-Heart Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(4882,693,36,28783,1,0,0,0,0,'Eredar Wand of Obliteration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(4914,692,36,28823,1,0,0,0,0,'Eye of Gruul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(4956,107,78,0,0,0,0,0,0,'Unspecified','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5000,350,68,189994,0,0,0,0,0,'Portal to Stonard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5028,388,70,0,50,0,0,0,0,'The Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,9),(5039,1006,70,0,50,0,0,0,0,'Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,9),(5061,1307,27,9002,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(5087,284,36,20567,1,0,0,0,0,'Flimsy Female Troll Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5149,1396,27,13025,1,0,0,0,0,'Elder Lunaro in Ruins of Tethys','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5261,910,27,13022,1,0,0,0,0,'Elder Nurgen in Azjol-Nerub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5321,926,46,941,42000,0,0,0,0,'Exalted with The Mag\'har','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5336,1466,46,946,42000,0,0,0,0,'Exalted with Honor Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5455,1467,0,28586,1,0,0,0,0,'General Bjarngrim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5559,1199,40,186,1,0,0,0,0,'Mining','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5573,1201,7,186,450,0,0,0,0,'Mining','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5584,1202,7,45,400,0,0,0,0,'Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5625,1103,0,26632,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5670,1516,8,560,0,0,0,0,0,'Deadliest Catch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5688,1517,72,192046,1,0,0,0,0,'Musselback Sculpin School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5781,291,110,44212,1,0,0,0,0,'Troll','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5828,1656,8,283,0,0,0,0,0,'The Masquerade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5840,1657,8,283,0,0,0,0,0,'The Masquerade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5851,1269,43,1577,0,0,0,0,0,'Temple of Life','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5867,1270,43,1574,0,0,0,0,0,'Valley of Echoes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5885,1658,0,27656,1,0,0,0,0,'Heroic: Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(5908,1676,11,41,700,0,0,0,0,'Deadwind Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,9),(5960,1677,11,41,550,0,0,0,0,'Deadwind Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,9),(6012,1678,11,2557,700,0,0,0,0,'Dire Maul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,9),(6107,1680,11,2557,685,0,0,0,0,'Dire Maul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,9),(6221,727,34,35028,0,0,0,0,0,'Swift Warstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6235,1686,110,26004,1,0,0,0,0,'Brother Benjamin in Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6245,1687,110,44755,1,0,0,0,0,'Blood Elf Warlock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6271,1691,8,1688,0,0,0,0,0,'The Winter Veil Gourmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6283,1692,8,1688,0,0,0,0,0,'The Winter Veil Gourmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6288,913,8,1281,0,0,0,0,0,'The Rocket\'s Red Glare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6319,1699,110,27571,1,0,0,0,0,'Blood Elf Mage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6361,1693,8,1702,0,0,0,0,0,'Sweet Tooth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6375,1707,8,1702,0,0,0,0,0,'Sweet Tooth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6494,1777,29,57421,1,0,0,0,0,'Northern Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6670,1792,36,32617,1,0,0,0,0,'Sleepy Willy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(6756,1563,8,1798,0,0,0,0,0,'Sous Chef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6757,1784,8,1798,0,0,0,0,0,'Sous Chef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(6769,1800,29,33285,1,0,0,0,0,'Sporeling Snack','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7155,578,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7168,579,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7252,1957,36,43634,1,0,0,0,0,'Lady Katrana Prestor\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7286,2016,27,12437,1,0,0,0,0,'Riding the Red Rocket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7295,2017,27,12324,1,0,0,0,0,'Smoke \'Em Out','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7308,2019,27,13253,1,0,0,0,0,'Proof of Demise: Loken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7449,2094,42,43710,1,0,0,0,0,'Genn\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7471,2095,42,43681,1,0,0,0,0,'King Terenas Menethil\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7505,2136,8,2038,0,0,0,0,0,'Respect Your Elders','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7534,2137,8,1874,0,0,0,0,0,'You Don\'t Have An Eternity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7611,2138,8,2181,0,0,0,0,0,'Subtraction (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7650,2194,8,1764,0,0,0,0,0,'Drop it!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7662,2195,8,1764,0,0,0,0,0,'Drop it!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7713,2199,70,0,10,0,0,0,0,'Westspark Workshop','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7734,1752,8,1723,0,0,0,0,0,'Vehicular Gnomeslaughter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7804,322,20,26533,0,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7823,323,20,16063,0,0,0,0,0,'Sir Zeliek','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7843,324,20,30549,0,0,0,0,0,'Baron Rivendare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(7863,801,28,27240,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(8108,2256,0,32398,1,0,0,0,0,'King Ping','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(8692,347,41,20062,0,0,0,0,0,'Arathi Basin Enriched Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(9004,346,41,24006,0,0,0,0,0,'Grunt\'s Waterskin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(9150,2422,110,61815,1,0,0,0,0,'Troll','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(9307,2557,54,225,1,0,0,0,0,'Mountain Skunk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(9365,2556,0,16030,1,0,0,0,0,'Maggot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(9751,2758,27,13695,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,9),(9769,2776,8,1723,0,0,0,0,0,'Vehicular Gnomeslaughter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(9921,2836,28,64815,1,0,0,0,0,'Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(9982,1770,0,33413,1,0,0,0,0,'Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(9983,1756,0,33413,1,0,0,0,0,'Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(10107,2957,8,3176,0,0,0,0,0,'Lose Your Illusion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(10372,2958,8,3183,0,0,0,0,0,'Lose Your Illusion (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(10403,2903,28,64985,1,0,0,0,0,'Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(10404,2904,28,64985,1,0,0,0,0,'Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(11265,3478,8,3559,0,0,0,0,0,'Turkey Lurkey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(11274,3656,8,3559,0,0,0,0,0,'Turkey Lurkey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(11328,3696,27,13728,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,9),(11510,3857,8,3854,0,0,0,0,0,'Back Door Job','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(11757,3957,8,3854,0,0,0,0,0,'Back Door Job','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(11911,3802,28,68206,1,0,0,0,0,'Vek\'nilash','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(12081,1525,27,13114,1,0,0,0,0,'Infused Mushroom Meatloaf - Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(12626,4416,34,46426,0,0,0,0,0,'Chuck','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(12686,4456,69,61863,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(12806,4556,69,61863,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(12885,1695,27,24638,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,9),(12921,4602,8,4538,0,0,0,0,0,'Dances with Oozes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(13020,4603,8,4614,0,0,0,0,0,'Dances with Oozes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(13256,1689,27,13966,1,0,0,0,0,'Winter Veil Gift','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,9),(13366,1526,27,13836,0,0,0,0,0,'Monsterbelly Appetite','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,9),(13404,4788,36,29124,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,9),(13417,4789,36,28910,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,9),(511,627,43,105,1,0,0,0,0,'North Gate Outpost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(625,116,40,393,2,0,0,0,0,'Skinning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(754,705,7,172,400,0,0,0,0,'Two-Handed Axes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(768,700,36,28239,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(788,701,36,28234,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(831,728,43,260,1,0,0,0,0,'Skull Rock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(857,731,40,393,3,0,0,0,0,'Skinning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(868,732,40,393,4,0,0,0,0,'Skinning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(879,733,40,393,5,0,0,0,0,'Skinning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(890,734,40,393,6,0,0,0,0,'Skinning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(901,735,40,393,6,0,0,0,0,'Skinning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(910,736,43,200,1,0,0,0,0,'Bael\'Dun Digsite','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(926,750,43,470,1,0,0,0,0,'Thorn Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(956,760,43,450,1,0,0,0,0,'Misty Shore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(970,761,43,570,1,0,0,0,0,'Refuge Pointe','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1023,765,43,590,1,0,0,0,0,'Angor Fortress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1047,768,43,226,1,0,0,0,0,'Balnir Farmstead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1062,769,43,310,1,0,0,0,0,'Olsen\'s Farthing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1077,770,43,970,1,0,0,0,0,'Hearthglen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1090,771,43,885,1,0,0,0,0,'Tyr\'s Hand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1112,772,43,410,1,0,0,0,0,'Azurelode Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1124,773,43,610,1,0,0,0,0,'Seradane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1145,775,43,901,1,0,0,0,0,'Blackrock Mountain','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1155,776,43,130,1,0,0,0,0,'Ridgepoint Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1170,778,43,430,1,0,0,0,0,'Tranquil Gardens Cemetery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1183,779,43,325,1,0,0,0,0,'Stonesplinter Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1194,780,43,370,1,0,0,0,0,'Stonewatch Falls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1205,781,43,507,1,0,0,0,0,'Ruins of Aboraz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1232,782,43,550,1,0,0,0,0,'Fallow Sanctuary','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1257,802,43,290,1,0,0,0,0,'Alexston Farmstead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1271,841,43,390,1,0,0,0,0,'Dun Algaz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1288,42,8,779,1,0,0,0,0,'Loch Modan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1308,842,43,85,1,0,0,0,0,'Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1332,845,43,750,1,0,0,0,0,'Mystral Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1359,847,43,922,1,0,0,0,0,'Mirkfallon Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1378,848,43,766,1,0,0,0,0,'Shadowprey Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1388,849,43,989,1,0,0,0,0,'Ruins of Isildien','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1418,851,43,649,1,0,0,0,0,'The Noxious Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1434,852,43,850,1,0,0,0,0,'Timbermaw Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1449,853,43,870,1,0,0,0,0,'Emerald Sanctuary','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1484,857,43,1012,1,0,0,0,0,'The Hidden Grove','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1493,43,8,847,1,0,0,0,0,'Stonetalon Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1517,859,43,1140,1,0,0,0,0,'Fairbreeze Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1541,858,43,1163,1,0,0,0,0,'Deatholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1561,860,43,1372,1,0,0,0,0,'Pod Cluster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1582,861,43,1337,1,0,0,0,0,'Mystwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1630,862,43,1218,1,0,0,0,0,'The Legion Front','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1652,863,43,1154,1,0,0,0,0,'Twin Spire Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1673,864,43,1121,1,0,0,0,0,'Wildhammer Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1693,865,43,1298,1,0,0,0,0,'Forge Camp: Terror','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1718,866,43,1198,1,0,0,0,0,'Throne of the Elements','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1735,867,43,1277,1,0,0,0,0,'The Barrier Hills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1767,843,43,1260,1,0,0,0,0,'Arklon Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1810,220,1,30,1,3,30,3,30,'Tower H4 owned by the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,10),(1819,873,1,30,1,3,30,3,30,'Tower H4 owned by the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',6,0,0,0,10),(1844,878,42,19808,1,0,0,0,0,'Rockhide Strongfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1940,912,27,8683,1,0,0,0,0,'Elder Dawnstrider in Flame Crest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(1955,911,27,8679,1,0,0,0,0,'Elder Grimtotem in Feralas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(2081,963,27,12347,1,0,0,0,0,'Stonetalon Mountains, Stonetalon Peak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(2109,965,27,12361,1,0,0,0,0,'Durotar, Razor Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(2141,966,27,12340,1,0,0,0,0,'Westfall, Sentinel Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(2154,967,27,12370,1,0,0,0,0,'Silvermoon, The Bazaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(2204,969,27,12406,1,0,0,0,0,'Blade\'s Edge Mountains, Evergrove','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(2212,968,27,12407,1,0,0,0,0,'Netherstorm, Area 52','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(2269,979,36,20574,1,0,0,0,0,'Flimsy Female Undead Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(2351,556,49,10,1,0,0,0,0,'Left Ring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(2368,245,52,1,1,0,0,0,0,'Warrior','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(2896,621,57,31804,1,0,0,0,0,'Cenarion Expedition Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(3072,1022,27,11832,1,0,0,0,0,'Stranglethorn Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3085,1023,27,11824,1,0,0,0,0,'Teldrassil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3110,1025,27,11860,1,0,0,0,0,'The Hinterlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3121,1026,27,11859,1,0,0,0,0,'The Barrens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3140,1028,27,11784,1,0,0,0,0,'The Hinterlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3151,1029,27,11783,1,0,0,0,0,'The Barrens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3170,1031,27,11761,1,0,0,0,0,'Stranglethorn Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3183,1032,27,11753,1,0,0,0,0,'Teldrassil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3310,344,41,34722,1,0,0,0,0,'Heavy Frostweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3367,227,55,0,300000,3,489,3,489,'300,000 healing in wsg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,10),(3401,1167,8,707,0,0,0,0,0,'Stormpike Battle Charger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3413,1168,8,706,0,0,0,0,0,'Frostwolf Howler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3427,1169,8,162,0,0,0,0,0,'We Had It All Along *cough*','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3442,1170,8,162,0,0,0,0,0,'We Had It All Along *cough*','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3471,1172,8,206,0,0,0,0,0,'Supreme Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3486,1173,8,1252,0,0,0,0,0,'Supreme Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3524,1183,28,42258,1,0,0,0,0,'Bartlett\'s Bitter Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3568,1187,36,6893,1,0,0,0,0,'Workshop Key','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3732,557,49,10,1,0,0,0,0,'Left Ring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3750,1206,54,225,1,0,0,0,0,'Fawn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3771,1244,68,175749,1,0,0,0,0,'Icecrown and the Frozen Throne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3813,161,1,529,1,0,0,0,0,'Overcome a 500 resource disadvantage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(3869,153,72,182957,1,0,0,0,0,'Highland Mixed School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(3948,1283,8,637,0,0,0,0,0,'Scarlet Monastery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(3974,1284,8,656,0,0,0,0,0,'The Steamvault','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4033,1287,8,677,0,0,0,0,0,'Heroic The Steamvault','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4049,1288,8,486,0,0,0,0,0,'Halls of Lightning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4065,1289,8,497,0,0,0,0,0,'Heroic Halls of Lightning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4131,1264,43,1484,0,0,0,0,0,'Warsong Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4146,1263,43,1508,0,0,0,0,0,'Ember Clutch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4168,1265,43,1506,0,0,0,0,0,'Coldwind Heights','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4187,1266,43,1478,0,0,0,0,0,'Voldrune','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4201,1267,43,1539,0,0,0,0,0,'Zeramas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4215,1268,43,1553,0,0,0,0,0,'The Glimmering Pillar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4284,684,36,18813,1,0,0,0,0,'Ring of Binding','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(4297,345,41,13446,0,0,0,0,0,'Major Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4322,922,41,6149,0,0,0,0,0,'Greater Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4345,923,41,32063,0,0,0,0,0,'Earthen Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4458,687,27,8603,1,0,0,0,0,'Vestments of the Oracle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(4513,1311,0,17144,1,0,0,0,0,'Goretooth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4549,686,36,18817,1,0,0,0,0,'Crown of Destruction','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(4569,685,36,19363,1,0,0,0,0,'Crul\'shorukh, Edge of Chaos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(4605,698,36,34329,1,0,0,0,0,'Crux of the Apocalypse','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(4626,695,36,30913,1,0,0,0,0,'Robes of Rhonin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(4728,812,41,9421,0,0,0,0,0,'Major Healthstone (0)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4746,924,46,1064,42000,0,0,0,0,'Exlated with the Taunka','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4759,925,46,1011,42000,0,0,0,0,'Exlated with Lower City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4777,927,49,15,1,0,0,0,0,'Weapon is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(4796,697,36,32521,1,0,0,0,0,'Faceplate of the Impenetrable','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(4826,696,36,29992,1,0,0,0,0,'Royal Cloak of the Sunstriders','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(4856,694,36,30108,1,0,0,0,0,'Lightfathom Scepter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(4883,693,36,28789,1,0,0,0,0,'Eye of Magtheridon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(4915,692,36,28824,1,0,0,0,0,'Gauntlets of Martial Perfection','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(4957,107,78,0,0,0,0,0,0,'Totems','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5001,350,68,176296,0,0,0,0,0,'Portal to Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5029,388,70,0,50,0,0,0,0,'Valley of Heroes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,10),(5062,1307,27,9003,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(5088,284,36,20574,1,0,0,0,0,'Flimsy Female Undead Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5150,1396,27,13026,1,0,0,0,0,'Elder Bluewolf in Wintergrasp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5262,910,27,13023,1,0,0,0,0,'Elder Kilias in Drak\'Tharon Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5322,926,46,947,42000,0,0,0,0,'Exalted with Thrallmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5337,1466,46,978,42000,0,0,0,0,'Exalted with Kurenai','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5443,1467,0,26630,1,0,0,0,0,'Trollgore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5560,1199,40,393,1,0,0,0,0,'Skinning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5574,1201,7,393,450,0,0,0,0,'Skinning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5585,1202,7,173,400,0,0,0,0,'Daggers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5627,1103,0,29306,1,0,0,0,0,'Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5671,1516,8,144,0,0,0,0,0,'The Lurker Above','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5689,1517,72,192057,1,0,0,0,0,'Nettlefish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5782,291,110,44212,1,0,0,0,0,'Undead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5829,1656,8,292,0,0,0,0,0,'Sinister Calling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5841,1657,8,292,0,0,0,0,0,'Sinister Calling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5852,1269,43,1582,0,0,0,0,0,'Ulduar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5868,1270,43,1575,0,0,0,0,0,'Ymirheim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5876,1658,0,23980,1,0,0,0,0,'Heroic: Ingvar the Plunderer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(5909,1676,11,2257,700,0,0,0,0,'Deeprun Tram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,10),(5961,1677,11,2257,550,0,0,0,0,'Deeprun Tram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,10),(6013,1678,11,14,700,0,0,0,0,'Durotar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,10),(6108,1680,11,14,685,0,0,0,0,'Durotar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,10),(6196,879,34,16080,0,0,0,0,0,'Red Wolf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(6222,727,34,22722,0,0,0,0,0,'Red Skeletal Warhorse','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(6246,1687,110,44755,1,0,0,0,0,'Draenei Priest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(6272,1691,8,1689,0,0,0,0,0,'He Knows If You\'ve Been Naughty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(6284,1692,8,1689,0,0,0,0,0,'He Knows If You\'ve Been Naughty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(6289,913,8,1552,0,0,0,0,0,'Frenzied Firecracker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(6320,1699,110,27571,1,0,0,0,0,'Draenei Paladin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(6362,1693,8,1701,0,0,0,0,0,'Be Mine!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(6376,1707,8,1701,0,0,0,0,0,'Be Mine!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(6495,1777,29,45566,1,0,0,0,0,'Pickled Fangtooth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(6671,1792,36,32622,1,0,0,0,0,'Elekk Training Collar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(6762,1563,8,1801,0,0,0,0,0,'Captain Rumsey\'s Lager','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(6763,1784,8,1801,0,0,0,0,0,'Captain Rumsey\'s Lager','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(6770,1800,29,33286,1,0,0,0,0,'Blackened Basilisk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7151,578,0,15932,1,0,0,0,0,'Gluth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7164,579,0,15932,1,0,0,0,0,'Gluth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7253,1957,36,43633,1,0,0,0,0,'Prince Kael\'thas Sunstrider\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7309,2019,27,13254,1,0,0,0,0,'Proof of Demise: Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7450,2094,42,43711,1,0,0,0,0,'Inigo\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7472,2095,42,43680,1,0,0,0,0,'King Varian Wrynn\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7506,2136,8,2056,0,0,0,0,0,'Volunteer Work','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7535,2137,8,1869,0,0,0,0,0,'A Poke In The Eye','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7543,2138,8,623,0,0,0,0,0,'The Spellweaver\'s Downfall (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7651,2194,8,2190,0,0,0,0,0,'Drop it now!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7663,2195,8,2190,0,0,0,0,0,'Drop it now!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7719,2199,70,0,10,0,0,0,0,'The Chilled Quagmire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7735,1752,8,1727,0,0,0,0,0,'Leaning Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7803,322,20,26530,0,0,0,0,0,'Salramm the Fleshcrafter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7822,323,20,30549,0,0,0,0,0,'Baron Rivendare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(7842,324,20,16065,0,0,0,0,0,'Lady Blaymeux','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(8109,2256,0,32400,1,0,0,0,0,'Tukemuth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(8691,347,41,20063,0,0,0,0,0,'Arathi Basin Field Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(8762,801,29,27240,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(9003,346,41,23585,0,0,0,0,0,'Stouthammer Lite','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(9151,2422,110,61815,1,0,0,0,0,'Undead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(9308,2557,54,225,1,0,0,0,0,'Scalawag Frog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(9366,2556,0,4953,1,0,0,0,0,'Moccasin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(9748,2758,27,13710,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,10),(9770,2776,8,1727,0,0,0,0,0,'Leaning Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(9922,2836,28,64816,1,0,0,0,0,'The Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(9984,1770,0,33410,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(9985,1756,0,33410,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(10108,2957,8,3179,0,0,0,0,0,'Knock, Knock, Knock on Wood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(10373,2958,8,3187,0,0,0,0,0,'Knock, Knock, Knock on Wood (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(10582,2903,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(10583,2904,28,65074,1,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(11329,3696,27,13729,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16775167',2,0,0,0,10),(11511,3857,8,3856,0,0,0,0,0,'Demolition Derby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(11758,3957,8,4256,0,0,0,0,0,'Demolition Derby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(11912,3802,28,68206,1,0,0,0,0,'Kalithresh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(12082,1525,27,13103,1,0,0,0,0,'Infused Mushroom Meatloaf - Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(12627,4416,34,67414,0,0,0,0,0,'Deviate Hatchling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,10),(12687,4456,0,29306,1,0,0,0,0,'Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(12807,4556,0,29306,1,0,0,0,0,'Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(12886,1695,27,24645,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,10),(12922,4602,8,4577,0,0,0,0,0,'Flu Shot Shortage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(13021,4603,8,4615,0,0,0,0,0,'Flu Shot Shortage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(13249,811,41,46378,0,0,0,0,0,'Flask of Pure Mojo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(13367,1526,27,13833,0,0,0,0,0,'Blood is Thicker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,10),(13405,4788,36,28886,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,10),(13418,4789,36,28911,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,10),(512,627,43,104,1,0,0,0,0,'Frostmane Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(626,116,40,197,2,0,0,0,0,'Tailoring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(755,705,7,55,400,0,0,0,0,'Two-Handed Swords','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(769,700,36,38588,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(789,701,36,28235,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(832,728,43,262,1,0,0,0,0,'Orgrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(858,731,40,197,3,0,0,0,0,'Tailoring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(869,732,40,197,4,0,0,0,0,'Tailoring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(880,733,40,197,5,0,0,0,0,'Tailoring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(891,734,40,197,6,0,0,0,0,'Tailoring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(902,735,40,197,6,0,0,0,0,'Tailoring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(912,736,43,206,1,0,0,0,0,'Red Rocks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(927,750,43,471,1,0,0,0,0,'The Crossroads','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(957,760,43,451,1,0,0,0,0,'Ruins of Alterac','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(971,761,43,571,1,0,0,0,0,'Circle of Outer Binding','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1024,765,43,591,1,0,0,0,0,'Dustwind Gulch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1048,768,43,225,1,0,0,0,0,'Crusader Outpost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1063,769,43,311,1,0,0,0,0,'Ambermill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1078,770,43,971,1,0,0,0,0,'Gahrron\'s Withering','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1091,771,43,884,1,0,0,0,0,'Light\'s Hope Chapel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1113,772,43,411,1,0,0,0,0,'Southpoint Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1125,773,43,611,1,0,0,0,0,'Skulk Rock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1156,776,43,131,1,0,0,0,0,'Crystal Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1171,778,43,431,1,0,0,0,0,'Darkshire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1184,779,43,326,1,0,0,0,0,'Valley of Kings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1195,780,43,371,1,0,0,0,0,'Galardell Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1206,781,43,508,1,0,0,0,0,'Ruins of Jubuwal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1233,782,43,551,1,0,0,0,0,'Misty Reed Strand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1258,802,43,291,1,0,0,0,0,'Demont\'s Place','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1272,841,43,391,1,0,0,0,0,'The Green Belt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1289,42,8,780,1,0,0,0,0,'Redridge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1309,842,43,90,1,0,0,0,0,'Rut\'theran Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1333,845,43,751,1,0,0,0,0,'The Howling Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1360,847,43,921,1,0,0,0,0,'Stonetalon Peak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1379,848,43,765,1,0,0,0,0,'Gelkis Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1389,849,43,990,1,0,0,0,0,'The Writhing Deep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1419,851,43,648,1,0,0,0,0,'Dunemaul Compound','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1435,852,43,851,1,0,0,0,0,'Valormok','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1450,853,43,871,1,0,0,0,0,'Deadwood Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1485,857,43,1013,1,0,0,0,0,'Frostsaber Rock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1494,43,8,848,1,0,0,0,0,'Desolace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1518,859,43,1142,1,0,0,0,0,'The Living Wood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1542,858,43,1164,1,0,0,0,0,'Zeb\'Nowa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1562,860,43,1373,1,0,0,0,0,'Pod Wreckage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1583,861,43,1338,1,0,0,0,0,'Nazzivian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1632,862,43,1220,1,0,0,0,0,'Thrallmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1653,863,43,1156,1,0,0,0,0,'Umbrafen Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1674,864,43,1273,1,0,0,0,0,'Altar of Sha\'tar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1694,865,43,1299,1,0,0,0,0,'Forge Camp: Wrath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1719,866,43,1199,1,0,0,0,0,'Warmaul Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1736,867,43,1280,1,0,0,0,0,'Razorthorn Shelf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1768,843,43,1261,1,0,0,0,0,'Celestial Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1852,879,36,12351,1,0,0,0,0,'Arctic Wolf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(1941,912,27,8643,1,0,0,0,0,'Elder Highpeak in The Hinterlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(1956,911,27,8685,1,0,0,0,0,'Elder Mistwalker in Dire Maul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(2082,963,27,12331,1,0,0,0,0,'Teldrassil, Dolanaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(2110,965,27,12383,1,0,0,0,0,'Dustwallow Marsh, Brackenwall Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(2142,966,27,12343,1,0,0,0,0,'Wetlands, Menethil Harbor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(2155,967,27,12369,1,0,0,0,0,'Silvermoon, The Royal Exchange','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(2205,969,27,12407,1,0,0,0,0,'Netherstorm, Area 52','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(2213,968,27,12408,1,0,0,0,0,'Netherstorm, The Stormspire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(2270,979,36,34002,1,0,0,0,0,'Flimsy Male Blood Elf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(2897,621,57,36941,1,0,0,0,0,'Competitor\'s Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(3073,1022,27,11826,1,0,0,0,0,'The Hinterlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3087,1023,27,11834,1,0,0,0,0,'Winterspring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3111,1025,27,11862,1,0,0,0,0,'Tirisfal Glades','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3122,1026,27,11861,1,0,0,0,0,'Thousand Needles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3141,1028,27,11786,1,0,0,0,0,'Tirisfal Glades','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3152,1029,27,11785,1,0,0,0,0,'Thousand Needles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3171,1031,27,11755,1,0,0,0,0,'The Hinterlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3185,1032,27,11763,1,0,0,0,0,'Winterspring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3311,344,41,2581,1,0,0,0,0,'Heavy Linen Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3403,1167,8,1166,0,0,0,0,0,'To the Looter Go The Spoils','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3415,1168,8,1166,0,0,0,0,0,'To the Looter Go the Spoils','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3429,1169,8,583,0,0,0,0,0,'Arathi Basin All-Star','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3444,1170,8,583,0,0,0,0,0,'Arathi Basin All-Star','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3472,1172,8,207,0,0,0,0,0,'Save The Day','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3487,1173,8,207,0,0,0,0,0,'Save The Day','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3525,1183,28,42260,1,0,0,0,0,'Autumnal Acorn Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3733,557,49,11,1,0,0,0,0,'Right Ring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3751,1206,54,225,1,0,0,0,0,'Frog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3772,1244,68,175736,1,0,0,0,0,'Ironforge - the Awakening of the Dwarves','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3870,153,72,182953,1,0,0,0,0,'Sporefish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(3949,1283,8,638,0,0,0,0,0,'Uldaman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(3975,1284,8,657,0,0,0,0,0,'The Shattered Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4034,1287,8,678,0,0,0,0,0,'Heroic The Shattered Halls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4050,1288,8,487,0,0,0,0,0,'The Oculus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4066,1289,8,498,0,0,0,0,0,'Heroic The Oculus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4132,1264,43,1485,0,0,0,0,0,'Valiance Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4147,1263,43,1509,0,0,0,0,0,'Giant\'s Run','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4170,1265,43,1514,0,0,0,0,0,'Angrathar the Wrath Gate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4188,1266,43,1479,0,0,0,0,0,'Amberpine Lodge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4202,1267,43,1540,0,0,0,0,0,'Voltarus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4217,1268,43,1555,0,0,0,0,0,'Kartak\'s Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4285,684,36,17078,1,0,0,0,0,'Sapphiron Drape','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(4298,345,41,18253,0,0,0,0,0,'Major Rejuvenation Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4323,922,41,3385,0,0,0,0,0,'Lesser Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4346,923,41,8949,0,0,0,0,0,'Elixir of Agility','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4459,687,27,8801,1,0,0,0,0,'C\'Thun\'s Legacy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(4514,1311,0,18692,1,0,0,0,0,'Hemathion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4550,686,36,16922,1,0,0,0,0,'Leggings of Transcendence','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(4570,685,36,19360,1,0,0,0,0,'Lok\'amir il Romathis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(4606,698,36,34340,1,0,0,0,0,'Dark Conjuror\'s Collar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(4627,695,36,30904,1,0,0,0,0,'Savior\'s Grasp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(4729,812,41,19012,0,0,0,0,0,'Major Healthstone (1)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4747,924,46,1050,42000,0,0,0,0,'Exlated with Valiance Expedition','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4760,925,46,1031,42000,0,0,0,0,'Exlated with the Sha\'tari Skyguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4778,927,49,1,1,0,0,0,0,'Necklace is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(4797,697,36,32496,1,0,0,0,0,'Memento of Tyrande','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(4827,696,36,29998,1,0,0,0,0,'Royal Gauntlets of Silvermoon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(4857,694,36,30621,1,0,0,0,0,'Prism of Inner Calm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(4884,693,36,28774,1,0,0,0,0,'Glaive of the Pit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(4916,692,36,28827,1,0,0,0,0,'Gauntlets of the Dragonslayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(5002,350,68,189993,0,0,0,0,0,'Portal to Theramore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5030,388,70,0,50,0,0,0,0,'Stormwind Harbor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,11),(5063,1307,27,9004,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(5077,227,55,0,300000,3,607,3,607,'300,000 healing in sota','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,11),(5089,284,36,34002,1,0,0,0,0,'Flimsy Male Blood Elf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5099,1187,36,42482,1,0,0,0,0,'The Violet Hold Key','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5151,1396,27,13027,1,0,0,0,0,'Elder Tauros in Zim\'Torga','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5263,910,27,13065,1,0,0,0,0,'Elder Ohanzee in Gundrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5323,926,46,922,42000,0,0,0,0,'Exalted with Tranquillen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5338,1466,46,589,42000,0,0,0,0,'Exalted with Wintersaber Trainers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5452,1467,0,27975,1,0,0,0,0,'Maiden of Grief','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5561,1199,40,197,1,0,0,0,0,'Tailoring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5575,1201,7,197,450,0,0,0,0,'Tailoring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5586,1202,7,228,400,0,0,0,0,'Wands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5626,1103,0,31134,1,0,0,0,0,'Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5672,1516,8,1225,0,0,0,0,0,'Outland Angler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5816,556,49,11,1,0,0,0,0,'Right Ring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5830,1656,8,970,0,0,0,0,0,'Tricks and Treats of Azeroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5842,1657,8,971,0,0,0,0,0,'Tricks and Treats of Azeroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5853,1269,43,1583,0,0,0,0,0,'Thunderfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5869,1270,43,1594,0,0,0,0,0,'The Conflagration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5886,1658,0,26861,1,0,0,0,0,'Heroic: King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(5910,1676,11,269,700,0,0,0,0,'Dun Algaz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,11),(5962,1677,11,269,550,0,0,0,0,'Dun Algaz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,11),(6014,1678,11,15,700,0,0,0,0,'Dustwallow Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,11),(6109,1680,11,15,685,0,0,0,0,'Dustwallow Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,11),(6273,1691,8,1690,0,0,0,0,0,'A Frosty Shake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(6285,1692,8,1690,0,0,0,0,0,'A Frosty Shake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(6290,913,8,937,0,0,0,0,0,'Elune\'s Blessing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(6321,1699,110,27571,1,0,0,0,0,'Dwarf Hunter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(6363,1693,8,1703,0,0,0,0,0,'My Love is Like a Red, Red Rose','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(6377,1707,8,1703,0,0,0,0,0,'My Love is Like a Red, Red Rose','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(6496,1777,29,45565,1,0,0,0,0,'Poached Nettlefish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(6672,1792,34,40614,0,0,0,0,0,'Egbert','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(6771,1800,29,33293,1,0,0,0,0,'Grilled Mudfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(6787,1784,8,1800,0,0,0,0,0,'The Outland Gourmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(6788,1563,8,1800,0,0,0,0,0,'The Outland Gourmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7152,578,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7162,579,0,16028,1,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7254,1957,36,43632,1,0,0,0,0,'Sylvanas Windrunner\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7310,2019,27,13255,1,0,0,0,0,'Proof of Demise: Herald Volazj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7451,2094,42,43712,1,0,0,0,0,'Krasus\' Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7473,2095,42,43685,1,0,0,0,0,'Maiev Shadowsong\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7536,2137,8,2047,0,0,0,0,0,'Gonna Go When the Volcano Blows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7544,2138,8,1875,0,0,0,0,0,'You Don\'t Have An Eternity (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7581,2136,8,2151,0,0,0,0,0,'Consumption Junction','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7652,2194,8,1766,0,0,0,0,0,'Ancient Protector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7664,2195,8,1766,0,0,0,0,0,'Ancient Protector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7736,1752,8,1751,0,0,0,0,0,'Didn\'t Stand a Chance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7802,322,20,26532,0,0,0,0,0,'Chrono-Lord Epoch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7821,323,20,16065,0,0,0,0,0,'Lady Blaymeux','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7841,324,20,15990,0,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(7865,801,28,20760,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(8110,2256,0,32409,1,0,0,0,0,'Crazed Indu\'le Survivor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(8707,347,41,22238,0,0,0,0,0,'Very Berry Cream','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(9002,346,41,23584,0,0,0,0,0,'Loch Modan Lager','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(9309,2557,54,225,1,0,0,0,0,'Sholazar Tickbird','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(9367,2556,0,6271,1,0,0,0,0,'Mouse','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(9749,2758,27,13689,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,11),(9771,2776,8,1751,0,0,0,0,0,'Didn\'t Stand a Chance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(9986,1770,0,33412,1,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(9987,1756,0,33412,1,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(10347,2903,0,33432,1,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(10361,2904,0,33432,1,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(10464,2957,8,3180,0,0,0,0,0,'Firefighter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(10465,2958,8,3189,0,0,0,0,0,'Firefighter (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(11512,3857,8,3855,0,0,0,0,0,'Glaive Grave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(11759,3957,8,3855,0,0,0,0,0,'Glaive Grave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(11913,3802,28,68206,1,0,0,0,0,'Malchezaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(12083,1525,27,13115,1,0,0,0,0,'Infused Mushroom Meatloaf - Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(12628,4416,34,25162,0,0,0,0,0,'Disgusting Oozeling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,11),(12688,4456,0,31134,1,0,0,0,0,'Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(12808,4556,0,31134,1,0,0,0,0,'Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(12887,1695,27,24647,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,11),(12923,4602,8,4578,0,0,0,0,0,'Nausea, Heartburn, Indigestion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(13022,4603,8,4616,0,0,0,0,0,'Nausea, Heartburn, Indigestion...','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(13250,811,41,46379,0,0,0,0,0,'Flask of Stoneblood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,11),(13406,4788,36,28887,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,11),(13419,4789,36,28912,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,11),(513,627,43,103,1,0,0,0,0,'Brewnall Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(770,700,36,37865,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(790,701,36,28236,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(834,705,7,160,400,0,0,0,0,'Two-Handed Maces','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(913,736,43,208,1,0,0,0,0,'Windfury Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(928,750,43,472,1,0,0,0,0,'The Stagnant Oasis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(958,760,43,452,1,0,0,0,0,'Sofera\'s Naze','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(972,761,43,572,1,0,0,0,0,'Witherbark Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1025,765,43,592,1,0,0,0,0,'Hammertoe\'s Digsite','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1049,768,43,224,1,0,0,0,0,'Scarlet Watch Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1064,769,43,312,1,0,0,0,0,'Shadowfang Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1079,770,43,972,1,0,0,0,0,'The Weeping Cave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1092,771,43,883,1,0,0,0,0,'The Infectis Scar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1114,772,43,456,1,0,0,0,0,'Purgation Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1126,773,43,612,1,0,0,0,0,'Shaol\'watha','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1157,776,43,132,1,0,0,0,0,'Stone Cairn Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1172,778,43,432,1,0,0,0,0,'Manor Mistmantle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1207,781,43,509,1,0,0,0,0,'Crystalvein Mine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1259,802,43,292,1,0,0,0,0,'Westfall Lighthouse','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1273,841,43,392,1,0,0,0,0,'Mosshide Fen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1290,42,8,768,1,0,0,0,0,'Tirisfal Glades','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1334,845,43,752,1,0,0,0,0,'Raynewood Retreat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1380,848,43,764,1,0,0,0,0,'Mannoroc Coven','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1390,849,43,991,1,0,0,0,0,'Camp Mojache','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1420,851,43,647,1,0,0,0,0,'Southbreak Shore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1436,852,43,852,1,0,0,0,0,'Haldarr Encampment','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1451,853,43,872,1,0,0,0,0,'Morlos\'Aran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1479,857,43,1006,1,0,0,0,0,'Frostwhisper Gorge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1495,43,8,850,1,0,0,0,0,'Dustwallow Marsh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1519,859,43,1143,1,0,0,0,0,'Tor\'Watha','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1543,858,43,1165,1,0,0,0,0,'Amani Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1563,860,43,1374,1,0,0,0,0,'Silting Shore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1584,861,43,1339,1,0,0,0,0,'Ragefeather Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1633,862,43,1221,1,0,0,0,0,'Throne of Kil\'jaeden','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1654,863,43,1178,1,0,0,0,0,'Sporeggar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1675,864,43,1274,1,0,0,0,0,'Illidari Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1695,865,43,1300,1,0,0,0,0,'Grishnath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1720,866,43,1226,1,0,0,0,0,'Burning Blade Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1737,867,43,1316,1,0,0,0,0,'Bonechewer Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1770,843,43,1263,1,0,0,0,0,'Kirin\'Var Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1942,912,27,8651,1,0,0,0,0,'Elder Ironband in Searing Gorge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(1957,911,27,8723,1,0,0,0,0,'Elder Nightwind in Felwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(2083,963,27,12396,1,0,0,0,0,'Barrens, Ratchet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(2111,965,27,12386,1,0,0,0,0,'Feralas, Camp Mojache','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(2143,966,27,12402,1,0,0,0,0,'Eastern Plaguelands, Light\'s Hope Chapel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(2156,967,27,12371,1,0,0,0,0,'Silverpine Forest, The Sepulcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(2206,969,27,12408,1,0,0,0,0,'Netherstorm, The Stormspire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(2214,968,27,12404,1,0,0,0,0,'Shattrath City, Aldor Rise or Scryer\'s Tier','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(2271,979,36,34003,1,0,0,0,0,'Flimsy Male Draenei Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(2353,556,49,12,1,0,0,0,0,'First Trinket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(2898,621,57,19160,1,0,0,0,0,'Contest Winner\'s Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(3123,1026,27,11839,1,0,0,0,0,'Winterspring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(3153,1029,27,11803,1,0,0,0,0,'Winterspring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(3312,344,41,8545,1,0,0,0,0,'Heavy Mageweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(3430,1169,8,584,0,0,0,0,0,'Arathi Basin Assassin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(3445,1170,8,584,0,0,0,0,0,'Arathi Basin Assassin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(3526,1183,28,42254,1,0,0,0,0,'Aromatic Honey Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(3734,557,49,12,1,0,0,0,0,'First Trinket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(3752,1206,54,225,1,0,0,0,0,'Gazelle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(3773,1244,68,175754,1,0,0,0,0,'Kel\'Thuzad and the Forming of the Scourge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(3857,153,72,180657,1,0,0,0,0,'Sparse Firefin Snapper School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(3950,1283,8,639,0,0,0,0,0,'Zul\'Farrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(3976,1284,8,658,0,0,0,0,0,'The Mechanar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4035,1287,8,679,0,0,0,0,0,'Heroic The Mechanar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4051,1288,8,488,0,0,0,0,0,'Utgarde Pinnacle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4067,1289,8,499,0,0,0,0,0,'Heroic Utgarde Pinnacle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4134,1264,43,1487,0,0,0,0,0,'The Geyser Fields','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4148,1263,43,1510,0,0,0,0,0,'Fort Wildervar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4171,1265,43,1516,0,0,0,0,0,'Agmar\'s Hammer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4189,1266,43,1481,0,0,0,0,0,'Blue Sky Logging Grounds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4203,1267,43,1541,0,0,0,0,0,'Thrym\'s End','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4218,1268,43,1556,0,0,0,0,0,'The Stormwright\'s Shelf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4286,684,36,18205,1,0,0,0,0,'Eskhandar\'s Collar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(4299,345,41,118,0,0,0,0,0,'Minor Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4324,922,41,34440,0,0,0,0,0,'Mad Alchemist\'s Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4347,923,41,13453,0,0,0,0,0,'Elixir of Brute Force','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4418,811,41,22866,0,0,0,0,0,'Flask of Pure Death','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4460,687,27,9251,1,0,0,0,0,'Atiesh, the Befouled Greatstaff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(4515,1311,0,18696,1,0,0,0,0,'Kraator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4551,686,36,16938,1,0,0,0,0,'Dragonstalker\'s Legguards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(4571,685,36,19375,1,0,0,0,0,'Mish\'undare, Circlet of the Mind Flayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(4607,698,36,34244,1,0,0,0,0,'Duplicitous Guise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(4628,695,36,30911,1,0,0,0,0,'Scepter of Purification','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(4730,812,41,19013,0,0,0,0,0,'Major Healthstone (2)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4748,924,46,1068,42000,0,0,0,0,'Exlated with the Explorer\'s League','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4761,925,46,1077,42000,0,0,0,0,'Exlated with the Shattered Sun Offensive','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4779,927,49,16,1,0,0,0,0,'Off-hand is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(4798,697,36,32471,1,0,0,0,0,'Shard of Azzinoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(4828,696,36,29991,1,0,0,0,0,'Sunhawk Leggings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(4858,694,36,30109,1,0,0,0,0,'Ring of Endless Coils','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(4885,693,36,28781,1,0,0,0,0,'Karaborian Talisman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(4917,692,36,28828,1,0,0,0,0,'Gronn-Stitched Girdle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(5003,350,68,176500,0,0,0,0,0,'Portal to Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5064,1307,27,9005,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(5078,1022,27,11828,1,0,0,0,0,'Wetlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5090,284,36,34003,1,0,0,0,0,'Flimsy Male Draenei Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5154,1396,27,13019,1,0,0,0,0,'Elder Thoim in Moa\'ki Harbor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5264,910,27,13066,1,0,0,0,0,'Elder Yurauk in the Halls of Stone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5266,1031,27,11757,1,0,0,0,0,'Wetlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5324,926,46,1085,42000,0,0,0,0,'Exalted with Warsong Offensive','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5339,1466,46,1050,42000,0,0,0,0,'Exalted with Valiance Expedition','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5439,1467,0,29308,1,0,0,0,0,'Prince Taldaram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5587,1202,7,176,400,0,0,0,0,'Thrown','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5622,1103,0,26723,1,0,0,0,0,'Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5690,1516,8,1517,0,0,0,0,0,'Northrend Angler','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5854,1269,43,1585,0,0,0,0,0,'Temple of Storms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5871,1270,43,1561,0,0,0,0,0,'Corp\'rethar: The Horror Gate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5887,1658,28,58630,1,0,0,0,0,'Heroic: Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(5911,1676,11,1,700,0,0,0,0,'Dun Morogh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,12),(5963,1677,11,1,550,0,0,0,0,'Dun Morogh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,12),(6015,1678,11,361,700,0,0,0,0,'Felwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,12),(6110,1680,11,361,685,0,0,0,0,'Felwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,12),(6197,879,34,16081,0,0,0,0,0,'Arctic Wolf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(6364,1693,8,1704,0,0,0,0,0,'I Pitied The Fool','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(6378,1707,8,1704,0,0,0,0,0,'I Pitied The Fool','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(6497,1777,29,45553,1,0,0,0,0,'Rhino Dogs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(6673,1792,34,40613,0,0,0,0,0,'Willy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(6772,1800,29,33294,1,0,0,0,0,'Poached Bluefish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7149,578,0,16028,1,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7165,579,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7255,1957,36,43631,1,0,0,0,0,'Teron\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7311,2019,27,13256,1,0,0,0,0,'Proof of Demise: Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7452,2094,42,43713,1,0,0,0,0,'Kryll\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7474,2095,42,43684,1,0,0,0,0,'Medivh\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7507,2136,8,2039,0,0,0,0,0,'Better Off Dred','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7537,2137,8,2051,0,0,0,0,0,'The Twilight Zone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7545,2138,8,1870,0,0,0,0,0,'A Poke In The Eye (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7653,2194,8,2191,0,0,0,0,0,'Ancient Courtyard Protector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7665,2195,8,2191,0,0,0,0,0,'Ancient Courtyard Protector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7801,322,20,26529,0,0,0,0,0,'Meathook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7820,323,20,15990,0,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(7840,324,20,15989,0,0,0,0,0,'Sapphiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(8111,2256,0,32417,1,0,0,0,0,'Scarlet Highlord Daion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(8706,347,41,22237,0,0,0,0,0,'Dark Desire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(8760,801,29,20761,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(9001,346,41,23246,0,0,0,0,0,'Fiery Festival Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(9310,2557,54,225,1,0,0,0,0,'Tundra Penguin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(9368,2556,0,4075,1,0,0,0,0,'Rat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(9747,2758,27,13706,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,12),(9988,1770,0,33271,1,0,0,0,0,'General Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(9989,1756,0,33271,1,0,0,0,0,'General Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(10110,2957,8,3181,0,0,0,0,0,'I Love the Smell of Saronite in the Morning','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(10349,2903,0,33271,1,0,0,0,0,'General Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(10362,2904,0,33271,1,0,0,0,0,'General Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(10375,2958,8,3188,0,0,0,0,0,'I Love the Smell of Saronite in the Morning (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(11914,3802,28,68206,1,0,0,0,0,'Gruul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(12084,1525,27,13107,1,0,0,0,0,'Infused Mushroom Meatloaf - Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(12378,227,55,0,300000,3,628,3,628,'300,000 healing in Isle of Conquest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',11,0,0,0,12),(12629,4416,34,10682,0,0,0,0,0,'Hyacinth Macaw','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,12),(12689,4456,0,26723,1,0,0,0,0,'Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(12809,4556,0,26723,1,0,0,0,0,'Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(12888,1695,27,24648,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,12),(12924,4602,8,4582,0,0,0,0,0,'The Orb Whisperer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(13023,4603,8,4617,0,0,0,0,0,'The Orb Whisperer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,12),(13407,4788,36,28888,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,12),(13420,4789,36,28909,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,12),(514,627,43,161,1,0,0,0,0,'Anvilmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(756,705,7,162,400,0,0,0,0,'Unarmed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(771,700,36,30346,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(791,701,36,28237,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(915,736,43,204,1,0,0,0,0,'Wildmane Water Well','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(929,750,43,473,1,0,0,0,0,'Ratchet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(959,760,43,453,1,0,0,0,0,'Strahnbrad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(973,761,43,573,1,0,0,0,0,'Go\'Shek Farm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1026,765,43,593,1,0,0,0,0,'The Maker\'s Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1050,768,43,223,1,0,0,0,0,'Whispering Gardens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1065,769,43,313,1,0,0,0,0,'Pyrewood Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1080,770,43,973,1,0,0,0,0,'Thondroril River','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1093,771,43,882,1,0,0,0,0,'The Noxious Glade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1127,773,43,613,1,0,0,0,0,'Jintha\'Alor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1173,778,43,433,1,0,0,0,0,'The Darkened Bank','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1208,781,43,510,1,0,0,0,0,'Ziata\'jai Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1260,802,43,293,1,0,0,0,0,'The Dagger Hills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1274,841,43,393,1,0,0,0,0,'Direforge Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1335,845,43,753,1,0,0,0,0,'Fallen Sky Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1381,848,43,763,1,0,0,0,0,'Magram Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1391,849,43,992,1,0,0,0,0,'Grimtotem Compound','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1421,851,43,646,1,0,0,0,0,'The Gaping Chasm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1437,852,43,853,1,0,0,0,0,'Shadowsong Shrine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1480,857,43,1007,1,0,0,0,0,'Darkwhisper Gorge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1496,43,8,849,1,0,0,0,0,'Feralas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1520,859,43,1145,1,0,0,0,0,'The Scorched Grove','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1544,858,43,1174,1,0,0,0,0,'Windrunner Spire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1550,42,8,859,1,0,0,0,0,'Eversong Woods','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1564,860,43,1375,1,0,0,0,0,'Silvermyst Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1585,861,43,1340,1,0,0,0,0,'Ruins of Loreth\'Aran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1634,862,43,1222,1,0,0,0,0,'Zeth\'Gor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1655,863,43,1234,1,0,0,0,0,'Ango\'rosh Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1679,864,43,1420,1,0,0,0,0,'Netherwing Fields','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1696,865,43,1301,1,0,0,0,0,'Gruul\'s Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1721,866,43,1227,1,0,0,0,0,'Clan Watch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1738,867,43,1390,1,0,0,0,0,'Auchenai Grounds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1771,843,43,1265,1,0,0,0,0,'Netherstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1853,879,36,12302,1,0,0,0,0,'Frostsaber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(1944,912,27,8652,1,0,0,0,0,'Elder Graveborn in Brill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(1958,911,27,8682,1,0,0,0,0,'Elder Skyseer in Freewind Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(2084,963,27,12398,1,0,0,0,0,'Dustwallow Marsh, Mudsprocket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(2112,965,27,12362,1,0,0,0,0,'Mulgore, Bloodhoof Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(2144,966,27,12397,1,0,0,0,0,'Stranglethorn Vale, Booty Bay','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(2157,967,27,12382,1,0,0,0,0,'Stranglethorn Vale, Grom\'gol Base Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(2207,969,27,12404,1,0,0,0,0,'Shattrath City, Aldor Rise or Scryer\'s Tier','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(2215,968,27,12403,1,0,0,0,0,'Zangarmarsh, Cenarion Refuge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(2272,979,36,20561,1,0,0,0,0,'Flimsy Male Dwarf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(2899,621,57,19031,1,0,0,0,0,'Frostwolf Battle Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(3074,1022,27,11827,1,0,0,0,0,'Western Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(3172,1031,27,11756,1,0,0,0,0,'Western Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(3313,344,41,21991,1,0,0,0,0,'Heavy Netherweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(3735,557,49,13,1,0,0,0,0,'Second Trinket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(3753,1206,54,225,1,0,0,0,0,'Hare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(3774,1244,68,175741,1,0,0,0,0,'Kil\'jaeden and the Shadow Pact','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(3860,153,72,180683,1,0,0,0,0,'Firefin Snapper School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(3951,1283,8,640,0,0,0,0,0,'Maraudon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(3977,1284,8,659,0,0,0,0,0,'The Botanica','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4036,1287,8,680,0,0,0,0,0,'Heroic The Botanica','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4135,1264,43,1488,0,0,0,0,0,'The Dens of the Dying','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4149,1263,43,1512,0,0,0,0,0,'Ivald\'s Ruin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4172,1265,43,1519,0,0,0,0,0,'Wyrmrest Temple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4190,1266,43,1482,0,0,0,0,0,'Camp Oneqwah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4204,1267,43,1542,0,0,0,0,0,'Light\'s Breach','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4287,684,36,17064,1,0,0,0,0,'Shard of the Scale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(4300,345,41,2456,0,0,0,0,0,'Minor Rejuvenation Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4326,922,41,17351,0,0,0,0,0,'Major Mana Draught','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4348,923,41,22823,0,0,0,0,0,'Elixir of Camouflage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4419,811,41,40404,0,0,0,0,0,'Flask of Pure Mojo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4516,1311,0,18680,1,0,0,0,0,'Marticar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4552,686,36,16954,1,0,0,0,0,'Judgement Legplates','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(4572,685,36,19379,1,0,0,0,0,'Neltharion\'s Tear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(4585,687,36,21586,1,0,0,0,0,'Belt of Never-ending Agony','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(4608,698,36,34337,1,0,0,0,0,'Golden Staff of the Sin\'dorei','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(4629,695,36,30910,1,0,0,0,0,'Tempest of Chaos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(4731,812,41,5512,0,0,0,0,0,'Minor Healthstone (0)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4749,924,46,1094,42000,0,0,0,0,'Exlated with the Silver Convenant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4762,925,46,932,42000,0,0,0,0,'Exlated with the Aldor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4780,927,49,17,1,0,0,0,0,'Ranged/Wand/Relic is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(4799,697,36,32524,1,0,0,0,0,'Shroud of the Highborne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(4829,696,36,29989,1,0,0,0,0,'Sunshower Light Cloak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(4859,694,36,30111,1,0,0,0,0,'Runetotem\'s Mantle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(4886,693,36,28776,1,0,0,0,0,'Liar\'s Tongue Gloves','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(4918,692,36,28826,1,0,0,0,0,'Shuriken of Negation','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(5004,350,68,176501,0,0,0,0,0,'Portal to Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5065,1307,27,9006,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(5091,284,36,20561,1,0,0,0,0,'Flimsy Male Dwarf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5155,1396,27,13028,1,0,0,0,0,'Elder Graymane in K3','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5265,910,27,13067,1,0,0,0,0,'Elder Chogan\'gada in Utgarde Pinnacle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5325,926,46,1067,42000,0,0,0,0,'Exalted with The Hand of Vengeance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5340,1466,46,1094,42000,0,0,0,0,'Exalted with The Silver Covenant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5381,1467,0,26731,1,0,0,0,0,'Grand Magus Telestra','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5588,1202,7,226,400,0,0,0,0,'Crossbows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5632,1103,73,18716,1,0,0,0,0,'Mal\'Ganis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5673,1516,8,1243,0,0,0,0,0,'Fish Don\'t Leave Footprints','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5817,556,49,13,1,0,0,0,0,'Second Trinket','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5855,1269,43,1588,0,0,0,0,0,'Snowdrift Plains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5872,1270,43,1562,0,0,0,0,0,'Jotunheim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5880,1658,69,61863,1,0,0,0,0,'Heroic: The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(5912,1676,11,10,700,0,0,0,0,'Duskwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,13),(5964,1677,11,10,550,0,0,0,0,'Duskwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,13),(6016,1678,11,357,700,0,0,0,0,'Feralas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,13),(6111,1680,11,357,685,0,0,0,0,'Feralas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,13),(6498,1777,29,45552,1,0,0,0,0,'Roasted Worg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(6773,1800,29,43761,1,0,0,0,0,'Broiled Bloodfin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7156,578,0,16061,1,0,0,0,0,'Instructor Razuvious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7169,579,0,16061,1,0,0,0,0,'Instructor Razuvious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7256,1957,36,43627,1,0,0,0,0,'Thrall\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7453,2094,42,43714,1,0,0,0,0,'Landro Longshot\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7475,2095,42,43679,1,0,0,0,0,'Muradin Bronzebeard\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7508,2136,8,2057,0,0,0,0,0,'Oh Novos!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7546,2138,8,2048,0,0,0,0,0,'Gonna Go When the Volcano Blows (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7570,2137,8,2146,0,0,0,0,0,'The Hundred Club','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7741,2194,8,1757,0,0,0,0,0,'Defense of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7742,2195,8,2200,0,0,0,0,0,'Defense of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7800,322,20,26861,0,0,0,0,0,'King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7819,323,20,15989,0,0,0,0,0,'Sapphiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7839,324,20,15928,0,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(7864,801,28,20761,0,0,0,0,0,'Use Soulstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(8112,2256,0,32422,1,0,0,0,0,'Grocklar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(8705,347,41,22236,0,0,0,0,0,'Buttermilk Delight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(9000,346,41,23176,0,0,0,0,0,'Fizzy Energy Drink','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(9311,2557,54,225,1,0,0,0,0,'Hare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(9369,2556,0,4076,1,0,0,0,0,'Roach','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(9744,2758,27,13690,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,13),(9990,1770,0,32871,1,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(9991,1756,0,32871,1,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(10112,2957,8,3158,0,0,0,0,0,'One Light in the Darkness','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(10350,2903,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(10364,2904,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(10377,2958,8,3163,0,0,0,0,0,'One Light in the Darkness (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(11915,3802,28,68206,1,0,0,0,0,'Vashj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(12085,1525,27,13116,1,0,0,0,0,'Infused Mushroom Meatloaf - Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(12630,4416,34,67416,0,0,0,0,0,'Leaping Hatchling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(12889,1695,27,24649,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,13),(12898,1792,36,46545,1,0,0,0,0,'Curious Oracle Hatchling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,13),(12925,4602,8,4539,0,0,0,0,0,'Once Bitten, Twice Shy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(13024,4603,8,4618,0,0,0,0,0,'Once Bitten, Twice Shy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,13),(13408,4788,36,28889,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',0,0,0,0,13),(515,627,43,114,1,0,0,0,0,'The Grizzled Den','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(757,705,7,228,400,0,0,0,0,'Wands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(772,700,36,30345,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(792,701,36,30349,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(911,736,43,202,1,0,0,0,0,'Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(930,750,43,474,1,0,0,0,0,'The Merchant Coast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(960,760,43,454,1,0,0,0,0,'The Headland','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(974,761,43,574,1,0,0,0,0,'Dabyrie\'s Farmstead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1027,765,43,594,1,0,0,0,0,'Camp Kosh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1051,768,43,222,1,0,0,0,0,'Venomweb Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1066,769,43,314,1,0,0,0,0,'The Greymane Wall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1094,771,43,881,1,0,0,0,0,'Eastwall Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1128,773,43,614,1,0,0,0,0,'The Overlook Cliffs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1209,781,43,511,1,0,0,0,0,'Gurubashi Arena','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1261,802,43,294,1,0,0,0,0,'The Dust Plains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1275,841,43,394,1,0,0,0,0,'Raptor Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1291,42,8,774,1,0,0,0,0,'Searing Gorge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1336,845,43,754,1,0,0,0,0,'Splintertree Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1382,848,43,762,1,0,0,0,0,'Shadowbreak Ravine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1392,849,43,993,1,0,0,0,0,'Gordunni Outpost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1422,851,43,645,1,0,0,0,0,'Eastmoon Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1438,852,43,854,1,0,0,0,0,'Ruins of Eldarath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1497,43,8,851,1,0,0,0,0,'Tanaris Desert','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1521,859,43,1175,1,0,0,0,0,'Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1545,858,43,1177,1,0,0,0,0,'Bleeding Ziggurat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1565,860,43,1376,1,0,0,0,0,'Stillpine Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1586,861,43,1341,1,0,0,0,0,'Talon Stand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1635,862,43,1281,1,0,0,0,0,'Den of Haal\'esh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1656,863,43,1236,1,0,0,0,0,'Bloodscale Grounds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1697,865,43,1302,1,0,0,0,0,'Jagged Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1722,866,43,1228,1,0,0,0,0,'Forge Camp: Hate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1739,867,43,1391,1,0,0,0,0,'Carrion Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1772,843,43,1266,1,0,0,0,0,'Ruins of Enkaat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1945,912,27,8645,1,0,0,0,0,'Elder Obsidian in The Sepulcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(1959,911,27,8724,1,0,0,0,0,'Elder Morningdew in Mirage Raceway','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(2085,963,27,12401,1,0,0,0,0,'Silithus, Cenarion Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(2113,965,27,12366,1,0,0,0,0,'Orgrimmar, Valley of Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(2158,967,27,12384,1,0,0,0,0,'Swamp of Sorrows, Stonard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(2209,969,27,12403,1,0,0,0,0,'Zangarmarsh, Cenarion Refuge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(2216,968,27,12409,1,0,0,0,0,'Shadowmoon Valley, Altar of Sha\'tar or Sanctum of the Stars','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(2273,979,36,20391,1,0,0,0,0,'Flimsy Male Gnome Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(2355,556,49,14,1,0,0,0,0,'Cloak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(2900,621,57,31404,1,0,0,0,0,'Green Trophy Tabard of the Illidari','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(3075,1022,27,11583,1,0,0,0,0,'Westfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(3173,1031,27,11581,1,0,0,0,0,'Westfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(3314,344,41,14530,1,0,0,0,0,'Heavy Runecloth Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(3736,557,49,14,1,0,0,0,0,'Cloak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(3754,1206,54,225,1,0,0,0,0,'Parrot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(3775,1244,68,175751,1,0,0,0,0,'Lethargy of the Orcs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(3852,153,72,180902,1,0,0,0,0,'Abundant Firefin Snapper School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(3952,1283,8,641,0,0,0,0,0,'Sunken Temple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(3978,1284,8,660,0,0,0,0,0,'The Arcatraz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4037,1287,8,681,0,0,0,0,0,'Heroic The Arcatraz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4150,1263,43,1513,0,0,0,0,0,'Halgrind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4173,1265,43,1521,0,0,0,0,0,'Westwind Refugee Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4191,1266,43,1558,0,0,0,0,0,'Westfall Brigade Encampment','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4205,1267,43,1543,0,0,0,0,0,'Kolramas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4301,345,41,32763,0,0,0,0,0,'Rulkster\'s Secret Sauce','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4327,922,41,17352,0,0,0,0,0,'Superior Mana Draught','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4349,923,41,3389,0,0,0,0,0,'Elixir of Defense','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4420,811,41,22854,0,0,0,0,0,'Flask of Relentless Assault','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4517,1311,0,18677,1,0,0,0,0,'Mekthorg the Wild','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4553,686,36,16962,1,0,0,0,0,'Legplates of Wrath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(4573,685,36,19377,1,0,0,0,0,'Prestor\'s Talisman of Connivery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(4586,687,36,21583,1,0,0,0,0,'Cloak of Clarity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(4609,698,36,34335,1,0,0,0,0,'Hammer of Sanctification','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(4630,695,36,31063,1,0,0,0,0,'Cowl of Absolution','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(4732,812,41,19004,0,0,0,0,0,'Minor Healthstone (1)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4763,925,46,934,42000,0,0,0,0,'Exlated with the Scryers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4781,927,49,2,1,0,0,0,0,'Shoulders are Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(4800,697,36,32497,1,0,0,0,0,'Stormrage Signet Ring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(4830,696,36,29994,1,0,0,0,0,'Thalassian Wildercloak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(4860,694,36,30105,1,0,0,0,0,'Serpent Spine Longbow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(4887,693,36,28780,1,0,0,0,0,'Soul-Eater\'s Handwraps','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(4919,692,36,28822,1,0,0,0,0,'Teeth of Gruul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(5066,1307,27,9007,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(5092,284,36,20391,1,0,0,0,0,'Flimsy Male Gnome Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(5156,1396,27,13020,1,0,0,0,0,'Elder Stonebeard in Bouldercrag\'s Refuge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(5326,926,46,1064,42000,0,0,0,0,'Exalted with The Taunka','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(5341,1466,46,1068,42000,0,0,0,0,'Exalted with Explorers\' League','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(5378,1467,0,24200,1,0,0,0,0,'Skarvald the Constructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(5589,1202,7,162,400,0,0,0,0,'Unarmed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(5762,1516,8,1561,0,0,0,0,0,'1000 Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(5856,1269,43,1591,0,0,0,0,0,'Garm\'s Bane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(5873,1270,43,1565,0,0,0,0,0,'Scourgeholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(5881,1658,0,31134,1,0,0,0,0,'Heroic: Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(5913,1676,11,139,700,0,0,0,0,'Eastern Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,14),(5965,1677,11,139,550,0,0,0,0,'Eastern Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,14),(6017,1678,11,3478,700,0,0,0,0,'Gates of Ahn\'Qiraj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,14),(6112,1680,11,3478,685,0,0,0,0,'Gates of Ahn\'Qiraj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,14),(6198,879,34,16056,0,0,0,0,0,'Ancient Frostsaber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(6499,1777,29,45562,1,0,0,0,0,'Sauteed Goby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(6774,1800,29,33295,1,0,0,0,0,'Golden Fish Sticks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(7153,578,0,15954,1,0,0,0,0,'Noth the Plaguebringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(7166,579,0,15954,1,0,0,0,0,'Noth the Plaguebringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(7257,1957,36,43630,1,0,0,0,0,'Tirion Fordring\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(7454,2094,42,43715,1,0,0,0,0,'Molok\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(7476,2095,42,43643,1,0,0,0,0,'Prince Magni Bronzebeard\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(7509,2136,8,1816,0,0,0,0,0,'Defenseless','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(7575,2138,8,2149,0,0,0,0,0,'Denyin\' the Scion (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(7602,2137,8,2176,0,0,0,0,0,'And They Would All Go Down Together','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(7799,322,20,26687,0,0,0,0,0,'Gortok Palehoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(7818,323,20,15928,0,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(7838,324,20,16028,0,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(8113,2256,0,32429,1,0,0,0,0,'Seething Hate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(8704,347,41,21537,0,0,0,0,0,'Festival Dumplings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(8999,346,41,23164,0,0,0,0,0,'Bubbly Beverage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(9370,2556,0,15476,1,0,0,0,0,'Scorpion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(9745,2758,27,13705,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712191',2,0,0,0,14),(9992,1770,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(9993,1756,0,33515,1,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(11916,3802,28,68206,1,0,0,0,0,'Archimonde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(11961,1525,27,13112,1,0,0,0,0,'Infused Mushroom Meatloaf - Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(12631,4416,34,43918,0,0,0,0,0,'Mojo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(12890,1695,27,24650,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,14),(12899,1792,34,65381,0,0,0,0,0,'Curious Oracle Hatchling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,14),(12926,4602,8,4579,0,0,0,0,0,'Portal Jockey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(13025,4603,8,4619,0,0,0,0,0,'Portal Jockey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,14),(516,627,43,106,1,0,0,0,0,'South Gate Outpost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(773,700,36,30344,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(793,701,36,30351,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(931,750,43,475,1,0,0,0,0,'Northwatch Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(961,760,43,455,1,0,0,0,0,'The Uplands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(975,761,43,575,1,0,0,0,0,'Circle of East Binding','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1052,768,43,221,1,0,0,0,0,'The Bulwark','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1067,769,43,315,1,0,0,0,0,'Beren\'s Peril','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1095,771,43,880,1,0,0,0,0,'Blackwood Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1210,781,43,512,1,0,0,0,0,'Ruins of Zul\'Mamwe','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1276,841,43,395,1,0,0,0,0,'Grim Batol','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1292,42,8,769,1,0,0,0,0,'Silverpine Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1337,845,43,755,1,0,0,0,0,'Satyrnaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1383,848,43,761,1,0,0,0,0,'Ranazjar Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1393,849,43,995,1,0,0,0,0,'Sardor Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1423,851,43,644,1,0,0,0,0,'Land\'s End Beach','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1439,852,43,855,1,0,0,0,0,'Southridge Beach','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1498,43,8,852,1,0,0,0,0,'Azshara','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1522,859,43,1356,1,0,0,0,0,'Azurebreeze Coast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1546,858,43,1225,1,0,0,0,0,'Elrendar Crossing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1566,860,43,1377,1,0,0,0,0,'The Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1587,861,43,1342,1,0,0,0,0,'Tel\'athion\'s Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1636,862,43,1282,1,0,0,0,0,'Fallen Sky Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1657,863,43,1237,1,0,0,0,0,'Orebor Harborage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1698,865,43,1303,1,0,0,0,0,'Mok\'Nathal Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1723,866,43,1229,1,0,0,0,0,'Southwind Cleft','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1740,867,43,1392,1,0,0,0,0,'Refugee Caravan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1773,843,43,1267,1,0,0,0,0,'Sunfury Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1854,879,36,12303,1,0,0,0,0,'Nightsaber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(1946,912,27,8688,1,0,0,0,0,'Elder Windrun in Eastern Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(1960,911,27,8671,1,0,0,0,0,'Elder Ragetotem in Tanaris','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(2086,963,27,12399,1,0,0,0,0,'Tanaris, Gadgetzan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(2114,965,27,12378,1,0,0,0,0,'Stonetalon Mountains, Sun Rock Retreat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(2159,967,27,12363,1,0,0,0,0,'Tirisfal Glades, Brill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(2210,969,27,12409,1,0,0,0,0,'Shadowmoon Valley, Altar of Sha\'tar or Sanctum of the Stars','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(2274,979,36,20566,1,0,0,0,0,'Flimsy Male Human Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(2356,556,49,15,1,0,0,0,0,'Weapon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(2901,621,57,23999,1,0,0,0,0,'Honor Hold Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(3315,344,41,6451,1,0,0,0,0,'Heavy Silk Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(3737,557,49,15,1,0,0,0,0,'Weapon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(3755,1206,54,225,1,0,0,0,0,'Rabbit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(3776,1244,68,175729,1,0,0,0,0,'Mount Hyjal and Illidan\'s Gift','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(3863,153,72,180752,1,0,0,0,0,'Teeming Firefin Snapper School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(3953,1283,8,642,0,0,0,0,0,'Blackrock Depths','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(3979,1284,8,661,0,0,0,0,0,'Magister\'s Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4038,1287,8,682,0,0,0,0,0,'Heroic Magister\'s Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4151,1263,43,1515,0,0,0,0,0,'New Agamand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4174,1265,43,1523,0,0,0,0,0,'Venomspite','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4302,345,41,22829,0,0,0,0,0,'Super Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4328,922,41,13444,0,0,0,0,0,'Major Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4350,923,41,9224,0,0,0,0,0,'Elixir of Demonslaying','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4421,811,41,40083,0,0,0,0,0,'Flask of Stoneblood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4518,1311,0,18690,1,0,0,0,0,'Morcrush','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4554,686,36,16946,1,0,0,0,0,'Legplates of Ten Storms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(4574,685,36,19382,1,0,0,0,0,'Pure Elementium Band','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(4587,687,36,21134,1,0,0,0,0,'Dark Edge of Insanity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(4610,698,36,34331,1,0,0,0,0,'Hand of the Deceiver','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(4631,695,36,31064,1,0,0,0,0,'Hood of Absolution','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(4733,812,41,19005,0,0,0,0,0,'Minor Healthstone (2)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4764,925,46,935,42000,0,0,0,0,'Exlated with the Sha\'tar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4782,927,49,18,1,0,0,0,0,'Tabard is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(4801,697,36,32483,1,0,0,0,0,'The Skull of Gul\'dan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(4831,696,36,29988,1,0,0,0,0,'The Nexus Key','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(4861,694,36,30107,1,0,0,0,0,'Vestments of the Sea-Witch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(4888,693,36,28778,1,0,0,0,0,'Terror Pit Girdle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(4920,692,36,28810,1,0,0,0,0,'Windshear Boots','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(5067,1307,27,9008,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(5093,284,36,20566,1,0,0,0,0,'Flimsy Male Human Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(5157,1396,27,13029,1,0,0,0,0,'Elder Pamuya in Warsong Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(5327,926,46,1124,42000,0,0,0,0,'Exalted with The Sunreavers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(5342,1466,46,1124,42000,0,0,0,0,'Exalted with The Sunreavers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(5460,1467,0,27655,1,0,0,0,0,'Mage-Lord Urom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(5590,1202,7,229,400,0,0,0,0,'Polearms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(5857,1269,43,1592,0,0,0,0,0,'Frosthold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(5874,1270,43,1571,0,0,0,0,0,'The Shadow Vault','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(5882,1658,0,29306,1,0,0,0,0,'Heroic: Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(5914,1676,11,12,700,0,0,0,0,'Elwynn Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,15),(5966,1677,11,12,550,0,0,0,0,'Elwynn Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,15),(6018,1678,11,2100,700,0,0,0,0,'Maraudon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,15),(6113,1680,11,2100,685,0,0,0,0,'Maraudon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,15),(6501,1777,29,45550,1,0,0,0,0,'Shoveltusk Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(6775,1800,29,43772,1,0,0,0,0,'Kibler\'s Bits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(7258,1957,36,43629,1,0,0,0,0,'Uther Lightbringer\'s Gold Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(7455,2094,42,43716,1,0,0,0,0,'Murky\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(7477,2095,42,43644,1,0,0,0,0,'A Peasant\'s Silver Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(7495,1516,8,2096,0,0,0,0,0,'The Coin Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(7510,2136,8,1865,0,0,0,0,0,'Lockdown!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(7547,2138,8,2054,0,0,0,0,0,'The Twilight Zone (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(7576,2137,8,2148,0,0,0,0,0,'Denyin\' the Scion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(7798,322,20,26668,0,0,0,0,0,'Svala Sorrowgrave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(7817,323,20,16028,0,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(7837,324,20,15954,0,0,0,0,0,'Noth the Plaguebringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(8114,2256,0,32438,1,0,0,0,0,'Syreian the Bonecarver','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(8703,347,41,20557,0,0,0,0,0,'Hallow\'s End Pumpink Treat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(8998,346,41,23161,0,0,0,0,0,'Freshly-Squeezed Lemonade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(9371,2556,0,2914,1,0,0,0,0,'Snake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(9378,705,7,176,400,0,0,0,0,'Thrown','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(9740,2758,27,13685,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(9994,1770,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(9995,1756,0,33288,1,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(11917,3802,28,68206,1,0,0,0,0,'Illidan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(12632,4416,34,45890,0,0,0,0,0,'Scorchling','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(12891,1695,27,24651,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,15),(12900,1792,36,46544,1,0,0,0,0,'Curious Wolvar Pup','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,15),(12927,4602,8,4580,0,0,0,0,0,'All You Can Eat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(13026,4603,8,4620,0,0,0,0,0,'All You Can Eat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,15),(517,627,43,102,1,0,0,0,0,'Iceflow Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(774,700,36,30343,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(794,701,36,38589,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(932,750,43,476,1,0,0,0,0,'Raptor Grounds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(976,761,43,576,1,0,0,0,0,'Hammerfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1045,768,43,228,1,0,0,0,0,'Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1096,771,43,879,1,0,0,0,0,'Northdale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1211,781,43,513,1,0,0,0,0,'Balia\'mah Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1338,845,43,756,1,0,0,0,0,'Bough Shadow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1394,849,43,996,1,0,0,0,0,'Isle of Dread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1424,851,43,643,1,0,0,0,0,'Southmoon Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1440,852,43,856,1,0,0,0,0,'Ravencrest Monument','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1499,43,8,853,1,0,0,0,0,'Felwood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1523,859,43,1357,1,0,0,0,0,'Elrendar Falls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1548,858,43,1241,1,0,0,0,0,'Thalassian Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1551,42,8,858,1,0,0,0,0,'Ghostlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1567,860,43,1378,1,0,0,0,0,'Valaar\'s Berth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1588,861,43,1343,1,0,0,0,0,'The Bloodcursed Reef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1638,862,43,1285,1,0,0,0,0,'Void Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1658,863,43,1238,1,0,0,0,0,'The Spawning Glen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1699,865,43,1304,1,0,0,0,0,'Raven\'s Wood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1724,866,43,1230,1,0,0,0,0,'The Twilight Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1741,867,43,1393,1,0,0,0,0,'Ring of Observance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1775,843,43,1269,1,0,0,0,0,'The Stormspire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1947,912,27,8650,1,0,0,0,0,'Elder Snowcrown in Light\'s Hope Chapel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(1961,911,27,8684,1,0,0,0,0,'Elder Dreamseer in Gadgetzan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(2087,963,27,12400,1,0,0,0,0,'Winterspring, Everlook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(2115,965,27,12367,1,0,0,0,0,'Thunder Bluff, Lower Rise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(2160,967,27,12368,1,0,0,0,0,'Undercity, The Trade Quarter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(2275,979,36,20564,1,0,0,0,0,'Flimsy Male Nightelf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(2357,556,49,17,1,0,0,0,0,'Ranged','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(2902,621,57,31777,1,0,0,0,0,'Keepers of Time Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(3316,344,41,1251,1,0,0,0,0,'Linen Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(3738,557,49,17,1,0,0,0,0,'Ranged','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(3756,1206,54,225,1,0,0,0,0,'Ram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(3777,1244,68,175763,1,0,0,0,0,'Old Hatreds - The Colonization of Kalimdor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(3854,153,72,180658,1,0,0,0,0,'School of Deviate Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(3954,1283,8,643,0,0,0,0,0,'Blackrock Spire','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(3980,1284,8,666,0,0,0,0,0,'Auchenai Crypts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4039,1287,8,672,0,0,0,0,0,'Heroic Auchenai Crypts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4152,1263,43,1517,0,0,0,0,0,'Skorn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4175,1265,43,1525,0,0,0,0,0,'The Forgotten Shore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4303,345,41,22850,0,0,0,0,0,'Super Rejuvenation Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4329,922,41,18253,0,0,0,0,0,'Major Rejuvenation Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4351,923,41,9233,0,0,0,0,0,'Elixir of Detect Demon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4422,811,41,13512,0,0,0,0,0,'Flask of Supreme Power','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4519,1311,0,20932,1,0,0,0,0,'Nuramoc','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4555,686,36,16909,1,0,0,0,0,'Bloodfang Pants','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(4575,685,36,19356,1,0,0,0,0,'Staff of the Shadow Flame','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(4588,687,36,21585,1,0,0,0,0,'Dark Storm Gauntlets','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(4611,698,36,34344,1,0,0,0,0,'Handguards of Defiled Worlds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(4632,695,36,31051,1,0,0,0,0,'Hood of the Malefic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(4734,812,41,22103,0,0,0,0,0,'Master Healthstone (0)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4765,925,46,989,42000,0,0,0,0,'Exlated with the Keepers of Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4783,927,49,12,1,0,0,0,0,'Trinket is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(4802,697,36,32374,1,0,0,0,0,'Zhar\'doom, Greatstaff of the Devourer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(4832,696,36,29993,1,0,0,0,0,'Twinblade of the Phoenix','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(4862,694,36,30166,1,0,0,0,0,'Cataclysm Headguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(4889,693,36,28775,1,0,0,0,0,'Thundering Greathelm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(4921,692,36,29030,1,0,0,0,0,'Cyclone Kilt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(5068,1307,27,9009,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(5094,284,36,20564,1,0,0,0,0,'Flimsy Male Nightelf Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(5158,1396,27,13030,1,0,0,0,0,'Elder Whurain in Camp Oneqwah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(5456,1467,0,28546,1,0,0,0,0,'Ionar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(5591,1202,7,136,400,0,0,0,0,'Staves','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(5858,1269,43,1589,0,0,0,0,0,'Nidavelir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(5915,1676,11,3430,700,0,0,0,0,'Eversong Woods','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,16),(5967,1677,11,3430,550,0,0,0,0,'Eversong Woods','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,16),(6019,1678,11,493,700,0,0,0,0,'Moonglade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,16),(6114,1680,11,493,685,0,0,0,0,'Moonglade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,16),(6199,879,34,16055,0,0,0,0,0,'Nightsaber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(6502,1777,29,45560,1,0,0,0,0,'Smoked Rockfin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(6776,1800,29,33287,1,0,0,0,0,'Roasted Clefthoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(7456,2094,42,43717,1,0,0,0,0,'Princess Calia Menethil\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(7511,2136,8,2041,0,0,0,0,0,'Dehydration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(7569,2138,8,2147,0,0,0,0,0,'The Hundred Club (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(7618,2137,8,2187,0,0,0,0,0,'The Undying','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(7797,322,20,26693,0,0,0,0,0,'Skadi the Ruthless','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(7816,323,20,15954,0,0,0,0,0,'Noth the Plaguebringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(7836,324,20,15952,0,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(8115,2256,0,32447,1,0,0,0,0,'Zul\'drak Sentinel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(8702,347,41,20390,0,0,0,0,0,'Candy Bar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(8997,346,41,22779,0,0,0,0,0,'Scourgebane Draught','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(9372,2556,0,14881,1,0,0,0,0,'Spider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(9741,2758,27,13703,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(9996,1770,0,33993,1,0,0,0,0,'Emalon the Storm Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(9997,1756,0,33993,1,0,0,0,0,'Emalon the Storm Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(11918,3802,28,68206,1,0,0,0,0,'Delrissa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(12633,4416,34,43697,0,0,0,0,0,'Toothy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(12892,1695,27,24652,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712188',2,0,0,0,16),(12901,1792,34,65382,0,0,0,0,0,'Curious Wolvar Pup','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,16),(12928,4602,8,4601,0,0,0,0,0,'Been Waiting a Long Time for This','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(13027,4603,8,4621,0,0,0,0,0,'Been Waiting a Long Time for This','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,16),(518,627,43,101,1,0,0,0,0,'Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(775,700,36,28241,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(795,701,36,37864,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(933,750,43,477,1,0,0,0,0,'Lushwater Oasis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1097,771,43,878,1,0,0,0,0,'Zul\'Mashar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1212,781,43,514,1,0,0,0,0,'Mizjah Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1293,42,8,781,1,0,0,0,0,'Stranglethorn Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1339,845,43,757,1,0,0,0,0,'Warsong Lumber Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1425,851,43,642,1,0,0,0,0,'Valley of the Watchers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1441,852,43,857,1,0,0,0,0,'Lake Mennar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1500,43,8,854,1,0,0,0,0,'Un\'Goro Crater','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1524,859,43,1358,1,0,0,0,0,'Goldenbough Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1568,860,43,1379,1,0,0,0,0,'Wrathscale Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1589,861,43,1344,1,0,0,0,0,'The Bloodwash','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1639,862,43,1286,1,0,0,0,0,'The Warp Fields','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1659,863,43,1239,1,0,0,0,0,'Zabra\'jin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1700,865,43,1305,1,0,0,0,0,'Razor Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1725,866,43,1231,1,0,0,0,0,'Windyreed Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1742,867,43,1394,1,0,0,0,0,'Shadow Tomb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1776,843,43,1270,1,0,0,0,0,'Gyro-Plank Bridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1855,879,36,15292,1,0,0,0,0,'Green Kodo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(1950,912,27,8714,1,0,0,0,0,'Elder Moonstrike in Scholomance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(1962,911,27,8681,1,0,0,0,0,'Elder Thunderhorn in Un\'Goro','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(2161,965,27,12379,1,0,0,0,0,'Thousand Needles, Freewind Post','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(2276,979,36,20570,1,0,0,0,0,'Flimsy Male Orc Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(2903,621,57,15198,1,0,0,0,0,'Knight\'s Colors','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(3317,344,41,8544,1,0,0,0,0,'Mageweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(3757,1206,54,225,1,0,0,0,0,'Sheep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(3778,1244,68,175760,1,0,0,0,0,'Rise of the Blood Elves','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(3855,153,72,180656,1,0,0,0,0,'Lesser Sagefish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(3955,1283,8,644,0,0,0,0,0,'King of Dire Maul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(4153,1263,43,1518,0,0,0,0,0,'The Twisted Glade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(4176,1265,43,1528,0,0,0,0,0,'The Crystal Vice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(4304,345,41,17349,0,0,0,0,0,'Superior Healing Draught','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(4330,922,41,3827,0,0,0,0,0,'Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(4352,923,41,3828,0,0,0,0,0,'Elixir of Detect Lesser Invisibility','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(4423,811,41,40082,0,0,0,0,0,'Flask of the Frost Wyrm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(4520,1311,0,18685,1,0,0,0,0,'Okrek','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(4556,686,36,16930,1,0,0,0,0,'Nemesis Leggings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(4576,685,36,16905,1,0,0,0,0,'Bloodfang Chestpiece','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(4589,687,36,21126,1,0,0,0,0,'Death\'s Sting','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(4612,698,36,34342,1,0,0,0,0,'Handguards of the Dawn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(4633,695,36,30987,1,0,0,0,0,'Lightbringer Faceguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(4735,812,41,22104,0,0,0,0,0,'Master Healthstone (1)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(4766,925,46,990,42000,0,0,0,0,'Exlated with the Scale of the Sands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(4784,927,49,13,1,0,0,0,0,'Trinket is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(4803,697,36,30990,1,0,0,0,0,'Lightbringer Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(4833,696,36,30164,1,0,0,0,0,'Cataclysm Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(4863,694,36,30171,1,0,0,0,0,'Cataclysm Headpiece','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(4890,693,36,29038,1,0,0,0,0,'Cyclone Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(4922,692,36,29036,1,0,0,0,0,'Cyclone Legguards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(5069,1307,27,9010,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(5095,284,36,20570,1,0,0,0,0,'Flimsy Male Orc Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(5159,1396,27,13031,1,0,0,0,0,'Elder Skywarden in Agmar\'s Hammer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(5468,1467,0,26532,1,0,0,0,0,'Chrono-Lord Epoch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(5916,1676,11,3433,700,0,0,0,0,'Ghostlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,17),(5968,1677,11,3433,550,0,0,0,0,'Ghostlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,17),(6020,1678,11,215,700,0,0,0,0,'Mulgore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,17),(6115,1680,11,215,685,0,0,0,0,'Mulgore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,17),(6503,1777,29,45564,1,0,0,0,0,'Smoked Salmon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(6777,1800,29,33289,1,0,0,0,0,'Talbuk Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(7457,2094,42,43718,1,0,0,0,0,'Private Marcus Jonathan\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(7588,2136,8,2153,0,0,0,0,0,'A Void Dance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(7620,2137,8,2184,0,0,0,0,0,'Just Can\'t Get Enough','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(7621,2138,8,2185,0,0,0,0,0,'Just Can\'t Get Enough (25 player)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(7796,322,20,27656,0,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(7827,323,20,31125,0,0,0,0,0,'Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(7835,324,20,16011,0,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(8116,2256,0,32471,1,0,0,0,0,'Griegen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(8701,347,41,20389,0,0,0,0,0,'Candy Corn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(8745,1756,0,31125,1,0,0,0,0,'Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(8746,1770,28,59450,1,0,0,0,0,'The Four Horsemen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(8996,346,41,22778,0,0,0,0,0,'Scourgebane Infusion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(9373,2556,0,32428,1,0,0,0,0,'Underbelly Rat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(9742,2758,27,13688,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(11919,3802,28,68206,1,0,0,0,0,'M\'uru','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(12634,4416,34,43698,0,0,0,0,0,'Muckbreath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,17),(13028,4603,8,4622,0,0,0,0,0,'Neck-Deep in Vile','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,17),(519,627,43,1041,1,0,0,0,0,'Gates of Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(776,700,36,28242,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(796,701,36,30350,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(934,750,43,478,1,0,0,0,0,'Agama\'gor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1098,771,43,877,1,0,0,0,0,'Northpass Tower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1213,781,43,516,1,0,0,0,0,'Mosh\'Ogg Ogre Mound','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1294,42,8,782,1,0,0,0,0,'Swamp of Sorrows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1340,845,43,758,1,0,0,0,0,'Felfire Hill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1426,851,43,641,1,0,0,0,0,'Thistleshrub Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1442,852,43,858,1,0,0,0,0,'The Ruined Reaches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1501,43,8,855,1,0,0,0,0,'Moonglade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1525,859,43,1359,1,0,0,0,0,'Lake Elrendar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1590,861,43,1345,1,0,0,0,0,'The Crimson Reach','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1641,862,43,1283,1,0,0,0,0,'Forge Camp: Mageddon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1667,863,43,1432,1,0,0,0,0,'Darkcrest Shore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1701,865,43,1307,1,0,0,0,0,'Ruuan Weald','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1726,866,43,1232,1,0,0,0,0,'Windyreed Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1743,867,43,1395,1,0,0,0,0,'Derelict Caravan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1777,843,43,1317,1,0,0,0,0,'Eco-Dome Farfield','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(1963,911,27,8726,1,0,0,0,0,'Elder Brightspear in Winterspring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(2277,979,36,20572,1,0,0,0,0,'Flimsy Male Tauren Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(2904,621,57,31774,1,0,0,0,0,'Kurenai Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(3318,344,41,21990,1,0,0,0,0,'Netherweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(3758,1206,54,225,1,0,0,0,0,'Skunk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(3779,1244,68,175742,1,0,0,0,0,'Rise of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(3858,153,72,180663,1,0,0,0,0,'Sagefish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(3956,1283,8,645,0,0,0,0,0,'Scholomance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(4154,1263,43,1520,0,0,0,0,0,'Utgarde Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(4177,1265,43,1529,0,0,0,0,0,'Scarlet Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(4305,345,41,3928,0,0,0,0,0,'Superior Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(4331,922,41,2455,0,0,0,0,0,'Minor Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(4353,923,41,9154,0,0,0,0,0,'Elixir of Detect Undead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(4424,811,41,13510,0,0,0,0,0,'Flask of the Titans','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(4521,1311,0,18693,1,0,0,0,0,'Speaker Mar\'grom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(4557,686,36,16915,1,0,0,0,0,'Netherwind Pants','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(4577,685,36,16950,1,0,0,0,0,'Breastplate of Ten Storms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(4590,687,36,21581,1,0,0,0,0,'Gauntlets of Annihilation','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(4613,698,36,34243,1,0,0,0,0,'Helm of Burning Righteousness','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(4634,695,36,30988,1,0,0,0,0,'Lightbringer Greathelm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(4736,812,41,22105,0,0,0,0,0,'Master Healthstone (2)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(4767,925,46,967,42000,0,0,0,0,'Exlated with the Violet Eye','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(4785,927,49,5,1,0,0,0,0,'Belt is Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(4804,697,36,30991,1,0,0,0,0,'Lightbringer Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(4834,696,36,30169,1,0,0,0,0,'Cataclysm Chestpiece','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(4864,694,36,30190,1,0,0,0,0,'Cataclysm Helm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(4891,693,36,29033,1,0,0,0,0,'Cyclone Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(4923,692,36,29042,1,0,0,0,0,'Cyclone War-Kilt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(5070,1307,27,9011,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(5096,284,36,20572,1,0,0,0,0,'Flimsy Male Tauren Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(5160,1396,27,13032,1,0,0,0,0,'Elder Muraco in Camp Tunka\'lo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(5464,1467,0,26861,1,0,0,0,0,'King Ymiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(5917,1676,11,721,700,0,0,0,0,'Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,18),(5969,1677,11,721,550,0,0,0,0,'Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,18),(6021,1678,11,2159,700,0,0,0,0,'Onyxia\'s Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,18),(6116,1680,11,2159,685,0,0,0,0,'Onyxia\'s Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,18),(6200,879,34,18991,0,0,0,0,0,'Green Kodo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(6505,1777,29,58512,1,0,0,0,0,'Tasty Cupcake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(6778,1800,29,33288,1,0,0,0,0,'Warp Burger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(7458,2094,42,43719,1,0,0,0,0,'Salandria\'s Shiny Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(7512,2136,8,1864,0,0,0,0,0,'What the Eck?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(7795,322,20,27447,0,0,0,0,0,'Varos Cloudstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(7826,323,20,28859,0,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(7834,324,20,16061,0,0,0,0,0,'Instructor Razuvious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(8117,2256,0,32475,1,0,0,0,0,'Terror Spinner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(8700,347,41,20388,0,0,0,0,0,'Lollipop','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(8744,1770,0,31125,1,0,0,0,0,'Archavon the Stone Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(8747,1756,28,59450,1,0,0,0,0,'The Four Horsemen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(9021,346,41,37905,0,0,0,0,0,'Draenic Pale Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(9374,2556,0,28202,1,0,0,0,0,'Zul\'Drak Rat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(9743,2758,27,13704,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(11920,3802,28,68206,1,0,0,0,0,'Ingvar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,18),(12636,4416,34,46425,0,0,0,0,0,'Snarly','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,18),(777,700,36,28240,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(797,701,36,30348,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(935,750,43,479,1,0,0,0,0,'Bramblescar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1099,771,43,876,1,0,0,0,0,'Quel\'Lithien Lodge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1214,781,43,517,1,0,0,0,0,'Venture Co. Base Camp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1295,42,8,773,1,0,0,0,0,'The Hinterlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1427,851,43,660,1,0,0,0,0,'Zul\'Farrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1443,852,43,859,1,0,0,0,0,'Forlorn Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1502,43,8,856,1,0,0,0,0,'Silithus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1526,859,43,1360,1,0,0,0,0,'Runestone Falithas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1702,865,43,1308,1,0,0,0,0,'Skald','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1727,866,43,1233,1,0,0,0,0,'Zangar Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1745,867,43,1397,1,0,0,0,0,'Veil Rhaze','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1778,843,43,1318,1,0,0,0,0,'Ethereum Staging Grounds','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(1856,879,36,15293,1,0,0,0,0,'Teal Kodo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(1964,911,27,8672,1,0,0,0,0,'Elder Stonespire in Everlook','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(2104,861,43,1346,1,0,0,0,0,'The Cryo-Core','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(2278,979,36,20568,1,0,0,0,0,'Flimsy Male Troll Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(2905,621,57,31778,1,0,0,0,0,'Lower City Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(3319,344,41,14529,1,0,0,0,0,'Runecloth Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(3759,1206,54,225,1,0,0,0,0,'Swine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(3780,1244,68,175724,1,0,0,0,0,'Sargeras and the Betrayal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(3861,153,72,180684,1,0,0,0,0,'Greater Sagefish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(3957,1283,8,646,0,0,0,0,0,'Stratholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(4155,1263,43,1522,0,0,0,0,0,'Westguard Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(4306,345,41,28100,0,0,0,0,0,'Volatile Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(4332,922,41,32762,0,0,0,0,0,'Rulkster\'s Brain Juice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(4354,923,41,32067,0,0,0,0,0,'Elixir of Draenic Wisdom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(4425,811,41,35717,0,0,0,0,0,'Shattrath Flask of Blinding Light','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(4522,1311,0,18683,1,0,0,0,0,'Voidhunter Yar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(4558,686,36,16901,1,0,0,0,0,'Stormrage Legguards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(4578,685,36,16966,1,0,0,0,0,'Breastplate of Wrath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(4591,687,36,21582,1,0,0,0,0,'Grasp of the Old God','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(4614,698,36,34336,1,0,0,0,0,'Sunflare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(4635,695,36,30989,1,0,0,0,0,'Lightbringer War-Helm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(4786,927,49,8,1,0,0,0,0,'Bracers are Epic!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(4805,697,36,30992,1,0,0,0,0,'Lightbringer Chestpiece','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(4835,696,36,30129,1,0,0,0,0,'Crystalforge Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(4865,694,36,30125,1,0,0,0,0,'Crystalforge Faceguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(4892,693,36,29029,1,0,0,0,0,'Cyclone Hauberk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(4924,692,36,29074,1,0,0,0,0,'Justicar Greaves','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(5071,1307,27,9012,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(5097,284,36,20568,1,0,0,0,0,'Flimsy Male Troll Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(5453,1467,0,27977,1,0,0,0,0,'Krystallus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(6022,1678,11,1637,700,0,0,0,0,'Ogrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,19),(6117,1680,11,1637,685,0,0,0,0,'Ogrimmar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,19),(6506,1777,29,45551,1,0,0,0,0,'Worm Delight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(6779,1800,29,38868,1,0,0,0,0,'Crunchy Serpent','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(7459,2094,42,43720,1,0,0,0,0,'Squire Rowe\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(7584,2136,8,2152,0,0,0,0,0,'Share The Love','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(7792,322,20,27655,0,0,0,0,0,'Mage-Lord Urom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(7825,323,20,28860,0,0,0,0,0,'Sartharion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(7833,324,20,15936,0,0,0,0,0,'Heigan the Unclean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(8118,2256,0,32481,1,0,0,0,0,'Aotona','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(8690,347,41,19062,0,0,0,0,0,'Warsong Gulch Field Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(8742,1770,0,15956,1,0,0,0,0,'Anub\'Rekhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(8743,1756,0,15956,1,0,0,0,0,'Anub\'Rekhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(9020,346,41,37494,0,0,0,0,0,'Stranglethorn Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(9039,812,41,36890,0,0,0,0,0,'Demonic Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(9424,1676,11,133,700,0,0,0,0,'Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,19),(9425,1677,11,133,550,0,0,0,0,'Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,19),(9738,2758,27,13684,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,19),(11921,3802,28,68206,1,0,0,0,0,'Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,19),(778,700,36,28243,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(798,701,36,28238,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(936,750,43,480,1,0,0,0,0,'Camp Taurajo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(1100,771,43,875,1,0,0,0,0,'Terrordale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(1215,781,43,518,1,0,0,0,0,'Lake Nazferiti','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(1297,42,8,802,1,0,0,0,0,'Westfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(1428,851,43,657,1,0,0,0,0,'Caverns of Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(1503,43,8,857,1,0,0,0,0,'Winterspring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(1527,859,43,1361,1,0,0,0,0,'Runestone Shan\'dor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(1591,861,43,1347,1,0,0,0,0,'The Foul Pool','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(1703,865,43,1309,1,0,0,0,0,'Sylvanaar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(1746,867,43,1398,1,0,0,0,0,'Writhing Mound','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(1779,843,43,1319,1,0,0,0,0,'Socrethar\'s Seat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(1965,911,27,8654,1,0,0,0,0,'Elder Primestone in Silithus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(2279,979,36,20573,1,0,0,0,0,'Flimsy Male Undead Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(2906,621,57,31773,1,0,0,0,0,'Mag\'har Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(3320,344,41,6450,1,0,0,0,0,'Silk Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(3760,1206,54,225,1,0,0,0,0,'Toad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(3781,1244,68,175757,1,0,0,0,0,'Sunwell - The Fall of Quel\'Thalas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(3864,153,72,180712,1,0,0,0,0,'Stonescale Eel Swarm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(4157,1263,43,1526,0,0,0,0,0,'Baelgun\'s Excavation Site','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(4307,345,41,9144,0,0,0,0,0,'Wildvine Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(4333,922,41,13443,0,0,0,0,0,'Superior Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(4355,923,41,9197,0,0,0,0,0,'Elixir of Dream Vision','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(4426,811,41,32898,0,0,0,0,0,'Shattrath Flask of Fortification','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(4523,1311,0,18679,1,0,0,0,0,'Vorakem Doomspeaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(4559,686,36,17106,1,0,0,0,0,'Malistar\'s Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(4579,685,36,16942,1,0,0,0,0,'Dragonstalker\'s Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(4592,687,36,21596,1,0,0,0,0,'Ring of the Godslayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(4615,698,36,34242,1,0,0,0,0,'Tattered Cape of Antonidas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(4636,695,36,31003,1,0,0,0,0,'Gronnstalker\'s Helmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(4806,697,36,31052,1,0,0,0,0,'Robe of the Malefic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(4836,696,36,30123,1,0,0,0,0,'Crystalforge Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(4866,694,36,30136,1,0,0,0,0,'Crystalforge Greathelm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(4893,693,36,29071,1,0,0,0,0,'Justicar Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(4925,692,36,29063,1,0,0,0,0,'Justicar Leggings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(5072,1307,27,9013,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(5098,284,36,20573,1,0,0,0,0,'Flimsy Male Undead Mask','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(5449,1467,0,29305,1,0,0,0,0,'Moorabi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(5918,1676,11,267,700,0,0,0,0,'Hillsbrad Foothills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,20),(5970,1677,11,267,550,0,0,0,0,'Hillsbrad Foothills','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,20),(6023,1678,11,2437,700,0,0,0,0,'Ragefire Chasm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,20),(6118,1680,11,2437,685,0,0,0,0,'Ragefire Chasm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,20),(6201,879,34,18992,0,0,0,0,0,'Teal Kodo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(6398,1756,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(6417,1770,0,28860,1,0,0,0,0,'Sartharion the Onyx Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(6507,1777,29,45554,1,0,0,0,0,'Great Feast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(6780,1800,29,38867,1,0,0,0,0,'Mok\'Nathal Shortribs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(7460,2094,42,43721,1,0,0,0,0,'Stalvan\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(7513,2136,8,2040,0,0,0,0,0,'Less-rabi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(7791,322,20,27654,0,0,0,0,0,'Drakos the Interrogator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(7814,323,20,16011,0,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(7831,324,20,15953,0,0,0,0,0,'Grand Widow Faerlina','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(8119,2256,0,32485,1,0,0,0,0,'King Krush','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(8689,347,41,19061,0,0,0,0,0,'Warsong Gulch Iron Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(9019,346,41,36748,0,0,0,0,0,'Dark Brewmaiden\'s Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(9038,812,41,36889,0,0,0,0,0,'Demonic Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(9739,2758,27,13593,1,0,0,0,0,'','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,20),(11922,3802,28,68206,1,0,0,0,0,'Eck','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,20),(937,750,43,481,1,0,0,0,0,'Field of Giants','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(1101,771,43,874,1,0,0,0,0,'Plaguewood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(1216,781,43,519,1,0,0,0,0,'Kal\'ai Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(1298,42,8,841,1,0,0,0,0,'Wetlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(1528,859,43,1362,1,0,0,0,0,'Saltheril\'s Haven','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(1592,861,43,1348,1,0,0,0,0,'The Hidden Reef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(1704,865,43,1310,1,0,0,0,0,'Crystal Spine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(1747,867,43,1170,1,0,0,0,0,'Skettis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(1780,843,43,1326,1,0,0,0,0,'Forge Base: Oblivion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(1857,879,36,13328,1,0,0,0,0,'Black Ram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(1966,911,27,8719,1,0,0,0,0,'Elder Bladesing in Cenarion Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(2907,621,57,32828,1,0,0,0,0,'Ogri\'la Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(3321,344,41,38643,1,0,0,0,0,'Thick Frostweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(3761,1206,54,225,1,0,0,0,0,'Prairie Dog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(3782,1244,68,175746,1,0,0,0,0,'The Alliance of Lordaeron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(4158,1263,43,1527,0,0,0,0,0,'Baleheim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(4309,345,41,33092,0,0,0,0,0,'Healing Potion Injector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(4334,922,41,22850,0,0,0,0,0,'Super Rejuvenation Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(4356,923,41,22848,0,0,0,0,0,'Elixir of Empowerment','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(4427,811,41,32899,0,0,0,0,0,'Shattrath Flask of Mighty Restoration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(4560,686,36,17063,1,0,0,0,0,'Band of Accuria','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(4580,685,36,16958,1,0,0,0,0,'Judgement Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(4593,687,36,21839,1,0,0,0,0,'Scepter of the False Prophet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(4616,698,36,34343,1,0,0,0,0,'Thalassian Ranger Gauntlets','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(4637,695,36,30972,1,0,0,0,0,'Onslaught Battle-Helm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(4807,697,36,31065,1,0,0,0,0,'Shroud of Absolution','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(4837,696,36,30134,1,0,0,0,0,'Crystalforge Chestpiece','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(4867,694,36,30131,1,0,0,0,0,'Crystalforge War-Helm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(4894,693,36,29066,1,0,0,0,0,'Justicar Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(4926,692,36,29069,1,0,0,0,0,'Justicar Legguards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(5073,1307,27,9014,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(5278,153,72,192051,1,0,0,0,0,'Borean Man O\' War School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(5444,1467,0,26631,1,0,0,0,0,'Novos the Summoner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(5919,1676,11,1537,700,0,0,0,0,'Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,21),(5971,1677,11,1537,550,0,0,0,0,'Ironforge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,21),(6024,1678,11,722,700,0,0,0,0,'Razorfen Downs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,21),(6119,1680,11,722,685,0,0,0,0,'Razorfen Downs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,21),(6399,1756,0,28859,1,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(6418,1770,0,28859,1,0,0,0,0,'Malygos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(6508,1777,29,53056,1,0,0,0,0,'Kungaloosh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(6781,1800,29,42302,1,0,0,0,0,'Fisherman\'s Feast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(7461,2094,42,43722,1,0,0,0,0,'Vareesa\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(7514,2136,8,2058,0,0,0,0,0,'Snakes. Why\'d It Have To Be Snakes?','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(7790,322,20,28923,0,0,0,0,0,'Loken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(7812,323,20,15936,0,0,0,0,0,'Heigan the Unclean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(7829,324,20,15932,0,0,0,0,0,'Gluth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(7869,700,36,42122,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(7870,701,36,42123,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(8120,2256,0,32630,1,0,0,0,0,'Vyragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(8688,347,41,19060,0,0,0,0,0,'Warsong Gulch Enriched Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(9018,346,41,34412,0,0,0,0,0,'Sparkling Apple Cider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,21),(9040,812,41,36891,0,0,0,0,0,'Demonic Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(11923,3802,28,68206,1,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,21),(938,750,43,482,1,0,0,0,0,'Blackthorn Ridge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(1102,771,43,873,1,0,0,0,0,'Stratholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(1217,781,43,520,1,0,0,0,0,'Bal\'lal Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(1282,42,8,777,1,0,0,0,0,'Deadwind Pass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(1529,859,43,1380,1,0,0,0,0,'Golden Strand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(1593,861,43,1349,1,0,0,0,0,'The Lost Fold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(1705,865,43,1311,1,0,0,0,0,'Thunderlord Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(1781,843,43,1327,1,0,0,0,0,'Eco-Dome Midrealm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(2908,621,57,15196,1,0,0,0,0,'Private\'s Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(3322,344,41,19067,1,0,0,0,0,'Warsong Gulch Mageweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(3783,1244,68,175750,1,0,0,0,0,'The Battle of Grim Batol','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(4318,345,41,12190,0,0,0,0,0,'Dreamless Sleep Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(4335,922,41,28101,0,0,0,0,0,'Unstable Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(4357,923,41,6373,0,0,0,0,0,'Elixir of Firepower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(4428,811,41,35716,0,0,0,0,0,'Shattrath Flask of Pure Death','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(4561,686,36,17102,1,0,0,0,0,'Cloak of the Shrouded Mists','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(4581,685,36,16897,1,0,0,0,0,'Stormrage Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(4594,687,36,21579,1,0,0,0,0,'Vanquished Tentacle of C\'Thun','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(4617,698,36,34334,1,0,0,0,0,'Thori\'dal, the Stars\' Fury','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(4638,695,36,30974,1,0,0,0,0,'Onslaught Greathelm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(4808,697,36,31066,1,0,0,0,0,'Vestments of Absolution','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(4838,696,36,30144,1,0,0,0,0,'Deathmantle Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(4868,694,36,30146,1,0,0,0,0,'Deathmantle Helm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(4895,693,36,29062,1,0,0,0,0,'Justicar Chestpiece','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(4927,692,36,29046,1,0,0,0,0,'Netherblade Breeches','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(5074,1307,27,10498,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(5276,153,72,192056,1,0,0,0,0,'Barrelhead Goby School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(5440,1467,0,29309,1,0,0,0,0,'Elder Nadox','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(5920,1676,11,4080,700,0,0,0,0,'Isle of Quel\'Danas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,22),(5972,1677,11,4080,550,0,0,0,0,'Isle of Quel\'Danas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,22),(6025,1678,11,1717,700,0,0,0,0,'Razorfen Kraul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,22),(6120,1680,11,1717,685,0,0,0,0,'Razorfen Kraul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,22),(6202,879,34,17461,0,0,0,0,0,'Black Ram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(6400,1756,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(6419,1770,0,15990,1,0,0,0,0,'Kel\'Thuzad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(6509,1777,29,57441,1,0,0,0,0,'Blackened Dragonfin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(6782,1800,29,42305,1,0,0,0,0,'Hot Buttered Trout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(7462,2094,42,43723,1,0,0,0,0,'Vargoth\'s Copper Coin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(7515,2136,8,1866,0,0,0,0,0,'Good Grief','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(7784,322,20,29306,0,0,0,0,0,'Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(8121,2256,0,32500,1,0,0,0,0,'Dirkee','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(8687,347,41,14894,0,0,0,0,0,'Lily Root','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(9017,346,41,33956,0,0,0,0,0,'Harkor\'s Home Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(9043,812,41,36894,0,0,0,0,0,'Fel Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(10999,323,20,33113,0,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(11016,324,20,33113,0,0,0,0,0,'Flame Leviathan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(11924,3802,28,68206,1,0,0,0,0,'Heigan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,22),(12638,701,36,42124,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(12639,700,36,42126,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,22),(939,750,43,483,1,0,0,0,0,'Bael Modan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(1218,781,43,521,1,0,0,0,0,'The Vile Reef','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(1296,42,8,770,1,0,0,0,0,'Western Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(1530,859,43,1381,1,0,0,0,0,'Thuron\'s Livery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(1594,861,43,1350,1,0,0,0,0,'The Vector Coil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(1706,865,43,1312,1,0,0,0,0,'Veil Lashh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(1858,879,36,13329,1,0,0,0,0,'Frost Ram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(2909,621,57,15197,1,0,0,0,0,'Scout\'s Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(3323,344,41,19066,1,0,0,0,0,'Warsong Gulch Runecloth Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(3784,1244,68,175759,1,0,0,0,0,'The Betrayer Ascendant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(4310,345,41,22829,0,0,0,0,0,'Super Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(4336,922,41,9144,0,0,0,0,0,'Wildvine Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(4358,923,41,3825,0,0,0,0,0,'Elixir of Fortitude','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(4429,811,41,32901,0,0,0,0,0,'Shattrath Flask of Relentless Assault','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(4562,686,36,17076,1,0,0,0,0,'Bonereaver\'s Edge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(4582,685,36,16931,1,0,0,0,0,'Nemesis Robes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(4595,687,36,22731,1,0,0,0,0,'Cloak of the Devoured','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(4639,695,36,31014,1,0,0,0,0,'Skyshatter Headguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(4647,698,36,34403,1,0,0,0,0,'Cover of Ursoc the Mighty','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(4809,697,36,31004,1,0,0,0,0,'Gronnstalker\'s Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(4839,696,36,30118,1,0,0,0,0,'Destroyer Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(4869,694,36,30152,1,0,0,0,0,'Cowl of the Avatar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(4896,693,36,29045,1,0,0,0,0,'Netherblade Chestpiece','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(4928,692,36,29094,1,0,0,0,0,'Britches of Malorne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(5075,1307,27,10499,1,0,0,0,0,'Saving the Best for Last','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(5279,153,72,192053,1,0,0,0,0,'Deep Sea Monsterbelly School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(5437,1467,0,28921,1,0,0,0,0,'Hadronox','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(5921,1676,11,3457,700,0,0,0,0,'Karazhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,23),(5973,1677,11,3457,550,0,0,0,0,'Karazhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,23),(6026,1678,11,3429,700,0,0,0,0,'Ruins of Ahn\'Qiraj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,23),(6121,1680,11,3429,685,0,0,0,0,'Ruins of Ahn\'Qiraj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,23),(6401,1756,0,15989,1,0,0,0,0,'Sapphiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(6420,1770,0,15989,1,0,0,0,0,'Sapphiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(6510,1777,29,57438,1,0,0,0,0,'Blackened Worg Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(6783,1800,29,43707,1,0,0,0,0,'Skullfish Soup','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(7591,2136,8,2154,0,0,0,0,0,'Brann Spankin\' New','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(7783,322,20,29307,0,0,0,0,0,'Drakkari Colossus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(8122,2256,0,32487,1,0,0,0,0,'Putridus the Ancient','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(8724,347,41,42350,0,0,0,0,0,'Bag of Peanuts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(8749,771,43,1557,1,0,0,0,0,'Ruins of the Scarlet Enclave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(9016,346,41,33236,0,0,0,0,0,'Fizzy Faire Drink \"Classic\"','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(9042,812,41,36893,0,0,0,0,0,'Fel Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(11000,323,20,33186,0,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(11017,324,20,33186,0,0,0,0,0,'Razorscale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(11925,3802,28,68206,1,0,0,0,0,'Ignis','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,23),(13370,700,36,51378,1,0,0,0,0,'Medallion of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(13371,701,36,51377,1,0,0,0,0,'Medallion of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,23),(940,750,43,484,1,0,0,0,0,'Razorfen Kraul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(1219,781,43,522,1,0,0,0,0,'Zuuldaia Ruins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(1286,42,8,771,1,0,0,0,0,'Eastern Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(1531,859,43,1382,1,0,0,0,0,'Tranquil Shore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(1595,861,43,1351,1,0,0,0,0,'The Warp Piston','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(2238,865,43,1313,1,0,0,0,0,'Veil Ruuan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(2910,621,57,31780,1,0,0,0,0,'Scryers Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(3324,344,41,19068,1,0,0,0,0,'Warsong Gulch Silk Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(3785,1244,68,175748,1,0,0,0,0,'The Birth of the Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(4319,345,41,20002,0,0,0,0,0,'Greater Dreamless Sleep Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(4359,923,41,17708,0,0,0,0,0,'Elixir of Frost Power','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(4430,811,41,32900,0,0,0,0,0,'Shattrath Flask of Supreme Power','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(4563,686,36,17104,1,0,0,0,0,'Spinal Reaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(4583,685,36,16916,1,0,0,0,0,'Netherwind Robes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(4596,687,36,22730,1,0,0,0,0,'Eyestalk Waist Cord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(4640,695,36,31012,1,0,0,0,0,'Skyshatter Helmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(4648,698,36,34400,1,0,0,0,0,'Crown of Dath\'Remar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(4810,697,36,30975,1,0,0,0,0,'Onslaught Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(4840,696,36,30113,1,0,0,0,0,'Destroyer Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(4870,694,36,30120,1,0,0,0,0,'Destroyer Battle-Helm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(4897,693,36,29096,1,0,0,0,0,'Breastplate of Malorne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(4929,692,36,29099,1,0,0,0,0,'Greaves of Malorne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(5184,922,41,33448,0,0,0,0,0,'Runic Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(5280,153,72,192048,1,0,0,0,0,'Dragonfin Angelfish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(5382,1467,0,26763,1,0,0,0,0,'Anomalus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(5922,1676,11,38,700,0,0,0,0,'Loch Modan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,24),(5974,1677,11,38,550,0,0,0,0,'Loch Modan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,24),(6028,1678,11,1377,700,0,0,0,0,'Silithus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,24),(6123,1680,11,1377,685,0,0,0,0,'Silithus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,24),(6203,879,34,17460,0,0,0,0,0,'Frost Ram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(6402,1756,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(6421,1770,0,15928,1,0,0,0,0,'Thaddius','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(6511,1777,29,57435,1,0,0,0,0,'Critter Bites','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(6784,1800,29,33296,1,0,0,0,0,'Spicy Crawdad','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(7594,2136,8,2155,0,0,0,0,0,'Abuse the Ooze','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(7782,322,20,29305,0,0,0,0,0,'Moorabi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(8723,347,41,42342,0,0,0,0,0,'Bag of Popcorn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(8740,700,36,40477,1,0,0,0,0,'Insignia of the Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(8741,701,36,40476,1,0,0,0,0,'Insignia of the Alliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(9015,346,41,33234,0,0,0,0,0,'Iced Berry Slush','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,24),(9041,812,41,36892,0,0,0,0,0,'Fel Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(11001,323,20,33118,0,0,0,0,0,'Ignis the Furnace Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(11018,324,20,33118,0,0,0,0,0,'Ignis the Furnace Master','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(11926,3802,28,68206,1,0,0,0,0,'Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,24),(941,750,43,485,1,0,0,0,0,'Razorfen Downs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(1220,781,43,523,1,0,0,0,0,'Ruins of Zul\'Kunda','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(1532,859,43,1383,1,0,0,0,0,'Zeb\'Watha','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(1596,861,43,1352,1,0,0,0,0,'Veridian Point','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(1707,865,43,1314,1,0,0,0,0,'Vekhaar Stand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(1796,42,8,868,1,0,0,0,0,'Isle of Quel\'Danas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(1859,879,36,13327,1,0,0,0,0,'Icy Blue Mechanostrider Mod A','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(2911,621,57,31781,1,0,0,0,0,'Sha\'tar Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(3325,344,41,3530,1,0,0,0,0,'Wool Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(3786,1244,68,175745,1,0,0,0,0,'The Dark Portal and the Fall of Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(4320,345,41,22836,0,0,0,0,0,'Major Dreamless Sleep Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(4360,923,41,6662,0,0,0,0,0,'Elixir of Giant Growth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(4431,811,41,32599,0,0,0,0,0,'Unstable Flask of the Bandit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(4584,685,36,16923,1,0,0,0,0,'Robes of Transcendence','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(4641,695,36,31015,1,0,0,0,0,'Skyshatter Cover','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(4649,698,36,34406,1,0,0,0,0,'Gloves of Tyri\'s Power','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(4811,697,36,30976,1,0,0,0,0,'Onslaught Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(4841,696,36,30139,1,0,0,0,0,'Rift Stalker Hauberk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(4871,694,36,30115,1,0,0,0,0,'Destroyer Greathelm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(4898,693,36,29087,1,0,0,0,0,'Chestguard of Malorne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(4930,692,36,29088,1,0,0,0,0,'Legguards of Malorne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(4941,687,36,22732,1,0,0,0,0,'Mark of C\'Thun','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(5055,686,36,17107,1,0,0,0,0,'Dragon\'s Blood Cape','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(5185,922,41,31840,0,0,0,0,0,'Major Combat Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(5281,153,72,192049,1,0,0,0,0,'Fangtooth Herring School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(5379,1467,0,24201,1,0,0,0,0,'Dalronn the Controller','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(5923,1676,11,170,700,0,0,0,0,'Lordamere Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,25),(5975,1677,11,170,550,0,0,0,0,'Lordamere Lake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,25),(6030,1678,11,377,700,0,0,0,0,'Southfury River','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,25),(6125,1680,11,377,685,0,0,0,0,'Southfury River','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,25),(6403,1756,0,16028,1,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(6422,1770,0,16028,1,0,0,0,0,'Patchwerk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(6512,1777,29,57439,1,0,0,0,0,'Cuttlesteak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(6785,1800,29,43765,1,0,0,0,0,'Spicy Hot Talbuk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(7516,2136,8,1867,0,0,0,0,0,'Timely Death','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(7781,322,20,29304,0,0,0,0,0,'Slad\'ran','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(8722,347,41,37585,0,0,0,0,0,'Chewy Fel Taffy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(9014,346,41,33036,0,0,0,0,0,'Mudder\'s Milk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,25),(9044,812,41,36889,0,0,0,0,0,'Demonic Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(11003,323,20,33293,0,0,0,0,0,'XT-002 Deconstructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(11019,324,20,33293,0,0,0,0,0,'XT-002 Deconstructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(11927,3802,28,68206,1,0,0,0,0,'Algalon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,25),(1221,781,43,501,1,0,0,0,0,'Jaguero Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(1597,861,43,1353,1,0,0,0,0,'Vindicator\'s Rest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(1708,865,43,1315,1,0,0,0,0,'Vortex Pinnacle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(2912,621,57,19506,1,0,0,0,0,'Silverwing Battle Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(3787,1244,68,175733,1,0,0,0,0,'The Founding of Quel\'Thalas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(4325,345,41,34440,0,0,0,0,0,'Mad Alchemist\'s Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(4361,923,41,9206,0,0,0,0,0,'Elixir of Giants','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(4432,811,41,32598,0,0,0,0,0,'Unstable Flask of the Beast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(4642,695,36,31027,1,0,0,0,0,'Slayer\'s Helm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(4650,698,36,34405,1,0,0,0,0,'Helm of Arcane Purity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(4812,697,36,31017,1,0,0,0,0,'Skyshatter Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(4842,696,36,30214,1,0,0,0,0,'Robe of the Corruptor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(4872,694,36,30161,1,0,0,0,0,'Hood of the Avatar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(4899,693,36,29091,1,0,0,0,0,'Chestpiece of Malorne','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(4931,692,36,29059,1,0,0,0,0,'Leggings of the Incarnate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(5056,686,36,17082,1,0,0,0,0,'Shard of the Flame','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(5282,153,72,192050,1,0,0,0,0,'Glacial Salmon School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(5450,1467,0,29307,1,0,0,0,0,'Drakkari Colossus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(5924,1676,11,4131,700,0,0,0,0,'Magister\'s Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,26),(5976,1677,11,4131,550,0,0,0,0,'Magister\'s Terrace','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,26),(6031,1678,11,406,700,0,0,0,0,'Stonetalon Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,26),(6126,1680,11,406,685,0,0,0,0,'Stonetalon Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,26),(6204,879,34,17459,0,0,0,0,0,'Icy Blue Mechanostrider Mod A','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(6404,1756,0,15954,1,0,0,0,0,'Noth the Plaguebringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(6423,1770,0,15954,1,0,0,0,0,'Noth the Plaguebringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(6513,1777,29,57442,1,0,0,0,0,'Dragonfin Filet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(6786,1800,29,42296,1,0,0,0,0,'Stewed Trout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(7517,2136,8,1834,0,0,0,0,0,'Lightning Struck','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(7780,322,20,27483,0,0,0,0,0,'King Dred','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(7902,344,41,20237,1,0,0,0,0,'Highlander\'s Mageweave Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(7906,922,41,43530,1,0,0,0,0,'Argent Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(8721,347,41,37584,0,0,0,0,0,'Soothing Spearmint Candy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(8894,687,36,21331,1,0,0,0,0,'Conqueror\'s Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(9013,346,41,32424,0,0,0,0,0,'Blade\'s Edge Ogre Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,26),(9047,812,41,36892,0,0,0,0,0,'Fel Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(11004,323,20,32867,0,0,0,0,0,'Steelbreaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(11020,324,20,32867,0,0,0,0,0,'Steelbreaker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,26),(1222,781,43,527,1,0,0,0,0,'Zul\'Gurub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(1598,861,43,1354,1,0,0,0,0,'Wrathscale Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(1860,879,36,13326,1,0,0,0,0,'White Mechanostrider Mod B','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(2913,621,57,32445,1,0,0,0,0,'Skyguard Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(3788,1244,68,175735,1,0,0,0,0,'The Guardians of Tirisfal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(4362,923,41,9187,0,0,0,0,0,'Elixir of Greater Agility','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(4433,811,41,32596,0,0,0,0,0,'Unstable Flask of the Elder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(4643,695,36,31056,1,0,0,0,0,'Cowl of the Tempest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(4651,698,36,34401,1,0,0,0,0,'Helm of Uther\'s Resolve','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(4813,697,36,31016,1,0,0,0,0,'Skyshatter Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(4843,696,36,30196,1,0,0,0,0,'Robes of Tirisfal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(4873,694,36,30212,1,0,0,0,0,'Hood of the Corruptor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(4900,693,36,29050,1,0,0,0,0,'Robes of the Incarnate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(4932,692,36,29053,1,0,0,0,0,'Trousers of the Incarnate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(5283,153,72,192059,1,0,0,0,0,'Glassfin Minnow School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(5457,1467,0,28587,1,0,0,0,0,'Volkhan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(5925,1676,11,2717,700,0,0,0,0,'Molten Core','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,27),(5977,1677,11,2717,550,0,0,0,0,'Molten Core','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,27),(6032,1678,11,440,700,0,0,0,0,'Tanaris','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,27),(6127,1680,11,440,685,0,0,0,0,'Tanaris','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,27),(6405,1756,0,15952,1,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(6424,1770,0,15952,1,0,0,0,0,'Maexxna','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(6514,1777,29,45568,1,0,0,0,0,'Firecracker Salmon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(7518,2136,8,2042,0,0,0,0,0,'Shatter Resistant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(7779,322,20,26631,0,0,0,0,0,'Novos the Summoner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(7903,344,41,20243,1,0,0,0,0,'Highlander\'s Runecloth Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(7907,922,41,43570,1,0,0,0,0,'Endless Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(7910,345,41,43569,1,0,0,0,0,'Endless Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(8720,347,41,37583,0,0,0,0,0,'G.N.E.R.D.S.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(8893,686,36,19017,1,0,0,0,0,'Essence of the Firelord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(8895,687,36,21389,1,0,0,0,0,'Avenger\'s Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(9031,346,41,43696,0,0,0,0,0,'Half Empty Bottle of Prison Moonshine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,27),(9048,812,41,36893,0,0,0,0,0,'Fel Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(11005,323,20,32927,0,0,0,0,0,'Runemaster Molgeim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(11021,324,20,32927,0,0,0,0,0,'Runemaster Molgeim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,27),(1599,861,43,1355,1,0,0,0,0,'Wyrmscar Island','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(2914,621,57,31775,1,0,0,0,0,'Sporeggar Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(3789,1244,68,175747,1,0,0,0,0,'The Invasion of Draenor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(4363,923,41,8951,0,0,0,0,0,'Elixir of Greater Defense','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(4434,811,41,32600,0,0,0,0,0,'Unstable Flask of the Physician','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(4644,695,36,31039,1,0,0,0,0,'Thunderheart Cover','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(4652,698,36,34404,1,0,0,0,0,'Mask of the Fury Hunter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(4814,697,36,31018,1,0,0,0,0,'Skyshatter Tunic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(4844,696,36,30159,1,0,0,0,0,'Shroud of the Avatar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(4874,694,36,30141,1,0,0,0,0,'Rift Stalker Helm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(4901,693,36,29056,1,0,0,0,0,'Shroud of the Incarnate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(4933,692,36,29022,1,0,0,0,0,'Warbringer Greaves','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(5284,153,72,192052,1,0,0,0,0,'Imperial Manta Ray School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(5445,1467,0,27483,1,0,0,0,0,'King Dred','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(5926,1676,11,2159,700,0,0,0,0,'Onyxia\'s Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,28),(5979,1677,11,4298,550,0,0,0,0,'Plaguelands: The Scarlet Enclave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,28),(6033,1678,11,141,700,0,0,0,0,'Teldrassil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,28),(6128,1680,11,141,685,0,0,0,0,'Teldrassil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,28),(6205,879,34,15779,0,0,0,0,0,'White Mechanostrider Mod B','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(6406,1756,0,15931,1,0,0,0,0,'Grobbulus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(6425,1770,0,15931,1,0,0,0,0,'Grobbulus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(6515,1777,29,57423,1,0,0,0,0,'Fish Feast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(7364,686,36,21110,1,0,0,0,0,'Draconic for Dummies','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(7519,2136,8,1817,0,0,0,0,0,'The Culling of Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(7778,322,20,26630,0,0,0,0,0,'Trollgore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(7901,344,41,20244,1,0,0,0,0,'Highlander\'s Silk Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(7905,922,41,18841,1,0,0,0,0,'Combat Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(7911,345,41,39327,1,0,0,0,0,'Noth\'s Special Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(8719,347,41,37582,0,0,0,0,0,'Pyroblast Cinnamon Ball','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(8896,687,36,21364,1,0,0,0,0,'Deathdealer\'s Vest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(9030,346,41,43695,0,0,0,0,0,'Half Full Bottle of Prison Moonshine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,28),(9046,812,41,36891,0,0,0,0,0,'Demonic Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(11006,323,20,32857,0,0,0,0,0,'Stormcaller Brundir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(11022,324,20,32857,0,0,0,0,0,'Stormcaller Brundir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,28),(2915,621,57,15199,1,0,0,0,0,'Stone Guard\'s Herald','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(3790,1244,68,21583,1,0,0,0,0,'The Kaldorei and the Well of Eternity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(4364,923,41,21546,0,0,0,0,0,'Elixir of Greater Firepower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(4645,695,36,31040,1,0,0,0,0,'Thunderheart Headguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(4653,698,36,34402,1,0,0,0,0,'Shroud of Chieftain Ner\'zhul','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(4815,697,36,31057,1,0,0,0,0,'Robes of the Tempest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(4845,696,36,30150,1,0,0,0,0,'Vestments of the Avatar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(4875,694,36,30228,1,0,0,0,0,'Nordrassil Headdress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(4902,693,36,29019,1,0,0,0,0,'Warbringer Breastplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(4934,692,36,29015,1,0,0,0,0,'Warbringer Legguards','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(5186,922,41,31855,0,0,0,0,0,'Major Combat Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(5285,153,72,192054,1,0,0,0,0,'Moonglow Cuttlefish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(5465,1467,0,26668,1,0,0,0,0,'Svala Sorrowgrave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(5927,1676,11,4298,700,0,0,0,0,'Plaguelands: The Scarlet Enclave','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,29),(5978,1677,11,2159,550,0,0,0,0,'Onyxia\'s Lair','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,29),(6034,1678,11,17,700,0,0,0,0,'The Barrens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,29),(6129,1680,11,17,685,0,0,0,0,'The Barrens','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,29),(6407,1756,0,15936,1,0,0,0,0,'Heigan the Unclean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(6426,1770,0,15936,1,0,0,0,0,'Heigan the Unclean','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(6516,1777,29,58527,1,0,0,0,0,'Gigantic Feast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(7520,2136,8,1872,0,0,0,0,0,'Zombiefest!','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(7777,322,20,29310,0,0,0,0,0,'Jedoga Shadowseeker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(7900,344,41,3531,1,0,0,0,0,'Heavy Wool Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(7908,345,41,18839,1,0,0,0,0,'Combat Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(8718,347,41,33226,0,0,0,0,0,'Tricky Treat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(8897,687,36,21334,1,0,0,0,0,'Doomcaller\'s Robes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(9029,346,41,42381,0,0,0,0,0,'Anguish Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,29),(9045,812,41,36890,0,0,0,0,0,'Demonic Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(11007,323,20,32930,0,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(11023,324,20,32930,0,0,0,0,0,'Kologarn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(13252,811,41,46376,0,0,0,0,0,'Flask of the Frost Wyrm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,29),(2916,621,57,19032,1,0,0,0,0,'Stormpike Battle Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,30),(3791,1244,68,175740,1,0,0,0,0,'The Last Guardian','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(4365,923,41,9179,0,0,0,0,0,'Elixir of Greater Intellect','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(4646,695,36,31037,1,0,0,0,0,'Thunderheart Helmet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,30),(4816,697,36,31028,1,0,0,0,0,'Slayer\'s Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,30),(4846,696,36,30216,1,0,0,0,0,'Nordrassil Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,30),(4876,694,36,30219,1,0,0,0,0,'Nordrassil Headguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,30),(4903,693,36,29012,1,0,0,0,0,'Warbringer Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,30),(4935,692,36,29083,1,0,0,0,0,'Demon Stalker Greaves','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,30),(5187,922,41,31854,0,0,0,0,0,'Major Combat Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(5286,153,72,192046,1,0,0,0,0,'Musselback Sculpin School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,30),(5461,1467,0,27447,1,0,0,0,0,'Varos Cloudstrider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(5928,1676,11,2037,700,0,0,0,0,'Quel\'thalas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,30),(5980,1677,11,2037,550,0,0,0,0,'Quel\'thalas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,30),(6035,1678,11,400,700,0,0,0,0,'Thousand Needles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,30),(6130,1680,11,400,685,0,0,0,0,'Thousand Needles','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,30),(6409,1756,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(6428,1770,0,16011,1,0,0,0,0,'Loatheb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(6517,1777,29,57436,1,0,0,0,0,'Hearty Rhino','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(7521,2136,8,2043,0,0,0,0,0,'The Incredible Hulk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(7776,322,20,29309,0,0,0,0,0,'Elder Nadox','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(7904,344,41,16991,1,0,0,0,0,'Triage Bandage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(7909,345,41,43531,1,0,0,0,0,'Argent Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(8717,347,41,33218,0,0,0,0,0,'Goblin Gumbo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,30),(8898,687,36,21343,1,0,0,0,0,'Enigma Robes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,30),(9028,346,41,39738,0,0,0,0,0,'Thunderbrew\'s Hard Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,30),(9049,812,41,36894,0,0,0,0,0,'Fel Healthstone','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(11002,323,20,33515,0,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(11024,324,20,33515,0,0,0,0,0,'Auriaya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(13251,811,41,47499,0,0,0,0,0,'Flask of the North','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,30),(2917,621,57,38312,1,0,0,0,0,'Tabard of Brilliance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,31),(3792,1244,68,175762,1,0,0,0,0,'The Lich King Triumphant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(4366,923,41,18294,0,0,0,0,0,'Elixir of Greater Water Breathing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(4435,811,41,32597,0,0,0,0,0,'Unstable Flask of the Soldier','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(4817,697,36,31042,1,0,0,0,0,'Thunderheart Chestguard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,31),(4847,696,36,30231,1,0,0,0,0,'Nordrassil Chestpiece','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,31),(4877,694,36,30233,1,0,0,0,0,'Nordrassil Headpiece','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,31),(4904,693,36,29082,1,0,0,0,0,'Demon Stalker Harness','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,31),(4936,692,36,29078,1,0,0,0,0,'Legwraps of the Aldor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,31),(5178,345,41,31839,0,0,0,0,0,'Major Combat Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(5188,922,41,31841,0,0,0,0,0,'Major Combat Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(5287,153,72,192057,1,0,0,0,0,'Nettlefish School','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,31),(5454,1467,0,27978,1,0,0,0,0,'Sjonnir the Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(5929,1676,11,44,700,0,0,0,0,'Redridge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,31),(5981,1677,11,44,550,0,0,0,0,'Redridge Mountains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,31),(6036,1678,11,1638,700,0,0,0,0,'Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,31),(6131,1680,11,1638,685,0,0,0,0,'Thunder Bluff','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,31),(6410,1756,0,16061,1,0,0,0,0,'Instructor Razuvious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(6429,1770,0,16061,1,0,0,0,0,'Instructor Razuvious','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(6518,1777,29,45570,1,0,0,0,0,'Imperial Manta Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(7522,2136,8,1873,0,0,0,0,0,'Lodi Dodi We Loves the Skadi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(7775,322,20,29308,0,0,0,0,0,'Prince Taldaram','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(8716,347,41,24540,0,0,0,0,0,'Edible Fern','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,31),(8899,687,36,21357,1,0,0,0,0,'Genesis Vest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,31),(9027,346,41,38320,0,0,0,0,0,'Dire Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,31),(11008,323,20,33411,0,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(11025,324,20,33411,0,0,0,0,0,'Hodir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,31),(2918,621,57,23705,1,0,0,0,0,'Tabard of Flame','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,32),(3793,1244,68,175752,1,0,0,0,0,'The New Horde','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(4367,923,41,22825,0,0,0,0,0,'Elixir of Healing Power','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(4436,811,41,32601,0,0,0,0,0,'Unstable Flask of the Sorcerer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(4818,697,36,31041,1,0,0,0,0,'Thunderheart Tunic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,32),(4848,696,36,30222,1,0,0,0,0,'Nordrassil Chestplate','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,32),(4878,694,36,30206,1,0,0,0,0,'Cowl of Tirisfal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,32),(4905,693,36,29077,1,0,0,0,0,'Vestments of the Aldor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,32),(4937,692,36,28966,1,0,0,0,0,'Voidheart Leggings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,32),(5179,345,41,31838,0,0,0,0,0,'Major Combat Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(5189,922,41,40067,0,0,0,0,0,'Icy Mana Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(5441,1467,0,29310,1,0,0,0,0,'Jedoga Shadowseeker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(5930,1676,11,796,700,0,0,0,0,'Scarlet Monastery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,32),(5982,1677,11,796,550,0,0,0,0,'Scarlet Monastery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,32),(6037,1678,11,490,700,0,0,0,0,'Un\'Goro Crater','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,32),(6132,1680,11,490,685,0,0,0,0,'Un\'Goro Crater','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,32),(6411,1756,0,15953,1,0,0,0,0,'Grand Widow Faerlina','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(6430,1770,0,15953,1,0,0,0,0,'Grand Widow Faerlina','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(6587,1777,29,45555,1,0,0,0,0,'Mega Mammoth Meal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(7596,2136,8,2156,0,0,0,0,0,'My Girl Loves to Skadi All the Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(7774,322,20,28921,0,0,0,0,0,'Hadronox','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(8715,347,41,24421,0,0,0,0,0,'Nagrand Cherry','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,32),(8900,687,36,21374,1,0,0,0,0,'Stormcaller\'s Hauberk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,32),(9026,346,41,38300,0,0,0,0,0,'Diluted Ethereum Essence','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,32),(11009,323,20,33413,0,0,0,0,0,'Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(11026,324,20,33413,0,0,0,0,0,'Thorim','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,32),(2919,621,57,23709,1,0,0,0,0,'Tabard of Frost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,33),(3794,1244,68,175725,1,0,0,0,0,'The Old Gods and the Ordering of Azeroth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(4368,923,41,32068,0,0,0,0,0,'Elixir of Ironskin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(4819,697,36,31043,1,0,0,0,0,'Thunderheart Vest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,33),(4906,693,36,28964,1,0,0,0,0,'Voidheart Robe','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,33),(5180,345,41,31853,0,0,0,0,0,'Major Combat Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(5438,1467,0,29120,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(5931,1676,11,2057,700,0,0,0,0,'Scholomance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,33),(5983,1677,11,2057,550,0,0,0,0,'Scholomance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,33),(6038,1678,11,718,700,0,0,0,0,'Wailing Caverns','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,33),(6133,1680,11,718,685,0,0,0,0,'Wailing Caverns','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,33),(6379,922,41,42545,0,0,0,0,0,'Runic Mana Injector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(6412,1756,0,16060,1,0,0,0,0,'Gothik the Harvester','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(6431,1770,0,16060,1,0,0,0,0,'Gothik the Harvester','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(6588,1777,29,45559,1,0,0,0,0,'Mighty Rhino Dogs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(7599,2136,8,2157,0,0,0,0,0,'King\'s Bane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(7773,322,20,28684,0,0,0,0,0,'Krik\'thir the Gatewatcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(7871,694,36,29906,1,0,0,0,0,'Vashj\'s Vial Remnant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,33),(8714,347,41,24408,0,0,0,0,0,'Edible Stalks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,33),(8901,687,36,21370,1,0,0,0,0,'Striker\'s Hauberk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,33),(9025,346,41,38294,0,0,0,0,0,'Ethereal Liqeuer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,33),(9079,692,36,31750,1,0,0,0,0,'Earthen Signet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,33),(11010,323,20,33410,0,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(11027,324,20,33410,0,0,0,0,0,'Freya','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,33),(2920,621,57,38313,1,0,0,0,0,'Tabard of Fury','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,34),(3795,1244,68,175756,1,0,0,0,0,'The Scourge of Lordaeron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(4369,923,41,3390,0,0,0,0,0,'Elixir of Lesser Agility','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(4907,693,36,34845,1,0,0,0,0,'Pit Lord\'s Satchel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,34),(5181,345,41,31852,0,0,0,0,0,'Major Combat Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(5383,1467,0,26794,1,0,0,0,0,'Ormorok the Tree-Shaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(5932,1676,11,51,700,0,0,0,0,'Searing Gorge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,34),(5984,1677,11,51,550,0,0,0,0,'Searing Gorge','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,34),(6039,1678,11,618,700,0,0,0,0,'Winterspring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,34),(6134,1680,11,618,685,0,0,0,0,'Winterspring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,34),(6589,1777,29,45567,1,0,0,0,0,'Poached Northern Sculpin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(7420,922,41,2456,0,0,0,0,0,'Minor Rejuvenation Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(7523,2136,8,1871,0,0,0,0,0,'Experienced Drake Rider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(7786,322,20,27978,0,0,0,0,0,'Sjonnir The Ironshaper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(8713,347,41,23435,0,0,0,0,0,'Elderberry Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,34),(8902,687,36,21351,1,0,0,0,0,'Vestments of the Oracle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,34),(9024,346,41,37909,0,0,0,0,0,'Lord of Frost\'s Private Label','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,34),(11011,323,20,33412,0,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(11028,324,20,33412,0,0,0,0,0,'Mimiron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(13324,1770,0,38433,1,0,0,0,0,'Toravon the Ice Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(13343,1756,0,38433,1,0,0,0,0,'Toravon the Ice Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,34),(2921,621,57,38309,1,0,0,0,0,'Tabard of Nature','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,35),(3796,1244,68,175732,1,0,0,0,0,'The Sentinels and the Long Vigil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(4370,923,41,2454,0,0,0,0,0,'Elixir of Lion\'s Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(4942,693,36,28779,1,0,0,0,0,'Girdle of the Endless Pit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,35),(5182,345,41,39671,0,0,0,0,0,'Resurgent Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(5469,1467,0,26530,1,0,0,0,0,'Salramm the Fleshcrafter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(5933,1676,11,3487,700,0,0,0,0,'Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,35),(5985,1677,11,3487,550,0,0,0,0,'Silvermoon City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,35),(6040,1678,11,978,700,0,0,0,0,'Zul\'Farrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,35),(6135,1680,11,978,685,0,0,0,0,'Zul\'Farrak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,35),(6590,1777,29,57434,1,0,0,0,0,'Rhinolicious Wormsteak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(7421,922,41,40081,0,0,0,0,0,'Potion of Nightmares','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(7524,2136,8,1868,0,0,0,0,0,'Make It Count','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(7765,322,20,24200,0,0,0,0,0,'Skarvald the Constructor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(8712,347,41,23327,0,0,0,0,0,'Fire-toasted Bun','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,35),(8903,687,36,20933,1,0,0,0,0,'Husk of the Old God','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,35),(9023,346,41,37908,0,0,0,0,0,'Bartlett\'s Bitter Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,35),(11012,323,20,33271,0,0,0,0,0,'General Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(11029,324,20,33271,0,0,0,0,0,'General Vezax','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(13325,1770,0,35013,1,0,0,0,0,'Koralon the Flame Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(13344,1756,0,35013,1,0,0,0,0,'Koralon the Flame Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,35),(2922,621,57,11364,1,0,0,0,0,'Tabard of Stormwind','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,36),(3797,1244,68,175737,1,0,0,0,0,'The Seven Kingdoms','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(4371,923,41,22831,0,0,0,0,0,'Elixir of Major Agility','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(5183,345,41,33447,0,0,0,0,0,'Runic Healing Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(5380,1467,0,23980,1,0,0,0,0,'Ingvar the Plunderer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(5934,1676,11,1519,700,0,0,0,0,'Stormwind City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,36),(5986,1677,11,1519,550,0,0,0,0,'Stormwind City','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,36),(6043,1678,11,2079,700,0,0,0,0,'Alcaz Island','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,36),(6136,1680,11,2079,685,0,0,0,0,'Alcaz Island','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,36),(6591,1777,29,58528,1,0,0,0,0,'Small Feast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(7422,922,41,40087,0,0,0,0,0,'Powerful Rejuvenation Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(7525,2136,8,2044,0,0,0,0,0,'Ruby Void','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(7758,322,20,23980,0,0,0,0,0,'Ingvar the Plunderer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(8711,347,41,23326,0,0,0,0,0,'Midsummer Sausage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,36),(9022,346,41,37907,0,0,0,0,0,'Autumnal Acorn Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,36),(9078,687,36,20929,1,0,0,0,0,'Husk of the Old God','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,36),(11013,323,20,33552,0,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(11030,324,20,33552,0,0,0,0,0,'Yogg-Saron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(13326,1770,0,34797,1,0,0,0,0,'Icehowl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(13345,1756,0,10184,1,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,36),(2923,621,57,35279,1,0,0,0,0,'Tabard of Summer Skies','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,37),(3798,1244,68,175854,1,0,0,0,0,'The Twin Empires','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,37),(4372,923,41,22834,0,0,0,0,0,'Elixir of Major Defense','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,37),(5451,1467,0,29306,1,0,0,0,0,'Gal\'darah','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,37),(5935,1676,11,33,700,0,0,0,0,'Stranglethorn Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,37),(5987,1677,11,33,550,0,0,0,0,'Stranglethorn Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,37),(6044,1678,11,1769,700,0,0,0,0,'Timbermaw Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,37),(6137,1680,11,1769,685,0,0,0,0,'Timbermaw Hold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,37),(6380,345,41,41166,0,0,0,0,0,'Runic Healing Injector','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,37),(6592,1777,29,57437,1,0,0,0,0,'Snapper Extreme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,37),(7526,2136,8,2045,0,0,0,0,0,'Emerald Void','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,37),(7766,322,20,23953,0,0,0,0,0,'Prince Keleseth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,37),(8710,347,41,23211,0,0,0,0,0,'Toasted Smorc','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,37),(9012,346,41,31451,0,0,0,0,0,'Pure Energy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,37),(11014,323,20,32871,0,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,37),(11031,324,20,32871,0,0,0,0,0,'Algalon the Observer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,37),(13327,1770,0,34780,1,0,0,0,0,'Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,37),(13346,1756,0,34797,1,0,0,0,0,'Icehowl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,37),(2924,621,57,38310,1,0,0,0,0,'Tabard of the Arcane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,38),(3799,1244,68,175727,1,0,0,0,0,'The War of the Ancients','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,38),(4373,923,41,22833,0,0,0,0,0,'Elixir of Major Firepower','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,38),(5442,1467,0,29311,1,0,0,0,0,'Herald Volazj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,38),(5936,1676,11,2017,700,0,0,0,0,'Stratholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,38),(5988,1677,11,2017,550,0,0,0,0,'Stratholme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,38),(6045,1678,11,1116,700,0,0,0,0,'Feathermoon Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,38),(6138,1680,11,1116,685,0,0,0,0,'Feathermoon Stronghold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,38),(6593,1777,29,57440,1,0,0,0,0,'Spiced Mammoth Treats','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,38),(7423,345,41,40087,0,0,0,0,0,'Powerful Rejuvenation Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,38),(7527,2136,8,2046,0,0,0,0,0,'Amber Void','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,38),(7760,322,20,29120,0,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,38),(8709,347,41,23175,0,0,0,0,0,'Tasty Summer Treat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,38),(9011,346,41,30858,0,0,0,0,0,'Peon Sleep Potion','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,38),(11015,323,20,33993,0,0,0,0,0,'Emalon the Storm Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,38),(11032,324,20,33993,0,0,0,0,0,'Emalon the Storm Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,38),(13328,1770,28,68184,1,0,0,0,0,'Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,38),(13347,1756,0,34780,1,0,0,0,0,'Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,38),(2925,621,57,22999,1,0,0,0,0,'Tabard of the Argent Dawn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,39),(3800,1244,68,175730,1,0,0,0,0,'The World Tree and the Emerald Dream','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,39),(4374,923,41,32062,0,0,0,0,0,'Elixir of Major Fortitude','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,39),(5446,1467,0,26632,1,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,39),(5937,1676,11,1417,700,0,0,0,0,'Sunken Temple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,39),(5989,1677,11,1417,550,0,0,0,0,'Sunken Temple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,39),(6046,1678,11,702,700,0,0,0,0,'Rut\'theran Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,39),(6139,1680,11,702,685,0,0,0,0,'Rut\'theran Village','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,39),(6594,1777,29,45557,1,0,0,0,0,'Spiced Worm Burger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,39),(7424,345,41,40081,0,0,0,0,0,'Potion of Nightmares','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,39),(7762,322,20,26632,0,0,0,0,0,'The Prophet Tharon\'ja','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,39),(8708,347,41,22239,0,0,0,0,0,'Sweet Surprise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,39),(9010,346,41,30615,0,0,0,0,0,'Halaani Whiskey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,39),(13274,323,20,35013,0,0,0,0,0,'Koralon the Flame Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,39),(13291,324,20,38433,0,0,0,0,0,'Toravon the Ice Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,39),(13329,1770,0,34496,1,0,0,0,0,'Val\'kyr Twins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,39),(13348,1756,28,68184,1,0,0,0,0,'Faction Champions','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,39),(2926,621,57,38314,1,0,0,0,0,'Tabard of the Defender','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,40),(3801,1244,68,175753,1,0,0,0,0,'War of the Spider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,40),(4375,923,41,22827,0,0,0,0,0,'Elixir of Major Frost Power','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,40),(5458,1467,0,28923,1,0,0,0,0,'Loken','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,40),(5938,1676,11,4075,700,0,0,0,0,'Sunwell Plateau','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,40),(5990,1677,11,4075,550,0,0,0,0,'Sunwell Plateau','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,40),(6595,1777,29,45571,1,0,0,0,0,'Spicy Blue Nettlefish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,40),(7763,322,20,29317,0,0,0,0,0,'Cyanigosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,40),(7892,1678,11,363,700,0,0,0,0,'Valley of Trials','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,40),(7896,1680,11,363,685,0,0,0,0,'Valley of Trials','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,40),(7976,347,41,21071,1,0,0,0,0,'Raw Sagefish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,40),(9009,346,41,30499,0,0,0,0,0,'Brightstong Wine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,40),(13275,323,20,38433,0,0,0,0,0,'Toravon the Ice Watcher','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,40),(13292,324,20,34797,0,0,0,0,0,'Icehowl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,40),(13330,1770,0,34564,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,40),(13349,1756,0,34496,1,0,0,0,0,'Val\'kyr Twins','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,40),(2927,621,57,24344,1,0,0,0,0,'Tabard of the Hand','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,41),(3802,1244,68,175739,1,0,0,0,0,'War of the Three Hammers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,41),(4376,923,41,22840,0,0,0,0,0,'Elixir of Major Mageblood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,41),(5466,1467,0,26687,1,0,0,0,0,'Gortok Palehoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,41),(5939,1676,11,8,700,0,0,0,0,'Swamp of Sorrows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,41),(5991,1677,11,8,550,0,0,0,0,'Swamp of Sorrows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,41),(6596,1777,29,57433,1,0,0,0,0,'Spicy Fried Herring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,41),(7761,322,20,29311,0,0,0,0,0,'Herald Volazj','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,41),(7893,1678,11,220,700,0,0,0,0,'Red Cloud Mesa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,41),(7897,1680,11,220,685,0,0,0,0,'Red Cloud Mesa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,41),(7975,347,41,6362,1,0,0,0,0,'Raw Rockscale Cod','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,41),(9008,346,41,30309,0,0,0,0,0,'Stonebreaker Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,41),(13276,323,20,10184,0,0,0,0,0,'Onyxia','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,41),(13293,324,20,34780,0,0,0,0,0,'Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,41),(13331,1770,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,41),(13350,1756,0,34564,1,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,41),(2928,621,57,23192,1,0,0,0,0,'Tabard of the Scarlet Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,42),(3803,1244,68,175856,1,0,0,0,0,'Wrath of Soulflayer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,42),(4377,923,41,22835,0,0,0,0,0,'Elixir of Major Shadow Power','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,42),(5940,1676,11,330,700,0,0,0,0,'Thandol Span','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,42),(5992,1677,11,330,550,0,0,0,0,'Thandol Span','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,42),(6597,1777,29,45556,1,0,0,0,0,'Tender Shoveltusk Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,42),(7759,322,20,26723,0,0,0,0,0,'Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,42),(7894,1678,11,188,700,0,0,0,0,'Shadowglen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,42),(7898,1680,11,188,685,0,0,0,0,'Shadowglen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,42),(7974,347,41,13758,1,0,0,0,0,'Raw Redgill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,42),(8802,1467,0,29315,1,0,0,0,0,'Erekem','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,42),(9007,346,41,29482,0,0,0,0,0,'Ethereum Essence','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,42),(13277,323,20,34797,0,0,0,0,0,'Icehowl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,42),(13294,324,20,34497,0,0,0,0,0,'Fjola Lightbane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,42),(13332,1770,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,42),(13351,1756,0,36612,1,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,42),(2929,621,57,35221,1,0,0,0,0,'Tabard of the Shattered Sun','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,43),(4378,923,41,22824,0,0,0,0,0,'Elixir of Major Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,43),(5462,1467,0,27656,1,0,0,0,0,'Ley-Guardian Eregos','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,43),(5941,1676,11,1581,700,0,0,0,0,'The Deadmines','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,43),(5993,1677,11,1581,550,0,0,0,0,'The Deadmines','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,43),(6598,1777,29,57443,1,0,0,0,0,'Tracker Snacks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,43),(7895,1678,11,3527,700,0,0,0,0,'Crash Site','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,43),(7899,1680,11,3527,685,0,0,0,0,'Crash Site','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,43),(7973,347,41,6361,1,0,0,0,0,'Raw Raindbow Fin Albacore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,43),(9006,346,41,27553,0,0,0,0,0,'Crimson Steer Energy Drink','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,43),(13262,322,20,35451,1,0,0,0,0,'The Black Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,43),(13278,323,20,34780,0,0,0,0,0,'Lord Jaraxxus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,43),(13295,324,20,34496,0,0,0,0,0,'Eydis Darkbane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,43),(13333,1770,28,72959,1,0,0,0,0,'Airship Encounter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,43),(13352,1756,0,36855,1,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,43),(2930,621,57,38311,1,0,0,0,0,'Tabard of the Void','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,44),(4379,923,41,28104,0,0,0,0,0,'Elixir of Mastery','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,44),(5942,1676,11,47,700,0,0,0,0,'The Hinterlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,44),(5994,1677,11,47,550,0,0,0,0,'The Hinterlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,44),(6599,1777,29,45558,1,0,0,0,0,'Very Burnt Worg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,44),(7972,347,41,13759,1,0,0,0,0,'Raw Nightfin Snapper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,44),(8098,1678,11,3526,700,0,0,0,0,'Ammen Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,44),(8099,1680,11,3526,685,0,0,0,0,'Ammen Vale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,44),(8803,1467,0,29316,1,0,0,0,0,'Moragg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,44),(9005,346,41,24007,0,0,0,0,0,'Footman\'s Waterskin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,44),(13263,322,20,34928,0,0,0,0,0,'Argent Confessor Paletress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,44),(13279,323,20,34496,0,0,0,0,0,'Eydis Darkbane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,44),(13296,324,20,34564,0,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,44),(13334,1770,28,72928,1,0,0,0,0,'Deathbringer Saurfang','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,44),(13353,1756,28,72959,1,0,0,0,0,'Airship Encounter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,44),(2931,621,57,24004,1,0,0,0,0,'Thrallmar Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,45),(4380,923,41,39666,0,0,0,0,0,'Elixir of Mighty Agility','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,45),(5384,1467,0,26723,1,0,0,0,0,'Keristrasza','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,45),(5943,1676,11,717,700,0,0,0,0,'The Stockade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,45),(5995,1677,11,717,550,0,0,0,0,'The Stockade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,45),(7971,347,41,8365,1,0,0,0,0,'Raw Mithril Head Trout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,45),(8994,346,41,19997,0,0,0,0,0,'Harvest Nectar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,45),(9219,1678,11,1657,700,0,0,0,0,'Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,45),(9221,1680,11,1657,685,0,0,0,0,'Darnassus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,45),(9421,1777,29,62350,1,0,0,0,0,'Worg Tartare','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,45),(13264,322,20,35119,0,0,0,0,0,'Eadric the Pure','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,45),(13280,323,20,34497,0,0,0,0,0,'Fjola Lightbane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,45),(13297,324,20,36612,0,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,45),(13335,1770,28,72706,1,0,0,0,0,'Valithria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,45),(13354,1756,28,72928,1,0,0,0,0,'Deathbringer Saurfang','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,45),(2932,621,57,23388,1,0,0,0,0,'Tranquillien Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,46),(4381,923,41,40097,0,0,0,0,0,'Elixir of Mighty Defense','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,46),(5944,1676,11,1477,700,0,0,0,0,'The Temple of Atal\'Hakkar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,46),(5996,1677,11,1477,550,0,0,0,0,'The Temple of Atal\'Hakkar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,46),(7970,347,41,6289,1,0,0,0,0,'Raw Longjaw Mud Snapper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,46),(8798,1467,0,29266,1,0,0,0,0,'Xevozz','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,46),(8992,346,41,18284,0,0,0,0,0,'Kreeg\'s Stout Beatdown','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,46),(9220,1678,11,3557,700,0,0,0,0,'Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,46),(9222,1680,11,3557,685,0,0,0,0,'Exodar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,46),(13265,322,20,36497,0,0,0,0,0,'Bronjahm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,46),(13281,323,20,34564,0,0,0,0,0,'Anub\'arak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,46),(13298,324,20,36855,0,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,46),(13336,1770,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,46),(13355,1756,28,72706,1,0,0,0,0,'Valithria Dreamwalker','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,46),(2933,621,57,19505,1,0,0,0,0,'Warsong Battle Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,47),(4382,923,41,40078,0,0,0,0,0,'Elixir of Mighty Fortitude','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,47),(5945,1676,11,85,700,0,0,0,0,'Tirisfal Glades','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,47),(5997,1677,11,85,550,0,0,0,0,'Tirisfal Glades','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,47),(7969,347,41,6317,1,0,0,0,0,'Raw Loch Frenzy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,47),(8799,1467,0,29312,1,0,0,0,0,'Lavanthor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,47),(8990,346,41,17048,0,0,0,0,0,'Rumsey Rum','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,47),(9242,1678,11,1941,700,0,0,0,0,'Caverns of Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,47),(9243,1680,11,1941,685,0,0,0,0,'Caverns of Time','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,47),(13266,322,20,36502,0,0,0,0,0,'Devourer of Souls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,47),(13282,323,20,36612,0,0,0,0,0,'Lord Marrowgar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,47),(13299,324,20,37813,0,0,0,0,0,'Deathbringer Saurfang','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,47),(13337,1770,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,47),(13356,1756,0,36626,1,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,47),(4383,923,41,40109,0,0,0,0,0,'Elixir of Mighty Mageblood','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,48),(5946,1676,11,1497,700,0,0,0,0,'Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,48),(5998,1677,11,1497,550,0,0,0,0,'Undercity','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,48),(6151,621,57,43300,1,0,0,0,0,'Loremaster\'s Colors','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,48),(7968,347,41,21153,1,0,0,0,0,'Raw Greater Sagefish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,48),(8800,1467,0,29313,1,0,0,0,0,'Ichoron','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,48),(8988,346,41,13813,0,0,0,0,0,'Blessed Sunfruit Juice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,48),(13267,322,20,36494,0,0,0,0,0,'Forgemaster Garfrost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,48),(13283,323,20,36855,0,0,0,0,0,'Lady Deathwhisper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,48),(13300,324,20,37955,0,0,0,0,0,'Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,48),(13338,1770,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,48),(13357,1756,0,36627,1,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,48),(4384,923,41,40073,0,0,0,0,0,'Elixir of Mighty Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,49),(5947,1676,11,28,700,0,0,0,0,'Western Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,49),(5999,1677,11,28,550,0,0,0,0,'Western Plaguelands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,49),(6171,621,57,43348,1,0,0,0,0,'Tabard of the Explorer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,49),(7984,347,41,43647,1,0,0,0,0,'Shimmering Minnow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,49),(8801,1467,0,29314,1,0,0,0,0,'Zuramat the Obliterator','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,49),(8986,346,41,4952,0,0,0,0,0,'Stormstout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,49),(13268,322,20,36476,0,0,0,0,0,'Ick','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,49),(13284,323,20,37813,0,0,0,0,0,'Deathbringer Saurfang','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,49),(13301,324,20,36853,0,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,49),(13339,1770,0,37970,1,0,0,0,0,'Blood Princes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,49),(13358,1756,0,36678,1,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,49),(4385,923,41,2457,0,0,0,0,0,'Elixir of Minor Agility','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,50),(5948,1676,11,40,700,0,0,0,0,'Westfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,50),(6000,1677,11,40,550,0,0,0,0,'Westfall','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,50),(6172,621,57,43349,1,0,0,0,0,'Tabard of Brute Force','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,50),(7983,347,41,44072,1,0,0,0,0,'Roasted Mystery Beast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,50),(8985,346,41,1322,0,0,0,0,0,'Fishliver Oil','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,50),(13269,322,20,36477,0,0,0,0,0,'Krik','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,50),(13285,323,20,36626,0,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,50),(13302,324,20,36597,0,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,50),(13312,1467,28,68574,1,0,0,0,0,'Argent Confessor Paletress','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,50),(13340,1770,0,37955,1,0,0,0,0,'Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,50),(13359,1756,0,37970,1,0,0,0,0,'Blood Princes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,50),(4386,923,41,5997,0,0,0,0,0,'Elixir of Minor Defense','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,51),(5949,1676,11,11,700,0,0,0,0,'Wetlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,51),(6001,1677,11,11,550,0,0,0,0,'Wetlands','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,51),(6976,621,57,43154,1,0,0,0,0,'Tabard of the Argent Crusade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,51),(7982,347,41,13889,1,0,0,0,0,'Raw Whitescale Salmon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,51),(8890,346,41,34022,0,0,0,0,0,'Stout Shrunken Head','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,51),(13270,322,20,36658,0,0,0,0,0,'Scourgelord Tyrannus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,51),(13286,323,20,36627,0,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,51),(13303,324,20,36626,0,0,0,0,0,'Festergut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,51),(13313,1467,28,68575,1,0,0,0,0,'Eadric the Pure','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,51),(13341,1770,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,51),(13360,1756,0,37955,1,0,0,0,0,'Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,51),(4387,923,41,2458,0,0,0,0,0,'Elixir of Minor Fortitude','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,52),(6977,621,57,43155,1,0,0,0,0,'Tabard of the Ebon Blade','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,52),(8004,347,41,44071,1,0,0,0,0,'Slow-Roasted Eel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,52),(8866,346,41,41731,0,0,0,0,0,'Yeti Milk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,52),(9422,1676,11,19,700,0,0,0,0,'Zul\'Gurub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,52),(9423,1677,11,19,550,0,0,0,0,'Zul\'Gurub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,52),(13271,322,20,38112,0,0,0,0,0,'Falric','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,52),(13287,323,20,36678,0,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,52),(13304,324,20,36627,0,0,0,0,0,'Rotface','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,52),(13314,1467,28,68663,1,0,0,0,0,'The Black Knight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,52),(13342,1770,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,52),(13361,1756,0,36853,1,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,52),(4388,923,41,3391,0,0,0,0,0,'Elixir of Ogre\'s Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,53),(6041,1676,11,1337,700,0,0,0,0,'Uldaman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,53),(6042,1677,11,1337,550,0,0,0,0,'Uldaman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,53),(6978,621,57,43156,1,0,0,0,0,'Tabard of the Wyrmrest Accord','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,53),(7981,347,41,13760,1,0,0,0,0,'Raw Sunscale Salmon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,53),(8868,346,41,44617,0,0,0,0,0,'Glass of Dalaran Red','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,53),(13272,322,20,38113,0,0,0,0,0,'Marwyn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,53),(13288,323,20,37955,0,0,0,0,0,'Blood-Queen Lana\'thel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,53),(13305,324,20,36678,0,0,0,0,0,'Professor Putricide','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,53),(13315,1467,0,36497,1,0,0,0,0,'Bronjahm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,53),(13362,1756,0,36597,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,53),(4389,923,41,9264,0,0,0,0,0,'Elixir of Shadow Power','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,54),(5950,1676,11,1977,700,0,0,0,0,'Zul\'Gurub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,54),(6002,1677,11,1977,550,0,0,0,0,'Zul\'Gurub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,54),(6979,621,57,43157,1,0,0,0,0,'Tabard of the Kirin Tor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,54),(7980,347,41,13756,1,0,0,0,0,'Raw Summer Bass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,54),(8870,346,41,44619,0,0,0,0,0,'Glass of Peaked Dalaran Red','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,54),(13273,322,20,36954,0,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,54),(13289,323,20,36853,0,0,0,0,0,'Sindragosa','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,54),(13316,1467,0,36502,1,0,0,0,0,'Devourer of Souls','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,54),(4390,923,41,40072,0,0,0,0,0,'Elixir of Spirit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,55),(7884,1676,11,9,700,0,0,0,0,'Northshire Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,55),(7888,1677,11,9,550,0,0,0,0,'Northshire Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,55),(7979,347,41,4603,1,0,0,0,0,'Raw Spotted Yellowtail','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,55),(8872,346,41,44570,0,0,0,0,0,'Glass of Eversong Wine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,55),(11298,621,57,45585,1,0,0,0,0,'Silvermoon City Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,55),(13290,323,20,36597,0,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,55),(13317,1467,0,36494,1,0,0,0,0,'Forgemaster Garfrost','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,55),(4391,923,41,13445,0,0,0,0,0,'Elixir of Superior Defense','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,56),(7885,1676,11,132,700,0,0,0,0,'Coldridge Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,56),(7889,1677,11,132,550,0,0,0,0,'Coldridge Valley','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,56),(7978,347,41,8959,1,0,0,0,0,'Raw Spinefin Halibut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,56),(8881,346,41,33033,0,0,0,0,0,'Thunderbrew Stout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,56),(11299,621,57,45582,1,0,0,0,0,'Sen\'jin Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,56),(13318,1467,0,36476,1,0,0,0,0,'Ick','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,56),(4392,923,41,40079,0,0,0,0,0,'Elixir of Toughness','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,57),(5951,1676,11,1977,700,0,0,0,0,'Zul\'Gurub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,57),(6003,1677,11,1977,550,0,0,0,0,'Zul\'Gurub','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,57),(7977,347,41,6303,1,0,0,0,0,'Raw Slitherskin Mackerel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,57),(8880,346,41,33032,0,0,0,0,0,'Thunderbrew Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,57),(11300,621,57,45583,1,0,0,0,0,'Undercity Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,57),(13319,1467,0,36658,1,0,0,0,0,'Scourgelord Tyrannus','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,57),(4393,923,41,5996,0,0,0,0,0,'Elixir of Water Breathing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,58),(7886,1676,11,154,700,0,0,0,0,'Deathknell','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,58),(7890,1677,11,154,550,0,0,0,0,'Deathknell','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,58),(7967,347,41,13754,1,0,0,0,0,'Raw Glossy Mightfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,58),(8879,346,41,33031,0,0,0,0,0,'Thunder 45','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,58),(11301,621,57,45584,1,0,0,0,0,'Thunder Bluff Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,58),(13320,1467,0,38112,1,0,0,0,0,'Falric','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,58),(4394,923,41,8827,0,0,0,0,0,'Elixir of Water Walking','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,59),(7887,1676,11,3431,700,0,0,0,0,'Sunstrider Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,59),(7891,1677,11,3431,550,0,0,0,0,'Sunstrider Isle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,59),(7966,347,41,6308,1,0,0,0,0,'Raw Bristle Whisker Catfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,59),(8878,346,41,33034,0,0,0,0,0,'Gordok Grog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,59),(11302,621,57,45579,1,0,0,0,0,'Darnassus Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,59),(13321,1467,0,38113,1,0,0,0,0,'Marwyn','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,59),(4395,923,41,3383,0,0,0,0,0,'Elixir of Wisdom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,60),(7965,347,41,6291,1,0,0,0,0,'Raw Brilliant Smallfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,60),(8877,346,41,44574,0,0,0,0,0,'Skin of Mulgore Firewater','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,60),(9080,1677,11,130,550,0,0,0,0,'Silverpine Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,60),(9081,1676,11,130,700,0,0,0,0,'Silverpine Forest','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,60),(11303,621,57,45580,1,0,0,0,0,'Exodar Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,60),(13323,1467,28,72830,1,0,0,0,0,'The Lich King','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,60),(4396,923,41,13452,0,0,0,0,0,'Elixir of the Mongoose','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,61),(7964,347,41,6458,1,0,0,0,0,'Oil Covered Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,61),(8876,346,41,44716,0,0,0,0,0,'Mysterious Fermented Liquid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,61),(9238,1676,11,209,700,0,0,0,0,'Shadowfang Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,61),(9239,1677,11,209,550,0,0,0,0,'Shadowfang Keep','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,61),(11304,621,57,45578,1,0,0,0,0,'Gnomeregan Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,61),(4397,923,41,13447,0,0,0,0,0,'Elixir of the Sages','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,62),(7963,347,41,11952,1,0,0,0,0,'Night Dragon\'s Breath','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,62),(8875,346,41,44573,0,0,0,0,0,'Cup of Frog Venom Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,62),(9240,1676,11,3805,700,0,0,0,0,'Zul\'Aman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,62),(9241,1677,11,3805,550,0,0,0,0,'Zul\'Aman','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,62),(11305,621,57,45577,1,0,0,0,0,'Ironforge Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,62),(4398,923,41,22830,0,0,0,0,0,'Elixir of the Searching Eye','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,63),(7962,347,41,43572,1,0,0,0,0,'Magic Eater','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,63),(8874,346,41,44571,0,0,0,0,0,'Bottle of Silvermoon Port','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,63),(9398,1676,11,721,700,0,0,0,0,'Gnomeregan','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',3,0,0,0,63),(11306,621,57,45574,1,0,0,0,0,'Stormwind Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,63),(4399,923,41,31679,0,0,0,0,0,'Fel Strength Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,64),(7961,347,41,35287,1,0,0,0,0,'Luminous Bluetail','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,64),(8873,346,41,44575,0,0,0,0,0,'Flask of Bitter Cactus Cider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,64),(11378,621,57,45581,1,0,0,0,0,'Orgrimmar Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,64),(4400,923,41,9088,0,0,0,0,0,'Gift of Arthas','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,65),(7960,347,41,13893,1,0,0,0,0,'Large Raw Mightfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,65),(8889,346,41,34021,0,0,0,0,0,'Brewdoo Magic','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,65),(11307,621,57,46817,1,0,0,0,0,'Silver Covenant Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,65),(4401,923,41,8424,0,0,0,0,0,'Gizzard Gum','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,66),(7957,347,41,33246,1,0,0,0,0,'Funnel Cake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,66),(8888,346,41,34020,0,0,0,0,0,'Jungle River Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,66),(11308,621,57,46818,1,0,0,0,0,'Sunreaver Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,66),(4402,923,41,13454,0,0,0,0,0,'Greater Arcane Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,67),(7959,347,41,34410,1,0,0,0,0,'Honeyed Holiday Ham','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,67),(8887,346,41,34019,0,0,0,0,0,'Path of Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,67),(11309,621,57,46874,1,0,0,0,0,'Argent Crusader\'s Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,67),(4403,923,41,8412,0,0,0,0,0,'Ground Scorpok Assay','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,68),(7958,347,41,35285,1,0,0,0,0,'Giant Sunfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,68),(8886,346,41,34018,0,0,0,0,0,'Long Stride Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,68),(11760,621,57,49052,1,0,0,0,0,'Tabard of Conquest (Alliance)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,68),(4404,923,41,8411,0,0,0,0,0,'Lung Juice Cocktail','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,69),(7956,347,41,44049,1,0,0,0,0,'Freshly-Speared Emperor Salmon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,69),(8885,346,41,33030,0,0,0,0,0,'Barleybrew Clear','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,69),(11761,621,57,49054,1,0,0,0,0,'Tabard of Conquest (Horde)','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,69),(4405,923,41,8410,0,0,0,0,0,'R.O.I.D.S.','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,70),(7955,347,41,32722,1,0,0,0,0,'Enriched Terocone Juice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,70),(8884,346,41,33029,0,0,0,0,0,'Barleybrew Dark','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,70),(12598,621,57,45983,1,0,0,0,0,'Furious Gladiator\'s Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,70),(4406,923,41,8529,0,0,0,0,0,'Noggenfogger Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,71),(7954,347,41,17198,1,0,0,0,0,'Egg Nog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,71),(8883,346,41,33028,0,0,0,0,0,'Barleybrew Light','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,71),(12599,621,57,49086,1,0,0,0,0,'Relentless Gladiator\'s Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,71),(4407,923,41,28102,0,0,0,0,0,'Onslaught Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,72),(7953,347,41,13888,1,0,0,0,0,'Darkclaw Lobster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,72),(8882,346,41,33035,0,0,0,0,0,'Ogre Mead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,72),(12600,621,57,40643,1,0,0,0,0,'Tabard of the Achiever','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,72),(7952,347,41,43088,1,0,0,0,0,'Dalaran Apple Bowl','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,73),(8062,923,41,44328,0,0,0,0,0,'Elixir of Mighty Defense','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,73),(8871,346,41,44620,0,0,0,0,0,'Glass of Vintage Dalaran Red','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,73),(13241,621,57,52252,1,0,0,0,0,'Tabard of the Lightbringer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,73),(7989,347,41,11950,1,0,0,0,0,'Windblossom Berries','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,74),(8066,923,41,44332,0,0,0,0,0,'Elixir of Mighty Thoughts','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,74),(8869,346,41,44618,0,0,0,0,0,'Glass of Aged Dalaran Red','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,74),(13242,621,57,51534,1,0,0,0,0,'Wrathful Gladiator\'s Tabard','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,74),(7988,347,41,8543,1,0,0,0,0,'Underwater Mushroom Cap','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,75),(8068,923,41,11564,0,0,0,0,0,'Crystal Ward','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,75),(8867,346,41,44616,0,0,0,0,0,'Glass of Dalaran White','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,75),(7987,347,41,33043,1,0,0,0,0,'The Essential Brewfest Pretzel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,76),(8070,923,41,12457,0,0,0,0,0,'Juju Chill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,76),(8891,346,41,34017,0,0,0,0,0,'Small Step Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,76),(6485,346,41,40042,0,0,0,0,0,'Caraway Burnwine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,77),(7986,347,41,6887,1,0,0,0,0,'Spotted Yellowtail','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,77),(8072,923,41,12460,0,0,0,0,0,'Juju Might','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,77),(6452,346,41,17199,0,0,0,0,0,'Bad Egg Nog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,78),(8030,347,41,33254,1,0,0,0,0,'Afrazi Forest Strider Drumstick','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,78),(8074,923,41,20004,0,0,0,0,0,'Major Troll\'s Blood Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,78),(4655,346,41,33042,0,0,0,0,0,'Black Coffee','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,79),(7951,347,41,17199,1,0,0,0,0,'Bad Egg Nog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,79),(8032,923,41,44327,0,0,0,0,0,'Elixir of Deadly Strikes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,79),(4656,346,41,38431,0,0,0,0,0,'Blackrock Fortified Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,80),(7087,347,41,30458,0,0,0,0,0,'Stormgarde Muenster','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,80),(8031,923,41,44325,0,0,0,0,0,'Elixir of Accuracy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,80),(4657,346,41,38430,0,0,0,0,0,'Blackrock Mineral Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,81),(7088,347,41,18633,0,0,0,0,0,'Styleen\'s Sour Suckerpop','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,81),(8090,923,41,37570,0,0,0,0,0,'Murkweed Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,81),(4658,346,41,38429,0,0,0,0,0,'Blackrock Spring Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,82),(7042,347,41,42779,0,0,0,0,0,'Steaming Chicken Soup','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,82),(8089,923,41,36769,0,0,0,0,0,'Zort\'s Protective Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,82),(4659,346,41,17404,0,0,0,0,0,'Blended Bean Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,83),(7027,347,41,2680,0,0,0,0,0,'Spiced Wolf Meat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,83),(8088,923,41,36770,0,0,0,0,0,'Zort\'s Protective Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,83),(4660,346,41,2723,0,0,0,0,0,'Bottle of Pinot Noir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,84),(7089,347,41,39691,0,0,0,0,0,'Succulent Orca Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,84),(8087,923,41,35797,0,0,0,0,0,'Drakuru\'s Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,84),(4661,346,41,19300,0,0,0,0,0,'Bottled Winterspring Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,85),(6571,347,41,4607,0,0,0,0,0,'Delicious Cave Mold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,85),(8086,923,41,32446,0,0,0,0,0,'Elixir of Shadows','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,85),(4662,346,41,9451,0,0,0,0,0,'Bubbling Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,86),(7090,347,41,2685,0,0,0,0,0,'Succulent Pork Ribs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,86),(8085,923,41,24428,0,0,0,0,0,'Ahuurn\'s Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,86),(4663,346,41,34832,0,0,0,0,0,'Captain Rumsey\'s Lager','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,87),(7037,347,41,4606,0,0,0,0,0,'Spongy Morel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,87),(8084,923,41,11243,0,0,0,0,0,'Videre Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,87),(4664,346,41,29112,0,0,0,0,0,'Cenarion Spirits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,88),(7091,347,41,35950,0,0,0,0,0,'Sweet Potato Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,88),(8083,923,41,22193,0,0,0,0,0,'Bloodkelp Elixir of Resistance','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,88),(4665,346,41,19222,0,0,0,0,0,'Cheap Beer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,89),(7033,347,41,42993,0,0,0,0,0,'Spicy Fried Herring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,89),(8082,923,41,22192,0,0,0,0,0,'Bloodkelp Elixir of Dodging','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,89),(4666,346,41,4600,0,0,0,0,0,'Cherry Grog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,90),(7092,347,41,27660,0,0,0,0,0,'Talbuk Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,90),(8081,923,41,37878,0,0,0,0,0,'Worg\'s Blood Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,90),(4667,346,41,8079,0,0,0,0,0,'Conjured Crystal Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,91),(7028,347,41,12211,0,0,0,0,0,'Spiced Wolf Ribs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,91),(8080,923,41,40076,0,0,0,0,0,'Guru\'s Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,91),(4668,346,41,2288,0,0,0,0,0,'Conjured Fresh Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,92),(7093,347,41,43490,0,0,0,0,0,'Tasty Cupcake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,92),(8079,923,41,40070,0,0,0,0,0,'Spellpower Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,92),(4669,346,41,22018,0,0,0,0,0,'Conjured Glacier Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,93),(7094,347,41,18045,0,0,0,0,0,'Tender Wolf Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,93),(8078,923,41,40068,0,0,0,0,0,'Wrath Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,93),(4670,346,41,34062,0,0,0,0,0,'Conjured Manna Biscuit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,94),(7043,347,41,41729,0,0,0,0,0,'Stewed Drakeflesh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,94),(8077,923,41,3826,0,0,0,0,0,'Mighty Troll\'s Blood Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,94),(4671,346,41,8077,0,0,0,0,0,'Conjured Mineral Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,95),(7095,347,41,34757,0,0,0,0,0,'Very Burnt Worg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,95),(8076,923,41,3382,0,0,0,0,0,'Weak Troll\'s Blood Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,95),(4672,346,41,30703,0,0,0,0,0,'Conjured Mountain Spring Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,96),(6867,347,41,7806,0,0,0,0,0,'Lollipop','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,96),(8075,923,41,20007,0,0,0,0,0,'Mageblood Elixir','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,96),(4673,346,41,2136,0,0,0,0,0,'Conjured Purified Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,97),(7038,347,41,29453,0,0,0,0,0,'Sporeggar Mushroom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,97),(8073,923,41,12820,0,0,0,0,0,'Winterfall Firewater','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,97),(4674,346,41,8078,0,0,0,0,0,'Conjured Sparkling Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,98),(7096,347,41,16167,0,0,0,0,0,'Versicolor Treat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,98),(8071,923,41,12459,0,0,0,0,0,'Juju Escape','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,98),(4675,346,41,3772,0,0,0,0,0,'Conjured Spring Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,99),(7034,347,41,33872,0,0,0,0,0,'Spicy Hot Talbuk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,99),(8069,923,41,12455,0,0,0,0,0,'Juju Ember','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,99),(4676,346,41,5350,0,0,0,0,0,'Conjured Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,100),(7097,347,41,28112,0,0,0,0,0,'Underspore Pod','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,100),(8067,923,41,11563,0,0,0,0,0,'Crystal Force','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,100),(4677,346,41,12003,0,0,0,0,0,'Dark Dwarven Lager','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,101),(6694,347,41,5527,0,0,0,0,0,'Goblin Deviled Clams','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,101),(8065,923,41,44331,0,0,0,0,0,'Elixir of Lightning Speed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,101),(4678,346,41,19221,0,0,0,0,0,'Darkmoon Special Reserve','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,102),(7098,347,41,16766,0,0,0,0,0,'Undermine Clam Chowder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,102),(8064,923,41,44330,0,0,0,0,0,'Elixir of Armor Piercing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,102),(4679,346,41,28284,0,0,0,0,0,'Don Carlos Tequila','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,103),(7099,347,41,12763,0,0,0,0,0,'Un\'Goro Etherfruit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,103),(8063,923,41,44329,0,0,0,0,0,'Elixir of Expertise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',0,0,0,0,103),(4680,346,41,32668,0,0,0,0,0,'Dos Ogris','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,104),(7044,347,41,33048,0,0,0,0,0,'Stewed Trout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,104),(4681,346,41,17198,0,0,0,0,0,'Egg Nog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,105),(7029,347,41,34756,0,0,0,0,0,'Spiced Wyrm Burger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,105),(4682,346,41,4791,0,0,0,0,0,'Enchanted Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,106),(7100,347,41,35949,0,0,0,0,0,'Tundra Berries','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,106),(4683,346,41,32722,0,0,0,0,0,'Enriched Terocone Juice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,107),(7039,347,41,27656,0,0,0,0,0,'Sporeling Snack','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,107),(4684,346,41,29395,0,0,0,0,0,'Ethermead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,108),(7101,347,41,43001,0,0,0,0,0,'Tracker Snacks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,108),(4685,346,41,18287,0,0,0,0,0,'Evermurky','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,109),(7035,347,41,17222,0,0,0,0,0,'Spider Sausage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,109),(4686,346,41,28399,0,0,0,0,0,'Filtered Draenic Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,110),(7102,347,41,117,0,0,0,0,0,'Tough Jerky','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,110),(4687,346,41,19299,0,0,0,0,0,'Fizzy Faire Drink','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,111),(7103,347,41,34755,0,0,0,0,0,'Tender Shovelsteak Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,111),(4688,346,41,2594,0,0,0,0,0,'Flagon of Mead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,112),(6868,347,41,4592,0,0,0,0,0,'Longjaw Mud Snapper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,112),(4689,346,41,2593,0,0,0,0,0,'Flask of Port','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,113),(7104,347,41,29452,0,0,0,0,0,'Zangar Trout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,113),(4690,346,41,30457,0,0,0,0,0,'Gilneas Sparkling Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,114),(7045,347,41,36831,0,0,0,0,0,'Stolen Ribs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,114),(4691,346,41,10841,0,0,0,0,0,'Goldthorn Tea','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,115),(7105,347,41,27859,0,0,0,0,0,'Zangar Caps','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,115),(4692,346,41,17402,0,0,0,0,0,'Greatfather\'s Winter Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,116),(7040,347,41,23495,0,0,0,0,0,'Springpaw Appetizer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,116),(4693,346,41,17196,0,0,0,0,0,'Holiday Spirits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,117),(7030,347,41,17408,0,0,0,0,0,'Spicy Beefstick','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,117),(4694,346,41,34411,0,0,0,0,0,'Hot Apple Cider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,118),(7106,347,41,34750,0,0,0,0,0,'Wyrm Delight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,118),(4695,346,41,1179,0,0,0,0,0,'Ice Cold Milk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,119),(7036,347,41,8957,0,0,0,0,0,'Spinefin Halibut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,119),(4696,346,41,4595,0,0,0,0,0,'Junglevine Wine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,120),(7107,347,41,21235,0,0,0,0,0,'Winter Veil Roast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,120),(4697,346,41,1205,0,0,0,0,0,'Melon Juice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,121),(7031,347,41,34768,0,0,0,0,0,'Spicy Blue Nettlefish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,121),(4698,346,41,18288,0,0,0,0,0,'Molasses Firewater','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,122),(7108,347,41,21236,0,0,0,0,0,'Winter Veil Loaf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,122),(4699,346,41,1645,0,0,0,0,0,'Moonberry Juice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,123),(7041,347,41,16170,0,0,0,0,0,'Steamed Mandu','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,123),(4700,346,41,21721,0,0,0,0,0,'Moonglow','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,124),(7109,347,41,21254,0,0,0,0,0,'Winter Veil Cookie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,124),(4701,346,41,8766,0,0,0,0,0,'Morning Glory Dew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,125),(6869,347,41,42434,0,0,0,0,0,'Lovely Cake Slice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,125),(4702,346,41,23848,0,0,0,0,0,'Netehrgarde Bitter','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,126),(7110,347,41,21240,0,0,0,0,0,'Winter Veil Candy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,126),(4703,346,41,38432,0,0,0,0,0,'Plugger\'s Blackrock Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,127),(7046,347,41,33866,0,0,0,0,0,'Stormchops','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,127),(4704,346,41,27860,0,0,0,0,0,'Purified Draenic Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,128),(7111,347,41,13755,0,0,0,0,0,'Winter Squid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,128),(4705,346,41,159,0,0,0,0,0,'Refreshing Spring Water','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,129),(7112,347,41,22324,0,0,0,0,0,'Winter Kimchi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,129),(4706,346,41,21151,0,0,0,0,0,'Rumsey Rum Black Label','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,130),(6448,347,41,19301,0,0,0,0,0,'Alterac Manna Biscuit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,130),(4707,346,41,21114,0,0,0,0,0,'Rumsey Rum Dark','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,131),(6695,347,41,27666,0,0,0,0,0,'Golden Fish Sticks','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,131),(4708,346,41,20709,0,0,0,0,0,'Rumsey Rum Light','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,132),(7113,347,41,16169,0,0,0,0,0,'Wild Ricecake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,132),(4709,346,41,29454,0,0,0,0,0,'Silverwine','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,133),(6870,347,41,27635,0,0,0,0,0,'Lynx Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,133),(4710,346,41,2596,0,0,0,0,0,'Skin of Dwarven Stout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,134),(7114,347,41,3771,0,0,0,0,0,'Wild Hog Shank','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,134),(4711,346,41,3703,0,0,0,0,0,'Southshore Stout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,135),(6696,347,41,4539,0,0,0,0,0,'Goldenbark Apple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,135),(4712,346,41,29401,0,0,0,0,0,'Sparkling Southshore Cider','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,136),(7115,347,41,21552,0,0,0,0,0,'Striped Yellowtail','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,136),(4713,346,41,32455,0,0,0,0,0,'Star\'s Lament','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,137),(6871,347,41,29394,0,0,0,0,0,'Lyribread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,137),(6942,346,41,1119,0,0,0,0,0,'Bottled Spirits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,138),(7116,347,41,11951,0,0,0,0,0,'Whipper Root Tuber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,138),(6872,347,41,27855,0,0,0,0,0,'Mag\'har Grainbread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,139),(6955,346,41,33444,0,0,0,0,0,'Pungent Seal Whey','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,139),(4714,346,41,32453,0,0,0,0,0,'Star\'s Tears','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,140),(7117,347,41,733,0,0,0,0,0,'Westfall Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,140),(6943,346,41,2595,0,0,0,0,0,'Jug of Bourbon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,141),(7118,347,41,27659,0,0,0,0,0,'Warp Burger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,141),(6555,347,41,42778,0,0,0,0,0,'Crusader\'s Rations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,142),(6956,346,41,33445,0,0,0,0,0,'Honeymint Tea','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,142),(4715,346,41,17403,0,0,0,0,0,'Steamwheedle Fizzy Spirits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,143),(7119,347,41,29450,0,0,0,0,0,'Telaari Grapes','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,143),(6572,347,41,33924,0,0,0,0,0,'Delicious Chocolate Cake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,144),(6944,346,41,2686,0,0,0,0,0,'Thunder Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,144),(6873,347,41,29448,0,0,0,0,0,'Mag\'har Mild Cheese','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,145),(6957,346,41,35720,0,0,0,0,0,'Lord of Frost\'s Private Label','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,145),(4716,346,41,38466,0,0,0,0,0,'Sulfuron Slammer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,146),(7120,347,41,4537,0,0,0,0,0,'Tek\'Abim Banana','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,146),(6697,347,41,3666,0,0,0,0,0,'Gooey Spider Cake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,147),(6945,346,41,2894,0,0,0,0,0,'Rhapsody Malt','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,147),(6958,346,41,35954,0,0,0,0,0,'Sweetened Goat\'s Milk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,148),(7121,347,41,3728,0,0,0,0,0,'Tasty Lion Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,148),(4717,346,41,1708,0,0,0,0,0,'Sweet Nectar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,149),(7122,347,41,27858,0,0,0,0,0,'Sunspring Carp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,149),(6874,347,41,34748,0,0,0,0,0,'Mammoth Meal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,150),(6959,346,41,37253,0,0,0,0,0,'Frostberry Juice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,150),(6698,347,41,724,0,0,0,0,0,'Goretusk Liver Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,151),(6946,346,41,5265,0,0,0,0,0,'Watered-down Beer','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,151),(4718,346,41,7676,0,0,0,0,0,'Thistle Tea','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,152),(7123,347,41,5477,0,0,0,0,0,'Strider Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,152),(6875,347,41,24539,0,0,0,0,0,'Marsh Lichen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,153),(6960,346,41,38350,0,0,0,0,0,'Winterfin \"Depth Charge\"','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,153),(6947,346,41,5342,0,0,0,0,0,'Raptor Punch','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,154),(7124,347,41,7228,0,0,0,0,0,'Tigule and Foror\'s Strawberry Ice Cream','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,154),(5190,346,41,23586,0,0,0,0,0,'Aerie Peak Pale Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,155),(6876,347,41,35953,0,0,0,0,0,'Mead Basted Caribou','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,155),(6948,346,41,9260,0,0,0,0,0,'Volatile Rum','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,156),(7125,347,41,4540,0,0,0,0,0,'Tough Hunk of Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,156),(6556,347,41,33449,0,0,0,0,0,'Crusty Flatbread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,157),(6961,346,41,38698,0,0,0,0,0,'Bitter Plasma','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,157),(5191,346,41,37900,0,0,0,0,0,'Aromatic Honey Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,158),(6699,347,41,17407,0,0,0,0,0,'Graccu\'s Homemade Meat Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,158),(6877,347,41,34754,0,0,0,0,0,'Mega Mammoth Meal','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,159),(6949,346,41,9360,0,0,0,0,0,'Cuergo\'s Gold','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,159),(6878,347,41,13934,0,0,0,0,0,'Mightfish Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,160),(6962,346,41,39520,0,0,0,0,0,'Kungaloosh','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,160),(5192,346,41,37490,0,0,0,0,0,'Aromatic Honey Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,161),(6451,347,41,42942,0,0,0,0,0,'Baked Manta Ray','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,161),(6573,347,41,6522,0,0,0,0,0,'Deviate Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,162),(6950,346,41,9361,0,0,0,0,0,'Cuergo\'s Gold with Worm','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,162),(6879,347,41,34758,0,0,0,0,0,'Mighty Rhino Dogs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,163),(6963,346,41,40035,0,0,0,0,0,'Honey Mead','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,163),(5193,346,41,37903,0,0,0,0,0,'Blackrock Lager','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,164),(6700,347,41,21215,0,0,0,0,0,'Graccu\'s Mince Meat Fruitcake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,164),(6880,347,41,32686,0,0,0,0,0,'Mingo\'s Fortune Giblets','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,165),(6964,346,41,40036,0,0,0,0,0,'Snowplum Brandy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,165),(6701,347,41,34753,0,0,0,0,0,'Great Feast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,166),(6951,346,41,11846,0,0,0,0,0,'Wizbang\'s Special Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,166),(5194,346,41,37493,0,0,0,0,0,'Blackrock Lager','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,167),(6881,347,41,8364,0,0,0,0,0,'Mithril Head Trout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,167),(5195,346,41,37906,0,0,0,0,0,'Binary Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,168),(6882,347,41,11415,0,0,0,0,0,'Mixed Berries','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,168),(6557,347,41,4599,0,0,0,0,0,'Cured Ham Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,169),(6968,346,41,43086,0,0,0,0,0,'Fresh Apple Juice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,169),(6702,347,41,34760,0,0,0,0,0,'Grilled Bonescale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,170),(6953,346,41,18300,0,0,0,0,0,'Hyjal Nectar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,170),(6883,347,41,4542,0,0,0,0,0,'Moist Cornbread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,171),(6966,346,41,40357,0,0,0,0,0,'Grizzleberry Juice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,171),(5196,346,41,37496,0,0,0,0,0,'Binary Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,172),(6884,347,41,31672,0,0,0,0,0,'Mon\'Nathal Shortribs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,172),(6454,347,41,27636,0,0,0,0,0,'Bat Bites','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,173),(6954,346,41,23704,0,0,0,0,0,'Eversong Port','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,173),(6574,347,41,29393,0,0,0,0,0,'Diamond Berries','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,174),(6967,346,41,42777,0,0,0,0,0,'Crusader\'s Waterskin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,174),(6885,347,41,12218,0,0,0,0,0,'Monster Omelet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,175),(9498,346,41,1262,0,0,0,0,0,'Keg of Thunderbrew Lager','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,175),(6703,347,41,9681,0,0,0,0,0,'Grilled King Crawler Legs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,176),(9499,346,41,37898,0,0,0,0,0,'Wild Winter Pilsner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,176),(6886,347,41,4602,0,0,0,0,0,'Moon Harvest Pumpkin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,177),(9500,346,41,37901,0,0,0,0,0,'Metok\'s Bubble Bock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,177),(6704,347,41,27664,0,0,0,0,0,'Grilled Mudfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,178),(9501,346,41,37902,0,0,0,0,0,'Springtime Stout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,178),(6887,347,41,18632,0,0,0,0,0,'Moonbrook Riot Taffy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,179),(9502,346,41,37904,0,0,0,0,0,'Stranglethorn Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,179),(6888,347,41,28486,0,0,0,0,0,'Moser\'s Magnificent Muffin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,180),(10498,346,41,37497,0,0,0,0,0,'Autumnal Acorn Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,180),(6558,347,41,3665,0,0,0,0,0,'Curiously Tasty Omelet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,181),(10499,346,41,37498,0,0,0,0,0,'Bartlett\'s Bitter Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,181),(6705,347,41,34762,0,0,0,0,0,'Grilled Sculpin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,182),(10500,346,41,37495,0,0,0,0,0,'Draenic Pale Ale','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,182),(6889,347,41,4544,0,0,0,0,0,'Mulgore Spice Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,183),(10501,346,41,37489,0,0,0,0,0,'Izzard\'s Ever Flavor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,183),(6890,347,41,3663,0,0,0,0,0,'Murloc Fin Soup','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,184),(10502,346,41,37899,0,0,0,0,0,'Izzard\'s Ever Flavor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,184),(6456,347,41,2888,0,0,0,0,0,'Beer Basted Boar Ribs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,185),(10503,346,41,37499,0,0,0,0,0,'Lord of Frost\'s Private Label','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,185),(6575,347,41,5478,0,0,0,0,0,'Dig Rat Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,186),(10504,346,41,37491,0,0,0,0,0,'Metok\'s Bubble Bock','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,186),(6891,347,41,3770,0,0,0,0,0,'Mutton Chop','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,187),(10505,346,41,23492,0,0,0,0,0,'Suntouched Special Reserve','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,187),(6706,347,41,30355,0,0,0,0,0,'Grilled Shadowmoon Tuber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,188),(10506,346,41,37492,0,0,0,0,0,'Springtime Stout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,188),(6892,347,41,12214,0,0,0,0,0,'Mystery Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,189),(10618,346,41,46319,0,0,0,0,0,'Tournament Brew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,189),(6707,347,41,13928,0,0,0,0,0,'Grilled Squid','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,190),(10978,346,41,37488,0,0,0,0,0,'Wild Winter Pilsner','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,190),(6893,347,41,34780,0,0,0,0,0,'Naaru Ration','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,191),(6894,347,41,13931,0,0,0,0,0,'Nightfin Soup','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,192),(6559,347,41,42998,0,0,0,0,0,'Cuttlesteak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,193),(6708,347,41,11444,0,0,0,0,0,'Grim Guzzler Boar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,194),(6895,347,41,34747,0,0,0,0,0,'Northern Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,195),(6896,347,41,32685,0,0,0,0,0,'Ogri\'la Chicken Fingers','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,196),(6484,347,41,12213,0,0,0,0,0,'Carrion Surprise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,197),(6576,347,41,21023,0,0,0,0,0,'Dirge\'s Kickin\' Chimaerok Chops','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,198),(6897,347,41,30358,0,0,0,0,0,'Oronok\'s Tuber of Agility','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,199),(6709,347,41,40356,0,0,0,0,0,'Grizzleberries','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,200),(6898,347,41,30357,0,0,0,0,0,'Oronok\'s Tuber of Agility','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,201),(6710,347,41,19995,0,0,0,0,0,'Harvest Boar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,202),(6899,347,41,30361,0,0,0,0,0,'Oronok\'s Tuber of Spell Power','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,203),(6900,347,41,30359,0,0,0,0,0,'Oronok\'s Tuber of Strength','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,204),(6560,347,41,42431,0,0,0,0,0,'Dalaran Brownie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,205),(6711,347,41,19696,0,0,0,0,0,'Harvest Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,206),(6901,347,41,38427,0,0,0,0,0,'Pickled Egg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,207),(6902,347,41,34765,0,0,0,0,0,'Pickled Fangtooth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,208),(6483,347,41,17344,0,0,0,0,0,'Candy Cane','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,209),(6561,347,41,43268,0,0,0,0,0,'Dalaran Clam Chowder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,210),(6903,347,41,19305,0,0,0,0,0,'Pickled Kodo Foot','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,211),(6712,347,41,19996,0,0,0,0,0,'Harvest Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,212),(6904,347,41,27665,0,0,0,0,0,'Poached Bluefish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,213),(6577,347,41,12217,0,0,0,0,0,'Dragonbreath Chili','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,214),(6905,347,41,35951,0,0,0,0,0,'Poached Emperor Salmon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,215),(6906,347,41,34764,0,0,0,0,0,'Poached Nettlefish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,216),(6713,347,41,19994,0,0,0,0,0,'Harvest Fruit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,217),(6714,347,41,2287,0,0,0,0,0,'Haunch of Meat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,218),(6907,347,41,34766,0,0,0,0,0,'Poached Northern Sculpin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,219),(6908,347,41,13932,0,0,0,0,0,'Poached Sunscale Salmon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,220),(6482,347,41,7807,0,0,0,0,0,'Candy Bar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,221),(6562,347,41,42430,0,0,0,0,0,'Dalaran Doughnut','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,222),(6909,347,41,21033,0,0,0,0,0,'Radish Kimchi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,223),(6715,347,41,43492,0,0,0,0,0,'Haunted Herring','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,224),(6910,347,41,5095,0,0,0,0,0,'Rainbow Fin Albacore','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,225),(6716,347,41,961,0,0,0,0,0,'Healing Herb','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,226),(6911,347,41,27655,0,0,0,0,0,'Ravager Dog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,227),(6912,347,41,28501,0,0,0,0,0,'Ravager Egg Omelet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,228),(6481,347,41,11584,0,0,0,0,0,'Cactus Apple Surprise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,229),(6578,347,41,43000,0,0,0,0,0,'Dragonfin Filet','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,230),(6913,347,41,4608,0,0,0,0,0,'Raw Black Truffle','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,231),(6717,347,41,42995,0,0,0,0,0,'Hearty Rhino','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,232),(6914,347,41,40358,0,0,0,0,0,'Raw Tallhorn Chunk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,233),(6563,347,41,414,0,0,0,0,0,'Dalaran Sharp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,234),(6915,347,41,19224,0,0,0,0,0,'Red Hot Wings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,235),(6718,347,41,16168,0,0,0,0,0,'Heaven Peach','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,236),(6916,347,41,42429,0,0,0,0,0,'Red Velvet Cupcake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,237),(6719,347,41,20074,0,0,0,0,0,'Heavy Crocolisk Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,238),(6917,347,41,4605,0,0,0,0,0,'Red-speckled Mushroom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,239),(6918,347,41,1082,0,0,0,0,0,'Redridge Goulash','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,240),(6480,347,41,21031,0,0,0,0,0,'Cabbage Kimchi','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,241),(6579,347,41,24009,0,0,0,0,0,'Dried Fruit Rations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,242),(6919,347,41,23172,0,0,0,0,0,'Refreshing Red Apple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,243),(6720,347,41,12215,0,0,0,0,0,'Heavy Kodo Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,244),(6920,347,41,34752,0,0,0,0,0,'Rhino Dogs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,245),(6564,347,41,12238,0,0,0,0,0,'Darkshore Grouper','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,246),(6921,347,41,42994,0,0,0,0,0,'Rhinolicious Wyrmsteak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,247),(6721,347,41,29292,0,0,0,0,0,'Helboar Bacon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,248),(6922,347,41,5057,0,0,0,0,0,'Ripe Watermelon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,249),(6722,347,41,24338,0,0,0,0,0,'Hellfire Spineleaf','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,250),(6923,347,41,12210,0,0,0,0,0,'Roast Raptor','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,251),(6924,347,41,2681,0,0,0,0,0,'Roasted Boar Meat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,252),(6479,347,41,27651,0,0,0,0,0,'Buzzard Bites','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,253),(6580,347,41,8948,0,0,0,0,0,'Dried King Bolete','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,254),(6925,347,41,27658,0,0,0,0,0,'Roasted Clefthoof','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,255),(6723,347,41,6888,0,0,0,0,0,'Herb Baked Egg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,256),(6926,347,41,5474,0,0,0,0,0,'Roasted Kodo Meat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,257),(6565,347,41,2070,0,0,0,0,0,'Darnassian Bleu','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,258),(6927,347,41,24105,0,0,0,0,0,'Roasted Moongraze Tenderloin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,259),(6724,347,41,17406,0,0,0,0,0,'Holiday Cheesewheel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,260),(6928,347,41,8952,0,0,0,0,0,'Roasted Quail','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,261),(6725,347,41,8950,0,0,0,0,0,'Homemade Cherry Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,262),(7047,347,41,1707,0,0,0,0,0,'Stormwind Brie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,263),(6929,347,41,34751,0,0,0,0,0,'Roasted Worg','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,264),(6930,347,41,38428,0,0,0,0,0,'Rock-Salted Pretzel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,265),(6478,347,41,33867,0,0,0,0,0,'Broiled Bloodfin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,266),(6581,347,41,24008,0,0,0,0,0,'Dried Mushroom Rations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,267),(6931,347,41,4594,0,0,0,0,0,'Rockscale Cod','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,268),(6726,347,41,20857,0,0,0,0,0,'Honey Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,269),(6932,347,41,18255,0,0,0,0,0,'Runn Tub Tuber','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,270),(6566,347,41,21030,0,0,0,0,0,'Darnassus Kimchi Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,271),(6933,347,41,18254,0,0,0,0,0,'Runn Tum Tuber Suprise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,272),(6727,347,41,33452,0,0,0,0,0,'Honey-Spiced Liichen','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,273),(6934,347,41,21217,0,0,0,0,0,'Sagefish Delight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,274),(6728,347,41,33053,0,0,0,0,0,'Hot Buttered Trout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,275),(6477,347,41,4593,0,0,0,0,0,'Bristly Whisker Catfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,276),(6582,347,41,2687,0,0,0,0,0,'Dry Pork Ribs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,277),(6729,347,41,3727,0,0,0,0,0,'Hot Lion Chops','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,278),(6567,347,41,19225,0,0,0,0,0,'Deep Fried Candybar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,279),(6730,347,41,13929,0,0,0,0,0,'Hot Smoked Bass','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,280),(6731,347,41,13851,0,0,0,0,0,'Hot Wolf Ribs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,281),(6476,347,41,35952,0,0,0,0,0,'Briny Hardcheese','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,282),(6583,347,41,13724,0,0,0,0,0,'Enriched Manna Biscuit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,283),(6732,347,41,34769,0,0,0,0,0,'Imperial Manta Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,284),(6568,347,41,8953,0,0,0,0,0,'Deep Fried Plantains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,285),(6733,347,41,29412,0,0,0,0,0,'Jessen\'s Special Slop','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,286),(6734,347,41,35565,0,0,0,0,0,'Juicy Bear Burger','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,287),(6466,347,41,42997,0,0,0,0,0,'Blackened Worg Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,288),(6584,347,41,20031,0,0,0,0,0,'Essence Mango','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,289),(6735,347,41,12212,0,0,0,0,0,'Jungle Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,290),(6569,347,41,17119,0,0,0,0,0,'Deeprun Rat Kabob','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,291),(6736,347,41,5472,0,0,0,0,0,'Kaldorei Spider Kabob','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,292),(6585,347,41,37452,0,0,0,0,0,'Fatty Bluefin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,293),(6737,347,41,33874,0,0,0,0,0,'Kibler\'s Bits','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,294),(6738,347,41,43488,0,0,0,0,0,'Last Weeks Mammoth','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,295),(6465,347,41,27661,0,0,0,0,0,'Blackened Trout','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,296),(6570,347,41,35710,0,0,0,0,0,'Delicious Baked Ham','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,297),(6739,347,41,5480,0,0,0,0,0,'Lean Venison','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,298),(6586,347,41,27662,0,0,0,0,0,'Feltail Delight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,299),(6740,347,41,12209,0,0,0,0,0,'Lean Wolf Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,300),(6741,347,41,7097,0,0,0,0,0,'Leg Meat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,301),(6464,347,41,27663,0,0,0,0,0,'Blackened Sporefish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,302),(6742,347,41,13933,0,0,0,0,0,'Lobster Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,303),(6463,347,41,42999,0,0,0,0,0,'Blackened Dragonfin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,304),(6743,347,41,6316,0,0,0,0,0,'Loch Frenzy Delight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,305),(6462,347,41,27657,0,0,0,0,0,'Blackened Basilisk','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,306),(6460,347,41,41751,0,0,0,0,0,'Black Mushroom','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,307),(6459,347,41,3726,0,0,0,0,0,'Big Bear Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,308),(6458,347,41,42432,0,0,0,0,0,'Berry Pie Slice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,309),(6457,347,41,18635,0,0,0,0,0,'Bellara\'s Nutterbar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,310),(6475,347,41,6290,0,0,0,0,0,'Brilliant Smallfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,311),(6474,347,41,38706,0,0,0,0,0,'Bowels \'n\' Brains','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,312),(6473,347,41,29293,0,0,0,0,0,'Bonestripper Buzzard Hotwings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,313),(6472,347,41,5525,0,0,0,0,0,'Boiled Clams','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,314),(6471,347,41,20516,0,0,0,0,0,'Bobbing Apple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,315),(6470,347,41,13546,0,0,0,0,0,'Bloodbelly Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,316),(6469,347,41,3220,0,0,0,0,0,'Blood Sausage','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,317),(6468,347,41,13810,0,0,0,0,0,'Blessed Sunfruit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,318),(6467,347,41,29449,0,0,0,0,0,'Bladespire Bagel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,319),(6455,347,41,16166,0,0,0,0,0,'Bean Soup','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,320),(6453,347,41,4457,0,0,0,0,0,'Barbecued Buzzard Wings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,321),(6450,347,41,43491,0,0,0,0,0,'Bad Clams','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,322),(6519,347,41,42428,0,0,0,0,0,'Carrot Cupcake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,323),(6546,347,41,43087,0,0,0,0,0,'Crisp Dalaran Apple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,324),(6545,347,41,2683,0,0,0,0,0,'Crab Cake','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,325),(6544,347,41,2684,0,0,0,0,0,'Coyote Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,326),(6543,347,41,23756,0,0,0,0,0,'Cookie\'s Jumbo Gumbo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,327),(6542,347,41,34770,0,0,0,0,0,'Cooked Northrend Fish 12 PH','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,328),(6541,347,41,13927,0,0,0,0,0,'Cooked Glossy Mightfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,329),(6540,347,41,2682,0,0,0,0,0,'Cooked Crab Claw','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,330),(6539,347,41,8076,0,0,0,0,0,'Conjured Sweet Roll','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,331),(6538,347,41,8075,0,0,0,0,0,'Conjured Sourdough','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,332),(6554,347,41,22645,0,0,0,0,0,'Crunchy Spider Surprise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,333),(6553,347,41,31673,0,0,0,0,0,'Crunchy Serpent','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,334),(6552,347,41,19306,0,0,0,0,0,'Crunchy Frog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,335),(6551,347,41,3662,0,0,0,0,0,'Crocolisk Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,336),(6550,347,41,3664,0,0,0,0,0,'Crocolisk Gumbo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,337),(6549,347,41,43004,0,0,0,0,0,'Critter Bites','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,338),(6548,347,41,5479,0,0,0,0,0,'Crispy Lizard Tail','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,339),(6547,347,41,12224,0,0,0,0,0,'Crispy Bat Wing','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,340),(6537,347,41,1114,0,0,0,0,0,'Conjured Rye','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,341),(6536,347,41,1487,0,0,0,0,0,'Conjured Pumpernickel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,342),(6535,347,41,5349,0,0,0,0,0,'Conjured Muffin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,343),(6534,347,41,43523,0,0,0,0,0,'Conjured Mana Strudel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,344),(6533,347,41,43518,0,0,0,0,0,'Conjured Mana Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,345),(6532,347,41,34062,0,0,0,0,0,'Conjured Mana Biscuit','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,346),(6531,347,41,22019,0,0,0,0,0,'Conjured Croissant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,347),(6530,347,41,22895,0,0,0,0,0,'Conjured Cinnamon Roll','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,348),(6529,347,41,1113,0,0,0,0,0,'Conjured Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,349),(6528,347,41,29451,0,0,0,0,0,'Clefthoof Ribs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,350),(6527,347,41,33004,0,0,0,0,0,'Clamlette Surprise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,351),(6526,347,41,16971,0,0,0,0,0,'Clamlette Surprise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,352),(6525,347,41,5526,0,0,0,0,0,'Clam Chowder','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,353),(6676,347,41,13930,0,0,0,0,0,'Filet of Redgill','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,354),(6449,347,41,8932,0,0,0,0,0,'Alterac Swiss','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,355),(6688,347,41,6807,0,0,0,0,0,'Frog Leg Stew','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,356),(6682,347,41,33052,0,0,0,0,0,'Fisherman\'s Feast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,357),(6677,347,41,5476,0,0,0,0,0,'Fillet of Frenzy','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,358),(6689,347,41,37252,0,0,0,0,0,'Frostberries','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,359),(6520,347,41,35563,0,0,0,0,0,'Charred Bear Kabobs','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,360),(6683,347,41,5066,0,0,0,0,0,'Fissure Plant','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,361),(6678,347,41,33451,0,0,0,0,0,'Fillet of Icefin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,362),(6690,347,41,27857,0,0,0,0,0,'Garadar Sharp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,363),(6521,347,41,2679,0,0,0,0,0,'Charred Wolf Meat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,364),(6684,347,41,4604,0,0,0,0,0,'Forest Mushroom Cap','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,365),(6679,347,41,3927,0,0,0,0,0,'Fine Aged Cheddar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,366),(6522,347,41,42433,0,0,0,0,0,'Chocolate Cake Slice','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,367),(6691,347,41,6038,0,0,0,0,0,'Giant Clam Scorcho','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,368),(6685,347,41,40359,0,0,0,0,0,'Fresh Eagle Meat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,369),(6680,347,41,34767,0,0,0,0,0,'Firecracker Salmon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,370),(6686,347,41,4541,0,0,0,0,0,'Freshly Baked Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,371),(6692,347,41,43478,0,0,0,0,0,'Gigantic Feast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,372),(6524,347,41,30155,0,0,0,0,0,'Clam Bar','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,373),(6969,347,41,33454,0,0,0,0,0,'Salted Venison','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,374),(6681,347,41,43015,0,0,0,0,0,'Fish Feast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,375),(6970,347,41,24072,0,0,0,0,0,'Sand Pear Pie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,376),(6687,347,41,23160,0,0,0,0,0,'Friendship Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,377),(7005,347,41,34759,0,0,0,0,0,'Smoked Rockfin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,378),(6985,347,41,35948,0,0,0,0,0,'Savory Snowplum','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,379),(6995,347,41,40202,0,0,0,0,0,'Sizzling Grizzly Flank','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,380),(6971,347,41,34761,0,0,0,0,0,'Sauteed Goby','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,381),(7000,347,41,43480,0,0,0,0,0,'Small Feast','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,382),(6990,347,41,16171,0,0,0,0,0,'Shinsollo','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,383),(7015,347,41,11109,0,0,0,0,0,'Special Chicken Feed','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,384),(7010,347,41,4538,0,0,0,0,0,'Snapvine Watermelon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,385),(6693,347,41,17197,0,0,0,0,0,'Gingerbread Cookie','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,386),(7011,347,41,4601,0,0,0,0,0,'Soft Banana Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,387),(7006,347,41,21072,0,0,0,0,0,'Smoked Sagefish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,388),(7001,347,41,4656,0,0,0,0,0,'Small Pumpkin','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,389),(6996,347,41,27856,0,0,0,0,0,'Skethyl Berries','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,390),(6991,347,41,4536,0,0,0,0,0,'Shiny Red Apple','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,391),(6986,347,41,8243,0,0,0,0,0,'Scooby Snack','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,392),(7016,347,41,30816,0,0,0,0,0,'Spice Bread','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,393),(7007,347,41,34763,0,0,0,0,0,'Smoked Salmon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,394),(7002,347,41,6890,0,0,0,0,0,'Smoked Bear Meat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,395),(6972,347,41,1326,0,0,0,0,0,'Sauteed Sunfish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,396),(6997,347,41,33825,0,0,0,0,0,'Skullfish Soup','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,397),(6992,347,41,34125,0,0,0,0,0,'Shoveltusk Soup','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,398),(6987,347,41,5473,0,0,0,0,0,'Scorpid Surprise','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,399),(7017,347,41,19304,0,0,0,0,0,'Spiced Beef Jerky','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,400),(7012,347,41,3729,0,0,0,0,0,'Soothing Turtle Bisque','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,401),(6523,347,41,7808,0,0,0,0,0,'Chocolate Square','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,402),(7018,347,41,12216,0,0,0,0,0,'Spiced Chili Crab','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,403),(7003,347,41,30610,0,0,0,0,0,'Smoked Black Bear Meat','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,404),(6998,347,41,32721,0,0,0,0,0,'Skyguard Rations','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,405),(6993,347,41,34749,0,0,0,0,0,'Shoveltusk Steak','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,406),(6988,347,41,1017,0,0,0,0,0,'Seasoned Wolf Kabob','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,407),(7013,347,41,33443,0,0,0,0,0,'Sour Goat Cheese','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,408),(7008,347,41,27854,0,0,0,0,0,'Smoked Talbuk Venison','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,409),(7004,347,41,20452,0,0,0,0,0,'Smoked Desert Dumplings','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,410),(6973,347,41,6657,0,0,0,0,0,'Savory Deviate Delight','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,411),(6994,347,41,6299,0,0,0,0,0,'Sickly Looking Fish','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,412),(6999,347,41,787,0,0,0,0,0,'Slitherskin Mackerel','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,413),(6989,347,41,3448,0,0,0,0,0,'Senggin Root','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,414),(7312,347,41,13935,0,0,0,0,0,'Baked Salmon','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,415),(7019,347,41,43005,0,0,0,0,0,'Spiced Mammoth Treats','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,416),(7014,347,41,35947,0,0,0,0,0,'Sparkling Frostcap','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,417),(7313,347,41,19223,0,0,0,0,0,'Darkmoon Dog','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,418),(7009,347,41,42996,0,0,0,0,0,'Snapper Extreme','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,419),(7314,347,41,422,0,0,0,0,0,'Dwarven Mild','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,420),(9518,347,41,43571,0,0,0,0,0,'Sewer Carp','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,421),(10658,347,41,45932,0,0,0,0,0,'Black Jelly','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','16712190',2,0,0,0,422); +UNLOCK TABLES; diff --git a/data/sql/db-characters/armory.sql b/data/sql/db-characters/armory.sql new file mode 100644 index 0000000..4207e7c --- /dev/null +++ b/data/sql/db-characters/armory.sql @@ -0,0 +1,49 @@ +/*Table structure for table `armory_character_stats` */ + +DROP TABLE IF EXISTS `armory_character_stats`; + +CREATE TABLE `armory_character_stats` ( + `guid` int(11) NOT NULL, + `data` longtext NOT NULL, + `save_date` int(11) DEFAULT NULL, + PRIMARY KEY (`guid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='World of Warcraft Armory table'; + +/*Table structure for table `armory_game_chart` */ + +DROP TABLE IF EXISTS `armory_game_chart`; + +CREATE TABLE `armory_game_chart` ( + `gameid` int(11) NOT NULL, + `teamid` int(11) NOT NULL, + `guid` int(11) NOT NULL, + `changeType` int(11) NOT NULL, + `ratingChange` int(11) NOT NULL, + `teamRating` int(11) NOT NULL, + `damageDone` int(11) NOT NULL, + `deaths` int(11) NOT NULL, + `healingDone` int(11) NOT NULL, + `damageTaken` int(11) NOT NULL, + `healingTaken` int(11) NOT NULL, + `killingBlows` int(11) NOT NULL, + `mapId` int(11) NOT NULL, + `start` int(11) NOT NULL, + `end` int(11) NOT NULL, + `date` timestamp NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (`gameid`,`teamid`,`guid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='WoWArmory Game Chart'; + +/*Table structure for table `character_feed_log` */ + +DROP TABLE IF EXISTS `character_feed_log`; + +CREATE TABLE `character_feed_log` ( + `guid` int(11) NOT NULL, + `type` smallint(1) NOT NULL, + `data` int(11) NOT NULL, + `date` int(11) DEFAULT NULL, + `counter` int(11) NOT NULL, + `difficulty` smallint(6) DEFAULT '-1', + `item_guid` int(11) DEFAULT '-1', + `item_quality` smallint(6) NOT NULL DEFAULT '-1' +) ENGINE=InnoDB DEFAULT CHARSET=utf8; \ No newline at end of file diff --git a/data/sql/db-characters/azth_achievements.sql b/data/sql/db-characters/azth_achievements.sql new file mode 100644 index 0000000..821dd90 --- /dev/null +++ b/data/sql/db-characters/azth_achievements.sql @@ -0,0 +1,7742 @@ +-- -------------------------------------------------------- +-- Host: 127.0.0.1 +-- Versione server: 5.6.34-log - MySQL Community Server (GPL) +-- S.O. server: Win64 +-- HeidiSQL Versione: 9.4.0.5125 +-- -------------------------------------------------------- + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8 */; +/*!50503 SET NAMES utf8mb4 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; + +-- Dump della struttura di tabella extra.azth_achievements +CREATE TABLE IF NOT EXISTS `azth_achievements` ( + `achievement` int(11) NOT NULL, + `criteria` int(11) NOT NULL, + `Points` int(11) DEFAULT NULL, + `Category` int(11) DEFAULT NULL, + `parentCategory` int(11) DEFAULT NULL, + `difficulty` float NOT NULL DEFAULT '1', + `levelMax` tinyint(8) unsigned NOT NULL DEFAULT '80', + `levelMin` tinyint(8) unsigned NOT NULL DEFAULT '1', + `level` tinyint(8) NOT NULL DEFAULT '-1', + `Comment` text, + `originalPoints` int(11) DEFAULT NULL, + `Name` text, + `Description` text, + `reward` int(11) DEFAULT '0', + `rewardCount` int(11) DEFAULT '0', + PRIMARY KEY (`achievement`,`criteria`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- Dump dei dati della tabella extra.azth_achievements: ~7.700 rows (circa) +DELETE FROM `azth_achievements`; +/*!40000 ALTER TABLE `azth_achievements` DISABLE KEYS */; +INSERT INTO `azth_achievements` (`achievement`, `criteria`, `Points`, `Category`, `parentCategory`, `difficulty`, `levelMax`, `levelMin`, `level`, `Comment`, `originalPoints`, `Name`, `Description`, `reward`, `rewardCount`) VALUES + (0, 0, 1, NULL, NULL, 1, 70, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL), + (0, 10784, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Flame Leviathan + 1 (10)', NULL, NULL), + (0, 10785, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Flame Leviathan + 2 (10)', NULL, NULL), + (0, 10786, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Flame Leviathan + 3 (10)', NULL, NULL), + (0, 10787, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Flame Leviathan + 4 (10)', NULL, NULL), + (0, 10788, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Flame Leviathan + 1 (25)', NULL, NULL), + (0, 10789, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Flame Leviathan + 2 (25)', NULL, NULL), + (0, 10790, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Flame Leviathan + 3 (25)', NULL, NULL), + (0, 10791, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Flame Leviathan + 4 (25)', NULL, NULL), + (0, 10792, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Kill XT Heart (10)', NULL, NULL), + (0, 10793, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Wound XT Heart (10)', NULL, NULL), + (0, 10794, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Kill XT Heart (25)', NULL, NULL), + (0, 10795, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Wound XT Heart (25)', NULL, NULL), + (0, 10796, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Molgeim last (10)', NULL, NULL), + (0, 10797, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Steelbreaker last (10)', NULL, NULL), + (0, 10798, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Molgeim last (25)', NULL, NULL), + (0, 10799, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Steelbreaker last (25)', NULL, NULL), + (0, 10800, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Force Thorim to enter the arena while Sif is present', NULL, NULL), + (0, 10801, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Force Thorim to enter the arena while Sif is present', NULL, NULL), + (0, 10802, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Freya +1 (10)', NULL, NULL), + (0, 10803, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Freya +2 (10)', NULL, NULL), + (0, 10804, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Freya +3 (10)', NULL, NULL), + (0, 10805, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Freya +1 (25)', NULL, NULL), + (0, 10806, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Freya +2 (25)', NULL, NULL), + (0, 10807, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Freya +3 (25)', NULL, NULL), + (0, 10808, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Mimiron (10)', NULL, NULL), + (0, 10809, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Mimiron (25)', NULL, NULL), + (0, 10810, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'General Vezax (10)', NULL, NULL), + (0, 10811, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'General Vezax (25)', NULL, NULL), + (0, 10812, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Yogg + 3 (10)', NULL, NULL), + (0, 10813, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Yogg + 2 (25)', NULL, NULL), + (0, 10814, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Yogg + 1 (10)', NULL, NULL), + (0, 10815, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Yogg + 0 (10)', NULL, NULL), + (0, 10816, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Yogg + 3 (25)', NULL, NULL), + (0, 10817, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Yogg + 2 (10)', NULL, NULL), + (0, 10818, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Yogg + 1 (25)', NULL, NULL), + (0, 10819, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Yogg + 0 (25)', NULL, NULL), + (0, 11320, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 11321, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 11322, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 11323, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 11324, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 11325, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 11326, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 11327, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 11328, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 11329, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 11882, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Beasts Attempt', NULL, NULL), + (0, 12199, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat the Beasts of Northrend', NULL, NULL), + (0, 12200, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat Lord Jaraxxus', NULL, NULL), + (0, 12201, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat the Faction Champions', NULL, NULL), + (0, 12202, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat the Twin Val\'kyr', NULL, NULL), + (0, 12203, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Complete the Trial of the Grand Crusader', NULL, NULL), + (0, 12204, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat the Beasts of Northrend', NULL, NULL), + (0, 12205, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat Lord Jaraxxus', NULL, NULL), + (0, 12206, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat the Faction Champions', NULL, NULL), + (0, 12207, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat the Twin Val\'kyr', NULL, NULL), + (0, 12208, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Complete the Trial of the Grand Crusader', NULL, NULL), + (0, 12209, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Beasts Attempt', NULL, NULL), + (0, 12210, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Beasts Attempt', NULL, NULL), + (0, 12211, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Beasts Attempt', NULL, NULL), + (0, 12212, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Jaraxxus Attempt', NULL, NULL), + (0, 12213, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Jaraxxus Attempt', NULL, NULL), + (0, 12214, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Jaraxxus Attempt', NULL, NULL), + (0, 12215, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Jaraxxus Attempt', NULL, NULL), + (0, 12216, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Faction Champions attempt', NULL, NULL), + (0, 12217, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Faction Champions attempt', NULL, NULL), + (0, 12218, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Faction Champions attempt', NULL, NULL), + (0, 12219, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Faction Champions attempt', NULL, NULL), + (0, 12220, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Val\'kyr Twins attempt', NULL, NULL), + (0, 12221, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Val\'kyr Twins attempt', NULL, NULL), + (0, 12222, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Val\'kyr Twins attempt', NULL, NULL), + (0, 12223, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Val\'kyr Twins attempt', NULL, NULL), + (0, 12224, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Anub\'arak attempt', NULL, NULL), + (0, 12225, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Anub\'arak attempt', NULL, NULL), + (0, 12226, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Anub\'arak attempt', NULL, NULL), + (0, 12227, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Anub\'arak attempt', NULL, NULL), + (0, 12519, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'The Black Knight', NULL, NULL), + (0, 12618, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Crimson Whelpling', NULL, NULL), + (0, 12619, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Azure Whelpling', NULL, NULL), + (0, 12620, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Emerald Whelpling', NULL, NULL), + (0, 12621, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Darting Hatchling', NULL, NULL), + (0, 12622, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Gundrak Hatchling', NULL, NULL), + (0, 12623, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Ravasaur Hatchling', NULL, NULL), + (0, 12624, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Razormaw Hatchling', NULL, NULL), + (0, 12625, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Razzashi Hatchling', NULL, NULL), + (0, 12626, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Chuck', NULL, NULL), + (0, 12627, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Deviate Hatchling', NULL, NULL), + (0, 12628, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Disgusting Oozeling', NULL, NULL), + (0, 12629, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Hyacinth Macaw', NULL, NULL), + (0, 12630, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Leaping Hatchling', NULL, NULL), + (0, 12631, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Mojo', NULL, NULL), + (0, 12632, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Scorchling', NULL, NULL), + (0, 12633, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Toothy', NULL, NULL), + (0, 12634, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Muckbreath', NULL, NULL), + (0, 12635, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Rivendare\'s Deathcharger', NULL, NULL), + (0, 12636, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Snarly', NULL, NULL), + (0, 13139, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Marrowgar', NULL, NULL), + (0, 13140, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Marrowgar', NULL, NULL), + (0, 13141, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Deathwhisper', NULL, NULL), + (0, 13142, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Deathwhisper', NULL, NULL), + (0, 13143, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Gunship', NULL, NULL), + (0, 13144, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Gunship', NULL, NULL), + (0, 13145, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Deathbringer', NULL, NULL), + (0, 13146, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Deathbringer', NULL, NULL), + (0, 13147, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Festergut', NULL, NULL), + (0, 13148, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Festergut', NULL, NULL), + (0, 13149, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Rotface', NULL, NULL), + (0, 13150, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Rotface', NULL, NULL), + (0, 13151, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Blood Princes', NULL, NULL), + (0, 13152, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Blood Princes', NULL, NULL), + (0, 13153, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Valithria', NULL, NULL), + (0, 13154, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Valithria', NULL, NULL), + (0, 13155, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Putricide', NULL, NULL), + (0, 13156, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Putricide', NULL, NULL), + (0, 13157, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Blood Queen', NULL, NULL), + (0, 13158, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Blood Queen', NULL, NULL), + (0, 13159, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Sindragosa', NULL, NULL), + (0, 13160, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Sindragosa', NULL, NULL), + (0, 13161, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Lich King', NULL, NULL), + (0, 13162, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Lich King', NULL, NULL), + (0, 13185, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Lord Marrowgar', NULL, NULL), + (0, 13186, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Lady Deathwhisper', NULL, NULL), + (0, 13187, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Claim victory in the Gunship Battle', NULL, NULL), + (0, 13188, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'The Deathbringer', NULL, NULL), + (0, 13189, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Festergut', NULL, NULL), + (0, 13190, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Rotface', NULL, NULL), + (0, 13191, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Professor Putricide', NULL, NULL), + (0, 13192, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat the Blood Prince Council', NULL, NULL), + (0, 13193, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat Blood-Queen Lana\'thel', NULL, NULL), + (0, 13194, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Rescue Valithiria Dreamwalker', NULL, NULL), + (0, 13195, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Sindragosa', NULL, NULL), + (0, 13196, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Lord Marrowgar', NULL, NULL), + (0, 13197, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Lady Deathwhisper', NULL, NULL), + (0, 13198, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Claim victory in the Gunship Battle', NULL, NULL), + (0, 13199, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'The Deathbringer', NULL, NULL), + (0, 13200, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Festergut', NULL, NULL), + (0, 13201, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Rotface', NULL, NULL), + (0, 13202, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Professor Putricide', NULL, NULL), + (0, 13203, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat the Blood Prince Council', NULL, NULL), + (0, 13204, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Defeat Blood-Queen Lana\'thel', NULL, NULL), + (0, 13205, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Rescue Valithiria Dreamwalker', NULL, NULL), + (0, 13206, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Sindragosa', NULL, NULL), + (0, 13207, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Marrowgar', NULL, NULL), + (0, 13208, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Marrowgar', NULL, NULL), + (0, 13209, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Deathwhisper', NULL, NULL), + (0, 13210, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Deathwhisper', NULL, NULL), + (0, 13211, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Gunship', NULL, NULL), + (0, 13212, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Gunship', NULL, NULL), + (0, 13213, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Deathbringer', NULL, NULL), + (0, 13214, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Deathbringer', NULL, NULL), + (0, 13215, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Festergut', NULL, NULL), + (0, 13216, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Festergut', NULL, NULL), + (0, 13217, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Rotface', NULL, NULL), + (0, 13218, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Rotface', NULL, NULL), + (0, 13219, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Blood Princes', NULL, NULL), + (0, 13220, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Blood Princes', NULL, NULL), + (0, 13221, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Valithria', NULL, NULL), + (0, 13222, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Valithria', NULL, NULL), + (0, 13223, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Putricide', NULL, NULL), + (0, 13224, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Putricide', NULL, NULL), + (0, 13225, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Blood Queen', NULL, NULL), + (0, 13226, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Blood Queen', NULL, NULL), + (0, 13227, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Sindragosa', NULL, NULL), + (0, 13228, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Sindragosa', NULL, NULL), + (0, 13229, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Lich King', NULL, NULL), + (0, 13230, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, 'Lich King', NULL, NULL), + (0, 13395, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13397, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13398, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13399, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13400, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13401, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13402, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13403, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13404, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13405, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13406, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13407, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13408, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13409, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13410, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13411, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13412, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13413, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13414, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13415, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13416, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13417, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13418, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13419, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13420, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13422, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13423, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13424, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13425, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (0, 13426, 1, NULL, NULL, 1, 80, 1, 1, NULL, NULL, NULL, '', NULL, NULL), + (6, 34, 10, 92, -1, 1, 10, 10, 10, NULL, 10, 'Level 10', 'Reach level 10', NULL, NULL), + (7, 35, 10, 92, -1, 1, 20, 20, 20, NULL, 10, 'Level 20', 'Reach level 20', NULL, NULL), + (8, 36, 10, 92, -1, 1, 30, 30, 30, NULL, 10, 'Level 30', 'Reach level 30', NULL, NULL), + (9, 37, 10, 92, -1, 1, 40, 40, 40, NULL, 10, 'Level 40', 'Reach level 40', NULL, NULL), + (10, 38, 10, 92, -1, 1, 50, 50, 50, NULL, 10, 'Level 50', 'Reach level 50', NULL, NULL), + (11, 39, 10, 92, -1, 1, 60, 60, 60, NULL, 10, 'Level 60', 'Reach level 60', NULL, NULL), + (12, 40, 10, 92, -1, 1, 70, 70, 70, NULL, 10, 'Level 70', 'Reach level 70', NULL, NULL), + (13, 41, 10, 92, -1, 1, 80, 80, 80, NULL, 10, 'Level 80', 'Reach level 80', NULL, NULL), + (15, 3689, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Plenty of Pets', 'Obtain 15 companion pets', NULL, NULL), + (16, 167, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Did Somebody Order a Knuckle Sandwich?', 'Unarmed skill raised to 400', NULL, NULL), + (31, 72, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'A Simple Re-Quest', 'Complete a daily quest every day for five consecutive days', NULL, NULL), + (32, 73, 10, 96, -1, 1, 80, 1, 1, NULL, 10, '2000 Quests Completed', 'Complete 2000 quests', NULL, NULL), + (33, 74, 10, 14863, 96, 1, 80, 70, 75, NULL, 10, 'Nothing Boring About Borean', 'Complete 130 quests in Boren Tundra', NULL, NULL), + (33, 5019, 10, 14863, 96, 1, 80, 70, 75, NULL, 10, 'Nothing Boring About Borean', 'Complete 130 quests in Borean Tundra', NULL, NULL), + (34, 75, 10, 14863, 96, 1, 80, 70, 75, NULL, 10, 'I\'ve Toured the Fjord', 'Complete 130 quests in Howling Fjord', NULL, NULL), + (35, 76, 10, 14863, 96, 1, 80, 70, 75, NULL, 10, 'Might of Dragonblight', 'Complete 115 quests in Dragonblight', NULL, NULL), + (36, 77, 10, 14863, 96, 1, 80, 70, 75, NULL, 10, 'The Empire of Zul\'Drak', 'Complete 100 Zul\'Drak Quests', NULL, NULL), + (37, 78, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Fo\' Grizzle My Shizzle', 'Complete 85 quests in Grizzly Hills', NULL, NULL), + (38, 79, 10, 14863, 96, 1, 80, 70, 75, NULL, 10, 'The Summit of Storm Peaks', 'Complete 100 Storm Peaks Quests', NULL, NULL), + (39, 80, 10, 14863, 96, 1, 80, 70, 75, NULL, 10, 'Into the Basin', 'Complete 75 Sholazar Basin quests.', NULL, NULL), + (40, 81, 10, 14863, 96, 1, 80, 70, 75, NULL, 10, 'Icecrown: The Final Goal', 'Complete 140 Icecrown Glacier quests', NULL, NULL), + (41, 82, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'Nothing Boring About Borean', NULL, NULL), + (41, 83, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'I\'ve Toured the Fjord', NULL, NULL), + (41, 84, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'Might of Dragonblight', NULL, NULL), + (41, 85, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'The Empire of Zul\'Drak', NULL, NULL), + (41, 86, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'Fo\' Grizzle My Shizzle', NULL, NULL), + (41, 87, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'The Summit of Storm Peaks', NULL, NULL), + (41, 88, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'Into the Basin', NULL, NULL), + (41, 89, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'Icecrown: The Final Goal', NULL, NULL), + (42, 1277, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Alterac Mountains', NULL, NULL), + (42, 1278, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Arathi Highlands', NULL, NULL), + (42, 1279, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Badlands', NULL, NULL), + (42, 1280, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Blasted Lands', NULL, NULL), + (42, 1281, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Burning Steppes', NULL, NULL), + (42, 1282, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Deadwind Pass', NULL, NULL), + (42, 1283, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Dun Morogh', NULL, NULL), + (42, 1284, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Duskwood', NULL, NULL), + (42, 1285, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Elwynn Forest', NULL, NULL), + (42, 1286, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Eastern Plaguelands', NULL, NULL), + (42, 1287, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Hillsbrad Foothills', NULL, NULL), + (42, 1288, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Loch Modan', NULL, NULL), + (42, 1289, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Redridge Mountains', NULL, NULL), + (42, 1290, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Tirisfal Glades', NULL, NULL), + (42, 1291, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Searing Gorge', NULL, NULL), + (42, 1292, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Silverpine Forest', NULL, NULL), + (42, 1293, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Stranglethorn Vale', NULL, NULL), + (42, 1294, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Swamp of Sorrows', NULL, NULL), + (42, 1295, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'The Hinterlands', NULL, NULL), + (42, 1296, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Western Plaguelands', NULL, NULL), + (42, 1297, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Westfall', NULL, NULL), + (42, 1298, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Wetlands', NULL, NULL), + (42, 1550, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Eversong Woods', NULL, NULL), + (42, 1551, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Ghostlands', NULL, NULL), + (42, 1796, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Eastern Kingdoms', 'Isle of Quel\'Danas', NULL, NULL), + (43, 1486, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Durotar', NULL, NULL), + (43, 1487, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Mulgore', NULL, NULL), + (43, 1488, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Teldrassil', NULL, NULL), + (43, 1489, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'The Barrens', NULL, NULL), + (43, 1490, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Darkshore', NULL, NULL), + (43, 1491, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Ashenvale', NULL, NULL), + (43, 1492, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Thousand Needles', NULL, NULL), + (43, 1493, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Stonetalon Mountains', NULL, NULL), + (43, 1494, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Desolace', NULL, NULL), + (43, 1495, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Dustwallow Marsh', NULL, NULL), + (43, 1496, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Feralas', NULL, NULL), + (43, 1497, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Tanaris Desert', NULL, NULL), + (43, 1498, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Azshara', NULL, NULL), + (43, 1499, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Felwood', NULL, NULL), + (43, 1500, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Un\'Goro Crater', NULL, NULL), + (43, 1501, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Moonglade', NULL, NULL), + (43, 1502, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Silithus', NULL, NULL), + (43, 1503, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Winterspring', NULL, NULL), + (43, 1600, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Azuremyst Isle', NULL, NULL), + (43, 1601, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Kalimdor', 'Bloodmyst Isle', NULL, NULL), + (44, 1782, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Outland', 'Hellfire Peninsula', NULL, NULL), + (44, 1783, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Outland', 'Zangarmarsh', NULL, NULL), + (44, 1784, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Outland', 'Terokkar Forest', NULL, NULL), + (44, 1785, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Outland', 'Nagrand', NULL, NULL), + (44, 1786, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Outland', 'Blade\'s Edge Mountains', NULL, NULL), + (44, 1787, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Outland', 'Netherstorm', NULL, NULL), + (44, 1788, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Outland', 'Shadowmoon Valley', NULL, NULL), + (45, 3904, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Northrend', 'Borean Tundra', NULL, NULL), + (45, 3905, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Northrend', 'Howling Fjord', NULL, NULL), + (45, 3906, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Northrend', 'Dragonblight', NULL, NULL), + (45, 3907, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Northrend', 'Grizzly Hills', NULL, NULL), + (45, 3908, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Northrend', 'Zul\'Drak', NULL, NULL), + (45, 3909, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Northrend', 'Sholazar Basin', NULL, NULL), + (45, 3910, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Northrend', 'Storm Peaks', NULL, NULL), + (45, 3911, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Northrend', 'Icecrown', NULL, NULL), + (45, 5298, 25, 97, -1, 1, 80, 1, 1, NULL, 25, 'Explore Northrend', 'Crystalsong Forest', NULL, NULL), + (46, 94, 50, 97, -1, 1, 80, 1, 1, NULL, 50, 'World Explorer', 'Eastern Kingdoms', NULL, NULL), + (46, 95, 50, 97, -1, 1, 80, 1, 1, NULL, 50, 'World Explorer', 'Kalimdor', NULL, NULL), + (46, 96, 50, 97, -1, 1, 80, 1, 1, NULL, 50, 'World Explorer', 'Outland', NULL, NULL), + (46, 97, 50, 97, -1, 1, 80, 1, 1, NULL, 50, 'World Explorer', 'Northrend', NULL, NULL), + (49, 100, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Alterac Valley victories', 'Alterac Valley victories', NULL, NULL), + (50, 5745, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Eye of the Storm victories', 'Eye of the Storm victories', NULL, NULL), + (51, 102, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Arathi Basin victories', 'Arathi Basin victories', NULL, NULL), + (52, 5747, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Warsong Gulch battles', 'Warsong Gulch', NULL, NULL), + (53, 104, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Alterac Valley battles', 'Alterac Valley battles', NULL, NULL), + (54, 105, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Eye of the Storm battles', 'Eye of the Storm battles', NULL, NULL), + (55, 106, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Arathi Basin battles', 'Arathi Basin battles', NULL, NULL), + (56, 107, 1, 124, 122, -0.3, 80, 1, 1, NULL, 0, 'Deaths in Warsong Gulch', 'Deaths in Warsong Gulch', NULL, NULL), + (57, 108, 1, 124, 122, -0.3, 80, 1, 1, NULL, 0, 'Deaths in Alterac Valley', 'Deaths in Alterac Valley', NULL, NULL), + (58, 456, 1, 124, 122, -0.3, 80, 1, 1, NULL, 0, 'Deaths from Drek\'Thar', 'Killed by Drek\'Thar', NULL, NULL), + (59, 110, 1, 124, 122, -0.3, 80, 1, 1, NULL, 0, 'Deaths in Arathi Basin', 'Arathi Basin Deaths', NULL, NULL), + (60, 111, 1, 122, 1, -1, 80, 1, 1, NULL, 0, 'Total deaths', 'Total deaths', NULL, NULL), + (73, 123, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Disgracin\' The Basin', 'Assault 3 bases in a single Arathi Basin battle', NULL, NULL), + (94, 5289, 1, 133, 1, 0, 80, 1, 1, NULL, 0, 'Quests abandoned', 'Quests abandoned', NULL, NULL), + (95, 0, 1, 133, 1, 0, 80, 1, 1, NULL, 0, 'Average quests completed per day', NULL, NULL, NULL), + (97, 4985, 1, 133, 1, 2, 80, 1, 1, NULL, 0, 'Daily quests completed', 'Daily quests complete', NULL, NULL), + (98, 3631, 3, 133, 1, 1, 80, 1, 1, NULL, 0, 'Quests completed', 'Total quests', NULL, NULL), + (98, 4984, 1, 133, 1, 2, 80, 1, 1, NULL, 0, 'Quests completed', 'Daily quests', NULL, NULL), + (99, 5732, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Ruins of Lordaeron matches', 'Ruins of Lordaeron matches', NULL, NULL), + (100, 5735, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Ring of Trials victories', 'Ring of Trials victories', NULL, NULL), + (101, 5730, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Ring of Trials matches', 'Ring of Trials matches', NULL, NULL), + (102, 5736, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Ruins of Lordaeron victories', 'Ruins of Lordaeron victories', NULL, NULL), + (103, 5729, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Circle of Blood matches', 'Circle of Blood matches', NULL, NULL), + (104, 5734, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Circle of Blood victories', 'Circle of Blood victories', NULL, NULL), + (105, 140, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Warsong Gulch victories', 'Warsong Gulch Victories', NULL, NULL), + (107, 4948, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Creatures killed', 'Beasts', NULL, NULL), + (107, 4949, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Creatures killed', 'Demons', NULL, NULL), + (107, 4950, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Creatures killed', 'Dragonkin', NULL, NULL), + (107, 4951, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Creatures killed', 'Elemental', NULL, NULL), + (107, 4952, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Creatures killed', 'Giant', NULL, NULL), + (107, 4953, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Creatures killed', 'Humanoid', NULL, NULL), + (107, 4954, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Creatures killed', 'Mechanical', NULL, NULL), + (107, 4955, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Creatures killed', 'Undead', NULL, NULL), + (107, 4956, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Creatures killed', 'Unspecified', NULL, NULL), + (107, 4957, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Creatures killed', 'Totems', NULL, NULL), + (108, 4958, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Critters killed', 'Critters killed', NULL, NULL), + (110, 0, 1, 14807, 1, 1, 80, 1, 1, 'ICC - Lich King', 0, 'Lich King 5-player boss killed the most', NULL, NULL, NULL), + (112, 147, 1, 126, 122, 1, 80, 1, 1, NULL, 0, 'Deaths from drowning', 'Deaths from drowning', NULL, NULL), + (113, 148, 1, 126, 122, 1, 80, 1, 1, NULL, 0, 'Deaths from fatigue', 'Deaths from fatigue', NULL, NULL), + (114, 149, 1, 126, 122, 1, 80, 1, 1, NULL, 0, 'Deaths from falling', 'Deaths from falling', NULL, NULL), + (115, 150, 1, 126, 122, 1, 80, 1, 1, NULL, 0, 'Deaths from fire and lava', 'Deaths from fire and lava', NULL, NULL), + (115, 151, 1, 126, 122, 1, 80, 1, 1, NULL, 0, 'Deaths from fire and lava', 'Deaths from fire and lava', NULL, NULL), + (116, 616, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Journeyman', 'Alchemy', NULL, NULL), + (116, 617, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Journeyman', 'Blacksmithing', NULL, NULL), + (116, 618, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Journeyman', 'Enchanting', NULL, NULL), + (116, 619, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Journeyman', 'Engineering', NULL, NULL), + (116, 620, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Journeyman', 'Herbalism', NULL, NULL), + (116, 621, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Journeyman', 'Inscription', NULL, NULL), + (116, 622, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Journeyman', 'Jewelcrafting', NULL, NULL), + (116, 623, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Journeyman', 'Leatherworking', NULL, NULL), + (116, 624, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Journeyman', 'Mining', NULL, NULL), + (116, 625, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Journeyman', 'Skinning', NULL, NULL), + (116, 626, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Journeyman', 'Tailoring', NULL, NULL), + (121, 168, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Journeyman Cook', 'Become a journeyman cook', NULL, NULL), + (122, 612, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Expert Cook', 'Become an expert cook', NULL, NULL), + (123, 613, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Artisan Cook', 'Become an artisan cook', NULL, NULL), + (124, 614, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Master Cook', 'Become a master cook', NULL, NULL), + (125, 615, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Grand Master Cook', 'Become a grand master cook', NULL, NULL), + (126, 835, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Journeyman Fisherman', 'Become a journeyman fisherman', NULL, NULL), + (127, 836, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Expert Fisherman', 'Become a expert fisherman', NULL, NULL), + (128, 837, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Artisan Fisherman', 'Become an artisan fisherman', NULL, NULL), + (129, 838, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Master Fisherman', 'Become a master fisherman', NULL, NULL), + (130, 839, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Grand Master Fisherman', 'Become a grand master fisherman', NULL, NULL), + (131, 840, 10, 172, 169, 1, 80, 1, 1, NULL, 10, 'Journeyman in First Aid', 'Become a journeyman in first aid', NULL, NULL), + (132, 841, 10, 172, 169, 1, 80, 1, 1, NULL, 10, 'Expert in First Aid', 'Become a expert in first aid', NULL, NULL), + (133, 842, 10, 172, 169, 1, 80, 1, 1, NULL, 10, 'Artisan in First Aid', 'Become an artisan in first aid', NULL, NULL), + (134, 843, 10, 172, 169, 1, 80, 1, 1, NULL, 10, 'Master in First Aid', 'Become a master in first aid', NULL, NULL), + (135, 844, 10, 172, 169, 1, 80, 1, 1, NULL, 10, 'Grand Master in First Aid', 'Become a grand master in first aid', NULL, NULL), + (137, 1831, 10, 172, 169, 1, 80, 1, 1, NULL, 10, 'Stocking Up', 'Create 500 Heavy Frostweave Bandages', NULL, NULL), + (141, 6799, 10, 172, 169, 1, 80, 1, 1, NULL, 10, 'Ultimate Triage', 'First Aid Below 5%', NULL, NULL), + (144, 3622, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Lurker Above', 'Fished up Lurker', NULL, NULL), + (150, 5274, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Fishing Diplomat', 'Orgrimmar', NULL, NULL), + (150, 5275, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Fishing Diplomat', 'Stormwind', NULL, NULL), + (153, 3851, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Abundant Oily Blackmouth School', NULL, NULL), + (153, 3852, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Abundant Firefin Snapper School', NULL, NULL), + (153, 3853, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Lesser Oily Blackmouth School', NULL, NULL), + (153, 3854, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'School of Deviate Fish', NULL, NULL), + (153, 3855, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Lesser Sagefish School', NULL, NULL), + (153, 3856, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Sparse Oily Blackmouth School', NULL, NULL), + (153, 3857, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Sparse Firefin Snapper School', NULL, NULL), + (153, 3858, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Sagefish School', NULL, NULL), + (153, 3859, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Oily Blackmouth School', NULL, NULL), + (153, 3860, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Firefin Snapper School', NULL, NULL), + (153, 3861, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Greater Sagefish School', NULL, NULL), + (153, 3862, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Teeming Oily Blackmouth School', NULL, NULL), + (153, 3863, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Teeming Firefin Snapper School', NULL, NULL), + (153, 3864, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Stonescale Eel Swarm', NULL, NULL), + (153, 3865, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Brackish Mixed School', NULL, NULL), + (153, 3866, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Bluefish School', NULL, NULL), + (153, 3867, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Mudfish School', NULL, NULL), + (153, 3868, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'School of Darter', NULL, NULL), + (153, 3869, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Highland Mixed School', NULL, NULL), + (153, 3870, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Sporefish School', NULL, NULL), + (153, 5276, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Barrelhead Goby School', NULL, NULL), + (153, 5278, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Borean Man O\' War School', NULL, NULL), + (153, 5279, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Deep Sea Monsterbelly School', NULL, NULL), + (153, 5280, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Dragonfin Angelfish School', NULL, NULL), + (153, 5281, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Fangtooth Herring School', NULL, NULL), + (153, 5282, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Glacial Salmon School', NULL, NULL), + (153, 5283, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Glassfin Minnow School', NULL, NULL), + (153, 5284, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Imperial Manta Ray School', NULL, NULL), + (153, 5285, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Moonglow Cuttlefish School', NULL, NULL), + (153, 5286, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Musselback Sculpin School', NULL, NULL), + (153, 5287, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Old Gnome and the Sea', 'Nettlefish School', NULL, NULL), + (154, 166, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Arathi Basin Victory', 'Win Arathi Basin', NULL, NULL), + (155, 176, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Arathi Basin Veteran', 'Complete 100 victories in Arathi Basin.', NULL, NULL), + (156, 1234, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Territorial Dominance', 'Win 10 Arathi Basin matches while controlling all 5 flags', NULL, NULL), + (157, 414, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'To The Rescue!', 'Defend 50 bases', NULL, NULL), + (158, 308, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Me and the Cappin\' Makin\' it Happen', 'Take 50 flags in Arathi Basin', NULL, NULL), + (159, 1237, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Let\'s Get This Done', 'Win in 6 minutes', NULL, NULL), + (161, 3804, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Resilient Victory', 'Overcome a 500 resource disadvantage', NULL, NULL), + (161, 3805, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Resilient Victory', 'Overcome a 500 resource disadvantage', NULL, NULL), + (161, 3806, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Resilient Victory', 'Overcome a 500 resource disadvantage', NULL, NULL), + (161, 3807, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Resilient Victory', 'Overcome a 500 resource disadvantage', NULL, NULL), + (161, 3808, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Resilient Victory', 'Overcome a 500 resource disadvantage', NULL, NULL), + (161, 3809, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Resilient Victory', 'Overcome a 500 resource disadvantage', NULL, NULL), + (161, 3810, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Resilient Victory', 'Overcome a 500 resource disadvantage', NULL, NULL), + (161, 3811, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Resilient Victory', 'Overcome a 500 resource disadvantage', NULL, NULL), + (161, 3812, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Resilient Victory', 'Overcome a 500 resource disadvantage', NULL, NULL), + (161, 3813, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Resilient Victory', 'Overcome a 500 resource disadvantage', NULL, NULL), + (162, 1235, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'We Had It All Along *cough*', 'Victory in Arathi Basin with a score of 1600 to 1590', NULL, NULL), + (165, 611, 20, 14802, 95, 1, 80, 1, 1, NULL, 20, 'Arathi Basin Perfection', 'Arathi Basin Shutout', NULL, NULL), + (166, 177, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Warsong Gulch Victory', 'Win Warsong Gulch', NULL, NULL), + (167, 221, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Warsong Gulch Veteran', 'Complete 100 victories in Warsong Gulch', NULL, NULL), + (168, 1236, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Warsong Gulch Perfection', 'Victory in Warsong Gulch with a shutout', NULL, NULL), + (178, 4990, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Enchanting formulae learned', 'Enchanting formulae known', NULL, NULL), + (178, 7225, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Enchanting formulae learned', 'Enchanting formulae known', NULL, NULL), + (181, 4991, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Items disenchanted', 'Disenchanted items', NULL, NULL), + (183, 5304, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Materials produced from disenchanting', '', NULL, NULL), + (189, 5376, 1, 141, 1, 1, 80, 1, 1, NULL, 0, 'Largest heal cast', 'Largest heal cast', NULL, NULL), + (193, 5373, 1, 141, 1, 1, 80, 1, 1, NULL, 0, 'Largest hit dealt', 'Largest hit dealt', NULL, NULL), + (197, 162, 1, 141, 1, 1, 80, 1, 1, NULL, 0, 'Total damage done', 'Total damage done', NULL, NULL), + (198, 4943, 1, 141, 1, 1, 80, 1, 1, NULL, 0, 'Total healing done', 'Total healing done', NULL, NULL), + (199, 416, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Capture the Flag', 'Capture the flag', NULL, NULL), + (200, 417, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Persistent Defender', 'Return the flag 50 times', NULL, NULL), + (201, 758, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Warsong Expedience', 'Win Warsong Gulch in under 7 minutes', NULL, NULL), + (202, 5601, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Quick Cap', 'Pick up flag while it\'s at the base', NULL, NULL), + (202, 5602, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Quick Cap', 'Cap in 75 seconds', NULL, NULL), + (203, 7020, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Not In My House', 'Kill 2 flag carriers before they leave the Silverwing Flag Room', NULL, NULL), + (204, 1802, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Ironman', '3 captures and no death', NULL, NULL), + (204, 1824, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Ironman', 'win warsong', NULL, NULL), + (206, 3698, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Supreme Defender', 'Horde Flag Carriers', NULL, NULL), + (207, 5605, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Save The Day', 'Carrying Horde Flag', NULL, NULL), + (207, 5606, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Save The Day', 'Carrying Alliance Flag', NULL, NULL), + (208, 222, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Eye of the Storm Victory', 'Win Eye of the Storm.', NULL, NULL), + (209, 223, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Eye of the Storm Veteran', 'Complete 100 victories in Eye of the Storm', NULL, NULL), + (211, 3693, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Storm Glory', 'Capture a flag with 4 bases held', NULL, NULL), + (212, 418, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Storm Capper', 'Capture the flag', NULL, NULL), + (213, 3685, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Stormtrooper', '5 Flag Carriers', NULL, NULL), + (214, 1240, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Flurry', 'Win in 6 minutes', NULL, NULL), + (216, 3353, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Bound for Glory', '3 caps and no death', NULL, NULL), + (218, 224, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Alterac Valley Victory', 'Win Alterac Valley.', NULL, NULL), + (219, 225, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Alterac Valley Veteran', 'Complete 100 victories in Alterac Valley', NULL, NULL), + (220, 1242, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Stormpike Perfection', 'Balinda and Vandaar survive', NULL, NULL), + (220, 1803, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Stormpike Perfection', 'Tower A1 owned by the Alliance', NULL, NULL), + (220, 1804, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Stormpike Perfection', 'Tower A1 owned by the Alliance', NULL, NULL), + (220, 1805, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Stormpike Perfection', 'Tower A3 owned by the Alliance', NULL, NULL), + (220, 1806, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Stormpike Perfection', 'Tower A4 owned by the Alliance', NULL, NULL), + (220, 1807, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Stormpike Perfection', 'Tower H1 owned by the Alliance', NULL, NULL), + (220, 1808, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Stormpike Perfection', 'Tower H2 owned by the Alliance', NULL, NULL), + (220, 1809, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Stormpike Perfection', 'Tower H3 owned by the Alliance', NULL, NULL), + (220, 1810, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Stormpike Perfection', 'Tower H4 owned by the Alliance', NULL, NULL), + (220, 1825, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Stormpike Perfection', 'win av', NULL, NULL), + (221, 419, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Alterac Grave Robber', 'Take 50 graveyards', NULL, NULL), + (222, 420, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Tower Defense', '50 towers defended', NULL, NULL), + (223, 6800, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'The Sickly Gazelle', 'Kill someone in the Field of Strife before they dismount', NULL, NULL), + (224, 3362, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Loyal Defender', '50 honorable kills in the Hall of the Frostwolf', NULL, NULL), + (225, 3386, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Everything Counts', 'Kobold Cave Owned', NULL, NULL), + (225, 3387, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Everything Counts', 'Trogg Cave Owned', NULL, NULL), + (226, 1241, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'The Alterac Blitz', 'Win in 6 minutes', NULL, NULL), + (227, 2400, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', 'Do more than 300,000 Damage in Alterac Valley', NULL, NULL), + (227, 2401, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', 'Do 300,000 Damage in Arathi Basin', NULL, NULL), + (227, 2402, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', 'Do 300,000 Damage in Warsong Gulch', NULL, NULL), + (227, 2403, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', 'Do 300,000 Damage in Eye of the Storm', NULL, NULL), + (227, 3364, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', '300,000 healing in av', NULL, NULL), + (227, 3365, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', '300,000 healing in ab', NULL, NULL), + (227, 3366, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', '300,000 healing in eots', NULL, NULL), + (227, 3367, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', '300,000 healing in wsg', NULL, NULL), + (227, 5076, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', 'Do 300,000 Damage in Strand of the Ancients', NULL, NULL), + (227, 5077, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', '300,000 healing in sota', NULL, NULL), + (227, 12378, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', '300,000 healing in Isle of Conquest', NULL, NULL), + (227, 12379, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Damage Control', 'Do 300,000 Damage in Isle of Conquest', NULL, NULL), + (229, 1820, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'The Grim Reaper', '30 hks in arathi', NULL, NULL), + (229, 1821, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'The Grim Reaper', '30 hks in av', NULL, NULL), + (229, 1822, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'The Grim Reaper', '30 hks in eots', NULL, NULL), + (229, 1823, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'The Grim Reaper', '30 hks in wsg', NULL, NULL), + (229, 12579, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'The Grim Reaper', '30 hks in ioc', NULL, NULL), + (230, 226, 50, 95, -1, 1, 80, 1, 1, NULL, 50, 'Battlemaster', 'Master of Alterac Valley', NULL, NULL), + (230, 227, 50, 95, -1, 1, 80, 1, 1, NULL, 50, 'Battlemaster', 'Master of Arathi Basin', NULL, NULL), + (230, 228, 50, 95, -1, 1, 80, 1, 1, NULL, 50, 'Battlemaster', 'Master of Eye of the Storm', NULL, NULL), + (230, 229, 50, 95, -1, 1, 80, 1, 1, NULL, 50, 'Battlemaster', 'Master of Warsong Gulch', NULL, NULL), + (230, 7640, 50, 95, -1, 1, 80, 1, 1, NULL, 50, 'Battlemaster', 'Master of Strand of the Ancients', NULL, NULL), + (231, 3368, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrecking Ball', 'Alterac Valley', NULL, NULL), + (231, 3369, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrecking Ball', 'Arathi Basin', NULL, NULL), + (231, 3370, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrecking Ball', 'Eye of the Storm', NULL, NULL), + (231, 3371, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrecking Ball', 'Warsong Gulch', NULL, NULL), + (231, 7623, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrecking Ball', 'Strand of the Ancients', NULL, NULL), + (231, 12578, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrecking Ball', 'Isle of Conquest', NULL, NULL), + (233, 3684, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Bloodthirsty Berserker', 'Berserking killing blow', NULL, NULL), + (238, 6798, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'An Honorable Kill', 'Achieve an honorable kill', NULL, NULL), + (239, 6792, 10, 95, -1, 1, 80, 1, 1, NULL, 10, '25000 Honorable Kills', 'Get 25000 honorable kills', NULL, NULL), + (245, 2359, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'That Takes Class', 'Death Knight', NULL, NULL), + (245, 2360, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'That Takes Class', 'Druid', NULL, NULL), + (245, 2361, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'That Takes Class', 'Hunter', NULL, NULL), + (245, 2362, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'That Takes Class', 'Mage', NULL, NULL), + (245, 2363, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'That Takes Class', 'Paladin', NULL, NULL), + (245, 2364, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'That Takes Class', 'Priest', NULL, NULL), + (245, 2365, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'That Takes Class', 'Rogue', NULL, NULL), + (245, 2366, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'That Takes Class', 'Shaman', NULL, NULL), + (245, 2367, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'That Takes Class', 'Warlock', NULL, NULL), + (245, 2368, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'That Takes Class', 'Warrior', NULL, NULL), + (246, 2369, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Know Thy Enemy', 'Blood Elf', NULL, NULL), + (246, 2370, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Know Thy Enemy', 'Orc', NULL, NULL), + (246, 2371, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Know Thy Enemy', 'Tauren', NULL, NULL), + (246, 2372, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Know Thy Enemy', 'Undead', NULL, NULL), + (246, 2373, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Know Thy Enemy', 'Troll', NULL, NULL), + (247, 2379, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Make Love, Not Warcraft', 'Hug a dead enemy', NULL, NULL), + (248, 3221, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Sunday\'s Finest', 'White Tuxedo Shirt', NULL, NULL), + (248, 3222, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Sunday\'s Finest', 'Black Tuxedo Pants', NULL, NULL), + (249, 3220, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Dressed for the Occasion', 'Elegant Dress', NULL, NULL), + (252, 3826, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'With a Little Helper from My Friends', '26157', NULL, NULL), + (252, 3827, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'With a Little Helper from My Friends', '26272', NULL, NULL), + (252, 3828, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'With a Little Helper from My Friends', '26273', NULL, NULL), + (252, 3829, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'With a Little Helper from My Friends', '26274', NULL, NULL), + (255, 409, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Bring Me The Head of... Oh Wait', 'Headless Horseman', NULL, NULL), + (259, 5272, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Scrooge', 'Snowball Cairne Bloodhoof', NULL, NULL), + (259, 9838, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Scrooge', 'Snowball Cairne Bloodhoof', NULL, NULL), + (259, 9839, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Scrooge', 'Snowball Cairne Bloodhoof', NULL, NULL), + (260, 12846, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Charming', '', NULL, NULL), + (263, 477, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Ice the Frost Lord', 'Ahune', NULL, NULL), + (263, 5270, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Ice the Frost Lord', 'Ahune Kill Quest', NULL, NULL), + (263, 8158, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Ice the Frost Lord', 'Tabard of Summer Flames', NULL, NULL), + (263, 8159, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Ice the Frost Lord', 'Tabard of Summer Skies', NULL, NULL), + (263, 11718, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Ice the Frost Lord', '', NULL, NULL), + (271, 6804, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Burning Hot Pole Dance', 'Dance at the ribbon pole for 60 seconds while wearing completed Midsummer set.', NULL, NULL), + (272, 6937, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Torch Juggler', '40 torches', NULL, NULL), + (273, 478, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'On Metzen!', 'Metzen saved', NULL, NULL), + (273, 479, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'On Metzen!', 'Metzen saved', NULL, NULL), + (275, 9167, 50, 163, 155, 1, 80, 1, 1, NULL, 50, 'Veteran Nanny', 'Peanut', NULL, NULL), + (275, 9168, 50, 163, 155, 1, 80, 1, 1, NULL, 50, 'Veteran Nanny', 'Willy', NULL, NULL), + (275, 9169, 50, 163, 155, 1, 80, 1, 1, NULL, 50, 'Veteran Nanny', 'Egbert', NULL, NULL), + (277, 4230, 10, 156, 155, 1, 80, 1, 1, NULL, 10, '\'Tis the Season', 'Graccu\'s Mince Meat Fruitcake', NULL, NULL), + (279, 6223, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Simply Abominable', 'A Smokywood Pastures\' Thank You!', NULL, NULL), + (279, 6224, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Simply Abominable', 'A Smokywood Pastures\' Thank You!', NULL, NULL), + (281, 164, 1, 178, 132, 1, 80, 1, 1, NULL, 0, 'First Aid skill', '', NULL, NULL), + (281, 5592, 1, 178, 132, 1, 80, 1, 1, NULL, 0, 'First Aid skill', 'First aid skill', NULL, NULL), + (283, 3209, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Masquerade', 'Transformed by Hallowed Wand - Bat', NULL, NULL), + (283, 3210, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Masquerade', 'Transformed by Hallowed Wand - Ghost', NULL, NULL), + (283, 3211, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Masquerade', 'Transformed by Hallowed Wand - Leper Gnome', NULL, NULL), + (283, 3212, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Masquerade', 'Transformed by Hallowed Wand - Ninja', NULL, NULL), + (283, 3213, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Masquerade', 'Transformed by Hallowed Wand - Pirate', NULL, NULL), + (283, 3214, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Masquerade', 'Transformed by Hallowed Wand - Skeleton', NULL, NULL), + (283, 3215, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Masquerade', 'Transformed by Hallowed Wand - Wisp', NULL, NULL), + (284, 5079, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Female Blood Elf Mask', NULL, NULL), + (284, 5080, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Female Draenei Mask', NULL, NULL), + (284, 5081, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Female Dwarf Mask', NULL, NULL), + (284, 5082, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Female Gnome Mask', NULL, NULL), + (284, 5083, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Female Human Mask', NULL, NULL), + (284, 5084, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Female Nightelf Mask', NULL, NULL), + (284, 5085, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Female Orc Mask', NULL, NULL), + (284, 5086, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Female Tauren Mask', NULL, NULL), + (284, 5087, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Female Troll Mask', NULL, NULL), + (284, 5088, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Female Undead Mask', NULL, NULL), + (284, 5089, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Male Blood Elf Mask', NULL, NULL), + (284, 5090, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Male Draenei Mask', NULL, NULL), + (284, 5091, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Male Dwarf Mask', NULL, NULL), + (284, 5092, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Male Gnome Mask', NULL, NULL), + (284, 5093, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Male Human Mask', NULL, NULL), + (284, 5094, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Male Nightelf Mask', NULL, NULL), + (284, 5095, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Male Orc Mask', NULL, NULL), + (284, 5096, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Male Tauren Mask', NULL, NULL), + (284, 5097, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Male Troll Mask', NULL, NULL), + (284, 5098, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'A Mask for All Occasions', 'Flimsy Male Undead Mask', NULL, NULL), + (288, 2070, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Out With It', 'Upset Tummy', NULL, NULL), + (288, 5820, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Out With It', 'Upset Tummy', NULL, NULL), + (289, 2281, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Savior of Hallow\'s End', '"Let the Fires Come!"', NULL, NULL), + (289, 2282, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Savior of Hallow\'s End', '"Let the Fires Come!"', NULL, NULL), + (289, 2283, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Savior of Hallow\'s End', 'Stop the Fires!', NULL, NULL), + (289, 2284, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Savior of Hallow\'s End', 'Stop the Fires!', NULL, NULL), + (291, 5772, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Check Your Head', 'Gnome', NULL, NULL), + (291, 5774, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Check Your Head', 'Blood Elf', NULL, NULL), + (291, 5775, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Check Your Head', 'Draenei', NULL, NULL), + (291, 5776, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Check Your Head', 'Dwarf', NULL, NULL), + (291, 5777, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Check Your Head', 'Human', NULL, NULL), + (291, 5778, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Check Your Head', 'Night Elf', NULL, NULL), + (291, 5779, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Check Your Head', 'Orc', NULL, NULL), + (291, 5780, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Check Your Head', 'Tauren', NULL, NULL), + (291, 5781, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Check Your Head', 'Troll', NULL, NULL), + (291, 5782, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Check Your Head', 'Undead', NULL, NULL), + (292, 5783, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Sinister Calling', 'Sinister Squashling', NULL, NULL), + (292, 12908, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Sinister Calling', 'Hallowed Helm', NULL, NULL), + (293, 4112, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Disturbing the Peace', '/dance', NULL, NULL), + (295, 4111, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Direbrewfest', 'Coren Direbrew', NULL, NULL), + (303, 6207, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Have Keg, Will Travel', 'Brewfest Kodo', NULL, NULL), + (303, 6208, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Have Keg, Will Travel', 'swift brewfest ram', NULL, NULL), + (303, 6209, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Have Keg, Will Travel', 'Brewfest Ram', NULL, NULL), + (303, 6210, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Have Keg, Will Travel', 'Great Brewfest Kodo', NULL, NULL), + (303, 10966, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Have Keg, Will Travel', '', NULL, NULL), + (303, 10967, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Have Keg, Will Travel', '', NULL, NULL), + (303, 10968, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Have Keg, Will Travel', '', NULL, NULL), + (303, 10969, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Have Keg, Will Travel', '', NULL, NULL), + (306, 406, 20, 171, 169, 1, 80, 1, 1, NULL, 20, 'Master Angler of Azeroth', 'Win the Booty Bay fishing contest', NULL, NULL), + (306, 3849, 20, 171, 169, 1, 80, 1, 1, NULL, 20, 'Master Angler of Azeroth', 'Arcanite Fishing Pole', NULL, NULL), + (306, 3850, 20, 171, 169, 1, 80, 1, 1, NULL, 20, 'Master Angler of Azeroth', 'Hook of the Master Angler', NULL, NULL), + (306, 12910, 20, 171, 169, 1, 80, 1, 1, NULL, 20, 'Master Angler of Azeroth', 'Win the Kalu\'ak Fishing Derby', NULL, NULL), + (318, 5593, 1, 21, 1, -1, 80, 1, 1, NULL, 0, 'Total deaths from opposite faction', '', NULL, NULL), + (319, 3629, 1, 154, 21, 1, 80, 1, 1, NULL, 0, 'Duels won', 'Duels won', NULL, NULL), + (320, 3630, 1, 154, 21, -1, 80, 1, 1, NULL, 0, 'Duels lost', 'Duels lost', NULL, NULL), + (321, 169, 1, 125, 122, 1, 80, 1, 1, NULL, 0, 'Total raid and dungeon deaths', '5 man instances', NULL, NULL), + (321, 170, 1, 125, 122, 1, 80, 1, 1, NULL, 0, 'Total raid and dungeon deaths', '10 man instances', NULL, NULL), + (321, 171, 1, 125, 122, 1, 80, 1, 1, NULL, 0, 'Total raid and dungeon deaths', '25 man instances', NULL, NULL), + (321, 8838, 1, 125, 122, 1, 80, 1, 1, NULL, 0, 'Total raid and dungeon deaths', '40 man instances', NULL, NULL), + (321, 8918, 1, 125, 122, 1, 80, 1, 1, NULL, 0, 'Total raid and dungeon deaths', '15 man instances', NULL, NULL), + (321, 8919, 1, 125, 122, 1, 80, 1, 1, NULL, 0, 'Total raid and dungeon deaths', '20 man instances', NULL, NULL), + (322, 7758, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Ingvar the Plunderer', NULL, NULL), + (322, 7759, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Keristrasza', NULL, NULL), + (322, 7760, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Anub\'arak', NULL, NULL), + (322, 7761, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Herald Volazj', NULL, NULL), + (322, 7762, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'The Prophet Tharon\'ja', NULL, NULL), + (322, 7763, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Cyanigosa', NULL, NULL), + (322, 7764, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Dalronn the Controller', NULL, NULL), + (322, 7765, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Skarvald the Constructor', NULL, NULL), + (322, 7766, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Prince Keleseth', NULL, NULL), + (322, 7770, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Anomalus', NULL, NULL), + (322, 7771, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Ormorok the Tree-Shaper', NULL, NULL), + (322, 7772, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Grand Magus Telestra', NULL, NULL), + (322, 7773, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Krik\'thir the Gatewatcher', NULL, NULL), + (322, 7774, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Hadronox', NULL, NULL), + (322, 7775, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Prince Taldaram', NULL, NULL), + (322, 7776, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Elder Nadox', NULL, NULL), + (322, 7777, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Jedoga Shadowseeker', NULL, NULL), + (322, 7778, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Trollgore', NULL, NULL), + (322, 7779, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Novos the Summoner', NULL, NULL), + (322, 7780, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'King Dred', NULL, NULL), + (322, 7781, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Slad\'ran', NULL, NULL), + (322, 7782, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Moorabi', NULL, NULL), + (322, 7783, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Drakkari Colossus', NULL, NULL), + (322, 7784, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Gal\'darah', NULL, NULL), + (322, 7785, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Maiden of Grief', NULL, NULL), + (322, 7786, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Sjonnir The Ironshaper', NULL, NULL), + (322, 7787, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'General Bjarngrim', NULL, NULL), + (322, 7788, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Ionar', NULL, NULL), + (322, 7789, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Volkhan', NULL, NULL), + (322, 7790, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Loken', NULL, NULL), + (322, 7791, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Drakos the Interrogator', NULL, NULL), + (322, 7792, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Mage-Lord Urom', NULL, NULL), + (322, 7795, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Varos Cloudstrider', NULL, NULL), + (322, 7796, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Ley-Guardian Eregos', NULL, NULL), + (322, 7797, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Skadi the Ruthless', NULL, NULL), + (322, 7798, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Svala Sorrowgrave', NULL, NULL), + (322, 7799, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Gortok Palehoof', NULL, NULL), + (322, 7800, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'King Ymiron', NULL, NULL), + (322, 7801, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Meathook', NULL, NULL), + (322, 7802, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Chrono-Lord Epoch', NULL, NULL), + (322, 7803, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Salramm the Fleshcrafter', NULL, NULL), + (322, 7804, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Mal\'Ganis', NULL, NULL), + (322, 13262, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'The Black Knight', NULL, NULL), + (322, 13263, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Argent Confessor Paletress', NULL, NULL), + (322, 13264, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Eadric the Pure', NULL, NULL), + (322, 13265, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Bronjahm', NULL, NULL), + (322, 13266, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Devourer of Souls', NULL, NULL), + (322, 13267, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Forgemaster Garfrost', NULL, NULL), + (322, 13268, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Ick', NULL, NULL), + (322, 13269, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Krik', NULL, NULL), + (322, 13270, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Scourgelord Tyrannus', NULL, NULL), + (322, 13271, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Falric', NULL, NULL), + (322, 13272, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'Marwyn', NULL, NULL), + (322, 13273, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King dungeon bosses', 'The Lich King', NULL, NULL), + (323, 7807, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Anub\'Rekhan', NULL, NULL), + (323, 7808, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Gluth', NULL, NULL), + (323, 7809, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Gothik the Harvester', NULL, NULL), + (323, 7810, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Grand Widow Faerlina', NULL, NULL), + (323, 7811, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Grobbulus', NULL, NULL), + (323, 7812, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Heigan the Unclean', NULL, NULL), + (323, 7813, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Instructor Razuvious', NULL, NULL), + (323, 7814, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Loatheb', NULL, NULL), + (323, 7815, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Maexxna', NULL, NULL), + (323, 7816, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Noth the Plaguebringer', NULL, NULL), + (323, 7817, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Patchwerk', NULL, NULL), + (323, 7818, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Thaddius', NULL, NULL), + (323, 7819, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Sapphiron', NULL, NULL), + (323, 7820, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Kel\'Thuzad', NULL, NULL), + (323, 7821, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Lady Blaymeux', NULL, NULL), + (323, 7822, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Baron Rivendare', NULL, NULL), + (323, 7823, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Sir Zeliek', NULL, NULL), + (323, 7824, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Thane Korth\'azz', NULL, NULL), + (323, 7825, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Sartharion', NULL, NULL), + (323, 7826, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Malygos', NULL, NULL), + (323, 7827, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Archavon the Stone Watcher', NULL, NULL), + (323, 10999, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Flame Leviathan', NULL, NULL), + (323, 11000, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Razorscale', NULL, NULL), + (323, 11001, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Ignis the Furnace Master', NULL, NULL), + (323, 11002, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Auriaya', NULL, NULL), + (323, 11003, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'XT-002 Deconstructor', NULL, NULL), + (323, 11004, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Steelbreaker', NULL, NULL), + (323, 11005, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Runemaster Molgeim', NULL, NULL), + (323, 11006, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Stormcaller Brundir', NULL, NULL), + (323, 11007, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Kologarn', NULL, NULL), + (323, 11008, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Hodir', NULL, NULL), + (323, 11009, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Thorim', NULL, NULL), + (323, 11010, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Freya', NULL, NULL), + (323, 11011, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Mimiron', NULL, NULL), + (323, 11012, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'General Vezax', NULL, NULL), + (323, 11013, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Yogg-Saron', NULL, NULL), + (323, 11014, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Algalon the Observer', NULL, NULL), + (323, 11015, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Emalon the Storm Watcher', NULL, NULL), + (323, 13274, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Koralon the Flame Watcher', NULL, NULL), + (323, 13275, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Toravon the Ice Watcher', NULL, NULL), + (323, 13276, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Onyxia', NULL, NULL), + (323, 13277, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Icehowl', NULL, NULL), + (323, 13278, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Lord Jaraxxus', NULL, NULL), + (323, 13279, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Eydis Darkbane', NULL, NULL), + (323, 13280, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Fjola Lightbane', NULL, NULL), + (323, 13281, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Anub\'arak', NULL, NULL), + (323, 13282, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Lord Marrowgar', NULL, NULL), + (323, 13283, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Lady Deathwhisper', NULL, NULL), + (323, 13284, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Deathbringer Saurfang', NULL, NULL), + (323, 13285, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Festergut', NULL, NULL), + (323, 13286, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Rotface', NULL, NULL), + (323, 13287, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Professor Putricide', NULL, NULL), + (323, 13288, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Blood-Queen Lana\'thel', NULL, NULL), + (323, 13289, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'Sindragosa', NULL, NULL), + (323, 13290, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 10-player raid bosses', 'The Lich King', NULL, NULL), + (324, 7828, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Anub\'Rekhan', NULL, NULL), + (324, 7829, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Gluth', NULL, NULL), + (324, 7830, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Gothik the Harvester', NULL, NULL), + (324, 7831, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Grand Widow Faerlina', NULL, NULL), + (324, 7832, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Grobbulus', NULL, NULL), + (324, 7833, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Heigan the Unclean', NULL, NULL), + (324, 7834, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Instructor Razuvious', NULL, NULL), + (324, 7835, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Loatheb', NULL, NULL), + (324, 7836, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Maexxna', NULL, NULL), + (324, 7837, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Noth the Plaguebringer', NULL, NULL), + (324, 7838, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Patchwerk', NULL, NULL), + (324, 7839, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Thaddius', NULL, NULL), + (324, 7840, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Sapphiron', NULL, NULL), + (324, 7841, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Kel\'Thuzad', NULL, NULL), + (324, 7842, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Lady Blaymeux', NULL, NULL), + (324, 7843, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Baron Rivendare', NULL, NULL), + (324, 7844, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Sir Zeliek', NULL, NULL), + (324, 7845, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Thane Korth\'azz', NULL, NULL), + (324, 7846, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Sartharion', NULL, NULL), + (324, 7847, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Malygos', NULL, NULL), + (324, 7848, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Archavon the Stone Watcher', NULL, NULL), + (324, 11016, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Flame Leviathan', NULL, NULL), + (324, 11017, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Razorscale', NULL, NULL), + (324, 11018, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Ignis the Furnace Master', NULL, NULL), + (324, 11019, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'XT-002 Deconstructor', NULL, NULL), + (324, 11020, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Steelbreaker', NULL, NULL), + (324, 11021, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Runemaster Molgeim', NULL, NULL), + (324, 11022, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Stormcaller Brundir', NULL, NULL), + (324, 11023, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Kologarn', NULL, NULL), + (324, 11024, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Auriaya', NULL, NULL), + (324, 11025, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Hodir', NULL, NULL), + (324, 11026, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Thorim', NULL, NULL), + (324, 11027, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Freya', NULL, NULL), + (324, 11028, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Mimiron', NULL, NULL), + (324, 11029, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'General Vezax', NULL, NULL), + (324, 11030, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Yogg-Saron', NULL, NULL), + (324, 11031, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Algalon the Observer', NULL, NULL), + (324, 11032, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Emalon the Storm Watcher', NULL, NULL), + (324, 13291, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Toravon the Ice Watcher', NULL, NULL), + (324, 13292, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Icehowl', NULL, NULL), + (324, 13293, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Lord Jaraxxus', NULL, NULL), + (324, 13294, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Fjola Lightbane', NULL, NULL), + (324, 13295, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Eydis Darkbane', NULL, NULL), + (324, 13296, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Anub\'arak', NULL, NULL), + (324, 13297, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Lord Marrowgar', NULL, NULL), + (324, 13298, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Lady Deathwhisper', NULL, NULL), + (324, 13299, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Deathbringer Saurfang', NULL, NULL), + (324, 13300, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Blood-Queen Lana\'thel', NULL, NULL), + (324, 13301, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Sindragosa', NULL, NULL), + (324, 13302, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'The Lich King', NULL, NULL), + (324, 13303, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Festergut', NULL, NULL), + (324, 13304, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Rotface', NULL, NULL), + (324, 13305, 1, 125, 122, -1, 80, 80, 80, 'ICC - Lich King', 0, 'Total deaths to Lich King 25-player raid bosses', 'Professor Putricide', NULL, NULL), + (326, 3355, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Gold from quest rewards', 'Total gold from quest rewards', NULL, NULL), + (328, 4091, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Total gold acquired', 'Money from vendors', NULL, NULL), + (328, 4092, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Total gold acquired', 'Money from questing', NULL, NULL), + (328, 4093, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Total gold acquired', 'Money looted from creatures', NULL, NULL), + (328, 4225, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Total gold acquired', 'Money from auctions', NULL, NULL), + (329, 4220, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Auctions posted', 'Auctions Posted', NULL, NULL), + (330, 4221, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Auction purchases', 'Total Auction Purchases', NULL, NULL), + (331, 4222, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Most expensive bid on auction', 'Highest Auction Bid', NULL, NULL), + (332, 4223, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Most expensive auction sold', 'Highest sale value on an auction', NULL, NULL), + (333, 3354, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Gold looted', 'Total gold looted', NULL, NULL), + (334, 4224, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Most gold ever owned', 'Most gold ever owned:', NULL, NULL), + (336, 5345, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Legendary items acquired', '', NULL, NULL), + (336, 6141, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Legendary items acquired', 'Legendary items obtained', NULL, NULL), + (338, 4788, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Vanity pets owned', 'Vanity pets owned', NULL, NULL), + (339, 4787, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Mounts owned', 'Number of mounts', NULL, NULL), + (341, 5344, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Epic items looted', '', NULL, NULL), + (341, 6140, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Epic items looted', 'Epic Items Looted', NULL, NULL), + (342, 5343, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Epic items acquired', '', NULL, NULL), + (342, 6142, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Epic items acquired', 'Epic items obtained', NULL, NULL), + (344, 3301, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Alterac Valley Runecloth Bandage', NULL, NULL), + (344, 3302, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Arathi Basin Mageweave Bandage', NULL, NULL), + (344, 3303, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Arathi Basin Runecloth Bandage', NULL, NULL), + (344, 3304, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Arathi Basin Silk Bandage', NULL, NULL), + (344, 3305, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Defiler\'s Mageweave Bandage', NULL, NULL), + (344, 3306, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Defiler\'s Runecloth Bandage', NULL, NULL), + (344, 3307, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Defiler\'s Silk Bandage', NULL, NULL), + (344, 3308, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Dense Frostweave Bandage', NULL, NULL), + (344, 3309, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Frostweave Bandage', NULL, NULL), + (344, 3310, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Heavy Frostweave Bandage', NULL, NULL), + (344, 3311, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Heavy Linen Bandage', NULL, NULL), + (344, 3312, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Heavy Mageweave Bandage', NULL, NULL), + (344, 3313, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Heavy Netherweave Bandage', NULL, NULL), + (344, 3314, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Heavy Runecloth Bandage', NULL, NULL), + (344, 3315, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Heavy Silk Bandage', NULL, NULL), + (344, 3316, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Linen Bandage', NULL, NULL), + (344, 3317, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Mageweave Bandage', NULL, NULL), + (344, 3318, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Netherweave Bandage', NULL, NULL), + (344, 3319, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Runecloth Bandage', NULL, NULL), + (344, 3320, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Silk Bandage', NULL, NULL), + (344, 3321, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Thick Frostweave Bandage', NULL, NULL), + (344, 3322, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Warsong Gulch Mageweave Bandage', NULL, NULL), + (344, 3323, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Warsong Gulch Runecloth Bandage', NULL, NULL), + (344, 3324, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Warsong Gulch Silk Bandage', NULL, NULL), + (344, 3325, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Wool Bandage', NULL, NULL), + (344, 7900, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Heavy Wool Bandage', NULL, NULL), + (344, 7901, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Highlander\'s Silk Bandage', NULL, NULL), + (344, 7902, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Highlander\'s Mageweave Bandage', NULL, NULL), + (344, 7903, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Highlander\'s Runecloth Bandage', NULL, NULL), + (344, 7904, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandages used', 'Triage Bandage', NULL, NULL), + (345, 4288, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Auchenai Healing Potion', NULL, NULL), + (345, 4289, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Bottled Nethergon Vapor', NULL, NULL), + (345, 4290, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Crystal Healing Potion', NULL, NULL), + (345, 4291, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Discolored Healing Potion', NULL, NULL), + (345, 4292, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Fel Regeneration Potion', NULL, NULL), + (345, 4293, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Greater Healing Potion', NULL, NULL), + (345, 4294, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Healing Potion', NULL, NULL), + (345, 4295, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Lesser Healing Potion', NULL, NULL), + (345, 4296, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Major healing Draught', NULL, NULL), + (345, 4297, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Major Healing Potion', NULL, NULL), + (345, 4298, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Major Rejuvenation Potion', NULL, NULL), + (345, 4299, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Minor Healing Potion', NULL, NULL), + (345, 4300, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Minor Rejuvenation Potion', NULL, NULL), + (345, 4301, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Rulkster\'s Secret Sauce', NULL, NULL), + (345, 4302, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Super Healing Potion', NULL, NULL), + (345, 4303, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Super Rejuvenation Potion', NULL, NULL), + (345, 4304, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Superior Healing Draught', NULL, NULL), + (345, 4305, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Superior Healing Potion', NULL, NULL), + (345, 4306, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Volatile Healing Potion', NULL, NULL), + (345, 4307, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Wildvine Potion', NULL, NULL), + (345, 4309, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Healing Potion Injector', NULL, NULL), + (345, 4310, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Super Healing Potion', NULL, NULL), + (345, 4318, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Dreamless Sleep Potion', NULL, NULL), + (345, 4319, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Greater Dreamless Sleep Potion', NULL, NULL), + (345, 4320, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Major Dreamless Sleep Potion', NULL, NULL), + (345, 4325, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Mad Alchemist\'s Potion', NULL, NULL), + (345, 5178, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Major Combat Healing Potion', NULL, NULL), + (345, 5179, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Major Combat Healing Potion', NULL, NULL), + (345, 5180, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Major Combat Healing Potion', NULL, NULL), + (345, 5181, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Major Combat Healing Potion', NULL, NULL), + (345, 5182, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Resurgent Healing Potion', NULL, NULL), + (345, 5183, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Runic Healing Potion', NULL, NULL), + (345, 6380, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Runic Healing Injector', NULL, NULL), + (345, 7423, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Powerful Rejuvenation Potion', NULL, NULL), + (345, 7424, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Potion of Nightmares', NULL, NULL), + (345, 7908, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Combat Healing Potion', NULL, NULL), + (345, 7909, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Argent Healing Potion', NULL, NULL), + (345, 7910, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Endless Healing Potion', NULL, NULL), + (345, 7911, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potions consumed', 'Noth\'s Special Brew', NULL, NULL), + (346, 4654, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bash Ale', NULL, NULL), + (346, 4655, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Black Coffee', NULL, NULL), + (346, 4656, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Blackrock Fortified Water', NULL, NULL), + (346, 4657, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Blackrock Mineral Water', NULL, NULL), + (346, 4658, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Blackrock Spring Water', NULL, NULL), + (346, 4659, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Blended Bean Brew', NULL, NULL), + (346, 4660, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bottle of Pinot Noir', NULL, NULL), + (346, 4661, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bottled Winterspring Water', NULL, NULL), + (346, 4662, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bubbling Water', NULL, NULL), + (346, 4663, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Captain Rumsey\'s Lager', NULL, NULL), + (346, 4664, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Cenarion Spirits', NULL, NULL), + (346, 4665, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Cheap Beer', NULL, NULL), + (346, 4666, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Cherry Grog', NULL, NULL), + (346, 4667, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Conjured Crystal Water', NULL, NULL), + (346, 4668, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Conjured Fresh Water', NULL, NULL), + (346, 4669, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Conjured Glacier Water', NULL, NULL), + (346, 4670, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Conjured Manna Biscuit', NULL, NULL), + (346, 4671, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Conjured Mineral Water', NULL, NULL), + (346, 4672, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Conjured Mountain Spring Water', NULL, NULL), + (346, 4673, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Conjured Purified Water', NULL, NULL), + (346, 4674, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Conjured Sparkling Water', NULL, NULL), + (346, 4675, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Conjured Spring Water', NULL, NULL), + (346, 4676, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Conjured Water', NULL, NULL), + (346, 4677, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Dark Dwarven Lager', NULL, NULL), + (346, 4678, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Darkmoon Special Reserve', NULL, NULL), + (346, 4679, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Don Carlos Tequila', NULL, NULL), + (346, 4680, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Dos Ogris', NULL, NULL), + (346, 4681, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Egg Nog', NULL, NULL), + (346, 4682, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Enchanted Water', NULL, NULL), + (346, 4683, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Enriched Terocone Juice', NULL, NULL), + (346, 4684, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Ethermead', NULL, NULL), + (346, 4685, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Evermurky', NULL, NULL), + (346, 4686, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Filtered Draenic Water', NULL, NULL), + (346, 4687, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Fizzy Faire Drink', NULL, NULL), + (346, 4688, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Flagon of Mead', NULL, NULL), + (346, 4689, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Flask of Port', NULL, NULL), + (346, 4690, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Gilneas Sparkling Water', NULL, NULL), + (346, 4691, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Goldthorn Tea', NULL, NULL), + (346, 4692, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Greatfather\'s Winter Ale', NULL, NULL), + (346, 4693, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Holiday Spirits', NULL, NULL), + (346, 4694, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Hot Apple Cider', NULL, NULL), + (346, 4695, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Ice Cold Milk', NULL, NULL), + (346, 4696, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Junglevine Wine', NULL, NULL), + (346, 4697, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Melon Juice', NULL, NULL), + (346, 4698, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Molasses Firewater', NULL, NULL), + (346, 4699, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Moonberry Juice', NULL, NULL), + (346, 4700, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Moonglow', NULL, NULL), + (346, 4701, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Morning Glory Dew', NULL, NULL), + (346, 4702, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Netehrgarde Bitter', NULL, NULL), + (346, 4703, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Plugger\'s Blackrock Ale', NULL, NULL), + (346, 4704, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Purified Draenic Water', NULL, NULL), + (346, 4705, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Refreshing Spring Water', NULL, NULL), + (346, 4706, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Rumsey Rum Black Label', NULL, NULL), + (346, 4707, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Rumsey Rum Dark', NULL, NULL), + (346, 4708, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Rumsey Rum Light', NULL, NULL), + (346, 4709, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Silverwine', NULL, NULL), + (346, 4710, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Skin of Dwarven Stout', NULL, NULL), + (346, 4711, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Southshore Stout', NULL, NULL), + (346, 4712, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Sparkling Southshore Cider', NULL, NULL), + (346, 4713, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Star\'s Lament', NULL, NULL), + (346, 4714, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Star\'s Tears', NULL, NULL), + (346, 4715, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Steamwheedle Fizzy Spirits', NULL, NULL), + (346, 4716, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Sulfuron Slammer', NULL, NULL), + (346, 4717, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Sweet Nectar', NULL, NULL), + (346, 4718, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Thistle Tea', NULL, NULL), + (346, 5190, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Aerie Peak Pale Ale', NULL, NULL), + (346, 5191, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Aromatic Honey Brew', NULL, NULL), + (346, 5192, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Aromatic Honey Brew', NULL, NULL), + (346, 5193, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Blackrock Lager', NULL, NULL), + (346, 5194, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Blackrock Lager', NULL, NULL), + (346, 5195, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Binary Brew', NULL, NULL), + (346, 5196, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Binary Brew', NULL, NULL), + (346, 6452, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bad Egg Nog', NULL, NULL), + (346, 6461, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bitter Plasma', NULL, NULL), + (346, 6485, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Caraway Burnwine', NULL, NULL), + (346, 6942, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bottled Spirits', NULL, NULL), + (346, 6943, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Jug of Bourbon', NULL, NULL), + (346, 6944, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Thunder Ale', NULL, NULL), + (346, 6945, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Rhapsody Malt', NULL, NULL), + (346, 6946, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Watered-down Beer', NULL, NULL), + (346, 6947, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Raptor Punch', NULL, NULL), + (346, 6948, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Volatile Rum', NULL, NULL), + (346, 6949, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Cuergo\'s Gold', NULL, NULL), + (346, 6950, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Cuergo\'s Gold with Worm', NULL, NULL), + (346, 6951, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Wizbang\'s Special Brew', NULL, NULL), + (346, 6953, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Hyjal Nectar', NULL, NULL), + (346, 6954, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Eversong Port', NULL, NULL), + (346, 6955, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Pungent Seal Whey', NULL, NULL), + (346, 6956, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Honeymint Tea', NULL, NULL), + (346, 6957, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Lord of Frost\'s Private Label', NULL, NULL), + (346, 6958, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Sweetened Goat\'s Milk', NULL, NULL), + (346, 6959, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Frostberry Juice', NULL, NULL), + (346, 6960, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Winterfin "Depth Charge"', NULL, NULL), + (346, 6961, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bitter Plasma', NULL, NULL), + (346, 6962, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Kungaloosh', NULL, NULL), + (346, 6963, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Honey Mead', NULL, NULL), + (346, 6964, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Snowplum Brandy', NULL, NULL), + (346, 6966, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Grizzleberry Juice', NULL, NULL), + (346, 6967, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Crusader\'s Waterskin', NULL, NULL), + (346, 6968, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Fresh Apple Juice', NULL, NULL), + (346, 8866, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Yeti Milk', NULL, NULL), + (346, 8867, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Glass of Dalaran White', NULL, NULL), + (346, 8868, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Glass of Dalaran Red', NULL, NULL), + (346, 8869, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Glass of Aged Dalaran Red', NULL, NULL), + (346, 8870, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Glass of Peaked Dalaran Red', NULL, NULL), + (346, 8871, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Glass of Vintage Dalaran Red', NULL, NULL), + (346, 8872, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Glass of Eversong Wine', NULL, NULL), + (346, 8873, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Flask of Bitter Cactus Cider', NULL, NULL), + (346, 8874, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bottle of Silvermoon Port', NULL, NULL), + (346, 8875, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Cup of Frog Venom Brew', NULL, NULL), + (346, 8876, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Mysterious Fermented Liquid', NULL, NULL), + (346, 8877, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Skin of Mulgore Firewater', NULL, NULL), + (346, 8878, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Gordok Grog', NULL, NULL), + (346, 8879, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Thunder 45', NULL, NULL), + (346, 8880, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Thunderbrew Ale', NULL, NULL), + (346, 8881, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Thunderbrew Stout', NULL, NULL), + (346, 8882, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Ogre Mead', NULL, NULL), + (346, 8883, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Barleybrew Light', NULL, NULL), + (346, 8884, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Barleybrew Dark', NULL, NULL), + (346, 8885, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Barleybrew Clear', NULL, NULL), + (346, 8886, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Long Stride Brew', NULL, NULL), + (346, 8887, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Path of Brew', NULL, NULL), + (346, 8888, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Jungle River Water', NULL, NULL), + (346, 8889, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Brewdoo Magic', NULL, NULL), + (346, 8890, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Stout Shrunken Head', NULL, NULL), + (346, 8891, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Small Step Brew', NULL, NULL), + (346, 8985, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Fishliver Oil', NULL, NULL), + (346, 8986, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Stormstout', NULL, NULL), + (346, 8987, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Trogg Ale', NULL, NULL), + (346, 8988, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Blessed Sunfruit Juice', NULL, NULL), + (346, 8989, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Tea with Sugar', NULL, NULL), + (346, 8990, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Rumsey Rum', NULL, NULL), + (346, 8991, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Gordok Green Grog', NULL, NULL), + (346, 8992, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Kreeg\'s Stout Beatdown', NULL, NULL), + (346, 8993, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bottled Alterac Spring Water', NULL, NULL), + (346, 8994, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Harvest Nectar', NULL, NULL), + (346, 8995, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Winter Veil Eggnogg', NULL, NULL), + (346, 8996, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Scourgebane Infusion', NULL, NULL), + (346, 8997, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Scourgebane Draught', NULL, NULL), + (346, 8998, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Freshly-Squeezed Lemonade', NULL, NULL), + (346, 8999, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bubbly Beverage', NULL, NULL), + (346, 9000, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Fizzy Energy Drink', NULL, NULL), + (346, 9001, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Fiery Festival Brew', NULL, NULL), + (346, 9002, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Loch Modan Lager', NULL, NULL), + (346, 9003, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Stouthammer Lite', NULL, NULL), + (346, 9004, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Grunt\'s Waterskin', NULL, NULL), + (346, 9005, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Footman\'s Waterskin', NULL, NULL), + (346, 9006, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Crimson Steer Energy Drink', NULL, NULL), + (346, 9007, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Ethereum Essence', NULL, NULL), + (346, 9008, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Stonebreaker Brew', NULL, NULL), + (346, 9009, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Brightstong Wine', NULL, NULL), + (346, 9010, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Halaani Whiskey', NULL, NULL), + (346, 9011, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Peon Sleep Potion', NULL, NULL), + (346, 9012, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Pure Energy', NULL, NULL), + (346, 9013, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Blade\'s Edge Ogre Brew', NULL, NULL), + (346, 9014, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Mudder\'s Milk', NULL, NULL), + (346, 9015, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Iced Berry Slush', NULL, NULL), + (346, 9016, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Fizzy Faire Drink "Classic"', NULL, NULL), + (346, 9017, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Harkor\'s Home Brew', NULL, NULL), + (346, 9018, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Sparkling Apple Cider', NULL, NULL), + (346, 9019, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Dark Brewmaiden\'s Brew', NULL, NULL), + (346, 9020, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Stranglethorn Brew', NULL, NULL), + (346, 9021, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Draenic Pale Ale', NULL, NULL), + (346, 9022, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Autumnal Acorn Ale', NULL, NULL), + (346, 9023, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bartlett\'s Bitter Brew', NULL, NULL), + (346, 9024, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Lord of Frost\'s Private Label', NULL, NULL), + (346, 9025, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Ethereal Liqeuer', NULL, NULL), + (346, 9026, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Diluted Ethereum Essence', NULL, NULL), + (346, 9027, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Dire Brew', NULL, NULL), + (346, 9028, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Thunderbrew\'s Hard Ale', NULL, NULL), + (346, 9029, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Anguish Ale', NULL, NULL), + (346, 9030, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Half Full Bottle of Prison Moonshine', NULL, NULL), + (346, 9031, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Half Empty Bottle of Prison Moonshine', NULL, NULL), + (346, 9498, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Keg of Thunderbrew Lager', NULL, NULL), + (346, 9499, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Wild Winter Pilsner', NULL, NULL), + (346, 9500, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Metok\'s Bubble Bock', NULL, NULL), + (346, 9501, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Springtime Stout', NULL, NULL), + (346, 9502, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Stranglethorn Brew', NULL, NULL), + (346, 10498, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Autumnal Acorn Ale', NULL, NULL), + (346, 10499, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Bartlett\'s Bitter Brew', NULL, NULL), + (346, 10500, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Draenic Pale Ale', NULL, NULL), + (346, 10501, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Izzard\'s Ever Flavor', NULL, NULL), + (346, 10502, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Izzard\'s Ever Flavor', NULL, NULL), + (346, 10503, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Lord of Frost\'s Private Label', NULL, NULL), + (346, 10504, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Metok\'s Bubble Bock', NULL, NULL), + (346, 10505, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Suntouched Special Reserve', NULL, NULL), + (346, 10506, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Springtime Stout', NULL, NULL), + (346, 10618, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Tournament Brew', NULL, NULL), + (346, 10978, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Wild Winter Pilsner', NULL, NULL), + (346, 13257, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverages consumed', 'Conjured Mana Strudel', NULL, NULL), + (347, 6448, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Alterac Manna Biscuit', NULL, NULL), + (347, 6449, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Alterac Swiss', NULL, NULL), + (347, 6450, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bad Clams', NULL, NULL), + (347, 6451, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Baked Manta Ray', NULL, NULL), + (347, 6453, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Barbecued Buzzard Wings', NULL, NULL), + (347, 6454, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bat Bites', NULL, NULL), + (347, 6455, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bean Soup', NULL, NULL), + (347, 6456, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Beer Basted Boar Ribs', NULL, NULL), + (347, 6457, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bellara\'s Nutterbar', NULL, NULL), + (347, 6458, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Berry Pie Slice', NULL, NULL), + (347, 6459, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Big Bear Steak', NULL, NULL), + (347, 6460, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Black Mushroom', NULL, NULL), + (347, 6462, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Blackened Basilisk', NULL, NULL), + (347, 6463, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Blackened Dragonfin', NULL, NULL), + (347, 6464, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Blackened Sporefish', NULL, NULL), + (347, 6465, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Blackened Trout', NULL, NULL), + (347, 6466, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Blackened Worg Steak', NULL, NULL), + (347, 6467, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bladespire Bagel', NULL, NULL), + (347, 6468, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Blessed Sunfruit', NULL, NULL), + (347, 6469, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Blood Sausage', NULL, NULL), + (347, 6470, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bloodbelly Fish', NULL, NULL), + (347, 6471, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bobbing Apple', NULL, NULL), + (347, 6472, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Boiled Clams', NULL, NULL), + (347, 6473, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bonestripper Buzzard Hotwings', NULL, NULL), + (347, 6474, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bowels \'n\' Brains', NULL, NULL), + (347, 6475, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Brilliant Smallfish', NULL, NULL), + (347, 6476, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Briny Hardcheese', NULL, NULL), + (347, 6477, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bristly Whisker Catfish', NULL, NULL), + (347, 6478, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Broiled Bloodfin', NULL, NULL), + (347, 6479, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Buzzard Bites', NULL, NULL), + (347, 6480, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Cabbage Kimchi', NULL, NULL), + (347, 6481, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Cactus Apple Surprise', NULL, NULL), + (347, 6482, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Candy Bar', NULL, NULL), + (347, 6483, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Candy Cane', NULL, NULL), + (347, 6484, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Carrion Surprise', NULL, NULL), + (347, 6519, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Carrot Cupcake', NULL, NULL), + (347, 6520, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Charred Bear Kabobs', NULL, NULL), + (347, 6521, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Charred Wolf Meat', NULL, NULL), + (347, 6522, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Chocolate Cake Slice', NULL, NULL), + (347, 6523, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Chocolate Square', NULL, NULL), + (347, 6524, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Clam Bar', NULL, NULL), + (347, 6525, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Clam Chowder', NULL, NULL), + (347, 6526, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Clamlette Surprise', NULL, NULL), + (347, 6527, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Clamlette Surprise', NULL, NULL), + (347, 6528, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Clefthoof Ribs', NULL, NULL), + (347, 6529, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Conjured Bread', NULL, NULL), + (347, 6530, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Conjured Cinnamon Roll', NULL, NULL), + (347, 6531, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Conjured Croissant', NULL, NULL), + (347, 6532, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Conjured Mana Biscuit', NULL, NULL), + (347, 6533, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Conjured Mana Pie', NULL, NULL), + (347, 6534, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Conjured Mana Strudel', NULL, NULL), + (347, 6535, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Conjured Muffin', NULL, NULL), + (347, 6536, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Conjured Pumpernickel', NULL, NULL), + (347, 6537, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Conjured Rye', NULL, NULL), + (347, 6538, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Conjured Sourdough', NULL, NULL), + (347, 6539, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Conjured Sweet Roll', NULL, NULL), + (347, 6540, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Cooked Crab Claw', NULL, NULL), + (347, 6541, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Cooked Glossy Mightfish', NULL, NULL), + (347, 6542, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Cooked Northrend Fish 12 PH', NULL, NULL), + (347, 6543, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Cookie\'s Jumbo Gumbo', NULL, NULL), + (347, 6544, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Coyote Steak', NULL, NULL), + (347, 6545, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Crab Cake', NULL, NULL), + (347, 6546, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Crisp Dalaran Apple', NULL, NULL), + (347, 6547, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Crispy Bat Wing', NULL, NULL), + (347, 6548, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Crispy Lizard Tail', NULL, NULL), + (347, 6549, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Critter Bites', NULL, NULL), + (347, 6550, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Crocolisk Gumbo', NULL, NULL), + (347, 6551, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Crocolisk Steak', NULL, NULL), + (347, 6552, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Crunchy Frog', NULL, NULL), + (347, 6553, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Crunchy Serpent', NULL, NULL), + (347, 6554, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Crunchy Spider Surprise', NULL, NULL), + (347, 6555, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Crusader\'s Rations', NULL, NULL), + (347, 6556, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Crusty Flatbread', NULL, NULL), + (347, 6557, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Cured Ham Steak', NULL, NULL), + (347, 6558, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Curiously Tasty Omelet', NULL, NULL), + (347, 6559, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Cuttlesteak', NULL, NULL), + (347, 6560, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dalaran Brownie', NULL, NULL), + (347, 6561, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dalaran Clam Chowder', NULL, NULL), + (347, 6562, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dalaran Doughnut', NULL, NULL), + (347, 6563, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dalaran Sharp', NULL, NULL), + (347, 6564, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Darkshore Grouper', NULL, NULL), + (347, 6565, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Darnassian Bleu', NULL, NULL), + (347, 6566, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Darnassus Kimchi Pie', NULL, NULL), + (347, 6567, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Deep Fried Candybar', NULL, NULL), + (347, 6568, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Deep Fried Plantains', NULL, NULL), + (347, 6569, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Deeprun Rat Kabob', NULL, NULL), + (347, 6570, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Delicious Baked Ham', NULL, NULL), + (347, 6571, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Delicious Cave Mold', NULL, NULL), + (347, 6572, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Delicious Chocolate Cake', NULL, NULL), + (347, 6573, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Deviate Fish', NULL, NULL), + (347, 6574, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Diamond Berries', NULL, NULL), + (347, 6575, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dig Rat Stew', NULL, NULL), + (347, 6576, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dirge\'s Kickin\' Chimaerok Chops', NULL, NULL), + (347, 6577, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dragonbreath Chili', NULL, NULL), + (347, 6578, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dragonfin Filet', NULL, NULL), + (347, 6579, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dried Fruit Rations', NULL, NULL), + (347, 6580, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dried King Bolete', NULL, NULL), + (347, 6581, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dried Mushroom Rations', NULL, NULL), + (347, 6582, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dry Pork Ribs', NULL, NULL), + (347, 6583, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Enriched Manna Biscuit', NULL, NULL), + (347, 6584, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Essence Mango', NULL, NULL), + (347, 6585, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Fatty Bluefin', NULL, NULL), + (347, 6586, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Feltail Delight', NULL, NULL), + (347, 6676, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Filet of Redgill', NULL, NULL), + (347, 6677, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Fillet of Frenzy', NULL, NULL), + (347, 6678, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Fillet of Icefin', NULL, NULL), + (347, 6679, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Fine Aged Cheddar', NULL, NULL), + (347, 6680, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Firecracker Salmon', NULL, NULL), + (347, 6681, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Fish Feast', NULL, NULL), + (347, 6682, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Fisherman\'s Feast', NULL, NULL), + (347, 6683, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Fissure Plant', NULL, NULL), + (347, 6684, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Forest Mushroom Cap', NULL, NULL), + (347, 6685, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Fresh Eagle Meat', NULL, NULL), + (347, 6686, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Freshly Baked Bread', NULL, NULL), + (347, 6687, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Friendship Bread', NULL, NULL), + (347, 6688, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Frog Leg Stew', NULL, NULL), + (347, 6689, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Frostberries', NULL, NULL), + (347, 6690, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Garadar Sharp', NULL, NULL), + (347, 6691, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Giant Clam Scorcho', NULL, NULL), + (347, 6692, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Gigantic Feast', NULL, NULL), + (347, 6693, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Gingerbread Cookie', NULL, NULL), + (347, 6694, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Goblin Deviled Clams', NULL, NULL), + (347, 6695, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Golden Fish Sticks', NULL, NULL), + (347, 6696, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Goldenbark Apple', NULL, NULL), + (347, 6697, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Gooey Spider Cake', NULL, NULL), + (347, 6698, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Goretusk Liver Pie', NULL, NULL), + (347, 6699, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Graccu\'s Homemade Meat Pie', NULL, NULL), + (347, 6700, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Graccu\'s Mince Meat Fruitcake', NULL, NULL), + (347, 6701, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Great Feast', NULL, NULL), + (347, 6702, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Grilled Bonescale', NULL, NULL), + (347, 6703, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Grilled King Crawler Legs', NULL, NULL), + (347, 6704, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Grilled Mudfish', NULL, NULL), + (347, 6705, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Grilled Sculpin', NULL, NULL), + (347, 6706, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Grilled Shadowmoon Tuber', NULL, NULL), + (347, 6707, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Grilled Squid', NULL, NULL), + (347, 6708, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Grim Guzzler Boar', NULL, NULL), + (347, 6709, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Grizzleberries', NULL, NULL), + (347, 6710, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Harvest Boar', NULL, NULL), + (347, 6711, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Harvest Bread', NULL, NULL), + (347, 6712, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Harvest Fish', NULL, NULL), + (347, 6713, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Harvest Fruit', NULL, NULL), + (347, 6714, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Haunch of Meat', NULL, NULL), + (347, 6715, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Haunted Herring', NULL, NULL), + (347, 6716, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Healing Herb', NULL, NULL), + (347, 6717, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Hearty Rhino', NULL, NULL), + (347, 6718, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Heaven Peach', NULL, NULL), + (347, 6719, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Heavy Crocolisk Stew', NULL, NULL), + (347, 6720, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Heavy Kodo Stew', NULL, NULL), + (347, 6721, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Helboar Bacon', NULL, NULL), + (347, 6722, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Hellfire Spineleaf', NULL, NULL), + (347, 6723, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Herb Baked Egg', NULL, NULL), + (347, 6724, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Holiday Cheesewheel', NULL, NULL), + (347, 6725, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Homemade Cherry Pie', NULL, NULL), + (347, 6726, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Honey Bread', NULL, NULL), + (347, 6727, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Honey-Spiced Liichen', NULL, NULL), + (347, 6728, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Hot Buttered Trout', NULL, NULL), + (347, 6729, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Hot Lion Chops', NULL, NULL), + (347, 6730, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Hot Smoked Bass', NULL, NULL), + (347, 6731, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Hot Wolf Ribs', NULL, NULL), + (347, 6732, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Imperial Manta Steak', NULL, NULL), + (347, 6733, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Jessen\'s Special Slop', NULL, NULL), + (347, 6734, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Juicy Bear Burger', NULL, NULL), + (347, 6735, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Jungle Stew', NULL, NULL), + (347, 6736, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Kaldorei Spider Kabob', NULL, NULL), + (347, 6737, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Kibler\'s Bits', NULL, NULL), + (347, 6738, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Last Weeks Mammoth', NULL, NULL), + (347, 6739, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Lean Venison', NULL, NULL), + (347, 6740, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Lean Wolf Steak', NULL, NULL), + (347, 6741, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Leg Meat', NULL, NULL), + (347, 6742, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Lobster Stew', NULL, NULL), + (347, 6743, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Loch Frenzy Delight', NULL, NULL), + (347, 6867, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Lollipop', NULL, NULL), + (347, 6868, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Longjaw Mud Snapper', NULL, NULL), + (347, 6869, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Lovely Cake Slice', NULL, NULL), + (347, 6870, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Lynx Steak', NULL, NULL), + (347, 6871, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Lyribread', NULL, NULL), + (347, 6872, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mag\'har Grainbread', NULL, NULL), + (347, 6873, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mag\'har Mild Cheese', NULL, NULL), + (347, 6874, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mammoth Meal', NULL, NULL), + (347, 6875, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Marsh Lichen', NULL, NULL), + (347, 6876, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mead Basted Caribou', NULL, NULL), + (347, 6877, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mega Mammoth Meal', NULL, NULL), + (347, 6878, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mightfish Steak', NULL, NULL), + (347, 6879, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mighty Rhino Dogs', NULL, NULL), + (347, 6880, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mingo\'s Fortune Giblets', NULL, NULL), + (347, 6881, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mithril Head Trout', NULL, NULL), + (347, 6882, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mixed Berries', NULL, NULL), + (347, 6883, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Moist Cornbread', NULL, NULL), + (347, 6884, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mon\'Nathal Shortribs', NULL, NULL), + (347, 6885, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Monster Omelet', NULL, NULL), + (347, 6886, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Moon Harvest Pumpkin', NULL, NULL), + (347, 6887, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Moonbrook Riot Taffy', NULL, NULL), + (347, 6888, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Moser\'s Magnificent Muffin', NULL, NULL), + (347, 6889, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mulgore Spice Bread', NULL, NULL), + (347, 6890, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Murloc Fin Soup', NULL, NULL), + (347, 6891, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mutton Chop', NULL, NULL), + (347, 6892, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Mystery Stew', NULL, NULL), + (347, 6893, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Naaru Ration', NULL, NULL), + (347, 6894, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Nightfin Soup', NULL, NULL), + (347, 6895, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Northern Stew', NULL, NULL), + (347, 6896, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Ogri\'la Chicken Fingers', NULL, NULL), + (347, 6897, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Oronok\'s Tuber of Agility', NULL, NULL), + (347, 6898, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Oronok\'s Tuber of Agility', NULL, NULL), + (347, 6899, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Oronok\'s Tuber of Spell Power', NULL, NULL), + (347, 6900, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Oronok\'s Tuber of Strength', NULL, NULL), + (347, 6901, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Pickled Egg', NULL, NULL), + (347, 6902, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Pickled Fangtooth', NULL, NULL), + (347, 6903, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Pickled Kodo Foot', NULL, NULL), + (347, 6904, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Poached Bluefish', NULL, NULL), + (347, 6905, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Poached Emperor Salmon', NULL, NULL), + (347, 6906, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Poached Nettlefish', NULL, NULL), + (347, 6907, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Poached Northern Sculpin', NULL, NULL), + (347, 6908, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Poached Sunscale Salmon', NULL, NULL), + (347, 6909, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Radish Kimchi', NULL, NULL), + (347, 6910, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Rainbow Fin Albacore', NULL, NULL), + (347, 6911, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Ravager Dog', NULL, NULL), + (347, 6912, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Ravager Egg Omelet', NULL, NULL), + (347, 6913, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Black Truffle', NULL, NULL), + (347, 6914, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Tallhorn Chunk', NULL, NULL), + (347, 6915, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Red Hot Wings', NULL, NULL), + (347, 6916, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Red Velvet Cupcake', NULL, NULL), + (347, 6917, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Red-speckled Mushroom', NULL, NULL), + (347, 6918, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Redridge Goulash', NULL, NULL), + (347, 6919, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Refreshing Red Apple', NULL, NULL), + (347, 6920, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Rhino Dogs', NULL, NULL), + (347, 6921, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Rhinolicious Wyrmsteak', NULL, NULL), + (347, 6922, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Ripe Watermelon', NULL, NULL), + (347, 6923, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Roast Raptor', NULL, NULL), + (347, 6924, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Roasted Boar Meat', NULL, NULL), + (347, 6925, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Roasted Clefthoof', NULL, NULL), + (347, 6926, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Roasted Kodo Meat', NULL, NULL), + (347, 6927, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Roasted Moongraze Tenderloin', NULL, NULL), + (347, 6928, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Roasted Quail', NULL, NULL), + (347, 6929, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Roasted Worg', NULL, NULL), + (347, 6930, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Rock-Salted Pretzel', NULL, NULL), + (347, 6931, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Rockscale Cod', NULL, NULL), + (347, 6932, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Runn Tub Tuber', NULL, NULL), + (347, 6933, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Runn Tum Tuber Suprise', NULL, NULL), + (347, 6934, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sagefish Delight', NULL, NULL), + (347, 6969, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Salted Venison', NULL, NULL), + (347, 6970, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sand Pear Pie', NULL, NULL), + (347, 6971, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sauteed Goby', NULL, NULL), + (347, 6972, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sauteed Sunfish', NULL, NULL), + (347, 6973, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Savory Deviate Delight', NULL, NULL), + (347, 6985, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Savory Snowplum', NULL, NULL), + (347, 6986, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Scooby Snack', NULL, NULL), + (347, 6987, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Scorpid Surprise', NULL, NULL), + (347, 6988, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Seasoned Wolf Kabob', NULL, NULL), + (347, 6989, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Senggin Root', NULL, NULL), + (347, 6990, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Shinsollo', NULL, NULL), + (347, 6991, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Shiny Red Apple', NULL, NULL), + (347, 6992, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Shoveltusk Soup', NULL, NULL), + (347, 6993, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Shoveltusk Steak', NULL, NULL), + (347, 6994, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sickly Looking Fish', NULL, NULL), + (347, 6995, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sizzling Grizzly Flank', NULL, NULL), + (347, 6996, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Skethyl Berries', NULL, NULL), + (347, 6997, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Skullfish Soup', NULL, NULL), + (347, 6998, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Skyguard Rations', NULL, NULL), + (347, 6999, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Slitherskin Mackerel', NULL, NULL), + (347, 7000, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Small Feast', NULL, NULL), + (347, 7001, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Small Pumpkin', NULL, NULL), + (347, 7002, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Smoked Bear Meat', NULL, NULL), + (347, 7003, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Smoked Black Bear Meat', NULL, NULL), + (347, 7004, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Smoked Desert Dumplings', NULL, NULL), + (347, 7005, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Smoked Rockfin', NULL, NULL), + (347, 7006, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Smoked Sagefish', NULL, NULL), + (347, 7007, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Smoked Salmon', NULL, NULL), + (347, 7008, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Smoked Talbuk Venison', NULL, NULL), + (347, 7009, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Snapper Extreme', NULL, NULL), + (347, 7010, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Snapvine Watermelon', NULL, NULL), + (347, 7011, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Soft Banana Bread', NULL, NULL), + (347, 7012, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Soothing Turtle Bisque', NULL, NULL), + (347, 7013, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sour Goat Cheese', NULL, NULL), + (347, 7014, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sparkling Frostcap', NULL, NULL), + (347, 7015, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Special Chicken Feed', NULL, NULL), + (347, 7016, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spice Bread', NULL, NULL), + (347, 7017, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spiced Beef Jerky', NULL, NULL), + (347, 7018, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spiced Chili Crab', NULL, NULL), + (347, 7019, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spiced Mammoth Treats', NULL, NULL), + (347, 7027, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spiced Wolf Meat', NULL, NULL), + (347, 7028, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spiced Wolf Ribs', NULL, NULL), + (347, 7029, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spiced Wyrm Burger', NULL, NULL), + (347, 7030, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spicy Beefstick', NULL, NULL), + (347, 7031, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spicy Blue Nettlefish', NULL, NULL), + (347, 7032, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spicy Crawdad', NULL, NULL), + (347, 7033, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spicy Fried Herring', NULL, NULL), + (347, 7034, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spicy Hot Talbuk', NULL, NULL), + (347, 7035, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spider Sausage', NULL, NULL), + (347, 7036, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spinefin Halibut', NULL, NULL), + (347, 7037, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spongy Morel', NULL, NULL), + (347, 7038, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sporeggar Mushroom', NULL, NULL), + (347, 7039, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sporeling Snack', NULL, NULL), + (347, 7040, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Springpaw Appetizer', NULL, NULL), + (347, 7041, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Steamed Mandu', NULL, NULL), + (347, 7042, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Steaming Chicken Soup', NULL, NULL), + (347, 7043, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Stewed Drakeflesh', NULL, NULL), + (347, 7044, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Stewed Trout', NULL, NULL), + (347, 7045, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Stolen Ribs', NULL, NULL), + (347, 7046, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Stormchops', NULL, NULL), + (347, 7047, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Stormwind Brie', NULL, NULL), + (347, 7087, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Stormgarde Muenster', NULL, NULL), + (347, 7088, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Styleen\'s Sour Suckerpop', NULL, NULL), + (347, 7089, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Succulent Orca Stew', NULL, NULL), + (347, 7090, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Succulent Pork Ribs', NULL, NULL), + (347, 7091, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sweet Potato Bread', NULL, NULL), + (347, 7092, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Talbuk Steak', NULL, NULL), + (347, 7093, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tasty Cupcake', NULL, NULL), + (347, 7094, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tender Wolf Steak', NULL, NULL), + (347, 7095, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Very Burnt Worg', NULL, NULL), + (347, 7096, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Versicolor Treat', NULL, NULL), + (347, 7097, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Underspore Pod', NULL, NULL), + (347, 7098, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Undermine Clam Chowder', NULL, NULL), + (347, 7099, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Un\'Goro Etherfruit', NULL, NULL), + (347, 7100, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tundra Berries', NULL, NULL), + (347, 7101, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tracker Snacks', NULL, NULL), + (347, 7102, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tough Jerky', NULL, NULL), + (347, 7103, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tender Shovelsteak Steak', NULL, NULL), + (347, 7104, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Zangar Trout', NULL, NULL), + (347, 7105, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Zangar Caps', NULL, NULL), + (347, 7106, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Wyrm Delight', NULL, NULL), + (347, 7107, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Winter Veil Roast', NULL, NULL), + (347, 7108, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Winter Veil Loaf', NULL, NULL), + (347, 7109, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Winter Veil Cookie', NULL, NULL), + (347, 7110, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Winter Veil Candy', NULL, NULL), + (347, 7111, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Winter Squid', NULL, NULL), + (347, 7112, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Winter Kimchi', NULL, NULL), + (347, 7113, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Wild Ricecake', NULL, NULL), + (347, 7114, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Wild Hog Shank', NULL, NULL), + (347, 7115, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Striped Yellowtail', NULL, NULL), + (347, 7116, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Whipper Root Tuber', NULL, NULL), + (347, 7117, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Westfall Stew', NULL, NULL), + (347, 7118, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Warp Burger', NULL, NULL), + (347, 7119, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Telaari Grapes', NULL, NULL), + (347, 7120, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tek\'Abim Banana', NULL, NULL), + (347, 7121, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tasty Lion Steak', NULL, NULL), + (347, 7122, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sunspring Carp', NULL, NULL), + (347, 7123, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Strider Stew', NULL, NULL), + (347, 7124, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tigule and Foror\'s Strawberry Ice Cream', NULL, NULL), + (347, 7125, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tough Hunk of Bread', NULL, NULL), + (347, 7312, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Baked Salmon', NULL, NULL), + (347, 7313, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Darkmoon Dog', NULL, NULL), + (347, 7314, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dwarven Mild', NULL, NULL), + (347, 7951, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bad Egg Nog', NULL, NULL), + (347, 7952, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dalaran Apple Bowl', NULL, NULL), + (347, 7953, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Darkclaw Lobster', NULL, NULL), + (347, 7954, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Egg Nog', NULL, NULL), + (347, 7955, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Enriched Terocone Juice', NULL, NULL), + (347, 7956, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Freshly-Speared Emperor Salmon', NULL, NULL), + (347, 7957, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Funnel Cake', NULL, NULL), + (347, 7958, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Giant Sunfish', NULL, NULL), + (347, 7959, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Honeyed Holiday Ham', NULL, NULL), + (347, 7960, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Large Raw Mightfish', NULL, NULL), + (347, 7961, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Luminous Bluetail', NULL, NULL), + (347, 7962, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Magic Eater', NULL, NULL), + (347, 7963, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Night Dragon\'s Breath', NULL, NULL), + (347, 7964, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Oil Covered Fish', NULL, NULL), + (347, 7965, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Brilliant Smallfish', NULL, NULL), + (347, 7966, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Bristle Whisker Catfish', NULL, NULL), + (347, 7967, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Glossy Mightfish', NULL, NULL), + (347, 7968, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Greater Sagefish', NULL, NULL), + (347, 7969, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Loch Frenzy', NULL, NULL), + (347, 7970, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Longjaw Mud Snapper', NULL, NULL), + (347, 7971, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Mithril Head Trout', NULL, NULL), + (347, 7972, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Nightfin Snapper', NULL, NULL), + (347, 7973, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Raindbow Fin Albacore', NULL, NULL), + (347, 7974, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Redgill', NULL, NULL), + (347, 7975, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Rockscale Cod', NULL, NULL), + (347, 7976, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Sagefish', NULL, NULL), + (347, 7977, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Slitherskin Mackerel', NULL, NULL), + (347, 7978, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Spinefin Halibut', NULL, NULL), + (347, 7979, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Spotted Yellowtail', NULL, NULL), + (347, 7980, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Summer Bass', NULL, NULL), + (347, 7981, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Sunscale Salmon', NULL, NULL), + (347, 7982, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Raw Whitescale Salmon', NULL, NULL), + (347, 7983, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Roasted Mystery Beast', NULL, NULL), + (347, 7984, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Shimmering Minnow', NULL, NULL), + (347, 7986, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Spotted Yellowtail', NULL, NULL), + (347, 7987, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'The Essential Brewfest Pretzel', NULL, NULL), + (347, 7988, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Underwater Mushroom Cap', NULL, NULL), + (347, 7989, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Windblossom Berries', NULL, NULL), + (347, 8004, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Slow-Roasted Eel', NULL, NULL), + (347, 8030, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Afrazi Forest Strider Drumstick', NULL, NULL), + (347, 8687, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Lily Root', NULL, NULL), + (347, 8688, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Warsong Gulch Enriched Ration', NULL, NULL), + (347, 8689, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Warsong Gulch Iron Ration', NULL, NULL), + (347, 8690, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Warsong Gulch Field Ration', NULL, NULL), + (347, 8691, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Arathi Basin Field Ration', NULL, NULL), + (347, 8692, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Arathi Basin Enriched Ration', NULL, NULL), + (347, 8693, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Arathi Basin Iron Ration', NULL, NULL), + (347, 8694, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Defiler\'s Enriched Ration', NULL, NULL), + (347, 8695, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Defiler\'s Field Ration', NULL, NULL), + (347, 8696, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Defiler\'s Iron Ration', NULL, NULL), + (347, 8697, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Highlander\'s Enriched Ration', NULL, NULL), + (347, 8698, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Highlander\'s Field Ration', NULL, NULL), + (347, 8699, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Highlander\'s Iron Ration', NULL, NULL), + (347, 8700, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Lollipop', NULL, NULL), + (347, 8701, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Candy Corn', NULL, NULL), + (347, 8702, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Candy Bar', NULL, NULL), + (347, 8703, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Hallow\'s End Pumpink Treat', NULL, NULL), + (347, 8704, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Festival Dumplings', NULL, NULL), + (347, 8705, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Buttermilk Delight', NULL, NULL), + (347, 8706, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Dark Desire', NULL, NULL), + (347, 8707, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Very Berry Cream', NULL, NULL), + (347, 8708, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sweet Surprise', NULL, NULL), + (347, 8709, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tasty Summer Treat', NULL, NULL), + (347, 8710, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Toasted Smorc', NULL, NULL), + (347, 8711, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Midsummer Sausage', NULL, NULL), + (347, 8712, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Fire-toasted Bun', NULL, NULL), + (347, 8713, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Elderberry Pie', NULL, NULL), + (347, 8714, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Edible Stalks', NULL, NULL), + (347, 8715, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Nagrand Cherry', NULL, NULL), + (347, 8716, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Edible Fern', NULL, NULL), + (347, 8717, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Goblin Gumbo', NULL, NULL), + (347, 8718, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Tricky Treat', NULL, NULL), + (347, 8719, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Pyroblast Cinnamon Ball', NULL, NULL), + (347, 8720, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'G.N.E.R.D.S.', NULL, NULL), + (347, 8721, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Soothing Spearmint Candy', NULL, NULL), + (347, 8722, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Chewy Fel Taffy', NULL, NULL), + (347, 8723, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bag of Popcorn', NULL, NULL), + (347, 8724, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Bag of Peanuts', NULL, NULL), + (347, 9518, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Sewer Carp', NULL, NULL), + (347, 10658, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten', 'Black Jelly', NULL, NULL), + (349, 5305, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Flight paths taken', 'Flight paths taken', NULL, NULL), + (350, 4992, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Shattrath', NULL, NULL), + (350, 4993, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Dalaran', NULL, NULL), + (350, 4994, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Darnassus', NULL, NULL), + (350, 4995, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Exodar', NULL, NULL), + (350, 4996, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Shattrath', NULL, NULL), + (350, 4997, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Ironforge', NULL, NULL), + (350, 4998, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Orgrimmar', NULL, NULL), + (350, 4999, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Silvermoon', NULL, NULL), + (350, 5000, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Stonard', NULL, NULL), + (350, 5001, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Stormwind', NULL, NULL), + (350, 5002, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Theramore', NULL, NULL), + (350, 5003, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Thunder Bluff', NULL, NULL), + (350, 5004, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage Portals taken', 'Portal to Undercity', NULL, NULL), + (353, 5008, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Number of times hearthed', 'Hearthstone', NULL, NULL), + (353, 11719, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Number of times hearthed', 'Ruby Slippers', NULL, NULL), + (362, 5726, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '5v5 victories', 'Blade\'s Edge 5v5 Wins', NULL, NULL), + (362, 8599, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '5v5 victories', 'Dalaran 5v5 Wins', NULL, NULL), + (362, 8600, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '5v5 victories', 'Nagrand 5v5 Wins', NULL, NULL), + (362, 8601, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '5v5 victories', 'Ruins of Lordaeron 5v5 Wins', NULL, NULL), + (362, 8602, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '5v5 victories', 'Ring of Valor 5v5 Wins', NULL, NULL), + (363, 5723, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '5v5 matches', 'Blade\'s Edge 5v5 Matches', NULL, NULL), + (363, 8595, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '5v5 matches', 'Dalara 5v5 Matches', NULL, NULL), + (363, 8596, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '5v5 matches', 'Nagrand 5v5 Matches', NULL, NULL), + (363, 8597, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '5v5 matches', 'Ruins of Lordaeron 5v5 Matches', NULL, NULL), + (363, 8598, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '5v5 matches', 'Ring of Valor 5v5 Matches', NULL, NULL), + (364, 5727, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '3v3 victories', 'Blade\'s Edge 3v3 Wins', NULL, NULL), + (364, 8607, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '3v3 victories', 'Dalaran 3v3 Wins', NULL, NULL), + (364, 8608, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '3v3 victories', 'Nagrand 3v3 Wins', NULL, NULL), + (364, 8609, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '3v3 victories', 'Ruins of Lordaeron 3v3 Wins', NULL, NULL), + (364, 8610, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '3v3 victories', 'Ring of Valor 3v3 Wins', NULL, NULL), + (365, 5724, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '3v3 matches', 'Blade\'s Edge 3v3 Matches', NULL, NULL), + (365, 8603, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '3v3 matches', 'Dalaran 3v3 Matches', NULL, NULL), + (365, 8604, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '3v3 matches', 'Nagrand 3v3 Matches', NULL, NULL), + (365, 8605, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '3v3 matches', 'Ruind of Lordaeron 3v3 Matches', NULL, NULL), + (365, 8606, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '3v3 matches', 'Ring of Valor 3v3 Matches', NULL, NULL), + (366, 5728, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '2v2 victories', 'Blade\'s Edge 2v2 Wins', NULL, NULL), + (366, 8615, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '2v2 victories', 'Dalran 2v2 Wins', NULL, NULL), + (366, 8616, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '2v2 victories', 'Nagrand 2v2 Wins', NULL, NULL), + (366, 8617, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '2v2 victories', 'Ruins of Lordaeron 2v2 Wins', NULL, NULL), + (366, 8618, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '2v2 victories', 'Ring of Valor 2v2 Wins', NULL, NULL), + (367, 5725, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '2v2 matches', 'Blade\'s Edge 2v2 Matches', NULL, NULL), + (367, 8611, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '2v2 matches', 'Dalaran 2v2 Matches', NULL, NULL), + (367, 8612, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '2v2 matches', 'nagrand 2v2 Matches', NULL, NULL), + (367, 8613, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '2v2 matches', 'Ruins of Lordaeron 2v2 Matches', NULL, NULL), + (367, 8614, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, '2v2 matches', 'Ring of Valor 2v2 Matches', NULL, NULL), + (370, 451, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Highest 2 man personal rating', 'Highest 2 man personal rating', NULL, NULL), + (374, 448, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Highest 2 man team rating', '', NULL, NULL), + (377, 982, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most factions at Exalted', 'Exalted Reputations', NULL, NULL), + (378, 5299, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most factions at Revered or higher', 'Factions at revered', NULL, NULL), + (381, 5492, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'World Honorable Kills', 'Eastern Kingdoms', NULL, NULL), + (381, 5493, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'World Honorable Kills', 'Kalimdor', NULL, NULL), + (381, 5494, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'World Honorable Kills', 'Outland', NULL, NULL), + (381, 5495, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'World Honorable Kills', 'Northrend', NULL, NULL), + (382, 5499, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Honorable Kills', 'Arathi Basin', NULL, NULL), + (382, 5500, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Honorable Kills', 'Alterac Valley', NULL, NULL), + (382, 5501, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Honorable Kills', 'Warsong Gulch', NULL, NULL), + (382, 5502, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Honorable Kills', 'Eye of the Storm', NULL, NULL), + (382, 5503, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Honorable Kills', 'Strand of the Ancients', NULL, NULL), + (382, 13260, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Honorable Kills', 'Isle of Conquest', NULL, NULL), + (383, 8839, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Arena Honorable Kills', 'Blade\'s Edge Arena Kills', NULL, NULL), + (383, 9161, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Arena Honorable Kills', 'Dalaran Sewers Arena Kills', NULL, NULL), + (383, 9162, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Arena Honorable Kills', 'Nagrand Arena Kills', NULL, NULL), + (383, 9163, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Arena Honorable Kills', 'Ruins of Lordaeron Arena Kills', NULL, NULL), + (383, 9164, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Arena Honorable Kills', 'The Ring of Valor Arena Kills', NULL, NULL), + (388, 5020, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Stormwind City', NULL, NULL), + (388, 5021, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Ironforge', NULL, NULL), + (388, 5022, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Darnassus', NULL, NULL), + (388, 5023, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Cenarion Enclave', NULL, NULL), + (388, 5024, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Craftsmen\'s Terrace', NULL, NULL), + (388, 5025, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'The Temple Gardens', NULL, NULL), + (388, 5026, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Tradesmen\'s Terrace', NULL, NULL), + (388, 5027, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Warrior\'s Terrace', NULL, NULL), + (388, 5028, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'The Exodar', NULL, NULL), + (388, 5029, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Valley of Heroes', NULL, NULL), + (388, 5030, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Stormwind Harbor', NULL, NULL), + (389, 3225, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Gurubashi Arena Master', 'Arena Master obtained', NULL, NULL), + (389, 3226, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Gurubashi Arena Master', 'Arena Master Quest Completed', NULL, NULL), + (389, 7767, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Gurubashi Arena Master', 'Arena Grand Master obtained', NULL, NULL), + (393, 436, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Alterac Valley towers defended', 'Alterac Valley towers defended', NULL, NULL), + (394, 437, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Alterac Valley towers captured', 'Alterac Valley towers captured', NULL, NULL), + (395, 439, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Warsong Gulch flags captured', 'Warsong Gulch flags captured', NULL, NULL), + (396, 3227, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Gurubashi Arena Grand Master', 'Arena Grandmaster quest complete', NULL, NULL), + (396, 3228, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Gurubashi Arena Grand Master', 'Arena Grand Master item gained', NULL, NULL), + (397, 306, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Step Into The Arena', 'Win 1 ranked arena match', NULL, NULL), + (398, 307, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Mercilessly Dedicated', 'Win 100 ranked arena matches', NULL, NULL), + (399, 329, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Just the Two of Us: 1550', '1550 rating', NULL, NULL), + (400, 332, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Just the Two of Us: 1750', '1750 rating', NULL, NULL), + (401, 335, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Just the Two of Us: 2000', '2000 rating', NULL, NULL), + (402, 330, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Three\'s Company: 1550', '1550 rating', NULL, NULL), + (403, 333, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Three\'s Company: 1750', '1750 rating', NULL, NULL), + (404, 337, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'High Five: 2000', '2000 rating', NULL, NULL), + (405, 336, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Three\'s Company: 2000', '2000 rating', NULL, NULL), + (406, 331, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'High Five: 1550', '1550 rating', NULL, NULL), + (407, 334, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'High Five: 1750', '1750 rating', NULL, NULL), + (408, 2408, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Hot Streak', 'Win 10 arenas without losing', NULL, NULL), + (409, 3822, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Last Man Standing', 'Last man standing', NULL, NULL), + (411, 349, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Murky', 'Blue Murloc Egg', NULL, NULL), + (411, 6157, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Murky', 'Murky', NULL, NULL), + (412, 350, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Murloc Costume', 'Murloc Costume', NULL, NULL), + (412, 9082, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Murloc Costume', 'Murloc Costume', NULL, NULL), + (414, 2430, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Tyrael\'s Hilt', 'Tyrael\'s Hilt', NULL, NULL), + (414, 6158, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Tyrael\'s Hilt', 'Tyrael', NULL, NULL), + (415, 6974, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Big Blizzard Bear', 'Big Blizzard Bear', NULL, NULL), + (415, 6975, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Big Blizzard Bear', 'Big Blizzard Bear', NULL, NULL), + (416, 328, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Scarab Lord', 'Scarab Lord', NULL, NULL), + (418, 5597, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Merciless Gladiator', 'Merciless Gladiator', NULL, NULL), + (419, 5599, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Vengeful Gladiator', 'Vengeful Gladiator', NULL, NULL), + (420, 5600, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Brutal Gladiator', 'Brutal Gladiator', NULL, NULL), + (424, 9420, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Why? Because It\'s Red', 'Red Qiraji Resonating Crystal', NULL, NULL), + (425, 747, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Atiesh, Greatstaff of the Guardian', 'Atiesh, Greatstaff of the Guardian', NULL, NULL), + (425, 748, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Atiesh, Greatstaff of the Guardian', 'Atiesh, Greatstaff of the Guardian', NULL, NULL), + (425, 749, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Atiesh, Greatstaff of the Guardian', 'Atiesh, Greatstaff of the Guardian', NULL, NULL), + (425, 750, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Atiesh, Greatstaff of the Guardian', 'Atiesh, Greatstaff of the Guardian', NULL, NULL), + (426, 325, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Warglaives of Azzinoth', 'Warglaive of Azzinoth (Off Hand)', NULL, NULL), + (426, 326, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Warglaives of Azzinoth', 'Warglaive of Azzinoth (Main Hand)', NULL, NULL), + (426, 12480, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Warglaives of Azzinoth', '', NULL, NULL), + (426, 12481, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Warglaives of Azzinoth', '', NULL, NULL), + (428, 746, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Thunderfury, Blessed Blade of the Windseeker', 'Thunderfury, Blessed Blade of the Windseeker', NULL, NULL), + (428, 12479, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Thunderfury, Blessed Blade of the Windseeker', '', NULL, NULL), + (429, 318, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Sulfuras, Hand of Ragnaros', 'Sulfuras, Hand of Ragnaros', NULL, NULL), + (429, 12478, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Sulfuras, Hand of Ragnaros', '', NULL, NULL), + (430, 6170, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Amani War Bear', 'Amani War Bear', NULL, NULL), + (431, 744, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Hand of A\'dal', 'The Vials of Eternity', NULL, NULL), + (431, 745, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Hand of A\'dal', 'A Distraction for Akama', NULL, NULL), + (432, 742, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Champion of the Naaru', 'Trial of the Naaru', NULL, NULL), + (432, 6789, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Champion of the Naaru', 'Champion of the Naaru', NULL, NULL), + (433, 707, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Grand Marshal', 'Grand Marshal', NULL, NULL), + (434, 708, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Field Marshal', 'Field Marshal', NULL, NULL), + (435, 710, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Commander', 'Commander', NULL, NULL), + (436, 711, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Lieutenant Commander', 'Lieutenant Commander', NULL, NULL), + (437, 712, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Knight-Champion', 'Knight-Champion', NULL, NULL), + (438, 713, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Knight-Captain', 'Knight-Captain', NULL, NULL), + (439, 721, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Knight', 'Knight', NULL, NULL), + (440, 722, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Sergeant Major', 'Sergeant Major', NULL, NULL), + (441, 723, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Master Sergeant', 'Master Sergeant', NULL, NULL), + (442, 726, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Private', 'Private', NULL, NULL), + (443, 727, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'High Warlord', 'High Warlord', NULL, NULL), + (444, 730, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Lieutenant General', 'Lieutenant General', NULL, NULL), + (445, 728, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Warlord', 'Warlord', NULL, NULL), + (446, 729, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'General', 'General', NULL, NULL), + (447, 731, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Champion', 'Champion', NULL, NULL), + (448, 732, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Centurion', 'Centurion', NULL, NULL), + (449, 734, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Blood Guard', 'Blood Guard', NULL, NULL), + (450, 737, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Senior Sergeant', 'Senior Sergeant', NULL, NULL), + (451, 735, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Stone Guard', 'Stone Guard', NULL, NULL), + (452, 736, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'First Sergeant', 'First Sergeant', NULL, NULL), + (453, 738, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Sergeant', 'Sergeant', NULL, NULL), + (454, 740, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Scout', 'Scout', NULL, NULL), + (456, 5224, 1, 81, -1, 1, 80, 71, 80, NULL, 0, 'Realm First! Obsidian Slayer', 'Sartharion the Onyx Guardian', NULL, NULL), + (457, 5212, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80', 'Level 80', NULL, NULL), + (458, 5221, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Rogue', 'Level to 80', NULL, NULL), + (459, 5220, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Warrior', 'Level to 80', NULL, NULL), + (460, 5018, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Mage', 'Level to 80', NULL, NULL), + (461, 5219, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Death Knight', 'Level to 80', NULL, NULL), + (462, 5218, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Hunter', 'Level to 80', NULL, NULL), + (463, 5217, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Warlock', 'Level to 80', NULL, NULL), + (464, 5216, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Priest', 'Level to 80', NULL, NULL), + (465, 5215, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Paladin', 'Level to 80', NULL, NULL), + (466, 5214, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Druid', 'Level to 80', NULL, NULL), + (467, 5213, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Shaman', 'Level to 80', NULL, NULL), + (468, 739, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Grunt', 'Grunt', NULL, NULL), + (469, 733, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Legionnaire', 'Legionnaire', NULL, NULL), + (470, 725, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Corporal', 'Corporal', NULL, NULL), + (471, 724, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Sergeant', 'Sergeant', NULL, NULL), + (472, 714, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Knight-Lieutenant', 'Knight-Lieutenant', NULL, NULL), + (473, 709, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Marshal', 'Marshal', NULL, NULL), + (477, 189, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Utgarde Keep', 'Prince Keleseth', NULL, NULL), + (477, 190, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Utgarde Keep', 'Skarvald the Constructor', NULL, NULL), + (477, 191, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Utgarde Keep', 'Dalronn the Controller', NULL, NULL), + (477, 192, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Utgarde Keep', 'Ingvar the Plunderer', NULL, NULL), + (478, 195, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Nexus', 'Grand Magus Telestra', NULL, NULL), + (478, 196, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Nexus', 'Anomalus', NULL, NULL), + (478, 197, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Nexus', 'Ormorok the Tree-Shaper', NULL, NULL), + (478, 198, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Nexus', 'Keristrasza', NULL, NULL), + (479, 211, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Culling of Stratholme', 'Meathook', NULL, NULL), + (479, 212, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Culling of Stratholme', 'Salramm the Fleshcrafter', NULL, NULL), + (479, 213, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Culling of Stratholme', 'Chrono-Lord Epoch', NULL, NULL), + (479, 6381, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Culling of Stratholme', 'Mal\'Ganis', NULL, NULL), + (480, 2041, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Azjol-Nerub', 'Krik\'thir the Gatewatcher', NULL, NULL), + (480, 2042, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Azjol-Nerub', 'Hadronox', NULL, NULL), + (480, 2043, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Azjol-Nerub', 'Anub\'arak', NULL, NULL), + (481, 3578, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Ahn\'kahet: The Old Kingdom', 'Prince Taldaram', NULL, NULL), + (481, 3579, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Ahn\'kahet: The Old Kingdom', 'Elder Nadox', NULL, NULL), + (481, 3580, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Ahn\'kahet: The Old Kingdom', 'Jedoga Shadowseeker', NULL, NULL), + (481, 3581, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Ahn\'kahet: The Old Kingdom', 'Herald Volazj', NULL, NULL), + (482, 199, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Drak\'Tharon Keep', 'Trollgore', NULL, NULL), + (482, 200, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Drak\'Tharon Keep', 'Novos the Summoner', NULL, NULL), + (482, 201, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Drak\'Tharon Keep', 'King Dred', NULL, NULL), + (482, 9098, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Drak\'Tharon Keep', 'The Prophet Tharon\'ja', NULL, NULL), + (483, 3582, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Violet Hold', 'Cyanigosa', NULL, NULL), + (484, 3574, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Gundrak', 'Slad\'ran', NULL, NULL), + (484, 3575, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Gundrak', 'Moorabi', NULL, NULL), + (484, 3576, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Gundrak', 'Drakkari Colossus', NULL, NULL), + (484, 3577, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Gundrak', 'Gal\'darah', NULL, NULL), + (485, 215, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Halls of Stone', 'Maiden of Grief', NULL, NULL), + (485, 216, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Halls of Stone', 'Krystallus', NULL, NULL), + (485, 217, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Halls of Stone', 'Sjonnir the Ironshaper', NULL, NULL), + (485, 6935, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Halls of Stone', 'The Tribunal of Ages', NULL, NULL), + (486, 218, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Halls of Lightning', 'General Bjarngrim', NULL, NULL), + (486, 219, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Halls of Lightning', 'Volkhan', NULL, NULL), + (486, 220, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Halls of Lightning', 'Ionar', NULL, NULL), + (486, 1827, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Halls of Lightning', 'Loken', NULL, NULL), + (487, 203, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Oculus', 'Drakos the Interrogator', NULL, NULL), + (487, 204, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Oculus', 'Varos Cloudstrider', NULL, NULL), + (487, 205, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Oculus', 'Mage-Lord Urom', NULL, NULL), + (487, 206, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Oculus', 'Ley-Guardian Eregos', NULL, NULL), + (488, 207, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Utgarde Pinnacle', 'Svala Sorrowgrave', NULL, NULL), + (488, 208, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Utgarde Pinnacle', 'Gortok Palehoof', NULL, NULL), + (488, 209, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Utgarde Pinnacle', 'Skadi the Ruthless', NULL, NULL), + (488, 210, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Utgarde Pinnacle', 'King Ymiron', NULL, NULL), + (489, 3701, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Utgarde Keep', 'Prince Keleseth', NULL, NULL), + (489, 3702, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Utgarde Keep', 'Skarvald the Constructor', NULL, NULL), + (489, 3703, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Utgarde Keep', 'Dalronn the Controller', NULL, NULL), + (489, 3704, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Utgarde Keep', 'Ingvar the Plunderer', NULL, NULL), + (490, 5245, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Nexus', 'Grand Magus Telestra', NULL, NULL), + (490, 5246, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Nexus', 'Anomalus', NULL, NULL), + (490, 5247, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Nexus', 'Ormorok the Tree-Shaper', NULL, NULL), + (490, 5248, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Nexus', 'Keristrasza', NULL, NULL), + (491, 6848, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Azjol-Nerub', 'Krik\'thir the Gatewatcher', NULL, NULL), + (491, 6849, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Azjol-Nerub', 'Hadronox', NULL, NULL), + (491, 6850, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Azjol-Nerub', 'Anub\'arak', NULL, NULL), + (492, 5054, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Ahn\'kahet: The Old Kingdom', 'Amanitar', NULL, NULL), + (492, 6851, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Ahn\'kahet: The Old Kingdom', 'Prince Taldaram', NULL, NULL), + (492, 6852, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Ahn\'kahet: The Old Kingdom', 'Elder Nadox', NULL, NULL), + (492, 6853, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Ahn\'kahet: The Old Kingdom', 'Jedoga Shadowseeker', NULL, NULL), + (492, 6854, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Ahn\'kahet: The Old Kingdom', 'Herald Volazj', NULL, NULL), + (493, 6813, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Drak\'Tharon Keep', 'Trollgore', NULL, NULL), + (493, 6814, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Drak\'Tharon Keep', 'Novos the Summoner', NULL, NULL), + (493, 6815, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Drak\'Tharon Keep', 'King Dred', NULL, NULL), + (493, 9099, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Drak\'Tharon Keep', 'The Prophet Tharon\'ja', NULL, NULL), + (494, 6855, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Violet Hold', 'Cyanigosa', NULL, NULL), + (495, 5053, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Gundrak', 'Eck the Ferocious', NULL, NULL), + (495, 6839, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Gundrak', 'Slad\'ran', NULL, NULL), + (495, 6840, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Gundrak', 'Moorabi', NULL, NULL), + (495, 6841, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Gundrak', 'Drakkari Colossus', NULL, NULL), + (495, 6842, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Gundrak', 'Gal\'darah', NULL, NULL), + (496, 6856, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Halls of Stone', 'Maiden of Grief', NULL, NULL), + (496, 6857, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Halls of Stone', 'Krystallus', NULL, NULL), + (496, 6858, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Halls of Stone', 'Sjonnir the Ironshaper', NULL, NULL), + (496, 6936, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Halls of Stone', 'The Tribunal of Ages', NULL, NULL), + (497, 6831, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Halls of Lightning', 'General Bjarngrim', NULL, NULL), + (497, 6832, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Halls of Lightning', 'Ionar', NULL, NULL), + (497, 6833, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Halls of Lightning', 'Volkhan', NULL, NULL), + (497, 6834, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Halls of Lightning', 'Loken', NULL, NULL), + (498, 6859, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Oculus', 'Drakos the Interrogator', NULL, NULL), + (498, 6860, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Oculus', 'Mage-Lord Urom', NULL, NULL), + (498, 6861, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Oculus', 'Varos Cloudstrider', NULL, NULL), + (498, 6862, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Oculus', 'Ley-Guardian Eregos', NULL, NULL), + (499, 6863, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Utgarde Pinnacle', 'Skadi the Ruthless', NULL, NULL), + (499, 6864, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Utgarde Pinnacle', 'Svala Sorrowgrave', NULL, NULL), + (499, 6865, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Utgarde Pinnacle', 'Gortok Palehoof', NULL, NULL), + (499, 6866, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Utgarde Pinnacle', 'King Ymiron', NULL, NULL), + (500, 6805, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Culling of Stratholme', 'Meathook', NULL, NULL), + (500, 6806, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Culling of Stratholme', 'Chrono-Lord Epoch', NULL, NULL), + (500, 6807, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Culling of Stratholme', 'Salramm the Fleshcrafter', NULL, NULL), + (500, 6808, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Culling of Stratholme', 'Mal\'Ganis', NULL, NULL), + (503, 230, 10, 96, -1, 6, 20, 1, 1, NULL, 10, '50 Quests Completed', 'Complete 50 quests', NULL, NULL), + (504, 231, 10, 96, -1, 5, 40, 1, 1, NULL, 10, '100 Quests Completed', 'Complete 100 quests', NULL, NULL), + (505, 232, 10, 96, -1, 4, 60, 1, 1, NULL, 10, '250 Quests Completed', 'Complete 250 quests', NULL, NULL), + (506, 233, 10, 96, -1, 3, 70, 1, 1, NULL, 10, '500 Quests Completed', 'Complete 500 quests', NULL, NULL), + (507, 234, 10, 96, -1, 2, 80, 1, 1, NULL, 10, '1000 Quests Completed', 'Complete 1000 quests', NULL, NULL), + (508, 236, 10, 96, -1, 2, 80, 1, 1, NULL, 10, '1500 Quests Completed', 'Complete 1500 quests', NULL, NULL), + (509, 6793, 10, 95, -1, 1, 80, 1, 1, NULL, 10, '10000 Honorable Kills', 'Get 10000 honorable kills', NULL, NULL), + (512, 6794, 10, 95, -1, 1, 80, 1, 1, NULL, 10, '5000 Honorable Kills', 'Get 5000 honorable kills', NULL, NULL), + (513, 6797, 10, 95, -1, 1, 80, 1, 1, NULL, 10, '100 Honorable Kills', 'Get 100 honorable kills', NULL, NULL), + (515, 6796, 10, 95, -1, 1, 80, 1, 1, NULL, 10, '500 Honorable Kills', 'Get 500 honorable kills', NULL, NULL), + (516, 6795, 10, 95, -1, 1, 80, 1, 1, NULL, 10, '1000 Honorable Kills', 'Get 1000 honorable kills', NULL, NULL), + (518, 985, 10, 201, -1, 1, 80, 1, 1, NULL, 10, '30 Exalted Reputations', '30 reputations to exalted', NULL, NULL), + (519, 984, 10, 201, -1, 1, 80, 1, 1, NULL, 10, '25 Exalted Reputations', '25 reputations to exalted', NULL, NULL), + (520, 981, 10, 201, -1, 1, 80, 1, 1, NULL, 10, '20 Exalted Reputations', '20 reputations to exalted', NULL, NULL), + (521, 980, 10, 201, -1, 1, 80, 1, 1, NULL, 10, '15 Exalted Reputations', '15 reputations to exalted', NULL, NULL), + (522, 977, 10, 201, -1, 1, 80, 1, 1, NULL, 10, 'Somebody Likes Me', 'Get a reputation to exalted', NULL, NULL), + (523, 978, 10, 201, -1, 1, 80, 1, 1, NULL, 10, '5 Exalted Reputations', '5 reputations to exalted', NULL, NULL), + (524, 979, 10, 201, -1, 1, 80, 1, 1, NULL, 10, '10 Exalted Reputations', '10 reputations to exalted', NULL, NULL), + (527, 5371, 1, 141, 1, 1, 80, 1, 1, NULL, 0, 'Largest hit received', 'Largest hit received', NULL, NULL), + (528, 5372, 1, 141, 1, 1, 80, 1, 1, NULL, 0, 'Total damage received', 'Total damage received', NULL, NULL), + (529, 5300, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most factions at Honored or higher', 'Factions at honored', NULL, NULL), + (545, 2341, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Shave and a Haircut', 'Visit a barbershop and pay for using their services.', NULL, NULL), + (546, 752, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Safe Deposit', 'Purchase 7 bank slots', NULL, NULL), + (547, 285, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Veteran of the Wrathgate', 'Return to Angrathar - Alliance', NULL, NULL), + (547, 286, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Veteran of the Wrathgate', 'Return to Angrathar - Horde', NULL, NULL), + (556, 2342, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Head', NULL, NULL), + (556, 2343, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Neck', NULL, NULL), + (556, 2344, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Shoulder', NULL, NULL), + (556, 2345, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Chest', NULL, NULL), + (556, 2346, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Waist', NULL, NULL), + (556, 2347, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Legs', NULL, NULL), + (556, 2348, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Feet', NULL, NULL), + (556, 2349, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Wrist', NULL, NULL), + (556, 2350, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Hands', NULL, NULL), + (556, 2351, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Left Ring', NULL, NULL), + (556, 2353, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'First Trinket', NULL, NULL), + (556, 2355, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Cloak', NULL, NULL), + (556, 2356, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Weapon', NULL, NULL), + (556, 2357, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Ranged', NULL, NULL), + (556, 5816, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Right Ring', NULL, NULL), + (556, 5817, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Epic', 'Second Trinket', NULL, NULL), + (557, 3723, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Head', NULL, NULL), + (557, 3724, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Neck', NULL, NULL), + (557, 3725, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Shoulder', NULL, NULL), + (557, 3726, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Chest', NULL, NULL), + (557, 3727, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Waist', NULL, NULL), + (557, 3728, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Legs', NULL, NULL), + (557, 3729, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Feet', NULL, NULL), + (557, 3730, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Wrist', NULL, NULL), + (557, 3731, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Hands', NULL, NULL), + (557, 3732, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Left Ring', NULL, NULL), + (557, 3733, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Right Ring', NULL, NULL), + (557, 3734, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'First Trinket', NULL, NULL), + (557, 3735, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Second Trinket', NULL, NULL), + (557, 3736, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Cloak', NULL, NULL), + (557, 3737, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Weapon', NULL, NULL), + (557, 3738, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Superior', 'Ranged', NULL, NULL), + (558, 2358, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Greedy', 'Roll greed and get exactly 100 on an item over level 185.', NULL, NULL), + (559, 2412, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Needy', 'roll need and get exactly 100 on an item above 185', NULL, NULL), + (560, 3683, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Deadliest Catch', 'Mudskunk Lure', NULL, NULL), + (561, 347, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'D.E.H.T.A\'s Little P.I.T.A.', 'Assassination of Harold Lane', NULL, NULL), + (562, 351, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Arachnid Quarter (10 player)', 'Anub\'Rekhan', NULL, NULL), + (562, 352, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Arachnid Quarter (10 player)', 'Grand Widow Faerlina', NULL, NULL), + (562, 353, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Arachnid Quarter (10 player)', 'Maexxna', NULL, NULL), + (563, 3834, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Arachnid Quarter (25 player)', 'Anub\'Rekhan', NULL, NULL), + (563, 3835, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Arachnid Quarter (25 player)', 'Grand Widow Faerlina', NULL, NULL), + (563, 3836, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Arachnid Quarter (25 player)', 'Maexxna', NULL, NULL), + (564, 357, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Construct Quarter (10 player)', 'Patchwerk', NULL, NULL), + (564, 358, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Construct Quarter (10 player)', 'Grobbulus', NULL, NULL), + (564, 359, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Construct Quarter (10 player)', 'Gluth', NULL, NULL), + (564, 360, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Construct Quarter (10 player)', 'Thaddius', NULL, NULL), + (565, 3837, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Construct Quarter (25 player)', 'Patchwerk', NULL, NULL), + (565, 3838, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Construct Quarter (25 player)', 'Grobbulus', NULL, NULL), + (565, 3839, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Construct Quarter (25 player)', 'Gluth', NULL, NULL), + (565, 3840, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Construct Quarter (25 player)', 'Thaddius', NULL, NULL), + (566, 365, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Plague Quarter (10 player)', 'Noth the Plaguebringer', NULL, NULL), + (566, 366, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Plague Quarter (10 player)', 'Heigan the Unclean', NULL, NULL), + (566, 367, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Plague Quarter (10 player)', 'Loatheb', NULL, NULL), + (567, 3841, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Plague Quarter (25 player)', 'Noth the Plaguebringer', NULL, NULL), + (567, 3842, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Plague Quarter (25 player)', 'Heigan the Unclean', NULL, NULL), + (567, 3843, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Plague Quarter (25 player)', 'Loatheb', NULL, NULL), + (568, 372, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Military Quarter (10 player)', 'Instructor Razuvious', NULL, NULL), + (568, 373, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Military Quarter (10 player)', 'Gothik the Harvester', NULL, NULL), + (568, 7192, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Military Quarter (10 player)', 'The Four Horsemen', NULL, NULL), + (569, 3844, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Military Quarter (25 player)', 'Instructor Razuvious', NULL, NULL), + (569, 3845, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Military Quarter (25 player)', 'Gothik the Harvester', NULL, NULL), + (569, 7193, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Military Quarter (25 player)', 'The Four Horsemen', NULL, NULL), + (572, 379, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Sapphiron\'s Demise (10 player)', 'Sapphiron', NULL, NULL), + (573, 3847, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Sapphiron\'s Demise (25 player)', 'Sapphiron', NULL, NULL), + (574, 381, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Kel\'Thuzad\'s Defeat (10 player)', 'Kel\'Thuzad', NULL, NULL), + (575, 382, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Kel\'Thuzad\'s Defeat (25 player)', 'Kel\'Thuzad', NULL, NULL), + (576, 383, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Fall of Naxxramas (10 player)', 'The Arachnid Quarter', NULL, NULL), + (576, 384, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Fall of Naxxramas (10 player)', 'The Construct Quarter', NULL, NULL), + (576, 385, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Fall of Naxxramas (10 player)', 'The Plague Quarter', NULL, NULL), + (576, 386, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Fall of Naxxramas (10 player)', 'The Military Quarter', NULL, NULL), + (576, 387, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Fall of Naxxramas (10 player)', 'Sapphiron\'s Demise', NULL, NULL), + (576, 388, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Fall of Naxxramas (10 player)', 'Kel\'Thuzad\'s Defeat', NULL, NULL), + (577, 389, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Fall of Naxxramas (25 player)', 'The Arachnid Quarter', NULL, NULL), + (577, 390, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Fall of Naxxramas (25 player)', 'The Construct Quarter', NULL, NULL), + (577, 391, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Fall of Naxxramas (25 player)', 'The Plague Quarter', NULL, NULL), + (577, 392, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Fall of Naxxramas (25 player)', 'The Military Quarter', NULL, NULL), + (577, 393, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Fall of Naxxramas (25 player)', 'Sapphiron\'s Demise', NULL, NULL), + (577, 394, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Fall of Naxxramas (25 player)', 'Kel\'Thuzad\'s Defeat', NULL, NULL), + (578, 6802, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Kel\'Thuzad', NULL, NULL), + (578, 7146, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Anub\'Rekhan', NULL, NULL), + (578, 7147, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Grand Widow Faerlina', NULL, NULL), + (578, 7148, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Maexxna', NULL, NULL), + (578, 7149, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Patchwerk', NULL, NULL), + (578, 7150, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Grobbulus', NULL, NULL), + (578, 7151, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Gluth', NULL, NULL), + (578, 7152, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Thaddius', NULL, NULL), + (578, 7153, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Noth the Plaguebringer', NULL, NULL), + (578, 7154, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Heigan the Unclean', NULL, NULL), + (578, 7155, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Loatheb', NULL, NULL), + (578, 7156, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Instructor Razuvious', NULL, NULL), + (578, 7157, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Gothik the Harvester', NULL, NULL), + (578, 7158, 25, 14922, 168, 1, 80, 1, 1, NULL, 25, 'The Dedicated Few (10 player)', 'Sapphiron', NULL, NULL), + (579, 7159, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Anub\'Rekhan', NULL, NULL), + (579, 7160, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Grand Widow Faerlina', NULL, NULL), + (579, 7161, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Maexxna', NULL, NULL), + (579, 7162, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Patchwerk', NULL, NULL), + (579, 7163, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Grobbulus', NULL, NULL), + (579, 7164, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Gluth', NULL, NULL), + (579, 7165, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Thaddius', NULL, NULL), + (579, 7166, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Noth the Plaguebringer', NULL, NULL), + (579, 7167, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Heigan the Unclean', NULL, NULL), + (579, 7168, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Loatheb', NULL, NULL), + (579, 7169, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Instructor Razuvious', NULL, NULL), + (579, 7170, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Gothik the Harvester', NULL, NULL), + (579, 7171, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Sapphiron', NULL, NULL), + (579, 7172, 50, 14923, 168, 1, 80, 1, 1, NULL, 50, 'The Dedicated Few (25 player)', 'Kel\'Thuzad', NULL, NULL), + (582, 421, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Alterac Valley All-Star', 'Assault a graveyard', NULL, NULL), + (582, 422, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Alterac Valley All-Star', 'Defend a graveyard', NULL, NULL), + (582, 423, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Alterac Valley All-Star', 'Assault a tower', NULL, NULL), + (582, 424, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Alterac Valley All-Star', 'Defend a tower', NULL, NULL), + (582, 425, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Alterac Valley All-Star', 'Kill someone in the Field of Strife', NULL, NULL), + (583, 426, 20, 14802, 95, 1, 80, 1, 1, NULL, 20, 'Arathi Basin All-Star', 'Assault 2 bases', NULL, NULL), + (583, 427, 20, 14802, 95, 1, 80, 1, 1, NULL, 20, 'Arathi Basin All-Star', 'Defend 2 bases', NULL, NULL), + (584, 431, 20, 14802, 95, 1, 80, 1, 1, NULL, 20, 'Arathi Basin Assassin', 'Kill 5 people at the blacksmith', NULL, NULL), + (584, 432, 20, 14802, 95, 1, 80, 1, 1, NULL, 20, 'Arathi Basin Assassin', 'Kill 5 people at the farm', NULL, NULL), + (584, 433, 20, 14802, 95, 1, 80, 1, 1, NULL, 20, 'Arathi Basin Assassin', 'Kill 5 people at the gold mine', NULL, NULL), + (584, 434, 20, 14802, 95, 1, 80, 1, 1, NULL, 20, 'Arathi Basin Assassin', 'Kill 5 people at the lumber mill', NULL, NULL), + (584, 435, 20, 14802, 95, 1, 80, 1, 1, NULL, 20, 'Arathi Basin Assassin', 'Kill 5 people at the stables', NULL, NULL), + (585, 438, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Eye of the Storm flags captured', 'Eye of the Storm flag captures', NULL, NULL), + (586, 440, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Warsong Gulch flags returned', 'Warsong Gulch flags returned', NULL, NULL), + (587, 441, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Stormy Assassin', 'Kill 5 people at the Blood Elf Tower', NULL, NULL), + (587, 442, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Stormy Assassin', 'Kill 5 people at the Draenei Ruins', NULL, NULL), + (587, 443, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Stormy Assassin', 'Kill 5 people at the Fel Reaver ruins', NULL, NULL), + (587, 444, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Stormy Assassin', 'Kill 5 people at the Mage Tower', NULL, NULL), + (588, 13253, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Total Honorable Kills', 'Honorable Kills', NULL, NULL), + (589, 450, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Highest 5 man team rating', 'Highest 5 man team rating', NULL, NULL), + (590, 449, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Highest 3 man team rating', 'Highest 3 man team rating', NULL, NULL), + (593, 4965, 1, 124, 122, -0.3, 80, 1, 1, NULL, 0, 'Deaths from Vanndar Stormpike', 'Killed by Vanndar Stormpike', NULL, NULL), + (594, 455, 1, 126, 122, 1, 80, 1, 1, NULL, 0, 'Deaths from Hogger', 'Deaths from Hogger', NULL, NULL), + (594, 12038, 1, 126, 122, 1, 80, 1, 1, NULL, 0, 'Deaths from Hogger', 'Deaths from Hogger', NULL, NULL), + (595, 447, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Highest 3 man personal rating', 'Highest 3 man personal rating', NULL, NULL), + (596, 452, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Highest 5 man personal rating', 'Highest 5 man personal rating', NULL, NULL), + (603, 6637, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrath of the Horde', 'Ironforge', NULL, NULL), + (603, 6638, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrath of the Horde', 'Darnassus', NULL, NULL), + (603, 6639, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrath of the Horde', 'The Exodar', NULL, NULL), + (603, 6640, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrath of the Horde', 'Stormwind City', NULL, NULL), + (604, 6633, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrath of the Alliance', 'Thunder Bluff', NULL, NULL), + (604, 6634, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrath of the Alliance', 'Silvermoon City', NULL, NULL), + (604, 6635, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrath of the Alliance', 'Orgrimmar', NULL, NULL), + (604, 6636, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Wrath of the Alliance', 'Undercity', NULL, NULL), + (605, 472, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'A Coin of Ancestry', 'Receive a Coin of Ancestry.', NULL, NULL), + (606, 473, 10, 160, 155, 1, 80, 1, 1, NULL, 10, '5 Coins of Ancestry', 'Receive 5 Coins of Ancestry', NULL, NULL), + (607, 474, 10, 160, 155, 1, 80, 1, 1, NULL, 10, '10 Coins of Ancestry', 'Receive 10 Coins of Ancestry', NULL, NULL), + (608, 475, 10, 160, 155, 1, 80, 1, 1, NULL, 10, '25 Coins of Ancestry', 'Receive 25 Coins of Ancestry', NULL, NULL), + (609, 476, 10, 160, 155, 1, 80, 1, 1, NULL, 10, '50 Coins of Ancestry', 'Receive 50 Coins of Ancestry', NULL, NULL), + (610, 480, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Death to the Warchief!', 'Thrall', NULL, NULL), + (611, 481, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Bleeding Bloodhoof', 'Cairne Bloodhoof', NULL, NULL), + (612, 482, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Downing the Dark Lady', 'Lady Sylvanas Windrunner', NULL, NULL), + (613, 483, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Killed in Quel\'Thalas', 'Lor\'themar Theron', NULL, NULL), + (614, 484, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'For The Alliance!', 'Death to the Warchief!', NULL, NULL), + (614, 485, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'For The Alliance!', 'Bleeding Bloodhoof', NULL, NULL), + (614, 486, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'For The Alliance!', 'Downing the Dark Lady', NULL, NULL), + (614, 487, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'For The Alliance!', 'Killed in Quel\'Thalas', NULL, NULL), + (615, 5203, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Storming Stormwind', 'King Varian Wrynn', NULL, NULL), + (616, 489, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Death to the King!', 'King Magni Bronzebeard', NULL, NULL), + (617, 490, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Immortal No More', 'High Priestess Tyrande Whisperwind', NULL, NULL), + (618, 491, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Putting Out the Light', 'Prophet Velen', NULL, NULL), + (619, 492, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'For The Horde!', 'Storming Stormwind', NULL, NULL), + (619, 493, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'For The Horde!', 'Death to the King!', NULL, NULL), + (619, 494, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'For The Horde!', 'Immortal No More', NULL, NULL), + (619, 495, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'For The Horde!', 'Putting Out the Light', NULL, NULL), + (621, 2335, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Arathor Battle Tabard', NULL, NULL), + (621, 2336, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Consortium Tabard', NULL, NULL), + (621, 2337, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Illidari', NULL, NULL), + (621, 2338, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Protector', NULL, NULL), + (621, 2339, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of Summer Flames', NULL, NULL), + (621, 2340, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Guild Tabard', NULL, NULL), + (621, 2893, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Aldor Tabard', NULL, NULL), + (621, 2894, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Battle Tabard of the Defilers', NULL, NULL), + (621, 2895, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Blood Knight Tabard', NULL, NULL), + (621, 2896, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Cenarion Expedition Tabard', NULL, NULL), + (621, 2897, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Competitor\'s Tabard', NULL, NULL), + (621, 2898, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Contest Winner\'s Tabard', NULL, NULL), + (621, 2899, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Frostwolf Battle Tabard', NULL, NULL), + (621, 2900, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Green Trophy Tabard of the Illidari', NULL, NULL), + (621, 2901, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Honor Hold Tabard', NULL, NULL), + (621, 2902, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Keepers of Time Tabard', NULL, NULL), + (621, 2903, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Knight\'s Colors', NULL, NULL), + (621, 2904, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Kurenai Tabard', NULL, NULL), + (621, 2905, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Lower City Tabard', NULL, NULL), + (621, 2906, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Mag\'har Tabard', NULL, NULL), + (621, 2907, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Ogri\'la Tabard', NULL, NULL), + (621, 2908, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Private\'s Tabard', NULL, NULL), + (621, 2909, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Scout\'s Tabard', NULL, NULL), + (621, 2910, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Scryers Tabard', NULL, NULL), + (621, 2911, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Sha\'tar Tabard', NULL, NULL), + (621, 2912, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Silverwing Battle Tabard', NULL, NULL), + (621, 2913, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Skyguard Tabard', NULL, NULL), + (621, 2914, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Sporeggar Tabard', NULL, NULL), + (621, 2915, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Stone Guard\'s Herald', NULL, NULL), + (621, 2916, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Stormpike Battle Tabard', NULL, NULL), + (621, 2917, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of Brilliance', NULL, NULL), + (621, 2918, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of Flame', NULL, NULL), + (621, 2919, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of Frost', NULL, NULL), + (621, 2920, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of Fury', NULL, NULL), + (621, 2921, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of Nature', NULL, NULL), + (621, 2922, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of Stormwind', NULL, NULL), + (621, 2923, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of Summer Skies', NULL, NULL), + (621, 2924, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Arcane', NULL, NULL), + (621, 2925, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Argent Dawn', NULL, NULL), + (621, 2926, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Defender', NULL, NULL), + (621, 2927, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Hand', NULL, NULL), + (621, 2928, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Scarlet Crusade', NULL, NULL), + (621, 2929, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Shattered Sun', NULL, NULL), + (621, 2930, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Void', NULL, NULL), + (621, 2931, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Thrallmar Tabard', NULL, NULL), + (621, 2932, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tranquillien Tabard', NULL, NULL), + (621, 2933, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Warsong Battle Tabard', NULL, NULL), + (621, 6151, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Loremaster\'s Colors', NULL, NULL), + (621, 6171, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Explorer', NULL, NULL), + (621, 6172, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of Brute Force', NULL, NULL), + (621, 6976, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Argent Crusade', NULL, NULL), + (621, 6977, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Ebon Blade', NULL, NULL), + (621, 6978, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Wyrmrest Accord', NULL, NULL), + (621, 6979, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Kirin Tor', NULL, NULL), + (621, 11298, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Silvermoon City Tabard', NULL, NULL), + (621, 11299, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Sen\'jin Tabard', NULL, NULL), + (621, 11300, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Undercity Tabard', NULL, NULL), + (621, 11301, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Thunder Bluff Tabard', NULL, NULL), + (621, 11302, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Darnassus Tabard', NULL, NULL), + (621, 11303, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Exodar Tabard', NULL, NULL), + (621, 11304, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Gnomeregan Tabard', NULL, NULL), + (621, 11305, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Ironforge Tabard', NULL, NULL), + (621, 11306, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Stormwind Tabard', NULL, NULL), + (621, 11307, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Silver Covenant Tabard', NULL, NULL), + (621, 11308, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Sunreaver Tabard', NULL, NULL), + (621, 11309, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Argent Crusader\'s Tabard', NULL, NULL), + (621, 11378, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Orgrimmar Tabard', NULL, NULL), + (621, 11760, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of Conquest (Alliance)', NULL, NULL), + (621, 11761, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of Conquest (Horde)', NULL, NULL), + (621, 12598, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Furious Gladiator\'s Tabard', NULL, NULL), + (621, 12599, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Relentless Gladiator\'s Tabard', NULL, NULL), + (621, 12600, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Achiever', NULL, NULL), + (621, 13241, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Tabard of the Lightbringer', NULL, NULL), + (621, 13242, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Represent', 'Wrathful Gladiator\'s Tabard', NULL, NULL), + (622, 520, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Spellweaver\'s Downfall (10 player)', 'Malygos', NULL, NULL), + (623, 521, 25, 14923, 168, 1, 80, 1, 1, NULL, 25, 'The Spellweaver\'s Downfall (25 player)', 'Malygos', NULL, NULL), + (624, 522, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Less Is More (10 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (624, 7189, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Less Is More (10 player)', 'Vesperon', NULL, NULL), + (624, 7190, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Less Is More (10 player)', 'Tenebron', NULL, NULL), + (624, 7191, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Less Is More (10 player)', 'Shadron', NULL, NULL), + (625, 523, 25, 14923, 168, 1, 80, 1, 1, NULL, 25, 'Besting the Black Dragonflight (25 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (626, 496, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Lunar Festival Finery', 'Festive Black Pant Suit', NULL, NULL), + (626, 497, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Lunar Festival Finery', 'Festive Blue Pant Suit', NULL, NULL), + (626, 498, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Lunar Festival Finery', 'Festive Teal Pant Suit', NULL, NULL), + (626, 499, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Lunar Festival Finery', 'Festive Green Dress', NULL, NULL), + (626, 500, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Lunar Festival Finery', 'Festive Pink Dress', NULL, NULL), + (626, 501, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Lunar Festival Finery', 'Festive Purple Dress', NULL, NULL), + (627, 502, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Coldridge Pass', NULL, NULL), + (627, 503, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Chill Breeze Valley', NULL, NULL), + (627, 504, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Shimmer Ridge', NULL, NULL), + (627, 505, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Kharanos', NULL, NULL), + (627, 506, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Misty Pine Refuge', NULL, NULL), + (627, 507, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'The Tundrid Hills', NULL, NULL), + (627, 508, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Amberstill Ranch', NULL, NULL), + (627, 509, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Helm\'s Bed Lake', NULL, NULL), + (627, 510, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Gol\'Bolar Quarry', NULL, NULL), + (627, 511, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'North Gate Outpost', NULL, NULL), + (627, 512, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Frostmane Hold', NULL, NULL), + (627, 513, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Brewnall Village', NULL, NULL), + (627, 514, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Anvilmar', NULL, NULL), + (627, 515, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'The Grizzled Den', NULL, NULL), + (627, 516, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'South Gate Outpost', NULL, NULL), + (627, 517, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Iceflow Lake', NULL, NULL), + (627, 518, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Gnomeregan', NULL, NULL), + (627, 519, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dun Morogh', 'Gates of Ironforge', NULL, NULL), + (628, 524, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Deadmines', 'Edwin VanCleef', NULL, NULL), + (628, 4239, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Deadmines', 'The Defias Brotherhood', NULL, NULL), + (628, 4408, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Deadmines', 'The Unsent Letter', NULL, NULL), + (629, 525, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Ragefire Chasm', 'Taragaman the Hungerer', NULL, NULL), + (629, 4238, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Ragefire Chasm', 'Slaying the Beast', NULL, NULL), + (630, 526, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Wailing Caverns', 'Mutanus the Devourer', NULL, NULL), + (630, 4246, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Wailing Caverns', 'The Glowing Shard', NULL, NULL), + (631, 527, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Shadowfang Keep', 'Archmage Arugal', NULL, NULL), + (631, 4247, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Shadowfang Keep', 'Arugal Must Die', NULL, NULL), + (632, 528, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackfathom Deeps', 'Aku\'mai', NULL, NULL), + (633, 529, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Stormwind Stockade', 'Bazil Thredd', NULL, NULL), + (633, 4249, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Stormwind Stockade', 'The Stockade Riots', NULL, NULL), + (634, 530, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Gnomeregan', 'Mekgineer Thermaplugg', NULL, NULL), + (634, 4252, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Gnomeregan', 'The Grand Betrayal', NULL, NULL), + (634, 4253, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Gnomeregan', 'Rig Wars', NULL, NULL), + (635, 531, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Razorfen Kraul', 'Charlga Razorflank', NULL, NULL), + (635, 4250, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Razorfen Kraul', 'A Vengeful Fate', NULL, NULL), + (635, 4251, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Razorfen Kraul', 'The Crone of the Kraul', NULL, NULL), + (635, 4409, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Razorfen Kraul', 'An Unholy Alliance', NULL, NULL), + (636, 532, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Razorfen Downs', 'Amnennar the Coldbringer', NULL, NULL), + (636, 4254, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Razorfen Downs', 'Bring the Light', NULL, NULL), + (636, 4255, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Razorfen Downs', 'Bring the End', NULL, NULL), + (637, 533, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Scarlet Monastery', 'High Inquisitor Whitemane', NULL, NULL), + (637, 534, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Scarlet Monastery', 'Scarlet Commander Mograine', NULL, NULL), + (637, 535, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Scarlet Monastery', 'Arcanist Doan', NULL, NULL), + (637, 536, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Scarlet Monastery', 'Herod', NULL, NULL), + (637, 537, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Scarlet Monastery', 'Bloodmage Thalnos', NULL, NULL), + (638, 538, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Uldaman', 'Archaedas', NULL, NULL), + (638, 4256, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Uldaman', 'The Platinum Discs', NULL, NULL), + (638, 4257, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Uldaman', 'Find the Gems and Power Source', NULL, NULL), + (638, 4258, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Uldaman', 'Restoring the Necklace', NULL, NULL), + (639, 539, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Zul\'Farrak', 'Chief Ukorz Sandscalp', NULL, NULL), + (640, 540, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Maraudon', 'Princess Theradras', NULL, NULL), + (640, 4259, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Maraudon', 'Corruption of Earth and Seed', NULL, NULL), + (640, 4260, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Maraudon', 'Corruption of Earth and Seed', NULL, NULL), + (641, 541, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Sunken Temple', 'Shade of Eranikus', NULL, NULL), + (641, 4261, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Sunken Temple', 'The Essence of Eranikus', NULL, NULL), + (642, 542, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackrock Depths', 'Emperor Dagran Thaurissan', NULL, NULL), + (642, 4262, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackrock Depths', 'The Fate of the Kingdom', NULL, NULL), + (642, 4263, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackrock Depths', 'The Royal Rescue', NULL, NULL), + (643, 544, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Lower Blackrock Spire', 'Overlord Wyrmthalak', NULL, NULL), + (643, 4440, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Lower Blackrock Spire', 'Maxwell\'s Mission', NULL, NULL), + (643, 4441, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Lower Blackrock Spire', 'Warlord\'s Command', NULL, NULL), + (643, 4442, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Lower Blackrock Spire', 'General Drakkisath\'s Command', NULL, NULL), + (643, 4446, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Lower Blackrock Spire', 'Seal of Ascension', NULL, NULL), + (644, 545, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'King of Dire Maul', 'Alzzin the Wildshaper', NULL, NULL), + (644, 546, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'King of Dire Maul', 'Immol\'thar', NULL, NULL), + (644, 547, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'King of Dire Maul', 'King Gordok', NULL, NULL), + (645, 548, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Scholomance', 'Ras Frostwhisper', NULL, NULL), + (645, 549, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Scholomance', 'Darkmaster Gandling', NULL, NULL), + (646, 550, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Stratholme', 'Balnazzar', NULL, NULL), + (646, 551, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Stratholme', 'Baron Rivendare', NULL, NULL), + (647, 552, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Hellfire Ramparts', 'Omor the Unscarred', NULL, NULL), + (647, 4461, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Hellfire Ramparts', 'Weaken the Ramparts', NULL, NULL), + (647, 4462, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Hellfire Ramparts', 'Weaken the Ramparts', NULL, NULL), + (648, 555, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Blood Furnace', 'Keli\'dan the Breaker', NULL, NULL), + (649, 556, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Slave Pens', 'Quagmirran', NULL, NULL), + (650, 557, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Underbog', 'The Black Stalker', NULL, NULL), + (650, 4463, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Underbog', 'Stalk the Stalker', NULL, NULL), + (651, 558, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Mana-Tombs', 'Nexus-Prince Shaffar', NULL, NULL), + (651, 4464, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Mana-Tombs', 'Undercutting the Competition', NULL, NULL), + (652, 559, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Escape From Durnholde', 'Epoch Hunter', NULL, NULL), + (652, 4467, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Escape From Durnholde', 'Escape from Durnholde', NULL, NULL), + (653, 560, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sethekk Halls', 'Talon King Ikiss', NULL, NULL), + (653, 4468, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sethekk Halls', 'Terokk\'s Legacy', NULL, NULL), + (654, 561, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Shadow Labyrinth', 'Murmur', NULL, NULL), + (654, 4469, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Shadow Labyrinth', 'Into the Heart of the Labyrinth', NULL, NULL), + (654, 4470, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Shadow Labyrinth', 'Trial of the Naaru: Strength', NULL, NULL), + (655, 562, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Opening of the Dark Portal', 'Aeonus', NULL, NULL), + (655, 4471, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Opening of the Dark Portal', 'The Master\'s Touch', NULL, NULL), + (655, 4472, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Opening of the Dark Portal', 'The Opening of the Dark Portal', NULL, NULL), + (656, 563, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Steamvault', 'Warlord Kalithresh', NULL, NULL), + (656, 4473, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Steamvault', 'The Warlord\'s Hideout', NULL, NULL), + (656, 4474, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Steamvault', 'Trial of the Naaru: Strength', NULL, NULL), + (657, 564, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Shattered Halls', 'Warchief Kargath Bladefist', NULL, NULL), + (657, 4475, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Shattered Halls', 'Turning the Tide', NULL, NULL), + (657, 4476, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Shattered Halls', 'The Will of the Warchief', NULL, NULL), + (657, 4477, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Shattered Halls', 'Imprisoned in the Citadel', NULL, NULL), + (657, 4478, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Shattered Halls', 'Imprisoned in the Citadel', NULL, NULL), + (657, 4479, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Shattered Halls', 'Trial of the Naaru: Mercy', NULL, NULL), + (658, 565, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Mechanar', 'Pathaleon the Calculator', NULL, NULL), + (658, 4480, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Mechanar', 'How to Break Into the Arcatraz', NULL, NULL), + (659, 566, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Botanica', 'Warp Splinter', NULL, NULL), + (659, 4481, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Botanica', 'How to Break Into the Arcatraz', NULL, NULL), + (660, 567, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Arcatraz', 'Harbinger Skyriss', NULL, NULL), + (660, 4482, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Arcatraz', 'Harbinger of Doom', NULL, NULL), + (660, 4483, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Arcatraz', 'Trial of the Naaru: Tenacity', NULL, NULL), + (661, 568, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magister\'s Terrace', 'Kael\'thas Sunstrider', NULL, NULL), + (661, 4484, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magister\'s Terrace', 'Hard to Kill', NULL, NULL), + (662, 569, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Mini-Diablo', 'Diablo Stone', NULL, NULL), + (662, 6152, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Mini-Diablo', 'Mini Diablo', NULL, NULL), + (663, 570, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Panda', 'Panda Collar', NULL, NULL), + (663, 6153, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Panda', 'Panda Cub', NULL, NULL), + (664, 571, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Zergling', 'Zergling Leash', NULL, NULL), + (664, 6154, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Zergling', 'Zergling', NULL, NULL), + (665, 572, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Netherwhelp', 'Netherwhelp\'s Collar', NULL, NULL), + (665, 6155, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Netherwhelp', 'Netherwhelp', NULL, NULL), + (666, 573, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Auchenai Crypts', 'Exarch Maladaar', NULL, NULL), + (666, 4465, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Auchenai Crypts', 'Auchindoun...', NULL, NULL), + (666, 4466, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Auchenai Crypts', 'Everything Will Be Alright', NULL, NULL), + (667, 3705, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Hellfire Ramparts', 'Omor the Unscarred', NULL, NULL), + (667, 3706, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Hellfire Ramparts', 'Nazan', NULL, NULL), + (667, 3816, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Hellfire Ramparts', 'Vazruden the Herald', NULL, NULL), + (668, 3710, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Blood Furnace', 'Keli\'dan the Breaker', NULL, NULL), + (669, 3711, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Slave Pens', 'Quagmirran', NULL, NULL), + (670, 3712, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Underbog', 'The Black Stalker', NULL, NULL), + (671, 3713, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Mana-Tombs', 'Nexus-Prince Shaffar', NULL, NULL), + (672, 3714, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Auchenai Crypts', 'Exarch Maladaar', NULL, NULL), + (673, 3715, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Escape From Durnholde', 'Epoch Hunter', NULL, NULL), + (674, 3708, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Sethekk Halls', 'Talon King Ikiss', NULL, NULL), + (675, 3716, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Shadow Labyrinth', 'Murmur', NULL, NULL), + (675, 4485, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Shadow Labyrinth', 'Trial of the Naaru: Strength', NULL, NULL), + (676, 3717, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Opening of the Dark Portal', 'Aeonus', NULL, NULL), + (677, 3718, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Steamvault', 'Warlord Kalithresh', NULL, NULL), + (677, 4486, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Steamvault', 'Trial of the Naaru: Strength', NULL, NULL), + (678, 3719, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Shattered Halls', 'Warchief Kargath Bladefist', NULL, NULL), + (678, 4487, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Shattered Halls', 'Imprisoned in the Citadel', NULL, NULL), + (678, 4488, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Shattered Halls', 'Imprisoned in the Citadel', NULL, NULL), + (678, 4489, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Shattered Halls', 'Trial of the Naaru: Mercy', NULL, NULL), + (679, 3720, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Mechanar', 'Pathaleon the Calculator', NULL, NULL), + (680, 3721, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Botanica', 'Warp Splinter', NULL, NULL), + (681, 3722, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Arcatraz', 'Harbinger Skyriss', NULL, NULL), + (681, 4490, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Arcatraz', 'Trial of the Naaru: Tenacity', NULL, NULL), + (682, 3709, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Magister\'s Terrace', 'Kael\'thas Sunstrider', NULL, NULL), + (683, 592, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Frost Wyrm Whelp', 'Frosty\'s Collar', NULL, NULL), + (683, 6156, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Frost Wyrm Whelp', 'Frosty', NULL, NULL), + (684, 4266, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'Victory for the Alliance', NULL, NULL), + (684, 4267, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'Victory for the Horde', NULL, NULL), + (684, 4268, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'A Proper String', NULL, NULL), + (684, 4269, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'The Only Prescription', NULL, NULL), + (684, 4270, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'The Forging of Quel\'Serrar', NULL, NULL), + (684, 4271, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'Onyxia Hide Backpack', NULL, NULL), + (684, 4272, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'Ancient Cornerstone Grimoire', NULL, NULL), + (684, 4282, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'Deathbringer', NULL, NULL), + (684, 4283, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'Vis\'kag the Bloodletter', NULL, NULL), + (684, 4284, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'Ring of Binding', NULL, NULL), + (684, 4285, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'Sapphiron Drape', NULL, NULL), + (684, 4286, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'Eskhandar\'s Collar', NULL, NULL), + (684, 4287, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyxia\'s Lair (Level 60)', 'Shard of the Scale', NULL, NULL), + (685, 594, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Nefarian', NULL, NULL), + (685, 4447, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'The Lord of Blackrock', NULL, NULL), + (685, 4448, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'The Lord of Blackrock', NULL, NULL), + (685, 4449, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Nefarius\'s Corruption', NULL, NULL), + (685, 4564, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Therazane\'s Link', NULL, NULL), + (685, 4565, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Archimtiros\' Ring of Reckoning', NULL, NULL), + (685, 4566, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Ashkandi, Greatsword of the Brotherhood', NULL, NULL), + (685, 4567, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Boots of the Shadow Flame', NULL, NULL), + (685, 4568, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Cloak of the Brood Lord', NULL, NULL), + (685, 4569, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Crul\'shorukh, Edge of Chaos', NULL, NULL), + (685, 4570, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Lok\'amir il Romathis', NULL, NULL), + (685, 4571, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Mish\'undare, Circlet of the Mind Flayer', NULL, NULL), + (685, 4572, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Neltharion\'s Tear', NULL, NULL), + (685, 4573, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Prestor\'s Talisman of Connivery', NULL, NULL), + (685, 4574, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Pure Elementium Band', NULL, NULL), + (685, 4575, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Staff of the Shadow Flame', NULL, NULL), + (685, 4576, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Bloodfang Chestpiece', NULL, NULL), + (685, 4577, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Breastplate of Ten Storms', NULL, NULL), + (685, 4578, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Breastplate of Wrath', NULL, NULL), + (685, 4579, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Dragonstalker\'s Breastplate', NULL, NULL), + (685, 4580, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Judgement Breastplate', NULL, NULL), + (685, 4581, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Stormrage Chestguard', NULL, NULL), + (685, 4582, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Nemesis Robes', NULL, NULL), + (685, 4583, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Netherwind Robes', NULL, NULL), + (685, 4584, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Blackwing Lair', 'Robes of Transcendence', NULL, NULL), + (686, 595, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Ragnaros', NULL, NULL), + (686, 4437, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'The Only Prescription', NULL, NULL), + (686, 4544, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Onslaught Girdle', NULL, NULL), + (686, 4545, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Band of Sulfuras', NULL, NULL), + (686, 4546, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Choker of the Fire Lord', NULL, NULL), + (686, 4547, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Essence of the Pure Flame', NULL, NULL), + (686, 4548, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Perdition\'s Blade', NULL, NULL), + (686, 4549, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Crown of Destruction', NULL, NULL), + (686, 4550, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Leggings of Transcendence', NULL, NULL), + (686, 4551, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Dragonstalker\'s Legguards', NULL, NULL), + (686, 4552, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Judgement Legplates', NULL, NULL), + (686, 4553, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Legplates of Wrath', NULL, NULL), + (686, 4554, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Legplates of Ten Storms', NULL, NULL), + (686, 4555, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Bloodfang Pants', NULL, NULL), + (686, 4556, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Nemesis Leggings', NULL, NULL), + (686, 4557, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Netherwind Pants', NULL, NULL), + (686, 4558, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Stormrage Legguards', NULL, NULL), + (686, 4559, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Malistar\'s Defender', NULL, NULL), + (686, 4560, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Band of Accuria', NULL, NULL), + (686, 4561, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Cloak of the Shrouded Mists', NULL, NULL), + (686, 4562, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Bonereaver\'s Edge', NULL, NULL), + (686, 4563, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Spinal Reaper', NULL, NULL), + (686, 5055, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Dragon\'s Blood Cape', NULL, NULL), + (686, 5056, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Shard of the Flame', NULL, NULL), + (686, 7364, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Draconic for Dummies', NULL, NULL), + (686, 8146, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Thunderfury, Blessed Blade of the Windseeker', NULL, NULL), + (686, 8893, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Essence of the Firelord', NULL, NULL), + (686, 9578, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Molten Core', 'Sulfuras, Hand of Ragnaros', NULL, NULL), + (687, 596, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'C\'Thun', NULL, NULL), + (687, 4450, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Striker\'s Hauberk', NULL, NULL), + (687, 4451, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Deathdealer\'s Vest', NULL, NULL), + (687, 4452, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Conqueror\'s Breastplate', NULL, NULL), + (687, 4453, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Avenger\'s Breastplate', NULL, NULL), + (687, 4454, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Genesis Vest', NULL, NULL), + (687, 4455, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Stormcaller\'s Hauberk', NULL, NULL), + (687, 4456, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Doomcaller\'s Robes', NULL, NULL), + (687, 4457, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Enigma Robes', NULL, NULL), + (687, 4458, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Vestments of the Oracle', NULL, NULL), + (687, 4459, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'C\'Thun\'s Legacy', NULL, NULL), + (687, 4460, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Atiesh, the Befouled Greatstaff', NULL, NULL), + (687, 4585, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Belt of Never-ending Agony', NULL, NULL), + (687, 4586, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Cloak of Clarity', NULL, NULL), + (687, 4587, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Dark Edge of Insanity', NULL, NULL), + (687, 4588, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Dark Storm Gauntlets', NULL, NULL), + (687, 4589, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Death\'s Sting', NULL, NULL), + (687, 4590, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Gauntlets of Annihilation', NULL, NULL), + (687, 4591, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Grasp of the Old God', NULL, NULL), + (687, 4592, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Ring of the Godslayer', NULL, NULL), + (687, 4593, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Scepter of the False Prophet', NULL, NULL), + (687, 4594, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Vanquished Tentacle of C\'Thun', NULL, NULL), + (687, 4595, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Cloak of the Devoured', NULL, NULL), + (687, 4596, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Eyestalk Waist Cord', NULL, NULL), + (687, 4941, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Mark of C\'Thun', NULL, NULL), + (687, 8894, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Conqueror\'s Breastplate', NULL, NULL), + (687, 8895, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Avenger\'s Breastplate', NULL, NULL), + (687, 8896, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Deathdealer\'s Vest', NULL, NULL), + (687, 8897, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Doomcaller\'s Robes', NULL, NULL), + (687, 8898, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Enigma Robes', NULL, NULL), + (687, 8899, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Genesis Vest', NULL, NULL), + (687, 8900, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Stormcaller\'s Hauberk', NULL, NULL), + (687, 8901, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Striker\'s Hauberk', NULL, NULL), + (687, 8902, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Vestments of the Oracle', NULL, NULL), + (687, 8903, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Husk of the Old God', NULL, NULL), + (687, 9078, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Temple of Ahn\'Qiraj', 'Husk of the Old God', NULL, NULL), + (688, 597, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Zul\'Gurub', 'Hakkar', NULL, NULL), + (688, 4264, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Zul\'Gurub', 'The Heart of Hakkar', NULL, NULL), + (689, 598, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Ruins of Ahn\'Qiraj', 'Ossirian the Unscarred', NULL, NULL), + (689, 4265, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Ruins of Ahn\'Qiraj', 'The Fall of Ossirian', NULL, NULL), + (690, 599, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Karazhan', 'Prince Malchezaar', NULL, NULL), + (690, 4491, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Karazhan', 'A Demonic Presence', NULL, NULL), + (691, 600, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Zul\'Aman', 'Zul\'jin', NULL, NULL), + (691, 4492, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Zul\'Aman', 'Blood of the Warlord', NULL, NULL), + (692, 601, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Gruul the Dragonkiller', NULL, NULL), + (692, 4493, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'The Cudgel of Kar\'desh', NULL, NULL), + (692, 4908, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Aldori Legacy Defender', NULL, NULL), + (692, 4909, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Axe of the Gronn Lords', NULL, NULL), + (692, 4910, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Bloodmaw Magus-Blade', NULL, NULL), + (692, 4911, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Collar of Cho\'gall', NULL, NULL), + (692, 4912, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Cowl of Nature\'s Breath', NULL, NULL), + (692, 4913, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Dragonspine Trophy', NULL, NULL), + (692, 4914, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Eye of Gruul', NULL, NULL), + (692, 4915, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Gauntlets of Martial Perfection', NULL, NULL), + (692, 4916, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Gauntlets of the Dragonslayer', NULL, NULL), + (692, 4917, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Gronn-Stitched Girdle', NULL, NULL), + (692, 4918, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Shuriken of Negation', NULL, NULL), + (692, 4919, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Teeth of Gruul', NULL, NULL), + (692, 4920, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Windshear Boots', NULL, NULL), + (692, 4921, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Cyclone Kilt', NULL, NULL), + (692, 4922, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Cyclone Legguards', NULL, NULL), + (692, 4923, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Cyclone War-Kilt', NULL, NULL), + (692, 4924, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Justicar Greaves', NULL, NULL), + (692, 4925, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Justicar Leggings', NULL, NULL), + (692, 4926, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Justicar Legguards', NULL, NULL), + (692, 4927, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Netherblade Breeches', NULL, NULL), + (692, 4928, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Britches of Malorne', NULL, NULL), + (692, 4929, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Greaves of Malorne', NULL, NULL), + (692, 4930, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Legguards of Malorne', NULL, NULL), + (692, 4931, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Leggings of the Incarnate', NULL, NULL), + (692, 4932, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Trousers of the Incarnate', NULL, NULL), + (692, 4933, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Warbringer Greaves', NULL, NULL), + (692, 4934, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Warbringer Legguards', NULL, NULL), + (692, 4935, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Demon Stalker Greaves', NULL, NULL), + (692, 4936, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Legwraps of the Aldor', NULL, NULL), + (692, 4937, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Voidheart Leggings', NULL, NULL), + (692, 9079, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Gruul\'s Lair', 'Earthen Signet', NULL, NULL), + (693, 602, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Magtheridon', NULL, NULL), + (693, 4494, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Trial of the Naaru: Magtheridon', NULL, NULL), + (693, 4495, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'The Fall of Magtheridon', NULL, NULL), + (693, 4496, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'The Fall of Magtheridon', NULL, NULL), + (693, 4879, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Aegis of the Vindicator', NULL, NULL), + (693, 4880, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Cloak of the Pit Stalker', NULL, NULL), + (693, 4881, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Crystalheart Pulse-Staff', NULL, NULL), + (693, 4882, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Eredar Wand of Obliteration', NULL, NULL), + (693, 4883, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Eye of Magtheridon', NULL, NULL), + (693, 4884, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Glaive of the Pit', NULL, NULL), + (693, 4885, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Karaborian Talisman', NULL, NULL), + (693, 4886, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Liar\'s Tongue Gloves', NULL, NULL), + (693, 4887, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Soul-Eater\'s Handwraps', NULL, NULL), + (693, 4888, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Terror Pit Girdle', NULL, NULL), + (693, 4889, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Thundering Greathelm', NULL, NULL), + (693, 4890, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Cyclone Breastplate', NULL, NULL), + (693, 4891, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Cyclone Chestguard', NULL, NULL), + (693, 4892, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Cyclone Hauberk', NULL, NULL), + (693, 4893, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Justicar Breastplate', NULL, NULL), + (693, 4894, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Justicar Chestguard', NULL, NULL), + (693, 4895, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Justicar Chestpiece', NULL, NULL), + (693, 4896, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Netherblade Chestpiece', NULL, NULL), + (693, 4897, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Breastplate of Malorne', NULL, NULL), + (693, 4898, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Chestguard of Malorne', NULL, NULL), + (693, 4899, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Chestpiece of Malorne', NULL, NULL), + (693, 4900, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Robes of the Incarnate', NULL, NULL), + (693, 4901, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Shroud of the Incarnate', NULL, NULL), + (693, 4902, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Warbringer Breastplate', NULL, NULL), + (693, 4903, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Warbringer Chestguard', NULL, NULL), + (693, 4904, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Demon Stalker Harness', NULL, NULL), + (693, 4905, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Vestments of the Aldor', NULL, NULL), + (693, 4906, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Voidheart Robe', NULL, NULL), + (693, 4907, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Pit Lord\'s Satchel', NULL, NULL), + (693, 4939, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Trial of the Naaru: Magtheridon', NULL, NULL), + (693, 4942, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Magtheridon\'s Lair', 'Girdle of the Endless Pit', NULL, NULL), + (694, 603, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Lady Vashj', NULL, NULL), + (694, 4497, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'The Vials of Eternity', NULL, NULL), + (694, 4849, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Belt of One-Hundred Deaths', NULL, NULL), + (694, 4850, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Cobra-Lash Boots', NULL, NULL), + (694, 4851, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Cobra-Lash Boots', NULL, NULL), + (694, 4852, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Coral Band of the Revived', NULL, NULL), + (694, 4853, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Fang of Vashj', NULL, NULL), + (694, 4854, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Glorious Gauntlets of Crestfall', NULL, NULL), + (694, 4855, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Krakken-Heart Breastplate', NULL, NULL), + (694, 4856, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Lightfathom Scepter', NULL, NULL), + (694, 4857, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Prism of Inner Calm', NULL, NULL), + (694, 4858, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Ring of Endless Coils', NULL, NULL), + (694, 4859, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Runetotem\'s Mantle', NULL, NULL), + (694, 4860, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Serpent Spine Longbow', NULL, NULL), + (694, 4861, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Vestments of the Sea-Witch', NULL, NULL), + (694, 4862, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Cataclysm Headguard', NULL, NULL), + (694, 4863, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Cataclysm Headpiece', NULL, NULL), + (694, 4864, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Cataclysm Helm', NULL, NULL), + (694, 4865, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Crystalforge Faceguard', NULL, NULL), + (694, 4866, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Crystalforge Greathelm', NULL, NULL), + (694, 4867, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Crystalforge War-Helm', NULL, NULL), + (694, 4868, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Deathmantle Helm', NULL, NULL), + (694, 4869, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Cowl of the Avatar', NULL, NULL), + (694, 4870, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Destroyer Battle-Helm', NULL, NULL), + (694, 4871, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Destroyer Greathelm', NULL, NULL), + (694, 4872, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Hood of the Avatar', NULL, NULL), + (694, 4873, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Hood of the Corruptor', NULL, NULL), + (694, 4874, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Rift Stalker Helm', NULL, NULL), + (694, 4875, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Nordrassil Headdress', NULL, NULL), + (694, 4876, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Nordrassil Headguard', NULL, NULL), + (694, 4877, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Nordrassil Headpiece', NULL, NULL), + (694, 4878, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Cowl of Tirisfal', NULL, NULL), + (694, 7871, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Serpentshrine Cavern', 'Vashj\'s Vial Remnant', NULL, NULL), + (695, 604, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Archimonde', NULL, NULL), + (695, 4618, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Antonidas\'s Aegis of Rapt Concentration', NULL, NULL), + (695, 4619, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Apostle of Argus', NULL, NULL), + (695, 4620, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Bristleblitz Striker', NULL, NULL), + (695, 4621, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Cataclysm\'s Edge', NULL, NULL), + (695, 4622, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Leggings of Eternity', NULL, NULL), + (695, 4623, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Legguards of Endless Rage', NULL, NULL), + (695, 4624, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Mail of Fevered Pursuit', NULL, NULL), + (695, 4625, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Midnight Chestguard', NULL, NULL), + (695, 4626, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Robes of Rhonin', NULL, NULL), + (695, 4627, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Savior\'s Grasp', NULL, NULL), + (695, 4628, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Scepter of Purification', NULL, NULL), + (695, 4629, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Tempest of Chaos', NULL, NULL), + (695, 4630, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Cowl of Absolution', NULL, NULL), + (695, 4631, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Hood of Absolution', NULL, NULL), + (695, 4632, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Hood of the Malefic', NULL, NULL), + (695, 4633, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Lightbringer Faceguard', NULL, NULL), + (695, 4634, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Lightbringer Greathelm', NULL, NULL), + (695, 4635, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Lightbringer War-Helm', NULL, NULL), + (695, 4636, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Gronnstalker\'s Helmet', NULL, NULL), + (695, 4637, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Onslaught Battle-Helm', NULL, NULL), + (695, 4638, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Onslaught Greathelm', NULL, NULL), + (695, 4639, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Skyshatter Headguard', NULL, NULL), + (695, 4640, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Skyshatter Helmet', NULL, NULL), + (695, 4641, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Skyshatter Cover', NULL, NULL), + (695, 4642, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Slayer\'s Helm', NULL, NULL), + (695, 4643, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Cowl of the Tempest', NULL, NULL), + (695, 4644, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Thunderheart Cover', NULL, NULL), + (695, 4645, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Thunderheart Headguard', NULL, NULL), + (695, 4646, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Battle for Mount Hyjal', 'Thunderheart Helmet', NULL, NULL), + (696, 605, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Kael\'thas Sunstrider', NULL, NULL), + (696, 4498, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'The Vials of Eternity', NULL, NULL), + (696, 4499, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Kael\'thas and the Verdant Sphere', NULL, NULL), + (696, 4820, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Ashes of Al\'ar', NULL, NULL), + (696, 4821, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Band of the Ranger-General', NULL, NULL), + (696, 4822, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Crown of the Sun', NULL, NULL), + (696, 4823, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Gauntlets of the Sun King', NULL, NULL), + (696, 4824, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Leggings of Murderous Intent', NULL, NULL), + (696, 4825, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Rod of the Sun King', NULL, NULL), + (696, 4826, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Royal Cloak of the Sunstriders', NULL, NULL), + (696, 4827, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Royal Gauntlets of Silvermoon', NULL, NULL), + (696, 4828, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Sunhawk Leggings', NULL, NULL), + (696, 4829, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Sunshower Light Cloak', NULL, NULL), + (696, 4830, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Thalassian Wildercloak', NULL, NULL), + (696, 4831, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'The Nexus Key', NULL, NULL), + (696, 4832, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Twinblade of the Phoenix', NULL, NULL), + (696, 4833, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Cataclysm Chestguard', NULL, NULL), + (696, 4834, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Cataclysm Chestpiece', NULL, NULL), + (696, 4835, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Crystalforge Breastplate', NULL, NULL), + (696, 4836, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Crystalforge Chestguard', NULL, NULL), + (696, 4837, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Crystalforge Chestpiece', NULL, NULL), + (696, 4838, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Deathmantle Chestguard', NULL, NULL), + (696, 4839, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Destroyer Breastplate', NULL, NULL), + (696, 4840, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Destroyer Chestguard', NULL, NULL), + (696, 4841, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Rift Stalker Hauberk', NULL, NULL), + (696, 4842, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Robe of the Corruptor', NULL, NULL), + (696, 4843, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Robes of Tirisfal', NULL, NULL), + (696, 4844, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Shroud of the Avatar', NULL, NULL), + (696, 4845, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Vestments of the Avatar', NULL, NULL), + (696, 4846, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Nordrassil Chestguard', NULL, NULL), + (696, 4847, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Nordrassil Chestpiece', NULL, NULL), + (696, 4848, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Tempest Keep', 'Nordrassil Chestplate', NULL, NULL), + (697, 606, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Illidan Stormrage', NULL, NULL), + (697, 4500, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'The Fall of the Betrayer', NULL, NULL), + (697, 4789, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Warglaive of Azzinoth', NULL, NULL), + (697, 4790, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Warglaive of Azzinoth', NULL, NULL), + (697, 4791, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Black Bow of the Betrayer', NULL, NULL), + (697, 4792, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Bulwark of Azzinoth', NULL, NULL), + (697, 4793, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Cowl of the Illidari High Lord', NULL, NULL), + (697, 4794, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Crystal Spire of Karabor', NULL, NULL), + (697, 4795, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Cursed Vision of Sargeras', NULL, NULL), + (697, 4796, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Faceplate of the Impenetrable', NULL, NULL), + (697, 4797, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Memento of Tyrande', NULL, NULL), + (697, 4798, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Shard of Azzinoth', NULL, NULL), + (697, 4799, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Shroud of the Highborne', NULL, NULL), + (697, 4800, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Stormrage Signet Ring', NULL, NULL), + (697, 4801, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'The Skull of Gul\'dan', NULL, NULL), + (697, 4802, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Zhar\'doom, Greatstaff of the Devourer', NULL, NULL), + (697, 4803, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Lightbringer Breastplate', NULL, NULL), + (697, 4804, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Lightbringer Chestguard', NULL, NULL), + (697, 4805, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Lightbringer Chestpiece', NULL, NULL), + (697, 4806, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Robe of the Malefic', NULL, NULL), + (697, 4807, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Shroud of Absolution', NULL, NULL), + (697, 4808, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Vestments of Absolution', NULL, NULL), + (697, 4809, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Gronnstalker\'s Chestguard', NULL, NULL), + (697, 4810, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Onslaught Breastplate', NULL, NULL), + (697, 4811, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Onslaught Chestguard', NULL, NULL), + (697, 4812, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Skyshatter Breastplate', NULL, NULL), + (697, 4813, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Skyshatter Chestguard', NULL, NULL), + (697, 4814, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Skyshatter Tunic', NULL, NULL), + (697, 4815, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Robes of the Tempest', NULL, NULL), + (697, 4816, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Slayer\'s Chestguard', NULL, NULL), + (697, 4817, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Thunderheart Chestguard', NULL, NULL), + (697, 4818, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Thunderheart Tunic', NULL, NULL), + (697, 4819, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'The Black Temple', 'Thunderheart Vest', NULL, NULL), + (698, 607, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Kil\'jaeden', NULL, NULL), + (698, 4597, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Apolyon, the Soul-Render', NULL, NULL), + (698, 4598, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Borderland Paingrips', NULL, NULL), + (698, 4599, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Cloak of Unforgivable Sin', NULL, NULL), + (698, 4600, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Coif of Alleria', NULL, NULL), + (698, 4601, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Cover of Ursol the Wise', NULL, NULL), + (698, 4602, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Cowl of Gul\'dan', NULL, NULL), + (698, 4603, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Cowl of Light\'s Purity', NULL, NULL), + (698, 4604, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Crown of Anasterian', NULL, NULL), + (698, 4605, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Crux of the Apocalypse', NULL, NULL), + (698, 4606, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Dark Conjuror\'s Collar', NULL, NULL), + (698, 4607, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Duplicitous Guise', NULL, NULL), + (698, 4608, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Golden Staff of the Sin\'dorei', NULL, NULL), + (698, 4609, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Hammer of Sanctification', NULL, NULL), + (698, 4610, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Hand of the Deceiver', NULL, NULL), + (698, 4611, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Handguards of Defiled Worlds', NULL, NULL), + (698, 4612, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Handguards of the Dawn', NULL, NULL), + (698, 4613, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Helm of Burning Righteousness', NULL, NULL), + (698, 4614, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Sunflare', NULL, NULL), + (698, 4615, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Tattered Cape of Antonidas', NULL, NULL), + (698, 4616, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Thalassian Ranger Gauntlets', NULL, NULL), + (698, 4617, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Thori\'dal, the Stars\' Fury', NULL, NULL), + (698, 4647, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Cover of Ursoc the Mighty', NULL, NULL), + (698, 4648, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Crown of Dath\'Remar', NULL, NULL), + (698, 4649, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Gloves of Tyri\'s Power', NULL, NULL), + (698, 4650, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Helm of Arcane Purity', NULL, NULL), + (698, 4651, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Helm of Uther\'s Resolve', NULL, NULL), + (698, 4652, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Mask of the Fury Hunter', NULL, NULL), + (698, 4653, 10, 14805, 168, 1, 80, 1, 1, NULL, 10, 'Sunwell Plateau', 'Shroud of Chieftain Ner\'zhul', NULL, NULL), + (699, 608, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'World Wide Winner', 'Blade\'s Edge Arena', NULL, NULL), + (699, 609, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'World Wide Winner', 'Nagrand Arena', NULL, NULL), + (699, 610, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'World Wide Winner', 'Ruins of Lordaeron', NULL, NULL), + (699, 5809, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'World Wide Winner', 'The Ring of Valor', NULL, NULL), + (699, 5810, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'World Wide Winner', 'Dalaran Sewers', NULL, NULL), + (700, 759, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Insignia of the Horde', NULL, NULL), + (700, 760, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Insignia of the Horde', NULL, NULL), + (700, 761, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Insignia of the Horde', NULL, NULL), + (700, 762, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Insignia of the Horde', NULL, NULL), + (700, 763, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Insignia of the Horde', NULL, NULL), + (700, 764, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Insignia of the Horde', NULL, NULL), + (700, 765, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Insignia of the Horde', NULL, NULL), + (700, 766, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Insignia of the Horde', NULL, NULL), + (700, 767, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Insignia of the Horde', NULL, NULL), + (700, 768, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 769, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 770, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 771, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 772, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 773, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 774, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 775, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 776, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 777, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 778, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 7869, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 8740, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Insignia of the Horde', NULL, NULL), + (700, 12639, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (700, 13370, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Horde', 'Medallion of the Horde', NULL, NULL), + (701, 779, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Insignia of the Alliance', NULL, NULL), + (701, 780, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Insignia of the Alliance', NULL, NULL), + (701, 781, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Insignia of the Alliance', NULL, NULL), + (701, 782, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Insignia of the Alliance', NULL, NULL), + (701, 783, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Insignia of the Alliance', NULL, NULL), + (701, 784, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Insignia of the Alliance', NULL, NULL), + (701, 785, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Insignia of the Alliance', NULL, NULL), + (701, 786, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Insignia of the Alliance', NULL, NULL), + (701, 787, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Insignia of the Alliance', NULL, NULL), + (701, 788, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 789, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 790, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 791, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 792, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 793, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 794, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 795, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 796, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 797, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 798, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 7870, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 8741, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Insignia of the Alliance', NULL, NULL), + (701, 12638, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (701, 13371, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Freedom of the Alliance', 'Medallion of the Alliance', NULL, NULL), + (705, 641, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Axes', NULL, NULL), + (705, 651, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Bows', NULL, NULL), + (705, 652, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Crossbows', NULL, NULL), + (705, 653, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Daggers', NULL, NULL), + (705, 654, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Guns', NULL, NULL), + (705, 655, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Maces', NULL, NULL), + (705, 656, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Polearms', NULL, NULL), + (705, 657, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Staves', NULL, NULL), + (705, 753, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Swords', NULL, NULL), + (705, 754, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Two-Handed Axes', NULL, NULL), + (705, 755, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Two-Handed Swords', NULL, NULL), + (705, 756, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Unarmed', NULL, NULL), + (705, 757, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Wands', NULL, NULL), + (705, 834, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Two-Handed Maces', NULL, NULL), + (705, 9378, 25, 92, -1, 1, 80, 1, 1, NULL, 25, 'Master of Arms', 'Thrown', NULL, NULL), + (706, 6211, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Frostwolf Howler', 'Frostwolf Howler', NULL, NULL), + (707, 6212, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Stormpike Battle Charger', 'Stormpike Battle Charger', NULL, NULL), + (708, 990, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Hero of the Frostwolf Clan', 'Exalted with the Frostwolf Clan', NULL, NULL), + (709, 991, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Hero of the Stormpike Guard', 'Exalted with the Stormpike Guard', NULL, NULL), + (710, 986, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'The Defiler', 'Exalted with The Defilers', NULL, NULL), + (711, 987, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Knight of Arathor', 'Exalted with The League of Arathor', NULL, NULL), + (712, 988, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Warsong Outrider', 'Exalted with Warsong Outriders', NULL, NULL), + (713, 989, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Silverwing Sentinel', 'Exalted with Silverwing Sentinels', NULL, NULL), + (714, 645, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'The Conqueror', 'Hero of the Frostwolf Clan', NULL, NULL), + (714, 646, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'The Conqueror', 'The Defiler', NULL, NULL), + (714, 648, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'The Conqueror', 'Warsong Outrider', NULL, NULL), + (725, 741, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Thori\'dal, the Stars\' Fury', 'Thori\'dal, the Stars\' Fury', NULL, NULL), + (725, 12482, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Thori\'dal, the Stars\' Fury', '', NULL, NULL), + (726, 799, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Mr. Pinchy\'s Magical Crawdad Box', 'Magical Crawdad Box', NULL, NULL), + (726, 6382, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Mr. Pinchy\'s Magical Crawdad Box', 'Magical Crawdad', NULL, NULL), + (727, 6213, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call in the Cavalry', 'Black Battlestrider', NULL, NULL), + (727, 6214, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call in the Cavalry', 'Black War Kodo', NULL, NULL), + (727, 6215, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call in the Cavalry', 'Black War Ram', NULL, NULL), + (727, 6216, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call in the Cavalry', 'Black War Steed', NULL, NULL), + (727, 6217, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call in the Cavalry', 'Black War Wolf', NULL, NULL), + (727, 6218, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call in the Cavalry', 'Black War Elekk', NULL, NULL), + (727, 6219, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call in the Cavalry', 'Black War Tiger', NULL, NULL), + (727, 6220, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call in the Cavalry', 'Black War Raptor', NULL, NULL), + (727, 6221, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call in the Cavalry', 'Swift Warstrider', NULL, NULL), + (727, 6222, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call in the Cavalry', 'Red Skeletal Warhorse', NULL, NULL), + (728, 822, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Durotar', 'Valley of Trials', NULL, NULL), + (728, 823, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Durotar', 'Sen\'jin Village', NULL, NULL), + (728, 824, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Durotar', 'Kolkar Crag', NULL, NULL), + (728, 825, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Durotar', 'Echo Isles', NULL, NULL), + (728, 826, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Durotar', 'Tiragarde Keep', NULL, NULL), + (728, 827, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Durotar', 'Razor Hill', NULL, NULL), + (728, 828, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Durotar', 'Razormane Grounds', NULL, NULL), + (728, 829, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Durotar', 'Thunder Ridge', NULL, NULL), + (728, 830, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Durotar', 'Drygulch Ravine', NULL, NULL), + (728, 831, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Durotar', 'Skull Rock', NULL, NULL), + (728, 832, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Durotar', 'Orgrimmar', NULL, NULL), + (729, 6159, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Deathcharger\'s Reins', 'Rivendare\'s Deathcharger', NULL, NULL), + (730, 845, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Skills to Pay the Bills', 'Grand Master Fisherman', NULL, NULL), + (730, 846, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Skills to Pay the Bills', 'Grand Master in First Aid', NULL, NULL), + (730, 847, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Skills to Pay the Bills', 'Grand Master Cook', NULL, NULL), + (731, 848, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Expert', 'Alchemy', NULL, NULL), + (731, 849, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Expert', 'Blacksmithing', NULL, NULL), + (731, 850, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Expert', 'Enchanting', NULL, NULL), + (731, 851, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Expert', 'Engineering', NULL, NULL), + (731, 852, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Expert', 'Herbalism', NULL, NULL), + (731, 853, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Expert', 'Inscription', NULL, NULL), + (731, 854, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Expert', 'Jewelcrafting', NULL, NULL), + (731, 855, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Expert', 'Leatherworking', NULL, NULL), + (731, 856, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Expert', 'Mining', NULL, NULL), + (731, 857, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Expert', 'Skinning', NULL, NULL), + (731, 858, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Expert', 'Tailoring', NULL, NULL), + (732, 859, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Artisan', 'Alchemy', NULL, NULL), + (732, 860, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Artisan', 'Blacksmithing', NULL, NULL), + (732, 861, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Artisan', 'Enchanting', NULL, NULL), + (732, 862, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Artisan', 'Engineering', NULL, NULL), + (732, 863, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Artisan', 'Herbalism', NULL, NULL), + (732, 864, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Artisan', 'Inscription', NULL, NULL), + (732, 865, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Artisan', 'Jewelcrafting', NULL, NULL), + (732, 866, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Artisan', 'Leatherworking', NULL, NULL), + (732, 867, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Artisan', 'Mining', NULL, NULL), + (732, 868, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Artisan', 'Skinning', NULL, NULL), + (732, 869, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Artisan', 'Tailoring', NULL, NULL), + (733, 870, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Master', 'Alchemy', NULL, NULL), + (733, 871, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Master', 'Blacksmithing', NULL, NULL), + (733, 872, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Master', 'Enchanting', NULL, NULL), + (733, 873, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Master', 'Engineering', NULL, NULL), + (733, 874, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Master', 'Herbalism', NULL, NULL), + (733, 875, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Master', 'Inscription', NULL, NULL), + (733, 876, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Master', 'Jewelcrafting', NULL, NULL), + (733, 877, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Master', 'Leatherworking', NULL, NULL), + (733, 878, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Master', 'Mining', NULL, NULL), + (733, 879, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Master', 'Skinning', NULL, NULL), + (733, 880, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Master', 'Tailoring', NULL, NULL), + (734, 881, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Grand Master', 'Alchemy', NULL, NULL), + (734, 882, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Grand Master', 'Blacksmithing', NULL, NULL), + (734, 883, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Grand Master', 'Enchanting', NULL, NULL), + (734, 884, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Grand Master', 'Engineering', NULL, NULL), + (734, 885, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Grand Master', 'Herbalism', NULL, NULL), + (734, 886, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Grand Master', 'Inscription', NULL, NULL), + (734, 887, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Grand Master', 'Jewelcrafting', NULL, NULL), + (734, 888, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Grand Master', 'Leatherworking', NULL, NULL), + (734, 889, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Grand Master', 'Mining', NULL, NULL), + (734, 890, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Grand Master', 'Skinning', NULL, NULL), + (734, 891, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Professional Grand Master', 'Tailoring', NULL, NULL), + (735, 892, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Working Day and Night', 'Alchemy', NULL, NULL), + (735, 893, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Working Day and Night', 'Blacksmithing', NULL, NULL), + (735, 894, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Working Day and Night', 'Enchanting', NULL, NULL), + (735, 895, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Working Day and Night', 'Engineering', NULL, NULL), + (735, 896, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Working Day and Night', 'Herbalism', NULL, NULL), + (735, 897, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Working Day and Night', 'Inscription', NULL, NULL), + (735, 898, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Working Day and Night', 'Jewelcrafting', NULL, NULL), + (735, 899, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Working Day and Night', 'Leatherworking', NULL, NULL), + (735, 900, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Working Day and Night', 'Mining', NULL, NULL), + (735, 901, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Working Day and Night', 'Skinning', NULL, NULL), + (735, 902, 10, 169, -1, 1, 80, 1, 1, NULL, 10, 'Working Day and Night', 'Tailoring', NULL, NULL), + (736, 903, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'Red Cloud Mesa', NULL, NULL), + (736, 904, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'Palemane Rock', NULL, NULL), + (736, 905, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'Winterhoof Water Well', NULL, NULL), + (736, 906, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'The Rolling Plains', NULL, NULL), + (736, 907, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'The Venture Co. Mine', NULL, NULL), + (736, 908, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'Ravaged Caravan', NULL, NULL), + (736, 909, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'Thunderhorn Water Well', NULL, NULL), + (736, 910, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'Bael\'Dun Digsite', NULL, NULL), + (736, 911, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'Thunder Bluff', NULL, NULL), + (736, 912, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'Red Rocks', NULL, NULL), + (736, 913, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'Windfury Ridge', NULL, NULL), + (736, 914, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'Bloodhoof Village', NULL, NULL), + (736, 915, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'Wildmane Water Well', NULL, NULL), + (736, 916, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Mulgore', 'The Golden Plains', NULL, NULL), + (750, 917, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Boulder Lode Mine', NULL, NULL), + (750, 918, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'The Sludge Fen', NULL, NULL), + (750, 919, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'The Mor\'shan Rampart', NULL, NULL), + (750, 920, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Dreadmist Peak', NULL, NULL), + (750, 921, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'The Dry Hills', NULL, NULL), + (750, 922, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'The Forgotten Pools', NULL, NULL), + (750, 923, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Honor\'s Stand', NULL, NULL), + (750, 924, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Grol\'dom Farm', NULL, NULL), + (750, 925, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Far Watch Post', NULL, NULL), + (750, 926, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Thorn Hill', NULL, NULL), + (750, 927, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'The Crossroads', NULL, NULL), + (750, 928, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'The Stagnant Oasis', NULL, NULL), + (750, 929, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Ratchet', NULL, NULL), + (750, 930, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'The Merchant Coast', NULL, NULL), + (750, 931, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Northwatch Hold', NULL, NULL), + (750, 932, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Raptor Grounds', NULL, NULL), + (750, 933, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Lushwater Oasis', NULL, NULL), + (750, 934, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Agama\'gor', NULL, NULL), + (750, 935, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Bramblescar', NULL, NULL), + (750, 936, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Camp Taurajo', NULL, NULL), + (750, 937, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Field of Giants', NULL, NULL), + (750, 938, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Blackthorn Ridge', NULL, NULL), + (750, 939, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Bael Modan', NULL, NULL), + (750, 940, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Razorfen Kraul', NULL, NULL), + (750, 941, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Barrens', 'Razorfen Downs', NULL, NULL), + (752, 943, 1, 125, 122, 1, 80, 1, 1, NULL, 0, 'Deaths in Naxxramas', 'Deaths in Naxxramas', NULL, NULL), + (753, 0, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Average gold earned per day', NULL, NULL, NULL), + (759, 0, 1, 133, 1, 0, 80, 1, 1, NULL, 0, 'Average daily quests completed per day', NULL, NULL, NULL), + (760, 944, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Chillwind Point', NULL, NULL), + (760, 945, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Corrahn\'s Dagger', NULL, NULL), + (760, 949, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Crushridge Hold', NULL, NULL), + (760, 950, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Dalaran Crater', NULL, NULL), + (760, 951, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Dandred\'s Fold', NULL, NULL), + (760, 952, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Gallows\' Corner', NULL, NULL), + (760, 953, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Gavin\'s Naze', NULL, NULL), + (760, 954, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Growless Cave', NULL, NULL), + (760, 955, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Lordamere Internment Camp', NULL, NULL), + (760, 956, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Misty Shore', NULL, NULL), + (760, 957, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Ruins of Alterac', NULL, NULL), + (760, 958, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Sofera\'s Naze', NULL, NULL), + (760, 959, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'Strahnbrad', NULL, NULL), + (760, 960, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'The Headland', NULL, NULL), + (760, 961, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Alterac Mountains', 'The Uplands', NULL, NULL), + (761, 962, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Circle of West Binding', NULL, NULL), + (761, 963, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Northfold Manor', NULL, NULL), + (761, 964, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Thoradin\'s Wall', NULL, NULL), + (761, 965, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Stromgarde Keep', NULL, NULL), + (761, 966, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Faldir\'s Cove', NULL, NULL), + (761, 967, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Circle of Inner Binding', NULL, NULL), + (761, 968, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Thandol Span', NULL, NULL), + (761, 969, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Boulderfist Hall', NULL, NULL), + (761, 970, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Refuge Pointe', NULL, NULL), + (761, 971, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Circle of Outer Binding', NULL, NULL), + (761, 972, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Witherbark Village', NULL, NULL), + (761, 973, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Go\'Shek Farm', NULL, NULL), + (761, 974, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Dabyrie\'s Farmstead', NULL, NULL), + (761, 975, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Circle of East Binding', NULL, NULL), + (761, 976, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Hammerfall', NULL, NULL), + (761, 2044, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Arathi Highlands', 'Boulder\'gor', NULL, NULL), + (762, 992, 10, 201, -1, 1, 80, 1, 1, NULL, 10, 'Ambassador of the Horde', 'Exalted Orgrimmar', NULL, NULL), + (762, 993, 10, 201, -1, 1, 80, 1, 1, NULL, 10, 'Ambassador of the Horde', 'Exalted Thunder Bluff', NULL, NULL), + (762, 994, 10, 201, -1, 1, 80, 1, 1, NULL, 10, 'Ambassador of the Horde', 'Exalted Undercity', NULL, NULL), + (762, 995, 10, 201, -1, 1, 80, 1, 1, NULL, 10, 'Ambassador of the Horde', 'Exalted Darkspear Trolls', NULL, NULL), + (762, 996, 10, 201, -1, 1, 80, 1, 1, NULL, 10, 'Ambassador of the Horde', 'Exalted Silvermoon City', NULL, NULL), + (763, 1003, 20, 14865, 201, 1, 80, 1, 1, NULL, 20, 'The Burning Crusader', 'Thrallmar', NULL, NULL), + (763, 1005, 20, 14865, 201, 1, 80, 1, 1, NULL, 20, 'The Burning Crusader', 'The Sha\'tar', NULL, NULL), + (763, 1006, 20, 14865, 201, 1, 80, 1, 1, NULL, 20, 'The Burning Crusader', 'Lower City', NULL, NULL), + (763, 1007, 20, 14865, 201, 1, 80, 1, 1, NULL, 20, 'The Burning Crusader', 'Cenarion Expedition', NULL, NULL), + (763, 1008, 20, 14865, 201, 1, 80, 1, 1, NULL, 20, 'The Burning Crusader', 'Keepers of Time', NULL, NULL), + (764, 1009, 20, 14865, 201, 1, 80, 1, 1, NULL, 20, 'The Burning Crusader', 'Honor Hold', NULL, NULL), + (764, 1010, 20, 14865, 201, 1, 80, 1, 1, NULL, 20, 'The Burning Crusader', 'The Sha\'tar', NULL, NULL), + (764, 1011, 20, 14865, 201, 1, 80, 1, 1, NULL, 20, 'The Burning Crusader', 'Lower City', NULL, NULL), + (764, 1012, 20, 14865, 201, 1, 80, 1, 1, NULL, 20, 'The Burning Crusader', 'Cenarion Expedition', NULL, NULL), + (764, 1013, 20, 14865, 201, 1, 80, 1, 1, NULL, 20, 'The Burning Crusader', 'Keepers of Time', NULL, NULL), + (765, 1014, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Lethlor Ravine', NULL, NULL), + (765, 1015, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Camp Boff', NULL, NULL), + (765, 1016, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Agmond\'s End', NULL, NULL), + (765, 1017, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Mirage Flats', NULL, NULL), + (765, 1018, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Camp Cagg', NULL, NULL), + (765, 1019, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Apocryphan\'s Rest', NULL, NULL), + (765, 1020, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Kargath', NULL, NULL), + (765, 1021, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'The Dustbowl', NULL, NULL), + (765, 1022, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Valley of Fangs', NULL, NULL), + (765, 1023, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Angor Fortress', NULL, NULL), + (765, 1024, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Dustwind Gulch', NULL, NULL), + (765, 1025, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Hammertoe\'s Digsite', NULL, NULL), + (765, 1026, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'The Maker\'s Terrace', NULL, NULL), + (765, 1027, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Badlands', 'Camp Kosh', NULL, NULL), + (766, 1028, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blasted Lands', 'Dreadmaul Hold', NULL, NULL), + (766, 1029, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blasted Lands', 'Garrison Armory', NULL, NULL), + (766, 1030, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blasted Lands', 'Nethergarde Keep', NULL, NULL), + (766, 1031, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blasted Lands', 'Serpent\'s Coil', NULL, NULL), + (766, 1032, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blasted Lands', 'The Dark Portal', NULL, NULL), + (766, 1033, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blasted Lands', 'Altar of Storms', NULL, NULL), + (766, 1034, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blasted Lands', 'Dreadmaul Post', NULL, NULL), + (766, 1035, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blasted Lands', 'The Tainted Scar', NULL, NULL), + (766, 1036, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blasted Lands', 'Rise of the Defiler', NULL, NULL), + (768, 1037, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Deathknell', NULL, NULL), + (768, 1038, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Solliden Farmstead', NULL, NULL), + (768, 1039, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Agamand Mills', NULL, NULL), + (768, 1040, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Stillwater Pond', NULL, NULL), + (768, 1041, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Nightmare Vale', NULL, NULL), + (768, 1042, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Cold Hearth Manor', NULL, NULL), + (768, 1043, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Brill', NULL, NULL), + (768, 1044, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Garren\'s Haunt', NULL, NULL), + (768, 1045, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Undercity', NULL, NULL), + (768, 1046, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Brightwater Lake', NULL, NULL), + (768, 1047, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Balnir Farmstead', NULL, NULL), + (768, 1048, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Crusader Outpost', NULL, NULL), + (768, 1049, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Scarlet Watch Post', NULL, NULL), + (768, 1050, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Whispering Gardens', NULL, NULL), + (768, 1051, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'Venomweb Vale', NULL, NULL), + (768, 1052, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tirisfal Glades', 'The Bulwark', NULL, NULL), + (769, 1053, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'Malden\'s Orchard', NULL, NULL), + (769, 1054, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'The Shining Strand', NULL, NULL), + (769, 1055, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'The Dead Field', NULL, NULL), + (769, 1056, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'The Skittering Dark', NULL, NULL), + (769, 1057, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'North Tide\'s Hollow', NULL, NULL), + (769, 1058, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'Fenris Isle', NULL, NULL), + (769, 1059, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'The Decrepit Ferry', NULL, NULL), + (769, 1060, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'The Sepulcher', NULL, NULL), + (769, 1061, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'Deep Elem Mine', NULL, NULL), + (769, 1062, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'Olsen\'s Farthing', NULL, NULL), + (769, 1063, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'Ambermill', NULL, NULL), + (769, 1064, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'Shadowfang Keep', NULL, NULL), + (769, 1065, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'Pyrewood Village', NULL, NULL), + (769, 1066, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'The Greymane Wall', NULL, NULL), + (769, 1067, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silverpine Forest', 'Beren\'s Peril', NULL, NULL), + (770, 1068, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'Darrowmere Lake', NULL, NULL), + (770, 1069, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'Caer Darrow', NULL, NULL), + (770, 1070, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'Sorrow Hill', NULL, NULL), + (770, 1071, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'Ruins of Andorhal', NULL, NULL), + (770, 1072, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'The Bulwark', NULL, NULL), + (770, 1073, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'Felstone Field', NULL, NULL), + (770, 1074, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'Dalson\'s Tears', NULL, NULL), + (770, 1075, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'The Writhing Haunt', NULL, NULL), + (770, 1076, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'Northridge Lumber Camp', NULL, NULL), + (770, 1077, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'Hearthglen', NULL, NULL), + (770, 1078, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'Gahrron\'s Withering', NULL, NULL), + (770, 1079, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'The Weeping Cave', NULL, NULL), + (770, 1080, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Western Plaguelands', 'Thondroril River', NULL, NULL), + (771, 1081, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Thondroril River', NULL, NULL), + (771, 1082, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'The Marris Stead', NULL, NULL), + (771, 1083, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'The Undercroft', NULL, NULL), + (771, 1084, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Crown Guard Tower', NULL, NULL), + (771, 1085, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'The Fungal Vale', NULL, NULL), + (771, 1086, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Darrowshire', NULL, NULL), + (771, 1087, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Pestilent Scar', NULL, NULL), + (771, 1088, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Corin\'s Crossing', NULL, NULL), + (771, 1089, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Lake Mereldar', NULL, NULL), + (771, 1090, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Tyr\'s Hand', NULL, NULL), + (771, 1091, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Light\'s Hope Chapel', NULL, NULL), + (771, 1092, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'The Infectis Scar', NULL, NULL), + (771, 1093, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'The Noxious Glade', NULL, NULL), + (771, 1094, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Eastwall Tower', NULL, NULL), + (771, 1095, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Blackwood Lake', NULL, NULL), + (771, 1096, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Northdale', NULL, NULL), + (771, 1097, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Zul\'Mashar', NULL, NULL), + (771, 1098, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Northpass Tower', NULL, NULL), + (771, 1099, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Quel\'Lithien Lodge', NULL, NULL), + (771, 1100, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Terrordale', NULL, NULL), + (771, 1101, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Plaguewood', NULL, NULL), + (771, 1102, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Stratholme', NULL, NULL), + (771, 8749, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eastern Plaguelands', 'Ruins of the Scarlet Enclave', NULL, NULL), + (772, 1103, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Darrow Hill', NULL, NULL), + (772, 1104, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Tarren Mill', NULL, NULL), + (772, 1105, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Durnholde Keep', NULL, NULL), + (772, 1106, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Dun Garok', NULL, NULL), + (772, 1107, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Nethander Stead', NULL, NULL), + (772, 1108, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Eastern Strand', NULL, NULL), + (772, 1109, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Southshore', NULL, NULL), + (772, 1110, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Hillsbrad Fields', NULL, NULL), + (772, 1111, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Western Strand', NULL, NULL), + (772, 1112, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Azurelode Mine', NULL, NULL), + (772, 1113, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Southpoint Tower', NULL, NULL), + (772, 1114, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hillsbrad Foothills', 'Purgation Isle', NULL, NULL), + (773, 1115, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'Aerie Peak', NULL, NULL), + (773, 1116, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'Plaguemist Ravine', NULL, NULL), + (773, 1117, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'Hiri\'watha', NULL, NULL), + (773, 1118, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'Quel\'Danil Lodge', NULL, NULL), + (773, 1119, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'Shadra\'Alor', NULL, NULL), + (773, 1120, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'Valorwind Lake', NULL, NULL), + (773, 1121, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'Agol\'watha', NULL, NULL), + (773, 1122, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'The Creeping Ruin', NULL, NULL), + (773, 1123, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'The Altar of Zul', NULL, NULL), + (773, 1124, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'Seradane', NULL, NULL), + (773, 1125, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'Skulk Rock', NULL, NULL), + (773, 1126, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'Shaol\'watha', NULL, NULL), + (773, 1127, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'Jintha\'Alor', NULL, NULL), + (773, 1128, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore The Hinterlands', 'The Overlook Cliffs', NULL, NULL), + (774, 1129, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Searing Gorge', 'Firewatch Ridge', NULL, NULL), + (774, 1130, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Searing Gorge', 'The Cauldron', NULL, NULL), + (774, 1131, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Searing Gorge', 'Blackchar Cave', NULL, NULL), + (774, 1132, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Searing Gorge', 'The Sea of Cinders', NULL, NULL), + (774, 1133, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Searing Gorge', 'Tanner Camp', NULL, NULL), + (774, 1134, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Searing Gorge', 'Grimesilt Dig Site', NULL, NULL), + (774, 1135, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Searing Gorge', 'Dustfire Valley', NULL, NULL), + (775, 1136, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Burning Steppes', 'Dreadmaul Rock', NULL, NULL), + (775, 1137, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Burning Steppes', 'Morgan\'s Vigil', NULL, NULL), + (775, 1138, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Burning Steppes', 'Terror Wing Path', NULL, NULL), + (775, 1139, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Burning Steppes', 'Blackrock Pass', NULL, NULL), + (775, 1140, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Burning Steppes', 'Ruins of Thaurissan', NULL, NULL), + (775, 1141, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Burning Steppes', 'The Pillar of Ash', NULL, NULL), + (775, 1142, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Burning Steppes', 'Blackrock Stronghold', NULL, NULL), + (775, 1143, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Burning Steppes', 'Draco\'dar', NULL, NULL), + (775, 1144, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Burning Steppes', 'Altar of Storms', NULL, NULL), + (775, 1145, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Burning Steppes', 'Blackrock Mountain', NULL, NULL), + (776, 1146, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Northshire Valley', NULL, NULL), + (776, 1147, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Goldshire', NULL, NULL), + (776, 1148, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Fargodeep Mine', NULL, NULL), + (776, 1149, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Stormwind City', NULL, NULL), + (776, 1150, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Forest\'s Edge', NULL, NULL), + (776, 1151, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Jerod\'s Landing', NULL, NULL), + (776, 1152, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Tower of Azora', NULL, NULL), + (776, 1153, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Brackwell Pumpkin Patch', NULL, NULL), + (776, 1154, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Eastvale Logging Camp', NULL, NULL), + (776, 1155, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Ridgepoint Tower', NULL, NULL), + (776, 1156, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Crystal Lake', NULL, NULL), + (776, 1157, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Elwynn Forest', 'Stone Cairn Lake', NULL, NULL), + (777, 1158, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Deadwind Pass', 'Deadman\'s Crossing', NULL, NULL), + (777, 1159, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Deadwind Pass', 'The Vice', NULL, NULL), + (777, 1160, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Deadwind Pass', 'Karazhan', NULL, NULL), + (778, 1161, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'The Hushed Bank', NULL, NULL), + (778, 1162, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'Addle\'s Stead', NULL, NULL), + (778, 1163, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'Raven Hill', NULL, NULL), + (778, 1164, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'Raven Hill Cemetery', NULL, NULL), + (778, 1165, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'Vul\'Gol Ogre Mound', NULL, NULL), + (778, 1166, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'Twilight Grove', NULL, NULL), + (778, 1167, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'The Yorgen Farmstead', NULL, NULL), + (778, 1168, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'Brightwood Grove', NULL, NULL), + (778, 1169, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'The Rotting Orchard', NULL, NULL), + (778, 1170, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'Tranquil Gardens Cemetery', NULL, NULL), + (778, 1171, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'Darkshire', NULL, NULL), + (778, 1172, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'Manor Mistmantle', NULL, NULL), + (778, 1173, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Duskwood', 'The Darkened Bank', NULL, NULL), + (779, 1174, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Loch Modan', 'Stonewrought Dam', NULL, NULL), + (779, 1175, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Loch Modan', 'Mo\'grosh Stronghold', NULL, NULL), + (779, 1176, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Loch Modan', 'The Loch', NULL, NULL), + (779, 1177, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Loch Modan', 'Silver Stream Mine', NULL, NULL), + (779, 1178, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Loch Modan', 'North Gate Pass', NULL, NULL), + (779, 1179, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Loch Modan', 'The Farstrider Lodge', NULL, NULL), + (779, 1180, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Loch Modan', 'Ironband\'s Excavation Site', NULL, NULL), + (779, 1181, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Loch Modan', 'Grizzlepaw Ridge', NULL, NULL), + (779, 1182, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Loch Modan', 'Thelsamar', NULL, NULL), + (779, 1183, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Loch Modan', 'Stonesplinter Valley', NULL, NULL), + (779, 1184, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Loch Modan', 'Valley of Kings', NULL, NULL), + (780, 1185, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Redridge Mountains', 'Lakeshire', NULL, NULL), + (780, 1186, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Redridge Mountains', 'Three Corners', NULL, NULL), + (780, 1187, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Redridge Mountains', 'Lakeridge Highway', NULL, NULL), + (780, 1188, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Redridge Mountains', 'Lake Everstill', NULL, NULL), + (780, 1189, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Redridge Mountains', 'Redridge Canyons', NULL, NULL), + (780, 1190, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Redridge Mountains', 'Render\'s Camp', NULL, NULL), + (780, 1191, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Redridge Mountains', 'Alther\'s Mill', NULL, NULL), + (780, 1192, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Redridge Mountains', 'Stonewatch', NULL, NULL), + (780, 1193, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Redridge Mountains', 'Render\'s Valley', NULL, NULL), + (780, 1194, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Redridge Mountains', 'Stonewatch Falls', NULL, NULL), + (780, 1195, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Redridge Mountains', 'Galardell Valley', NULL, NULL), + (781, 1196, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Booty Bay', NULL, NULL), + (781, 1197, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Nesingwary\'s Expedition', NULL, NULL), + (781, 1198, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Grom\'gol Base Camp', NULL, NULL), + (781, 1199, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Rebel Camp', NULL, NULL), + (781, 1200, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Kurzen\'s Compound', NULL, NULL), + (781, 1201, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Wild Shore', NULL, NULL), + (781, 1202, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Nek\'mani Wellspring', NULL, NULL), + (781, 1203, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Mistvale Valley', NULL, NULL), + (781, 1204, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Bloodsail Compound', NULL, NULL), + (781, 1205, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Ruins of Aboraz', NULL, NULL), + (781, 1206, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Ruins of Jubuwal', NULL, NULL), + (781, 1207, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Crystalvein Mine', NULL, NULL), + (781, 1208, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Ziata\'jai Ruins', NULL, NULL), + (781, 1209, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Gurubashi Arena', NULL, NULL), + (781, 1210, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Ruins of Zul\'Mamwe', NULL, NULL), + (781, 1211, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Balia\'mah Ruins', NULL, NULL), + (781, 1212, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Mizjah Ruins', NULL, NULL), + (781, 1213, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Mosh\'Ogg Ogre Mound', NULL, NULL), + (781, 1214, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Venture Co. Base Camp', NULL, NULL), + (781, 1215, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Lake Nazferiti', NULL, NULL), + (781, 1216, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Kal\'ai Ruins', NULL, NULL), + (781, 1217, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Bal\'lal Ruins', NULL, NULL), + (781, 1218, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'The Vile Reef', NULL, NULL), + (781, 1219, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Zuuldaia Ruins', NULL, NULL), + (781, 1220, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Ruins of Zul\'Kunda', NULL, NULL), + (781, 1221, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Jaguero Isle', NULL, NULL), + (781, 1222, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stranglethorn Vale', 'Zul\'Gurub', NULL, NULL), + (782, 1223, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Swamp of Sorrows', 'Itharius\'s Cave', NULL, NULL), + (782, 1224, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Swamp of Sorrows', 'Misty Valley', NULL, NULL), + (782, 1225, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Swamp of Sorrows', 'The Harborage', NULL, NULL), + (782, 1226, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Swamp of Sorrows', 'Splinterspear Junction', NULL, NULL), + (782, 1227, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Swamp of Sorrows', 'The Shifting Mire', NULL, NULL), + (782, 1228, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Swamp of Sorrows', 'Stonard', NULL, NULL), + (782, 1229, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Swamp of Sorrows', 'Pool of Tears', NULL, NULL), + (782, 1230, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Swamp of Sorrows', 'Stagalbog', NULL, NULL), + (782, 1231, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Swamp of Sorrows', 'Sorrowmurk', NULL, NULL), + (782, 1232, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Swamp of Sorrows', 'Fallow Sanctuary', NULL, NULL), + (782, 1233, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Swamp of Sorrows', 'Misty Reed Strand', NULL, NULL), + (783, 1238, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'The Perfect Storm', 'Win 1600 to 0', NULL, NULL), + (784, 1239, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Eye of the Storm Domination', 'Win Eye of the Storm 10 times while holding 4 bases', NULL, NULL), + (796, 1243, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by priests', 'Resurrection (Rank 7)', NULL, NULL), + (796, 4966, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by priests', 'Resurrection (Rank 6)', NULL, NULL), + (796, 4967, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by priests', 'Resurrection (Rank 5)', NULL, NULL), + (796, 4968, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by priests', 'Resurrection (Rank 4)', NULL, NULL), + (796, 4969, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by priests', 'Resurrection (Rank 3)', NULL, NULL), + (796, 4970, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by priests', 'Resurrection (Rank 2)', NULL, NULL), + (796, 4971, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by priests', 'Resurrection (Rank 1)', NULL, NULL), + (798, 1247, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Rebirthed by druids', 'Rebirth (Rank 7)', NULL, NULL), + (798, 4972, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Rebirthed by druids', 'Rebirth (Rank 6)', NULL, NULL), + (798, 4973, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Rebirthed by druids', 'Rebirth (Rank 5)', NULL, NULL), + (798, 4974, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Rebirthed by druids', 'Rebirth (Rank 4)', NULL, NULL), + (798, 4975, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Rebirthed by druids', 'Rebirth (Rank 3)', NULL, NULL), + (798, 4976, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Rebirthed by druids', 'Rebirth (Rank 2)', NULL, NULL), + (798, 4977, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Rebirthed by druids', 'Rebirth (Rank 1)', NULL, NULL), + (799, 1246, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Spirit returned to body by shamans', 'Ancestral Spirit', NULL, NULL), + (799, 7850, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Spirit returned to body by shamans', 'Ancestral Spirit', NULL, NULL), + (799, 7851, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Spirit returned to body by shamans', 'Ancestral Spirit', NULL, NULL), + (799, 7852, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Spirit returned to body by shamans', 'Ancestral Spirit', NULL, NULL), + (799, 7853, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Spirit returned to body by shamans', 'Ancestral Spirit', NULL, NULL), + (799, 7854, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Spirit returned to body by shamans', 'Ancestral Spirit', NULL, NULL), + (799, 7855, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Spirit returned to body by shamans', 'Ancestral Spirit', NULL, NULL), + (800, 1245, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Redeemed by paladins', 'Redemption', NULL, NULL), + (800, 7856, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Redeemed by paladins', 'Redemption', NULL, NULL), + (800, 7857, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Redeemed by paladins', 'Redemption', NULL, NULL), + (800, 7858, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Redeemed by paladins', 'Redemption', NULL, NULL), + (800, 7859, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Redeemed by paladins', 'Redemption', NULL, NULL), + (800, 7860, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Redeemed by paladins', 'Redemption', NULL, NULL), + (800, 7861, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Redeemed by paladins', 'Redemption', NULL, NULL), + (800, 7862, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Redeemed by paladins', 'Redemption', NULL, NULL), + (801, 1244, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 7863, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 7864, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 7865, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 7866, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 7867, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 7868, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 8760, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 8761, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 8762, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 8763, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 8764, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (801, 8765, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Resurrected by soulstones', 'Use Soulstone', NULL, NULL), + (802, 1248, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'Sentinel Hill', NULL, NULL), + (802, 1249, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'Saldean\'s Farm', NULL, NULL), + (802, 1250, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'Furlbrow\'s Pumpkin Farm', NULL, NULL), + (802, 1251, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'The Jansen Stead', NULL, NULL), + (802, 1252, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'Jangolode Mine', NULL, NULL), + (802, 1253, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'The Molsen Farm', NULL, NULL), + (802, 1254, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'Gold Coast Quarry', NULL, NULL), + (802, 1255, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'The Dead Acre', NULL, NULL), + (802, 1256, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'Moonbrook', NULL, NULL), + (802, 1257, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'Alexston Farmstead', NULL, NULL), + (802, 1258, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'Demont\'s Place', NULL, NULL), + (802, 1259, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'Westfall Lighthouse', NULL, NULL), + (802, 1260, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'The Dagger Hills', NULL, NULL), + (802, 1261, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Westfall', 'The Dust Plains', NULL, NULL), + (811, 4410, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Blinding Light', NULL, NULL), + (811, 4411, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Chromatic Resistance', NULL, NULL), + (811, 4412, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Chromatic Wonder', NULL, NULL), + (811, 4413, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Distilled Wisdom', NULL, NULL), + (811, 4414, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Endless Rage', NULL, NULL), + (811, 4415, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Fortification', NULL, NULL), + (811, 4416, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Mighty Restoration', NULL, NULL), + (811, 4417, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Petrification', NULL, NULL), + (811, 4418, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Pure Death', NULL, NULL), + (811, 4419, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Pure Mojo', NULL, NULL), + (811, 4420, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Relentless Assault', NULL, NULL), + (811, 4421, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Stoneblood', NULL, NULL), + (811, 4422, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Supreme Power', NULL, NULL), + (811, 4423, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of the Frost Wyrm', NULL, NULL), + (811, 4424, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of the Titans', NULL, NULL), + (811, 4425, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Shattrath Flask of Blinding Light', NULL, NULL), + (811, 4426, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Shattrath Flask of Fortification', NULL, NULL), + (811, 4427, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Shattrath Flask of Mighty Restoration', NULL, NULL), + (811, 4428, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Shattrath Flask of Pure Death', NULL, NULL), + (811, 4429, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Shattrath Flask of Relentless Assault', NULL, NULL), + (811, 4430, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Shattrath Flask of Supreme Power', NULL, NULL), + (811, 4431, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Unstable Flask of the Bandit', NULL, NULL), + (811, 4432, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Unstable Flask of the Beast', NULL, NULL), + (811, 4433, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Unstable Flask of the Elder', NULL, NULL), + (811, 4434, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Unstable Flask of the Physician', NULL, NULL), + (811, 4435, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Unstable Flask of the Soldier', NULL, NULL), + (811, 4436, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Unstable Flask of the Sorcerer', NULL, NULL), + (811, 13248, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Endless Rage', NULL, NULL), + (811, 13249, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Pure Mojo', NULL, NULL), + (811, 13250, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of Stoneblood', NULL, NULL), + (811, 13251, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of the North', NULL, NULL), + (811, 13252, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flasks consumed', 'Flask of the Frost Wyrm', NULL, NULL), + (812, 4719, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Greater Healthstone (0)', NULL, NULL), + (812, 4720, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Greater Healthstone (1)', NULL, NULL), + (812, 4721, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Greater Healthstone (2)', NULL, NULL), + (812, 4722, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Healthstone (0)', NULL, NULL), + (812, 4723, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Healthstone (1)', NULL, NULL), + (812, 4724, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Healthstone (2)', NULL, NULL), + (812, 4725, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Lesser Healthstone (0)', NULL, NULL), + (812, 4726, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Lesser Healthstone (1)', NULL, NULL), + (812, 4727, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Lesser Healthstone (2)', NULL, NULL), + (812, 4728, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Major Healthstone (0)', NULL, NULL), + (812, 4729, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Major Healthstone (1)', NULL, NULL), + (812, 4730, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Major Healthstone (2)', NULL, NULL), + (812, 4731, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Minor Healthstone (0)', NULL, NULL), + (812, 4732, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Minor Healthstone (1)', NULL, NULL), + (812, 4733, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Minor Healthstone (2)', NULL, NULL), + (812, 4734, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Master Healthstone (0)', NULL, NULL), + (812, 4735, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Master Healthstone (1)', NULL, NULL), + (812, 4736, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Master Healthstone (2)', NULL, NULL), + (812, 9038, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Demonic Healthstone', NULL, NULL), + (812, 9039, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Demonic Healthstone', NULL, NULL), + (812, 9040, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Demonic Healthstone', NULL, NULL), + (812, 9041, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Fel Healthstone', NULL, NULL), + (812, 9042, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Fel Healthstone', NULL, NULL), + (812, 9043, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Fel Healthstone', NULL, NULL), + (812, 9044, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Demonic Healthstone', NULL, NULL), + (812, 9045, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Demonic Healthstone', NULL, NULL), + (812, 9046, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Demonic Healthstone', NULL, NULL), + (812, 9047, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Fel Healthstone', NULL, NULL), + (812, 9048, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Fel Healthstone', NULL, NULL), + (812, 9049, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Healthstones used', 'Fel Healthstone', NULL, NULL), + (829, 5374, 1, 141, 1, 1, 80, 1, 1, NULL, 0, 'Largest heal received', 'Largest heal received', NULL, NULL), + (830, 5375, 1, 141, 1, 1, 80, 1, 1, NULL, 0, 'Total healing received', 'Total healing received', NULL, NULL), + (837, 5739, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Arenas won', 'Blade\'s Edge Wins', NULL, NULL), + (837, 8587, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Arenas won', 'Dalaran Sewers Wins', NULL, NULL), + (837, 8588, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Arenas won', 'Nagrand Wins', NULL, NULL), + (837, 8589, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Arenas won', 'Ruins of Lordaeron Wins', NULL, NULL), + (837, 8590, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Arenas won', 'Ring of Valor Wins', NULL, NULL), + (838, 5740, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Arenas played', 'Blade\'s Edge Matches', NULL, NULL), + (838, 8591, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Arenas played', 'Dalaran Sewers Matches', NULL, NULL), + (838, 8592, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Arenas played', 'Nagrand Matches', NULL, NULL), + (838, 8593, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Arenas played', 'Ruins of Lordaeron Matches', NULL, NULL), + (838, 8594, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Arenas played', 'Ring of Valor Matches', NULL, NULL), + (839, 5741, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Battlegrounds played', 'Alterac Valley', 37711, 1), + (839, 5892, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Battlegrounds played', 'Arathi Basin', 37711, 1), + (839, 5893, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Battlegrounds played', 'Eye of the Storm', NULL, NULL), + (839, 5894, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Battlegrounds played', 'Strand of the Ancients', NULL, NULL), + (839, 5895, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Battlegrounds played', 'Warsong Gulch', 37711, 1), + (839, 13368, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Battlegrounds played', 'Isle of Conquest', NULL, NULL), + (840, 5742, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Battlegrounds won', 'Alterac Valley', 37711, 1), + (840, 5896, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Battlegrounds won', 'Arathi Basin', 37711, 1), + (840, 5897, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Battlegrounds won', 'Eye of the Storm', 37711, 1), + (840, 5898, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Battlegrounds won', 'Strand of the Ancients', NULL, NULL), + (840, 5899, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Battlegrounds won', 'Warsong Gulch', 37711, 1), + (840, 13369, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Battlegrounds won', 'Isle of Conquest', NULL, NULL), + (841, 1262, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Menethil Harbor', NULL, NULL), + (841, 1263, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Black Channel Marsh', NULL, NULL), + (841, 1264, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Bluegill Marsh', NULL, NULL), + (841, 1265, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Whelgar\'s Excavation Site', NULL, NULL), + (841, 1266, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Sundown Marsh', NULL, NULL), + (841, 1267, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Saltspray Glen', NULL, NULL), + (841, 1268, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Ironbeard\'s Tomb', NULL, NULL), + (841, 1269, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Dun Modr', NULL, NULL), + (841, 1270, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Angerfang Encampment', NULL, NULL), + (841, 1271, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Dun Algaz', NULL, NULL), + (841, 1272, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'The Green Belt', NULL, NULL), + (841, 1273, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Mosshide Fen', NULL, NULL), + (841, 1274, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Direforge Hill', NULL, NULL), + (841, 1275, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Raptor Ridge', NULL, NULL), + (841, 1276, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Wetlands', 'Grim Batol', NULL, NULL), + (842, 1299, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Teldrassil', 'Shadowglen', NULL, NULL), + (842, 1300, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Teldrassil', 'Ban\'ethil Hollow', NULL, NULL), + (842, 1301, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Teldrassil', 'Dolanaar', NULL, NULL), + (842, 1302, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Teldrassil', 'Gnarlpine Hold', NULL, NULL), + (842, 1303, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Teldrassil', 'Lake Al\'Ameth', NULL, NULL), + (842, 1304, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Teldrassil', 'Pools of Arlithrien', NULL, NULL), + (842, 1305, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Teldrassil', 'Starbreeze Village', NULL, NULL), + (842, 1306, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Teldrassil', 'The Oracle Glade', NULL, NULL), + (842, 1307, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Teldrassil', 'Wellspring Lake', NULL, NULL), + (842, 1308, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Teldrassil', 'Darnassus', NULL, NULL), + (842, 1309, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Teldrassil', 'Rut\'theran Village', NULL, NULL), + (843, 1310, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Area 52', NULL, NULL), + (843, 1311, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Manaforge B\'naar', NULL, NULL), + (843, 1312, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Manaforge Coruu', NULL, NULL), + (843, 1313, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Manaforge Duro', NULL, NULL), + (843, 1762, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Manaforge Ara', NULL, NULL), + (843, 1763, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Manaforge Ultris', NULL, NULL), + (843, 1764, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Ruins of Farahlon', NULL, NULL), + (843, 1765, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Tempest Keep', NULL, NULL), + (843, 1766, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'The Heap', NULL, NULL), + (843, 1767, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Arklon Ruins', NULL, NULL), + (843, 1768, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Celestial Ridge', NULL, NULL), + (843, 1770, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Kirin\'Var Village', NULL, NULL), + (843, 1771, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Netherstone', NULL, NULL), + (843, 1772, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Ruins of Enkaat', NULL, NULL), + (843, 1773, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Sunfury Hold', NULL, NULL), + (843, 1775, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'The Stormspire', NULL, NULL), + (843, 1776, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Gyro-Plank Bridge', NULL, NULL), + (843, 1777, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Eco-Dome Farfield', NULL, NULL), + (843, 1778, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Ethereum Staging Grounds', NULL, NULL), + (843, 1779, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Socrethar\'s Seat', NULL, NULL), + (843, 1780, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Forge Base: Oblivion', NULL, NULL), + (843, 1781, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Netherstorm', 'Eco-Dome Midrealm', NULL, NULL), + (844, 1314, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Darkshore', 'Auberdine', NULL, NULL), + (844, 1315, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Darkshore', 'Ruins of Mathystra', NULL, NULL), + (844, 1316, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Darkshore', 'Tower of Althalaxx', NULL, NULL), + (844, 1317, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Darkshore', 'Cliffspring River', NULL, NULL), + (844, 1318, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Darkshore', 'Bashal\'Aran', NULL, NULL), + (844, 1319, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Darkshore', 'Ameth\'Aran', NULL, NULL), + (844, 1320, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Darkshore', 'Grove of the Ancients', NULL, NULL), + (844, 1321, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Darkshore', 'Remtravel\'s Excavation', NULL, NULL), + (844, 1322, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Darkshore', 'The Master\'s Glaive', NULL, NULL), + (845, 1323, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'The Zoram Strand', NULL, NULL), + (845, 1324, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Lake Falathim', NULL, NULL), + (845, 1325, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Maestra\'s Post', NULL, NULL), + (845, 1326, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Thistlefur Village', NULL, NULL), + (845, 1327, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'The Shrine of Aessina', NULL, NULL), + (845, 1328, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Fire Scar Shrine', NULL, NULL), + (845, 1329, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Astranaar', NULL, NULL), + (845, 1330, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Iris Lake', NULL, NULL), + (845, 1331, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'The Ruins of Stardust', NULL, NULL), + (845, 1332, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Mystral Lake', NULL, NULL), + (845, 1333, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'The Howling Vale', NULL, NULL), + (845, 1334, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Raynewood Retreat', NULL, NULL), + (845, 1335, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Fallen Sky Lake', NULL, NULL), + (845, 1336, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Splintertree Post', NULL, NULL), + (845, 1337, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Satyrnaar', NULL, NULL), + (845, 1338, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Bough Shadow', NULL, NULL), + (845, 1339, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Warsong Lumber Camp', NULL, NULL), + (845, 1340, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ashenvale', 'Felfire Hill', NULL, NULL), + (846, 1341, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Thousand Needles', 'The Great Lift', NULL, NULL), + (846, 1342, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Thousand Needles', 'Darkcloud Pinnacle', NULL, NULL), + (846, 1343, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Thousand Needles', 'The Screeching Canyon', NULL, NULL), + (846, 1344, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Thousand Needles', 'Freewind Post', NULL, NULL), + (846, 1345, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Thousand Needles', 'Splithoof Crag', NULL, NULL), + (846, 1346, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Thousand Needles', 'Windbreak Canyon', NULL, NULL), + (846, 1347, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Thousand Needles', 'The Shimmering Flats', NULL, NULL), + (846, 1348, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Thousand Needles', 'Camp E\'thok', NULL, NULL), + (846, 1349, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Thousand Needles', 'Highperch', NULL, NULL), + (847, 1350, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stonetalon Mountains', 'Camp Aparaje', NULL, NULL), + (847, 1351, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stonetalon Mountains', 'Grimtotem Post', NULL, NULL), + (847, 1352, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stonetalon Mountains', 'Malaka\'jin', NULL, NULL), + (847, 1353, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stonetalon Mountains', 'Webwinder Path', NULL, NULL), + (847, 1354, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stonetalon Mountains', 'Boulderslide Ravine', NULL, NULL), + (847, 1355, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stonetalon Mountains', 'Sishir Canyon', NULL, NULL), + (847, 1356, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stonetalon Mountains', 'Windshear Crag', NULL, NULL), + (847, 1357, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stonetalon Mountains', 'Sun Rock Retreat', NULL, NULL), + (847, 1358, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stonetalon Mountains', 'The Charred Vale', NULL, NULL), + (847, 1359, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stonetalon Mountains', 'Mirkfallon Lake', NULL, NULL), + (847, 1360, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Stonetalon Mountains', 'Stonetalon Peak', NULL, NULL), + (848, 1365, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Tethris Aran', NULL, NULL), + (848, 1366, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Nijel\'s Point', NULL, NULL), + (848, 1367, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Sargeron', NULL, NULL), + (848, 1368, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Thunder Axe Fortress', NULL, NULL), + (848, 1373, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Kormek\'s Hut', NULL, NULL), + (848, 1374, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Kolkar Village', NULL, NULL), + (848, 1375, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Ethel Rethor', NULL, NULL), + (848, 1376, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Valley of Spears', NULL, NULL), + (848, 1377, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Kodo Graveyard', NULL, NULL), + (848, 1378, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Shadowprey Village', NULL, NULL), + (848, 1379, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Gelkis Village', NULL, NULL), + (848, 1380, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Mannoroc Coven', NULL, NULL), + (848, 1381, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Magram Village', NULL, NULL), + (848, 1382, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Shadowbreak Ravine', NULL, NULL), + (848, 1383, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Desolace', 'Ranazjar Isle', NULL, NULL), + (849, 1369, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Dream Bough', NULL, NULL), + (849, 1370, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Oneiros', NULL, NULL), + (849, 1371, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Ruins of Ravenwind', NULL, NULL), + (849, 1372, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'The Twin Colossals', NULL, NULL), + (849, 1384, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'The Forgotten Coast', NULL, NULL), + (849, 1385, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Dire Maul', NULL, NULL), + (849, 1386, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Feral Scar Vale', NULL, NULL), + (849, 1387, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Frayfeather Highlands', NULL, NULL), + (849, 1388, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Ruins of Isildien', NULL, NULL), + (849, 1389, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'The Writhing Deep', NULL, NULL), + (849, 1390, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Camp Mojache', NULL, NULL), + (849, 1391, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Grimtotem Compound', NULL, NULL), + (849, 1392, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Gordunni Outpost', NULL, NULL), + (849, 1393, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Sardor Isle', NULL, NULL), + (849, 1394, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Isle of Dread', NULL, NULL), + (849, 1395, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Feralas', 'Lower Wilds', NULL, NULL), + (850, 1361, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dustwallow Marsh', 'Theramore Isle', NULL, NULL), + (850, 1362, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dustwallow Marsh', 'Witch Hill', NULL, NULL), + (850, 1363, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dustwallow Marsh', 'Brackenwall Village', NULL, NULL), + (850, 1364, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dustwallow Marsh', 'The Quagmire', NULL, NULL), + (850, 1396, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dustwallow Marsh', 'The Den of Flame', NULL, NULL), + (850, 1397, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dustwallow Marsh', 'Wyrmbog', NULL, NULL), + (850, 1398, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dustwallow Marsh', 'Alcaz Island', NULL, NULL), + (851, 1405, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Gadgetzan', NULL, NULL), + (851, 1406, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Sandsorrow Watch', NULL, NULL), + (851, 1407, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Noonshade Ruins', NULL, NULL), + (851, 1408, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Steamwheedle Port', NULL, NULL), + (851, 1413, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Zalashji\'s Den', NULL, NULL), + (851, 1414, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Lost Rigger Cove', NULL, NULL), + (851, 1415, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Waterspring Field', NULL, NULL), + (851, 1416, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Abyssal Sands', NULL, NULL), + (851, 1417, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Broken Pillar', NULL, NULL), + (851, 1418, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'The Noxious Lair', NULL, NULL), + (851, 1419, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Dunemaul Compound', NULL, NULL), + (851, 1420, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Southbreak Shore', NULL, NULL), + (851, 1421, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'The Gaping Chasm', NULL, NULL), + (851, 1422, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Eastmoon Ruins', NULL, NULL), + (851, 1423, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Land\'s End Beach', NULL, NULL), + (851, 1424, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Southmoon Ruins', NULL, NULL), + (851, 1425, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Valley of the Watchers', NULL, NULL), + (851, 1426, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Thistleshrub Valley', NULL, NULL), + (851, 1427, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Zul\'Farrak', NULL, NULL), + (851, 1428, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Tanaris Desert', 'Caverns of Time', NULL, NULL), + (852, 1409, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Bay of Storms', NULL, NULL), + (852, 1410, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'The Shattered Strand', NULL, NULL), + (852, 1411, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Jagged Reef', NULL, NULL), + (852, 1412, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Bitter Reaches', NULL, NULL), + (852, 1429, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Tower of Eldara', NULL, NULL), + (852, 1430, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Temple of Arkkoran', NULL, NULL), + (852, 1431, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Legash Encampment', NULL, NULL), + (852, 1432, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Thalassian Base Camp', NULL, NULL), + (852, 1433, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Ursolan', NULL, NULL), + (852, 1434, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Timbermaw Hold', NULL, NULL), + (852, 1435, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Valormok', NULL, NULL), + (852, 1436, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Haldarr Encampment', NULL, NULL), + (852, 1437, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Shadowsong Shrine', NULL, NULL), + (852, 1438, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Ruins of Eldarath', NULL, NULL), + (852, 1439, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Southridge Beach', NULL, NULL), + (852, 1440, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Ravencrest Monument', NULL, NULL), + (852, 1441, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Lake Mennar', NULL, NULL), + (852, 1442, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'The Ruined Reaches', NULL, NULL), + (852, 1443, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azshara', 'Forlorn Ridge', NULL, NULL), + (853, 1401, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Felpaw Village', NULL, NULL), + (853, 1402, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Talonbranch Glade', NULL, NULL), + (853, 1403, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Irontree Woods', NULL, NULL), + (853, 1404, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Jadefire Run', NULL, NULL), + (853, 1444, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Shatter Scar Vale', NULL, NULL), + (853, 1445, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Bloodvenom Falls', NULL, NULL), + (853, 1446, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Jaedenar', NULL, NULL), + (853, 1447, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Ruins of Constellas', NULL, NULL), + (853, 1448, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Jadefire Glen', NULL, NULL), + (853, 1449, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Emerald Sanctuary', NULL, NULL), + (853, 1450, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Deadwood Village', NULL, NULL), + (853, 1451, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Felwood', 'Morlos\'Aran', NULL, NULL), + (854, 1453, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Un\'Goro Crater', 'Fire Plume Ridge', NULL, NULL), + (854, 1454, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Un\'Goro Crater', 'Golakka Hot Springs', NULL, NULL), + (854, 1455, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Un\'Goro Crater', 'Terror Run', NULL, NULL), + (854, 1456, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Un\'Goro Crater', 'The Slithering Scar', NULL, NULL), + (854, 1457, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Un\'Goro Crater', 'The Marshlands', NULL, NULL), + (854, 1458, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Un\'Goro Crater', 'Ironstone Plateau', NULL, NULL), + (854, 1459, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Un\'Goro Crater', 'Lakkari Tar Pits', NULL, NULL), + (855, 1464, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Moonglade', 'Lake Elune\'ara', NULL, NULL), + (856, 1460, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silithus', 'The Crystal Vale', NULL, NULL), + (856, 1462, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silithus', 'Valor\'s Rest', NULL, NULL), + (856, 1463, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silithus', 'Cenarion Hold', NULL, NULL), + (856, 1468, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silithus', 'Hive\'Zora', NULL, NULL), + (856, 1469, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silithus', 'Hive\'Regal', NULL, NULL), + (856, 1470, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silithus', 'The Scarab Wall', NULL, NULL), + (856, 1472, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Silithus', 'Staghelm Point', NULL, NULL), + (857, 1473, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Frostfire Hot Springs', NULL, NULL), + (857, 1474, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Timbermaw Post', NULL, NULL), + (857, 1475, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Lake Kel\'Theril', NULL, NULL), + (857, 1476, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Starfall Village', NULL, NULL), + (857, 1477, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Mazthoril', NULL, NULL), + (857, 1478, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Everlook', NULL, NULL), + (857, 1479, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Frostwhisper Gorge', NULL, NULL), + (857, 1480, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Darkwhisper Gorge', NULL, NULL), + (857, 1481, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Owl Wing Thicket', NULL, NULL), + (857, 1482, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Ice Thistle Hills', NULL, NULL), + (857, 1483, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Winterfall Village', NULL, NULL), + (857, 1484, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'The Hidden Grove', NULL, NULL), + (857, 1485, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Winterspring', 'Frostsaber Rock', NULL, NULL), + (858, 1504, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Tranquillien', NULL, NULL), + (858, 1505, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Suncrown Village', NULL, NULL), + (858, 1506, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Goldenmist Village', NULL, NULL), + (858, 1507, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Windrunner Village', NULL, NULL), + (858, 1536, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Sanctum of the Moon', NULL, NULL), + (858, 1537, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Sanctum of the Sun', NULL, NULL), + (858, 1538, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Dawnstar Spire', NULL, NULL), + (858, 1539, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Farstrider Enclave', NULL, NULL), + (858, 1540, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Howling Ziggurat', NULL, NULL), + (858, 1541, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Deatholme', NULL, NULL), + (858, 1542, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Zeb\'Nowa', NULL, NULL), + (858, 1543, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Amani Pass', NULL, NULL), + (858, 1544, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Windrunner Spire', NULL, NULL), + (858, 1545, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Bleeding Ziggurat', NULL, NULL), + (858, 1546, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Elrendar Crossing', NULL, NULL), + (858, 1548, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Ghostlands', 'Thalassian Pass', NULL, NULL), + (859, 1508, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Sunstrider Isle', NULL, NULL), + (859, 1509, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Ruins of Silvermoon', NULL, NULL), + (859, 1510, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'West Sanctum', NULL, NULL), + (859, 1511, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Sunsail Anchorage', NULL, NULL), + (859, 1512, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'North Sanctum', NULL, NULL), + (859, 1513, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'East Sanctum', NULL, NULL), + (859, 1514, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Farstrider Retreat', NULL, NULL), + (859, 1515, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Stillwhisper Pond', NULL, NULL), + (859, 1516, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Duskwither Grounds', NULL, NULL), + (859, 1517, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Fairbreeze Village', NULL, NULL), + (859, 1518, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'The Living Wood', NULL, NULL), + (859, 1519, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Tor\'Watha', NULL, NULL), + (859, 1520, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'The Scorched Grove', NULL, NULL), + (859, 1521, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Silvermoon City', NULL, NULL), + (859, 1522, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Azurebreeze Coast', NULL, NULL), + (859, 1523, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Elrendar Falls', NULL, NULL), + (859, 1524, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Goldenbough Pass', NULL, NULL), + (859, 1525, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Lake Elrendar', NULL, NULL), + (859, 1526, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Runestone Falithas', NULL, NULL), + (859, 1527, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Runestone Shan\'dor', NULL, NULL), + (859, 1528, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Saltheril\'s Haven', NULL, NULL), + (859, 1529, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Golden Strand', NULL, NULL), + (859, 1530, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Thuron\'s Livery', NULL, NULL), + (859, 1531, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Tranquil Shore', NULL, NULL), + (859, 1532, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Eversong Woods', 'Zeb\'Watha', NULL, NULL), + (860, 1552, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Ammen Vale', NULL, NULL), + (860, 1553, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Ammen Ford', NULL, NULL), + (860, 1554, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Azure Watch', NULL, NULL), + (860, 1555, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Bristlelimb Village', NULL, NULL), + (860, 1556, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Emberglade', NULL, NULL), + (860, 1557, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Fairbridge Strand', NULL, NULL), + (860, 1558, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Geezle\'s Camp', NULL, NULL), + (860, 1559, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Moongraze Woods', NULL, NULL), + (860, 1560, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Odesyus\' Landing', NULL, NULL), + (860, 1561, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Pod Cluster', NULL, NULL), + (860, 1562, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Pod Wreckage', NULL, NULL), + (860, 1563, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Silting Shore', NULL, NULL), + (860, 1564, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Silvermyst Isle', NULL, NULL), + (860, 1565, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Stillpine Hold', NULL, NULL), + (860, 1566, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'The Exodar', NULL, NULL), + (860, 1567, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Valaar\'s Berth', NULL, NULL), + (860, 1568, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Azuremyst Isle', 'Wrathscale Point', NULL, NULL), + (861, 1573, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Amberweb Pass', NULL, NULL), + (861, 1574, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Axxarien', NULL, NULL), + (861, 1575, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Blacksilt Shore', NULL, NULL), + (861, 1576, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Bladewood', NULL, NULL), + (861, 1577, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Bloodcurse Isle', NULL, NULL), + (861, 1578, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Blood Watch', NULL, NULL), + (861, 1579, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Bristlelimb Enclave', NULL, NULL), + (861, 1580, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Kessel\'s Crossing', NULL, NULL), + (861, 1581, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Middenvale', NULL, NULL), + (861, 1582, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Mystwood', NULL, NULL), + (861, 1583, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Nazzivian', NULL, NULL), + (861, 1584, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Ragefeather Ridge', NULL, NULL), + (861, 1585, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Ruins of Loreth\'Aran', NULL, NULL), + (861, 1586, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Talon Stand', NULL, NULL), + (861, 1587, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Tel\'athion\'s Camp', NULL, NULL), + (861, 1588, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'The Bloodcursed Reef', NULL, NULL), + (861, 1589, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'The Bloodwash', NULL, NULL), + (861, 1590, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'The Crimson Reach', NULL, NULL), + (861, 1591, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'The Foul Pool', NULL, NULL), + (861, 1592, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'The Hidden Reef', NULL, NULL), + (861, 1593, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'The Lost Fold', NULL, NULL), + (861, 1594, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'The Vector Coil', NULL, NULL), + (861, 1595, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'The Warp Piston', NULL, NULL), + (861, 1596, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Veridian Point', NULL, NULL), + (861, 1597, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Vindicator\'s Rest', NULL, NULL), + (861, 1598, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Wrathscale Lair', NULL, NULL), + (861, 1599, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'Wyrmscar Island', NULL, NULL), + (861, 2104, 10, 14778, 97, 1, 80, 1, 1, NULL, 10, 'Explore Bloodmyst Isle', 'The Cryo-Core', NULL, NULL), + (862, 1606, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Expedition Armory', NULL, NULL), + (862, 1607, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Falcon Watch', NULL, NULL), + (862, 1608, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Hellfire Citadel', NULL, NULL), + (862, 1609, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Honor Hold', NULL, NULL), + (862, 1626, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Mag\'har Post', NULL, NULL), + (862, 1627, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Pools of Aggonar', NULL, NULL), + (862, 1628, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Ruins of Sha\'naar', NULL, NULL), + (862, 1629, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Temple of Telhamat', NULL, NULL), + (862, 1630, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'The Legion Front', NULL, NULL), + (862, 1631, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'The Stair of Destiny', NULL, NULL), + (862, 1632, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Thrallmar', NULL, NULL), + (862, 1633, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Throne of Kil\'jaeden', NULL, NULL), + (862, 1634, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Zeth\'Gor', NULL, NULL), + (862, 1635, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Den of Haal\'esh', NULL, NULL), + (862, 1636, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Fallen Sky Ridge', NULL, NULL), + (862, 1638, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Void Ridge', NULL, NULL), + (862, 1639, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'The Warp Fields', NULL, NULL), + (862, 1641, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Hellfire Peninsula', 'Forge Camp: Mageddon', NULL, NULL), + (863, 1610, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Ango\'rosh Grounds', NULL, NULL), + (863, 1611, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Cenarion Refuge', NULL, NULL), + (863, 1612, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Feralfen Village', NULL, NULL), + (863, 1613, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Hewn Bog', NULL, NULL), + (863, 1647, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Marshlight Lake', NULL, NULL), + (863, 1648, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Quagg Ridge', NULL, NULL), + (863, 1649, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Telredor', NULL, NULL), + (863, 1650, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'The Dead Mire', NULL, NULL), + (863, 1651, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'The Lagoon', NULL, NULL), + (863, 1652, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Twin Spire Ruins', NULL, NULL), + (863, 1653, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Umbrafen Village', NULL, NULL), + (863, 1654, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Sporeggar', NULL, NULL), + (863, 1655, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Ango\'rosh Stronghold', NULL, NULL), + (863, 1656, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Bloodscale Grounds', NULL, NULL), + (863, 1657, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Orebor Harborage', NULL, NULL), + (863, 1658, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'The Spawning Glen', NULL, NULL), + (863, 1659, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Zabra\'jin', NULL, NULL), + (863, 1667, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zangarmarsh', 'Darkcrest Shore', NULL, NULL), + (864, 1614, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'Coilskar Point', NULL, NULL), + (864, 1615, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'Eclipse Point', NULL, NULL), + (864, 1616, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'Legion Hold', NULL, NULL), + (864, 1617, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'Netherwing Ledge', NULL, NULL), + (864, 1668, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'Shadowmoon Village', NULL, NULL), + (864, 1669, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'The Black Temple', NULL, NULL), + (864, 1670, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'The Deathforge', NULL, NULL), + (864, 1671, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'The Hand of Gul\'dan', NULL, NULL), + (864, 1672, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'Warden\'s Cage', NULL, NULL), + (864, 1673, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'Wildhammer Stronghold', NULL, NULL), + (864, 1674, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'Altar of Sha\'tar', NULL, NULL), + (864, 1675, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'Illidari Point', NULL, NULL), + (864, 1679, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Shadowmoon Valley', 'Netherwing Fields', NULL, NULL), + (865, 1618, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Bash\'ir Landing', NULL, NULL), + (865, 1619, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Bladed Gulch', NULL, NULL), + (865, 1620, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Bladespire Hold', NULL, NULL), + (865, 1621, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Bloodmaul Camp', NULL, NULL), + (865, 1688, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Bloodmaul Outpost', NULL, NULL), + (865, 1689, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Broken Wilds', NULL, NULL), + (865, 1690, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Circle of Blood', NULL, NULL), + (865, 1691, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Death\'s Door', NULL, NULL), + (865, 1692, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Forge Camp: Anger', NULL, NULL), + (865, 1693, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Forge Camp: Terror', NULL, NULL), + (865, 1694, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Forge Camp: Wrath', NULL, NULL), + (865, 1695, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Grishnath', NULL, NULL), + (865, 1696, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Gruul\'s Lair', NULL, NULL), + (865, 1697, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Jagged Ridge', NULL, NULL), + (865, 1698, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Mok\'Nathal Village', NULL, NULL), + (865, 1699, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Raven\'s Wood', NULL, NULL), + (865, 1700, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Razor Ridge', NULL, NULL), + (865, 1701, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Ruuan Weald', NULL, NULL), + (865, 1702, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Skald', NULL, NULL), + (865, 1703, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Sylvanaar', NULL, NULL), + (865, 1704, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Crystal Spine', NULL, NULL), + (865, 1705, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Thunderlord Stronghold', NULL, NULL), + (865, 1706, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Veil Lashh', NULL, NULL), + (865, 1707, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Vekhaar Stand', NULL, NULL), + (865, 1708, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Vortex Pinnacle', NULL, NULL), + (865, 2238, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Blade\'s Edge Mountains', 'Veil Ruuan', NULL, NULL), + (866, 1622, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Forge Camp: Fear', NULL, NULL), + (866, 1623, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Garadar', NULL, NULL), + (866, 1624, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Halaa', NULL, NULL), + (866, 1625, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Kil\'sorrow Fortress', NULL, NULL), + (866, 1713, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Laughing Skull Ruins', NULL, NULL), + (866, 1714, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Spirit Fields', NULL, NULL), + (866, 1715, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Sunspring Post', NULL, NULL), + (866, 1716, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Telaar', NULL, NULL), + (866, 1717, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'The Ring of Trials', NULL, NULL), + (866, 1718, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Throne of the Elements', NULL, NULL), + (866, 1719, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Warmaul Hill', NULL, NULL), + (866, 1720, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Burning Blade Ruins', NULL, NULL), + (866, 1721, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Clan Watch', NULL, NULL), + (866, 1722, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Forge Camp: Hate', NULL, NULL), + (866, 1723, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Southwind Cleft', NULL, NULL), + (866, 1724, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'The Twilight Ridge', NULL, NULL), + (866, 1725, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Windyreed Pass', NULL, NULL), + (866, 1726, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Windyreed Village', NULL, NULL), + (866, 1727, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Nagrand', 'Zangar Ridge', NULL, NULL), + (867, 1603, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Bleeding Hollow Ruins', NULL, NULL), + (867, 1604, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Cenarion Thicket', NULL, NULL), + (867, 1605, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Firewing Point', NULL, NULL), + (867, 1729, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Grangol\'var Village', NULL, NULL), + (867, 1731, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Stonebreaker Hold', NULL, NULL), + (867, 1732, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Tuurem', NULL, NULL), + (867, 1733, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Shattrath City', NULL, NULL), + (867, 1734, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Raastok Glade', NULL, NULL), + (867, 1735, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'The Barrier Hills', NULL, NULL), + (867, 1736, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Razorthorn Shelf', NULL, NULL), + (867, 1737, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Bonechewer Ruins', NULL, NULL), + (867, 1738, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Auchenai Grounds', NULL, NULL), + (867, 1739, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Carrion Hill', NULL, NULL), + (867, 1740, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Refugee Caravan', NULL, NULL), + (867, 1741, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Ring of Observance', NULL, NULL), + (867, 1742, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Shadow Tomb', NULL, NULL), + (867, 1743, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Derelict Caravan', NULL, NULL), + (867, 1745, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Veil Rhaze', NULL, NULL), + (867, 1746, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Writhing Mound', NULL, NULL), + (867, 1747, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Skettis', NULL, NULL), + (867, 4940, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Explore Terokkar Forest', 'Allerian Stronghold', NULL, NULL), + (868, 1789, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Isle of Quel\'Danas', 'Sun\'s Reach Harbor', NULL, NULL), + (868, 1791, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Isle of Quel\'Danas', 'Dawnstar Village', NULL, NULL), + (868, 1792, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Isle of Quel\'Danas', 'Sunwell Plateau', NULL, NULL), + (868, 1793, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Isle of Quel\'Danas', 'Magisters\' Terrace', NULL, NULL), + (868, 1794, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Isle of Quel\'Danas', 'Greengill Coast', NULL, NULL), + (868, 1795, 10, 14777, 97, 1, 80, 1, 1, NULL, 10, 'Explore Isle of Quel\'Danas', 'The Dead Scar', NULL, NULL), + (869, 6791, 10, 95, -1, 1, 80, 1, 1, NULL, 10, '50000 Honorable Kills', 'Get 50000 honorable kills', NULL, NULL), + (870, 6790, 10, 95, -1, 1, 80, 1, 1, NULL, 10, '100000 Honorable Kills', 'Get 100000 honorable kills', NULL, NULL), + (871, 1800, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Avast Ye, Admiral!', 'Complete the Avast Ye, Admiral quest', NULL, NULL), + (872, 1801, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Frenzied Defender', 'Return 5 flags in a single battle', NULL, NULL), + (873, 1811, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Frostwolf Perfection', 'Galvagar and Drek\'Thar survive', NULL, NULL), + (873, 1812, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Frostwolf Perfection', 'Tower A1 owned by the Horde', NULL, NULL), + (873, 1813, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Frostwolf Perfection', 'Tower A1 owned by the Horde', NULL, NULL), + (873, 1814, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Frostwolf Perfection', 'Tower A3 owned by the Horde', NULL, NULL), + (873, 1815, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Frostwolf Perfection', 'Tower A4 owned by the Horde', NULL, NULL), + (873, 1816, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Frostwolf Perfection', 'Tower H1 owned by the Horde', NULL, NULL), + (873, 1817, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Frostwolf Perfection', 'Tower H2 owned by the Horde', NULL, NULL), + (873, 1818, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Frostwolf Perfection', 'Tower H3 owned by the Horde', NULL, NULL), + (873, 1819, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Frostwolf Perfection', 'Tower H4 owned by the Horde', NULL, NULL), + (873, 1826, 20, 14801, 95, 1, 80, 1, 1, NULL, 20, 'Frostwolf Perfection', 'win av', NULL, NULL), + (875, 1829, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Vengefully Dedicated', 'Win 200 ranked arena matches', NULL, NULL), + (876, 1830, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Brutally Dedicated', 'Win 300 ranked arena matches', NULL, NULL), + (877, 1832, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Cake Is Not A Lie', 'Make Delicious Chocolate Cake', NULL, NULL), + (878, 1835, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'One That Didn\'t Get Away', 'Steelscale Crushfish', NULL, NULL), + (878, 1837, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'One That Didn\'t Get Away', '103 Pound Mightfish', NULL, NULL), + (878, 1838, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'One That Didn\'t Get Away', '22 Pound Lobster', NULL, NULL), + (878, 1839, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'One That Didn\'t Get Away', '15 Pound Mud Snapper', NULL, NULL), + (878, 1840, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'One That Didn\'t Get Away', '52 Pound Redgill', NULL, NULL), + (878, 1841, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'One That Didn\'t Get Away', '29 Pound Salmon', NULL, NULL), + (878, 1842, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'One That Didn\'t Get Away', '68 Pound Grouper', NULL, NULL), + (878, 1843, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'One That Didn\'t Get Away', '32 Pound Catfish', NULL, NULL), + (878, 1844, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'One That Didn\'t Get Away', 'Rockhide Strongfish', NULL, NULL), + (878, 1846, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'One That Didn\'t Get Away', 'Dark Herring', NULL, NULL), + (879, 1847, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Ivory Raptor', NULL, NULL), + (879, 1848, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Mottled Red Raptor', NULL, NULL), + (879, 1849, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Palomino', NULL, NULL), + (879, 1850, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'White Stallion', NULL, NULL), + (879, 1851, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Red Wolf', NULL, NULL), + (879, 1852, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Arctic Wolf', NULL, NULL), + (879, 1853, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Frostsaber', NULL, NULL), + (879, 1854, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Nightsaber', NULL, NULL), + (879, 1855, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Green Kodo', NULL, NULL), + (879, 1856, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Teal Kodo', NULL, NULL), + (879, 1857, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Black Ram', NULL, NULL), + (879, 1858, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Frost Ram', NULL, NULL), + (879, 1859, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Icy Blue Mechanostrider Mod A', NULL, NULL), + (879, 1860, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'White Mechanostrider Mod B', NULL, NULL), + (879, 6192, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Ivory Raptor', NULL, NULL), + (879, 6193, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Mottled Red Raptor', NULL, NULL), + (879, 6194, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Palomino', NULL, NULL), + (879, 6195, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'White Stallion', NULL, NULL), + (879, 6196, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Red Wolf', NULL, NULL), + (879, 6197, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Arctic Wolf', NULL, NULL), + (879, 6198, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Ancient Frostsaber', NULL, NULL), + (879, 6199, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Nightsaber', NULL, NULL), + (879, 6200, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Green Kodo', NULL, NULL), + (879, 6201, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Teal Kodo', NULL, NULL), + (879, 6202, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Black Ram', NULL, NULL), + (879, 6203, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Frost Ram', NULL, NULL), + (879, 6204, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'Icy Blue Mechanostrider Mod A', NULL, NULL), + (879, 6205, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Old School Ride', 'White Mechanostrider Mod B', NULL, NULL), + (880, 6161, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Swift Zulian Tiger', 'Swift Zulian Tiger', NULL, NULL), + (881, 6162, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Swift Razzashi Raptor', 'Swift Razzashi Raptor', NULL, NULL), + (882, 1863, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Fiery Warhorse\'s Reins', 'Fiery Warhorse\'s Reins', NULL, NULL), + (882, 6163, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Fiery Warhorse\'s Reins', 'Fiery Warhorse', NULL, NULL), + (883, 6164, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Reins of the Raven Lord', 'Raven Lord', NULL, NULL), + (884, 6165, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Swift White Hawkstrider', 'Swift White Hawkstrider', NULL, NULL), + (885, 6166, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Ashes of Al\'ar', 'Ashes of Al\'ar', NULL, NULL), + (886, 1867, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Swift Nether Drake', 'Swift Nether Drake', NULL, NULL), + (886, 6167, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Swift Nether Drake', 'Swift Nether Drake', NULL, NULL), + (887, 1868, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Merciless Nether Drake', 'Merciless Nether Drake', NULL, NULL), + (887, 6168, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Merciless Nether Drake', 'Merciless Nether Drake', NULL, NULL), + (888, 1869, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Vengeful Nether Drake', 'Vengeful Nether Drake', NULL, NULL), + (888, 6169, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Vengeful Nether Drake', 'Vengeful Nether Drake', NULL, NULL), + (889, 1870, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Fast and Furious', 'Journeyman Riding', NULL, NULL), + (890, 1871, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Into The Wild Blue Yonder', 'Expert Riding', NULL, NULL), + (891, 1872, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Giddy Up!', 'Apprentice Riding', NULL, NULL), + (892, 1873, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Right Stuff', 'Artisan Riding', NULL, NULL), + (893, 1874, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'Cenarion War Hippogryph', 'Cenarion War Hippogryph', NULL, NULL), + (893, 6206, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'Cenarion War Hippogryph', 'Cenarion War Hippogryph', NULL, NULL), + (894, 1875, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'Flying High Over Skettis', 'Exalted with Sha\'tari Skyguard', NULL, NULL), + (896, 1877, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'A Quest a Day Keeps the Ogres at Bay', 'Exalted with Ogri\'la', NULL, NULL), + (897, 1878, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'You\'re So Offensive', 'Exalted with Shattered Sun Offensive', NULL, NULL), + (898, 1879, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'On Wings of Nether', 'Exalted with Netherwing', NULL, NULL), + (899, 1880, 15, 14865, 201, 1, 80, 1, 1, NULL, 15, 'Oh My, Kurenai', 'Exalted with the Kurenai', NULL, NULL), + (900, 1881, 15, 14865, 201, 1, 80, 1, 1, NULL, 15, 'The Czar of Sporeggar', 'Exalted with the Sporeggar', NULL, NULL), + (901, 1882, 15, 14865, 201, 1, 80, 1, 1, NULL, 15, 'Mag\'har of Draenor', 'Exalted with The Mag\'har', NULL, NULL), + (902, 1883, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'Chief Exalted Officer', 'Exalted with the Consortium', NULL, NULL), + (903, 1884, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'Shattrath Divided', 'Exalted with The Scryers', NULL, NULL), + (903, 3610, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'Shattrath Divided', 'Exalted with The Aldor', NULL, NULL), + (905, 1886, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Old Man Barlowned', 'Crocolisks in the City', NULL, NULL), + (905, 1887, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Old Man Barlowned', 'Bait Bandits', NULL, NULL), + (905, 1888, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Old Man Barlowned', 'Felblood Fillet', NULL, NULL), + (905, 1889, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Old Man Barlowned', 'The One That Got Away', NULL, NULL), + (905, 1890, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Old Man Barlowned', 'Shrimpin\' Ain\'t Easy', NULL, NULL), + (906, 1891, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Kickin\' It Up a Notch', 'Revenge is Tasty', NULL, NULL), + (906, 1892, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Kickin\' It Up a Notch', 'Super Hot Stew', NULL, NULL), + (906, 1893, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Kickin\' It Up a Notch', 'Manalicious', NULL, NULL), + (906, 1894, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Kickin\' It Up a Notch', 'Soup for the Soul', NULL, NULL), + (907, 1896, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'The Justicar', 'Hero of the Stormpike Guard', NULL, NULL), + (907, 1899, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'The Justicar', 'Knight of Arathor', NULL, NULL), + (907, 1901, 20, 95, -1, 1, 80, 1, 1, NULL, 20, 'The Justicar', 'Silverwing Sentinel', NULL, NULL), + (908, 1902, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call to Arms!', 'Call to Arms: Arathi Basin', NULL, NULL), + (908, 1903, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call to Arms!', 'Call to Arms: Alterac Valley', NULL, NULL), + (908, 1904, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call to Arms!', 'Call to Arms: Eye of the Storm', NULL, NULL), + (908, 1905, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call to Arms!', 'Call to Arms: Warsong Gulch', NULL, NULL), + (909, 1906, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call to Arms!', 'Call to Arms: Arathi Basin', NULL, NULL), + (909, 1907, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call to Arms!', 'Call to Arms: Alterac Valley', NULL, NULL), + (909, 1908, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call to Arms!', 'Call to Arms: Eye of the Storm', NULL, NULL), + (909, 1909, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Call to Arms!', 'Call to Arms: Warsong Gulch', NULL, NULL), + (910, 1910, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Wildmane in Zul\'Farrak', NULL, NULL), + (910, 1911, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Starsong in the Sunken Temple', NULL, NULL), + (910, 1912, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Splitrock in Maraudon', NULL, NULL), + (910, 1913, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Stonefort in Blackrock Spire', NULL, NULL), + (910, 1914, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Morndeep in Blackrock Depths', NULL, NULL), + (910, 1915, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Farwhisper in Stratholme', NULL, NULL), + (910, 5259, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Jarten in Utgarde Keep', NULL, NULL), + (910, 5260, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Igasho in The Nexus', NULL, NULL), + (910, 5261, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Nurgen in Azjol-Nerub', NULL, NULL), + (910, 5262, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Kilias in Drak\'Tharon Keep', NULL, NULL), + (910, 5263, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Ohanzee in Gundrak', NULL, NULL), + (910, 5264, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Yurauk in the Halls of Stone', NULL, NULL), + (910, 5265, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Dungeons', 'Elder Chogan\'gada in Utgarde Pinnacle', NULL, NULL), + (911, 1916, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Runetotem in Razor Hill', NULL, NULL), + (911, 1917, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Skygleam in Azshara', NULL, NULL), + (911, 1918, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Moonwarden in The Crossroads', NULL, NULL), + (911, 1919, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder High Mountain in Camp Taurajo', NULL, NULL), + (911, 1920, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Windtotem in Ratchet', NULL, NULL), + (911, 1951, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Bladeleaf in Dolanaar', NULL, NULL), + (911, 1952, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Starweave in Auberdine', NULL, NULL), + (911, 1953, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Bloodhoof in Bloodhoof Village', NULL, NULL), + (911, 1954, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Riversong in Astranaar', NULL, NULL), + (911, 1955, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Grimtotem in Feralas', NULL, NULL), + (911, 1956, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Mistwalker in Dire Maul', NULL, NULL), + (911, 1957, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Nightwind in Felwood', NULL, NULL), + (911, 1958, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Skyseer in Freewind Post', NULL, NULL), + (911, 1959, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Morningdew in Mirage Raceway', NULL, NULL), + (911, 1960, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Ragetotem in Tanaris', NULL, NULL), + (911, 1961, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Dreamseer in Gadgetzan', NULL, NULL), + (911, 1962, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Thunderhorn in Un\'Goro', NULL, NULL), + (911, 1963, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Brightspear in Winterspring', NULL, NULL), + (911, 1964, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Stonespire in Everlook', NULL, NULL), + (911, 1965, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Primestone in Silithus', NULL, NULL), + (911, 1966, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Kalimdor', 'Elder Bladesing in Cenarion Hold', NULL, NULL), + (912, 1922, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Goldwell in Kharanos', NULL, NULL), + (912, 1923, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Bellowrage in Blasted Lands', NULL, NULL), + (912, 1924, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Stormbrow in Goldshire', NULL, NULL), + (912, 1925, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Meadowrun in Western Plaguelands', NULL, NULL), + (912, 1926, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Starglade in Zul\'Gurub', NULL, NULL), + (912, 1927, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Winterhoof in Booty Bay', NULL, NULL), + (912, 1937, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Silvervein in Thelsamar', NULL, NULL), + (912, 1938, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Skychaser in Sentinel Hill', NULL, NULL), + (912, 1939, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Rumblerock in Burning Steppes', NULL, NULL), + (912, 1940, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Dawnstrider in Flame Crest', NULL, NULL), + (912, 1941, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Highpeak in The Hinterlands', NULL, NULL), + (912, 1942, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Ironband in Searing Gorge', NULL, NULL), + (912, 1944, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Graveborn in Brill', NULL, NULL), + (912, 1945, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Obsidian in The Sepulcher', NULL, NULL), + (912, 1946, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Windrun in Eastern Plaguelands', NULL, NULL), + (912, 1947, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Snowcrown in Light\'s Hope Chapel', NULL, NULL), + (912, 1950, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Eastern Kingdoms', 'Elder Moonstrike in Scholomance', NULL, NULL), + (913, 1934, 30, 155, -1, 1, 80, 1, 1, NULL, 30, 'To Honor One\'s Elders', 'Elders of Eastern Kingdoms', NULL, NULL), + (913, 1935, 30, 155, -1, 1, 80, 1, 1, NULL, 30, 'To Honor One\'s Elders', 'Elders of Kalimdor', NULL, NULL), + (913, 1936, 30, 155, -1, 1, 80, 1, 1, NULL, 30, 'To Honor One\'s Elders', 'Elders of the Dungeons', NULL, NULL), + (913, 2000, 30, 155, -1, 1, 80, 1, 1, NULL, 30, 'To Honor One\'s Elders', 'Elders of the Horde', NULL, NULL), + (913, 2001, 30, 155, -1, 1, 80, 1, 1, NULL, 30, 'To Honor One\'s Elders', 'Elders of the Alliance', NULL, NULL), + (913, 5162, 30, 155, -1, 1, 80, 1, 1, NULL, 30, 'To Honor One\'s Elders', 'Elders of Northrend', NULL, NULL), + (913, 6286, 30, 155, -1, 1, 80, 1, 1, NULL, 30, 'To Honor One\'s Elders', '50 Coins of Ancestry', NULL, NULL), + (913, 6287, 30, 155, -1, 1, 80, 1, 1, NULL, 30, 'To Honor One\'s Elders', 'Lunar Festival Finery', NULL, NULL), + (913, 6288, 30, 155, -1, 1, 80, 1, 1, NULL, 30, 'To Honor One\'s Elders', 'The Rocket\'s Red Glare', NULL, NULL), + (913, 6289, 30, 155, -1, 1, 80, 1, 1, NULL, 30, 'To Honor One\'s Elders', 'Frenzied Firecracker', NULL, NULL), + (913, 6290, 30, 155, -1, 1, 80, 1, 1, NULL, 30, 'To Honor One\'s Elders', 'Elune\'s Blessing', NULL, NULL), + (914, 1991, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Horde', 'Elder Darkhorn in Orgrimmar', NULL, NULL), + (914, 1992, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Horde', 'Elder Wheathoof in Thunder Bluff', NULL, NULL), + (914, 1993, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Horde', 'Elder Darkcore in Undercity', NULL, NULL), + (915, 1997, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Alliance', 'Elder Bronzebeard in Ironforge', NULL, NULL), + (915, 1998, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Alliance', 'Elder Hammershout in Stormwind', NULL, NULL), + (915, 1999, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of the Alliance', 'Elder Bladeswift in Darnassus', NULL, NULL), + (916, 6846, 1, 125, 122, -1, 80, 1, 1, NULL, 0, 'Total deaths in 25-player raids', '25 man raids', NULL, NULL), + (917, 6845, 1, 125, 122, -1, 80, 1, 1, NULL, 0, 'Total deaths in 10-player raids', '10 man raids', NULL, NULL), + (918, 6847, 1, 125, 122, -1, 80, 1, 1, NULL, 0, 'Total deaths in 5-player dungeons', '5 man instances', NULL, NULL), + (919, 4219, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Gold earned from auctions', 'Gold Earned from Auctions', NULL, NULL), + (921, 3361, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Gold from vendors', 'Gold from vendors', NULL, NULL), + (922, 4308, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Auchenai Mana Potion', NULL, NULL), + (922, 4311, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Mana Potion Injector', NULL, NULL), + (922, 4312, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Super Mana Potion', NULL, NULL), + (922, 4313, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Bottled Nethergon Energy', NULL, NULL), + (922, 4314, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Crystal Mana Potion', NULL, NULL), + (922, 4315, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Dreamless Sleep Potion', NULL, NULL), + (922, 4316, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Greater Dreamless Sleep Potion', NULL, NULL), + (922, 4317, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Major Dreamless Sleep Potion', NULL, NULL), + (922, 4321, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Fel Mana Potion', NULL, NULL), + (922, 4322, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Greater Mana Potion', NULL, NULL), + (922, 4323, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Lesser Mana Potion', NULL, NULL), + (922, 4324, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Mad Alchemist\'s Potion', NULL, NULL), + (922, 4326, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Major Mana Draught', NULL, NULL), + (922, 4327, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Superior Mana Draught', NULL, NULL), + (922, 4328, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Major Mana Potion', NULL, NULL), + (922, 4329, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Major Rejuvenation Potion', NULL, NULL), + (922, 4330, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Mana Potion', NULL, NULL), + (922, 4331, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Minor Mana Potion', NULL, NULL), + (922, 4332, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Rulkster\'s Brain Juice', NULL, NULL), + (922, 4333, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Superior Mana Potion', NULL, NULL), + (922, 4334, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Super Rejuvenation Potion', NULL, NULL), + (922, 4335, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Unstable Mana Potion', NULL, NULL), + (922, 4336, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Wildvine Potion', NULL, NULL), + (922, 5184, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Runic Mana Potion', NULL, NULL), + (922, 5185, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Major Combat Mana Potion', NULL, NULL), + (922, 5186, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Major Combat Mana Potion', NULL, NULL), + (922, 5187, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Major Combat Mana Potion', NULL, NULL), + (922, 5188, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Major Combat Mana Potion', NULL, NULL), + (922, 5189, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Icy Mana Potion', NULL, NULL), + (922, 6379, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Runic Mana Injector', NULL, NULL), + (922, 7420, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Minor Rejuvenation Potion', NULL, NULL), + (922, 7421, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Potion of Nightmares', NULL, NULL), + (922, 7422, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Powerful Rejuvenation Potion', NULL, NULL), + (922, 7905, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Combat Mana Potion', NULL, NULL), + (922, 7906, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Argent Mana Potion', NULL, NULL), + (922, 7907, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potions consumed', 'Endless Mana Potion', NULL, NULL), + (923, 4337, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Sheen of Zanza', NULL, NULL), + (923, 4338, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Spirit of Zanza', NULL, NULL), + (923, 4339, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Swiftness of Zanza', NULL, NULL), + (923, 4340, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Adept\'s Elixir', NULL, NULL), + (923, 4341, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Arcane Elixir', NULL, NULL), + (923, 4342, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Bloodberry Elixir', NULL, NULL), + (923, 4343, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Catseye Elixir', NULL, NULL), + (923, 4344, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Cerebral Cortex Compound', NULL, NULL), + (923, 4345, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Earthen Elixir', NULL, NULL), + (923, 4346, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Agility', NULL, NULL), + (923, 4347, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Brute Force', NULL, NULL), + (923, 4348, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Camouflage', NULL, NULL), + (923, 4349, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Defense', NULL, NULL), + (923, 4350, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Demonslaying', NULL, NULL), + (923, 4351, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Detect Demon', NULL, NULL), + (923, 4352, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Detect Lesser Invisibility', NULL, NULL), + (923, 4353, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Detect Undead', NULL, NULL), + (923, 4354, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Draenic Wisdom', NULL, NULL), + (923, 4355, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Dream Vision', NULL, NULL), + (923, 4356, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Empowerment', NULL, NULL), + (923, 4357, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Firepower', NULL, NULL), + (923, 4358, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Fortitude', NULL, NULL), + (923, 4359, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Frost Power', NULL, NULL), + (923, 4360, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Giant Growth', NULL, NULL), + (923, 4361, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Giants', NULL, NULL), + (923, 4362, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Greater Agility', NULL, NULL), + (923, 4363, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Greater Defense', NULL, NULL), + (923, 4364, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Greater Firepower', NULL, NULL), + (923, 4365, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Greater Intellect', NULL, NULL), + (923, 4366, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Greater Water Breathing', NULL, NULL), + (923, 4367, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Healing Power', NULL, NULL), + (923, 4368, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Ironskin', NULL, NULL), + (923, 4369, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Lesser Agility', NULL, NULL), + (923, 4370, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Lion\'s Strength', NULL, NULL), + (923, 4371, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Major Agility', NULL, NULL), + (923, 4372, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Major Defense', NULL, NULL), + (923, 4373, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Major Firepower', NULL, NULL), + (923, 4374, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Major Fortitude', NULL, NULL), + (923, 4375, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Major Frost Power', NULL, NULL), + (923, 4376, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Major Mageblood', NULL, NULL), + (923, 4377, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Major Shadow Power', NULL, NULL), + (923, 4378, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Major Strength', NULL, NULL), + (923, 4379, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Mastery', NULL, NULL), + (923, 4380, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Mighty Agility', NULL, NULL), + (923, 4381, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Mighty Defense', NULL, NULL), + (923, 4382, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Mighty Fortitude', NULL, NULL), + (923, 4383, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Mighty Mageblood', NULL, NULL), + (923, 4384, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Mighty Strength', NULL, NULL), + (923, 4385, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Minor Agility', NULL, NULL), + (923, 4386, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Minor Defense', NULL, NULL), + (923, 4387, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Minor Fortitude', NULL, NULL), + (923, 4388, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Ogre\'s Strength', NULL, NULL), + (923, 4389, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Shadow Power', NULL, NULL), + (923, 4390, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Spirit', NULL, NULL), + (923, 4391, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Superior Defense', NULL, NULL), + (923, 4392, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Toughness', NULL, NULL), + (923, 4393, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Water Breathing', NULL, NULL), + (923, 4394, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Water Walking', NULL, NULL), + (923, 4395, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Wisdom', NULL, NULL), + (923, 4396, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of the Mongoose', NULL, NULL), + (923, 4397, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of the Sages', NULL, NULL), + (923, 4398, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of the Searching Eye', NULL, NULL), + (923, 4399, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Fel Strength Elixir', NULL, NULL), + (923, 4400, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Gift of Arthas', NULL, NULL), + (923, 4401, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Gizzard Gum', NULL, NULL), + (923, 4402, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Greater Arcane Elixir', NULL, NULL), + (923, 4403, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Ground Scorpok Assay', NULL, NULL), + (923, 4404, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Lung Juice Cocktail', NULL, NULL), + (923, 4405, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'R.O.I.D.S.', NULL, NULL), + (923, 4406, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Noggenfogger Elixir', NULL, NULL), + (923, 4407, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Onslaught Elixir', NULL, NULL), + (923, 8031, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Accuracy', NULL, NULL), + (923, 8032, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Deadly Strikes', NULL, NULL), + (923, 8062, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Mighty Defense', NULL, NULL), + (923, 8063, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Expertise', NULL, NULL), + (923, 8064, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Armor Piercing', NULL, NULL), + (923, 8065, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Lightning Speed', NULL, NULL), + (923, 8066, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Mighty Thoughts', NULL, NULL), + (923, 8067, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Crystal Force', NULL, NULL), + (923, 8068, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Crystal Ward', NULL, NULL), + (923, 8069, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Juju Ember', NULL, NULL), + (923, 8070, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Juju Chill', NULL, NULL), + (923, 8071, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Juju Escape', NULL, NULL), + (923, 8072, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Juju Might', NULL, NULL), + (923, 8073, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Winterfall Firewater', NULL, NULL), + (923, 8074, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Major Troll\'s Blood Elixir', NULL, NULL), + (923, 8075, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Mageblood Elixir', NULL, NULL), + (923, 8076, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Weak Troll\'s Blood Elixir', NULL, NULL), + (923, 8077, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Mighty Troll\'s Blood Elixir', NULL, NULL), + (923, 8078, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Wrath Elixir', NULL, NULL), + (923, 8079, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Spellpower Elixir', NULL, NULL), + (923, 8080, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Guru\'s Elixir', NULL, NULL), + (923, 8081, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Worg\'s Blood Elixir', NULL, NULL), + (923, 8082, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Bloodkelp Elixir of Dodging', NULL, NULL), + (923, 8083, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Bloodkelp Elixir of Resistance', NULL, NULL), + (923, 8084, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Videre Elixir', NULL, NULL), + (923, 8085, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Ahuurn\'s Elixir', NULL, NULL), + (923, 8086, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Elixir of Shadows', NULL, NULL), + (923, 8087, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Drakuru\'s Elixir', NULL, NULL), + (923, 8088, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Zort\'s Protective Elixir', NULL, NULL), + (923, 8089, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Zort\'s Protective Elixir', NULL, NULL), + (923, 8090, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Murkweed Elixir', NULL, NULL), + (923, 8648, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixirs consumed', 'Strong Troll\'s Blood Elixir', NULL, NULL), + (924, 4737, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Argent Crusade', NULL, NULL), + (924, 4738, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Kalu\'ak', NULL, NULL), + (924, 4739, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Frenzyheart Tribe', NULL, NULL), + (924, 4740, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Oracles', NULL, NULL), + (924, 4741, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Wyrmrest Accord', NULL, NULL), + (924, 4742, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Kirin Tor', NULL, NULL), + (924, 4743, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Knights of the Ebon Blade', NULL, NULL), + (924, 4744, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Warsong Offensive', NULL, NULL), + (924, 4745, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Hand of Vengeance', NULL, NULL), + (924, 4746, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Taunka', NULL, NULL), + (924, 4747, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with Valiance Expedition', NULL, NULL), + (924, 4748, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Explorer\'s League', NULL, NULL), + (924, 4749, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Northrend factions at Exalted', 'Exlated with the Silver Convenant', NULL, NULL), + (925, 4750, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with Ashtongue Deathsworn', NULL, NULL), + (925, 4751, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with Cenarion Expedition', NULL, NULL), + (925, 4752, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with Honor Hold', NULL, NULL), + (925, 4753, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with Thrallmar', NULL, NULL), + (925, 4754, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Kurenai', NULL, NULL), + (925, 4755, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Netherwing', NULL, NULL), + (925, 4756, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with Ogri\'la', NULL, NULL), + (925, 4757, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Sporeggar', NULL, NULL), + (925, 4758, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Consortium', NULL, NULL), + (925, 4759, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with Lower City', NULL, NULL), + (925, 4760, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Sha\'tari Skyguard', NULL, NULL), + (925, 4761, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Shattered Sun Offensive', NULL, NULL), + (925, 4762, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Aldor', NULL, NULL), + (925, 4763, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Scryers', NULL, NULL), + (925, 4764, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Sha\'tar', NULL, NULL), + (925, 4765, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Keepers of Time', NULL, NULL), + (925, 4766, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Scale of the Sands', NULL, NULL), + (925, 4767, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Outland factions at Exalted', 'Exlated with the Violet Eye', NULL, NULL), + (926, 5313, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with Darkspear Trolls', NULL, NULL), + (926, 5314, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with Orgrimmar', NULL, NULL), + (926, 5315, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with Thunder Bluff', NULL, NULL), + (926, 5316, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with Undercity', NULL, NULL), + (926, 5317, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with Silvermoon City', NULL, NULL), + (926, 5318, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with The Defilers', NULL, NULL), + (926, 5319, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with Warsong Outriders', NULL, NULL), + (926, 5320, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with Frostwolf Clan', NULL, NULL), + (926, 5321, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with The Mag\'har', NULL, NULL), + (926, 5322, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with Thrallmar', NULL, NULL), + (926, 5323, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with Tranquillen', NULL, NULL), + (926, 5324, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with Warsong Offensive', NULL, NULL), + (926, 5325, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with The Hand of Vengeance', NULL, NULL), + (926, 5326, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with The Taunka', NULL, NULL), + (926, 5327, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Horde factions at Exalted', 'Exalted with The Sunreavers', NULL, NULL), + (927, 4768, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Cloak is Epic!', NULL, NULL), + (927, 4769, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Body is Epic!', NULL, NULL), + (927, 4770, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Chest is Epic!', NULL, NULL), + (927, 4771, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Feet are epic!', NULL, NULL), + (927, 4772, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Ring is Epic!', NULL, NULL), + (927, 4773, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Ring is Epic!', NULL, NULL), + (927, 4774, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Gloves are Epic!', NULL, NULL), + (927, 4775, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Helm is Epic!', NULL, NULL), + (927, 4776, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Legs are Epic!', NULL, NULL), + (927, 4777, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Weapon is Epic!', NULL, NULL), + (927, 4778, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Necklace is Epic!', NULL, NULL), + (927, 4779, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Off-hand is Epic!', NULL, NULL), + (927, 4780, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Ranged/Wand/Relic is Epic!', NULL, NULL), + (927, 4781, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Shoulders are Epic!', NULL, NULL), + (927, 4782, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Tabard is Epic!', NULL, NULL), + (927, 4783, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Trinket is Epic!', NULL, NULL), + (927, 4784, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Trinket is Epic!', NULL, NULL), + (927, 4785, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Belt is Epic!', NULL, NULL), + (927, 4786, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Equipped epic items in item slots', 'Bracers are Epic!', NULL, NULL), + (928, 2002, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Extra bank slots purchased', '', NULL, NULL), + (931, 5301, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Total factions encountered', 'Total factions encountered', NULL, NULL), + (932, 4987, 1, 14807, 1, 1, 80, 1, 1, NULL, 0, 'Total 5-player dungeons entered', '5-man instances run', NULL, NULL), + (933, 4988, 1, 14807, 1, 1, 80, 1, 1, NULL, 0, 'Total 10-player raids entered', '10-man instances run', NULL, NULL), + (934, 4989, 1, 14807, 1, 1, 80, 1, 1, NULL, 0, 'Total 25-player raids entered', '25-man raids run', NULL, NULL), + (937, 2003, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elune\'s Blessing', 'Complete Elune\'s Blessing', NULL, NULL), + (938, 2004, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'The Snows of Northrend', 'Post-partum Aggression', NULL, NULL), + (939, 2005, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Hills Like White Elekk', 'The Ultimate Bloodsport', NULL, NULL), + (940, 2006, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'The Green Hills of Stranglethorn', 'The Green Hills of Stranglethorn', NULL, NULL), + (940, 2007, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'The Green Hills of Stranglethorn', 'Big Game Hunter', NULL, NULL), + (941, 2008, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'Hemet Nesingwary: The Collected Quests', 'The Green Hills of Stranglethorn', NULL, NULL), + (941, 2009, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'Hemet Nesingwary: The Collected Quests', 'Hills Like White Elekk', NULL, NULL), + (941, 2010, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'Hemet Nesingwary: The Collected Quests', 'The Snows of Northrend', NULL, NULL), + (942, 2011, 25, 201, -1, 1, 80, 1, 1, NULL, 25, 'The Diplomat', 'Exalted with Timbermaw Hold', NULL, NULL), + (942, 2012, 25, 201, -1, 1, 80, 1, 1, NULL, 25, 'The Diplomat', 'Exalted with the Sporeggar', NULL, NULL), + (942, 2013, 25, 201, -1, 1, 80, 1, 1, NULL, 25, 'The Diplomat', 'Exalted with the Kurenai', NULL, NULL), + (943, 2014, 25, 201, -1, 1, 80, 1, 1, NULL, 25, 'The Diplomat', 'Exalted with Timbermaw Hold', NULL, NULL), + (943, 2015, 25, 201, -1, 1, 80, 1, 1, NULL, 25, 'The Diplomat', 'Exalted with the Sporeggar', NULL, NULL), + (943, 2016, 25, 201, -1, 1, 80, 1, 1, NULL, 25, 'The Diplomat', 'Exalted with the The Mag\'har', NULL, NULL), + (944, 2017, 15, 14864, 201, 1, 80, 1, 1, NULL, 15, 'They Love Me In That Tunnel', 'Timbermaw Exalted', NULL, NULL), + (945, 2023, 25, 201, -1, 1, 80, 1, 1, NULL, 25, 'The Argent Champion', 'The Argent Dawn', NULL, NULL), + (945, 2024, 25, 201, -1, 1, 80, 1, 1, NULL, 25, 'The Argent Champion', 'The Argent Crusade', NULL, NULL), + (946, 2020, 15, 14864, 201, 1, 80, 1, 1, NULL, 15, 'The Argent Dawn', 'Argent Dawn exalted', NULL, NULL), + (947, 2022, 15, 14866, 201, 1, 80, 1, 1, NULL, 15, 'The Argent Crusade', 'Argent Crusade exalted', NULL, NULL), + (948, 2030, 10, 201, -1, 1, 80, 1, 1, NULL, 10, 'Ambassador of the Alliance', 'Exalted Stormwind', NULL, NULL), + (948, 2031, 10, 201, -1, 1, 80, 1, 1, NULL, 10, 'Ambassador of the Alliance', 'Exalted Ironforge', NULL, NULL), + (948, 2032, 10, 201, -1, 1, 80, 1, 1, NULL, 10, 'Ambassador of the Alliance', 'Exalted Darnassus', NULL, NULL), + (948, 2033, 10, 201, -1, 1, 80, 1, 1, NULL, 10, 'Ambassador of the Alliance', 'Exalted Gnomeregan Exiles', NULL, NULL), + (948, 2034, 10, 201, -1, 1, 80, 1, 1, NULL, 10, 'Ambassador of the Alliance', 'Exalted Exodar', NULL, NULL), + (949, 2035, 15, 14866, 201, 1, 80, 1, 1, NULL, 15, 'Tuskarrmageddon', 'The Kalu\'ak exalted', NULL, NULL), + (950, 2036, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Frenzyheart Tribe', 'Frenzyheart Tribe exalted', NULL, NULL), + (951, 2037, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'The Oracles', 'The Oracles exalted', NULL, NULL), + (952, 2039, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Mercenary of Sholazar', 'The Oracles', NULL, NULL), + (952, 2040, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Mercenary of Sholazar', 'Frenzyheart Tribe', NULL, NULL), + (953, 2045, 25, 201, -1, 1, 80, 1, 1, NULL, 25, 'Guardian of Cenarius', 'Exalted with Cenarion Circle', NULL, NULL), + (953, 2046, 25, 201, -1, 1, 80, 1, 1, NULL, 25, 'Guardian of Cenarius', 'Exalted with Cenarion Expedition', NULL, NULL), + (955, 2048, 10, 14864, 201, 1, 80, 1, 1, NULL, 10, 'Hydraxian Waterlords', 'Exalted with the Hydraxian Waterlords', NULL, NULL), + (956, 2049, 10, 14864, 201, 1, 80, 1, 1, NULL, 10, 'Brood of Nozdormu', 'Exalted with the Brood of Nozdormu', NULL, NULL), + (957, 2050, 10, 14864, 201, 1, 80, 1, 1, NULL, 10, 'Hero of the Zandalar Tribe', 'Exalted with the Zandalar Tribe', NULL, NULL), + (958, 2051, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'Sworn to the Deathsworn', 'Exalted with the Ashtongue Deathsworn', NULL, NULL), + (959, 2052, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'The Scale of the Sands', 'Exalted with The Scale of the Sands', NULL, NULL), + (960, 2053, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'The Violet Eye', 'Exalted with The Violet Eye', NULL, NULL), + (961, 2054, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Honorary Frenzyheart', 'Chicken Party!', NULL, NULL), + (961, 2055, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Honorary Frenzyheart', 'Kartak\'s Rampage', NULL, NULL), + (961, 2056, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Honorary Frenzyheart', 'Tools of War', NULL, NULL), + (961, 2057, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Honorary Frenzyheart', 'Secret Strength of the Frenzyheart', NULL, NULL), + (961, 2058, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Honorary Frenzyheart', 'The Heartblood\'s Strength', NULL, NULL), + (961, 2059, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Honorary Frenzyheart', 'Strength of the Tempest', NULL, NULL), + (961, 2060, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Honorary Frenzyheart', 'Rejek: First Blood', NULL, NULL), + (961, 2061, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Honorary Frenzyheart', 'A Hero\'s Headgear', NULL, NULL), + (962, 2062, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Savior of the Oracles', 'Appeasing the Great Rain Stone', NULL, NULL), + (962, 2063, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Savior of the Oracles', 'Will of the Titans', NULL, NULL), + (962, 2064, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Savior of the Oracles', 'Mastery of the Crystals', NULL, NULL), + (962, 2065, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Savior of the Oracles', 'Power of the Great Ones', NULL, NULL), + (962, 2066, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Savior of the Oracles', 'Song of Reflection', NULL, NULL), + (962, 2067, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Savior of the Oracles', 'Song of Wind and Water', NULL, NULL), + (962, 2068, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Savior of the Oracles', 'A Cleansing Song', NULL, NULL), + (962, 2069, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Savior of the Oracles', 'Song of Fecundity', NULL, NULL), + (963, 2071, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Ashenvale, Astranaar', NULL, NULL), + (963, 2073, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Azuremyst Isle, Azure Watch', NULL, NULL), + (963, 2074, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Bloodmyst Isle, Blood Watch', NULL, NULL), + (963, 2075, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Darkshore, Auberdine', NULL, NULL), + (963, 2076, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Darnassus, Craftsmen\'s Terrace', NULL, NULL), + (963, 2077, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Desolace, Nijel\'s Point', NULL, NULL), + (963, 2078, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Dustwallow Marsh, Theramore Isle', NULL, NULL), + (963, 2079, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Exodar, Seat of the Naaru', NULL, NULL), + (963, 2080, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Feralas, Feathermoon Stronghold', NULL, NULL), + (963, 2081, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Stonetalon Mountains, Stonetalon Peak', NULL, NULL), + (963, 2082, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Teldrassil, Dolanaar', NULL, NULL), + (963, 2083, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Barrens, Ratchet', NULL, NULL), + (963, 2084, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Dustwallow Marsh, Mudsprocket', NULL, NULL), + (963, 2085, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Silithus, Cenarion Hold', NULL, NULL), + (963, 2086, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Tanaris, Gadgetzan', NULL, NULL), + (963, 2087, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Winterspring, Everlook', NULL, NULL), + (964, 2072, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Going Down?', '65 yards without dying', NULL, NULL), + (965, 2099, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Barrens, Ratchet', NULL, NULL), + (965, 2100, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Dustwallow Marsh, Mudsprocket', NULL, NULL), + (965, 2101, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Silithus, Cenarion Hold', NULL, NULL), + (965, 2102, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Tanaris, Gadgetzan', NULL, NULL), + (965, 2103, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Winterspring, Everlook', NULL, NULL), + (965, 2105, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Ashenvale, Splintertree Post', NULL, NULL), + (965, 2106, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Barrens, Camp Taurajo', NULL, NULL), + (965, 2107, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Barrens, The Crossroads', NULL, NULL), + (965, 2108, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Desolace, Shadowprey Village', NULL, NULL), + (965, 2109, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Durotar, Razor Hill', NULL, NULL), + (965, 2110, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Dustwallow Marsh, Brackenwall Village', NULL, NULL), + (965, 2111, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Feralas, Camp Mojache', NULL, NULL), + (965, 2112, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Mulgore, Bloodhoof Village', NULL, NULL), + (965, 2113, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Orgrimmar, Valley of Strength', NULL, NULL), + (965, 2114, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Stonetalon Mountains, Sun Rock Retreat', NULL, NULL), + (965, 2115, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Thunder Bluff, Lower Rise', NULL, NULL), + (965, 2161, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Kalimdor', 'Thousand Needles, Freewind Post', NULL, NULL), + (966, 2132, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Dun Morogh, Kharanos', NULL, NULL), + (966, 2133, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Duskwood, Darkshire', NULL, NULL), + (966, 2134, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Elwynn Forest, Goldshire', NULL, NULL), + (966, 2135, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Hillsbrad Foothills, Southshore', NULL, NULL), + (966, 2136, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Hinterlands, Aerie Peak', NULL, NULL), + (966, 2137, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Ironforge, The Commons', NULL, NULL), + (966, 2138, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Loch Modan, Thelsamar', NULL, NULL), + (966, 2139, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Redridge Mountains, Lakeshire', NULL, NULL), + (966, 2140, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Stormwind, The Trade District', NULL, NULL), + (966, 2141, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Westfall, Sentinel Hill', NULL, NULL), + (966, 2142, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Wetlands, Menethil Harbor', NULL, NULL), + (966, 2143, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Eastern Plaguelands, Light\'s Hope Chapel', NULL, NULL), + (966, 2144, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Stranglethorn Vale, Booty Bay', NULL, NULL), + (967, 2145, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Eastern Plaguelands, Light\'s Hope Chapel', NULL, NULL), + (967, 2146, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Stranglethorn Vale, Booty Bay', NULL, NULL), + (967, 2147, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Arathi Highlands, Hammerfall', NULL, NULL), + (967, 2148, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Badlands, Kargath', NULL, NULL), + (967, 2149, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Eversong Woods, Fairbreeze Village', NULL, NULL), + (967, 2150, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Eversong Woods, Falconwing Square', NULL, NULL), + (967, 2151, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Ghostlands, Tranquillien', NULL, NULL), + (967, 2152, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Hillsbrad Foothills, Tarren Mill', NULL, NULL), + (967, 2153, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Hinterlands, Revantusk Village', NULL, NULL), + (967, 2154, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Silvermoon, The Bazaar', NULL, NULL), + (967, 2155, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Silvermoon, The Royal Exchange', NULL, NULL), + (967, 2156, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Silverpine Forest, The Sepulcher', NULL, NULL), + (967, 2157, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Stranglethorn Vale, Grom\'gol Base Camp', NULL, NULL), + (967, 2158, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Swamp of Sorrows, Stonard', NULL, NULL), + (967, 2159, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Tirisfal Glades, Brill', NULL, NULL), + (967, 2160, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Eastern Kingdoms', 'Undercity, The Trade Quarter', NULL, NULL), + (968, 2211, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Blade\'s Edge Mountains, Evergrove', NULL, NULL), + (968, 2212, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Netherstorm, Area 52', NULL, NULL), + (968, 2213, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Netherstorm, The Stormspire', NULL, NULL), + (968, 2214, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Shattrath City, Aldor Rise or Scryer\'s Tier', NULL, NULL), + (968, 2215, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Zangarmarsh, Cenarion Refuge', NULL, NULL), + (968, 2216, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Shadowmoon Valley, Altar of Sha\'tar or Sanctum of the Stars', NULL, NULL), + (968, 2217, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Blade\'s Edge Mountains, Mok\'Nathal Village', NULL, NULL), + (968, 2218, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Blade\'s Edge Mountains, Thunderlord Stronghold', NULL, NULL), + (968, 2219, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Hellfire Peninsula, Falcon Watch', NULL, NULL), + (968, 2220, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Nagrand, Garadar', NULL, NULL), + (968, 2221, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Hellfire Peninsula, Thrallmar', NULL, NULL), + (968, 2222, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Shadowmoon Valley, Shadowmoon Village', NULL, NULL), + (968, 2223, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Terokkar Forest, Stonebreaker Hold', NULL, NULL), + (968, 2224, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Zangarmarsh, Zabra\'jin', NULL, NULL), + (969, 2195, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Blade\'s Edge Mountains, Sylvanaar', NULL, NULL), + (969, 2196, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Blade\'s Edge Mountains, Toshley\'s Station', NULL, NULL), + (969, 2197, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Hellfire Peninsula, Honor Hold', NULL, NULL), + (969, 2198, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Hellfire Peninsula, Temple of Telhamat', NULL, NULL), + (969, 2199, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Nagrand, Telaar', NULL, NULL), + (969, 2200, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Shadowmoon Valley, Wildhammer Stronghold', NULL, NULL), + (969, 2201, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Terokkar Forest, Allerian Stronghold', NULL, NULL), + (969, 2202, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Zangarmarsh, Orebor Harborage', NULL, NULL), + (969, 2203, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Zangarmarsh, Telredor', NULL, NULL), + (969, 2204, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Blade\'s Edge Mountains, Evergrove', NULL, NULL), + (969, 2205, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Netherstorm, Area 52', NULL, NULL), + (969, 2206, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Netherstorm, The Stormspire', NULL, NULL), + (969, 2207, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Shattrath City, Aldor Rise or Scryer\'s Tier', NULL, NULL), + (969, 2209, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Zangarmarsh, Cenarion Refuge', NULL, NULL), + (969, 2210, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Tricks and Treats of Outland', 'Shadowmoon Valley, Altar of Sha\'tar or Sanctum of the Stars', NULL, NULL), + (970, 2228, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'Tricks and Treats of Azeroth', 'Tricks and Treats of Kalimdor', NULL, NULL), + (970, 2229, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'Tricks and Treats of Azeroth', 'Tricks and Treats of Eastern Kingdoms', NULL, NULL), + (970, 2230, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'Tricks and Treats of Azeroth', 'Tricks and Treats of Outland', NULL, NULL), + (971, 2225, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'Tricks and Treats of Azeroth', 'Tricks and Treats of Kalimdor', NULL, NULL), + (971, 2226, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'Tricks and Treats of Azeroth', 'Tricks and Treats of Eastern Kingdoms', NULL, NULL), + (971, 2227, 20, 158, 155, 1, 80, 1, 1, NULL, 20, 'Tricks and Treats of Azeroth', 'Tricks and Treats of Outland', NULL, NULL), + (972, 2231, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Trick or Treat!', 'Handful of Candy', NULL, NULL), + (973, 2232, 10, 96, -1, 1, 80, 1, 1, NULL, 10, '5 Daily Quests Complete', 'Complete 5 daily quests', NULL, NULL), + (974, 2233, 10, 96, -1, 1, 80, 1, 1, NULL, 10, '50 Daily Quests Complete', 'Complete 50 daily quests', NULL, NULL), + (975, 2234, 10, 96, -1, 1, 80, 1, 1, NULL, 10, '200 Daily Quests Complete', 'Complete 200 daily quests', NULL, NULL), + (976, 2235, 10, 96, -1, 1, 80, 1, 1, NULL, 10, '500 Daily Quests Complete', 'Complete 500 daily quests', NULL, NULL), + (977, 2236, 10, 96, -1, 1, 80, 1, 1, NULL, 10, '1000 Daily Quests Complete', 'Complete 1000 daily quests', NULL, NULL), + (978, 2239, 50, 96, -1, 1, 80, 1, 1, NULL, 50, '3000 Quests Completed', 'Complete 3000 quests', NULL, NULL), + (979, 2260, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Female Blood Elf Mask', NULL, NULL), + (979, 2261, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Female Draenei Mask', NULL, NULL), + (979, 2262, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Female Dwarf Mask', NULL, NULL), + (979, 2263, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Female Gnome Mask', NULL, NULL), + (979, 2264, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Female Human Mask', NULL, NULL), + (979, 2265, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Female Nightelf Mask', NULL, NULL), + (979, 2266, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Female Orc Mask', NULL, NULL), + (979, 2267, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Female Tauren Mask', NULL, NULL), + (979, 2268, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Female Troll Mask', NULL, NULL), + (979, 2269, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Female Undead Mask', NULL, NULL), + (979, 2270, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Male Blood Elf Mask', NULL, NULL), + (979, 2271, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Male Draenei Mask', NULL, NULL), + (979, 2272, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Male Dwarf Mask', NULL, NULL), + (979, 2273, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Male Gnome Mask', NULL, NULL), + (979, 2274, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Male Human Mask', NULL, NULL), + (979, 2275, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Male Nightelf Mask', NULL, NULL), + (979, 2276, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Male Orc Mask', NULL, NULL), + (979, 2277, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Male Tauren Mask', NULL, NULL), + (979, 2278, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Male Troll Mask', NULL, NULL), + (979, 2279, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'The Mask Task', 'Flimsy Male Undead Mask', NULL, NULL), + (980, 6160, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'The Horseman\'s Reins', 'Headless Horseman\'s Mount', NULL, NULL), + (981, 2285, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'That Sparkling Smile', 'Use Tooth Pick', NULL, NULL), + (1005, 2374, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Know Thy Enemy', 'Draenei', NULL, NULL), + (1005, 2375, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Know Thy Enemy', 'Human', NULL, NULL), + (1005, 2376, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Know Thy Enemy', 'Gnome', NULL, NULL), + (1005, 2377, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Know Thy Enemy', 'Dwarf', NULL, NULL), + (1005, 2378, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Know Thy Enemy', 'Night Elf', NULL, NULL), + (1006, 5031, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Orgrimmar', NULL, NULL), + (1006, 5032, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Silvermoon City', NULL, NULL), + (1006, 5033, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Shepherd\'s Gate', NULL, NULL), + (1006, 5034, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Thunder Bluff', NULL, NULL), + (1006, 5035, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Elder Rise', NULL, NULL), + (1006, 5036, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Hunter Rise', NULL, NULL), + (1006, 5037, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Spirit Rise', NULL, NULL), + (1006, 5038, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'The Pools of Vision', NULL, NULL), + (1006, 5039, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'City Defender', 'Undercity', NULL, NULL), + (1007, 2415, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'The Wyrmrest Accord', 'Exalted with Wyrmrest Accord', NULL, NULL), + (1008, 2416, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'The Kirin Tor', 'Exalted with Kirin Tor', NULL, NULL), + (1009, 2417, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Knights of the Ebon Blade', 'Exalted with Knights of the Ebon Blade', NULL, NULL), + (1010, 2418, 20, 14866, 201, 1, 80, 1, 1, NULL, 20, 'Northrend Vanguard', 'The Argent Crusade', NULL, NULL), + (1010, 2419, 20, 14866, 201, 1, 80, 1, 1, NULL, 20, 'Northrend Vanguard', 'The Wyrmrest Accord', NULL, NULL), + (1010, 2420, 20, 14866, 201, 1, 80, 1, 1, NULL, 20, 'Northrend Vanguard', 'The Kirin Tor', NULL, NULL), + (1010, 2421, 20, 14866, 201, 1, 80, 1, 1, NULL, 20, 'Northrend Vanguard', 'Knights of the Ebon Blade', NULL, NULL), + (1011, 2422, 20, 14866, 201, 1, 80, 1, 1, NULL, 20, 'The Winds of the North', 'Exalted with Horde Expedition', NULL, NULL), + (1012, 2425, 20, 14866, 201, 1, 80, 1, 1, NULL, 20, 'The Winds of the North', 'Exalted with Alliance Vanguard', NULL, NULL), + (1014, 2428, 10, 201, -1, 1, 80, 1, 1, NULL, 10, '35 Exalted Reputations', '35 reputations to exalted', NULL, NULL), + (1015, 2429, 10, 201, -1, 1, 80, 1, 1, NULL, 10, '40 Exalted Reputations', '40 reputations to exalted', NULL, NULL), + (1017, 3686, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Can I Keep Him?', 'Obtain a companion pet', NULL, NULL), + (1020, 0, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Ten Tabards', NULL, NULL, NULL), + (1021, 0, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Twenty-Five Tabards', NULL, NULL, NULL), + (1022, 3063, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Arathi Highlands', NULL, NULL), + (1022, 3064, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Blasted Lands', NULL, NULL), + (1022, 3065, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Burning Steppes', NULL, NULL), + (1022, 3066, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Dun Morogh', NULL, NULL), + (1022, 3067, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Duskwood', NULL, NULL), + (1022, 3068, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Elwynn Forest', NULL, NULL), + (1022, 3069, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Hillsbrad Foothills', NULL, NULL), + (1022, 3070, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Loch Modan', NULL, NULL), + (1022, 3071, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Redridge Mountains', NULL, NULL), + (1022, 3072, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Stranglethorn Vale', NULL, NULL), + (1022, 3073, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'The Hinterlands', NULL, NULL), + (1022, 3074, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Western Plaguelands', NULL, NULL), + (1022, 3075, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Westfall', NULL, NULL), + (1022, 5078, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Eastern Kingdoms', 'Wetlands', NULL, NULL), + (1023, 3076, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Kalimdor', 'Ashenvale', NULL, NULL), + (1023, 3077, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Kalimdor', 'Azuremyst Isle', NULL, NULL), + (1023, 3078, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Kalimdor', 'Bloodmyst Isle', NULL, NULL), + (1023, 3079, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Kalimdor', 'Darkshore', NULL, NULL), + (1023, 3080, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Kalimdor', 'Desolace', NULL, NULL), + (1023, 3081, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Kalimdor', 'Dustwallow Marsh', NULL, NULL), + (1023, 3082, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Kalimdor', 'Feralas', NULL, NULL), + (1023, 3083, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Kalimdor', 'Silithus', NULL, NULL), + (1023, 3084, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Kalimdor', 'Tanaris', NULL, NULL), + (1023, 3085, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Kalimdor', 'Teldrassil', NULL, NULL), + (1023, 3087, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Kalimdor', 'Winterspring', NULL, NULL), + (1024, 3089, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Outland', 'Blade\'s Edge Mountains', NULL, NULL), + (1024, 3090, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Outland', 'Hellfire Peninsula', NULL, NULL), + (1024, 3091, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Outland', 'Nagrand', NULL, NULL), + (1024, 3092, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Outland', 'Netherstorm', NULL, NULL), + (1024, 3093, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Outland', 'Shadowmoon Valley', NULL, NULL), + (1024, 3094, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Outland', 'Terokkar Forest', NULL, NULL), + (1024, 3095, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Warden of Outland', 'Zangarmarsh', NULL, NULL), + (1025, 3101, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Eastern Kingdoms', 'Arathi Highlands', NULL, NULL), + (1025, 3102, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Eastern Kingdoms', 'Badlands', NULL, NULL), + (1025, 3103, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Eastern Kingdoms', 'Burning Steppes', NULL, NULL), + (1025, 3104, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Eastern Kingdoms', 'Eversong Woods', NULL, NULL), + (1025, 3105, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Eastern Kingdoms', 'Ghostlands', NULL, NULL), + (1025, 3106, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Eastern Kingdoms', 'Hillsbrad Foothills', NULL, NULL), + (1025, 3107, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Eastern Kingdoms', 'Silverpine Forest', NULL, NULL), + (1025, 3108, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Eastern Kingdoms', 'Stranglethorn Vale', NULL, NULL), + (1025, 3109, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Eastern Kingdoms', 'Swamp of Sorrows', NULL, NULL), + (1025, 3110, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Eastern Kingdoms', 'The Hinterlands', NULL, NULL), + (1025, 3111, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Eastern Kingdoms', 'Tirisfal Glades', NULL, NULL), + (1026, 3112, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'Ashenvale', NULL, NULL), + (1026, 3113, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'Desolace', NULL, NULL), + (1026, 3114, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'Durotar', NULL, NULL), + (1026, 3115, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'Dustwallow Marsh', NULL, NULL), + (1026, 3116, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'Feralas', NULL, NULL), + (1026, 3117, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'Mulgore', NULL, NULL), + (1026, 3118, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'Silithus', NULL, NULL), + (1026, 3119, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'Stonetalon Mountains', NULL, NULL), + (1026, 3120, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'Tanaris', NULL, NULL), + (1026, 3121, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'The Barrens', NULL, NULL), + (1026, 3122, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'Thousand Needles', NULL, NULL), + (1026, 3123, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Kalimdor', 'Winterspring', NULL, NULL), + (1027, 3124, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Outland', 'Blade\'s Edge Mountains', NULL, NULL), + (1027, 3125, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Outland', 'Hellfire Peninsula', NULL, NULL), + (1027, 3126, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Outland', 'Nagrand', NULL, NULL), + (1027, 3127, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Outland', 'Netherstorm', NULL, NULL), + (1027, 3128, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Outland', 'Shadowmoon Valley', NULL, NULL), + (1027, 3129, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Outland', 'Terokkar Forest', NULL, NULL), + (1027, 3130, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Flame Keeper of Outland', 'Zangarmarsh', NULL, NULL), + (1028, 3131, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Arathi Highlands', NULL, NULL), + (1028, 3132, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Badlands', NULL, NULL), + (1028, 3133, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Burning Steppes', NULL, NULL), + (1028, 3134, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Eversong Woods', NULL, NULL), + (1028, 3135, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Ghostlands', NULL, NULL), + (1028, 3136, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Hillsbrad Foothills', NULL, NULL), + (1028, 3137, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Silverpine Forest', NULL, NULL), + (1028, 3138, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Stranglethorn Vale', NULL, NULL), + (1028, 3139, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Swamp of Sorrows', NULL, NULL), + (1028, 3140, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'The Hinterlands', NULL, NULL), + (1028, 3141, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Tirisfal Glades', NULL, NULL), + (1029, 3142, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Ashenvale', NULL, NULL), + (1029, 3143, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Desolace', NULL, NULL), + (1029, 3144, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Durotar', NULL, NULL), + (1029, 3145, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Dustwallow Marsh', NULL, NULL), + (1029, 3146, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Feralas', NULL, NULL), + (1029, 3147, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Mulgore', NULL, NULL), + (1029, 3148, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Silithus', NULL, NULL), + (1029, 3149, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Stonetalon Mountains', NULL, NULL), + (1029, 3150, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Tanaris', NULL, NULL), + (1029, 3151, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'The Barrens', NULL, NULL), + (1029, 3152, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Thousand Needles', NULL, NULL), + (1029, 3153, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Winterspring', NULL, NULL), + (1030, 3154, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Blade\'s Edge Mountains', NULL, NULL), + (1030, 3155, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Hellfire Peninsula', NULL, NULL), + (1030, 3156, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Nagrand', NULL, NULL), + (1030, 3157, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Netherstorm', NULL, NULL), + (1030, 3158, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Shadowmoon Valley', NULL, NULL), + (1030, 3159, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Terokkar Forest', NULL, NULL), + (1030, 3160, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Zangarmarsh', NULL, NULL), + (1031, 3161, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Arathi Highlands', NULL, NULL), + (1031, 3162, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Blasted Lands', NULL, NULL), + (1031, 3163, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Burning Steppes', NULL, NULL), + (1031, 3164, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Dun Morogh', NULL, NULL), + (1031, 3165, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Duskwood', NULL, NULL), + (1031, 3166, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Elwynn Forest', NULL, NULL), + (1031, 3167, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Hillsbrad Foothills', NULL, NULL), + (1031, 3168, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Loch Modan', NULL, NULL), + (1031, 3169, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Redridge Mountains', NULL, NULL), + (1031, 3170, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Stranglethorn Vale', NULL, NULL), + (1031, 3171, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'The Hinterlands', NULL, NULL), + (1031, 3172, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Western Plaguelands', NULL, NULL), + (1031, 3173, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Westfall', NULL, NULL), + (1031, 5266, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Eastern Kingdoms', 'Wetlands', NULL, NULL), + (1032, 3174, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Ashenvale', NULL, NULL), + (1032, 3175, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Azuremyst Isle', NULL, NULL), + (1032, 3176, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Bloodmyst Isle', NULL, NULL), + (1032, 3177, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Darkshore', NULL, NULL), + (1032, 3178, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Desolace', NULL, NULL), + (1032, 3179, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Dustwallow Marsh', NULL, NULL), + (1032, 3180, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Feralas', NULL, NULL), + (1032, 3181, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Silithus', NULL, NULL), + (1032, 3182, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Tanaris', NULL, NULL), + (1032, 3183, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Teldrassil', NULL, NULL), + (1032, 3185, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Kalimdor', 'Winterspring', NULL, NULL), + (1033, 3186, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Blade\'s Edge Mountains', NULL, NULL), + (1033, 3187, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Hellfire Peninsula', NULL, NULL), + (1033, 3188, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Nagrand', NULL, NULL), + (1033, 3189, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Netherstorm', NULL, NULL), + (1033, 3190, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Shadowmoon Valley', NULL, NULL), + (1033, 3191, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Terokkar Forest', NULL, NULL), + (1033, 3192, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Extinguishing Outland', 'Zangarmarsh', NULL, NULL), + (1034, 3193, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'The Fires of Azeroth', 'Flame Warden of Eastern Kingdoms', NULL, NULL), + (1034, 3194, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'The Fires of Azeroth', 'Flame Warden of Kalimdor', NULL, NULL), + (1034, 3195, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'The Fires of Azeroth', 'Flame Warden of Outland', NULL, NULL), + (1035, 3196, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Desecration of the Horde', 'Extinguishing Eastern Kingdoms', NULL, NULL), + (1035, 3197, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Desecration of the Horde', 'Extinguishing Kalimdor', NULL, NULL), + (1035, 3198, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Desecration of the Horde', 'Extinguishing Outland', NULL, NULL), + (1036, 3199, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'The Fires of Azeroth', 'Flame Keeper of Eastern Kingdoms', NULL, NULL), + (1036, 3200, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'The Fires of Azeroth', 'Flame Keeper of Kalimdor', NULL, NULL), + (1036, 3201, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'The Fires of Azeroth', 'Flame Keeper of Outland', NULL, NULL), + (1037, 3202, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Desecration of the Alliance', 'Extinguishing Eastern Kingdoms', NULL, NULL), + (1037, 3203, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Desecration of the Alliance', 'Extinguishing Kalimdor', NULL, NULL), + (1037, 3204, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'Desecration of the Alliance', 'Extinguishing Outland', NULL, NULL), + (1038, 3205, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Warden', 'The Fires of Azeroth', NULL, NULL), + (1038, 3206, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Warden', 'Desecration of the Horde', NULL, NULL), + (1038, 6291, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Warden', 'Ice the Frost Lord', NULL, NULL), + (1038, 7334, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Warden', 'Burning Hot Pole Dance', NULL, NULL), + (1038, 7336, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Warden', 'King of the Fire Festival', NULL, NULL), + (1038, 7337, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Warden', 'Torch Juggler', NULL, NULL), + (1039, 3207, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Keeper', 'The Fires of Azeroth', NULL, NULL), + (1039, 3208, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Keeper', 'Desecration of the Alliance', NULL, NULL), + (1039, 7338, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Keeper', 'Burning Hot Pole Dance', NULL, NULL), + (1039, 7339, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Keeper', 'Ice the Frost Lord', NULL, NULL), + (1039, 7340, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Keeper', 'King of the Fire Festival', NULL, NULL), + (1039, 7341, 20, 155, -1, 1, 80, 1, 1, NULL, 20, 'The Flame Keeper', 'Torch Juggler', NULL, NULL), + (1040, 3216, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Rotten Hallow', 'Crashing the Wickerman Festival', NULL, NULL), + (1040, 3217, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Rotten Hallow', 'The Power of Pine', NULL, NULL), + (1041, 3218, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Rotten Hallow', 'Rotten Eggs and Ruined Kegs', NULL, NULL), + (1041, 3219, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'Rotten Hallow', 'Stinking Up Southshore', NULL, NULL), + (1042, 3231, 1, 131, 1, 1, 80, 1, 1, NULL, 0, 'Number of hugs', 'Number of hugs', NULL, NULL), + (1043, 5803, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Greed rolls made on loot', 'Greed rolls on loot', NULL, NULL), + (1044, 5802, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Need rolls made on loot', 'Need rolls for loot', NULL, NULL), + (1045, 3233, 1, 131, 1, 1, 80, 1, 1, NULL, 0, 'Total cheers', 'Total cheers', NULL, NULL), + (1047, 3232, 1, 131, 1, 1, 80, 1, 1, NULL, 0, 'Total facepalms', 'Total facepalms', NULL, NULL), + (1057, 4962, 1, 123, 122, 1, 80, 1, 1, NULL, 0, 'Deaths in 2v2', '2v2 Deaths', NULL, NULL), + (1065, 3236, 1, 131, 1, 1, 80, 1, 1, NULL, 0, 'Total waves', 'Total waves', 4537, 1), + (1066, 3238, 1, 131, 1, 1, 80, 1, 1, NULL, 0, 'Total times LOL\'d', 'laugh', NULL, NULL), + (1066, 7194, 1, 131, 1, 1, 80, 1, 1, NULL, 0, 'Total times LOL\'d', 'chuckle', NULL, NULL), + (1066, 7195, 1, 131, 1, 1, 80, 1, 1, NULL, 0, 'Total times LOL\'d', 'guffaw', NULL, NULL), + (1066, 7196, 1, 131, 1, 1, 80, 1, 1, NULL, 0, 'Total times LOL\'d', 'rofl', NULL, NULL), + (1066, 7197, 1, 131, 1, 1, 80, 1, 1, NULL, 0, 'Total times LOL\'d', 'giggle', NULL, NULL), + (1067, 3237, 1, 131, 1, 1, 80, 1, 1, NULL, 0, 'Total times playing world\'s smallest violin', 'Total times playing world\'s smallest violin', NULL, NULL), + (1068, 3239, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Keli\'dan the Breaker kills (The Blood Furnace)', 'Keli\'dan the Breaker', NULL, NULL), + (1069, 3241, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Nexus-Prince Shaffar kills (Mana Tombs)', 'Nexus-Prince Shaffar', NULL, NULL), + (1070, 3242, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Epoch Hunter kills (The Escape From Durnholde)', 'Epoch Hunter', NULL, NULL), + (1071, 3240, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Quagmirran kills (Slave Pens)', 'Quagmirran', NULL, NULL), + (1072, 3243, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Black Stalker kills (Underbog)', 'The Black Stalker', NULL, NULL), + (1073, 3244, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Exarch Maladaar kills (Auchenai Crypts)', 'Exarch Maladaar', NULL, NULL), + (1074, 3245, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Talon King Ikiss kills (Sethekk Halls)', 'Talon King Ikiss', NULL, NULL), + (1075, 3246, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Murmur kills (Shadow Labyrinth)', 'Murmur', NULL, NULL), + (1076, 3247, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Aeonus kills (Opening of the Dark Portal)', 'Aeonus', NULL, NULL), + (1077, 3248, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Warlord Kalithresh kills (The Steamvault)', 'Warlord Kalithresh', NULL, NULL), + (1078, 3249, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Warchief Kargath Bladefist kills (The Shattered Halls)', 'Warchief Kargath Bladefist', NULL, NULL), + (1079, 3250, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Pathaleon the Calculator kills (The Mechanar)', 'Pathaleon the Calculator', NULL, NULL), + (1080, 3251, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Warp Splinter kills (The Botanica)', 'Warp Splinter', NULL, NULL), + (1081, 3252, 1, 14822, 14807, 1, 70, 61, 66, NULL, 5, 'Harbinger Skyriss kills (The Arcatraz)', 'Harbinger Skyriss', NULL, NULL), + (1082, 3253, 2, 14822, 14807, 3, 70, 61, 66, NULL, 5, 'Kael\'thas Sunstrider kills (Magister\'s Terrace)', 'Kael\'thas Sunstrider', NULL, NULL), + (1083, 3254, 2, 14822, 14807, 4, 70, 70, 70, NULL, 5, 'Prince Malchezaar kills (Karazhan)', 'Prince Malchezaar', NULL, NULL), + (1084, 3255, 2, 14822, 14807, 3, 70, 68, 68, NULL, 5, 'Zul\'jin kills (Zul\'Aman)', 'Zul\'jin', NULL, NULL), + (1085, 3256, 2, 14822, 14807, 3, 70, 61, 66, NULL, 5, 'Gruul kills (Gruul\'s Lair)', 'Gruul the Dragonkiller', NULL, NULL), + (1086, 3257, 2, 14822, 14807, 3, 70, 61, 66, NULL, 5, 'Magtheridon kills (Magtheridon\'s Lair)', 'Magtheridon', NULL, NULL), + (1087, 3258, 2, 14822, 14807, 3, 70, 61, 66, NULL, 5, 'Lady Vashj kills (Serpentshrine Cavern)', 'Lady Vashj', NULL, NULL), + (1088, 3259, 2, 14822, 14807, 3, 70, 70, 70, NULL, 5, 'Kael\'thas Sunstrider kills (Tempest Keep)', 'Kael\'thas Sunstrider', NULL, NULL), + (1089, 3260, 2, 14822, 14807, 4, 70, 70, 70, NULL, 5, 'Illidan Stormrage kills (The Black Temple)', 'Illidan Stormrage', NULL, NULL), + (1090, 3261, 2, 14822, 14807, 4, 70, 70, 70, NULL, 5, 'Kil\'jaeden kills (Sunwell Plateau)', 'Kil\'jaeden', NULL, NULL), + (1091, 3262, 2, 14821, 14807, 1.8, 26, 10, 19, 'Deadmines', 5, 'Edwin VanCleef kills (Deadmines)', 'Edwin VanCleef', NULL, NULL), + (1092, 3263, 1, 14821, 14807, 2, 30, 11, 23, 'Shadowfang Keep\r\n', 5, 'Archmage Arugal kills (Shadowfang Keep)', 'Archmage Arugal', NULL, NULL), + (1093, 3264, 2, 14821, 14807, 2.2, 43, 23, 33, 'Scarlet Monastery', 5, 'Scarlet Commander Mograine kills (Scarlet Monastery)', 'Scarlet Commander Mograine', NULL, NULL), + (1094, 3265, 2, 14821, 14807, 2.5, 58, 39, 45, 'Zul\'Farrak\r\n', 5, 'Chief Ukorz Sandscalp kills (Zul\'Farrak)', 'Chief Ukorz Sandscalp', NULL, NULL), + (1095, 3266, 2, 14821, 14807, 2.7, 60, 42, 55, 'Blackrock Depths', 5, 'Emperor Dagran Thaurissan kills (Blackrock Depths)', 'Emperor Dagran Thaurissan', NULL, NULL), + (1096, 3268, 2, 14821, 14807, 2.8, 60, 48, 58, 'Blackrock Spire', 5, 'General Drakkisath kills (Blackrock Spire)', 'General Drakkisath', NULL, NULL), + (1097, 3270, 2, 14821, 14807, 2.7, 60, 37, 55, 'Stratholme', 5, 'Baron Rivendare kills (Stratholme)', 'Baron Rivendare', NULL, NULL), + (1098, 3271, 1, 14821, 14807, 6, 80, 80, 80, 'Onyxia\'s Lair', 5, 'Onyxia kills (Onyxia\'s Lair)', 'Onyxia', NULL, NULL), + (1099, 3272, 2, 14821, 14807, 3, 60, 50, 60, 'Molten Core', 5, 'Ragnaros kills (Molten Core)', 'Ragnaros', NULL, NULL), + (1100, 3273, 2, 14821, 14807, 3, 60, 50, 60, 'Blackwing Lair', 5, 'Nefarian kills (Blackwing Lair)', 'Nefarian', NULL, NULL), + (1101, 3274, 2, 14821, 14807, 3.5, 60, 50, 60, NULL, 5, 'C\'Thun kills (Temple of Ahn\'Qiraj)', 'C\'Thun', NULL, NULL), + (1102, 3275, 2, 14821, 14807, 2.6, 60, 50, 55, NULL, 5, 'Hakkar kills (Zul\'Gurub)', 'Hakkar', NULL, NULL), + (1103, 5621, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'Ingvar the Plunderer', NULL, NULL), + (1103, 5622, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'Keristrasza', NULL, NULL), + (1103, 5623, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'Anub\'arak', NULL, NULL), + (1103, 5624, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'Herald Volazj', NULL, NULL), + (1103, 5625, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'The Prophet Tharon\'ja', NULL, NULL), + (1103, 5626, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'Cyanigosa', NULL, NULL), + (1103, 5627, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'Gal\'darah', NULL, NULL), + (1103, 5628, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'Sjonnir the Ironshaper', NULL, NULL), + (1103, 5629, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'Kronus', NULL, NULL), + (1103, 5630, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'Ley-Guardian Eregos', NULL, NULL), + (1103, 5631, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'King Ymiron', NULL, NULL), + (1103, 5632, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'Mal\'Ganis', NULL, NULL), + (1103, 6432, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 0, 'Lich King 5-player dungeons completed (final boss killed)', 'Mal\'Ganis', NULL, NULL), + (1104, 5643, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player raids completed (final boss killed)', 'Yogg-Saron', NULL, NULL), + (1104, 5647, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player raids completed (final boss killed)', 'Kel\'Thuzad', NULL, NULL), + (1104, 5691, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player raids completed (final boss killed)', 'Sartharion the Onyx Guardian', NULL, NULL), + (1104, 5692, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player raids completed (final boss killed)', 'Malygos', NULL, NULL), + (1104, 13308, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player raids completed (final boss killed)', 'Anub\'arak', NULL, NULL), + (1104, 13309, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player raids completed (final boss killed)', 'The Lich King', NULL, NULL), + (1106, 3276, 1, 124, 122, -0.3, 80, 1, 1, NULL, 0, 'Deaths in Eye of the Storm', 'Deaths in Eye of the Storm', NULL, NULL), + (1107, 4963, 1, 123, 122, 1, 80, 1, 1, NULL, 0, 'Deaths in 3v3', '3v3 Deaths', NULL, NULL), + (1108, 4964, 1, 123, 122, 1, 80, 1, 1, NULL, 0, 'Deaths in 5v5', '5v5 Deaths', NULL, NULL), + (1109, 4961, 1, 136, 128, 1, 80, 1, 1, NULL, 0, '5v5 Arena Honorable Kills', '5v5 Arena Kills', NULL, NULL), + (1110, 4960, 1, 136, 128, 1, 80, 1, 1, NULL, 0, '3v3 Arena Honorable Kills', '3v3 Arena Kills', NULL, NULL), + (1111, 4959, 1, 136, 128, 1, 80, 1, 1, NULL, 0, '2v2 Arena Honorable Kills', '2v2 Arena Kills', NULL, NULL), + (1112, 5510, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Eye of the Storm Honorable Kills', 'Eye of the Storm Honorable Kills', NULL, NULL), + (1113, 5507, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Alterac Valley Honorable Kills', 'Alterac Valley Honorable Kills', NULL, NULL), + (1114, 5508, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Arathi Basin Honorable Kills', 'Arathi Basin Honorable Kills', NULL, NULL), + (1115, 5509, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Warsong Gulch Honorable Kills', 'Warsong Gulch Honorable Kills', NULL, NULL), + (1125, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Bandage used most', NULL, NULL, NULL), + (1145, 3351, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'King of the Fire Festival', 'Alliance, A Thief\'s Reward', NULL, NULL), + (1145, 3352, 10, 161, 155, 1, 80, 1, 1, NULL, 10, 'King of the Fire Festival', 'Horde, A Thief\'s Reward', NULL, NULL), + (1146, 3356, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Gold spent on travel', 'Gold spent on travel', NULL, NULL), + (1147, 3357, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Gold spent at barber shops', 'Gold spent at barber shops', NULL, NULL), + (1148, 3358, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Gold spent on postage', 'Gold spent on postage', NULL, NULL), + (1149, 3359, 1, 130, 1, 1, 80, 1, 1, NULL, 0, 'Talent tree respecs', 'Talent tree respecs', NULL, NULL), + (1150, 3360, 1, 140, 130, 1, 80, 1, 1, NULL, 0, 'Gold spent on talent tree respecs', 'Gold spent on talent tree respecs', NULL, NULL), + (1151, 3363, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Loyal Defender', '50 honorable kills in the Hall of the Stormpike', NULL, NULL), + (1153, 3372, 10, 14802, 95, 1, 80, 1, 1, NULL, 10, 'Overly Defensive', 'Defend 3 Bases', NULL, NULL), + (1157, 3680, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Duel-icious', 'Win a duel', NULL, NULL), + (1159, 3381, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Just the Two of Us: 2200', '2200 rating', NULL, NULL), + (1160, 3382, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Three\'s Company: 2200', '2200 rating', NULL, NULL), + (1161, 3383, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'High Five: 2200', '2200 rating', NULL, NULL), + (1162, 3384, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Hotter Streak', 'Win 10 arenas without losing', NULL, NULL), + (1164, 3388, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Everything Counts', 'Kobold Cave Owned', NULL, NULL), + (1164, 3389, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'Everything Counts', 'Trogg Cave Owned', NULL, NULL), + (1165, 3390, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'My Sack is "Gigantique"', '"Gigantique" Bag', NULL, NULL), + (1166, 3391, 10, 14801, 95, 1, 80, 1, 1, NULL, 10, 'To the Looter Go the Spoils', 'Autographed Picture of Foror & Tigule', NULL, NULL), + (1167, 3392, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Alterac Valley Veteran', NULL, NULL), + (1167, 3393, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Alterac Grave Robber', NULL, NULL), + (1167, 3394, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Tower Defense', NULL, NULL), + (1167, 3395, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Loyal Defender', NULL, NULL), + (1167, 3396, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Everything Counts', NULL, NULL), + (1167, 3397, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'The Alterac Blitz', NULL, NULL), + (1167, 3398, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'The Sickly Gazelle', NULL, NULL), + (1167, 3399, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Stormpike Perfection', NULL, NULL), + (1167, 3400, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Alterac Valley All-Star', NULL, NULL), + (1167, 3401, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Stormpike Battle Charger', NULL, NULL), + (1167, 3403, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'To the Looter Go The Spoils', NULL, NULL), + (1168, 3404, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Alterac Valley Veteran', NULL, NULL), + (1168, 3405, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Alterac Grave Robber', NULL, NULL), + (1168, 3406, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Tower Defense', NULL, NULL), + (1168, 3407, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Loyal Defender', NULL, NULL), + (1168, 3408, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Everything Counts', NULL, NULL), + (1168, 3409, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'The Alterac Blitz', NULL, NULL), + (1168, 3410, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'The Sickly Gazelle', NULL, NULL), + (1168, 3411, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Frostwolf Perfection', NULL, NULL), + (1168, 3412, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Alterac Valley All-Star', NULL, NULL), + (1168, 3413, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'Frostwolf Howler', NULL, NULL), + (1168, 3415, 25, 14801, 95, 1, 80, 1, 1, NULL, 25, 'Master of Alterac Valley', 'To the Looter Go the Spoils', NULL, NULL), + (1169, 3416, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Arathi Basin Veteran', NULL, NULL), + (1169, 3417, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Arathi Basin Perfection', NULL, NULL), + (1169, 3418, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Me and the Cappin\' Makin\' it Happen', NULL, NULL), + (1169, 3419, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Disgracin\' The Basin', NULL, NULL), + (1169, 3420, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Overly Defensive', NULL, NULL), + (1169, 3421, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'To The Rescue!', NULL, NULL), + (1169, 3422, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Resilient Victory', NULL, NULL), + (1169, 3423, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Territorial Dominance', NULL, NULL), + (1169, 3424, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Let\'s Get This Done', NULL, NULL), + (1169, 3427, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'We Had It All Along *cough*', NULL, NULL), + (1169, 3429, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Arathi Basin All-Star', NULL, NULL), + (1169, 3430, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Arathi Basin Assassin', NULL, NULL), + (1170, 3431, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Arathi Basin Veteran', NULL, NULL), + (1170, 3432, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Arathi Basin Perfection', NULL, NULL), + (1170, 3433, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Me and the Cappin\' Makin\' it Happen', NULL, NULL), + (1170, 3434, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Disgracin\' The Basin', NULL, NULL), + (1170, 3435, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Overly Defensive', NULL, NULL), + (1170, 3436, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'To The Rescue!', NULL, NULL), + (1170, 3437, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Resilient Victory', NULL, NULL), + (1170, 3438, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Territorial Dominance', NULL, NULL), + (1170, 3439, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Let\'s Get This Done', NULL, NULL), + (1170, 3442, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'We Had It All Along *cough*', NULL, NULL), + (1170, 3444, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Arathi Basin All-Star', NULL, NULL), + (1170, 3445, 25, 14802, 95, 1, 80, 1, 1, NULL, 25, 'Master of Arathi Basin', 'Arathi Basin Assassin', NULL, NULL), + (1171, 3446, 25, 14803, 95, 1, 80, 1, 1, NULL, 25, 'Master of Eye of the Storm', 'Eye of the Storm Veteran', NULL, NULL), + (1171, 3447, 25, 14803, 95, 1, 80, 1, 1, NULL, 25, 'Master of Eye of the Storm', 'The Perfect Storm', NULL, NULL), + (1171, 3448, 25, 14803, 95, 1, 80, 1, 1, NULL, 25, 'Master of Eye of the Storm', 'Eye of the Storm Domination', NULL, NULL), + (1171, 3449, 25, 14803, 95, 1, 80, 1, 1, NULL, 25, 'Master of Eye of the Storm', 'Flurry', NULL, NULL), + (1171, 3450, 25, 14803, 95, 1, 80, 1, 1, NULL, 25, 'Master of Eye of the Storm', 'Stormtrooper', NULL, NULL), + (1171, 3451, 25, 14803, 95, 1, 80, 1, 1, NULL, 25, 'Master of Eye of the Storm', 'Storm Capper', NULL, NULL), + (1171, 3452, 25, 14803, 95, 1, 80, 1, 1, NULL, 25, 'Master of Eye of the Storm', 'Bound for Glory', NULL, NULL), + (1171, 3453, 25, 14803, 95, 1, 80, 1, 1, NULL, 25, 'Master of Eye of the Storm', 'Bloodthirsty Berserker', NULL, NULL), + (1172, 3461, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Warsong Gulch Veteran', NULL, NULL), + (1172, 3462, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Capture the Flag', NULL, NULL), + (1172, 3463, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Persistent Defender', NULL, NULL), + (1172, 3464, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Frenzied Defender', NULL, NULL), + (1172, 3465, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Warsong Gulch Perfection', NULL, NULL), + (1172, 3466, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Warsong Expedience', NULL, NULL), + (1172, 3467, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Ironman', NULL, NULL), + (1172, 3469, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Not In My House', NULL, NULL), + (1172, 3470, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Quick Cap', NULL, NULL), + (1172, 3471, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Supreme Defender', NULL, NULL), + (1172, 3472, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Save The Day', NULL, NULL), + (1173, 3476, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Warsong Gulch Veteran', NULL, NULL), + (1173, 3477, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Capture the Flag', NULL, NULL), + (1173, 3478, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Persistent Defender', NULL, NULL), + (1173, 3479, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Frenzied Defender', NULL, NULL), + (1173, 3480, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Warsong Gulch Perfection', NULL, NULL), + (1173, 3481, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Warsong Expedience', NULL, NULL), + (1173, 3482, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Ironman', NULL, NULL), + (1173, 3484, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Not In My House', NULL, NULL), + (1173, 3485, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Quick Cap', NULL, NULL), + (1173, 3486, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Supreme Defender', NULL, NULL), + (1173, 3487, 25, 14804, 95, 1, 80, 1, 1, NULL, 25, 'Master of Warsong Gulch', 'Save The Day', NULL, NULL), + (1174, 3488, 50, 165, 95, 1, 80, 1, 1, NULL, 50, 'The Arena Master', 'World Wide Winner', NULL, NULL), + (1174, 3489, 50, 165, 95, 1, 80, 1, 1, NULL, 50, 'The Arena Master', 'Brutally Dedicated', NULL, NULL), + (1174, 3490, 50, 165, 95, 1, 80, 1, 1, NULL, 50, 'The Arena Master', 'Just the Two of Us: 2200', NULL, NULL), + (1174, 3491, 50, 165, 95, 1, 80, 1, 1, NULL, 50, 'The Arena Master', 'Three\'s Company: 2200', NULL, NULL), + (1174, 3492, 50, 165, 95, 1, 80, 1, 1, NULL, 50, 'The Arena Master', 'High Five: 2200', NULL, NULL), + (1174, 3493, 50, 165, 95, 1, 80, 1, 1, NULL, 50, 'The Arena Master', 'Hot Streak', NULL, NULL), + (1174, 3494, 50, 165, 95, 1, 80, 1, 1, NULL, 50, 'The Arena Master', 'Hotter Streak', NULL, NULL), + (1174, 3496, 50, 165, 95, 1, 80, 1, 1, NULL, 50, 'The Arena Master', 'Last Man Standing', NULL, NULL), + (1175, 3500, 50, 95, -1, 1, 80, 1, 1, NULL, 50, 'Battlemaster', 'Master of Alterac Valley', NULL, NULL), + (1175, 3501, 50, 95, -1, 1, 80, 1, 1, NULL, 50, 'Battlemaster', 'Master of Arathi Basin', NULL, NULL), + (1175, 3502, 50, 95, -1, 1, 80, 1, 1, NULL, 50, 'Battlemaster', 'Master of Warsong Gulch', NULL, NULL), + (1175, 3503, 50, 95, -1, 1, 80, 1, 1, NULL, 50, 'Battlemaster', 'Master of Eye of the Storm', NULL, NULL), + (1175, 7641, 50, 95, -1, 1, 80, 1, 1, NULL, 50, 'Battlemaster', 'Master of Strand of the Ancients', NULL, NULL), + (1176, 3506, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Got My Mind On My Money', 'Loot 100 gold', NULL, NULL), + (1177, 3507, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Got My Mind On My Money', 'Loot 1,000 gold', NULL, NULL), + (1178, 3512, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Got My Mind On My Money', 'Loot 5,000 gold', NULL, NULL), + (1180, 3510, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Got My Mind On My Money', 'Loot 10,000 gold', NULL, NULL), + (1181, 3511, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Got My Mind On My Money', 'Loot 25,000 gold', NULL, NULL), + (1182, 3513, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'The Bread Winner', '10,000 gold from quest rewards', NULL, NULL), + (1183, 3515, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Wild Winter Pilsner', NULL, NULL), + (1183, 3516, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Stranglethorn Brew', NULL, NULL), + (1183, 3517, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Springtime Stout', NULL, NULL), + (1183, 3518, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Metok\'s Bubble Bock', NULL, NULL), + (1183, 3519, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Lord of Frost\'s Private Label', NULL, NULL), + (1183, 3520, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Izzard\'s Ever Flavor', NULL, NULL), + (1183, 3521, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Draenic Pale Ale', NULL, NULL), + (1183, 3522, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Blackrock Lager', NULL, NULL), + (1183, 3523, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Binary Brew', NULL, NULL), + (1183, 3524, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Bartlett\'s Bitter Brew', NULL, NULL), + (1183, 3525, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Autumnal Acorn Ale', NULL, NULL), + (1183, 3526, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Year', 'Aromatic Honey Brew', NULL, NULL), + (1184, 3527, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Barleybrew Clear', NULL, NULL), + (1184, 3528, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Barleybrew Dark', NULL, NULL), + (1184, 3529, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Barleybrew Light', NULL, NULL), + (1184, 3531, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Gordok Grog', NULL, NULL), + (1184, 3534, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Mudder\'s Milk', NULL, NULL), + (1184, 3535, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Ogre Mead', NULL, NULL), + (1184, 3539, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Thunder 45', NULL, NULL), + (1184, 3540, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Thunderbrew Ale', NULL, NULL), + (1184, 3541, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Thunderbrew Stout', NULL, NULL), + (1185, 3542, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'The Brewfest Diet', 'Dried Sausage', NULL, NULL), + (1185, 3543, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'The Brewfest Diet', 'Pickled Sausage', NULL, NULL), + (1185, 3544, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'The Brewfest Diet', 'Savory Sausage', NULL, NULL), + (1185, 3545, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'The Brewfest Diet', 'Spiced Onion Cheese', NULL, NULL), + (1185, 3546, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'The Brewfest Diet', 'Spicy Smoked Sausage', NULL, NULL), + (1185, 3547, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'The Brewfest Diet', 'Succulent Sausage', NULL, NULL), + (1185, 3548, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'The Brewfest Diet', 'The Essential Brewfest Pretzel', NULL, NULL), + (1185, 3549, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'The Brewfest Diet', 'The Golden Link', NULL, NULL), + (1186, 3557, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Down With The Dark Iron', 'Alliance', NULL, NULL), + (1186, 3558, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Down With The Dark Iron', 'Horde', NULL, NULL), + (1187, 3559, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Keymaster', 'Auchenai Key', NULL, NULL), + (1187, 3560, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Keymaster', 'Crescent Key', NULL, NULL), + (1187, 3562, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Keymaster', 'Key of Time', NULL, NULL), + (1187, 3563, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Keymaster', 'Key to the City', NULL, NULL), + (1187, 3564, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Keymaster', 'Shadow Labyrinth Key', NULL, NULL), + (1187, 3565, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Keymaster', 'Shadowforge Key', NULL, NULL), + (1187, 3566, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Keymaster', 'Shattered Halls Key', NULL, NULL), + (1187, 3567, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Keymaster', 'The Scarlet Key', NULL, NULL), + (1187, 3568, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Keymaster', 'Workshop Key', NULL, NULL), + (1187, 3569, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Keymaster', 'Skeleton Key', NULL, NULL), + (1187, 5099, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'The Keymaster', 'The Violet Hold Key', NULL, NULL), + (1188, 3572, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Shafted!', '10x Silver Shafted Arrow', NULL, NULL), + (1189, 3583, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'To Hellfire and Back', '80 Hellfire quests', NULL, NULL), + (1190, 3584, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Mysteries of the Marsh', '54 Zangarmarsh quests', NULL, NULL), + (1191, 3585, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Terror of Terokkar', '63 Terokkar Forest quests', NULL, NULL), + (1192, 3586, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Nagrand Slam', '75 Nagrand quests', NULL, NULL), + (1193, 3587, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'On the Blade\'s Edge', '86 Blade\'s Edge Mountains quests', NULL, NULL), + (1194, 3588, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Into the Nether', '120 Netherstorm quests', NULL, NULL), + (1195, 3589, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Shadow of the Betrayer', '90 Shadowmoon Valley quests', NULL, NULL), + (1197, 4944, 1, 128, 1, 1, 80, 1, 1, NULL, 0, 'Total kills', 'Total NPC kills', 4537, 3), + (1197, 13259, 1, 128, 1, 1, 80, 1, 1, NULL, 0, 'Total kills', 'Honorable Kills', NULL, NULL), + (1198, 4946, 1, 128, 1, 1, 80, 1, 1, NULL, 0, 'Total kills that grant experience or honor', 'Kill an NPC that yields XP', NULL, NULL), + (1198, 9160, 1, 128, 1, 1, 80, 1, 1, NULL, 0, 'Total kills that grant experience or honor', 'Honroable Kills', NULL, NULL), + (1199, 5551, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions learned', 'Alchemy', NULL, NULL), + (1199, 5552, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions learned', 'Blacksmithing', NULL, NULL), + (1199, 5553, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions learned', 'Enchanting', NULL, NULL), + (1199, 5554, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions learned', 'Engineering', NULL, NULL), + (1199, 5555, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions learned', 'Herbalism', NULL, NULL), + (1199, 5556, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions learned', 'Inscription', NULL, NULL), + (1199, 5557, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions learned', 'Jewelcrafting', NULL, NULL), + (1199, 5558, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions learned', 'Leatherworking', NULL, NULL), + (1199, 5559, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions learned', 'Mining', NULL, NULL), + (1199, 5560, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions learned', 'Skinning', NULL, NULL), + (1199, 5561, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions learned', 'Tailoring', NULL, NULL), + (1200, 5562, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Secondary skills at maximum skill', 'First Aid', NULL, NULL), + (1200, 5563, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Secondary skills at maximum skill', 'Cooking', NULL, NULL), + (1200, 5564, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Secondary skills at maximum skill', 'Fishing', NULL, NULL), + (1201, 5565, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions at maximum skill', 'Alchemy', NULL, NULL), + (1201, 5566, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions at maximum skill', 'Blacksmithing', NULL, NULL), + (1201, 5567, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions at maximum skill', 'Enchanting', NULL, NULL), + (1201, 5568, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions at maximum skill', 'Engineering', NULL, NULL), + (1201, 5569, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions at maximum skill', 'Herbalism', NULL, NULL), + (1201, 5570, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions at maximum skill', 'Inscription', NULL, NULL), + (1201, 5571, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions at maximum skill', 'Jewelcrafting', NULL, NULL), + (1201, 5572, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions at maximum skill', 'Leatherworking', NULL, NULL), + (1201, 5573, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions at maximum skill', 'Mining', NULL, NULL), + (1201, 5574, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions at maximum skill', 'Skinning', NULL, NULL), + (1201, 5575, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Professions at maximum skill', 'Tailoring', NULL, NULL), + (1202, 5576, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Swords', NULL, NULL), + (1202, 5577, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Two-Handed Swords', NULL, NULL), + (1202, 5578, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Axes', NULL, NULL), + (1202, 5579, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Two-Handed Axes', NULL, NULL), + (1202, 5580, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Maces', NULL, NULL), + (1202, 5581, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Two-Handed Maces', NULL, NULL), + (1202, 5582, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Fist Weapons', NULL, NULL), + (1202, 5583, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Guns', NULL, NULL), + (1202, 5584, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Blows', NULL, NULL), + (1202, 5585, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Daggers', NULL, NULL), + (1202, 5586, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Wands', NULL, NULL), + (1202, 5587, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Thrown', NULL, NULL), + (1202, 5588, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Crossbows', NULL, NULL), + (1202, 5589, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Unarmed', NULL, NULL), + (1202, 5590, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Polearms', NULL, NULL), + (1202, 5591, 1, 132, 1, 1, 80, 1, 1, NULL, 0, 'Weapon skills at maximum skill', 'Staves', NULL, NULL), + (1203, 3594, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Brewdoo Magic', NULL, NULL), + (1203, 3595, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Gordok Grog', NULL, NULL), + (1203, 3596, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Jungle River Water', NULL, NULL), + (1203, 3597, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Long Stride Brew', NULL, NULL), + (1203, 3598, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Mudder\'s Milk', NULL, NULL), + (1203, 3599, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Ogre Mead', NULL, NULL), + (1203, 3600, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Path of Brew', NULL, NULL), + (1203, 3601, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Small Step Brew', NULL, NULL), + (1203, 3602, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Strange Brew', 'Stout Shrunken Head', NULL, NULL), + (1205, 13427, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Hero of Shattrath', 'Exalted with The Aldor', NULL, NULL), + (1205, 13428, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Hero of Shattrath', 'Exalted with The Scryers', NULL, NULL), + (1206, 3615, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Squirrel', NULL, NULL), + (1206, 3739, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Steam Frog', NULL, NULL), + (1206, 3741, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Borean Frog', NULL, NULL), + (1206, 3744, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Cat', NULL, NULL), + (1206, 3745, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Chicken', NULL, NULL), + (1206, 3746, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Cow', NULL, NULL), + (1206, 3747, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Crab', NULL, NULL), + (1206, 3748, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Deer', NULL, NULL), + (1206, 3749, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Ewe', NULL, NULL), + (1206, 3750, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Fawn', NULL, NULL), + (1206, 3751, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Frog', NULL, NULL), + (1206, 3752, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Gazelle', NULL, NULL), + (1206, 3753, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Hare', NULL, NULL), + (1206, 3754, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Parrot', NULL, NULL), + (1206, 3755, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Rabbit', NULL, NULL), + (1206, 3756, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Ram', NULL, NULL), + (1206, 3757, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Sheep', NULL, NULL), + (1206, 3758, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Skunk', NULL, NULL), + (1206, 3759, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Swine', NULL, NULL), + (1206, 3760, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Toad', NULL, NULL), + (1206, 3761, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels I\'ve Loved Before', 'Prairie Dog', NULL, NULL), + (1225, 3623, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Outland Angler', 'Brackish Mixed School', NULL, NULL), + (1225, 3624, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Outland Angler', 'Bluefish School', NULL, NULL), + (1225, 3625, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Outland Angler', 'Mudfish School', NULL, NULL), + (1225, 3626, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Outland Angler', 'School of Darter', NULL, NULL), + (1225, 3627, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Outland Angler', 'Highland Mixed School', NULL, NULL), + (1225, 3628, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Outland Angler', 'Sporefish School', NULL, NULL), + (1229, 3815, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Revived by druids', 'Revive (Rank 7)', NULL, NULL), + (1229, 4978, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Revived by druids', 'Revive (Rank 6)', NULL, NULL), + (1229, 4979, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Revived by druids', 'Revive (Rank 5)', NULL, NULL), + (1229, 4980, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Revived by druids', 'Revive (Rank 4)', NULL, NULL), + (1229, 4981, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Revived by druids', 'Revive (Rank 3)', NULL, NULL), + (1229, 4982, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Revived by druids', 'Revive (Rank 2)', NULL, NULL), + (1229, 4983, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Revived by druids', 'Revive (Rank 1)', NULL, NULL), + (1231, 3639, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Keristrasza kills (The Nexus)', 'Keristrasza', NULL, NULL), + (1232, 3643, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Anub\'arak kills (Azjol-Nerub)', 'Anub\'arak', NULL, NULL), + (1233, 3647, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Herald Volazj kills (Ahn\'kahet: The Old Kingdom)', 'Herald Volazj', NULL, NULL), + (1234, 3651, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'The Prophet Tharon\'ja kills (Drak\'Tharon Keep)', 'The Prophet Tharon\'ja', NULL, NULL), + (1234, 9258, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'The Prophet Tharon\'ja kills (Drak\'Tharon Keep)', 'The Prophet Tharon\'ja', NULL, NULL), + (1234, 9259, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'The Prophet Tharon\'ja kills (Drak\'Tharon Keep)', 'The Prophet Tharon\'ja', NULL, NULL), + (1235, 3652, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Cyanigosa kills (The Violet Hold)', 'Cyanigosa', NULL, NULL), + (1236, 3656, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Gal\'darah kills (Gundrak)', 'Gal\'darah', NULL, NULL), + (1237, 3659, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Sjonnir the Ironshaper kills (Halls of Stone)', 'Sjonnir the Ironshaper', NULL, NULL), + (1238, 3663, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Loken kills (Halls of Lightning)', 'Kronus', NULL, NULL), + (1239, 3667, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Ley-Guardian Eregos kills (The Oculus)', 'Ley-Guardian Eregos', NULL, NULL), + (1240, 3669, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'King Ymiron kills (Utgarde Pinnacle)', 'King Ymiron', NULL, NULL), + (1241, 3674, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Mal\'Ganis defeated (Caverns of Time: Stratholme)', 'Mal\'Ganis', NULL, NULL), + (1241, 5619, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Mal\'Ganis defeated (Caverns of Time: Stratholme)', 'Mal\'Ganis', NULL, NULL), + (1241, 6435, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Mal\'Ganis defeated (Caverns of Time: Stratholme)', 'Mal\'Ganis', NULL, NULL), + (1242, 3679, 1, 14823, 14807, 1, 80, 71, 76, NULL, 5, 'Ingvar the Plunderer kills (Utgarde Keep)', 'Ingvar the Plunderer', NULL, NULL), + (1243, 3681, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Fish Don\'t Leave Footprints', 'Find Fish', NULL, NULL), + (1244, 3762, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Aegwynn and the Dragon Hunt', NULL, NULL), + (1244, 3763, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Aftermath of the Second War', NULL, NULL), + (1244, 3764, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Arathor and the Troll Wars', NULL, NULL), + (1244, 3765, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Archimonde\'s Return and the Flight to Kalimdor', NULL, NULL), + (1244, 3766, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Beyond the Dark Portal', NULL, NULL), + (1244, 3767, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Charge of the Dragonflights', NULL, NULL), + (1244, 3768, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Civil War in the Plaguelands', NULL, NULL), + (1244, 3769, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Empires\' Fall', NULL, NULL), + (1244, 3770, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Exile of the High Elves', NULL, NULL), + (1244, 3771, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Icecrown and the Frozen Throne', NULL, NULL), + (1244, 3772, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Ironforge - the Awakening of the Dwarves', NULL, NULL), + (1244, 3773, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Kel\'Thuzad and the Forming of the Scourge', NULL, NULL), + (1244, 3774, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Kil\'jaeden and the Shadow Pact', NULL, NULL), + (1244, 3775, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Lethargy of the Orcs', NULL, NULL), + (1244, 3776, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Mount Hyjal and Illidan\'s Gift', NULL, NULL), + (1244, 3777, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Old Hatreds - The Colonization of Kalimdor', NULL, NULL), + (1244, 3778, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Rise of the Blood Elves', NULL, NULL), + (1244, 3779, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Rise of the Horde', NULL, NULL), + (1244, 3780, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Sargeras and the Betrayal', NULL, NULL), + (1244, 3781, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Sunwell - The Fall of Quel\'Thalas', NULL, NULL), + (1244, 3782, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Alliance of Lordaeron', NULL, NULL), + (1244, 3783, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Battle of Grim Batol', NULL, NULL), + (1244, 3784, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Betrayer Ascendant', NULL, NULL), + (1244, 3785, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Birth of the Lich King', NULL, NULL), + (1244, 3786, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Dark Portal and the Fall of Stormwind', NULL, NULL), + (1244, 3787, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Founding of Quel\'Thalas', NULL, NULL), + (1244, 3788, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Guardians of Tirisfal', NULL, NULL), + (1244, 3789, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Invasion of Draenor', NULL, NULL), + (1244, 3790, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Kaldorei and the Well of Eternity', NULL, NULL), + (1244, 3791, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Last Guardian', NULL, NULL), + (1244, 3792, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Lich King Triumphant', NULL, NULL), + (1244, 3793, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The New Horde', NULL, NULL), + (1244, 3794, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Old Gods and the Ordering of Azeroth', NULL, NULL), + (1244, 3795, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Scourge of Lordaeron', NULL, NULL), + (1244, 3796, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Sentinels and the Long Vigil', NULL, NULL), + (1244, 3797, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Seven Kingdoms', NULL, NULL), + (1244, 3798, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The Twin Empires', NULL, NULL), + (1244, 3799, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The War of the Ancients', NULL, NULL), + (1244, 3800, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'The World Tree and the Emerald Dream', NULL, NULL), + (1244, 3801, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'War of the Spider', NULL, NULL), + (1244, 3802, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'War of the Three Hammers', NULL, NULL), + (1244, 3803, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Well Read', 'Wrath of Soulflayer', NULL, NULL), + (1248, 3690, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Plethora of Pets', 'Obtain 25 companion pets', NULL, NULL), + (1250, 3692, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Shop Smart, Shop Pet...Smart', 'Obtain 50 companion pets', NULL, NULL), + (1251, 7021, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Not In My House', 'Kill 2 flag carriers before they leave the Warsong Flag Room', NULL, NULL), + (1252, 3699, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Supreme Defender', 'Alliance Flag Carriers', NULL, NULL), + (1253, 3814, 1, 127, 122, 1, 80, 1, 1, NULL, 0, 'Raised as a ghoul', 'Raised as a ghoul', NULL, NULL), + (1254, 3821, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Friend or Fowl?', '15 Turkeys in 3 minutes', NULL, NULL), + (1255, 10441, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Scrooge', 'Snowball King Magni Bronzebeard', NULL, NULL), + (1255, 10442, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Scrooge', 'Snowball King Magni Bronzebeard', NULL, NULL), + (1255, 10443, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Scrooge', 'Snowball King Magni Bronzebeard', NULL, NULL), + (1257, 3872, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Scavenger', 'Steam Pump Flotsam', NULL, NULL), + (1257, 3873, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Scavenger', 'Bloodsail Wreckage', NULL, NULL), + (1257, 3874, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Scavenger', 'Schooner Wreckage', NULL, NULL), + (1257, 3875, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Scavenger', 'Waterlogged Wreckage', NULL, NULL), + (1257, 3876, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Scavenger', 'Floating Wreckage', NULL, NULL), + (1258, 3879, 10, 14803, 95, 1, 80, 1, 1, NULL, 10, 'Take a Chill Pill', 'Killed a Berserking Player', NULL, NULL), + (1259, 3880, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Not So Fast', 'Killed a Sprinting Player', NULL, NULL), + (1260, 3881, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Drunken Stupor', '65 yards without dying while sloshed', NULL, NULL), + (1261, 3882, 10, 158, 155, 1, 80, 1, 1, NULL, 10, 'G.N.E.R.D. Rage', '50 Honorable Kills with the G.N.E.R.D. buff', NULL, NULL), + (1262, 3883, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'To Hellfire and Back', NULL, NULL), + (1262, 3884, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'Mysteries of the Marsh', NULL, NULL), + (1262, 3885, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'Terror of Terokkar', NULL, NULL), + (1262, 3886, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'Nagrand Slam', NULL, NULL), + (1262, 3887, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'On the Blade\'s Edge', NULL, NULL), + (1262, 3888, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'Into the Nether', NULL, NULL), + (1262, 3889, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'Shadow of the Betrayer', NULL, NULL), + (1263, 4136, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Kamagua', NULL, NULL), + (1263, 4137, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Cauldros Isle', NULL, NULL), + (1263, 4138, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Camp Winterhoof', NULL, NULL), + (1263, 4139, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Apothecary Camp', NULL, NULL), + (1263, 4140, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Vengeance Landing', NULL, NULL), + (1263, 4141, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Steel Gate', NULL, NULL), + (1263, 4142, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Scalawag Point', NULL, NULL), + (1263, 4143, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Nifflevar', NULL, NULL), + (1263, 4144, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Gjalerbron', NULL, NULL), + (1263, 4146, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Ember Clutch', NULL, NULL), + (1263, 4147, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Giant\'s Run', NULL, NULL), + (1263, 4148, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Fort Wildervar', NULL, NULL), + (1263, 4149, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Ivald\'s Ruin', NULL, NULL), + (1263, 4150, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Halgrind', NULL, NULL), + (1263, 4151, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'New Agamand', NULL, NULL), + (1263, 4152, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Skorn', NULL, NULL), + (1263, 4153, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'The Twisted Glade', NULL, NULL), + (1263, 4154, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Utgarde Keep', NULL, NULL), + (1263, 4155, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Westguard Keep', NULL, NULL), + (1263, 4157, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Baelgun\'s Excavation Site', NULL, NULL), + (1263, 4158, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Howling Fjord', 'Baleheim', NULL, NULL), + (1264, 4122, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'Temple City of En\'kilah', NULL, NULL), + (1264, 4123, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'Steeljaw\'s Caravan', NULL, NULL), + (1264, 4124, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'Riplash Strand', NULL, NULL), + (1264, 4125, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'Kaskala', NULL, NULL), + (1264, 4126, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'Garrosh\'s Landing', NULL, NULL), + (1264, 4127, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'Death\'s Stand', NULL, NULL), + (1264, 4128, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'Coldarra', NULL, NULL), + (1264, 4129, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'Bor\'gorok Outpost', NULL, NULL), + (1264, 4130, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'Amber Ledge', NULL, NULL), + (1264, 4131, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'Warsong Hold', NULL, NULL), + (1264, 4132, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'Valiance Keep', NULL, NULL), + (1264, 4134, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'The Geyser Fields', NULL, NULL), + (1264, 4135, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Borean Tundra', 'The Dens of the Dying', NULL, NULL), + (1265, 4159, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Galakrond\'s Rest', NULL, NULL), + (1265, 4160, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Lake Indu\'le', NULL, NULL), + (1265, 4161, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Ruby Dragonshrine', NULL, NULL), + (1265, 4162, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Obsidian Dragonshrine', NULL, NULL), + (1265, 4163, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'New Hearthglen', NULL, NULL), + (1265, 4164, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Naxxramas', NULL, NULL), + (1265, 4165, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Light\'s Trust', NULL, NULL), + (1265, 4166, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Icemist Village', NULL, NULL), + (1265, 4167, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Emerald Dragonshrine', NULL, NULL), + (1265, 4168, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Coldwind Heights', NULL, NULL), + (1265, 4170, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Angrathar the Wrath Gate', NULL, NULL), + (1265, 4171, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Agmar\'s Hammer', NULL, NULL), + (1265, 4172, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Wyrmrest Temple', NULL, NULL), + (1265, 4173, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Westwind Refugee Camp', NULL, NULL), + (1265, 4174, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Venomspite', NULL, NULL), + (1265, 4175, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'The Forgotten Shore', NULL, NULL), + (1265, 4176, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'The Crystal Vice', NULL, NULL), + (1265, 4177, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Dragonblight', 'Scarlet Point', NULL, NULL), + (1266, 4178, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Conquest Hold', NULL, NULL), + (1266, 4179, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Drak\'Tharon Keep', NULL, NULL), + (1266, 4180, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Drakil\'jin Ruins', NULL, NULL), + (1266, 4181, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Dun Argol', NULL, NULL), + (1266, 4182, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Granite Springs', NULL, NULL), + (1266, 4183, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Grizzlemaw', NULL, NULL), + (1266, 4184, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Rage Fang Shrine', NULL, NULL), + (1266, 4185, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Thor Modan', NULL, NULL), + (1266, 4186, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Venture Bay', NULL, NULL), + (1266, 4187, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Voldrune', NULL, NULL), + (1266, 4188, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Amberpine Lodge', NULL, NULL), + (1266, 4189, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Blue Sky Logging Grounds', NULL, NULL), + (1266, 4190, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Camp Oneqwah', NULL, NULL), + (1266, 4191, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Grizzly Hills', 'Westfall Brigade Encampment', NULL, NULL), + (1267, 4192, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Gundrak', NULL, NULL), + (1267, 4193, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Drak\'Sotra Fields', NULL, NULL), + (1267, 4194, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Ampitheater of Anguish', NULL, NULL), + (1267, 4195, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Altar of Sseratus', NULL, NULL), + (1267, 4196, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Altar of Rhunok', NULL, NULL), + (1267, 4197, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Altar of Quetz\'lun', NULL, NULL), + (1267, 4198, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Altar of Mam\'toth', NULL, NULL), + (1267, 4199, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Altar of Har\'koa', NULL, NULL), + (1267, 4200, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Zim\'Torga', NULL, NULL), + (1267, 4201, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Zeramas', NULL, NULL), + (1267, 4202, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Voltarus', NULL, NULL), + (1267, 4203, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Thrym\'s End', NULL, NULL), + (1267, 4204, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Light\'s Breach', NULL, NULL), + (1267, 4205, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Zul\'Drak', 'Kolramas', NULL, NULL), + (1268, 4206, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'River\'s Heart', NULL, NULL), + (1268, 4207, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'The Savage Thicket', NULL, NULL), + (1268, 4208, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'The Mosslight Pillar', NULL, NULL), + (1268, 4209, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'Makers\' Overlook', NULL, NULL), + (1268, 4210, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'Makers\' Perch', NULL, NULL), + (1268, 4211, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'The Suntouched Pillar', NULL, NULL), + (1268, 4212, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'Rainspeaker Canopy', NULL, NULL), + (1268, 4213, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'The Lifeblood Pillar', NULL, NULL), + (1268, 4214, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'The Avalanche', NULL, NULL), + (1268, 4215, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'The Glimmering Pillar', NULL, NULL), + (1268, 4217, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'Kartak\'s Hold', NULL, NULL), + (1268, 4218, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Sholazar Basin', 'The Stormwright\'s Shelf', NULL, NULL), + (1269, 5843, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Brunnhildar Village', NULL, NULL), + (1269, 5844, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Narvir\'s Cradle', NULL, NULL), + (1269, 5845, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Dun Niffelem', NULL, NULL), + (1269, 5846, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Bor\'s Breath', NULL, NULL), + (1269, 5847, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Valkyrion', NULL, NULL), + (1269, 5848, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Terrace of the Makers', NULL, NULL), + (1269, 5849, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Sparksocket Minefield', NULL, NULL), + (1269, 5850, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Engine of the Makers', NULL, NULL), + (1269, 5851, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Temple of Life', NULL, NULL), + (1269, 5852, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Ulduar', NULL, NULL), + (1269, 5853, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Thunderfall', NULL, NULL), + (1269, 5854, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Temple of Storms', NULL, NULL), + (1269, 5855, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Snowdrift Plains', NULL, NULL), + (1269, 5856, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Garm\'s Bane', NULL, NULL), + (1269, 5857, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Frosthold', NULL, NULL), + (1269, 5858, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Storm Peaks', 'Nidavelir', NULL, NULL), + (1270, 5859, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'The Bombardment', NULL, NULL), + (1270, 5860, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'Icecrown Citadel', NULL, NULL), + (1270, 5861, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'Onslaught Harbor', NULL, NULL), + (1270, 5862, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'The Broken Front', NULL, NULL), + (1270, 5863, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'The Fleshwerks', NULL, NULL), + (1270, 5864, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'Aldur\'thar: The Desolation Gate', NULL, NULL), + (1270, 5865, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'Sindragosa\'s Fall', NULL, NULL), + (1270, 5866, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'Valhalas', NULL, NULL), + (1270, 5867, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'Valley of Echoes', NULL, NULL), + (1270, 5868, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'Ymirheim', NULL, NULL), + (1270, 5869, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'The Conflagration', NULL, NULL), + (1270, 5871, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'Corp\'rethar: The Horror Gate', NULL, NULL), + (1270, 5872, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'Jotunheim', NULL, NULL), + (1270, 5873, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'Scourgeholme', NULL, NULL), + (1270, 5874, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Icecrown', 'The Shadow Vault', NULL, NULL), + (1271, 3912, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'To Hellfire and Back', '90 Hellfire quests', NULL, NULL), + (1272, 3913, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Terror of Terokkar', '68 Terokkar Forest quests', NULL, NULL), + (1273, 3914, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Nagrand Slam', '87 Nagrand quests', NULL, NULL), + (1274, 3915, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'To Hellfire and Back', NULL, NULL), + (1274, 3916, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'Mysteries of the Marsh', NULL, NULL), + (1274, 3917, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'Terror of Terokkar', NULL, NULL), + (1274, 3918, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'Nagrand Slam', NULL, NULL), + (1274, 3919, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'On the Blade\'s Edge', NULL, NULL), + (1274, 3920, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'Into the Nether', NULL, NULL), + (1274, 3921, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Outland', 'Shadow of the Betrayer', NULL, NULL), + (1275, 3922, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Bombs Away', 'Fires Over Skettis', NULL, NULL), + (1276, 3923, 10, 14862, 96, 1, 80, 1, 1, NULL, 10, 'Blade\'s Edge Bomberman', 'Bomb Them Again!', NULL, NULL), + (1277, 3924, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Rapid Defense', 'Defending Wyrmrest Temple', NULL, NULL), + (1279, 3931, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Flirt With Disaster', 'Kissed Sraaz', NULL, NULL), + (1279, 12859, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Flirt With Disaster', 'Handful of Rose Petals on Sraaz', NULL, NULL), + (1280, 3929, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Flirt With Disaster', 'Kissed Jeremiah Payson', NULL, NULL), + (1280, 4227, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Flirt With Disaster', 'Handful of Rose Petals on Jeremiah Payson', NULL, NULL), + (1281, 3932, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'The Rocket\'s Red Glare', 'Shoot off 10 Red Rocket Clusters in 25 seconds or less', NULL, NULL), + (1282, 3936, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Fa-la-la-la-Ogri\'la', 'Summon Reindeer Flying Mount Tier 3.5 (Brown) (PVP Reward)', NULL, NULL), + (1282, 3937, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Fa-la-la-la-Ogri\'la', 'Summon Reindeer Flying Mount Tier 3.0 (Brown)', NULL, NULL), + (1282, 3938, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Fa-la-la-la-Ogri\'la', 'Summon Reindeer Flying Mount Tier 2.0 (Brown)', NULL, NULL), + (1283, 3939, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Deadmines', NULL, NULL), + (1283, 3940, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Ragefire Chasm', NULL, NULL), + (1283, 3941, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Wailing Caverns', NULL, NULL), + (1283, 3942, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Shadowfang Keep', NULL, NULL), + (1283, 3943, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Blackfathom Deeps', NULL, NULL), + (1283, 3944, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Stormwind Stockade', NULL, NULL), + (1283, 3945, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Gnomeregan', NULL, NULL), + (1283, 3946, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Razorfen Kraul', NULL, NULL), + (1283, 3947, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Razorfen Downs', NULL, NULL), + (1283, 3948, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Scarlet Monastery', NULL, NULL), + (1283, 3949, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Uldaman', NULL, NULL), + (1283, 3950, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Zul\'Farrak', NULL, NULL), + (1283, 3951, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Maraudon', NULL, NULL), + (1283, 3952, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Sunken Temple', NULL, NULL), + (1283, 3953, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Blackrock Depths', NULL, NULL), + (1283, 3954, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Blackrock Spire', NULL, NULL), + (1283, 3955, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'King of Dire Maul', NULL, NULL), + (1283, 3956, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Scholomance', NULL, NULL), + (1283, 3957, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Classic Dungeonmaster', 'Stratholme', NULL, NULL), + (1284, 3964, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'Hellfire Ramparts', NULL, NULL), + (1284, 3965, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'The Blood Furnace', NULL, NULL), + (1284, 3966, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'The Slave Pens', NULL, NULL), + (1284, 3967, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'Underbog', NULL, NULL), + (1284, 3968, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'Mana-Tombs', NULL, NULL), + (1284, 3969, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'The Escape From Durnholde', NULL, NULL), + (1284, 3970, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'Sethekk Halls', NULL, NULL), + (1284, 3971, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'Shadow Labyrinth', NULL, NULL), + (1284, 3973, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'Opening of the Dark Portal', NULL, NULL), + (1284, 3974, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'The Steamvault', NULL, NULL), + (1284, 3975, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'The Shattered Halls', NULL, NULL), + (1284, 3976, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'The Mechanar', NULL, NULL), + (1284, 3977, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'The Botanica', NULL, NULL), + (1284, 3978, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'The Arcatraz', NULL, NULL), + (1284, 3979, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'Magister\'s Terrace', NULL, NULL), + (1284, 3980, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Outland Dungeonmaster', 'Auchenai Crypts', NULL, NULL), + (1285, 4009, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Classic Raider', 'Blackwing Lair', NULL, NULL), + (1285, 4010, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Classic Raider', 'Molten Core', NULL, NULL), + (1285, 4011, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Classic Raider', 'Temple of Ahn\'Qiraj', NULL, NULL), + (1285, 4012, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Classic Raider', 'Zul\'Gurub', NULL, NULL), + (1285, 4013, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Classic Raider', 'Ruins of Ahn\'Qiraj', NULL, NULL), + (1286, 4014, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Raider', 'Karazhan', NULL, NULL), + (1286, 4015, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Raider', 'Zul\'Aman', NULL, NULL), + (1286, 4016, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Raider', 'Gruul\'s Lair', NULL, NULL), + (1286, 4017, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Raider', 'Magtheridon\'s Lair', NULL, NULL), + (1286, 4018, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Raider', 'Serpentshrine Cavern', NULL, NULL), + (1286, 4019, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Raider', 'The Battle for Mount Hyjal', NULL, NULL), + (1286, 4020, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Raider', 'Tempest Keep', NULL, NULL), + (1286, 4021, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Raider', 'The Black Temple', NULL, NULL), + (1286, 4022, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Raider', 'Sunwell Plateau', NULL, NULL), + (1287, 4023, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic Hellfire Ramparts', NULL, NULL), + (1287, 4024, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic The Blood Furnace', NULL, NULL), + (1287, 4025, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic The Slave Pens', NULL, NULL), + (1287, 4026, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic Underbog', NULL, NULL), + (1287, 4027, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic Mana-Tombs', NULL, NULL), + (1287, 4028, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic The Escape From Durnholde', NULL, NULL), + (1287, 4029, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic Sethekk Halls', NULL, NULL), + (1287, 4030, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic Shadow Labyrinth', NULL, NULL), + (1287, 4032, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic Opening of the Dark Portal', NULL, NULL), + (1287, 4033, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic The Steamvault', NULL, NULL), + (1287, 4034, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic The Shattered Halls', NULL, NULL), + (1287, 4035, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic The Mechanar', NULL, NULL), + (1287, 4036, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic The Botanica', NULL, NULL), + (1287, 4037, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic The Arcatraz', NULL, NULL), + (1287, 4038, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic Magister\'s Terrace', NULL, NULL), + (1287, 4039, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Outland Dungeon Hero', 'Heroic Auchenai Crypts', NULL, NULL), + (1288, 4040, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'Utgarde Keep', NULL, NULL), + (1288, 4041, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'The Nexus', NULL, NULL), + (1288, 4042, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'Caverns of Time: Stratholme', NULL, NULL), + (1288, 4043, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'Azjol-Nerub', NULL, NULL), + (1288, 4044, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'Ahn\'kahet: The Old Kingdom', NULL, NULL), + (1288, 4045, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'Drak\'Tharon Keep', NULL, NULL), + (1288, 4046, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'The Violet Hold', NULL, NULL), + (1288, 4047, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'Gundrak', NULL, NULL), + (1288, 4048, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'Halls of Stone', NULL, NULL), + (1288, 4049, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'Halls of Lightning', NULL, NULL), + (1288, 4050, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'The Oculus', NULL, NULL), + (1288, 4051, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Northrend Dungeonmaster', 'Utgarde Pinnacle', NULL, NULL), + (1289, 4056, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic Utgarde Keep', NULL, NULL), + (1289, 4057, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic The Nexus', NULL, NULL), + (1289, 4058, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic Caverns of Time: Stratholme', NULL, NULL), + (1289, 4059, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic Azjol-Nerub', NULL, NULL), + (1289, 4060, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic Ahn\'kahet: The Old Kingdom', NULL, NULL), + (1289, 4061, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic Drak\'Tharon Keep', NULL, NULL), + (1289, 4062, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic The Violet Hold', NULL, NULL), + (1289, 4063, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic Gundrak', NULL, NULL), + (1289, 4064, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic Halls of Stone', NULL, NULL), + (1289, 4065, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic Halls of Lightning', NULL, NULL), + (1289, 4066, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic The Oculus', NULL, NULL), + (1289, 4067, 20, 168, -1, 1, 80, 1, 1, NULL, 20, 'Northrend Dungeon Hero', 'Heroic Utgarde Pinnacle', NULL, NULL), + (1291, 4071, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Lonely?', 'Buttermilk Delight at Romantic Picnic', NULL, NULL), + (1291, 5787, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Lonely?', 'Romantic Picnic', NULL, NULL), + (1292, 4072, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Yellow Brewfest Stein', 'Yellow Brewfest Stein', NULL, NULL), + (1292, 4073, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Yellow Brewfest Stein', 'Filled Yellow Brewfest Stein', NULL, NULL), + (1292, 4074, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Yellow Brewfest Stein', 'Filled Yellow Brewfest Stein', NULL, NULL), + (1292, 4075, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Yellow Brewfest Stein', 'Filled Yellow Brewfest Stein', NULL, NULL), + (1292, 4076, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Yellow Brewfest Stein', 'Filled Yellow Brewfest Stein', NULL, NULL), + (1292, 4077, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Yellow Brewfest Stein', 'Filled Yellow Brewfest Stein', NULL, NULL), + (1293, 4078, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Blue Brewfest Stein', 'Blue Brewfest Stein', NULL, NULL), + (1293, 4079, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Blue Brewfest Stein', 'Filled Blue Brewfest Stein', NULL, NULL), + (1293, 4080, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Blue Brewfest Stein', 'Filled Blue Brewfest Stein', NULL, NULL), + (1293, 4081, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Blue Brewfest Stein', 'Filled Blue Brewfest Stein', NULL, NULL), + (1293, 4082, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Blue Brewfest Stein', 'Filled Blue Brewfest Stein', NULL, NULL), + (1293, 4083, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Blue Brewfest Stein', 'Filled Blue Brewfest Stein', NULL, NULL), + (1295, 4090, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Crashin\' & Thrashin\'', 'Gain 25 crashes with your Crashin\' Thrashin\' Racer', NULL, NULL), + (1296, 4240, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Watch Him Die', 'Krik\'thir the Gatewatcher', NULL, NULL), + (1297, 4244, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Hadronox Denied', 'Hadronox', NULL, NULL), + (1298, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Different bandage types used', NULL, NULL, NULL), + (1299, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Health potion used most', NULL, NULL, NULL), + (1300, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Different health potions used', NULL, NULL, NULL), + (1301, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Mana potion used most', NULL, NULL, NULL), + (1302, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Different mana potions used', NULL, NULL, NULL), + (1303, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Elixir consumed most', NULL, NULL, NULL), + (1304, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Different elixirs used', NULL, NULL, NULL), + (1305, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Flask consumed most', NULL, NULL, NULL), + (1306, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Different flasks consumed', NULL, NULL, NULL), + (1307, 4439, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'General Drakkisath', NULL, NULL), + (1307, 4443, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'General Drakkisath\'s Demise', NULL, NULL), + (1307, 4444, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Blood of the Black Dragon Champion', NULL, NULL), + (1307, 4445, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Drakefire Amulet', NULL, NULL), + (1307, 5057, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5058, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5059, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5060, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5061, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5062, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5063, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5064, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5065, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5066, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5067, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5068, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5069, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5070, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5071, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5072, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5073, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5074, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1307, 5075, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Upper Blackrock Spire', 'Saving the Best for Last', NULL, NULL), + (1308, 4501, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Strand of the Ancients Victory', 'Win Strand of the Ancients', NULL, NULL), + (1309, 4502, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Strand of the Ancients Veteran', 'Complete 100 victories in Strand of the Ancients', NULL, NULL), + (1310, 8758, 20, 14881, 95, 1, 80, 1, 1, NULL, 20, 'Storm the Beach', 'Win in 4 minutes', NULL, NULL), + (1310, 8759, 20, 14881, 95, 1, 80, 1, 1, NULL, 20, 'Storm the Beach', 'Win in 4 minutes', NULL, NULL), + (1311, 4504, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Ambassador Jerrikar', NULL, NULL), + (1311, 4505, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Bog Lurker', NULL, NULL), + (1311, 4506, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Chief Engineer Lorthander', NULL, NULL), + (1311, 4507, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Coilfang Emissary', NULL, NULL), + (1311, 4508, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Collidus the Warp-Watcher', NULL, NULL), + (1311, 4509, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Crippler', NULL, NULL), + (1311, 4510, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Doomsayer Jurim', NULL, NULL), + (1311, 4511, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Ever-Core the Punisher', NULL, NULL), + (1311, 4512, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Fulgorge', NULL, NULL), + (1311, 4513, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Goretooth', NULL, NULL), + (1311, 4514, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Hemathion', NULL, NULL), + (1311, 4515, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Kraator', NULL, NULL), + (1311, 4516, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Marticar', NULL, NULL), + (1311, 4517, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Mekthorg the Wild', NULL, NULL), + (1311, 4518, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Morcrush', NULL, NULL), + (1311, 4519, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Nuramoc', NULL, NULL), + (1311, 4520, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Okrek', NULL, NULL), + (1311, 4521, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Speaker Mar\'grom', NULL, NULL), + (1311, 4522, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Voidhunter Yar', NULL, NULL), + (1311, 4523, 10, 14779, 97, 1, 80, 1, 1, NULL, 10, 'Medium Rare', 'Vorakem Doomspeaker', NULL, NULL), + (1312, 0, 25, 14779, 97, 1, 80, 1, 1, NULL, 25, 'Bloody Rare', NULL, NULL, NULL), + (1336, 0, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Creature type killed the most', NULL, NULL, NULL), + (1337, 0, 1, 135, 128, 1, 80, 1, 1, NULL, 0, 'Different creature types killed', NULL, NULL, NULL), + (1339, 0, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Mage portal taken most', NULL, NULL, NULL), + (1356, 5040, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'I\'ve Toured the Fjord', 'Complete 105 quests in Howling Fjord', NULL, NULL), + (1357, 5041, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Fo\' Grizzle My Shizzle', 'Complete 75 quests in Grizzly Hills', NULL, NULL), + (1358, 5042, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Nothing Boring About Borean', 'Complete 140 quests in Boren Tundra', NULL, NULL), + (1358, 5043, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Nothing Boring About Borean', 'Complete 140 quests in Borean Tundra', NULL, NULL), + (1359, 5044, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Might of Dragonblight', 'Complete 130 quests in Dragonblight', NULL, NULL), + (1360, 5045, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'Nothing Boring About Borean', NULL, NULL), + (1360, 5046, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'Might of Dragonblight', NULL, NULL), + (1360, 5047, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'The Empire of Zul\'Drak', NULL, NULL), + (1360, 5048, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'Fo\' Grizzle My Shizzle', NULL, NULL), + (1360, 5049, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'I\'ve Toured the Fjord', NULL, NULL), + (1360, 5050, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'Into the Basin', NULL, NULL), + (1360, 5051, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'The Summit of Storm Peaks', NULL, NULL), + (1360, 5052, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Northrend', 'Icecrown: The Final Goal', NULL, NULL), + (1361, 5100, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Anub\'Rekhan kills (Naxxramas 10 player)', 'Anub\'Rekhan', NULL, NULL), + (1362, 5101, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Grand Widow Faerlina kills (Naxxramas 10 player)', 'Grand Widow Faerlina', NULL, NULL), + (1363, 5102, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Maexxna kills (Naxxramas 10 player)', 'Maexxna', NULL, NULL), + (1364, 5110, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Patchwerk kills (Naxxramas 10 player)', 'Patchwerk', NULL, NULL), + (1365, 5104, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Noth the Plaguebringer kills (Naxxramas 10 player)', 'Noth the Plaguebringer', NULL, NULL), + (1366, 5108, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Gothik the Harvester kills (Naxxramas 10 player)', 'Gothik the Harvester', NULL, NULL), + (1367, 5103, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Patchwerk kills (Naxxramas 25 player)', 'Patchwerk', NULL, NULL), + (1368, 5111, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Anub\'Rekhan kills (Naxxramas 25 player)', 'Anub\'Rekhan', NULL, NULL), + (1369, 5112, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Heigan the Unclean kills (Naxxramas 10 player)', 'Heigan the Unclean', NULL, NULL), + (1370, 5113, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Loatheb kills (Naxxramas 10 player)', 'Loatheb', NULL, NULL), + (1371, 5114, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Grobbulus kills (Naxxramas 10 player)', 'Grobbulus', NULL, NULL), + (1372, 5117, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Gluth kills (Naxxramas 10 player)', 'Gluth', NULL, NULL), + (1373, 5119, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Thaddius kills (Naxxramas 10 player)', 'Thaddius', NULL, NULL), + (1374, 5120, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Instructor Razuvious kills (Naxxramas 10 player)', 'Instructor Razuvious', NULL, NULL), + (1375, 5121, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Four Horsemen kills (Naxxramas 10 player)', ' Need to hook up event', NULL, NULL), + (1375, 7805, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Four Horsemen kills (Naxxramas 10 player)', 'The Four Horsemen', NULL, NULL), + (1376, 5122, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Sapphiron kills (Naxxramas 10 player)', 'Sapphiron', NULL, NULL), + (1377, 5123, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Kel\'Thuzad kills (Naxxramas 10 player)', 'Kel\'Thuzad', NULL, NULL), + (1378, 5124, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Gluth kills (Naxxramas 25 player)', 'Gluth', NULL, NULL), + (1379, 5125, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Gothik the Harvester kills (Naxxramas 25 player)', 'Gothik the Harvester', NULL, NULL), + (1380, 5126, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Grand Widow Faerlina kills (Naxxramas 25 player)', 'Grand Widow Faerlina', NULL, NULL), + (1381, 5127, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Grobbulus kills (Naxxramas 25 player)', 'Grobbulus', NULL, NULL), + (1382, 5128, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Heigan the Unclean kills (Naxxramas 25 player)', 'Heigan the Unclean', NULL, NULL), + (1383, 5129, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Four Horsemen kills (Naxxramas 25 player)', ' Need to hook up event', NULL, NULL), + (1383, 7806, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Four Horsemen kills (Naxxramas 25 player)', 'The Four Horsemen', NULL, NULL), + (1384, 5130, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Instructor Razuvious kills (Naxxramas 25 player)', 'Instructor Razuvious', NULL, NULL), + (1385, 5131, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Loatheb kills (Naxxramas 25 player)', 'Loatheb', NULL, NULL), + (1386, 5132, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Maexxna kills (Naxxramas 25 player)', 'Maexxna', NULL, NULL), + (1387, 5133, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Noth the Plaguebringer kills (Naxxramas 25 player)', 'Noth the Plaguebringer', NULL, NULL), + (1388, 5134, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Thaddius kills (Naxxramas 25 player)', 'Thaddius', NULL, NULL), + (1389, 5135, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Sapphiron kills (Naxxramas 25 player)', 'Sapphiron', NULL, NULL), + (1390, 5136, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Kel\'Thuzad kills (Naxxramas 25 player)', 'Kel\'Thuzad', NULL, NULL), + (1391, 5137, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Malygos kills (10 player)', 'Malygos', NULL, NULL), + (1392, 5138, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Sartharion kills (Chamber of the Aspects 10 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (1393, 5139, 1, 14823, 14807, 1, 80, 80, 80, NULL, 10, 'Sartharion kills (Chamber of the Aspects 25 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (1394, 5140, 1, 14823, 14807, 1, 80, 71, 76, NULL, 10, 'Malygos kills (25 player)', 'Malygos', NULL, NULL), + (1396, 5141, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Sardis in Valiance Keep', NULL, NULL), + (1396, 5142, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Beldak in Westfall Brigade', NULL, NULL), + (1396, 5143, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Morthie in Star\'s Rest', NULL, NULL), + (1396, 5144, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Fargal in Frosthold', NULL, NULL), + (1396, 5145, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Arp in D.E.H.T.A', NULL, NULL), + (1396, 5146, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Northal in Transitus Shield', NULL, NULL), + (1396, 5147, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Sandrene in Lakeside Landing', NULL, NULL), + (1396, 5148, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Wanikaya in Rainspeaker Rapids', NULL, NULL), + (1396, 5149, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Lunaro in Ruins of Tethys', NULL, NULL), + (1396, 5150, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Bluewolf in Wintergrasp', NULL, NULL), + (1396, 5151, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Tauros in Zim\'Torga', NULL, NULL), + (1396, 5154, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Thoim in Moa\'ki Harbor', NULL, NULL), + (1396, 5155, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Graymane in K3', NULL, NULL), + (1396, 5156, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Stonebeard in Bouldercrag\'s Refuge', NULL, NULL), + (1396, 5157, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Pamuya in Warsong Hold', NULL, NULL), + (1396, 5158, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Whurain in Camp Oneqwah', NULL, NULL), + (1396, 5159, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Skywarden in Agmar\'s Hammer', NULL, NULL), + (1396, 5160, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Elders of Northrend', 'Elder Muraco in Camp Tunka\'lo', NULL, NULL), + (1400, 5223, 1, 81, -1, 1, 80, 71, 80, NULL, 0, 'Realm First! Magic Seeker', 'Malygos', NULL, NULL), + (1402, 5227, 1, 81, -1, 1, 80, 71, 80, NULL, 0, 'Realm First! Conqueror of Naxxramas', 'Kel\'Thuzad', NULL, NULL), + (1404, 5229, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Gnome', 'Level to 80', NULL, NULL), + (1405, 5230, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Blood Elf', 'Level to 80', NULL, NULL), + (1406, 5231, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Draenei', 'Level to 80', NULL, NULL), + (1407, 5232, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Dwarf', 'Level to 80', NULL, NULL), + (1408, 5233, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Human', 'Level to 80', NULL, NULL), + (1409, 5234, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Night Elf', 'Level to 80', NULL, NULL), + (1410, 5235, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Orc', 'Level to 80', NULL, NULL), + (1411, 5236, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Tauren', 'Level to 80', NULL, NULL), + (1412, 5237, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Troll', 'Level to 80', NULL, NULL), + (1413, 5238, 1, 81, -1, 1, 80, 80, 80, NULL, 0, 'Realm First! Level 80 Forsaken', 'Level to 80', NULL, NULL), + (1414, 5240, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Blacksmith', 'Skill to 450', NULL, NULL), + (1415, 5241, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Alchemist', 'Skill to 450', NULL, NULL), + (1416, 5242, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Cooking Grand Master', 'Skill to 450', NULL, NULL), + (1417, 5243, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Enchanter', 'Skill to 450', NULL, NULL), + (1418, 5244, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Engineer', 'Skill to 450', NULL, NULL), + (1419, 5249, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! First Aid Grand Master', 'Skill to 450', NULL, NULL), + (1420, 5250, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Angler', 'Skill to 450', NULL, NULL), + (1421, 5251, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Herbalist', 'Skill to 450', NULL, NULL), + (1422, 5252, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Scribe', 'Skill to 450', NULL, NULL), + (1423, 5253, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Jewelcrafter', 'Skill to 450', NULL, NULL), + (1424, 5254, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Leatherworker', 'Skill to 450', NULL, NULL), + (1425, 5255, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Miner', 'Skill to 450', NULL, NULL), + (1426, 5256, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Skinner', 'Skill to 450', NULL, NULL), + (1427, 5257, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Realm First! Grand Master Tailor', 'Skill to 450', NULL, NULL), + (1428, 5258, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Mine Sweeper', 'Landmine Knockback', NULL, NULL), + (1436, 5267, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Friends In High Places', 'Zhevra', NULL, NULL), + (1436, 5268, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Friends In High Places', 'Zhevra', NULL, NULL), + (1436, 5269, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Friends In High Places', 'Zhevra', NULL, NULL), + (1456, 5288, 1, 178, 132, 1, 80, 1, 1, NULL, 0, 'Fish and other things caught', 'Fish and other things caught', NULL, NULL), + (1457, 5290, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Crystalsong Forest', 'The Azure Front', NULL, NULL), + (1457, 5291, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Crystalsong Forest', 'The Decrepit Flow', NULL, NULL), + (1457, 5292, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Crystalsong Forest', 'Sunreaver\'s Command', NULL, NULL), + (1457, 5293, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Crystalsong Forest', 'Forlorn Woods', NULL, NULL), + (1457, 5294, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Crystalsong Forest', 'Windrunner\'s Overlook', NULL, NULL), + (1457, 5295, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Crystalsong Forest', 'The Great Tree', NULL, NULL), + (1457, 5296, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Crystalsong Forest', 'Violet Stand', NULL, NULL), + (1457, 5297, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Explore Crystalsong Forest', 'The Unbound Thicket', NULL, NULL), + (1458, 0, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Continent with the most Honorable Kills', NULL, NULL, NULL), + (1462, 5310, 1, 130, 1, 1, 80, 1, 1, NULL, 0, 'Badges of Justice acquired', 'Badges of Justice acquired', NULL, NULL), + (1463, 5306, 1, 81, -1, 1, 80, 71, 1, NULL, 0, 'Realm First! Northrend Vanguard', 'The Argent Crusade', NULL, NULL), + (1463, 5307, 1, 81, -1, 1, 80, 71, 1, NULL, 0, 'Realm First! Northrend Vanguard', 'The Wyrmrest Accord', NULL, NULL), + (1463, 5308, 1, 81, -1, 1, 80, 71, 1, NULL, 0, 'Realm First! Northrend Vanguard', 'The Kirin Tor', NULL, NULL), + (1463, 5309, 1, 81, -1, 1, 80, 71, 1, NULL, 0, 'Realm First! Northrend Vanguard', 'Knights of the Ebon Blade', NULL, NULL), + (1464, 5311, 1, 130, 1, 1, 80, 1, 1, NULL, 0, 'Emblems of Heroism acquired', 'Emblems of Heroism acquired', NULL, NULL), + (1465, 5312, 1, 130, 1, 1, 80, 1, 1, NULL, 0, 'Emblems of Valor acquired', 'Emblems of Valor acquired', NULL, NULL), + (1466, 5328, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Darnassus', NULL, NULL), + (1466, 5329, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Gnomergan', NULL, NULL), + (1466, 5330, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Ironforge', NULL, NULL), + (1466, 5331, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Stormwind', NULL, NULL), + (1466, 5332, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Exodar', NULL, NULL), + (1466, 5333, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with The League of Arathor', NULL, NULL), + (1466, 5334, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Silverwing Sentinels', NULL, NULL), + (1466, 5335, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Stormpike Guard', NULL, NULL), + (1466, 5336, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Honor Hold', NULL, NULL), + (1466, 5337, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Kurenai', NULL, NULL), + (1466, 5338, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Wintersaber Trainers', NULL, NULL), + (1466, 5339, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Valiance Expedition', NULL, NULL), + (1466, 5340, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with The Silver Covenant', NULL, NULL), + (1466, 5341, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with Explorers\' League', NULL, NULL), + (1466, 5342, 1, 147, 130, 1, 80, 1, 1, NULL, 0, 'Most Alliance factions at Exalted', 'Exalted with The Sunreavers', NULL, NULL), + (1467, 5377, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Prince Keleseth', NULL, NULL), + (1467, 5378, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Skarvald the Constructor', NULL, NULL), + (1467, 5379, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Dalronn the Controller', NULL, NULL), + (1467, 5380, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Ingvar the Plunderer', NULL, NULL), + (1467, 5381, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Grand Magus Telestra', NULL, NULL), + (1467, 5382, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Anomalus', NULL, NULL), + (1467, 5383, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Ormorok the Tree-Shaper', NULL, NULL), + (1467, 5384, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Keristrasza', NULL, NULL), + (1467, 5436, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Krik\'thir the Gatewatcher', NULL, NULL), + (1467, 5437, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Hadronox', NULL, NULL), + (1467, 5438, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Anub\'arak', NULL, NULL), + (1467, 5439, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Prince Taldaram', NULL, NULL), + (1467, 5440, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Elder Nadox', NULL, NULL), + (1467, 5441, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Jedoga Shadowseeker', NULL, NULL), + (1467, 5442, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Herald Volazj', NULL, NULL), + (1467, 5443, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Trollgore', NULL, NULL), + (1467, 5444, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Novos the Summoner', NULL, NULL), + (1467, 5445, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'King Dred', NULL, NULL), + (1467, 5446, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'The Prophet Tharon\'ja', NULL, NULL), + (1467, 5447, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Cyanigosa', NULL, NULL), + (1467, 5448, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Slad\'ran', NULL, NULL), + (1467, 5449, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Moorabi', NULL, NULL), + (1467, 5450, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Drakkari Colossus', NULL, NULL), + (1467, 5451, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Gal\'darah', NULL, NULL), + (1467, 5452, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Maiden of Grief', NULL, NULL), + (1467, 5453, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Krystallus', NULL, NULL), + (1467, 5454, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Sjonnir the Ironshaper', NULL, NULL), + (1467, 5455, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'General Bjarngrim', NULL, NULL), + (1467, 5456, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Ionar', NULL, NULL), + (1467, 5457, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Volkhan', NULL, NULL), + (1467, 5458, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Loken', NULL, NULL), + (1467, 5459, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Drakos the Interrogator', NULL, NULL), + (1467, 5460, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Mage-Lord Urom', NULL, NULL), + (1467, 5461, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Varos Cloudstrider', NULL, NULL), + (1467, 5462, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Ley-Guardian Eregos', NULL, NULL), + (1467, 5463, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Skadi the Ruthless', NULL, NULL), + (1467, 5464, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'King Ymiron', NULL, NULL), + (1467, 5465, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Svala Sorrowgrave', NULL, NULL), + (1467, 5466, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Gortok Palehoof', NULL, NULL), + (1467, 5467, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Meathook', NULL, NULL), + (1467, 5468, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Chrono-Lord Epoch', NULL, NULL), + (1467, 5469, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Salramm the Fleshcrafter', NULL, NULL), + (1467, 6433, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Mal\'Ganis', NULL, NULL), + (1467, 8798, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Xevozz', NULL, NULL), + (1467, 8799, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Lavanthor', NULL, NULL), + (1467, 8800, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Ichoron', NULL, NULL), + (1467, 8801, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Zuramat the Obliterator', NULL, NULL), + (1467, 8802, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Erekem', NULL, NULL), + (1467, 8803, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Moragg', NULL, NULL), + (1467, 13312, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Argent Confessor Paletress', NULL, NULL), + (1467, 13313, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Eadric the Pure', NULL, NULL), + (1467, 13314, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'The Black Knight', NULL, NULL), + (1467, 13315, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Bronjahm', NULL, NULL), + (1467, 13316, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Devourer of Souls', NULL, NULL), + (1467, 13317, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Forgemaster Garfrost', NULL, NULL), + (1467, 13318, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Ick', NULL, NULL), + (1467, 13319, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Scourgelord Tyrannus', NULL, NULL), + (1467, 13320, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Falric', NULL, NULL), + (1467, 13321, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'Marwyn', NULL, NULL), + (1467, 13323, 1, 14807, 1, 1, 80, 67, 76, 'ICC - Lich King', 10, 'Lich King 5-player bosses killed', 'The Lich King', NULL, NULL), + (1485, 0, 1, 14807, 1, 1, 80, 1, 1, 'ICC - Lich King', 0, 'Lich King 5-player different bosses killed', NULL, NULL, NULL), + (1486, 5511, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Strand of the Ancients Honorable Kills', 'Strand of the Ancients Honorable Kills', NULL, NULL), + (1487, 5529, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Total Killing Blows', 'Total Killing Blows', NULL, NULL), + (1488, 5512, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'World Killing Blows', 'Eastern Kingdoms', NULL, NULL), + (1488, 5530, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'World Killing Blows', 'Kalimdor', NULL, NULL), + (1488, 5531, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'World Killing Blows', 'Burning Crusade Areas', NULL, NULL), + (1488, 5532, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'World Killing Blows', 'Northrend', NULL, NULL), + (1489, 0, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Continent with the most Killing Blows', NULL, NULL, NULL), + (1490, 5533, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Arena Killing Blows', 'Nagrand Arena', NULL, NULL), + (1490, 5534, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Arena Killing Blows', 'Blade\'s Edge Arena', NULL, NULL), + (1490, 5535, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Arena Killing Blows', 'Ruind of Lordaeron', NULL, NULL), + (1490, 9165, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Arena Killing Blows', 'Dalaran Sewers', NULL, NULL), + (1490, 9166, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Arena Killing Blows', 'Ring of Valor', NULL, NULL), + (1491, 5536, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Killing Blows', 'Alterac Valley', NULL, NULL), + (1491, 5537, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Killing Blows', 'Arathi Basin', NULL, NULL), + (1491, 5538, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Killing Blows', 'Warsong Gulch', NULL, NULL), + (1491, 5539, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Killing Blows', 'Eye of the Storm', NULL, NULL), + (1491, 5540, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Killing Blows', 'Strand of the Ancients', NULL, NULL), + (1491, 13254, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Battleground Killing Blows', 'Isle of Conquest', NULL, NULL), + (1492, 5541, 1, 137, 128, 1, 80, 1, 1, NULL, 0, '2v2 Arena Killing Blows', '2v2 Arena Killing Blows', NULL, NULL), + (1493, 5542, 1, 137, 128, 1, 80, 1, 1, NULL, 0, '3v3 Arena Killing Blows', '3v3 Arena Killing Blows', NULL, NULL), + (1494, 5543, 1, 137, 128, 1, 80, 1, 1, NULL, 0, '5v5 Arena Killing Blows', '5v5 Arena Killing Blows', NULL, NULL), + (1495, 5544, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Alterac Valley Killing Blows', 'Alterac Valley Killing Blows', NULL, NULL), + (1496, 5545, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Arathi Basin Killing Blows', 'Arathi Basin Killing Blows', NULL, NULL), + (1497, 5546, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Warsong Gulch Killing Blows', 'Warsong Gulch Killing Blows', NULL, NULL), + (1498, 5547, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Eye of the Storm Killing Blows', 'Eye of the Storm Killing Blows', NULL, NULL), + (1499, 5548, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Strand of the Ancients Killing Blows', 'Strand of the Ancients Killing Blows', NULL, NULL), + (1500, 5549, 1, 124, 122, -0.3, 80, 1, 1, NULL, 0, 'Deaths in Strand of the Ancients', 'Deaths in Strand of the Ancients', NULL, NULL), + (1501, 5594, 1, 21, 1, -1, 80, 1, 1, NULL, 0, 'Total deaths from other players', 'Total deaths from other players', NULL, NULL), + (1502, 5603, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Quick Cap', 'Pick up flag while it\'s at the base', NULL, NULL), + (1502, 7769, 10, 14804, 95, 1, 80, 1, 1, NULL, 10, 'Quick Cap', 'Cap in 75 seconds', NULL, NULL), + (1504, 5608, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'Ingvar the Plunderer kills (Heroic Utgarde Keep)', 'Ingvar the Plunderer', NULL, NULL), + (1505, 5609, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'Keristrasza kills (Heroic Nexus)', 'Keristrasza', NULL, NULL), + (1506, 5610, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'Anub\'arak kills (Heroic Azjol-Nerub)', 'Anub\'arak', NULL, NULL), + (1507, 5611, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'Herald Volazj kills (Heroic Ahn\'kahet)', 'Herald Volazj', NULL, NULL), + (1508, 5612, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'The Prophet Tharon\'ja kills (Heroic Drak\'Tharon Keep)', 'The Prophet Tharon\'ja', NULL, NULL), + (1508, 9260, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'The Prophet Tharon\'ja kills (Heroic Drak\'Tharon Keep)', 'The Prophet Tharon\'ja', NULL, NULL), + (1508, 9261, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'The Prophet Tharon\'ja kills (Heroic Drak\'Tharon Keep)', 'The Prophet Tharon\'ja', NULL, NULL), + (1509, 5613, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'Cyanigosa kills (Heroic Violet Hold)', 'Cyanigosa', NULL, NULL), + (1510, 5614, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'Gal\'darah kills (Heroic Gundrak)', 'Gal\'darah', NULL, NULL), + (1511, 5615, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'Sjonnir the Ironshaper kills (Heroic Halls of Stone)', 'Sjonnir the Ironshaper', NULL, NULL), + (1512, 5616, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'Loken kills (Heroic Halls of Lightning)', 'Kronus', NULL, NULL), + (1513, 5617, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'Ley-Guardian Eregos kills (Heroic Oculus)', 'Ley-Guardian Eregos', NULL, NULL), + (1514, 5618, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'King Ymiron kills (Heroic Utgarde Pinnacle)', 'King Ymiron', NULL, NULL), + (1515, 5620, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'Mal\'Ganis defeated (Heroic CoT: Stratholme)', 'Mal\'Ganis', NULL, NULL), + (1515, 6434, 1, 14823, 14807, 1, 80, 80, 80, NULL, 5, 'Mal\'Ganis defeated (Heroic CoT: Stratholme)', 'Mal\'Ganis', NULL, NULL), + (1516, 5662, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'Grand Master Fisherman', NULL, NULL), + (1516, 5663, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'The Old Gnome and the Sea', NULL, NULL), + (1516, 5664, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'The Scavenger', NULL, NULL), + (1516, 5665, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'The Fishing Diplomat', NULL, NULL), + (1516, 5666, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'Master Angler of Stranglethorn', NULL, NULL), + (1516, 5667, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'Mr. Pinchy\'s Magical Crawdad Box', NULL, NULL), + (1516, 5668, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'One That Didn\'t Get Away', NULL, NULL), + (1516, 5669, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'Old Man Barlowned', NULL, NULL), + (1516, 5670, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'Deadliest Catch', NULL, NULL), + (1516, 5671, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'The Lurker Above', NULL, NULL), + (1516, 5672, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'Outland Angler', NULL, NULL), + (1516, 5673, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'Fish Don\'t Leave Footprints', NULL, NULL), + (1516, 5690, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'Northrend Angler', NULL, NULL), + (1516, 5762, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', '1000 Fish', NULL, NULL), + (1516, 7495, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Accomplished Angler', 'The Coin Master', NULL, NULL), + (1517, 5680, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Northrend Angler', 'Borean Man O\' War School', NULL, NULL), + (1517, 5681, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Northrend Angler', 'Deep Sea Monsterbelly School', NULL, NULL), + (1517, 5682, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Northrend Angler', 'Dragonfin Angelfish School', NULL, NULL), + (1517, 5683, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Northrend Angler', 'Fangtooth Herring School', NULL, NULL), + (1517, 5684, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Northrend Angler', 'Glacial Salmon School', NULL, NULL), + (1517, 5685, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Northrend Angler', 'Glassfin Minnow School', NULL, NULL), + (1517, 5686, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Northrend Angler', 'Imperial Manta Ray School', NULL, NULL), + (1517, 5687, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Northrend Angler', 'Moonglow Cuttlefish School', NULL, NULL), + (1517, 5688, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Northrend Angler', 'Musselback Sculpin School', NULL, NULL), + (1517, 5689, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Northrend Angler', 'Nettlefish School', NULL, NULL), + (1518, 5695, 1, 178, 132, 1, 80, 1, 1, NULL, 0, 'Fish caught', 'Fish caught', NULL, NULL), + (1519, 5696, 1, 178, 132, 1, 80, 1, 1, NULL, 0, 'Fishing skill', 'Fishing skill', NULL, NULL), + (1524, 5701, 1, 178, 132, 1, 80, 1, 1, NULL, 0, 'Cooking skill', 'Cooking skill', NULL, NULL), + (1525, 5702, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Revenge is Tasty', NULL, NULL), + (1525, 5703, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Super Hot Stew', NULL, NULL), + (1525, 5704, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Manalicious', NULL, NULL), + (1525, 5705, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Soup for the Soul', NULL, NULL), + (1525, 11960, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Infused Mushroom Meatloaf - Alliance', NULL, NULL), + (1525, 11961, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Infused Mushroom Meatloaf - Horde', NULL, NULL), + (1525, 12078, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Feast for the Legerddemain - Alliance', NULL, NULL), + (1525, 12079, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Feast for the Legerdemain - Horde', NULL, NULL), + (1525, 12080, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Infused Mushroom Meatloaf - Alliance', NULL, NULL), + (1525, 12081, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Infused Mushroom Meatloaf - Alliance', NULL, NULL), + (1525, 12082, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Infused Mushroom Meatloaf - Alliance', NULL, NULL), + (1525, 12083, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Infused Mushroom Meatloaf - Alliance', NULL, NULL), + (1525, 12084, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Infused Mushroom Meatloaf - Alliance', NULL, NULL), + (1525, 12085, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Cooking daily quests completed', 'Infused Mushroom Meatloaf - Alliance', NULL, NULL), + (1526, 5706, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Fishing daily quests completed', 'Crocolisks in the City', NULL, NULL), + (1526, 5707, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Fishing daily quests completed', 'Bait Bandits', NULL, NULL), + (1526, 5708, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Fishing daily quests completed', 'Felblood Fillet', NULL, NULL), + (1526, 5709, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Fishing daily quests completed', 'The One That Got Away', NULL, NULL), + (1526, 5710, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Fishing daily quests completed', 'Shrimpin\' Ain\'t Easy', NULL, NULL), + (1526, 13363, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Fishing daily quests completed', 'The Ghostfish', NULL, NULL), + (1526, 13364, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Fishing daily quests completed', 'The Jewel of the Sewers', NULL, NULL), + (1526, 13365, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Fishing daily quests completed', 'Dangerously Delicious', NULL, NULL), + (1526, 13366, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Fishing daily quests completed', 'Monsterbelly Appetite', NULL, NULL), + (1526, 13367, 10, 178, 132, 1, 80, 1, 1, NULL, 10, 'Fishing daily quests completed', 'Blood is Thicker', NULL, NULL), + (1527, 5711, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Highest Alchemy skill', 'Alchemy skill', NULL, NULL), + (1532, 5712, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Highest Blacksmithing skill', 'Blacksmithing skill', NULL, NULL), + (1535, 5713, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Highest Enchanting skill', 'Enchanting skill', NULL, NULL), + (1536, 5718, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Highest Leatherworking skill', 'Leatherworking skill', NULL, NULL), + (1537, 5719, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Highest Mining skill', 'Mining skill', NULL, NULL), + (1538, 5715, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Highest Herbalism skill', 'Herbalism skill', NULL, NULL), + (1539, 5716, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Highest Inscription skill', 'Inscription skill', NULL, NULL), + (1540, 5717, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Highest Jewelcrafting skill', 'Jewelcrafting skill', NULL, NULL), + (1541, 5720, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Highest Skinning skill', 'Skinning skill', NULL, NULL), + (1542, 5714, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Highest Tailoring skill', 'Tailoring skill', NULL, NULL), + (1544, 5722, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Highest Engineering skill', 'Engineering skill', NULL, NULL), + (1545, 5731, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Ring of Valor matches', 'Ring of Valor matches', NULL, NULL), + (1546, 5737, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Ring of Valor victories', 'Ring of Valor victories', NULL, NULL), + (1547, 5733, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Dalaran Sewers matches', 'Dalaran Sewers matches', NULL, NULL), + (1548, 5738, 28, 152, 21, 1.7, 80, 1, 1, NULL, 0, 'Dalaran Sewers victories', 'Dalaran Sewers victories', NULL, NULL), + (1549, 5743, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Strand of the Ancients battles', 'Strand of the Ancients', NULL, NULL), + (1550, 5746, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Strand of the Ancients victories', 'Strand of the Ancients', NULL, NULL), + (1552, 5755, 10, 160, 155, 1, 80, 1, 1, NULL, 10, 'Frenzied Firecracker', 'Shoot off 10 Festival Firecrackers in 30 seconds or less', NULL, NULL), + (1556, 5756, 10, 171, 169, 1, 80, 1, 1, NULL, 10, '25 Fish', 'Catch 25 fish', NULL, NULL), + (1557, 5757, 10, 171, 169, 1, 80, 1, 1, NULL, 10, '50 Fish', 'Catch 50 fish', NULL, NULL), + (1558, 5758, 10, 171, 169, 1, 80, 1, 1, NULL, 10, '100 Fish', 'Catch 100 fish', NULL, NULL), + (1559, 5759, 10, 171, 169, 1, 80, 1, 1, NULL, 10, '250 Fish', 'Catch 250 fish', NULL, NULL), + (1560, 5760, 10, 171, 169, 1, 80, 1, 1, NULL, 10, '500 Fish', 'Catch 500 fish', NULL, NULL), + (1561, 5761, 10, 171, 169, 1, 80, 1, 1, NULL, 10, '1000 Fish', 'Catch 1000 fish', NULL, NULL), + (1563, 5763, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Grand Master Cook', NULL, NULL), + (1563, 5764, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'The Cake Is Not A Lie', NULL, NULL), + (1563, 5765, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Kickin\' It Up a Notch', NULL, NULL), + (1563, 6604, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'The Northrend Gourmet', NULL, NULL), + (1563, 6605, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Second That Emotion', NULL, NULL), + (1563, 6607, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Critter Gitter', NULL, NULL), + (1563, 6624, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Critter Gitter', NULL, NULL), + (1563, 6631, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Dinner Impossible', NULL, NULL), + (1563, 6756, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Sous Chef', NULL, NULL), + (1563, 6762, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Captain Rumsey\'s Lager', NULL, NULL), + (1563, 6788, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'The Outland Gourmet', NULL, NULL), + (1576, 5798, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'Of Blood and Anguish', 'The Ring of Blood: The Final Challenge', NULL, NULL), + (1576, 5799, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'Of Blood and Anguish', 'The Champion of Anguish', NULL, NULL), + (1596, 5804, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Guru of Drakuru', 'Cleansing Drak\'Tharon', NULL, NULL), + (1596, 5805, 10, 14863, 96, 1, 80, 1, 1, NULL, 10, 'Guru of Drakuru', 'Betrayal', NULL, NULL), + (1636, 5812, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Competitor\'s Tabard', 'Competitor\'s Tabard', NULL, NULL), + (1637, 5814, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Spirit of Competition', 'Spirit of Competition', NULL, NULL), + (1638, 5815, 10, 14865, 201, 1, 80, 1, 1, NULL, 10, 'Skyshattered', 'Skyshatter Race', NULL, NULL), + (1656, 5818, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Trick or Treat!', NULL, NULL), + (1656, 5819, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Out With It', NULL, NULL), + (1656, 5821, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Bring Me The Head of... Oh Wait', NULL, NULL), + (1656, 5822, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'The Savior of Hallow\'s End', NULL, NULL), + (1656, 5824, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'That Sparkling Smile', NULL, NULL), + (1656, 5825, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Rotten Hallow', NULL, NULL), + (1656, 5826, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'G.N.E.R.D. Rage', NULL, NULL), + (1656, 5827, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Check Your Head', NULL, NULL), + (1656, 5828, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'The Masquerade', NULL, NULL), + (1656, 5829, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Sinister Calling', NULL, NULL), + (1656, 5830, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Tricks and Treats of Azeroth', NULL, NULL), + (1657, 5831, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Trick or Treat!', NULL, NULL), + (1657, 5832, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Out With It', NULL, NULL), + (1657, 5833, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Bring Me The Head of... Oh Wait', NULL, NULL), + (1657, 5834, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'The Savior of Hallow\'s End', NULL, NULL), + (1657, 5836, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'That Sparkling Smile', NULL, NULL), + (1657, 5837, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Rotten Hallow', NULL, NULL), + (1657, 5838, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'G.N.E.R.D. Rage', NULL, NULL), + (1657, 5839, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Check Your Head', NULL, NULL), + (1657, 5840, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'The Masquerade', NULL, NULL), + (1657, 5841, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Sinister Calling', NULL, NULL), + (1657, 5842, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Hallowed Be Thy Name', 'Tricks and Treats of Azeroth', NULL, NULL), + (1658, 5876, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: Ingvar the Plunderer', NULL, NULL), + (1658, 5877, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: Keristrasza', NULL, NULL), + (1658, 5878, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: Anub\'arak', NULL, NULL), + (1658, 5879, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: Herald Volazj', NULL, NULL), + (1658, 5880, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: The Prophet Tharon\'ja', NULL, NULL), + (1658, 5881, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: Cyanigosa', NULL, NULL), + (1658, 5882, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: Gal\'darah', NULL, NULL), + (1658, 5883, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: Sjonnir the Ironshaper', NULL, NULL), + (1658, 5884, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: Loken', NULL, NULL), + (1658, 5885, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: Ley-Guardian Eregos', NULL, NULL), + (1658, 5886, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: King Ymiron', NULL, NULL), + (1658, 5887, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Heroic: Mal\'Ganis', NULL, NULL), + (1658, 5888, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Kel\'Thuzad (10 or 25 player)', NULL, NULL), + (1658, 5889, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Sartharion the Onyx Guardian (10 or 25 player)', NULL, NULL), + (1658, 5890, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Champion of the Frozen Wastes', 'Malygos (10 or 25 player)', NULL, NULL), + (1676, 5900, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Alterac Mountains', NULL, NULL), + (1676, 5901, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Arathi Highlands', NULL, NULL), + (1676, 5902, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Badlands', NULL, NULL), + (1676, 5903, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Badlands', NULL, NULL), + (1676, 5904, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Blackrock Spire', NULL, NULL), + (1676, 5905, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Blackrock Depths', NULL, NULL), + (1676, 5906, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Blasted Lands', NULL, NULL), + (1676, 5907, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Burning Steppes', NULL, NULL), + (1676, 5908, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Deadwind Pass', NULL, NULL), + (1676, 5909, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Deeprun Tram', NULL, NULL), + (1676, 5910, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Dun Algaz', NULL, NULL), + (1676, 5911, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Dun Morogh', NULL, NULL), + (1676, 5912, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Duskwood', NULL, NULL), + (1676, 5913, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Eastern Plaguelands', NULL, NULL), + (1676, 5914, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Elwynn Forest', NULL, NULL), + (1676, 5915, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Eversong Woods', NULL, NULL), + (1676, 5916, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Ghostlands', NULL, NULL), + (1676, 5917, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Gnomeregan', NULL, NULL), + (1676, 5918, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Hillsbrad Foothills', NULL, NULL), + (1676, 5919, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Ironforge', NULL, NULL), + (1676, 5920, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Isle of Quel\'Danas', NULL, NULL), + (1676, 5921, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Karazhan', NULL, NULL), + (1676, 5922, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Loch Modan', NULL, NULL), + (1676, 5923, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Lordamere Lake', NULL, NULL), + (1676, 5924, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Magister\'s Terrace', NULL, NULL), + (1676, 5925, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Molten Core', NULL, NULL), + (1676, 5926, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Onyxia\'s Lair', NULL, NULL), + (1676, 5927, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Plaguelands: The Scarlet Enclave', NULL, NULL), + (1676, 5928, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Quel\'thalas', NULL, NULL), + (1676, 5929, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Redridge Mountains', NULL, NULL), + (1676, 5930, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Scarlet Monastery', NULL, NULL), + (1676, 5931, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Scholomance', NULL, NULL), + (1676, 5932, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Searing Gorge', NULL, NULL), + (1676, 5933, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Silvermoon City', NULL, NULL), + (1676, 5934, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Stormwind City', NULL, NULL), + (1676, 5935, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Stranglethorn Vale', NULL, NULL), + (1676, 5936, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Stratholme', NULL, NULL), + (1676, 5937, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Sunken Temple', NULL, NULL), + (1676, 5938, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Sunwell Plateau', NULL, NULL), + (1676, 5939, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Swamp of Sorrows', NULL, NULL), + (1676, 5940, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Thandol Span', NULL, NULL), + (1676, 5941, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'The Deadmines', NULL, NULL), + (1676, 5942, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'The Hinterlands', NULL, NULL), + (1676, 5943, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'The Stockade', NULL, NULL), + (1676, 5944, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'The Temple of Atal\'Hakkar', NULL, NULL), + (1676, 5945, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Tirisfal Glades', NULL, NULL), + (1676, 5946, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Undercity', NULL, NULL), + (1676, 5947, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Western Plaguelands', NULL, NULL), + (1676, 5948, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Westfall', NULL, NULL), + (1676, 5949, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Wetlands', NULL, NULL), + (1676, 5950, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Zul\'Gurub', NULL, NULL), + (1676, 5951, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Zul\'Gurub', NULL, NULL), + (1676, 6041, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Uldaman', NULL, NULL), + (1676, 7884, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Northshire Valley', NULL, NULL), + (1676, 7885, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Coldridge Valley', NULL, NULL), + (1676, 7886, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Deathknell', NULL, NULL), + (1676, 7887, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Sunstrider Isle', NULL, NULL), + (1676, 9081, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Silverpine Forest', NULL, NULL), + (1676, 9238, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Shadowfang Keep', NULL, NULL), + (1676, 9240, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Zul\'Aman', NULL, NULL), + (1676, 9398, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Gnomeregan', NULL, NULL), + (1676, 9422, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Zul\'Gurub', NULL, NULL), + (1676, 9424, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Gnomeregan', NULL, NULL), + (1677, 5952, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Alterac Mountains', NULL, NULL), + (1677, 5953, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Arathi Highlands', NULL, NULL), + (1677, 5954, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Badlands', NULL, NULL), + (1677, 5955, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Badlands', NULL, NULL), + (1677, 5956, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Blackrock Spire', NULL, NULL), + (1677, 5957, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Blackrock Depths', NULL, NULL), + (1677, 5958, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Blasted Lands', NULL, NULL), + (1677, 5959, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Burning Steppes', NULL, NULL), + (1677, 5960, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Deadwind Pass', NULL, NULL), + (1677, 5961, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Deeprun Tram', NULL, NULL), + (1677, 5962, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Dun Algaz', NULL, NULL), + (1677, 5963, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Dun Morogh', NULL, NULL), + (1677, 5964, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Duskwood', NULL, NULL), + (1677, 5965, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Eastern Plaguelands', NULL, NULL), + (1677, 5966, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Elwynn Forest', NULL, NULL), + (1677, 5967, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Eversong Woods', NULL, NULL), + (1677, 5968, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Ghostlands', NULL, NULL), + (1677, 5969, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Gnomeregan', NULL, NULL), + (1677, 5970, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Hillsbrad Foothills', NULL, NULL), + (1677, 5971, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Ironforge', NULL, NULL), + (1677, 5972, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Isle of Quel\'Danas', NULL, NULL), + (1677, 5973, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Karazhan', NULL, NULL), + (1677, 5974, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Loch Modan', NULL, NULL), + (1677, 5975, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Lordamere Lake', NULL, NULL), + (1677, 5976, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Magister\'s Terrace', NULL, NULL), + (1677, 5977, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Molten Core', NULL, NULL), + (1677, 5978, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Onyxia\'s Lair', NULL, NULL), + (1677, 5979, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Plaguelands: The Scarlet Enclave', NULL, NULL), + (1677, 5980, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Quel\'thalas', NULL, NULL), + (1677, 5981, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Redridge Mountains', NULL, NULL), + (1677, 5982, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Scarlet Monastery', NULL, NULL), + (1677, 5983, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Scholomance', NULL, NULL), + (1677, 5984, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Searing Gorge', NULL, NULL), + (1677, 5985, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Silvermoon City', NULL, NULL), + (1677, 5986, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Stormwind City', NULL, NULL), + (1677, 5987, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Stranglethorn Vale', NULL, NULL), + (1677, 5988, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Stratholme', NULL, NULL), + (1677, 5989, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Sunken Temple', NULL, NULL), + (1677, 5990, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Sunwell Plateau', NULL, NULL), + (1677, 5991, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Swamp of Sorrows', NULL, NULL), + (1677, 5992, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Thandol Span', NULL, NULL), + (1677, 5993, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'The Deadmines', NULL, NULL), + (1677, 5994, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'The Hinterlands', NULL, NULL), + (1677, 5995, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'The Stockade', NULL, NULL), + (1677, 5996, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'The Temple of Atal\'Hakkar', NULL, NULL), + (1677, 5997, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Tirisfal Glades', NULL, NULL), + (1677, 5998, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Undercity', NULL, NULL), + (1677, 5999, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Western Plaguelands', NULL, NULL), + (1677, 6000, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Westfall', NULL, NULL), + (1677, 6001, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Wetlands', NULL, NULL), + (1677, 6002, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Zul\'Gurub', NULL, NULL), + (1677, 6003, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Zul\'Gurub', NULL, NULL), + (1677, 6042, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Uldaman', NULL, NULL), + (1677, 7888, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Northshire Valley', NULL, NULL), + (1677, 7889, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Coldridge Valley', NULL, NULL), + (1677, 7890, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Deathknell', NULL, NULL), + (1677, 7891, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Sunstrider Isle', NULL, NULL), + (1677, 9080, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Silverpine Forest', NULL, NULL), + (1677, 9239, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Shadowfang Keep', NULL, NULL), + (1677, 9241, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Zul\'Aman', NULL, NULL), + (1677, 9423, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Zul\'Gurub', NULL, NULL), + (1677, 9425, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Eastern Kingdoms', 'Gnomeregan', NULL, NULL), + (1678, 6004, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ahn\'Qiraj', NULL, NULL), + (1678, 6005, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ashenvale', NULL, NULL), + (1678, 6006, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Azshara', NULL, NULL), + (1678, 6007, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Azuremyst Isle', NULL, NULL), + (1678, 6008, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Blackfathom Deeps', NULL, NULL), + (1678, 6009, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Bloodmyst Isle', NULL, NULL), + (1678, 6010, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Darkshore', NULL, NULL), + (1678, 6011, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Desolace', NULL, NULL), + (1678, 6012, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Dire Maul', NULL, NULL), + (1678, 6013, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Durotar', NULL, NULL), + (1678, 6014, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Dustwallow Marsh', NULL, NULL), + (1678, 6015, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Felwood', NULL, NULL), + (1678, 6016, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Feralas', NULL, NULL), + (1678, 6017, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Gates of Ahn\'Qiraj', NULL, NULL), + (1678, 6018, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Maraudon', NULL, NULL), + (1678, 6019, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Moonglade', NULL, NULL), + (1678, 6020, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Mulgore', NULL, NULL), + (1678, 6021, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Onyxia\'s Lair', NULL, NULL), + (1678, 6022, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ogrimmar', NULL, NULL), + (1678, 6023, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ragefire Chasm', NULL, NULL), + (1678, 6024, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Razorfen Downs', NULL, NULL), + (1678, 6025, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Razorfen Kraul', NULL, NULL), + (1678, 6026, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ruins of Ahn\'Qiraj', NULL, NULL), + (1678, 6028, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Silithus', NULL, NULL), + (1678, 6030, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Southfury River', NULL, NULL), + (1678, 6031, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Stonetalon Mountains', NULL, NULL), + (1678, 6032, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Tanaris', NULL, NULL), + (1678, 6033, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Teldrassil', NULL, NULL), + (1678, 6034, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'The Barrens', NULL, NULL), + (1678, 6035, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Thousand Needles', NULL, NULL), + (1678, 6036, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Thunder Bluff', NULL, NULL), + (1678, 6037, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Un\'Goro Crater', NULL, NULL), + (1678, 6038, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Wailing Caverns', NULL, NULL), + (1678, 6039, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Winterspring', NULL, NULL), + (1678, 6040, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Zul\'Farrak', NULL, NULL), + (1678, 6043, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Alcaz Island', NULL, NULL), + (1678, 6044, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Timbermaw Hold', NULL, NULL), + (1678, 6045, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Feathermoon Stronghold', NULL, NULL), + (1678, 6046, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Rut\'theran Village', NULL, NULL), + (1678, 7892, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Valley of Trials', NULL, NULL), + (1678, 7893, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Red Cloud Mesa', NULL, NULL), + (1678, 7894, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Shadowglen', NULL, NULL), + (1678, 7895, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Crash Site', NULL, NULL), + (1678, 8098, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ammen Vale', NULL, NULL), + (1678, 9219, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Darnassus', NULL, NULL), + (1678, 9220, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Exodar', NULL, NULL), + (1678, 9242, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Caverns of Time', NULL, NULL), + (1680, 6099, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ahn\'Qiraj', NULL, NULL), + (1680, 6100, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ashenvale', NULL, NULL), + (1680, 6101, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Azshara', NULL, NULL), + (1680, 6102, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Azuremyst Isle', NULL, NULL), + (1680, 6103, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Blackfathom Deeps', NULL, NULL), + (1680, 6104, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Bloodmyst Isle', NULL, NULL), + (1680, 6105, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Darkshore', NULL, NULL), + (1680, 6106, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Desolace', NULL, NULL), + (1680, 6107, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Dire Maul', NULL, NULL), + (1680, 6108, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Durotar', NULL, NULL), + (1680, 6109, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Dustwallow Marsh', NULL, NULL), + (1680, 6110, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Felwood', NULL, NULL), + (1680, 6111, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Feralas', NULL, NULL), + (1680, 6112, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Gates of Ahn\'Qiraj', NULL, NULL), + (1680, 6113, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Maraudon', NULL, NULL), + (1680, 6114, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Moonglade', NULL, NULL), + (1680, 6115, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Mulgore', NULL, NULL), + (1680, 6116, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Onyxia\'s Lair', NULL, NULL), + (1680, 6117, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ogrimmar', NULL, NULL), + (1680, 6118, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ragefire Chasm', NULL, NULL), + (1680, 6119, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Razorfen Downs', NULL, NULL), + (1680, 6120, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Razorfen Kraul', NULL, NULL), + (1680, 6121, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ruins of Ahn\'Qiraj', NULL, NULL), + (1680, 6123, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Silithus', NULL, NULL), + (1680, 6125, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Southfury River', NULL, NULL), + (1680, 6126, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Stonetalon Mountains', NULL, NULL), + (1680, 6127, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Tanaris', NULL, NULL), + (1680, 6128, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Teldrassil', NULL, NULL), + (1680, 6129, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'The Barrens', NULL, NULL), + (1680, 6130, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Thousand Needles', NULL, NULL), + (1680, 6131, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Thunder Bluff', NULL, NULL), + (1680, 6132, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Un\'Goro Crater', NULL, NULL), + (1680, 6133, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Wailing Caverns', NULL, NULL), + (1680, 6134, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Winterspring', NULL, NULL), + (1680, 6135, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Zul\'Farrak', NULL, NULL), + (1680, 6136, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Alcaz Island', NULL, NULL), + (1680, 6137, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Timbermaw Hold', NULL, NULL), + (1680, 6138, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Feathermoon Stronghold', NULL, NULL), + (1680, 6139, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Rut\'theran Village', NULL, NULL), + (1680, 7896, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Valley of Trials', NULL, NULL), + (1680, 7897, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Red Cloud Mesa', NULL, NULL), + (1680, 7898, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Shadowglen', NULL, NULL), + (1680, 7899, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Crash Site', NULL, NULL), + (1680, 8099, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Ammen Vale', NULL, NULL), + (1680, 9221, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Darnassus', NULL, NULL), + (1680, 9222, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Exodar', NULL, NULL), + (1680, 9243, 10, 14861, 96, 1, 80, 1, 1, NULL, 10, 'Loremaster of Kalimdor', 'Caverns of Time', NULL, NULL), + (1681, 6143, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'The Loremaster', 'Loremaster of Eastern Kingdoms', NULL, NULL), + (1681, 6144, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'The Loremaster', 'Loremaster of Kalimdor', NULL, NULL), + (1681, 6145, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'The Loremaster', 'Loremaster of Outland', NULL, NULL), + (1681, 6146, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'The Loremaster', 'Loremaster of Northrend', NULL, NULL), + (1682, 6147, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'The Loremaster', 'Loremaster of Eastern Kingdoms', NULL, NULL), + (1682, 6148, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'The Loremaster', 'Loremaster of Kalimdor', NULL, NULL), + (1682, 6149, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'The Loremaster', 'Loremaster of Outland', NULL, NULL), + (1682, 6150, 10, 96, -1, 1, 80, 1, 1, NULL, 10, 'The Loremaster', 'Loremaster of Northrend', NULL, NULL), + (1683, 6174, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'The Brewfest Diet', NULL, NULL), + (1683, 6175, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'Brew of the Month', NULL, NULL), + (1683, 6177, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'Direbrewfest', NULL, NULL), + (1683, 6178, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'Down With The Dark Iron', NULL, NULL), + (1683, 6190, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'Have Keg, Will Travel', NULL, NULL), + (1683, 7234, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'Does Your Wolpertinger Linger?', NULL, NULL), + (1684, 6181, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'The Brewfest Diet', NULL, NULL), + (1684, 6182, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'Brew of the Month', NULL, NULL), + (1684, 6184, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'Direbrewfest', NULL, NULL), + (1684, 6185, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'Down With The Dark Iron', NULL, NULL), + (1684, 7235, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'Does Your Wolpertinger Linger?', NULL, NULL), + (1684, 8160, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Brewmaster', 'Have Keg, Will Travel', NULL, NULL), + (1685, 6225, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Brother Malach in the Undercity', NULL, NULL), + (1685, 6226, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Durkot Wolfbrother in Warsong Hold', NULL, NULL), + (1685, 6662, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Brother Keltan in Icecrown', NULL, NULL), + (1686, 6228, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Brother Nimetz in Stranglethorn Vale', NULL, NULL), + (1686, 6229, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Brother Wilhelm in Goldshire', NULL, NULL), + (1686, 6230, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Brother Kristoff in Stormwind', NULL, NULL), + (1686, 6231, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Brother Karman in Theramore', NULL, NULL), + (1686, 6232, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Brother Joshua in Stormwind', NULL, NULL), + (1686, 6233, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Brother Crowley in Stormwind', NULL, NULL), + (1686, 6234, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Brother Cassius in Stormwind', NULL, NULL), + (1686, 6235, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Brother Benjamin in Stormwind', NULL, NULL), + (1686, 6236, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Bros. Before Ho Ho Ho\'s', 'Brother Anton in Nijel\'s Point', NULL, NULL), + (1687, 6237, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Let It Snow', 'Orc Death Knight', NULL, NULL), + (1687, 6238, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Let It Snow', 'Human Warrior', NULL, NULL), + (1687, 6239, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Let It Snow', 'Tauren Shaman', NULL, NULL), + (1687, 6240, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Let It Snow', 'Night Elf Druid', NULL, NULL), + (1687, 6241, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Let It Snow', 'Undead Rogue', NULL, NULL), + (1687, 6242, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Let It Snow', 'Troll Hunter', NULL, NULL), + (1687, 6243, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Let It Snow', 'Gnome Mage', NULL, NULL), + (1687, 6244, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Let It Snow', 'Dwarf Paladin', NULL, NULL), + (1687, 6245, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Let It Snow', 'Blood Elf Warlock', NULL, NULL), + (1687, 6246, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'Let It Snow', 'Draenei Priest', NULL, NULL), + (1688, 6247, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'The Winter Veil Gourmet', 'Gingerbread Cookie', NULL, NULL), + (1688, 6248, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'The Winter Veil Gourmet', 'Egg Nog', NULL, NULL), + (1688, 6249, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'The Winter Veil Gourmet', 'Hot Apple Cider', NULL, NULL), + (1689, 6250, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'He Knows If You\'ve Been Naughty', 'Unique Toy', NULL, NULL), + (1689, 6251, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'He Knows If You\'ve Been Naughty', 'A Carefully Wrapped Present', NULL, NULL), + (1689, 6252, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'He Knows If You\'ve Been Naughty', 'A Gently Shaken Gift', NULL, NULL), + (1689, 6253, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'He Knows If You\'ve Been Naughty', 'A Gently Shaken Gift', NULL, NULL), + (1689, 6254, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'He Knows If You\'ve Been Naughty', 'A Festive Gift', NULL, NULL), + (1689, 6255, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'He Knows If You\'ve Been Naughty', 'A Gaily Wrapped Present', NULL, NULL), + (1689, 6256, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'He Knows If You\'ve Been Naughty', 'A Ticking Present', NULL, NULL), + (1689, 8739, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'He Knows If You\'ve Been Naughty', 'Winter Veil Gift', NULL, NULL), + (1689, 13256, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'He Knows If You\'ve Been Naughty', 'Winter Veil Gift', NULL, NULL), + (1690, 6257, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'A Frosty Shake', 'Winter Veil Disguise Kit', NULL, NULL), + (1690, 6258, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'A Frosty Shake', 'Winter Veil Disguise Kit in Dalaran', NULL, NULL), + (1690, 6261, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'A Frosty Shake', '/dance in dalaran with a snowman as a snowman', NULL, NULL), + (1691, 6262, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'On Metzen!', NULL, NULL), + (1691, 6263, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'With a Little Helper from My Friends', NULL, NULL), + (1691, 6264, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'Scrooge', NULL, NULL), + (1691, 6265, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'Fa-la-la-la-Ogri\'la', NULL, NULL), + (1691, 6266, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', '\'Tis the Season', NULL, NULL), + (1691, 6268, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'Simply Abominable', NULL, NULL), + (1691, 6269, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'Let It Snow', NULL, NULL), + (1691, 6270, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'Bros. Before Ho Ho Ho\'s', NULL, NULL), + (1691, 6271, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'The Winter Veil Gourmet', NULL, NULL), + (1691, 6272, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'He Knows If You\'ve Been Naughty', NULL, NULL), + (1691, 6273, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'A Frosty Shake', NULL, NULL), + (1692, 6274, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'On Metzen!', NULL, NULL), + (1692, 6275, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'With a Little Helper from My Friends', NULL, NULL), + (1692, 6276, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'Scrooge', NULL, NULL), + (1692, 6277, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'Fa-la-la-la-Ogri\'la', NULL, NULL), + (1692, 6278, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', '\'Tis the Season', NULL, NULL), + (1692, 6280, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'Simply Abominable', NULL, NULL), + (1692, 6281, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'Let It Snow', NULL, NULL), + (1692, 6282, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'Bros. Before Ho Ho Ho\'s', NULL, NULL), + (1692, 6283, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'The Winter Veil Gourmet', NULL, NULL), + (1692, 6284, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'He Knows If You\'ve Been Naughty', NULL, NULL), + (1692, 6285, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Merrymaker', 'A Frosty Shake', NULL, NULL), + (1693, 6351, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Charming', NULL, NULL), + (1693, 6352, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Shafted!', NULL, NULL), + (1693, 6353, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Flirt With Disaster', NULL, NULL), + (1693, 6354, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Lonely?', NULL, NULL), + (1693, 6356, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Dangerous Love', NULL, NULL), + (1693, 6357, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'The Rocket\'s Pink Glare', NULL, NULL), + (1693, 6358, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Nation of Adoration', NULL, NULL), + (1693, 6359, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Fistful of Love', NULL, NULL), + (1693, 6361, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Sweet Tooth', NULL, NULL), + (1693, 6362, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Be Mine!', NULL, NULL), + (1693, 6363, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'My Love is Like a Red, Red Rose', NULL, NULL), + (1693, 6364, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'I Pitied The Fool', NULL, NULL), + (1694, 6293, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Lovely Luck Is On Your Side', 'Lovely Black Dress', NULL, NULL), + (1695, 6294, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12878, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12879, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12880, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12881, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12882, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12883, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12884, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12885, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12886, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12887, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12888, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12889, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12890, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12891, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1695, 12892, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Dangerous Love', '', NULL, NULL), + (1696, 6295, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'The Rocket\'s Pink Glare', 'Shoot off 10 Love Rockets in 20 seconds or less', NULL, NULL), + (1697, 12838, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Nation of Adoration', 'A Gift for the High Priestess of Elune', NULL, NULL), + (1697, 12839, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Nation of Adoration', 'A Gift for the Prophet', NULL, NULL), + (1697, 12840, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Nation of Adoration', 'A Gift for the Lord of Ironforge', NULL, NULL), + (1697, 12841, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Nation of Adoration', 'A Gift for the King of Stormwind', NULL, NULL), + (1698, 12842, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Nation of Adoration', 'A Gift for the Warchief', NULL, NULL), + (1698, 12843, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Nation of Adoration', 'A Gift for the Regent Lord of Quel\'Thalas', NULL, NULL), + (1698, 12844, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Nation of Adoration', 'A Gift for the High Chieftain', NULL, NULL), + (1698, 12845, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Nation of Adoration', 'A Gift for the Banshee Queen', NULL, NULL), + (1699, 6302, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Fistful of Love', 'Orc Death Knight', NULL, NULL), + (1699, 6312, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Fistful of Love', 'Gnome Warlock', NULL, NULL), + (1699, 6313, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Fistful of Love', 'Human Death Knight', NULL, NULL), + (1699, 6314, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Fistful of Love', 'Night Elf Priest', NULL, NULL), + (1699, 6315, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Fistful of Love', 'Orc Shaman', NULL, NULL), + (1699, 6316, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Fistful of Love', 'Tauren Druid', NULL, NULL), + (1699, 6317, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Fistful of Love', 'Troll Rogue', NULL, NULL), + (1699, 6318, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Fistful of Love', 'Undead Warrior', NULL, NULL), + (1699, 6319, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Fistful of Love', 'Blood Elf Mage', NULL, NULL), + (1699, 6320, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Fistful of Love', 'Draenei Paladin', NULL, NULL), + (1699, 6321, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Fistful of Love', 'Dwarf Hunter', NULL, NULL), + (1700, 6322, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Perma-Peddle', 'Peddlefeet', NULL, NULL), + (1700, 6323, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Perma-Peddle', 'Truesilver Shafted Arrow', NULL, NULL), + (1701, 6324, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Be Mine!', 'Be Mine!', NULL, NULL), + (1701, 6325, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Be Mine!', 'I\'ll follow you all around Azeroth.', NULL, NULL), + (1701, 6326, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Be Mine!', 'All yours.', NULL, NULL), + (1701, 6327, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Be Mine!', 'I\'m all yours!', NULL, NULL), + (1701, 6328, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Be Mine!', 'Hot Lips.', NULL, NULL), + (1701, 6329, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Be Mine!', 'You\'re Mine!', NULL, NULL), + (1701, 6330, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Be Mine!', 'You\'re the best!', NULL, NULL), + (1701, 6331, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Be Mine!', 'I LOVE YOU', NULL, NULL), + (1702, 6332, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Sweet Tooth', 'Buttermilk Delight', NULL, NULL), + (1702, 6333, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Sweet Tooth', 'Dark Desire', NULL, NULL), + (1702, 6334, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Sweet Tooth', 'Sweet Surprise', NULL, NULL), + (1702, 6335, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Sweet Tooth', 'Very Berry Cream', NULL, NULL), + (1703, 6336, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'My Love is Like a Red, Red Rose', 'Bouquet of Red Roses', NULL, NULL), + (1703, 9338, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'My Love is Like a Red, Red Rose', 'Bouquet of Ebon Roses', NULL, NULL), + (1704, 6343, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'I Pitied The Fool', 'Wintergrasp', NULL, NULL), + (1704, 6344, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'I Pitied The Fool', 'Battle Ring of Gurubashi Arena', NULL, NULL), + (1704, 6345, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'I Pitied The Fool', 'Arathi Basin Blacksmith', NULL, NULL), + (1704, 6346, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'I Pitied The Fool', 'The Culling of Stratholme', NULL, NULL), + (1704, 6347, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'I Pitied The Fool', 'Naxxramas', NULL, NULL), + (1705, 6342, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Clockwork Rocket Bot', 'Clockwork Rocket Bot', NULL, NULL), + (1705, 6349, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Clockwork Rocket Bot', 'Clockwork Rocket Bot', NULL, NULL), + (1705, 6350, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Clockwork Rocket Bot', 'Clockwork Rocket Bot', NULL, NULL), + (1706, 6348, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Crashin\' Thrashin\' Racer', 'Crashin\' Thrashin\' Racer', NULL, NULL), + (1706, 7358, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Crashin\' Thrashin\' Racer', 'Crashin\' Thrashin\' Racer Controller', NULL, NULL), + (1707, 6365, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Charming', NULL, NULL), + (1707, 6366, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Shafted!', NULL, NULL), + (1707, 6367, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Flirt With Disaster', NULL, NULL), + (1707, 6368, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Lonely?', NULL, NULL), + (1707, 6370, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Dangerous Love', NULL, NULL), + (1707, 6371, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'The Rocket\'s Pink Glare', NULL, NULL), + (1707, 6372, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Nation of Adoration', NULL, NULL), + (1707, 6373, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Fistful of Love', NULL, NULL), + (1707, 6375, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Sweet Tooth', NULL, NULL), + (1707, 6376, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'Be Mine!', NULL, NULL), + (1707, 6377, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'My Love is Like a Red, Red Rose', NULL, NULL), + (1707, 6378, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Fool For Love', 'I Pitied The Fool', NULL, NULL), + (1716, 0, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Battleground with the most Killing Blows', NULL, NULL, NULL), + (1717, 6436, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Victory', 'Win Wintergrasp', NULL, NULL), + (1718, 7365, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Veteran', 'Win Wintergrasp 100 times', NULL, NULL), + (1719, 0, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Battleground with the most Honorable Kills', NULL, NULL, NULL), + (1721, 6384, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Archavon the Stone Watcher (25 player)', 'Archavon the Stone Watcher', NULL, NULL), + (1722, 6385, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Archavon the Stone Watcher (10 player)', 'Archavon the Stone Watcher', NULL, NULL), + (1723, 7704, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Vehicular Gnomeslaughter', 'Vehicle', NULL, NULL), + (1723, 7705, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Vehicular Gnomeslaughter', 'Cannon', NULL, NULL), + (1723, 7706, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Vehicular Gnomeslaughter', 'Shredder', NULL, NULL), + (1723, 7707, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Vehicular Gnomeslaughter', 'Fighter', NULL, NULL), + (1723, 7708, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Vehicular Gnomeslaughter', 'Bomber', NULL, NULL), + (1727, 9060, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Leaning Tower', 'Destroy a tower', NULL, NULL), + (1727, 9061, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Leaning Tower', 'Destroy a tower', NULL, NULL), + (1729, 6386, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Alchemy Recipes learned', 'Alchemy recipes known', NULL, NULL), + (1729, 7223, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Alchemy Recipes learned', 'Alchemy recipes known', NULL, NULL), + (1730, 6387, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Blacksmithing Plans learned', 'Blacksmithing plans known', NULL, NULL), + (1730, 7224, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Blacksmithing Plans learned', 'Blacksmithing plans known', NULL, NULL), + (1734, 6388, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Engineering Schematics learned', 'Engineering Schematics known', NULL, NULL), + (1734, 7226, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Engineering Schematics learned', 'Engineering Schematics known', NULL, NULL), + (1735, 6389, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Inscriptions learned', 'Inscriptions known', NULL, NULL), + (1735, 7227, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Inscriptions learned', 'Inscriptions known', NULL, NULL), + (1737, 6440, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Destruction Derby', 'Wintergrasp Catapult', NULL, NULL), + (1737, 6441, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Destruction Derby', 'Wintergrasp Demolisher', NULL, NULL), + (1737, 6444, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Destruction Derby', 'Wintergrasp Siege Engine', NULL, NULL), + (1737, 6445, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Destruction Derby', 'Wintergrasp Tower Cannon', NULL, NULL), + (1738, 6390, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Jewelcrafting Designs learned', 'Jewelcrafting Designs known', NULL, NULL), + (1738, 7228, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Jewelcrafting Designs learned', 'Jewelcrafting Designs known', NULL, NULL), + (1740, 6391, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Leatherworking Patterns learned', 'Leatherworking Patterns known', NULL, NULL), + (1740, 7229, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Leatherworking Patterns learned', 'Leatherworking Patterns known', NULL, NULL), + (1741, 6392, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Tailoring Patterns learned', 'Tailoring Patterns known', NULL, NULL), + (1741, 7230, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Tailoring Patterns learned', 'Tailoring Patterns known', NULL, NULL), + (1745, 6393, 1, 178, 132, 1, 80, 1, 1, NULL, 0, 'Cooking Recipes known', 'Cooking recipes known', NULL, NULL), + (1745, 7221, 1, 178, 132, 1, 80, 1, 1, NULL, 0, 'Cooking Recipes known', 'Cooking recipes known', NULL, NULL), + (1748, 6394, 1, 178, 132, 1, 80, 1, 1, NULL, 0, 'First Aid Manuals learned', 'First Aid Manuals learned', NULL, NULL), + (1748, 7222, 1, 178, 132, 1, 80, 1, 1, NULL, 0, 'First Aid Manuals learned', 'First Aid Manuals learned', NULL, NULL), + (1751, 7703, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Didn\'t Stand a Chance', 'Kill 20 mounted players using a tower cannon', NULL, NULL), + (1752, 7722, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Wintergrasp Veteran', NULL, NULL), + (1752, 7723, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Within Our Grasp', NULL, NULL), + (1752, 7724, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Wintergrasp Ranger', NULL, NULL), + (1752, 7726, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Black War Mammoth', NULL, NULL), + (1752, 7728, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', '1000 Stone Keeper\'s Shards', NULL, NULL), + (1752, 7729, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Archavon the Stone Watcher', NULL, NULL), + (1752, 7730, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Heroic: Archavon the Stone Watcher', NULL, NULL), + (1752, 7732, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Destruction Derby', NULL, NULL), + (1752, 7734, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Vehicular Gnomeslaughter', NULL, NULL), + (1752, 7735, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Leaning Tower', NULL, NULL), + (1752, 7736, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Didn\'t Stand a Chance', NULL, NULL), + (1753, 6395, 1, 14823, 14807, 1, 80, 71, 76, NULL, 10, 'Archavon the Stone Watcher kills (Wintergrasp 10 player)', 'Archavon the Stone Watcher', NULL, NULL), + (1754, 6396, 1, 14823, 14807, 1, 80, 71, 76, NULL, 10, 'Archavon the Stone Watcher kills (Wintergrasp 25 player)', 'Archavon the Stone Watcher', NULL, NULL), + (1755, 7666, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Within Our Grasp', 'Attack Wintergrasp and succeed in 10 minutes or less.', NULL, NULL), + (1756, 6397, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Gluth', NULL, NULL), + (1756, 6398, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Sartharion the Onyx Guardian', NULL, NULL), + (1756, 6399, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Malygos', NULL, NULL), + (1756, 6400, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Kel\'Thuzad', NULL, NULL), + (1756, 6401, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Sapphiron', NULL, NULL), + (1756, 6402, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Thaddius', NULL, NULL), + (1756, 6403, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Patchwerk', NULL, NULL), + (1756, 6404, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Noth the Plaguebringer', NULL, NULL), + (1756, 6405, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Maexxna', NULL, NULL), + (1756, 6406, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Grobbulus', NULL, NULL), + (1756, 6407, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Heigan the Unclean', NULL, NULL), + (1756, 6409, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Loatheb', NULL, NULL), + (1756, 6410, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Instructor Razuvious', NULL, NULL), + (1756, 6411, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Grand Widow Faerlina', NULL, NULL), + (1756, 6412, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Gothik the Harvester', NULL, NULL), + (1756, 8743, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Anub\'Rekhan', NULL, NULL), + (1756, 8745, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Archavon the Stone Watcher', NULL, NULL), + (1756, 8747, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'The Four Horsemen', NULL, NULL), + (1756, 9969, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Flame Leviathan', NULL, NULL), + (1756, 9971, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Razorscale', NULL, NULL), + (1756, 9973, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Ignis the Furnace Master', NULL, NULL), + (1756, 9975, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'XT-002 Deconstructor', NULL, NULL), + (1756, 9977, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Assembly of Iron', NULL, NULL), + (1756, 9979, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Kologarn', NULL, NULL), + (1756, 9981, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Hodir', NULL, NULL), + (1756, 9983, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Thorim', NULL, NULL), + (1756, 9985, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Freya', NULL, NULL), + (1756, 9987, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Mimiron', NULL, NULL), + (1756, 9989, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'General Vezax', NULL, NULL), + (1756, 9991, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Algalon the Observer', NULL, NULL), + (1756, 9993, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Auriaya', NULL, NULL), + (1756, 9995, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Yogg-Saron', NULL, NULL), + (1756, 9997, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Emalon the Storm Watcher', NULL, NULL), + (1756, 13343, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Toravon the Ice Watcher', NULL, NULL), + (1756, 13344, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Koralon the Flame Watcher', NULL, NULL), + (1756, 13345, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Onyxia', NULL, NULL), + (1756, 13346, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Icehowl', NULL, NULL), + (1756, 13347, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Lord Jaraxxus', NULL, NULL), + (1756, 13348, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Faction Champions', NULL, NULL), + (1756, 13349, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Val\'kyr Twins', NULL, NULL), + (1756, 13350, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Anub\'arak', NULL, NULL), + (1756, 13351, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Lord Marrowgar', NULL, NULL), + (1756, 13352, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Lady Deathwhisper', NULL, NULL), + (1756, 13353, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Airship Encounter', NULL, NULL), + (1756, 13354, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Deathbringer Saurfang', NULL, NULL), + (1756, 13355, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Valithria Dreamwalker', NULL, NULL), + (1756, 13356, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Festergut', NULL, NULL), + (1756, 13357, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Rotface', NULL, NULL), + (1756, 13358, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Professor Putricide', NULL, NULL), + (1756, 13359, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Blood Princes', NULL, NULL), + (1756, 13360, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Blood-Queen Lana\'thel', NULL, NULL), + (1756, 13361, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'Sindragosa', NULL, NULL), + (1756, 13362, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player bosses killed', 'The Lich King', NULL, NULL), + (1757, 7636, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Defense of the Ancients', 'Defend the beach without losing any walls', NULL, NULL), + (1759, 0, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player different bosses killed', NULL, NULL, NULL), + (1760, 0, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player boss killed the most', NULL, NULL, NULL), + (1761, 7632, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'The Dapper Sapper', 'Plant 100 Seaforium charges which successfully damage a wall', NULL, NULL), + (1762, 7626, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Not Even a Scratch', 'Win a Strand of the Ancients battle without losing any siege vehicles', NULL, NULL), + (1763, 7625, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Artillery Veteran', 'Destroy 100 vehicles using a turret', NULL, NULL), + (1764, 6446, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Drop it!', 'Kill 100 players carrying seaforium', NULL, NULL), + (1765, 6447, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Steady Hands', 'Disarm 5 seaforium charges in a single battle', NULL, NULL), + (1766, 7630, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Ancient Protector', 'Kill 10 players in the Courtyard of the Ancients in a single battle', NULL, NULL), + (1768, 6413, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player raids completed (final boss killed)', 'Malygos', NULL, NULL), + (1768, 6414, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player raids completed (final boss killed)', 'Sartharion the Onyx Guardian', NULL, NULL), + (1768, 6415, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player raids completed (final boss killed)', 'Kel\'Thuzad', NULL, NULL), + (1768, 9998, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player raids completed (final boss killed)', 'Yogg-Saron', NULL, NULL), + (1768, 13310, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player raids completed (final boss killed)', 'Anub\'arak', NULL, NULL), + (1768, 13311, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 25-player raids completed (final boss killed)', 'Anub\'arak', NULL, NULL), + (1770, 6416, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Gluth', NULL, NULL), + (1770, 6417, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Sartharion the Onyx Guardian', NULL, NULL), + (1770, 6418, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Malygos', NULL, NULL), + (1770, 6419, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Kel\'Thuzad', NULL, NULL), + (1770, 6420, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Sapphiron', NULL, NULL), + (1770, 6421, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Thaddius', NULL, NULL), + (1770, 6422, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Patchwerk', NULL, NULL), + (1770, 6423, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Noth the Plaguebringer', NULL, NULL), + (1770, 6424, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Maexxna', NULL, NULL), + (1770, 6425, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Grobbulus', NULL, NULL), + (1770, 6426, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Heigan the Unclean', NULL, NULL), + (1770, 6428, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Loatheb', NULL, NULL), + (1770, 6429, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Instructor Razuvious', NULL, NULL), + (1770, 6430, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Grand Widow Faerlina', NULL, NULL), + (1770, 6431, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Gothik the Harvester', NULL, NULL), + (1770, 8742, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Anub\'Rekhan', NULL, NULL), + (1770, 8744, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Archavon the Stone Watcher', NULL, NULL), + (1770, 8746, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'The Four Horsemen', NULL, NULL), + (1770, 9968, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Flame Leviathan', NULL, NULL), + (1770, 9970, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Razorscale', NULL, NULL), + (1770, 9972, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Ignis the Furnace Master', NULL, NULL), + (1770, 9974, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'XT-002 Deconstructor', NULL, NULL), + (1770, 9976, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Assembly of Iron', NULL, NULL), + (1770, 9978, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Kologarn', NULL, NULL), + (1770, 9980, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Hodir', NULL, NULL), + (1770, 9982, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Thorim', NULL, NULL), + (1770, 9984, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Freya', NULL, NULL), + (1770, 9986, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Mimiron', NULL, NULL), + (1770, 9988, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'General Vezax', NULL, NULL), + (1770, 9990, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Algalon the Observer', NULL, NULL), + (1770, 9992, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Auriaya', NULL, NULL), + (1770, 9994, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Yogg-Saron', NULL, NULL), + (1770, 9996, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Emalon the Storm Watcher', NULL, NULL), + (1770, 13324, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Toravon the Ice Watcher', NULL, NULL), + (1770, 13325, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Koralon the Flame Watcher', NULL, NULL), + (1770, 13326, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Icehowl', NULL, NULL), + (1770, 13327, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Lord Jaraxxus', NULL, NULL), + (1770, 13328, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Faction Champions', NULL, NULL), + (1770, 13329, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Val\'kyr Twins', NULL, NULL), + (1770, 13330, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Anub\'arak', NULL, NULL), + (1770, 13331, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Lord Marrowgar', NULL, NULL), + (1770, 13332, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Lady Deathwhisper', NULL, NULL), + (1770, 13333, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Airship Encounter', NULL, NULL), + (1770, 13334, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Deathbringer Saurfang', NULL, NULL), + (1770, 13335, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Valithria Dreamwalker', NULL, NULL), + (1770, 13336, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Festergut', NULL, NULL), + (1770, 13337, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Rotface', NULL, NULL), + (1770, 13338, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Professor Putricide', NULL, NULL), + (1770, 13339, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Blood Princes', NULL, NULL), + (1770, 13340, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Blood-Queen Lana\'thel', NULL, NULL), + (1770, 13341, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'Sindragosa', NULL, NULL), + (1770, 13342, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player bosses killed', 'The Lich King', NULL, NULL), + (1771, 0, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King 10-player different bosses killed', NULL, NULL, NULL), + (1772, 0, 1, 14807, 1, 1, 80, 1, 1, 'ICC - Lich King', 0, 'Lich King 10-player boss killed the most', NULL, NULL, NULL), + (1773, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Beverage consumed most', NULL, NULL, NULL), + (1774, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Different beverages consumed', NULL, NULL, NULL), + (1775, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Different foods eaten', NULL, NULL, NULL), + (1776, 0, 1, 145, 130, 1, 80, 1, 1, NULL, 0, 'Food eaten most', NULL, NULL, NULL), + (1777, 6486, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Bad Clams', NULL, NULL), + (1777, 6487, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Baked Manta Ray', NULL, NULL), + (1777, 6488, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Dalaran Clam Chowder', NULL, NULL), + (1777, 6489, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Grilled Bonescale', NULL, NULL), + (1777, 6490, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Grilled Sculpin', NULL, NULL), + (1777, 6491, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Haunted Herring', NULL, NULL), + (1777, 6492, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Last Week\'s Mammoth', NULL, NULL), + (1777, 6493, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Mammoth Meal', NULL, NULL), + (1777, 6494, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Northern Stew', NULL, NULL), + (1777, 6495, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Pickled Fangtooth', NULL, NULL), + (1777, 6496, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Poached Nettlefish', NULL, NULL), + (1777, 6497, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Rhino Dogs', NULL, NULL), + (1777, 6498, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Roasted Worg', NULL, NULL), + (1777, 6499, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Sauteed Goby', NULL, NULL), + (1777, 6501, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Shoveltusk Steak', NULL, NULL), + (1777, 6502, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Smoked Rockfin', NULL, NULL), + (1777, 6503, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Smoked Salmon', NULL, NULL), + (1777, 6505, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Tasty Cupcake', NULL, NULL), + (1777, 6506, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Worm Delight', NULL, NULL), + (1777, 6507, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Great Feast', NULL, NULL), + (1777, 6508, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Kungaloosh', NULL, NULL), + (1777, 6509, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Blackened Dragonfin', NULL, NULL), + (1777, 6510, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Blackened Worg Steak', NULL, NULL), + (1777, 6511, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Critter Bites', NULL, NULL), + (1777, 6512, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Cuttlesteak', NULL, NULL), + (1777, 6513, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Dragonfin Filet', NULL, NULL), + (1777, 6514, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Firecracker Salmon', NULL, NULL), + (1777, 6515, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Fish Feast', NULL, NULL), + (1777, 6516, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Gigantic Feast', NULL, NULL), + (1777, 6517, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Hearty Rhino', NULL, NULL), + (1777, 6518, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Imperial Manta Steak', NULL, NULL), + (1777, 6587, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Mega Mammoth Meal', NULL, NULL), + (1777, 6588, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Mighty Rhino Dogs', NULL, NULL), + (1777, 6589, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Poached Northern Sculpin', NULL, NULL), + (1777, 6590, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Rhinolicious Wormsteak', NULL, NULL), + (1777, 6591, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Small Feast', NULL, NULL), + (1777, 6592, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Snapper Extreme', NULL, NULL), + (1777, 6593, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Spiced Mammoth Treats', NULL, NULL), + (1777, 6594, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Spiced Worm Burger', NULL, NULL), + (1777, 6595, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Spicy Blue Nettlefish', NULL, NULL), + (1777, 6596, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Spicy Fried Herring', NULL, NULL), + (1777, 6597, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Tender Shoveltusk Steak', NULL, NULL), + (1777, 6598, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Tracker Snacks', NULL, NULL), + (1777, 6599, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Very Burnt Worg', NULL, NULL), + (1777, 9421, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', 'Worg Tartare', NULL, NULL), + (1778, 0, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', NULL, NULL, NULL), + (1779, 0, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Northrend Gourmet', NULL, NULL, NULL), + (1780, 6600, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Second That Emotion', 'Bad Clams', NULL, NULL), + (1780, 6601, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Second That Emotion', 'Haunted Herring', NULL, NULL), + (1780, 6602, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Second That Emotion', 'Last Weeks Mammoth', NULL, NULL), + (1780, 6603, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Second That Emotion', 'Tasty Cupcake', NULL, NULL), + (1781, 6606, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Critter Gitter', 'Get 10 critters in 3 minutes', NULL, NULL), + (1782, 6608, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Our Daily Bread', 'Infused Mushroom Meatloaf', NULL, NULL), + (1782, 6609, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Our Daily Bread', 'Convention at the Legerdemain', NULL, NULL), + (1782, 6610, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Our Daily Bread', 'Sewer Stew', NULL, NULL), + (1782, 6611, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Our Daily Bread', 'Cheese for Glowergold', NULL, NULL), + (1782, 6612, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Our Daily Bread', 'Mustard Dogs!', NULL, NULL), + (1783, 6613, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Our Daily Bread', 'Infused Mushroom Meatloaf', NULL, NULL), + (1783, 6614, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Our Daily Bread', 'Convention at the Legerdemain', NULL, NULL), + (1783, 6615, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Our Daily Bread', 'Sewer Stew', NULL, NULL), + (1783, 6616, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Our Daily Bread', 'Cheese for Glowergold', NULL, NULL), + (1783, 6617, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Our Daily Bread', 'Mustard Dogs!', NULL, NULL), + (1784, 6618, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Grand Master Cook', NULL, NULL), + (1784, 6619, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'The Cake Is Not A Lie', NULL, NULL), + (1784, 6620, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Kickin\' It Up a Notch', NULL, NULL), + (1784, 6621, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'The Northrend Gourmet', NULL, NULL), + (1784, 6622, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Second That Emotion', NULL, NULL), + (1784, 6623, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Critter Gitter', NULL, NULL), + (1784, 6625, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Critter Gitter', NULL, NULL), + (1784, 6632, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Dinner Impossible', NULL, NULL), + (1784, 6757, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Sous Chef', NULL, NULL), + (1784, 6763, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'Captain Rumsey\'s Lager', NULL, NULL), + (1784, 6787, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Hail to the Chef', 'The Outland Gourmet', NULL, NULL), + (1785, 6626, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Dinner Impossible', 'Alterac Valley', NULL, NULL), + (1785, 6627, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Dinner Impossible', 'Arathi Basin', NULL, NULL), + (1785, 6628, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Dinner Impossible', 'Warsong Gulch', NULL, NULL), + (1785, 6629, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Dinner Impossible', 'Strand of the Ancients', NULL, NULL), + (1785, 6630, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Dinner Impossible', 'Eye of the Storm', NULL, NULL), + (1786, 6641, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'School of Hard Knocks', 'Capture the flag in Eye of the Storm', NULL, NULL), + (1786, 6642, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'School of Hard Knocks', 'Assault a tower in Alterac Valley', NULL, NULL), + (1786, 6643, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'School of Hard Knocks', 'Assault a flag in Arathi Basin', NULL, NULL), + (1786, 6644, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'School of Hard Knocks', 'Return a fallen flag in Warsong Gulch', NULL, NULL), + (1788, 6651, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Bad Example', 'Tigule and Foror\'s Strawberry Ice Cream', NULL, NULL), + (1788, 6652, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Bad Example', 'Tasty Cupcake', NULL, NULL), + (1788, 6653, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Bad Example', 'Red Velvet Cupcake', NULL, NULL), + (1788, 6654, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Bad Example', 'Delicious Chocolate Cake', NULL, NULL), + (1788, 6655, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Bad Example', 'Lovely Cake Slice', NULL, NULL), + (1788, 6656, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Bad Example', 'Dalaran Brownie', NULL, NULL), + (1788, 6657, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Bad Example', 'Dalaran Doughnut', NULL, NULL), + (1789, 12398, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Daily Chores', 'Complete five daily quests with your orphan out.', NULL, NULL), + (1790, 6659, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Hail To The King, Baby', 'King Ymiron', NULL, NULL), + (1791, 10391, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Home Alone', '', NULL, NULL), + (1792, 6661, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Rat Cage', NULL, NULL), + (1792, 6663, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Whiskers the Rat', NULL, NULL), + (1792, 6664, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Piglet\'s Collar', NULL, NULL), + (1792, 6665, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Mr. Wiggles', NULL, NULL), + (1792, 6666, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Speedy', NULL, NULL), + (1792, 6667, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Speedy', NULL, NULL), + (1792, 6668, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Peanut', NULL, NULL), + (1792, 6669, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Egbert\'s Egg', NULL, NULL), + (1792, 6670, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Sleepy Willy', NULL, NULL), + (1792, 6671, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Elekk Training Collar', NULL, NULL), + (1792, 6672, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Egbert', NULL, NULL), + (1792, 6673, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Willy', NULL, NULL), + (1792, 12898, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Curious Oracle Hatchling', NULL, NULL), + (1792, 12899, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Curious Oracle Hatchling', NULL, NULL), + (1792, 12900, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Curious Wolvar Pup', NULL, NULL), + (1792, 12901, 10, 163, 155, 1, 80, 1, 1, NULL, 10, 'Aw, Isn\'t It Cute?', 'Curious Wolvar Pup', NULL, NULL), + (1793, 6674, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'For The Children', 'Home Alone', NULL, NULL), + (1793, 6744, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'For The Children', 'Bad Example', NULL, NULL), + (1793, 6745, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'For The Children', 'Daily Chores', NULL, NULL), + (1793, 6746, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'For The Children', 'Aw, Isn\'t It Cute?', NULL, NULL), + (1793, 6747, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'For The Children', 'School of Hard Knocks', NULL, NULL), + (1793, 6749, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'For The Children', 'Hail To The King, Baby', NULL, NULL), + (1795, 6751, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Lunch Lady', 'Learn 25 cooking recipes', NULL, NULL), + (1796, 6752, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Short Order Cook', 'Learn 50 cooking recipes', NULL, NULL), + (1797, 6753, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Chef de Partie', 'Learn 75 cooking recipes', NULL, NULL), + (1798, 6754, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Sous Chef', 'Learn 100 cooking recipes', NULL, NULL), + (1799, 6755, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Chef de Cuisine', 'Learn 160 cooking recipes', NULL, NULL), + (1800, 6758, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Delicious Chocolate Cake', NULL, NULL), + (1800, 6759, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Blackened Trout', NULL, NULL), + (1800, 6760, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Buzzard Bites', NULL, NULL), + (1800, 6764, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Clam Bar', NULL, NULL), + (1800, 6765, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Feltail Delight', NULL, NULL), + (1800, 6766, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Ravager Dog', NULL, NULL), + (1800, 6767, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Stormchops', NULL, NULL), + (1800, 6768, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Blackened Sporefish', NULL, NULL), + (1800, 6769, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Sporeling Snack', NULL, NULL), + (1800, 6770, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Blackened Basilisk', NULL, NULL), + (1800, 6771, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Grilled Mudfish', NULL, NULL), + (1800, 6772, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Poached Bluefish', NULL, NULL), + (1800, 6773, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Broiled Bloodfin', NULL, NULL), + (1800, 6774, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Golden Fish Sticks', NULL, NULL), + (1800, 6775, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Kibler\'s Bits', NULL, NULL), + (1800, 6776, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Roasted Clefthoof', NULL, NULL), + (1800, 6777, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Talbuk Steak', NULL, NULL), + (1800, 6778, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Warp Burger', NULL, NULL), + (1800, 6779, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Crunchy Serpent', NULL, NULL), + (1800, 6780, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Mok\'Nathal Shortribs', NULL, NULL), + (1800, 6781, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Fisherman\'s Feast', NULL, NULL), + (1800, 6782, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Hot Buttered Trout', NULL, NULL), + (1800, 6783, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Skullfish Soup', NULL, NULL), + (1800, 6784, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Spicy Crawdad', NULL, NULL), + (1800, 6785, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Spicy Hot Talbuk', NULL, NULL), + (1800, 6786, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'The Outland Gourmet', 'Stewed Trout', NULL, NULL), + (1801, 6761, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Captain Rumsey\'s Lager', 'Captain Rumsey\'s Lager', NULL, NULL), + (1816, 6803, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Defenseless', 'Cyanigosa', NULL, NULL), + (1817, 7494, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'The Culling of Time', 'Infinite Corruptor', NULL, NULL), + (1832, 0, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Tastes Like Chicken', NULL, NULL, NULL), + (1833, 0, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'It\'s Happy Hour Somewhere', NULL, NULL, NULL), + (1834, 6835, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Lightning Struck', 'General Bjarngrim', NULL, NULL), + (1836, 6980, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Old Crafty', 'Old Crafty', NULL, NULL), + (1836, 6981, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Old Crafty', 'Old Crafty', NULL, NULL), + (1837, 6982, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Old Ironjaw', 'Old Ironjaw', NULL, NULL), + (1837, 6984, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Old Ironjaw', 'Old Ironjaw', NULL, NULL), + (1856, 7126, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Make Quick Werk Of Him (10 player)', 'Patchwerk', NULL, NULL), + (1857, 7127, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Make Quick Werk Of Him (25 player)', 'Patchwerk', NULL, NULL), + (1858, 7128, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Arachnophobia (10 player)', 'Kill Maexxna within 20 minutes of Anub\'Rekhan\'s death.', NULL, NULL), + (1859, 7129, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Arachnophobia (25 player)', 'Kill Maexxna within 20 minutes of Anub\'Rekhan\'s death.', NULL, NULL), + (1860, 7130, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Gotta Go!', 'Kill Anub\'arak in 4 minutes or less.', NULL, NULL), + (1862, 7133, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Volazj\'s Quick Demise', 'Kill Herald Volazj on Heroic Difficulty in 2 minutes or less.', NULL, NULL), + (1864, 7136, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'What the Eck?', 'Kill Gal\'darah while under the effects of Eck Residue.', NULL, NULL), + (1865, 7137, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Lockdown!', 'Xevozz', NULL, NULL), + (1865, 7138, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Lockdown!', 'Lavanthor', NULL, NULL), + (1865, 7139, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Lockdown!', 'Ichoron', NULL, NULL), + (1865, 7140, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Lockdown!', 'Zuramat the Obliterator', NULL, NULL), + (1865, 7141, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Lockdown!', 'Erekem', NULL, NULL), + (1865, 7142, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Lockdown!', 'Moragg', NULL, NULL), + (1866, 7143, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Good Grief', 'Kill the Maiden of Grief in 1 minute or less.', NULL, NULL), + (1867, 7144, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Timely Death', 'Kill Loken on Heroic Difficulty in 2 minutes or less.', NULL, NULL), + (1868, 7145, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Make It Count', 'Kill Ley-Guardian Eregos within 20 minutes of Drakos the Interrogator\'s death.', NULL, NULL), + (1869, 7174, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'A Poke In The Eye (10 player)', 'Defeat Malygos with fewer than 9', NULL, NULL), + (1870, 7175, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'A Poke In The Eye (25 player)', 'Defeat Malygos with fewer than 21', NULL, NULL), + (1871, 7177, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Experienced Drake Rider', 'Amber Drake', NULL, NULL), + (1871, 7178, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Experienced Drake Rider', 'Emerald Drake', NULL, NULL), + (1871, 7179, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Experienced Drake Rider', 'Ruby Drake', NULL, NULL), + (1872, 7180, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Zombiefest!', 'Kill 100 Risen Zombies in 1 minute', NULL, NULL), + (1873, 7181, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Lodi Dodi We Loves the Skadi', 'Kill Skadi the Ruthless on Heroic Difficulty within 3 minutes of starting the guantlet event', NULL, NULL), + (1874, 7182, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'You Don\'t Have An Eternity (10 player)', 'Malygos', NULL, NULL), + (1875, 7183, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'You Don\'t Have An Eternity (25 player)', 'Malygos', NULL, NULL), + (1876, 7184, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Besting the Black Dragonflight (10 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (1877, 7185, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Less Is More (25 player)', 'Vesperon', NULL, NULL), + (1877, 7186, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Less Is More (25 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (1877, 7187, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Less Is More (25 player)', 'Shadron', NULL, NULL), + (1877, 7188, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Less Is More (25 player)', 'Tenebron', NULL, NULL), + (1919, 7231, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'On The Rocks', 'Defeat Prince Keleseth on Heroic Difficulty without shattering any Frost Tombs', NULL, NULL), + (1936, 7232, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Does Your Wolpertinger Linger?', 'Wolpertinger\'s Tankard', NULL, NULL), + (1936, 7233, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Does Your Wolpertinger Linger?', 'Wolpertinger', NULL, NULL), + (1956, 7236, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Higher Learning', 'The Schools of Arcane Magic - Introduction', NULL, NULL), + (1956, 7237, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Higher Learning', 'The Schools of Arcane Magic - Abjuration', NULL, NULL), + (1956, 7238, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Higher Learning', 'The Schools of Arcane Magic - Conjuration', NULL, NULL), + (1956, 7239, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Higher Learning', 'The Schools of Arcane Magic - Divination', NULL, NULL), + (1956, 7240, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Higher Learning', 'The Schools of Arcane Magic - Enchantment', NULL, NULL), + (1956, 7241, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Higher Learning', 'The Schools of Arcane Magic - Illusion', NULL, NULL), + (1956, 7242, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Higher Learning', 'The Schools of Arcane Magic - Necromancy', NULL, NULL), + (1956, 7243, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Higher Learning', 'The Schools of Arcane Magic - Transmutation', NULL, NULL), + (1957, 7244, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Anduin Wrynn\'s Gold Coin', NULL, NULL), + (1957, 7245, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Archimonde\'s Gold Coin', NULL, NULL), + (1957, 7246, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Arthas\' Gold Coin', NULL, NULL), + (1957, 7247, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Arugal\'s Gold Coin', NULL, NULL), + (1957, 7248, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Brann Bronzebeard\'s Gold Coin', NULL, NULL), + (1957, 7249, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Chromie\'s Gold Coin', NULL, NULL), + (1957, 7250, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Kel\'Thuzad\'s Gold Coin', NULL, NULL), + (1957, 7251, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Lady Jaina Proudmoore\'s Gold Coin', NULL, NULL), + (1957, 7252, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Lady Katrana Prestor\'s Gold Coin', NULL, NULL), + (1957, 7253, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Prince Kael\'thas Sunstrider\'s Gold Coin', NULL, NULL), + (1957, 7254, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Sylvanas Windrunner\'s Gold Coin', NULL, NULL), + (1957, 7255, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Teron\'s Gold Coin', NULL, NULL), + (1957, 7256, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Thrall\'s Gold Coin', NULL, NULL), + (1957, 7257, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Tirion Fordring\'s Gold Coin', NULL, NULL), + (1957, 7258, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'There\'s Gold In That There Fountain', 'Uther Lightbringer\'s Gold Coin', NULL, NULL), + (1958, 7260, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'I Smell A Giant Rat', 'Giant Sewer Rat', NULL, NULL), + (1958, 7261, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'I Smell A Giant Rat', 'Giant Sewer Rat', NULL, NULL), + (1976, 7262, 1, 178, 132, 1, 80, 1, 1, NULL, 0, 'Dalaran Cooking Awards gained', 'Dalaran Cooking Awards gained', NULL, NULL), + (1977, 7263, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Dalaran Jewelcrafter\'s Tokens gained', 'Dalaran Jewelcrafter\'s Tokens gained', NULL, NULL), + (1996, 7264, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Safety Dance (10 player)', 'Defeat Heigan the Unclean without anyone in the raid dying.', NULL, NULL), + (1997, 7265, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Momma Said Knock You Out (10 player)', 'Defeat Grand Widow Faerlina without dispelling or preventing frenzy.', NULL, NULL), + (1998, 7266, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Dalaran Cooking Award', 'Dalaran Cooking Award', NULL, NULL), + (1999, 7267, 10, 170, 169, 1, 80, 1, 1, NULL, 10, '10 Dalaran Cooking Awards', '10 Dalaran Cooking Awards', NULL, NULL), + (2000, 7268, 10, 170, 169, 1, 80, 1, 1, NULL, 10, '25 Dalaran Cooking Awards', '25 Dalaran Cooking Awards', NULL, NULL), + (2001, 7269, 10, 170, 169, 1, 80, 1, 1, NULL, 10, '50 Dalaran Cooking Awards', '50 Dalaran Cooking Awards', NULL, NULL), + (2002, 7270, 10, 170, 169, 1, 80, 1, 1, NULL, 10, '100 Dalaran Cooking Awards', '100 Dalaran Cooking Awards', NULL, NULL), + (2016, 7278, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Blackriver Skirmish', NULL, NULL), + (2016, 7279, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Pieces Parts', NULL, NULL), + (2016, 7280, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Life or Death', NULL, NULL), + (2016, 7281, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Shredder Repair', NULL, NULL), + (2016, 7282, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Kick \'Em While They\'re Down', NULL, NULL), + (2016, 7283, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Keep Them at Bay!', NULL, NULL), + (2016, 7284, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Down With Captain Zorna!', NULL, NULL), + (2016, 7285, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Smoke \'Em Out', NULL, NULL), + (2016, 7286, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Riding the Red Rocket', NULL, NULL), + (2017, 7287, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Blackriver Brawl', NULL, NULL), + (2017, 7288, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Shred the Alliance', NULL, NULL), + (2017, 7289, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Making Repairs', NULL, NULL), + (2017, 7290, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Keep \'Em on their Heels', NULL, NULL), + (2017, 7291, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Overwhelmed!', NULL, NULL), + (2017, 7292, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Riding the Red Rocket', NULL, NULL), + (2017, 7293, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Crush Captain Brightwater!', NULL, NULL), + (2017, 7294, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Keep Them at Bay', NULL, NULL), + (2017, 7295, 10, 95, -1, 1, 80, 1, 1, NULL, 10, 'Grizzled Veteran', 'Smoke \'Em Out', NULL, NULL), + (2018, 7296, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Timear Foresees', 'Timear Foresees Centrifuge Constructs in your Future!', NULL, NULL), + (2018, 7297, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Timear Foresees', 'Timear Foresees Ymirjar Berserkers in your Future!', NULL, NULL), + (2018, 7298, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Timear Foresees', 'Timear Foresees Infinite Agents in your Future!', NULL, NULL), + (2018, 7299, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Timear Foresees', 'Timear Foresees Titanium Vanguards in your Future!', NULL, NULL), + (2019, 7300, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: Ingvar the Plunderer', NULL, NULL), + (2019, 7301, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: Keristrasza', NULL, NULL), + (2019, 7302, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: Ley-Guardian Eregos', NULL, NULL), + (2019, 7303, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: King Ymiron', NULL, NULL), + (2019, 7304, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: The Prophet Tharon\'ja', NULL, NULL), + (2019, 7305, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: Gal\'darah', NULL, NULL), + (2019, 7306, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: Mal\'Ganis', NULL, NULL), + (2019, 7307, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: Sjonnir The Ironshaper', NULL, NULL), + (2019, 7308, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: Loken', NULL, NULL), + (2019, 7309, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: Anub\'arak', NULL, NULL), + (2019, 7310, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: Herald Volazj', NULL, NULL), + (2019, 7311, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Proof of Demise', 'Proof of Demise: Cyanigosa', NULL, NULL), + (2036, 7315, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Intense Cold', 'Keristrasza', NULL, NULL), + (2037, 7316, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Chaos Theory', 'Anomalus', NULL, NULL), + (2038, 7317, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Respect Your Elders', 'Elder Nadox', NULL, NULL), + (2039, 7318, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Better Off Dred', 'King Dred', NULL, NULL), + (2040, 7319, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Less-rabi', 'Moorabi', NULL, NULL), + (2041, 7320, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Dehydration', 'Ichoron', NULL, NULL), + (2042, 7321, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Shatter Resistant', 'Volkhan', NULL, NULL), + (2043, 7322, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'The Incredible Hulk', 'Scourge Hulk', NULL, NULL), + (2044, 7323, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Ruby Void', 'Ley-Guardian Eregos', NULL, NULL), + (2045, 7324, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Emerald Void', 'Ley-Guardian Eregos', NULL, NULL), + (2046, 7325, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Amber Void', 'Ley-Guardian Eregos', NULL, NULL), + (2047, 7326, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Gonna Go When the Volcano Blows (10 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (2048, 7327, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Gonna Go When the Volcano Blows (25 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (2049, 7328, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Twilight Assist (10 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (2050, 7329, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Twilight Duo (10 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (2051, 7330, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Twilight Zone (10 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (2052, 7331, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Twilight Assist (25 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (2053, 7332, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Twilight Duo (25 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (2054, 7333, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Twilight Zone (25 player)', 'Sartharion the Onyx Guardian', NULL, NULL), + (2056, 7359, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Volunteer Work', 'Jedoga Shadowseeker', NULL, NULL), + (2057, 7361, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Oh Novos!', 'Novos the Summoner', NULL, NULL), + (2058, 7363, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Snakes. Why\'d It Have To Be Snakes?', 'Slad\'ran', NULL, NULL), + (2076, 7368, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Armored Brown Bear', 'Armored Brown Bear', NULL, NULL), + (2076, 7369, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Armored Brown Bear', 'Armored Brown Bear', NULL, NULL), + (2077, 7371, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Wooly Mammoth', 'Wooly Mammoth', NULL, NULL), + (2077, 7372, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Wooly Mammoth', 'Wooly Mammoth', NULL, NULL), + (2078, 7380, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Traveler\'s Tundra Mammoth', 'Traveler\'s Tundra Mammoth', NULL, NULL), + (2078, 7381, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Traveler\'s Tundra Mammoth', 'Traveler\'s Tundra Mammoth', NULL, NULL), + (2079, 7382, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Tabard of the Protector', 'Tabard of the Protector', NULL, NULL), + (2080, 7387, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Black War Mammoth', 'Black War Mammoth', NULL, NULL), + (2080, 7388, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Black War Mammoth', 'Black War Mammoth', NULL, NULL), + (2081, 7391, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Grand Black War Mammoth', 'Grand Black War Mammoth', NULL, NULL), + (2081, 7392, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Grand Black War Mammoth', 'Grand Black War Mammoth', NULL, NULL), + (2082, 7393, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Ice Mammoth', 'Ice Mammoth', NULL, NULL), + (2082, 7394, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Ice Mammoth', 'Ice Mammoth', NULL, NULL), + (2082, 7395, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Ice Mammoth', 'Ice Mammoth', NULL, NULL), + (2082, 7396, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Ice Mammoth', 'Ice Mammoth', NULL, NULL), + (2083, 7397, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Grand Ice Mammoth', 'Grand Ice Mammoth', NULL, NULL), + (2083, 7398, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Grand Ice Mammoth', 'Grand Ice Mammoth', NULL, NULL), + (2083, 7399, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Grand Ice Mammoth', 'Grand Ice Mammoth', NULL, NULL), + (2083, 7400, 10, 14866, 201, 1, 80, 1, 1, NULL, 10, 'Grand Ice Mammoth', 'Grand Ice Mammoth', NULL, NULL), + (2084, 7401, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Ring of the Kirin Tor', 'Band of the Kirin Tor', NULL, NULL), + (2084, 7402, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Ring of the Kirin Tor', 'Signet of the Kirin Tor', NULL, NULL), + (2084, 9418, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Ring of the Kirin Tor', 'Loop of the Kirin Tor', NULL, NULL), + (2084, 9419, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Ring of the Kirin Tor', 'Ring of the Kirin Tor', NULL, NULL), + (2085, 7403, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, '50 Stone Keeper\'s Shards', 'Loot 50 Stone Keeper\'s Shards', NULL, NULL), + (2086, 7404, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, '100 Stone Keeper\'s Shards', 'Loot 100 Stone Keeper\'s Shards', NULL, NULL), + (2087, 7405, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, '250 Stone Keeper\'s Shards', 'Loot 250 Stone Keeper\'s Shards', NULL, NULL), + (2088, 7406, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, '500 Stone Keeper\'s Shards', 'Loot 500 Stone Keeper\'s Shards', NULL, NULL), + (2089, 7407, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, '1000 Stone Keeper\'s Shards', 'Loot 1000 Stone Keeper\'s Shards', NULL, NULL), + (2090, 7408, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Challenger', 'Challenger', NULL, NULL), + (2090, 9719, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Challenger', 'Rival', NULL, NULL), + (2090, 9720, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Challenger', 'Duelist', NULL, NULL), + (2090, 9721, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Challenger', 'Gladiator', NULL, NULL), + (2090, 10878, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Challenger', 'Deadly Gladiator', NULL, NULL), + (2090, 13006, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Challenger', 'Furious Gladiator', NULL, NULL), + (2090, 13007, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Challenger', 'Relentless Gladiator', NULL, NULL), + (2091, 7412, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Gladiator', 'Gladiator', NULL, NULL), + (2091, 10881, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Gladiator', 'Deadly Gladiator', NULL, NULL), + (2091, 12999, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Gladiator', 'Furious Gladiator', NULL, NULL), + (2091, 13000, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Gladiator', 'Relentless Gladiator', NULL, NULL), + (2092, 7415, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Duelist', 'Duelist', NULL, NULL), + (2092, 7416, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Duelist', 'Gladiator', NULL, NULL), + (2092, 13001, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Duelist', 'Deadly Gladiator', NULL, NULL), + (2092, 13002, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Duelist', 'Furious Gladiator', NULL, NULL), + (2092, 13003, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Duelist', 'Relentless Gladiator', NULL, NULL), + (2093, 7418, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Rival', 'Rival', NULL, NULL), + (2093, 7419, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Rival', 'Duelist', NULL, NULL), + (2093, 9718, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Rival', 'Gladiator', NULL, NULL), + (2093, 10879, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Rival', 'Deadly Gladiator', NULL, NULL), + (2093, 13004, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Rival', 'Furious Gladiator', NULL, NULL), + (2093, 13005, 10, 165, 95, 1, 80, 1, 1, NULL, 10, 'Rival', 'Relentless Gladiator', NULL, NULL), + (2094, 7441, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Alonsus Faol\'s Copper Coin', NULL, NULL), + (2094, 7442, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Ansirem\'s Copper Coin', NULL, NULL), + (2094, 7443, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Attumen\'s Copper Coin', NULL, NULL), + (2094, 7444, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Danath\'s Copper Coin', NULL, NULL), + (2094, 7445, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Dornaa\'s Shiny Copper Coin', NULL, NULL), + (2094, 7446, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Eitrigg\'s Copper Coin', NULL, NULL), + (2094, 7447, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Elling Trias\' Copper Coin', NULL, NULL), + (2094, 7448, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Falstad Wildhammer\'s Copper Coin', NULL, NULL), + (2094, 7449, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Genn\'s Copper Coin', NULL, NULL), + (2094, 7450, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Inigo\'s Copper Coin', NULL, NULL), + (2094, 7451, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Krasus\' Copper Coin', NULL, NULL), + (2094, 7452, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Kryll\'s Copper Coin', NULL, NULL), + (2094, 7453, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Landro Longshot\'s Copper Coin', NULL, NULL), + (2094, 7454, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Molok\'s Copper Coin', NULL, NULL), + (2094, 7455, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Murky\'s Copper Coin', NULL, NULL), + (2094, 7456, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Princess Calia Menethil\'s Copper Coin', NULL, NULL), + (2094, 7457, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Private Marcus Jonathan\'s Copper Coin', NULL, NULL), + (2094, 7458, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Salandria\'s Shiny Copper Coin', NULL, NULL), + (2094, 7459, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Squire Rowe\'s Copper Coin', NULL, NULL), + (2094, 7460, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Stalvan\'s Copper Coin', NULL, NULL), + (2094, 7461, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Vareesa\'s Copper Coin', NULL, NULL), + (2094, 7462, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'A Penny For Your Thoughts', 'Vargoth\'s Copper Coin', NULL, NULL), + (2095, 7463, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'Aegwynn\'s Silver Coin', NULL, NULL), + (2095, 7464, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'Alleria\'s Silver Coin', NULL, NULL), + (2095, 7465, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'Antonidas\' Silver Coin', NULL, NULL), + (2095, 7466, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'Arcanist Doan\'s Silver Coin', NULL, NULL), + (2095, 7467, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'Fandral Staghelm\'s Silver Coin', NULL, NULL), + (2095, 7468, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'High Tinker Mekkatorque\'s Silver Coin', NULL, NULL), + (2095, 7469, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'Khadgar\'s Silver Coin', NULL, NULL), + (2095, 7470, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'King Anasterian Sunstrider\'s Silver Coin', NULL, NULL), + (2095, 7471, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'King Terenas Menethil\'s Silver Coin', NULL, NULL), + (2095, 7472, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'King Varian Wrynn\'s Silver Coin', NULL, NULL), + (2095, 7473, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'Maiev Shadowsong\'s Silver Coin', NULL, NULL), + (2095, 7474, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'Medivh\'s Silver Coin', NULL, NULL), + (2095, 7475, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'Muradin Bronzebeard\'s Silver Coin', NULL, NULL), + (2095, 7476, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'Prince Magni Bronzebeard\'s Silver Coin', NULL, NULL), + (2095, 7477, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Silver in the City', 'A Peasant\'s Silver Coin', NULL, NULL), + (2096, 7486, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Coin Master', 'A Penny For Your Thoughts', NULL, NULL), + (2096, 7487, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Coin Master', 'Silver in the City', NULL, NULL), + (2096, 7488, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'The Coin Master', 'There\'s Gold In That There Fountain', NULL, NULL), + (2097, 7491, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Get to the Choppa!', 'Mechano-hog', NULL, NULL), + (2097, 7492, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Get to the Choppa!', 'Mekgineer\'s Chopper', NULL, NULL), + (2116, 7493, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Tabard of the Argent Dawn', 'Tabard of the Argent Dawn', NULL, NULL), + (2136, 7496, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'On The Rocks', NULL, NULL), + (2136, 7497, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Intense Cold', NULL, NULL), + (2136, 7498, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Chaos Theory', NULL, NULL), + (2136, 7499, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Watch Him Die', NULL, NULL), + (2136, 7500, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Hadronox Denied', NULL, NULL), + (2136, 7501, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Gotta Go!', NULL, NULL), + (2136, 7503, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Volazj\'s Quick Demise', NULL, NULL), + (2136, 7505, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Respect Your Elders', NULL, NULL), + (2136, 7506, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Volunteer Work', NULL, NULL), + (2136, 7507, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Better Off Dred', NULL, NULL), + (2136, 7508, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Oh Novos!', NULL, NULL), + (2136, 7509, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Defenseless', NULL, NULL), + (2136, 7510, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Lockdown!', NULL, NULL), + (2136, 7511, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Dehydration', NULL, NULL), + (2136, 7512, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'What the Eck?', NULL, NULL), + (2136, 7513, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Less-rabi', NULL, NULL), + (2136, 7514, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Snakes. Why\'d It Have To Be Snakes?', NULL, NULL), + (2136, 7515, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Good Grief', NULL, NULL), + (2136, 7516, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Timely Death', NULL, NULL), + (2136, 7517, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Lightning Struck', NULL, NULL), + (2136, 7518, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Shatter Resistant', NULL, NULL), + (2136, 7519, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'The Culling of Time', NULL, NULL), + (2136, 7520, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Zombiefest!', NULL, NULL), + (2136, 7521, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'The Incredible Hulk', NULL, NULL), + (2136, 7522, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Lodi Dodi We Loves the Skadi', NULL, NULL), + (2136, 7523, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Experienced Drake Rider', NULL, NULL), + (2136, 7524, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Make It Count', NULL, NULL), + (2136, 7525, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Ruby Void', NULL, NULL), + (2136, 7526, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Emerald Void', NULL, NULL), + (2136, 7527, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Amber Void', NULL, NULL), + (2136, 7580, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Split Personality', NULL, NULL), + (2136, 7581, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Consumption Junction', NULL, NULL), + (2136, 7584, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Share The Love', NULL, NULL), + (2136, 7588, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'A Void Dance', NULL, NULL), + (2136, 7591, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Brann Spankin\' New', NULL, NULL), + (2136, 7594, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'Abuse the Ooze', NULL, NULL), + (2136, 7596, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'My Girl Loves to Skadi All the Time', NULL, NULL), + (2136, 7599, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Hero', 'King\'s Bane', NULL, NULL), + (2137, 7528, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'The Dedicated Few', NULL, NULL), + (2137, 7529, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'Arachnophobia', NULL, NULL), + (2137, 7530, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'Make Quick Werk Of Him', NULL, NULL), + (2137, 7531, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'The Safety Dance', NULL, NULL), + (2137, 7532, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'Momma Said Knock You Out', NULL, NULL), + (2137, 7533, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'The Spellweaver\'s Downfall', NULL, NULL), + (2137, 7534, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'You Don\'t Have An Eternity', NULL, NULL), + (2137, 7535, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'A Poke In The Eye', NULL, NULL), + (2137, 7536, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'Gonna Go When the Volcano Blows', NULL, NULL), + (2137, 7537, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'The Twilight Zone', NULL, NULL), + (2137, 7570, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'The Hundred Club', NULL, NULL), + (2137, 7576, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'Denyin\' the Scion', NULL, NULL), + (2137, 7602, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'And They Would All Go Down Together', NULL, NULL), + (2137, 7606, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'Shocking!', NULL, NULL), + (2137, 7610, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'Subtraction', NULL, NULL), + (2137, 7618, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'The Undying', NULL, NULL), + (2137, 7620, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (10 player)', 'Just Can\'t Get Enough', NULL, NULL), + (2138, 7538, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'The Dedicated Few (25 player)', NULL, NULL), + (2138, 7539, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'Arachnophobia (25 player)', NULL, NULL), + (2138, 7540, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'Make Quick Werk Of Him (25 player)', NULL, NULL), + (2138, 7541, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'The Safety Dance (25 player)', NULL, NULL), + (2138, 7542, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'Momma Said Knock You Out (25 player)', NULL, NULL), + (2138, 7543, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'The Spellweaver\'s Downfall (25 player)', NULL, NULL), + (2138, 7544, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'You Don\'t Have An Eternity (25 player)', NULL, NULL), + (2138, 7545, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'A Poke In The Eye (25 player)', NULL, NULL), + (2138, 7546, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'Gonna Go When the Volcano Blows (25 player)', NULL, NULL), + (2138, 7547, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'The Twilight Zone (25 player)', NULL, NULL), + (2138, 7569, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'The Hundred Club (25 player)', NULL, NULL), + (2138, 7575, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'Denyin\' the Scion (25 player)', NULL, NULL), + (2138, 7603, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'The Immortal', NULL, NULL), + (2138, 7607, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'Shocking! (25 player)', NULL, NULL), + (2138, 7611, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'Subtraction (25 player)', NULL, NULL), + (2138, 7619, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'And They Would All Go Down Together (25 player)', NULL, NULL), + (2138, 7621, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Raider (25 player)', 'Just Can\'t Get Enough (25 player)', NULL, NULL), + (2139, 7548, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Safety Dance (25 player)', 'Defeat Heigan the Unclean without anyone in the raid dying.', NULL, NULL), + (2140, 7549, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Momma Said Knock You Out (25 player)', 'Defeat Grand Widow Faerlina without dispelling or preventing frenzy.', NULL, NULL), + (2141, 7550, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Stable Keeper', 'Obtain 10 mounts', NULL, NULL), + (2142, 7551, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Filling Up The Barn', 'Obtain 25 mounts', NULL, NULL), + (2143, 7552, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Leading the Cavalry', 'Obtain 50 mounts', NULL, NULL), + (2144, 7553, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'To Honor One\'s Elders', NULL, NULL), + (2144, 7554, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'Fool For Love', NULL, NULL), + (2144, 7555, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'For The Children', NULL, NULL), + (2144, 7556, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'The Flame Warden', NULL, NULL), + (2144, 7557, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'Brewmaster', NULL, NULL), + (2144, 7558, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'Hallowed Be Thy Name', NULL, NULL), + (2144, 7559, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'Merrymaker', NULL, NULL), + (2144, 9879, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'Noble Gardener', NULL, NULL), + (2145, 7560, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'To Honor One\'s Elders', NULL, NULL), + (2145, 7561, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'Fool For Love', NULL, NULL), + (2145, 7562, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'For The Children', NULL, NULL), + (2145, 7563, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'The Flame Keeper', NULL, NULL), + (2145, 7564, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'Brewmaster', NULL, NULL), + (2145, 7565, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'Hallowed Be Thy Name', NULL, NULL), + (2145, 7566, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'Merrymaker', NULL, NULL), + (2145, 9880, 50, 155, -1, 1, 80, 1, 1, NULL, 50, 'What A Long, Strange Trip It\'s Been', 'Noble Gardener', NULL, NULL), + (2146, 7567, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Hundred Club (10 player)', 'The Hundred Club', NULL, NULL), + (2147, 7568, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Hundred Club (25 player)', 'Sapphiron', NULL, NULL), + (2148, 7573, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Denyin\' the Scion (10 player)', 'Deliver a killing blow to a Scion of Eternity while riding on a hover disk', NULL, NULL), + (2149, 7574, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Denyin\' the Scion (25 player)', 'Deliver a killing blow to a Scion of Eternity while riding on a hover disk', NULL, NULL), + (2150, 7577, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Split Personality', 'Grand Magus Telestra', NULL, NULL), + (2151, 7579, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Consumption Junction', 'Trollgore', NULL, NULL), + (2152, 7583, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Share The Love', 'Gal\'darah', NULL, NULL), + (2153, 7587, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'A Void Dance', 'Zuramat the Obliterator', NULL, NULL), + (2154, 7590, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Brann Spankin\' New', 'The Tribunal of Ages', NULL, NULL), + (2155, 7593, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Abuse the Ooze', 'Sjonnir the Ironshaper', NULL, NULL), + (2156, 7595, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'My Girl Loves to Skadi All the Time', 'Kill Skadi the Ruthless on Heroic Difficulty', NULL, NULL), + (2157, 7598, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'King\'s Bane', 'King Ymiron', NULL, NULL), + (2176, 7600, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'And They Would All Go Down Together (10 player)', 'The Four Horsemen', NULL, NULL), + (2177, 7601, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'And They Would All Go Down Together (25 player)', 'The Four Horsemen', NULL, NULL), + (2178, 7604, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Shocking! (10 player)', 'Thaddius', NULL, NULL), + (2179, 7605, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Shocking! (25 player)', 'Thaddius', NULL, NULL), + (2180, 7608, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Subtraction (10 player)', 'Thaddius', NULL, NULL), + (2181, 7609, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Subtraction (25 player)', 'Thaddius', NULL, NULL), + (2182, 7612, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Spore Loser (10 player)', 'Loatheb', NULL, NULL), + (2183, 7613, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Spore Loser (25 player)', 'Loatheb', NULL, NULL), + (2184, 7614, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Just Can\'t Get Enough (10 player)', 'Kel\'Thuzad', NULL, NULL), + (2185, 7615, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Just Can\'t Get Enough (25 player)', 'Kel\'Thuzad', NULL, NULL), + (2186, 7616, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Immortal', 'Kel\'Thuzad', NULL, NULL), + (2186, 13233, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Immortal', 'The Four Horsemen', NULL, NULL), + (2186, 13234, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Immortal', 'Maexxna', NULL, NULL), + (2186, 13235, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Immortal', 'Thaddius', NULL, NULL), + (2186, 13236, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Immortal', 'Loatheb', NULL, NULL), + (2187, 7617, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Undying', 'Kel\'Thuzad', NULL, NULL), + (2187, 13237, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Undying', 'The Four Horsemen', NULL, NULL), + (2187, 13238, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Undying', 'Maexxna', NULL, NULL), + (2187, 13239, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Undying', 'Loatheb', NULL, NULL), + (2187, 13240, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Undying', 'Thaddius', NULL, NULL), + (2188, 7622, 10, 14808, 168, 1, 80, 1, 1, NULL, 10, 'Leeeeeeeeeeeeeroy!', 'Kill 50 rookery whelps within 15 seconds', NULL, NULL), + (2189, 7628, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Artillery Expert', 'Destroy 5 vehicles using a turret in a single battle', NULL, NULL), + (2190, 7629, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Drop it now!', 'Kill 5 players carrying seaforium in a single battle', NULL, NULL), + (2191, 7631, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Ancient Courtyard Protector', 'Kill 100 players in the Courtyard of the Ancients', NULL, NULL), + (2192, 7634, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Not Even a Scratch', 'Win a Strand of the Ancients battle without losing any siege vehicles', NULL, NULL), + (2193, 7635, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Explosives Expert', 'Plant 5 Seaforium charges which successfully damage a wall in a single battle', NULL, NULL), + (2194, 7642, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Strand of the Ancients Veteran', NULL, NULL), + (2194, 7643, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Storm the Beach', NULL, NULL), + (2194, 7644, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Steady Hands', NULL, NULL), + (2194, 7645, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'The Dapper Sapper', NULL, NULL), + (2194, 7646, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Explosives Expert', NULL, NULL), + (2194, 7647, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Not Even a Scratch', NULL, NULL), + (2194, 7648, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Artillery Veteran', NULL, NULL), + (2194, 7649, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Artillery Expert', NULL, NULL), + (2194, 7650, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Drop it!', NULL, NULL), + (2194, 7651, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Drop it now!', NULL, NULL), + (2194, 7652, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Ancient Protector', NULL, NULL), + (2194, 7653, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Ancient Courtyard Protector', NULL, NULL), + (2194, 7741, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Defense of the Ancients', NULL, NULL), + (2195, 7654, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Strand of the Ancients Veteran', NULL, NULL), + (2195, 7655, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Storm the Beach', NULL, NULL), + (2195, 7656, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Steady Hands', NULL, NULL), + (2195, 7657, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'The Dapper Sapper', NULL, NULL), + (2195, 7658, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Explosives Expert', NULL, NULL), + (2195, 7659, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Not Even a Scratch', NULL, NULL), + (2195, 7660, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Artillery Veteran', NULL, NULL), + (2195, 7661, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Artillery Expert', NULL, NULL), + (2195, 7662, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Drop it!', NULL, NULL), + (2195, 7663, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Drop it now!', NULL, NULL), + (2195, 7664, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Ancient Protector', NULL, NULL), + (2195, 7665, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Ancient Courtyard Protector', NULL, NULL), + (2195, 7742, 25, 14881, 95, 1, 80, 1, 1, NULL, 25, 'Master of Strand of the Ancients', 'Defense of the Ancients', NULL, NULL), + (2199, 7709, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Ranger', 'Wintergrasp Fortress', NULL, NULL), + (2199, 7710, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Ranger', 'Eastspark Workshop', NULL, NULL), + (2199, 7711, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Ranger', 'The Broken Temple', NULL, NULL), + (2199, 7712, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Ranger', 'The Sunken Ring', NULL, NULL), + (2199, 7713, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Ranger', 'Westspark Workshop', NULL, NULL), + (2199, 7714, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Ranger', 'Flamewatch Tower', NULL, NULL), + (2199, 7715, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Ranger', 'Shadowsight Tower', NULL, NULL), + (2199, 7716, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Ranger', 'Winter\'s Edge Tower', NULL, NULL), + (2199, 7718, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Ranger', 'The Cauldron of Flames', NULL, NULL), + (2199, 7719, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Wintergrasp Ranger', 'The Chilled Quagmire', NULL, NULL), + (2200, 7740, 10, 14881, 95, 1, 80, 1, 1, NULL, 10, 'Defense of the Ancients', 'Defend the beach without losing any walls', NULL, NULL), + (2216, 0, 1, 125, 122, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Most deadly Lich King dungeon boss', NULL, NULL, NULL), + (2217, 0, 1, 125, 122, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Most deadly Lich King 10-player raid boss', NULL, NULL, NULL), + (2218, 0, 1, 125, 122, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Most deadly Lich King 25-player raid boss', NULL, NULL, NULL), + (2219, 7849, 1, 125, 122, -1, 80, 1, 1, NULL, 0, 'Total deaths in 5-player heroic dungeons', '5 man heroic instances', NULL, NULL), + (2256, 8100, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Loque\'nahak', NULL, NULL), + (2256, 8101, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'High Thane Jorfus', NULL, NULL), + (2256, 8102, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Hildana Deathstealer', NULL, NULL), + (2256, 8103, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Old Crystalbark', NULL, NULL), + (2256, 8104, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Fumblub Gearwind', NULL, NULL), + (2256, 8105, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Icehorn', NULL, NULL), + (2256, 8106, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Perobas the Bloodthirster', NULL, NULL), + (2256, 8107, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Vigdis the War Maiden', NULL, NULL), + (2256, 8108, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'King Ping', NULL, NULL), + (2256, 8109, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Tukemuth', NULL, NULL), + (2256, 8110, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Crazed Indu\'le Survivor', NULL, NULL), + (2256, 8111, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Scarlet Highlord Daion', NULL, NULL), + (2256, 8112, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Grocklar', NULL, NULL), + (2256, 8113, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Seething Hate', NULL, NULL), + (2256, 8114, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Syreian the Bonecarver', NULL, NULL), + (2256, 8115, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Zul\'drak Sentinel', NULL, NULL), + (2256, 8116, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Griegen', NULL, NULL), + (2256, 8117, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Terror Spinner', NULL, NULL), + (2256, 8118, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Aotona', NULL, NULL), + (2256, 8119, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'King Krush', NULL, NULL), + (2256, 8120, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Vyragosa', NULL, NULL), + (2256, 8121, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Dirkee', NULL, NULL), + (2256, 8122, 10, 14780, 97, 1, 80, 1, 1, NULL, 10, 'Northern Exposure', 'Putridus the Ancient', NULL, NULL), + (2257, 0, 25, 14780, 97, 1, 80, 1, 1, NULL, 25, 'Frostbitten', NULL, NULL, NULL), + (2277, 8586, 1, 134, 1, 1, 80, 1, 1, NULL, 0, 'Summons accepted', 'Summons accepted', NULL, NULL), + (2316, 8778, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Brutal Nether Drake', 'Brutal Nether Drake', NULL, NULL), + (2316, 8779, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Brutal Nether Drake', 'Brutal Nether Drake', NULL, NULL), + (2336, 8818, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Insane in the Membrane', 'Honored with Bloodsail Buccaneers', NULL, NULL), + (2336, 8819, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Insane in the Membrane', 'Exalted with Booty Bay', NULL, NULL), + (2336, 8820, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Insane in the Membrane', 'Exalted with Everlook', NULL, NULL), + (2336, 8821, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Insane in the Membrane', 'Exalted with Gadgetzan', NULL, NULL), + (2336, 8822, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Insane in the Membrane', 'Exalted with Ratchet', NULL, NULL), + (2336, 8823, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Insane in the Membrane', 'Exalted with Darkmoon Faire', NULL, NULL), + (2336, 8824, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Insane in the Membrane', 'Exalted with Ravenholdt', NULL, NULL), + (2336, 8825, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Insane in the Membrane', 'Exalted with Shen\'dralar', NULL, NULL), + (2357, 8905, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Dreadsteed of Xoroth', 'Dreadsteed of Xoroth', NULL, NULL), + (2358, 8906, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Charger', 'Judgment and Redemption', NULL, NULL), + (2358, 8907, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Charger', 'True Masters of the Light', NULL, NULL), + (2359, 8908, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Swift Flight Form', 'Vanquish the Raven God', NULL, NULL), + (2396, 0, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Battleground played the most', NULL, NULL, NULL), + (2397, 0, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Battleground won the most', NULL, NULL, NULL), + (2398, 9058, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'WoW\'s 4th Anniversary', 'Logged in during 4th anniversary event', NULL, NULL), + (2416, 9118, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Hard Boiled', 'Lay a Noblegarden Egg in the Golakka Hot Springs.', NULL, NULL), + (2417, 9119, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Chocolate Lover', 'Eat 25 Noblegarden Chocolates', NULL, NULL), + (2418, 9120, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Chocoholic', 'Eat 100 Noblegarden Chocolates', NULL, NULL), + (2419, 9121, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Spring Fling', 'Azure Watch', NULL, NULL), + (2419, 9199, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Spring Fling', 'Dolanaar', NULL, NULL), + (2419, 9200, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Spring Fling', 'Goldshire', NULL, NULL), + (2419, 9201, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Spring Fling', 'Kharanos', NULL, NULL), + (2420, 9122, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Noble Garden', '', NULL, NULL), + (2421, 9123, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Noble Garden', '', NULL, NULL), + (2422, 9124, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Shake Your Bunny-Maker', 'Blood Elf', NULL, NULL), + (2422, 9143, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Shake Your Bunny-Maker', 'Draenei', NULL, NULL), + (2422, 9144, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Shake Your Bunny-Maker', 'Human', NULL, NULL), + (2422, 9145, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Shake Your Bunny-Maker', 'Dwarf', NULL, NULL), + (2422, 9146, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Shake Your Bunny-Maker', 'Gnome', NULL, NULL), + (2422, 9147, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Shake Your Bunny-Maker', 'Night Elf', NULL, NULL), + (2422, 9148, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Shake Your Bunny-Maker', 'Orc', NULL, NULL), + (2422, 9149, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Shake Your Bunny-Maker', 'Tauren', NULL, NULL), + (2422, 9150, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Shake Your Bunny-Maker', 'Troll', NULL, NULL), + (2422, 9151, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Shake Your Bunny-Maker', 'Undead', NULL, NULL), + (2436, 9138, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Desert Rose', 'The Badlands', NULL, NULL), + (2436, 9139, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Desert Rose', 'Desolace', NULL, NULL), + (2436, 9140, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Desert Rose', 'Tanaris', NULL, NULL), + (2436, 9141, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Desert Rose', 'Thousand Needles', NULL, NULL), + (2436, 9142, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Desert Rose', 'Silithus', NULL, NULL), + (2456, 9158, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Vampire Hunter', '', NULL, NULL), + (2456, 9159, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Vampire Hunter', '', NULL, NULL), + (2476, 9178, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Destruction Derby', 'Wintergrasp Catapult', NULL, NULL), + (2476, 9179, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Destruction Derby', 'Wintergrasp Demolisher', NULL, NULL), + (2476, 9180, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Destruction Derby', 'Wintergrasp Siege Engine', NULL, NULL), + (2476, 9181, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Destruction Derby', 'Wintergrasp Tower Cannon', NULL, NULL), + (2496, 9198, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'The Fifth Element', 'Complete Hyrdaxis\' Tasks', NULL, NULL), + (2497, 9202, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Spring Fling', 'Bloodhoof Village', NULL, NULL), + (2497, 9203, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Spring Fling', 'Brill', NULL, NULL), + (2497, 9204, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Spring Fling', 'Falconwing Square', NULL, NULL), + (2497, 9205, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Spring Fling', 'Razor Hill', NULL, NULL), + (2516, 9218, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Lil\' Game Hunter', 'Obtain 75 companion pets', NULL, NULL), + (2536, 9223, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Mountain o\' Mounts', 'Obtain 100 mounts', NULL, NULL), + (2537, 9224, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Mountain o\' Mounts', 'Obtain 100 mounts', NULL, NULL), + (2556, 9358, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Adder', NULL, NULL), + (2556, 9359, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Crystal Spider', NULL, NULL), + (2556, 9360, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Devouring Maggot', NULL, NULL), + (2556, 9361, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Fire Beetle', NULL, NULL), + (2556, 9362, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Fjord Rat', NULL, NULL), + (2556, 9363, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Gold Beetle', NULL, NULL), + (2556, 9364, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Larva', NULL, NULL), + (2556, 9365, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Maggot', NULL, NULL), + (2556, 9366, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Moccasin', NULL, NULL), + (2556, 9367, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Mouse', NULL, NULL), + (2556, 9368, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Rat', NULL, NULL), + (2556, 9369, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Roach', NULL, NULL), + (2556, 9370, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Scorpion', NULL, NULL), + (2556, 9371, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Snake', NULL, NULL), + (2556, 9372, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Spider', NULL, NULL), + (2556, 9373, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Underbelly Rat', NULL, NULL), + (2556, 9374, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Zul\'Drak Rat', NULL, NULL), + (2556, 9818, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Pest Control', 'Squirrel', NULL, NULL), + (2557, 9299, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Arctic Hare', NULL, NULL), + (2557, 9300, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Borean Marmot', NULL, NULL), + (2557, 9301, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Fjord Penguin', NULL, NULL), + (2557, 9302, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Fjord Turkey', NULL, NULL), + (2557, 9303, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Glacier Penguin', NULL, NULL), + (2557, 9304, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Grizzly Squirrel', NULL, NULL), + (2557, 9305, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Huge Toad', NULL, NULL), + (2557, 9306, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Lava Crab', NULL, NULL), + (2557, 9307, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Mountain Skunk', NULL, NULL), + (2557, 9308, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Scalawag Frog', NULL, NULL), + (2557, 9309, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Sholazar Tickbird', NULL, NULL), + (2557, 9310, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Tundra Penguin', NULL, NULL), + (2557, 9311, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'To All The Squirrels Who Shared My Life', 'Hare', NULL, NULL), + (2576, 9858, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'Blushing Bride', '', NULL, NULL), + (2596, 9438, 1, 14823, 14807, 1, 80, 71, 76, NULL, 10, 'Mr. Bigglesworth kills', 'Mr. Bigglesworth', NULL, NULL), + (2596, 9819, 1, 14823, 14807, 1, 80, 71, 76, NULL, 10, 'Mr. Bigglesworth kills', 'Mr. Bigglesworth', NULL, NULL), + (2676, 9538, 10, 159, 155, 1, 80, 1, 1, NULL, 10, 'I Found One!', '', NULL, NULL), + (2716, 9598, 10, 92, -1, 1, 80, 80, 80, NULL, 10, 'Dual Talent Specialization', 'Level up to 40.', NULL, NULL), + (2716, 9619, 10, 92, -1, 1, 80, 1, 1, NULL, 10, 'Dual Talent Specialization', 'Learn a Second Talent Specialization.', NULL, NULL), + (2756, 9698, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Aspiration', '', NULL, NULL), + (2756, 9699, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Aspiration', '', NULL, NULL), + (2758, 9738, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9739, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9740, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9741, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9742, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9743, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9744, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9745, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9746, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9747, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9748, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9749, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9750, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9751, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9752, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9753, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9754, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9755, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9756, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2758, 9757, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Argent Valor', '', NULL, NULL), + (2760, 9658, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Darnassus', 'Champion of Darnassus', NULL, NULL), + (2760, 9678, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Darnassus', 'Exalted with Darnassus', NULL, NULL), + (2761, 9659, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Exodar', 'Champion of the Exodar', NULL, NULL), + (2761, 9679, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Exodar', 'Exalted with Exodar', NULL, NULL), + (2762, 9660, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Gnomeregan', 'Champion of Gnomeregan', NULL, NULL), + (2762, 9680, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Gnomeregan', 'Exalted with Gnomeregan Exiles', NULL, NULL), + (2763, 9661, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Ironforge', 'Champion of Ironforge', NULL, NULL), + (2763, 9681, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Ironforge', 'Exalted with Ironforge', NULL, NULL), + (2764, 9662, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Stormwind', 'Champion of Stormwind', NULL, NULL), + (2764, 9682, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Stormwind', 'Exalted with Stormwind', NULL, NULL), + (2765, 9663, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Orgrimmar', 'Champion of Orgrimmar', NULL, NULL), + (2765, 9683, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Orgrimmar', 'Exalted with Orgrimmar', NULL, NULL), + (2766, 9664, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Sen\'jin', 'Champion of Sen\'jin', NULL, NULL), + (2766, 9684, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Sen\'jin', 'Exalted with Darkspear Trolls', NULL, NULL), + (2767, 9665, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Silvermoon City', 'Champion of Silvermoon City', NULL, NULL), + (2767, 9685, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Silvermoon City', 'Exalted with Silvermoon City', NULL, NULL), + (2768, 9666, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Thunder Bluff', 'Champion of Thunder Bluff', NULL, NULL), + (2768, 9686, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of Thunder Bluff', 'Exalted with Thunder Bluff', NULL, NULL), + (2769, 9667, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Undercity', 'Champion of the Undercity', NULL, NULL), + (2769, 9687, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Undercity', 'Exalted with Undercity', NULL, NULL), + (2770, 9668, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Alliance', 'Champion of Darnassus', NULL, NULL), + (2770, 9669, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Alliance', 'Champion of the Exodar', NULL, NULL), + (2770, 9670, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Alliance', 'Champion of Gnomeregan', NULL, NULL), + (2770, 9671, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Alliance', 'Champion of Stormwind', NULL, NULL), + (2770, 9672, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Alliance', 'Champion of Ironforge', NULL, NULL), + (2771, 9673, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Horde', 'Champion of Orgrimmar', NULL, NULL), + (2771, 9674, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Horde', 'Champion of Sen\'jin', NULL, NULL), + (2771, 9675, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Horde', 'Champion of Silvermoon City', NULL, NULL), + (2771, 9676, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Horde', 'Champion of the Undercity', NULL, NULL), + (2771, 9677, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Champion of the Horde', 'Champion of Thunder Bluff', NULL, NULL), + (2772, 9798, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Tilted!', '', NULL, NULL), + (2773, 10222, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'It\'s Just a Flesh Wound', '', NULL, NULL), + (2776, 9758, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Wintergrasp Veteran', NULL, NULL), + (2776, 9759, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Within Our Grasp', NULL, NULL), + (2776, 9760, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Wintergrasp Ranger', NULL, NULL), + (2776, 9761, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Black War Mammoth', NULL, NULL), + (2776, 9764, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', '1000 Stone Keeper\'s Shards', NULL, NULL), + (2776, 9765, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Archavon the Stone Watcher', NULL, NULL), + (2776, 9766, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Heroic: Archavon the Stone Watcher', NULL, NULL), + (2776, 9767, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Destruction Derby', NULL, NULL), + (2776, 9769, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Vehicular Gnomeslaughter', NULL, NULL), + (2776, 9770, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Leaning Tower', NULL, NULL), + (2776, 9771, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Master of Wintergrasp', 'Didn\'t Stand a Chance', NULL, NULL), + (2777, 9773, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of Darnassus', 'Champion of Darnassus', NULL, NULL), + (2778, 9774, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Exodar', 'Champion of the Exodar', NULL, NULL), + (2779, 9775, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of Gnomeregan', 'Champion of Gnomeregan', NULL, NULL), + (2780, 9776, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of Ironforge', 'Champion of Ironforge', NULL, NULL), + (2781, 9777, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of Stormwind', 'Champion of Stormwind', NULL, NULL), + (2782, 9778, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Alliance', 'Champion of Darnassus', NULL, NULL), + (2782, 9779, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Alliance', 'Champion of the Exodar', NULL, NULL), + (2782, 9780, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Alliance', 'Champion of Gnomeregan', NULL, NULL), + (2782, 9781, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Alliance', 'Champion of Stormwind', NULL, NULL), + (2782, 9782, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Alliance', 'Champion of Ironforge', NULL, NULL), + (2783, 9783, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of Orgrimmar', 'Champion of Orgrimmar', NULL, NULL), + (2784, 9784, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of Sen\'jin', 'Champion of Sen\'jin', NULL, NULL), + (2785, 9785, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of Silvermoon City', 'Champion of Silvermoon City', NULL, NULL), + (2786, 9786, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of Thunder Bluff', 'Champion of Thunder Bluff', NULL, NULL), + (2787, 9787, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Undercity', 'Champion of the Undercity', NULL, NULL), + (2788, 9788, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Horde', 'Champion of Orgrimmar', NULL, NULL), + (2788, 9789, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Horde', 'Champion of Sen\'jin', NULL, NULL), + (2788, 9790, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Horde', 'Champion of Silvermoon City', NULL, NULL), + (2788, 9791, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Horde', 'Champion of the Undercity', NULL, NULL), + (2788, 9792, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Champion of the Horde', 'Champion of Thunder Bluff', NULL, NULL), + (2796, 9859, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Month', '', NULL, NULL), + (2796, 9860, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Month', '', NULL, NULL), + (2796, 9861, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Month', '', NULL, NULL), + (2796, 9862, 10, 162, 155, 1, 80, 1, 1, NULL, 10, 'Brew of the Month', '', NULL, NULL), + (2797, 9863, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'I Found One!', NULL, NULL), + (2797, 9864, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Chocoholic', NULL, NULL), + (2797, 9865, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Hard Boiled', NULL, NULL), + (2797, 9866, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Spring Fling', NULL, NULL), + (2797, 9867, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Noble Garden', NULL, NULL), + (2797, 9868, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Shake Your Bunny-Maker', NULL, NULL), + (2797, 9869, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Desert Rose', NULL, NULL), + (2797, 9870, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Blushing Bride', NULL, NULL), + (2798, 9871, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'I Found One!', NULL, NULL), + (2798, 9872, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Chocoholic', NULL, NULL), + (2798, 9873, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Hard Boiled', NULL, NULL), + (2798, 9874, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Spring Fling', NULL, NULL), + (2798, 9875, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Noble Garden', NULL, NULL), + (2798, 9876, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Shake Your Bunny-Maker', NULL, NULL), + (2798, 9877, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Desert Rose', NULL, NULL), + (2798, 9878, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Noble Gardener', 'Blushing Bride', NULL, NULL), + (2816, 9898, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Horde', 'The Argent Crusade', NULL, NULL), + (2816, 9899, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Horde', 'Champion of Orgrimmar', NULL, NULL), + (2816, 9900, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Horde', 'Champion of Sen\'jin', NULL, NULL), + (2816, 9901, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Horde', 'Champion of Silvermoon City', NULL, NULL), + (2816, 9902, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Horde', 'Champion of the Undercity', NULL, NULL), + (2816, 9903, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Horde', 'Champion of Thunder Bluff', NULL, NULL), + (2817, 9904, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Alliance', 'The Argent Crusade', NULL, NULL), + (2817, 9905, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Alliance', 'Champion of Darnassus', NULL, NULL), + (2817, 9906, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Alliance', 'Champion of the Exodar', NULL, NULL), + (2817, 9907, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Alliance', 'Champion of Gnomeregan', NULL, NULL), + (2817, 9908, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Alliance', 'Champion of Stormwind', NULL, NULL), + (2817, 9909, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Exalted Argent Champion of the Alliance', 'Champion of Ironforge', NULL, NULL), + (2836, 9918, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Lance a Lot', 'Darnassus', NULL, NULL), + (2836, 9919, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Lance a Lot', 'Sen\'jin', NULL, NULL), + (2836, 9920, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Lance a Lot', 'Silvermoon City', NULL, NULL), + (2836, 9921, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Lance a Lot', 'Thunder Bluff', NULL, NULL), + (2836, 9922, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Lance a Lot', 'The Undercity', NULL, NULL), + (2836, 10224, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Lance a Lot', 'The Exodar', NULL, NULL), + (2836, 10225, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Lance a Lot', 'Gnomeregan', NULL, NULL), + (2836, 10226, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Lance a Lot', 'Ironforge', NULL, NULL), + (2836, 10227, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Lance a Lot', 'Orgrimmar', NULL, NULL), + (2836, 10228, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Lance a Lot', 'Stormwind', NULL, NULL), + (2856, 9938, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Flame Leviathan kills (Ulduar 10 player)', 'Flame Leviathan', NULL, NULL), + (2857, 9939, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Razorscale kills (Ulduar 10 player)', 'Razorscale', NULL, NULL), + (2858, 9940, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Ignis the Furnace Master kills (Ulduar 10 player)', 'Ignis the Furnace Master', NULL, NULL), + (2859, 9941, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'XT-002 Deconstructor kills (Ulduar 10 player)', 'XT-002 Deconstructor', NULL, NULL), + (2860, 10580, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Assembly of Iron kills (Ulduar 10 player)', 'Assembly of Iron', NULL, NULL), + (2861, 9943, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Kologarn kills (Ulduar 10 player)', 'Kologarn', NULL, NULL), + (2862, 10560, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Hodir victories (Ulduar 10 player)', 'Hodir', NULL, NULL), + (2863, 10558, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Thorim victories (Ulduar 10 player)', 'Thorim', NULL, NULL), + (2864, 10559, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Freya victories (Ulduar 10 player)', 'Freya', NULL, NULL), + (2865, 9947, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Mimiron victories (Ulduar 10 player)', 'Mimiron', NULL, NULL), + (2866, 9948, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'General Vezax kills (Ulduar 10 player)', 'General Vezax', NULL, NULL), + (2867, 10565, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Algalon the Observer kills (Ulduar 10 player)', 'Algalon the Observer', NULL, NULL), + (2868, 9950, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Auriaya kills (Ulduar 10 player)', 'Auriaya', NULL, NULL), + (2869, 9951, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Yogg-Saron kills (Ulduar 10 player)', 'Yogg-Saron', NULL, NULL), + (2870, 9952, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Emalon the Storm Watcher kills (Wintergrasp 10 player)', 'Emalon the Storm Watcher', NULL, NULL), + (2872, 9954, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Flame Leviathan kills (Ulduar 25 player)', 'Flame Leviathan', NULL, NULL), + (2873, 9955, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Razorscale kills (Ulduar 25 player)', 'Razorscale', NULL, NULL), + (2874, 9956, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Ignis the Furnace Master kills (Ulduar 25 player)', 'Ignis the Furnace Master', NULL, NULL), + (2875, 9959, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Kologarn kills (Ulduar 25 player)', 'Kologarn', NULL, NULL), + (2879, 9963, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Mimiron victories (Ulduar 25 player)', 'Mimiron', NULL, NULL), + (2880, 9964, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'General Vezax kills (Ulduar 25 player)', 'General Vezax', NULL, NULL), + (2881, 10566, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Algalon the Observer kills (Ulduar 25 player)', 'Algalon the Observer', NULL, NULL), + (2882, 9966, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Auriaya kills (Ulduar 25 player)', 'Auriaya', NULL, NULL), + (2883, 9967, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Yogg-Saron kills (Ulduar 25 player)', 'Yogg-Saron', NULL, NULL), + (2884, 9957, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'XT-002 Deconstructor kills (Ulduar 25 player)', 'XT-002 Deconstructor', NULL, NULL), + (2885, 10581, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Assembly of Iron kills (Ulduar 25 player)', 'Assembly of Iron', NULL, NULL), + (2886, 9999, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Siege of Ulduar (10 player)', 'Flame Leviathan', NULL, NULL), + (2886, 10000, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Siege of Ulduar (10 player)', 'Razorscale', NULL, NULL), + (2886, 10001, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Siege of Ulduar (10 player)', 'XT-002 Deconstructor', NULL, NULL), + (2886, 10002, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Siege of Ulduar (10 player)', 'Ignis the Furnace Master', NULL, NULL), + (2887, 10003, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Siege of Ulduar (25 player)', 'Flame Leviathan', NULL, NULL), + (2887, 10004, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Siege of Ulduar (25 player)', 'Razorscale', NULL, NULL), + (2887, 10005, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Siege of Ulduar (25 player)', 'XT-002 Deconstructor', NULL, NULL), + (2887, 10006, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Siege of Ulduar (25 player)', 'Ignis the Furnace Master', NULL, NULL), + (2888, 10008, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Antechamber of Ulduar (10 player)', 'Kologarn', NULL, NULL), + (2888, 10010, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Antechamber of Ulduar (10 player)', 'Auriaya', NULL, NULL), + (2888, 10578, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Antechamber of Ulduar (10 player)', 'Assembly of Iron', NULL, NULL), + (2889, 10016, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Antechamber of Ulduar (25 player)', 'Kologarn', NULL, NULL), + (2889, 10018, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Antechamber of Ulduar (25 player)', 'Auriaya', NULL, NULL), + (2889, 10579, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Antechamber of Ulduar (25 player)', 'Assembly of Iron', NULL, NULL), + (2890, 10014, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Keepers of Ulduar (10 player)', 'Mimiron', NULL, NULL), + (2890, 10408, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Keepers of Ulduar (10 player)', 'Hodir', NULL, NULL), + (2890, 10438, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Keepers of Ulduar (10 player)', 'Thorim', NULL, NULL), + (2890, 10444, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Keepers of Ulduar (10 player)', 'Freya', NULL, NULL), + (2891, 10453, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Keepers of Ulduar (25 player)', 'Hodir', NULL, NULL), + (2891, 10454, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Keepers of Ulduar (25 player)', 'Thorim', NULL, NULL), + (2891, 10455, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Keepers of Ulduar (25 player)', 'Freya', NULL, NULL), + (2891, 10456, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Keepers of Ulduar (25 player)', 'Mimiron', NULL, NULL), + (2892, 10023, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Descent into Madness (10 player)', 'General Vezax', NULL, NULL), + (2892, 10024, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'The Descent into Madness (10 player)', 'Yogg-Saron', NULL, NULL), + (2893, 10025, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Descent into Madness (25 player)', 'General Vezax', NULL, NULL), + (2893, 10026, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'The Descent into Madness (25 player)', 'Yogg-Saron', NULL, NULL), + (2894, 10027, 25, 14961, 168, 1, 80, 1, 1, NULL, 25, 'The Secrets of Ulduar (10 player)', 'The Siege of Ulduar', NULL, NULL), + (2894, 10028, 25, 14961, 168, 1, 80, 1, 1, NULL, 25, 'The Secrets of Ulduar (10 player)', 'The Antechamber of Ulduar', NULL, NULL), + (2894, 10029, 25, 14961, 168, 1, 80, 1, 1, NULL, 25, 'The Secrets of Ulduar (10 player)', 'The Keepers of Ulduar', NULL, NULL), + (2894, 10030, 25, 14961, 168, 1, 80, 1, 1, NULL, 25, 'The Secrets of Ulduar (10 player)', 'The Descent into Madness', NULL, NULL), + (2895, 10031, 25, 14962, 168, 1, 80, 1, 1, NULL, 25, 'The Secrets of Ulduar (25 player)', 'Heroic: The Siege of Ulduar', NULL, NULL), + (2895, 10032, 25, 14962, 168, 1, 80, 1, 1, NULL, 25, 'The Secrets of Ulduar (25 player)', 'Heroic: The Antechamber of Ulduar', NULL, NULL), + (2895, 10033, 25, 14962, 168, 1, 80, 1, 1, NULL, 25, 'The Secrets of Ulduar (25 player)', 'Heroic: The Keepers of Ulduar', NULL, NULL), + (2895, 10034, 25, 14962, 168, 1, 80, 1, 1, NULL, 25, 'The Secrets of Ulduar (25 player)', 'Heroic: The Descent into Madness', NULL, NULL), + (2903, 10042, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'Flame Leviathan', NULL, NULL), + (2903, 10340, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'Razorscale', NULL, NULL), + (2903, 10341, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'XT-002 Deconstructor', NULL, NULL), + (2903, 10342, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'Ignis the Furnace Master', NULL, NULL), + (2903, 10347, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'Mimiron', NULL, NULL), + (2903, 10348, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'Kologarn', NULL, NULL), + (2903, 10349, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'General Vezax', NULL, NULL), + (2903, 10350, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'Yogg-Saron', NULL, NULL), + (2903, 10351, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'Auriaya', NULL, NULL), + (2903, 10403, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'Thorim', NULL, NULL), + (2903, 10439, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'Hodir', NULL, NULL), + (2903, 10582, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'Freya', NULL, NULL), + (2903, 10598, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Champion of Ulduar', 'Assembly of Iron', NULL, NULL), + (2904, 10352, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'Flame Leviathan', NULL, NULL), + (2904, 10353, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'Razorscale', NULL, NULL), + (2904, 10354, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'XT-002 Deconstructor', NULL, NULL), + (2904, 10355, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'Ignis the Furnace Master', NULL, NULL), + (2904, 10357, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'Kologarn', NULL, NULL), + (2904, 10361, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'Mimiron', NULL, NULL), + (2904, 10362, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'General Vezax', NULL, NULL), + (2904, 10363, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'Auriaya', NULL, NULL), + (2904, 10364, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'Yogg-Saron', NULL, NULL), + (2904, 10404, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'Thorim', NULL, NULL), + (2904, 10583, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'Freya', NULL, NULL), + (2904, 10599, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'Assembly of Iron', NULL, NULL), + (2904, 10719, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Conqueror of Ulduar', 'Hodir', NULL, NULL), + (2905, 10044, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Unbroken (10 player)', 'Flame Leviathan', NULL, NULL), + (2906, 10045, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Unbroken (25 player)', 'Flame Leviathan', NULL, NULL), + (2907, 10046, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Three Car Garage (10 player)', 'Salvaged Chopper', NULL, NULL), + (2907, 10047, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Three Car Garage (10 player)', 'Salvaged Siege Engine', NULL, NULL), + (2907, 10048, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Three Car Garage (10 player)', 'Salvaged Demolisher', NULL, NULL), + (2908, 10049, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Three Car Garage (25 player)', 'Salvaged Chopper', NULL, NULL), + (2908, 10050, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Three Car Garage (25 player)', 'Salvaged Siege Engine', NULL, NULL), + (2908, 10051, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Three Car Garage (25 player)', 'Salvaged Demolisher', NULL, NULL), + (2909, 10619, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Take Out Those Turrets (10 player)', 'Leviathan Turret', NULL, NULL), + (2910, 10620, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Take Out Those Turrets (25 player)', 'Leviathan Turret', NULL, NULL), + (2911, 10054, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Shutout (10 player)', 'Flame Leviathan', NULL, NULL), + (2912, 10055, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Shutout (25 player)', 'Flame Leviathan', NULL, NULL), + (2913, 10056, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Orbital Bombardment (10 player)', 'Flame Leviathan', NULL, NULL), + (2914, 10057, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Orbital Devastation (10 player)', 'Flame Leviathan', NULL, NULL), + (2915, 10058, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Nuked from Orbit (10 player)', 'Flame Leviathan', NULL, NULL), + (2916, 10059, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Orbital Devastation (25 player)', 'Flame Leviathan', NULL, NULL), + (2917, 10060, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Nuked from Orbit (25 player)', 'Flame Leviathan', NULL, NULL), + (2918, 10061, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Orbital Bombardment (25 player)', 'Flame Leviathan', NULL, NULL), + (2919, 10062, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'A Quick Shave (10 player)', 'Razorscale', NULL, NULL), + (2921, 10063, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'A Quick Shave (25 player)', 'Razorscale', NULL, NULL), + (2923, 10066, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Iron Dwarf, Medium Rare (10 player)', 'Razorscale', NULL, NULL), + (2924, 10067, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Iron Dwarf, Medium Rare (25 player)', 'Razorscale', NULL, NULL), + (2925, 10068, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Shattered (10 player)', 'Flame Leviathan', NULL, NULL), + (2926, 10069, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Shattered (25 player)', 'Flame Leviathan', NULL, NULL), + (2927, 10430, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Hot Pocket (10 player)', 'Slag Pot', NULL, NULL), + (2928, 10431, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Hot Pocket (25 player)', 'Slag Pot', NULL, NULL), + (2929, 10072, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Stokin\' the Furnace (25 player)', 'Flame Leviathan', NULL, NULL), + (2930, 10073, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Stokin\' the Furnace (10 player)', 'Flame Leviathan', NULL, NULL), + (2931, 10074, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Nerf Engineering (10 player)', 'Flame Leviathan', NULL, NULL), + (2932, 10075, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Nerf Engineering (25 player)', 'Flame Leviathan', NULL, NULL), + (2933, 10401, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Nerf Scrapbots (10 player)', 'Kill 20 XS-013 Scrapbots with an XE-321 Boombot', NULL, NULL), + (2934, 10077, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Nerf Gravity Bombs (10 player)', 'Flame Leviathan', NULL, NULL), + (2935, 10402, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Nerf Scrapbots (25 player)', 'Kill 20 XS-013 Scrapbots with an XE-321 Boombot', NULL, NULL), + (2936, 10079, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Nerf Gravity Bombs (25 player)', 'Flame Leviathan', NULL, NULL), + (2937, 10080, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Must Deconstruct Faster (10 player)', 'XT-002 Deconstructor dead', NULL, NULL), + (2938, 10081, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Must Deconstruct Faster (25 player)', 'Kill the XT-002', NULL, NULL), + (2939, 10082, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'I Choose You, Runemaster Molgeim (10 player)', 'Runemaster Molgeim', NULL, NULL), + (2940, 10083, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'I Choose You, Stormcaller Brundir (10 player)', 'Stormcaller Brundir', NULL, NULL), + (2941, 10084, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'I Choose You, Steelbreaker (10 player)', 'Steelbreaker', NULL, NULL), + (2942, 10085, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'I Choose You, Runemaster Molgeim (25 player)', 'Flame Leviathan', NULL, NULL), + (2943, 10086, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'I Choose You, Stormcaller Brundir (25 player)', 'Flame Leviathan', NULL, NULL), + (2944, 10087, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'I Choose You, Steelbreaker (25 player)', 'Flame Leviathan', NULL, NULL), + (2945, 10088, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'But I\'m On Your Side (10 player)', 'Runemaster Molgeim', NULL, NULL), + (2945, 10418, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'But I\'m On Your Side (10 player)', 'Stormcaller Brundir', NULL, NULL), + (2945, 10419, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'But I\'m On Your Side (10 player)', 'Steelbreaker', NULL, NULL), + (2946, 10089, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'But I\'m On Your Side (25 player)', 'Flame Leviathan', NULL, NULL), + (2946, 10420, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'But I\'m On Your Side (25 player)', 'Flame Leviathan', NULL, NULL), + (2946, 10421, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'But I\'m On Your Side (25 player)', 'Flame Leviathan', NULL, NULL), + (2947, 10090, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Can\'t Do That While Stunned (10 player)', 'Flame Leviathan', NULL, NULL), + (2947, 10422, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Can\'t Do That While Stunned (10 player)', 'Flame Leviathan', NULL, NULL), + (2947, 10423, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Can\'t Do That While Stunned (10 player)', 'Flame Leviathan', NULL, NULL), + (2948, 10091, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Can\'t Do That While Stunned (25 player)', 'Flame Leviathan', NULL, NULL), + (2948, 10424, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Can\'t Do That While Stunned (25 player)', 'Flame Leviathan', NULL, NULL), + (2948, 10425, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Can\'t Do That While Stunned (25 player)', 'Flame Leviathan', NULL, NULL), + (2951, 10285, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'With Open Arms (10 player)', 'Kologarn', NULL, NULL), + (2952, 10095, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'With Open Arms (25 player)', 'Kologarn', NULL, NULL), + (2953, 10284, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Disarmed (10 player)', 'Kologarn', NULL, NULL), + (2954, 10722, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Disarmed (25 player)', 'Kologarn', NULL, NULL), + (2955, 10286, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'If Looks Could Kill (10 player)', 'Kologarn', NULL, NULL), + (2956, 10099, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'If Looks Could Kill (25 player)', 'Kologarn', NULL, NULL), + (2957, 10100, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'Orbit-uary', NULL, NULL), + (2957, 10101, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'Iron Dwarf, Medium Rare', NULL, NULL), + (2957, 10102, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'Stokin\' the Furnace', NULL, NULL), + (2957, 10103, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'Heartbreaker', NULL, NULL), + (2957, 10104, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'I Choose You, Steelbreaker', NULL, NULL), + (2957, 10105, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'Disarmed', NULL, NULL), + (2957, 10106, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'I Could Say That This Cache Was Rare', NULL, NULL), + (2957, 10107, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'Lose Your Illusion', NULL, NULL), + (2957, 10108, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'Knock, Knock, Knock on Wood', NULL, NULL), + (2957, 10110, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'I Love the Smell of Saronite in the Morning', NULL, NULL), + (2957, 10111, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'Crazy Cat Lady', NULL, NULL), + (2957, 10112, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'One Light in the Darkness', NULL, NULL), + (2957, 10464, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (10 player)', 'Firefighter', NULL, NULL), + (2958, 10365, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'Orbit-uary (25 player)', NULL, NULL), + (2958, 10366, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'Iron Dwarf, Medium Rare (25 player)', NULL, NULL), + (2958, 10367, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'Stokin\' the Furnace (25 player)', NULL, NULL), + (2958, 10368, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'Heartbreaker (25 player)', NULL, NULL), + (2958, 10369, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'I Choose You, Steelbreaker (25 player)', NULL, NULL), + (2958, 10370, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'Disarmed (25 player)', NULL, NULL), + (2958, 10371, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'I Could Say That This Cache Was Rare (25 player)', NULL, NULL), + (2958, 10372, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'Lose Your Illusion (25 player)', NULL, NULL), + (2958, 10373, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'Knock, Knock, Knock on Wood (25 player)', NULL, NULL), + (2958, 10375, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'I Love the Smell of Saronite in the Morning (25 player)', NULL, NULL), + (2958, 10376, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'Crazy Cat Lady (25 player)', NULL, NULL), + (2958, 10377, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'One Light in the Darkness (25 player)', NULL, NULL), + (2958, 10465, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Ulduar Raider (25 player)', 'Firefighter (25 player)', NULL, NULL), + (2959, 10290, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Rubble and Roll (10 player)', 'Kologarn', NULL, NULL), + (2960, 10133, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Rubble and Roll (25 player)', 'Kologarn', NULL, NULL), + (2961, 10259, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Cheese the Freeze (10 player)', 'Hodir', NULL, NULL), + (2962, 10261, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Cheese the Freeze (25 player)', 'Hodir', NULL, NULL), + (2963, 10258, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'I Have the Coolest Friends (10 player)', 'Hodir', NULL, NULL), + (2965, 10260, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'I Have the Coolest Friends (25 player)', 'Hodir', NULL, NULL), + (2967, 10247, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Getting Cold in Here (10 player)', 'Hodir', NULL, NULL), + (2968, 10248, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Getting Cold in Here (25 player)', 'Hodir', NULL, NULL), + (2969, 10223, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Staying Buffed All Winter (10 player)', 'Hodir', NULL, NULL), + (2969, 10240, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Staying Buffed All Winter (10 player)', 'Hodir', NULL, NULL), + (2969, 10241, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Staying Buffed All Winter (10 player)', 'Hodir', NULL, NULL), + (2970, 10229, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Staying Buffed All Winter (25 player)', 'Hodir', NULL, NULL), + (2970, 10238, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Staying Buffed All Winter (25 player)', 'Hodir', NULL, NULL), + (2970, 10239, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Staying Buffed All Winter (25 player)', 'Hodir', NULL, NULL), + (2971, 10305, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Don\'t Stand in the Lightning (10 player)', 'Thorim: Do not by struck by Lightning Charge.', NULL, NULL), + (2972, 10309, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Don\'t Stand in the Lightning (25 player)', 'Avoid Thorim\'s Lightning Charge.', NULL, NULL), + (2973, 10287, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'I\'ll Take You All On (10 player)', 'Participate in slaying Runic Colossus', NULL, NULL), + (2973, 10288, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'I\'ll Take You All On (10 player)', 'Participate in slaying Ancient Rune Giant', NULL, NULL), + (2973, 10303, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'I\'ll Take You All On (10 player)', 'Defeat Thorim', NULL, NULL), + (2974, 10310, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'I\'ll Take You All On (25 player)', 'Defeat Thorim', NULL, NULL), + (2974, 10311, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'I\'ll Take You All On (25 player)', 'Participate in slaying Runic Colossus', NULL, NULL), + (2974, 10312, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'I\'ll Take You All On (25 player)', 'Participate in slaying Ancient Rune Giant', NULL, NULL), + (2975, 10304, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Who Needs Bloodlust? (10 player)', 'Thorim: Kill Thorim while Aura of Celerity is active.', NULL, NULL), + (2976, 10313, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Who Needs Bloodlust? (25 player)', 'Defeat Thorim while buffed with Aura of Celerity.', NULL, NULL), + (2977, 10289, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Siffed (10 player)', 'Force Thorim to enter the arena while Sif is present', NULL, NULL), + (2978, 10314, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Siffed (25 player)', 'Force Thorim to enter the arena while Sif is present', NULL, NULL), + (2979, 10720, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Lumberjacked (10 player)', 'Lumberjacked', NULL, NULL), + (2980, 10446, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Con-speed-atory (10 player)', 'Freya', NULL, NULL), + (2981, 10882, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Con-speed-atory (25 player)', 'Freya', NULL, NULL), + (2982, 10445, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Getting Back to Nature (10 player)', 'Freya', NULL, NULL), + (2983, 10758, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Getting Back to Nature (25 player)', 'Freya', NULL, NULL), + (2984, 10394, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Deforestation (25 player)', 'Freya', NULL, NULL), + (2984, 10395, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Deforestation (25 player)', 'Freya', NULL, NULL), + (2985, 10396, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Deforestation (10 player)', 'Freya', NULL, NULL), + (2985, 10397, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Deforestation (10 player)', 'Freya', NULL, NULL), + (2989, 10543, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Set Up Us the Bomb (10 player)', 'A Proximity Mine', NULL, NULL), + (2989, 10544, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Set Up Us the Bomb (10 player)', 'A Rocket Strike', NULL, NULL), + (2989, 10545, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Set Up Us the Bomb (10 player)', 'A Bomb Bot', NULL, NULL), + (2995, 10405, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Not-So-Friendly Fire (25 player)', 'Assault Bot Destroyed', NULL, NULL), + (2996, 10173, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Shadowdodger (10 player)', '', NULL, NULL), + (2997, 10306, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Shadowdodger (25 player)', '', NULL, NULL), + (3002, 10782, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Supermassive (25 player)', 'Close 3 Black Holes within 10 seconds', NULL, NULL), + (3002, 10783, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Supermassive (25 player)', 'Defeat Algalon the Observer', NULL, NULL), + (3003, 10780, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Supermassive (10 player)', 'Close 3 Black Holes within 10 seconds', NULL, NULL), + (3003, 10781, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Supermassive (10 player)', 'Defeat Algalon the Observer', NULL, NULL), + (3004, 10568, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'He Feeds On Your Tears (10 player)', 'Algalon the Observer', NULL, NULL), + (3005, 10570, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'He Feeds On Your Tears (25 player)', 'Algalon the Observer', NULL, NULL), + (3006, 10400, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Crazy Cat Lady (10 player)', 'Auriaya', NULL, NULL), + (3007, 10184, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Crazy Cat Lady (25 player)', 'Auriaya', NULL, NULL), + (3008, 10185, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Drive Me Crazy (10 player)', 'Yogg-Saron', NULL, NULL), + (3009, 10187, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Kiss and Make Up (10 player)', 'Sara', NULL, NULL), + (3010, 10296, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Drive Me Crazy (25 player)', 'Yogg-Saron', NULL, NULL), + (3011, 10189, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Kiss and Make Up (25 player)', 'Sara', NULL, NULL), + (3012, 10292, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'He\'s Not Getting Any Older (10 player)', 'Yogg-Saron', NULL, NULL), + (3013, 10291, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'He\'s Not Getting Any Older (25 player)', 'Yogg-Saron', NULL, NULL), + (3014, 10293, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'They\'re Coming Out of the Walls (10 player)', 'Kill 9 Guardians of Yogg-Saron in 12 seconds.', NULL, NULL), + (3015, 10324, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'In His House He Waits Dreaming (10 player)', 'The Assassination of King Llane', NULL, NULL), + (3015, 10325, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'In His House He Waits Dreaming (10 player)', 'The Forging of the Demon Soul', NULL, NULL), + (3015, 10326, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'In His House He Waits Dreaming (10 player)', 'The Tortured Champion', NULL, NULL), + (3016, 10321, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'In His House He Waits Dreaming (25 player)', 'The Assassination of King Llane', NULL, NULL), + (3016, 10322, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'In His House He Waits Dreaming (25 player)', 'The Forging of the Demon Soul', NULL, NULL), + (3016, 10323, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'In His House He Waits Dreaming (25 player)', 'The Tortured Champion', NULL, NULL), + (3017, 10294, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'They\'re Coming Out of the Walls (25 player)', 'Kill 9 Guardians of Yogg-Saron in 12 seconds..', NULL, NULL), + (3018, 10196, 1, 130, 1, 1, 80, 1, 1, NULL, 0, 'Emblems of Conquest acquired', 'Emblems of Conquest acquired', NULL, NULL), + (3036, 10567, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Observed (10 player)', 'Algalon the Observer', NULL, NULL), + (3037, 10569, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Observed (25 player)', 'Algalon the Observer', NULL, NULL), + (3056, 10218, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Orbit-uary (10 player)', 'Flame Leviathan', NULL, NULL), + (3057, 10219, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Orbit-uary (25 player)', 'Flame Leviathan', NULL, NULL), + (3058, 10221, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Heartbreaker (10 player)', 'Flame Leviathan', NULL, NULL), + (3059, 10220, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Heartbreaker (25 player)', 'XT-002 Deconstructor', NULL, NULL), + (3076, 10399, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Nine Lives (10 player)', 'Auriaya', NULL, NULL), + (3077, 10243, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Nine Lives (25 player)', 'Auriaya', NULL, NULL), + (3096, 10262, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Deadly Gladiator\'s Frostwyrm', 'Deadly Gladiator\'s Frostwyrm', NULL, NULL), + (3096, 10263, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Deadly Gladiator\'s Frostwyrm', 'Deadly Gladiator\'s Frostwyrm', NULL, NULL), + (3097, 10858, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Dwarfageddon (10 player)', 'Steelforged Defenders slain', NULL, NULL), + (3098, 10860, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Dwarfageddon (25 player)', 'Steelforged Defenders slain', NULL, NULL), + (3117, 10279, 1, 81, -1, 1, 80, 71, 1, NULL, 0, 'Realm First! Death\'s Demise', 'Yogg-Saron', NULL, NULL), + (3118, 10721, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Lumberjacked (25 player)', 'Lumberjacked', NULL, NULL), + (3136, 10338, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Emalon the Storm Watcher (10 player)', 'Emalon the Storm Watcher', NULL, NULL), + (3137, 10339, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Emalon the Storm Watcher (25 player)', 'Emalon the Storm Watcher', NULL, NULL), + (3138, 10406, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Not-So-Friendly Fire (10 player)', 'Assault Bot Destroyed', NULL, NULL), + (3141, 10388, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Two Lights in the Darkness (10 player)', 'Yogg-Saron', NULL, NULL), + (3142, 10838, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Val\'anyr, Hammer of Ancient Kings', 'Val\'anyr, Hammer of Ancient Kings', NULL, NULL), + (3157, 10410, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Three Lights in the Darkness (10 player)', 'Yogg-Saron', NULL, NULL), + (3158, 10409, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'One Light in the Darkness (10 player)', 'Yogg-Saron', NULL, NULL), + (3159, 10412, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Alone in the Darkness (10 player)', 'Yogg-Saron', NULL, NULL), + (3161, 10414, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Three Lights in the Darkness (25 player)', 'Yogg-Saron', NULL, NULL), + (3162, 10415, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Two Lights in the Darkness (25 player)', 'Yogg-Saron', NULL, NULL), + (3163, 10416, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'One Light in the Darkness (25 player)', 'Yogg-Saron', NULL, NULL), + (3164, 10417, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Alone in the Darkness (25 player)', 'Yogg-Saron', NULL, NULL), + (3176, 10440, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Lose Your Illusion (10 player)', 'Force Thorim to enter the arena while Sif is present', NULL, NULL), + (3177, 10447, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Knock on Wood (10 player)', 'Freya', NULL, NULL), + (3178, 10448, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Knock, Knock on Wood (10 player)', 'Freya', NULL, NULL), + (3179, 10449, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Knock, Knock, Knock on Wood (10 player)', 'Freya', NULL, NULL), + (3180, 10450, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Firefighter (10 player)', 'Mimiron', NULL, NULL), + (3181, 10451, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'I Love the Smell of Saronite in the Morning (10 player)', 'Vezax', NULL, NULL), + (3182, 10452, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'I Could Say That This Cache Was Rare (10 player)', 'Hodir', NULL, NULL), + (3183, 10457, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Lose Your Illusion (25 player)', 'Force Thorim to enter the arena while Sif is present', NULL, NULL), + (3184, 10458, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'I Could Say That This Cache Was Rare (25 player)', 'Hodir', NULL, NULL), + (3185, 10459, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Knock on Wood (25 player)', 'Freya', NULL, NULL), + (3186, 10460, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Knock, Knock on Wood (25 player)', 'Freya', NULL, NULL), + (3187, 10461, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Knock, Knock, Knock on Wood (25 player)', 'Freya', NULL, NULL), + (3188, 10462, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'I Love the Smell of Saronite in the Morning (25 player)', 'Vezax', NULL, NULL), + (3189, 10463, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Firefighter (25 player)', 'Mimiron', NULL, NULL), + (3216, 10518, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Smelting Recipes learned', 'Smelting Recipes Known', NULL, NULL), + (3216, 10519, 1, 173, 132, 1, 80, 1, 1, NULL, 0, 'Smelting Recipes learned', 'Smelting Recipes Known', NULL, NULL), + (3217, 10520, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Chasing Marcia', 'The Ghostfish', NULL, NULL), + (3217, 10521, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Chasing Marcia', 'Jewel of the Sewers', NULL, NULL), + (3217, 10522, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Chasing Marcia', 'Dangerously Delicious', NULL, NULL), + (3217, 10523, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Chasing Marcia', 'Blood is Thicker', NULL, NULL), + (3217, 10524, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Chasing Marcia', 'Disarmed!', NULL, NULL), + (3218, 10525, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Turtles All the Way Down', 'Sea Turtle', NULL, NULL), + (3218, 10526, 10, 171, 169, 1, 80, 1, 1, NULL, 10, 'Turtles All the Way Down', 'Sea Turtle', NULL, NULL), + (3236, 10542, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Emalon the Storm Watcher kills (Wintergrasp 25 player)', 'Emalon the Storm Watcher', NULL, NULL), + (3237, 10546, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Set Up Us the Bomb (25 player)', 'A Proximity Mine', NULL, NULL), + (3237, 10547, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Set Up Us the Bomb (25 player)', 'A Rocket Strike', NULL, NULL), + (3237, 10548, 10, 14962, 168, 1, 80, 1, 1, NULL, 10, 'Set Up Us the Bomb (25 player)', 'A Bomb Bot', NULL, NULL), + (3256, 10562, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Hodir victories (Ulduar 25 player)', 'Hodir', NULL, NULL), + (3257, 10561, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Thorim victories (Ulduar 25 player)', 'Thorim', NULL, NULL), + (3258, 10563, 1, 14963, 14807, 1, 80, 80, 80, NULL, 10, 'Freya victories (Ulduar 25 player)', 'Freya', NULL, NULL), + (3259, 10698, 1, 81, -1, 1, 80, 71, 1, NULL, 0, 'Realm First! Celestial Defender', 'Algalon the Observer', NULL, NULL), + (3296, 10638, 10, 170, 169, 1, 80, 1, 1, NULL, 10, 'Cooking with Style', '', NULL, NULL), + (3316, 10678, 10, 14961, 168, 1, 80, 1, 1, NULL, 10, 'Herald of the Titans', 'Algalon the Observer', NULL, NULL), + (3336, 10718, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Deadly Gladiator', 'Deadly Gladiator', NULL, NULL), + (3356, 10738, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Winterspring Frostsaber', '', NULL, NULL), + (3356, 10739, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Winterspring Frostsaber', '', NULL, NULL), + (3357, 10740, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Venomhide Ravasaur', '', NULL, NULL), + (3357, 10741, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Venomhide Ravasaur', '', NULL, NULL), + (3357, 10742, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Venomhide Ravasaur', '', NULL, NULL), + (3436, 10898, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Furious Gladiator', '', NULL, NULL), + (3456, 10918, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Dead Man\'s Party', '', NULL, NULL), + (3457, 10919, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'The Captain\'s Booty', '', NULL, NULL), + (3478, 10940, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', '"FOOD FIGHT!"', NULL, NULL), + (3478, 11258, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Now Were Cookin\'', NULL, NULL), + (3478, 11259, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Pilgrim\'s Paunch', NULL, NULL), + (3478, 11260, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Pilgrim\'s Peril', NULL, NULL), + (3478, 11261, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Pilgrim\'s Progress', NULL, NULL), + (3478, 11262, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Sharing is Caring', NULL, NULL), + (3478, 11263, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Terokkar Turkey Time', NULL, NULL), + (3478, 11264, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'The Turkinator', NULL, NULL), + (3478, 11265, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Turkey Lurkey', NULL, NULL), + (3496, 10961, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'A Brew-FAST Mount', 'swift brewfest ram', NULL, NULL), + (3496, 10965, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'A Brew-FAST Mount', 'Great Brewfest Kodo', NULL, NULL), + (3516, 10998, 1, 125, 122, 1, 80, 1, 1, NULL, 0, 'Deaths in Ulduar', 'Deaths in Ulduar', NULL, NULL), + (3536, 11038, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'The Marine Marine', '', NULL, NULL), + (3536, 11039, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'The Marine Marine', '', NULL, NULL), + (3556, 11078, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Paunch', 'Darnassus', NULL, NULL), + (3556, 11079, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Paunch', 'Ironforge', NULL, NULL), + (3556, 11080, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Paunch', 'The Exodar', NULL, NULL), + (3556, 11081, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Paunch', 'Stormwind', NULL, NULL), + (3557, 11082, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Paunch', 'Orgrimmar', NULL, NULL), + (3557, 11083, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Paunch', 'Silvermoon City', NULL, NULL), + (3557, 11084, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Paunch', 'Thunder Bluff', NULL, NULL), + (3557, 11085, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Paunch', 'Undercity', NULL, NULL), + (3558, 11086, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Sharing is Caring', 'Candied Sweet Potatoes', NULL, NULL), + (3558, 11088, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Sharing is Caring', 'Pumpkin Pie', NULL, NULL), + (3558, 11089, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Sharing is Caring', 'Slow-Roasted Turkey', NULL, NULL), + (3558, 11090, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Sharing is Caring', 'Spice Bread Stuffing', NULL, NULL), + (3558, 11167, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Sharing is Caring', 'Cranberry Chutney', NULL, NULL), + (3559, 11158, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Turkey Lurkey', 'Human Rogue', NULL, NULL), + (3559, 11159, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Turkey Lurkey', 'Night Elf Rogue', NULL, NULL), + (3559, 11160, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Turkey Lurkey', 'Orc Rogue', NULL, NULL), + (3559, 11161, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Turkey Lurkey', 'Troll Rogue', NULL, NULL), + (3559, 11162, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Turkey Lurkey', 'Undead Rogue', NULL, NULL), + (3559, 11163, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Turkey Lurkey', 'Blood Elf Rogue', NULL, NULL), + (3559, 11164, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Turkey Lurkey', 'Dwarf Rogue', NULL, NULL), + (3559, 11165, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Turkey Lurkey', 'Gnome Rogue', NULL, NULL), + (3576, 11118, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Now We\'re Cookin\'', 'Cranberry Chutney', NULL, NULL), + (3576, 11119, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Now We\'re Cookin\'', 'Candied Sweet Potato', NULL, NULL), + (3576, 11120, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Now We\'re Cookin\'', 'Pumpkin Pie', NULL, NULL), + (3576, 11121, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Now We\'re Cookin\'', 'Slow-Roasted Turkey', NULL, NULL), + (3576, 11122, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Now We\'re Cookin\'', 'Spice Bread Stuffing', NULL, NULL), + (3577, 11123, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Now We\'re Cookin\'', 'Candied Sweet Potato', NULL, NULL), + (3577, 11124, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Now We\'re Cookin\'', 'Cranberry Chutney', NULL, NULL), + (3577, 11125, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Now We\'re Cookin\'', 'Pumpkin Pie', NULL, NULL), + (3577, 11126, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Now We\'re Cookin\'', 'Slow-Roasted Turkey', NULL, NULL), + (3577, 11127, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Now We\'re Cookin\'', 'Spice Bread Stuffing', NULL, NULL), + (3578, 11128, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'The Turkinator', '', NULL, NULL), + (3579, 11168, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, '"FOOD FIGHT!"', '', NULL, NULL), + (3579, 11178, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, '"FOOD FIGHT!"', '', NULL, NULL), + (3579, 11179, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, '"FOOD FIGHT!"', '', NULL, NULL), + (3579, 11180, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, '"FOOD FIGHT!"', '', NULL, NULL), + (3579, 11181, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, '"FOOD FIGHT!"', '', NULL, NULL), + (3580, 11134, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Peril', 'Orgrimmar', NULL, NULL), + (3580, 11135, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Peril', 'Silvermoon City', NULL, NULL), + (3580, 11136, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Peril', 'Thunder Bluff', NULL, NULL), + (3580, 11137, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Peril', 'Undercity', NULL, NULL), + (3581, 11138, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Peril', 'The Exodar', NULL, NULL), + (3581, 11139, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Peril', 'Darnassus', NULL, NULL), + (3581, 11140, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Peril', 'Ironforge', NULL, NULL), + (3581, 11141, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Peril', 'Stormwind', NULL, NULL), + (3582, 11142, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Terokkar Turkey Time', '', NULL, NULL), + (3596, 11198, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Progress', 'She Says Potato', NULL, NULL), + (3596, 11199, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Progress', 'We\'re Out of Cranberry Chutney Again?', NULL, NULL), + (3596, 11200, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Progress', 'Don\'t Forget The Stuffing!', NULL, NULL), + (3596, 11201, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Progress', 'Can\'t Get Enough Turkey', NULL, NULL), + (3596, 11202, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Progress', 'Easy As Pie', NULL, NULL), + (3597, 11203, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Progress', 'Can\'t Get Enough Turkey', NULL, NULL), + (3597, 11204, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Progress', 'Don\'t Forget The Stuffing!', NULL, NULL), + (3597, 11205, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Progress', 'Easy As Pie', NULL, NULL), + (3597, 11206, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Progress', 'She Says Potato', NULL, NULL), + (3597, 11207, 10, 14981, 155, 1, 80, 1, 1, NULL, 10, 'Pilgrim\'s Progress', 'We\'re Out of Cranberry Chutney Again?', NULL, NULL), + (3618, 11223, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Murkimus the Gladiator', 'Murkimus\' Tiny Spear', NULL, NULL), + (3618, 11224, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Murkimus the Gladiator', 'Murkimus the Gladiator', NULL, NULL), + (3618, 11225, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Murkimus the Gladiator', 'Murkimus\' Little Spear', NULL, NULL), + (3636, 11238, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Jade Tiger', '', NULL, NULL), + (3656, 11266, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', '"FOOD FIGHT!"', NULL, NULL), + (3656, 11267, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Now Were Cookin\'', NULL, NULL), + (3656, 11268, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Pilgrim\'s Paunch', NULL, NULL), + (3656, 11269, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Pilgrim\'s Peril', NULL, NULL), + (3656, 11270, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Pilgrim\'s Progress', NULL, NULL), + (3656, 11271, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Sharing is Caring', NULL, NULL), + (3656, 11272, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Terokkar Turkey Time', NULL, NULL), + (3656, 11273, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'The Turkinator', NULL, NULL), + (3656, 11274, 10, 155, -1, 1, 80, 1, 1, NULL, 10, 'Pilgrim', 'Turkey Lurkey', NULL, NULL), + (3676, 11278, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'A Silver Confidant', 'Exalted with The Silver Covenant', NULL, NULL), + (3676, 11330, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'A Silver Confidant', 'Argent Tournament Rank: Champion', NULL, NULL), + (3677, 11279, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'The Sunreavers', 'Exalted with The Sunreavers', NULL, NULL), + (3677, 11331, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'The Sunreavers', 'Argent Tournament Rank: Champion', NULL, NULL), + (3736, 11358, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'Pony Up!', '', NULL, NULL), + (3756, 11398, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Furious Gladiator\'s Frostwyrm', 'Furious Gladiator\'s Frostwyrm', NULL, NULL), + (3756, 11399, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Furious Gladiator\'s Frostwyrm', 'Furious Gladiator\'s Frostwyrm', NULL, NULL), + (3757, 11400, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Relentless Gladiator\'s Frostwyrm', '', NULL, NULL), + (3757, 11401, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Relentless Gladiator\'s Frostwyrm', '', NULL, NULL), + (3758, 11402, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Relentless Gladiator', '', NULL, NULL), + (3776, 11418, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Isle of Conquest Victory', 'Win Isle of Conquest.', NULL, NULL), + (3777, 11419, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Isle of Conquest Veteran', 'Complete 100 victories in Isle of Conquest', NULL, NULL), + (3778, 11420, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Marshal Jacob Alerius', NULL, NULL), + (3778, 11559, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Argent Confessor Paletress', NULL, NULL), + (3778, 11560, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Eadric the Pure', NULL, NULL), + (3778, 11561, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'The Black Knight', NULL, NULL), + (3778, 12298, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Lana Stouthammer', NULL, NULL), + (3778, 12299, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Colosos', NULL, NULL), + (3778, 12300, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Ambrose Boltspark', NULL, NULL), + (3778, 12301, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Jaelyne Evensong', NULL, NULL), + (3797, 11779, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Upper Back Pain (10 player)', 'Icehowl', NULL, NULL), + (3797, 11802, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Upper Back Pain (10 player)', 'Icehowl', NULL, NULL), + (3798, 11803, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Resilience Will Fix It (10 player)', 'Faction Champions', NULL, NULL), + (3798, 11804, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Resilience Will Fix It (10 player)', 'Faction Champions', NULL, NULL), + (3799, 11778, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Salt and Pepper (10 player)', 'Val\'kyr Twins', NULL, NULL), + (3799, 12258, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Salt and Pepper (10 player)', 'Val\'kyr Twins', NULL, NULL), + (3800, 12116, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'The Traitor King (10 player)', 'Swarm Scarabs Slain', NULL, NULL), + (3802, 11863, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Hogger', NULL, NULL), + (3802, 11904, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'VanCleef', NULL, NULL), + (3802, 11905, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Mutanus', NULL, NULL), + (3802, 11906, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Herod', NULL, NULL), + (3802, 11907, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Lucifron', NULL, NULL), + (3802, 11908, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Thunderaan', NULL, NULL), + (3802, 11909, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Chromaggus', NULL, NULL), + (3802, 11910, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Hakkar', NULL, NULL), + (3802, 11911, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Vek\'nilash', NULL, NULL), + (3802, 11912, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Kalithresh', NULL, NULL), + (3802, 11913, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Malchezaar', NULL, NULL), + (3802, 11914, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Gruul', NULL, NULL), + (3802, 11915, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Vashj', NULL, NULL), + (3802, 11916, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Archimonde', NULL, NULL), + (3802, 11917, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Illidan', NULL, NULL), + (3802, 11918, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Delrissa', NULL, NULL), + (3802, 11919, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'M\'uru', NULL, NULL), + (3802, 11920, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Ingvar', NULL, NULL), + (3802, 11921, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Cyanigosa', NULL, NULL), + (3802, 11922, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Eck', NULL, NULL), + (3802, 11923, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Onyxia', NULL, NULL), + (3802, 11924, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Heigan', NULL, NULL), + (3802, 11925, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Ignis', NULL, NULL), + (3802, 11926, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Vezax', NULL, NULL), + (3802, 11927, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Argent Confessor', 'Algalon', NULL, NULL), + (3803, 11858, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'The Faceroller', 'Defeat Eadric with his own hammer.', NULL, NULL), + (3804, 11789, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'I\'ve Had Worse', 'Ghoul Explode', NULL, NULL), + (3808, 12344, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Skill (10 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3808, 12345, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Skill (10 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3808, 12346, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Skill (10 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3809, 12347, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Mad Skill (10 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3809, 12348, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Mad Skill (10 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3810, 12349, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Insanity (10 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3812, 11542, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Grand Crusade (25 player)', 'Defeat the Beasts of Northrend', NULL, NULL), + (3812, 11546, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Grand Crusade (25 player)', 'Defeat Lord Jaraxxus', NULL, NULL), + (3812, 11547, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Grand Crusade (25 player)', 'Defeat the Twin Val\'kyr', NULL, NULL), + (3812, 11549, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Grand Crusade (25 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3812, 11678, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Grand Crusade (25 player)', 'Defeat the Faction Champions', NULL, NULL), + (3813, 11780, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Upper Back Pain (25 player)', 'Icehowl', NULL, NULL), + (3813, 11801, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Upper Back Pain (25 player)', 'Icehowl', NULL, NULL), + (3814, 11799, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Resilience Will Fix It (25 player)', 'Faction Champions', NULL, NULL), + (3814, 11800, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Resilience Will Fix It (25 player)', 'Faction Champions', NULL, NULL), + (3815, 11818, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Salt and Pepper (25 player)', 'Val\'kyr Twins', NULL, NULL), + (3815, 11860, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Salt and Pepper (25 player)', 'Val\'kyr Twins', NULL, NULL), + (3816, 12198, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'The Traitor King (25 player)', 'Swarm Scarabs Slain', NULL, NULL), + (3817, 12338, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Skill (25 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3817, 12339, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Skill (25 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3817, 12340, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Skill (25 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3818, 12341, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Mad Skill (25 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3818, 12342, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Mad Skill (25 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3819, 12343, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Insanity (25 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3836, 11478, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Koralon the Flame Watcher (10 player)', 'Koralon the Flame Watcher', NULL, NULL), + (3837, 11479, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Koralon the Flame Watcher (25 player)', 'Koralon the Flame Watcher', NULL, NULL), + (3838, 6817, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Dungeon & Raid Emblem', 'Emblem of Heroism', NULL, NULL), + (3838, 6818, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Dungeon & Raid Emblem', 'Emblem of Valor', NULL, NULL), + (3838, 10035, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Dungeon & Raid Emblem', 'Emblem of Conquest', NULL, NULL), + (3838, 11552, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Dungeon & Raid Emblem', 'Emblem of Triumph', NULL, NULL), + (3838, 12498, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Dungeon & Raid Emblem', 'Emblem of Frost', NULL, NULL), + (3839, 6819, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '25 Dungeon & Raid Emblems', 'Loot 25 Emblems of Heroism', NULL, NULL), + (3839, 6825, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '25 Dungeon & Raid Emblems', '25 Emblems of Valor', NULL, NULL), + (3839, 10036, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '25 Dungeon & Raid Emblems', 'Emblem of Conquest', NULL, NULL), + (3839, 11556, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '25 Dungeon & Raid Emblems', 'Emblem of Triumph', NULL, NULL), + (3839, 12499, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '25 Dungeon & Raid Emblems', 'Emblem of Frost', NULL, NULL), + (3840, 6820, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '50 Dungeon & Raid Emblems', 'Loot 50 Emblems of Heroism', NULL, NULL), + (3840, 6826, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '50 Dungeon & Raid Emblems', '50 Emblems of Valor', NULL, NULL), + (3840, 10037, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '50 Dungeon & Raid Emblems', 'Emblem of Conquest', NULL, NULL), + (3840, 11601, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '50 Dungeon & Raid Emblems', 'Emblem of Triumph', NULL, NULL), + (3840, 12500, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '50 Dungeon & Raid Emblems', 'Emblem of Frost', NULL, NULL), + (3841, 6821, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '100 Dungeon & Raid Emblems', 'Loot 100 Emblems of Heroism', NULL, NULL), + (3841, 6827, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '100 Dungeon & Raid Emblems', '100 Emblems of Valor', NULL, NULL), + (3841, 10038, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '100 Dungeon & Raid Emblems', 'Emblem of Conquest', NULL, NULL), + (3841, 11605, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '100 Dungeon & Raid Emblems', 'Emblem of Triumph', NULL, NULL), + (3841, 12501, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '100 Dungeon & Raid Emblems', 'Emblem of Frost', NULL, NULL), + (3842, 6822, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '250 Dungeon & Raid Emblems', 'Loot 250 Emblems of Heroism', NULL, NULL), + (3842, 6828, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '250 Dungeon & Raid Emblems', '250 Emblems of Valor', NULL, NULL), + (3842, 10039, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '250 Dungeon & Raid Emblems', 'Emblem of Conquest', NULL, NULL), + (3842, 11609, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '250 Dungeon & Raid Emblems', 'Emblem of Triumph', NULL, NULL), + (3842, 12502, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '250 Dungeon & Raid Emblems', 'Emblem of Frost', NULL, NULL), + (3843, 6823, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '500 Dungeon & Raid Emblems', 'Loot 500 Emblems of Heroism', NULL, NULL), + (3843, 6829, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '500 Dungeon & Raid Emblems', '500 Emblems of Valor', NULL, NULL), + (3843, 10040, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '500 Dungeon & Raid Emblems', 'Emblem of Conquest', NULL, NULL), + (3843, 11613, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '500 Dungeon & Raid Emblems', 'Emblem of Triumph', NULL, NULL), + (3843, 12503, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '500 Dungeon & Raid Emblems', 'Emblem of Frost', NULL, NULL), + (3844, 6824, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '1000 Dungeon & Raid Emblems', 'Loot 1000 Emblems of Heroism', NULL, NULL), + (3844, 6830, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '1000 Dungeon & Raid Emblems', '1000 Emblems of Valor', NULL, NULL), + (3844, 10041, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '1000 Dungeon & Raid Emblems', 'Emblem of Conquest', NULL, NULL), + (3844, 11617, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '1000 Dungeon & Raid Emblems', 'Emblem of Triumph', NULL, NULL), + (3844, 12504, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '1000 Dungeon & Raid Emblems', 'Emblem of Frost', NULL, NULL), + (3845, 11487, 20, 15003, 95, 1, 80, 1, 1, NULL, 20, 'Isle of Conquest All-Star', 'Assault a base', NULL, NULL), + (3845, 11488, 20, 15003, 95, 1, 80, 1, 1, NULL, 20, 'Isle of Conquest All-Star', 'Defend a base', NULL, NULL), + (3845, 11491, 20, 15003, 95, 1, 80, 1, 1, NULL, 20, 'Isle of Conquest All-Star', 'Kill a player', NULL, NULL), + (3845, 12059, 20, 15003, 95, 1, 80, 1, 1, NULL, 20, 'Isle of Conquest All-Star', 'Destroy a vehicle', NULL, NULL), + (3846, 12060, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Resource Glut', 'Win Isle of Conquest.', NULL, NULL), + (3847, 11492, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Four Car Garage', 'Glaive Thrower', NULL, NULL), + (3847, 11493, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Four Car Garage', 'Siege Engine', NULL, NULL), + (3847, 11494, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Four Car Garage', 'Demolisher', NULL, NULL), + (3847, 11495, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Four Car Garage', 'Catapult', NULL, NULL), + (3848, 12066, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'A-bomb-inable', 'Bombs used on enemy gates', NULL, NULL), + (3849, 12067, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'A-bomb-ination', 'Bombs used on enemy gates', NULL, NULL), + (3850, 12068, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Mowed Down', 'Players killed', NULL, NULL), + (3850, 12114, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Mowed Down', 'Vehicles killed', NULL, NULL), + (3851, 12062, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Mine', 'Win Isle of Conquest.', NULL, NULL), + (3851, 12063, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Mine', 'Win Isle of Conquest.', NULL, NULL), + (3852, 12132, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Cut the Blue Wire... No the Red Wire!', 'Bombs disarmed', NULL, NULL), + (3853, 12158, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'All Over the Isle', 'Workshop', NULL, NULL), + (3853, 12159, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'All Over the Isle', 'Hangar', NULL, NULL), + (3853, 12160, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'All Over the Isle', 'Docks', NULL, NULL), + (3853, 12161, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'All Over the Isle', 'Horde Keep', NULL, NULL), + (3853, 12162, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'All Over the Isle', 'Alliance Keep', NULL, NULL), + (3854, 12163, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Back Door Job', 'Courtyard', NULL, NULL), + (3855, 12183, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Glaive Grave', 'Players killed', NULL, NULL), + (3856, 11497, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Demolition Derby', 'Glaive Thrower', NULL, NULL), + (3856, 11498, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Demolition Derby', 'Demolisher', NULL, NULL), + (3856, 11500, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Demolition Derby', 'Catapult', NULL, NULL), + (3856, 11501, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Demolition Derby', 'Siege Engine', NULL, NULL), + (3857, 11502, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Isle of Conquest Veteran', NULL, NULL), + (3857, 11503, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Mine', NULL, NULL), + (3857, 11504, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Four Car Garage', NULL, NULL), + (3857, 11505, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'A-bomb-inable', NULL, NULL), + (3857, 11506, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'A-bomb-ination', NULL, NULL), + (3857, 11507, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Mowed Down', NULL, NULL), + (3857, 11508, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Cut the Blue Wire... No the Red Wire!', NULL, NULL), + (3857, 11509, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'All Over the Isle', NULL, NULL), + (3857, 11510, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Back Door Job', NULL, NULL), + (3857, 11511, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Demolition Derby', NULL, NULL), + (3857, 11512, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Glaive Grave', NULL, NULL), + (3876, 11618, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '1500 Dungeon & Raid Emblems', 'Emblem of Heroism', NULL, NULL), + (3876, 11619, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '1500 Dungeon & Raid Emblems', 'Emblem of Valor', NULL, NULL), + (3876, 11620, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '1500 Dungeon & Raid Emblems', 'Emblem of Conquest', NULL, NULL), + (3876, 11621, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '1500 Dungeon & Raid Emblems', 'Emblem of Triumph', NULL, NULL), + (3876, 12505, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '1500 Dungeon & Raid Emblems', 'Emblem of Frost', NULL, NULL), + (3896, 11638, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyx Panther', '', NULL, NULL), + (3896, 11639, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Onyx Panther', '', NULL, NULL), + (3916, 11679, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Crusade (25 player)', 'Defeat the Beasts of Northrend', NULL, NULL), + (3916, 11680, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Crusade (25 player)', 'Defeat Lord Jaraxxus', NULL, NULL), + (3916, 11681, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Crusade (25 player)', 'Defeat the Faction Champions', NULL, NULL), + (3916, 11682, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Crusade (25 player)', 'Defeat the Twin Val\'kyr', NULL, NULL), + (3916, 11683, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Crusade (25 player)', 'Complete the Trial of the Crusader', NULL, NULL), + (3917, 11684, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Crusade (10 player)', 'Defeat the Beasts of Northrend', NULL, NULL), + (3917, 11685, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Crusade (10 player)', 'Defeat Lord Jaraxxus', NULL, NULL), + (3917, 11686, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Crusade (10 player)', 'Defeat the Faction Champions', NULL, NULL), + (3917, 11687, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Crusade (10 player)', 'Defeat the Twin Val\'kyr', NULL, NULL), + (3917, 11688, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Crusade (10 player)', 'Complete the Trial of the Crusader', NULL, NULL), + (3918, 11689, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Grand Crusade (10 player)', 'Defeat the Beasts of Northrend', NULL, NULL), + (3918, 11690, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Grand Crusade (10 player)', 'Defeat Lord Jaraxxus', NULL, NULL), + (3918, 11691, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Grand Crusade (10 player)', 'Defeat the Faction Champions', NULL, NULL), + (3918, 11692, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Grand Crusade (10 player)', 'Defeat the Twin Val\'kyr', NULL, NULL), + (3918, 11693, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Call of the Grand Crusade (10 player)', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (3936, 12280, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Not One, But Two Jormungars (10 player)', 'Kill Acidmaw & Dreadscale within 10sec', NULL, NULL), + (3936, 12281, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Not One, But Two Jormungars (10 player)', 'Kill Acidmaw & Dreadscale within 10sec', NULL, NULL), + (3937, 12278, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Not One, But Two Jormungars (25 player)', 'Kill Acidmaw & Dreadscale within 10sec', NULL, NULL), + (3937, 12279, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Not One, But Two Jormungars (25 player)', 'Kill Acidmaw & Dreadscale within 10sec', NULL, NULL), + (3957, 11749, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Isle of Conquest Veteran', NULL, NULL), + (3957, 11750, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Mine', NULL, NULL), + (3957, 11751, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Four Car Garage', NULL, NULL), + (3957, 11752, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'A-bomb-inable', NULL, NULL), + (3957, 11753, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'A-bomb-ination', NULL, NULL), + (3957, 11754, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Mowed Down', NULL, NULL), + (3957, 11755, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Cut the Blue Wire... No the Red Wire!', NULL, NULL), + (3957, 11756, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'All Over the Isle', NULL, NULL), + (3957, 11757, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Back Door Job', NULL, NULL), + (3957, 11758, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Demolition Derby', NULL, NULL), + (3957, 11759, 25, 15003, 95, 1, 80, 1, 1, NULL, 25, 'Master of Isle of Conquest', 'Glaive Grave', NULL, NULL), + (3996, 11838, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Three Sixty Pain Spike (10 player)', 'Lord Jaraxxus', NULL, NULL), + (3996, 11861, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'Three Sixty Pain Spike (10 player)', 'Lord Jaraxxus', NULL, NULL), + (3997, 11839, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Three Sixty Pain Spike (25 player)', 'Lord Jaraxxus', NULL, NULL), + (3997, 11862, 10, 15002, 168, 1, 80, 1, 1, NULL, 10, 'Three Sixty Pain Spike (25 player)', 'Lord Jaraxxus', NULL, NULL), + (4016, 12018, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Earth, Wind & Fire (10 player)', 'Earth, Wind and Fire', NULL, NULL), + (4017, 12019, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Earth, Wind & Fire (25 player)', 'Earth, Wind and Fire', NULL, NULL), + (4018, 12540, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over Hunter Champion (Trial of the Champion)', 'Marshal Jacob Alerius', NULL, NULL), + (4019, 12541, 1, 15021, 14807, 1, 80, 80, 80, NULL, 0, 'Victories over Hunter Champion (Heroic Trial of the Champion)', 'Marshal Jacob Alerius', NULL, NULL), + (4022, 12548, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over Argent Confessor Paletress (Trial of the Champion)', 'Argent Confessor Paletress', NULL, NULL), + (4023, 12549, 1, 15021, 14807, 1, 80, 80, 80, NULL, 0, 'Victories over Argent Confessor Paletress (Heroic Trial of the Champion)', 'Argent Confessor Paletress', NULL, NULL), + (4024, 12550, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over Eadric the Pure (Trial of the Champion)', 'Eadric the Pure', NULL, NULL), + (4025, 12551, 1, 15021, 14807, 1, 80, 80, 80, NULL, 0, 'Victories over Eadric the Pure (Heroic Trial of the Champion)', 'Eadric the Pure', NULL, NULL), + (4026, 12552, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'The Black Knight kills (Trial of the Champion)', 'The Black Knight', NULL, NULL), + (4027, 12553, 1, 15021, 14807, 1, 80, 80, 80, NULL, 0, 'The Black Knight kills (Heroic Trial of the Champion)', 'The Black Knight', NULL, NULL), + (4028, 12228, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over the Beasts of Northrend (Trial of the Crusader 10 player)', 'Defeat the Beasts of Northrend', NULL, NULL), + (4029, 12231, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over the Beasts of Northrend (Trial of the Grand Crusader 25 player)', 'Defeat the Beasts of Northrend', NULL, NULL), + (4030, 12229, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over the Beasts of Northrend (Trial of the Grand Crusader 10 player)', 'Defeat the Beasts of Northrend', NULL, NULL), + (4031, 12230, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over the Beasts of Northrend (Trial of the Crusader 25 player)', 'Defeat the Beasts of Northrend', NULL, NULL), + (4032, 12232, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Lord Jaraxxus kills (Trial of the Crusader 10 player)', 'Defeat Lord Jaraxxus', NULL, NULL), + (4033, 12233, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Lord Jaraxxus kills (Trial of the Grand Crusader 10 player)', 'Defeat Lord Jaraxxus', NULL, NULL), + (4034, 12234, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Lord Jaraxxus kills (Trial of the Crusader 25 player)', 'Defeat Lord Jaraxxus', NULL, NULL), + (4035, 12235, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Lord Jaraxxus kills (Trial of the Grand Crusader 25 player)', 'Defeat Lord Jaraxxus', NULL, NULL), + (4036, 12236, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over the Faction Champions (Trial of the Crusader 10 player)', 'Defeat the Faction Champions', NULL, NULL), + (4037, 12237, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over the Faction Champions (Trial of the Grand Crusader 10 player)', 'Defeat the Faction Champions', NULL, NULL), + (4038, 12238, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over the Faction Champions (Trial of the Crusader 25 player)', 'Defeat the Faction Champions', NULL, NULL), + (4039, 12239, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over the Faction Champions (Trial of the Grand Crusader 25 player)', 'Defeat the Faction Champions', NULL, NULL), + (4040, 12240, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Val\'kyr Twins kills (Trial of the Crusader 10 player)', 'Defeat the Twin Val\'kyr', NULL, NULL), + (4041, 12241, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Val\'kyr Twins kills (Trial of the Grand Crusader 10 player)', 'Defeat the Twin Val\'kyr', NULL, NULL), + (4042, 12242, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Val\'kyr Twins kills (Trial of the Crusader 25 player)', 'Defeat the Twin Val\'kyr', NULL, NULL), + (4043, 12243, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Val\'kyr Twins kills (Trial of the Grand Crusader 25 player)', 'Defeat the Twin Val\'kyr', NULL, NULL), + (4044, 12244, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Times completed the Trial of the Crusader (10 player)', 'Complete the Trial of the Crusader', NULL, NULL), + (4045, 12245, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Times completed the Trial of the Grand Crusader (10 player)', 'Complete the Trial of the Crusader', NULL, NULL), + (4046, 12246, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Times completed the Trial of the Crusader (25 player)', 'Complete the Trial of the Crusader', NULL, NULL), + (4047, 12247, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Times completed the Trial of the Grand Crusader (25 player)', 'Complete the Trial of the Crusader', NULL, NULL), + (4048, 12542, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over Mage Champion (Trial of the Champion)', 'Marshal Jacob Alerius', NULL, NULL), + (4049, 12543, 1, 15021, 14807, 1, 80, 80, 80, NULL, 0, 'Victories over Mage Champion (Heroic Trial of the Champion)', 'Marshal Jacob Alerius', NULL, NULL), + (4050, 12544, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over Rogue Champion (Trial of the Champion)', 'Marshal Jacob Alerius', NULL, NULL), + (4051, 12545, 1, 15021, 14807, 1, 80, 80, 80, NULL, 0, 'Victories over Rogue Champion (Heroic Trial of the Champion)', 'Marshal Jacob Alerius', NULL, NULL), + (4052, 12546, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over Shaman Champion (Trial of the Champion)', 'Marshal Jacob Alerius', NULL, NULL), + (4053, 12547, 1, 15021, 14807, 1, 80, 80, 80, NULL, 0, 'Victories over Shaman Champion (Heroic Trial of the Champion)', 'Marshal Jacob Alerius', NULL, NULL), + (4054, 12538, 1, 15021, 14807, 1, 80, 71, 76, NULL, 0, 'Victories over Warrior Champion (Trial of the Champion)', 'Marshal Jacob Alerius', NULL, NULL), + (4055, 12539, 1, 15021, 14807, 1, 80, 80, 80, NULL, 0, 'Victories over Warrior Champion (Heroic Trial of the Champion)', 'Marshal Jacob Alerius', NULL, NULL), + (4074, 11902, 1, 15021, 14807, 1, 80, 71, 76, NULL, 10, 'Koralon the Flame Watcher kills (Wintergrasp 10 player)', 'Koralon the Flame Watcher', NULL, NULL), + (4075, 11903, 1, 15021, 14807, 1, 80, 71, 76, NULL, 10, 'Koralon the Flame Watcher kills (Wintergrasp 25 player)', 'Koralon the Flame Watcher', NULL, NULL), + (4078, 12350, 1, 81, -1, 1, 80, 71, 1, NULL, 0, 'Realm First! Grand Crusader', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (4079, 12358, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'A Tribute to Immortality', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (4080, 12360, 10, 15001, 168, 1, 80, 1, 1, NULL, 10, 'A Tribute to Dedicated Insanity', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (4096, 11958, 18, 153, 21, 1, 80, 1, 1, NULL, 0, 'Isle of Conquest battles', 'Isle of Conquest', NULL, NULL), + (4097, 11959, 18, 153, 21, 1.7, 80, 1, 1, NULL, 0, 'Isle of Conquest victories', 'Isle of Conquest victories', NULL, NULL), + (4156, 12359, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'A Tribute to Immortality', 'Complete the Trial of the Grand Crusader', NULL, NULL), + (4176, 12061, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Resource Glut', 'Win Isle of Conquest.', NULL, NULL), + (4177, 12064, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Mine', 'Win Isle of Conquest.', NULL, NULL), + (4177, 12065, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Mine', 'Win Isle of Conquest.', NULL, NULL), + (4256, 12178, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Demolition Derby', 'Glaive Thrower', NULL, NULL), + (4256, 12179, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Demolition Derby', 'Demolisher', NULL, NULL), + (4256, 12181, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Demolition Derby', 'Catapult', NULL, NULL), + (4256, 12182, 10, 15003, 95, 1, 80, 1, 1, NULL, 10, 'Demolition Derby', 'Siege Engine', NULL, NULL), + (4296, 12302, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Mokra the Skullcrusher', NULL, NULL), + (4296, 12303, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Deathstalker Visceri', NULL, NULL), + (4296, 12304, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Runok Wildmane', NULL, NULL), + (4296, 12305, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Eressea Dawnsinger', NULL, NULL), + (4296, 12306, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Zul\'tore', NULL, NULL), + (4296, 12307, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Argent Confessor Paletress', NULL, NULL), + (4296, 12308, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'Eadric the Pure', NULL, NULL), + (4296, 12309, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'Trial of the Champion', 'The Black Knight', NULL, NULL), + (4297, 12310, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Marshal Jacob Alerius', NULL, NULL), + (4297, 12311, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Lana Stouthammer', NULL, NULL), + (4297, 12312, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Colosos', NULL, NULL), + (4297, 12313, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Ambrose Boltspark', NULL, NULL), + (4297, 12314, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Jaelyne Evensong', NULL, NULL), + (4297, 12315, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Argent Confessor Paletress', NULL, NULL), + (4297, 12316, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Eadric the Pure', NULL, NULL), + (4297, 12317, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'The Black Knight', NULL, NULL), + (4298, 12318, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Mokra the Skullcrusher', NULL, NULL), + (4298, 12319, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Deathstalker Visceri', NULL, NULL), + (4298, 12320, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Runok Wildmane', NULL, NULL), + (4298, 12321, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Eressea Dawnsinger', NULL, NULL), + (4298, 12322, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Zul\'tore', NULL, NULL), + (4298, 12323, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Argent Confessor Paletress', NULL, NULL), + (4298, 12324, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'Eadric the Pure', NULL, NULL), + (4298, 12439, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Trial of the Champion', 'The Black Knight', NULL, NULL), + (4316, 12418, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '2500 Dungeon & Raid Emblems', 'Emblem of Heroism', NULL, NULL), + (4316, 12419, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '2500 Dungeon & Raid Emblems', 'Emblem of Valor', NULL, NULL), + (4316, 12420, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '2500 Dungeon & Raid Emblems', 'Emblem of Conquest', NULL, NULL), + (4316, 12421, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '2500 Dungeon & Raid Emblems', 'Emblem of Triumph', NULL, NULL), + (4316, 12506, 10, 168, -1, 1, 80, 1, 1, NULL, 10, '2500 Dungeon & Raid Emblems', 'Emblem of Frost', NULL, NULL), + (4396, 12558, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Onyxia\'s Lair (10 player)', 'Onyxia', NULL, NULL), + (4397, 12559, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Onyxia\'s Lair (25 player)', 'Onyxia', NULL, NULL), + (4400, 12562, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'WoW\'s 5th Anniversary', 'Logged in during 5th anniversary event', NULL, NULL), + (4402, 12564, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'More Dots! (10 player)', 'Onyxia', NULL, NULL), + (4403, 12565, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Many Whelps! Handle It! (10 player)', 'Onyxia', NULL, NULL), + (4404, 12566, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'She Deep Breaths More (10 player)', 'Onyxia', NULL, NULL), + (4405, 12567, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'More Dots! (25 player)', 'Onyxia', NULL, NULL), + (4406, 12568, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Many Whelps! Handle It! (25 player)', 'Onyxia', NULL, NULL), + (4407, 12569, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'She Deep Breaths More (25 player)', 'Onyxia', NULL, NULL), + (4436, 12658, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'BB King', 'Thrall', NULL, NULL), + (4436, 12659, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'BB King', 'Vol\'jin', NULL, NULL), + (4436, 12660, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'BB King', 'Lor\'themar Theron', NULL, NULL), + (4436, 12661, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'BB King', 'Lady Sylvanas Windrunner', NULL, NULL), + (4436, 12662, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'BB King', 'Cairne Bloodhoof', NULL, NULL), + (4437, 12663, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'BB King', 'King Varian Wrynn', NULL, NULL), + (4437, 12664, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'BB King', 'King Magni Bronzebeard', NULL, NULL), + (4437, 12665, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'BB King', 'High Tinker Mekkatorque', NULL, NULL), + (4437, 12666, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'BB King', 'Tyrande Whisperwind', NULL, NULL), + (4437, 12667, 10, 156, 155, 1, 80, 1, 1, NULL, 10, 'BB King', 'Prophet Velen', NULL, NULL), + (4456, 12678, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'Ingvar the Plunderer', NULL, NULL), + (4456, 12679, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'King Ymiron', NULL, NULL), + (4456, 12680, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'Ley-Guardian Eregos', NULL, NULL), + (4456, 12681, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'Mal\'Ganis', NULL, NULL), + (4456, 12682, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'Kronus', NULL, NULL), + (4456, 12683, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'Sjonnir the Ironshaper', NULL, NULL), + (4456, 12684, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'Anub\'arak', NULL, NULL), + (4456, 12685, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'Herald Volazj', NULL, NULL), + (4456, 12686, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'The Prophet Tharon\'ja', NULL, NULL), + (4456, 12687, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'Gal\'darah', NULL, NULL), + (4456, 12688, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'Cyanigosa', NULL, NULL), + (4456, 12689, 1, 14807, 1, 1, 80, 67, 77, 'ICC - Lich King', 0, 'Random Lich King (normal) dungeons completed', 'Keristrasza', NULL, NULL), + (4476, 13029, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Looking For More', '', NULL, NULL), + (4477, 13030, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Looking For Many', '', NULL, NULL), + (4478, 13031, 10, 168, -1, 1, 80, 1, 1, NULL, 10, 'Looking For Multitudes', '', NULL, NULL), + (4496, 12698, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'It\'s Over Nine Thousand!', '', NULL, NULL), + (4516, 12738, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Forge of Souls', 'Bronjahm', NULL, NULL), + (4516, 12739, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Forge of Souls', 'Devourer of Souls', NULL, NULL), + (4517, 12740, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Pit of Saron', 'Forgemaster Garfrost', NULL, NULL), + (4517, 12741, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Pit of Saron', 'Ick and Krick', NULL, NULL), + (4517, 12744, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Pit of Saron', 'Scourgelord Tyrannus and Rimefang', NULL, NULL), + (4518, 12742, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Halls of Reflection', 'Falric', NULL, NULL), + (4518, 12743, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Halls of Reflection', 'Survive the encounter with the Lich King', NULL, NULL), + (4518, 12990, 10, 14806, 168, 1, 80, 1, 1, NULL, 10, 'The Halls of Reflection', 'Marwyn', NULL, NULL), + (4519, 12745, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Forge of Souls', 'Bronjahm', NULL, NULL), + (4519, 12746, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Forge of Souls', 'Devourer of Souls', NULL, NULL), + (4520, 12747, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Pit of Saron', 'Forgemaster Garfrost', NULL, NULL), + (4520, 12748, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Pit of Saron', 'Ick and Krick', NULL, NULL), + (4520, 12749, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Pit of Saron', 'Scourgelord Tyrannus and Rimefang', NULL, NULL), + (4521, 12750, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Halls of Reflection', 'Falric', NULL, NULL), + (4521, 12751, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Halls of Reflection', 'Survive the encounter with the Lich King', NULL, NULL), + (4521, 12991, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Halls of Reflection', 'Marwyn', NULL, NULL), + (4522, 12752, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Soul Power', 'Bronjahm', NULL, NULL), + (4523, 12976, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Three Faced', 'Devourer of Souls', NULL, NULL), + (4524, 12993, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Doesn\'t Go to Eleven', '', NULL, NULL), + (4525, 12994, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'Don\'t Look Up', '', NULL, NULL), + (4526, 12756, 10, 14921, 168, 1, 80, 1, 1, NULL, 10, 'We\'re Not Retreating; We\'re Advancing in a Different Direction.', 'Ghoul Explode', NULL, NULL), + (4527, 12757, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'The Frostwing Halls (10 player)', 'Rescue Valithiria Dreamwalker', NULL, NULL), + (4527, 12758, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'The Frostwing Halls (10 player)', 'Sindragosa', NULL, NULL), + (4528, 12759, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'The Plagueworks (10 player)', 'Festergut', NULL, NULL), + (4528, 12760, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'The Plagueworks (10 player)', 'Rotface', NULL, NULL), + (4528, 12761, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'The Plagueworks (10 player)', 'Professor Putricide', NULL, NULL), + (4529, 12762, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'The Crimson Hall (10 player)', 'Defeat the Blood Prince Council', NULL, NULL), + (4529, 12763, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'The Crimson Hall (10 player)', 'Defeat Blood-Queen Lana\'thel', NULL, NULL), + (4530, 12764, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'The Frozen Throne (10 player)', 'The Lich King', NULL, NULL), + (4531, 12770, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Storming the Citadel (10 player)', 'Lord Marrowgar', NULL, NULL), + (4531, 12771, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Storming the Citadel (10 player)', 'Claim victory in the Gunship Battle', NULL, NULL), + (4531, 12772, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Storming the Citadel (10 player)', 'The Deathbringer', NULL, NULL), + (4531, 12773, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Storming the Citadel (10 player)', 'Lady Deathwhisper', NULL, NULL), + (4532, 12765, 30, 15041, 168, 2, 80, 80, 80, 'ICC - Lich King', 25, 'Fall of the Lich King (10 player)', 'Storming the Citadel', NULL, NULL), + (4532, 12766, 30, 15041, 168, 2, 80, 80, 80, 'ICC - Lich King', 25, 'Fall of the Lich King (10 player)', 'The Frostwing Halls', NULL, NULL), + (4532, 12767, 30, 15041, 168, 2, 80, 80, 80, 'ICC - Lich King', 25, 'Fall of the Lich King (10 player)', 'The Plagueworks', NULL, NULL), + (4532, 12768, 30, 15041, 168, 2, 80, 80, 80, 'ICC - Lich King', 25, 'Fall of the Lich King (10 player)', 'The Crimson Hall', NULL, NULL), + (4532, 12769, 55, 15041, 168, 2, 80, 80, 80, 'ICC - Lich King', 25, 'Fall of the Lich King (10 player)', 'The Frozen Throne', NULL, NULL), + (4534, 12775, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Boned (10 player)', 'Lord Marrowgar slain', NULL, NULL), + (4534, 13393, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Boned (10 player)', 'Lord Marrowgar slain', NULL, NULL), + (4535, 12776, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Full House (10 player)', 'Lady Deathwhisper', NULL, NULL), + (4535, 12995, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Full House (10 player)', 'Lady Deathwhisper', NULL, NULL), + (4536, 12777, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'I\'m on a Boat (10 player)', 'Gunship Battle', NULL, NULL), + (4536, 13079, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'I\'m on a Boat (10 player)', 'Gunship Battle', NULL, NULL), + (4537, 12778, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'I\'ve Gone and Made a Mess (10 player)', 'Deathbringer', NULL, NULL), + (4537, 13035, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'I\'ve Gone and Made a Mess (10 player)', 'Deathbringer', NULL, NULL), + (4538, 12984, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Dances with Oozes (10 player)', 'Rotface', NULL, NULL), + (4538, 12985, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Dances with Oozes (10 player)', 'Rotface', NULL, NULL), + (4539, 12780, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Once Bitten, Twice Shy (10 player)', 'Defeat Blood-Queen Lana\'thel without becoming a vampire', NULL, NULL), + (4539, 13011, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Once Bitten, Twice Shy (10 player)', 'Defeat Blood-Queen Lana\'thel while a vampire', NULL, NULL), + (4556, 12798, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'Ingvar the Plunderer', NULL, NULL), + (4556, 12799, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'King Ymiron', NULL, NULL), + (4556, 12800, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'Ley-Guardian Eregos', NULL, NULL), + (4556, 12801, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'Mal\'Ganis', NULL, NULL), + (4556, 12802, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'Kronus', NULL, NULL), + (4556, 12803, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'Sjonnir the Ironshaper', NULL, NULL), + (4556, 12804, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'Anub\'arak', NULL, NULL), + (4556, 12805, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'Herald Volazj', NULL, NULL), + (4556, 12806, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'The Prophet Tharon\'ja', NULL, NULL), + (4556, 12807, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'Gal\'darah', NULL, NULL), + (4556, 12808, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'Cyanigosa', NULL, NULL), + (4556, 12809, 1, 14807, 1, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Random Lich King (heroic) dungeons completed', 'Keristrasza', NULL, NULL), + (4576, 12818, 1, 81, -1, 1, 80, 71, 80, 'ICC - Lich King', 0, 'Realm First! Fall of the Lich King', 'The Lich King', NULL, NULL), + (4577, 12977, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Flu Shot Shortage (10 player)', 'Festergut', NULL, NULL), + (4577, 12986, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Flu Shot Shortage (10 player)', 'Festergut', NULL, NULL), + (4578, 12987, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Nausea, Heartburn, Indigestion... (10 player)', 'Professor Putricide', NULL, NULL), + (4578, 12988, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Nausea, Heartburn, Indigestion... (10 player)', 'Professor Putricide', NULL, NULL), + (4579, 12978, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Portal Jockey (10 player)', 'Valithria', NULL, NULL), + (4579, 12979, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Portal Jockey (10 player)', 'Valithria', NULL, NULL), + (4580, 12822, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'All You Can Eat (10 player)', 'Sindragosa', NULL, NULL), + (4580, 12996, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'All You Can Eat (10 player)', 'Sindragosa', NULL, NULL), + (4581, 12823, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Neck-Deep in Vile (10 player)', 'Vile Spirits', NULL, NULL), + (4581, 13163, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Neck-Deep in Vile (10 player)', 'Vile Spirits', NULL, NULL), + (4582, 13033, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'The Orb Whisperer (10 player)', 'Prince Valanar', NULL, NULL), + (4582, 13034, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'The Orb Whisperer (10 player)', 'Prince Valanar', NULL, NULL), + (4583, 12825, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Bane of the Fallen King', 'The Lich King', NULL, NULL), + (4584, 12826, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'The Light of Dawn', 'The Lich King', NULL, NULL), + (4585, 12827, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Toravon the Ice Watcher (10 player)', 'Toravon the Ice Watcher', NULL, NULL), + (4586, 12828, 10, 14901, 95, 1, 80, 1, 1, NULL, 10, 'Toravon the Ice Watcher (25 player)', 'Toravon the Ice Watcher', NULL, NULL), + (4596, 12902, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'The Sword in the Skull', '', NULL, NULL), + (4596, 12903, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'The Sword in the Skull', '', NULL, NULL), + (4596, 12904, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'The Sword in the Skull', '', NULL, NULL), + (4596, 12905, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'The Sword in the Skull', '', NULL, NULL), + (4596, 12906, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'The Sword in the Skull', '', NULL, NULL), + (4596, 12907, 10, 14941, 155, 1, 80, 1, 1, NULL, 10, 'The Sword in the Skull', '', NULL, NULL), + (4597, 12909, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'The Frozen Throne (25 player)', 'The Lich King', NULL, NULL), + (4598, 12911, 15, 14866, 201, 1, 80, 1, 1, NULL, 15, 'The Ashen Verdict', 'Ashen Verdict Exalted', NULL, NULL), + (4599, 12912, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Wrathful Gladiator', '', NULL, NULL), + (4600, 12913, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Wrathful Gladiator\'s Frostwyrm', '', NULL, NULL), + (4600, 12914, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Wrathful Gladiator\'s Frostwyrm', '', NULL, NULL), + (4601, 13246, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Been Waiting a Long Time for This (10 player)', 'Allow Necrotic Plague to stack to 30 before defeating the Lich King in 10-player mode.', NULL, NULL), + (4601, 13247, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Been Waiting a Long Time for This (10 player)', 'Allow Necrotic Plague to stack to 30 before defeating the Lich King in 10-player mode.', NULL, NULL), + (4602, 12917, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Boned', NULL, NULL), + (4602, 12918, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Full House', NULL, NULL), + (4602, 12919, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'I\'m on a Boat', NULL, NULL), + (4602, 12920, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'I\'ve Gone and Made a Mess', NULL, NULL), + (4602, 12921, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Dances with Oozes', NULL, NULL), + (4602, 12922, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Flu Shot Shortage', NULL, NULL), + (4602, 12923, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Nausea, Heartburn, Indigestion', NULL, NULL), + (4602, 12924, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'The Orb Whisperer', NULL, NULL), + (4602, 12925, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Once Bitten, Twice Shy', NULL, NULL), + (4602, 12926, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Portal Jockey', NULL, NULL), + (4602, 12927, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'All You Can Eat', NULL, NULL), + (4602, 12928, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Been Waiting a Long Time for This', NULL, NULL), + (4602, 13071, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Heroic: Storming the Citadel (10 player)', NULL, NULL), + (4602, 13072, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Heroic: The Plagueworks (10 player)', NULL, NULL), + (4602, 13073, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Heroic: The Crimson Hall (10 player)', NULL, NULL), + (4602, 13074, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (10 player)', 'Heroic: The Frostwing Halls (10 player)', NULL, NULL), + (4603, 13016, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Boned', NULL, NULL), + (4603, 13017, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Full House', NULL, NULL), + (4603, 13018, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'I\'m on a Boat', NULL, NULL), + (4603, 13019, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'I\'ve Gone and Made a Mess', NULL, NULL), + (4603, 13020, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Dances with Oozes', NULL, NULL), + (4603, 13021, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Flu Shot Shortage', NULL, NULL), + (4603, 13022, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Nausea, Heartburn, Indigestion...', NULL, NULL), + (4603, 13023, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'The Orb Whisperer', NULL, NULL), + (4603, 13024, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Once Bitten, Twice Shy', NULL, NULL), + (4603, 13025, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Portal Jockey', NULL, NULL), + (4603, 13026, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'All You Can Eat', NULL, NULL), + (4603, 13027, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Been Waiting a Long Time for This', NULL, NULL), + (4603, 13028, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Neck-Deep in Vile', NULL, NULL), + (4603, 13075, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Heroic: Storming the Citadel (25 player)', NULL, NULL), + (4603, 13076, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Heroic: The Plagueworks (25 player)', NULL, NULL), + (4603, 13077, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Heroic: The Crimson Hall (25 player)', NULL, NULL), + (4603, 13078, 25, 168, -1, 1, 80, 1, 1, NULL, 25, 'Glory of the Icecrown Raider (25 player)', 'Heroic: The Frostwing Halls (25 player)', NULL, NULL), + (4604, 12945, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Storming the Citadel (25 player)', 'Lord Marrowgar', NULL, NULL), + (4604, 12946, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Storming the Citadel (25 player)', 'The Deathbringer', NULL, NULL), + (4604, 12947, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Storming the Citadel (25 player)', 'Claim victory in the Gunship Battle', NULL, NULL), + (4604, 12948, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Storming the Citadel (25 player)', 'Lady Deathwhisper', NULL, NULL), + (4605, 12949, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'The Plagueworks (25 player)', 'Festergut', NULL, NULL), + (4605, 12950, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'The Plagueworks (25 player)', 'Rotface', NULL, NULL), + (4605, 12951, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'The Plagueworks (25 player)', 'Professor Putricide', NULL, NULL), + (4606, 12952, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'The Crimson Hall (25 player)', 'Defeat the Blood Prince Council', NULL, NULL), + (4606, 12953, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'The Crimson Hall (25 player)', 'Defeat Blood-Queen Lana\'thel', NULL, NULL), + (4607, 12954, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'The Frostwing Halls (25 player)', 'Rescue Valithiria Dreamwalker', NULL, NULL), + (4607, 12955, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'The Frostwing Halls (25 player)', 'Sindragosa', NULL, NULL), + (4608, 12956, 40, 15042, 168, 2.5, 80, 80, 80, 'ICC - Lich King', 25, 'Fall of the Lich King (25 player)', 'Storming the Citadel', NULL, NULL), + (4608, 12957, 60, 15042, 168, 2.5, 80, 80, 80, 'ICC - Lich King', 25, 'Fall of the Lich King (25 player)', 'The Frozen Throne', NULL, NULL), + (4608, 12958, 40, 15042, 168, 2.5, 80, 80, 80, 'ICC - Lich King', 25, 'Fall of the Lich King (25 player)', 'The Frostwing Halls', NULL, NULL), + (4608, 12959, 40, 15042, 168, 2.5, 80, 80, 80, 'ICC - Lich King', 25, 'Fall of the Lich King (25 player)', 'The Plagueworks', NULL, NULL), + (4608, 12960, 40, 15042, 168, 2.5, 80, 80, 80, 'ICC - Lich King', 25, 'Fall of the Lich King (25 player)', 'The Crimson Hall', NULL, NULL), + (4610, 12962, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Boned (25 player)', 'Lord Marrowgar slain', NULL, NULL), + (4610, 13394, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Boned (25 player)', 'Lord Marrowgar slain', NULL, NULL), + (4611, 12997, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Full House (25 player)', 'Lady Deathwhisper', NULL, NULL), + (4611, 12998, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Full House (25 player)', 'Lady Deathwhisper', NULL, NULL), + (4612, 13080, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'I\'m on a Boat (25 player)', 'Gunship Battle', NULL, NULL), + (4612, 13081, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'I\'m on a Boat (25 player)', 'Gunship Battle', NULL, NULL), + (4613, 13036, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'I\'ve Gone and Made a Mess (25 player)', 'Deathbringer', NULL, NULL), + (4613, 13037, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'I\'ve Gone and Made a Mess (25 player)', 'Deathbringer', NULL, NULL), + (4614, 12966, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Dances with Oozes (25 player)', 'Rotface', NULL, NULL), + (4614, 12983, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Dances with Oozes (25 player)', 'Rotface', NULL, NULL), + (4615, 12967, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Flu Shot Shortage (25 player)', 'Festergut', NULL, NULL), + (4615, 12982, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Flu Shot Shortage (25 player)', 'Festergut', NULL, NULL), + (4616, 12968, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Nausea, Heartburn, Indigestion... (25 player)', 'Professor Putricide', NULL, NULL), + (4616, 12981, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Nausea, Heartburn, Indigestion... (25 player)', 'Professor Putricide', NULL, NULL), + (4617, 12969, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'The Orb Whisperer (25 player)', 'Prince Valanar', NULL, NULL), + (4617, 13032, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'The Orb Whisperer (25 player)', 'Prince Valanar', NULL, NULL), + (4618, 13012, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Once Bitten, Twice Shy (25 player)', 'Defeat Blood-Queen Lana\'thel without becoming a vampire', NULL, NULL), + (4618, 13013, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Once Bitten, Twice Shy (25 player)', 'Defeat Blood-Queen Lana\'thel while a vampire', NULL, NULL), + (4619, 12971, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Portal Jockey (25 player)', 'Valithria', NULL, NULL), + (4619, 12980, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Portal Jockey (25 player)', 'Valithria', NULL, NULL), + (4620, 12972, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'All You Can Eat (25 player)', 'Sindragosa', NULL, NULL), + (4620, 12989, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'All You Can Eat (25 player)', 'Sindragosa', NULL, NULL), + (4621, 13244, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Been Waiting a Long Time for This (25 player)', 'Allow Necrotic Plague to stack to 30 before defeating the Lich King in 25-player mode.', NULL, NULL), + (4621, 13245, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Been Waiting a Long Time for This (25 player)', 'Allow Necrotic Plague to stack to 30 before defeating the Lich King in 25-player mode.', NULL, NULL), + (4622, 13164, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Neck-Deep in Vile (25 player)', 'Vile Spirits', NULL, NULL), + (4622, 13243, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Neck-Deep in Vile (25 player)', 'Vile Spirits', NULL, NULL), + (4623, 12975, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Shadowmourne', 'Shadowmourne', NULL, NULL), + (4624, 12992, 10, 187, 155, 1, 80, 1, 1, NULL, 10, 'Tough Love', '', NULL, NULL), + (4625, 13008, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Invincible\'s Reins', '', NULL, NULL), + (4626, 13009, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'And I\'ll Form the Head!', '', NULL, NULL), + (4627, 13010, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Big Love Rocket', '', NULL, NULL), + (4628, 13039, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Storming the Citadel (10 player)', 'Lord Marrowgar', NULL, NULL), + (4628, 13040, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Storming the Citadel (10 player)', 'Lady Deathwhisper', NULL, NULL), + (4628, 13041, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Storming the Citadel (10 player)', 'Claim victory in the Gunship Battle', NULL, NULL), + (4628, 13042, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Storming the Citadel (10 player)', 'The Deathbringer', NULL, NULL), + (4629, 13043, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Plagueworks (10 player)', 'Festergut', NULL, NULL), + (4629, 13044, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Plagueworks (10 player)', 'Rotface', NULL, NULL), + (4629, 13045, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Plagueworks (10 player)', 'Professor Putricide', NULL, NULL), + (4630, 13046, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Crimson Hall (10 player)', 'Defeat the Blood Prince Council', NULL, NULL), + (4630, 13047, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Crimson Hall (10 player)', 'Defeat Blood-Queen Lana\'thel', NULL, NULL), + (4631, 13048, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Frostwing Halls (10 player)', 'Rescue Valithiria Dreamwalker', NULL, NULL), + (4631, 13049, 10, 15041, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Frostwing Halls (10 player)', 'Sindragosa', NULL, NULL), + (4632, 13050, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Storming the Citadel (25 player)', 'Lord Marrowgar', NULL, NULL), + (4632, 13051, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Storming the Citadel (25 player)', 'Lady Deathwhisper', NULL, NULL), + (4632, 13052, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Storming the Citadel (25 player)', 'Claim victory in the Gunship Battle', NULL, NULL), + (4632, 13053, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: Storming the Citadel (25 player)', 'The Deathbringer', NULL, NULL), + (4633, 13054, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Plagueworks (25 player)', 'Festergut', NULL, NULL), + (4633, 13055, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Plagueworks (25 player)', 'Rotface', NULL, NULL), + (4633, 13056, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Plagueworks (25 player)', 'Professor Putricide', NULL, NULL), + (4634, 13057, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Crimson Hall (25 player)', 'Defeat the Blood Prince Council', NULL, NULL), + (4634, 13058, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Crimson Hall (25 player)', 'Defeat Blood-Queen Lana\'thel', NULL, NULL), + (4635, 13059, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Frostwing Halls (25 player)', 'Rescue Valithiria Dreamwalker', NULL, NULL), + (4635, 13060, 10, 15042, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Frostwing Halls (25 player)', 'Sindragosa', NULL, NULL), + (4636, 13061, 50, 15041, 168, 2, 80, 80, 80, 'ICC - Lich King', 25, 'Heroic: Fall of the Lich King (10 player)', 'Storming the Citadel', NULL, NULL), + (4636, 13062, 50, 15041, 168, 2, 80, 80, 80, 'ICC - Lich King', 25, 'Heroic: Fall of the Lich King (10 player)', 'The Plagueworks', NULL, NULL), + (4636, 13063, 50, 15041, 168, 2, 80, 80, 80, 'ICC - Lich King', 25, 'Heroic: Fall of the Lich King (10 player)', 'The Crimson Hall', NULL, NULL), + (4636, 13064, 50, 15041, 168, 2, 80, 80, 80, 'ICC - Lich King', 25, 'Heroic: Fall of the Lich King (10 player)', 'The Frostwing Halls', NULL, NULL), + (4636, 13065, 65, 15041, 168, 2, 80, 80, 80, 'ICC - Lich King', 25, 'Heroic: Fall of the Lich King (10 player)', 'The Frozen Throne', NULL, NULL), + (4637, 13066, 50, 15042, 168, 2.5, 80, 80, 80, 'ICC - Lich King', 25, 'Heroic: Fall of the Lich King (25 player)', 'Storming the Citadel', NULL, NULL), + (4637, 13067, 50, 15042, 168, 2.5, 80, 80, 80, 'ICC - Lich King', 25, 'Heroic: Fall of the Lich King (25 player)', 'The Plagueworks', NULL, NULL), + (4637, 13068, 50, 15042, 168, 2.5, 80, 80, 80, 'ICC - Lich King', 25, 'Heroic: Fall of the Lich King (25 player)', 'The Crimson Hall', NULL, NULL), + (4637, 13069, 50, 15042, 168, 2.5, 80, 80, 80, 'ICC - Lich King', 25, 'Heroic: Fall of the Lich King (25 player)', 'The Frostwing Halls', NULL, NULL), + (4637, 13070, 80, 15042, 168, 3, 80, 80, 80, 'ICC - Lich King', 25, 'Heroic: Fall of the Lich King (25 player)', 'The Frozen Throne', NULL, NULL), + (4639, 13089, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Lord Marrowgar kills (Icecrown 10 player)', 'Lord Marrowgar', NULL, NULL), + (4640, 13090, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Lord Marrowgar kills (Heroic Icecrown 10 player)', 'Lord Marrowgar', NULL, NULL), + (4641, 13092, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Lord Marrowgar kills (Icecrown 25 player)', 'Lord Marrowgar', NULL, NULL), + (4642, 13091, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Lord Marrowgar kills (Heroic Icecrown 25 player)', 'Lord Marrowgar', NULL, NULL), + (4643, 13093, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Lady Deathwhisper kills (Icecrown 10 player)', 'Lady Deathwhisper', NULL, NULL), + (4644, 13094, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Gunship Battle victories (Icecrown 10 player)', 'Claim victory in the Gunship Battle', NULL, NULL), + (4645, 13095, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Deathbringer kills (Icecrown 10 player)', 'The Deathbringer', NULL, NULL), + (4646, 13096, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Festergut kills (Icecrown 10 player)', 'Festergut', NULL, NULL), + (4647, 13097, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Rotface kills (Icecrown 10 player)', 'Rotface', NULL, NULL), + (4648, 13098, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Blood Prince Council kills (Icecrown 10 player)', 'Defeat the Blood Prince Council', NULL, NULL), + (4649, 13099, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Valithria Dreamwalker rescues (Icecrown 10 player)', 'Rescue Valithiria Dreamwalker', NULL, NULL), + (4650, 13100, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Professor Putricide kills (Icecrown 10 player)', 'Professor Putricide', NULL, NULL), + (4651, 13101, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Blood Queen Lana\'thel kills (Icecrown 10 player)', 'Defeat Blood-Queen Lana\'thel', NULL, NULL), + (4652, 13102, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Sindragosa kills (Icecrown 10 player)', 'Sindragosa', NULL, NULL), + (4653, 13103, 1, 15062, 14807, 4, 80, 71, 76, 'ICC - Lich King', 0, 'Victories over the Lich King (Icecrown 10 player)', 'The Lich King', NULL, NULL), + (4654, 13104, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Lady Deathwhisper kills (Heroic Icecrown 10 player)', 'Lady Deathwhisper', NULL, NULL), + (4655, 13105, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Lady Deathwhisper kills (Icecrown 25 player)', 'Lady Deathwhisper', NULL, NULL), + (4656, 13106, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Lady Deathwhisper kills (Heroic Icecrown 25 player)', 'Lady Deathwhisper', NULL, NULL), + (4657, 13107, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Toravon the Ice Watcher kills (Wintergrasp 10 player)', 'Toravon the Ice Watcher', NULL, NULL), + (4658, 13108, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Toravon the Ice Watcher kills (Wintergrasp 25 player)', 'Toravon the Ice Watcher', NULL, NULL), + (4659, 13110, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Gunship Battle victories (Heroic Icecrown 10 player)', 'Claim victory in the Gunship Battle', NULL, NULL), + (4660, 13109, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Gunship Battle victories (Icecrown 25 player)', 'Claim victory in the Gunship Battle', NULL, NULL), + (4661, 13111, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Gunship Battle victories (Heroic Icecrown 25 player)', 'Claim victory in the Gunship Battle', NULL, NULL), + (4662, 13113, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Deathbringer kills (Heroic Icecrown 10 player)', 'The Deathbringer', NULL, NULL), + (4663, 13112, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Deathbringer kills (Icecrown 25 player)', 'The Deathbringer', NULL, NULL), + (4664, 13114, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Deathbringer kills (Heroic Icecrown 25 player)', 'The Deathbringer', NULL, NULL), + (4665, 13116, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Festergut kills (Heroic Icecrown 10 player)', 'Festergut', NULL, NULL), + (4666, 13115, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Festergut kills (Icecrown 25 player)', 'Festergut', NULL, NULL), + (4667, 13117, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Festergut kills (Heroic Icecrown 25 player)', 'Festergut', NULL, NULL), + (4668, 13119, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Rotface kills (Heroic Icecrown 10 player)', 'Rotface', NULL, NULL), + (4669, 13118, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Rotface kills (Icecrown 25 player)', 'Rotface', NULL, NULL), + (4670, 13120, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Rotface kills (Heroic Icecrown 25 player)', 'Rotface', NULL, NULL), + (4671, 13122, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Blood Prince Council kills (Heroic Icecrown 10 player)', 'Defeat the Blood Prince Council', NULL, NULL), + (4672, 13121, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Blood Prince Council kills (Icecrown 25 player)', 'Defeat the Blood Prince Council', NULL, NULL), + (4673, 13123, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Blood Prince Council kills (Heroic Icecrown 25 player)', 'Defeat the Blood Prince Council', NULL, NULL), + (4674, 13125, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Valithria Dreamwalker rescues (Heroic Icecrown 10 player)', 'Rescue Valithiria Dreamwalker', NULL, NULL), + (4675, 13124, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Valithria Dreamwalker rescues (Icecrown 25 player)', 'Rescue Valithiria Dreamwalker', NULL, NULL), + (4676, 13126, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Valithria Dreamwalker rescues (Heroic Icecrown 25 player)', 'Rescue Valithiria Dreamwalker', NULL, NULL), + (4677, 13128, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Professor Putricide kills (Heroic Icecrown 10 player)', 'Professor Putricide', NULL, NULL), + (4678, 13127, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Professor Putricide kills (Icecrown 25 player)', 'Professor Putricide', NULL, NULL), + (4679, 13129, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Professor Putricide kills (Heroic Icecrown 25 player)', 'Professor Putricide', NULL, NULL), + (4680, 13131, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Blood Queen Lana\'thel kills (Heroic Icecrown 10 player)', 'Defeat Blood-Queen Lana\'thel', NULL, NULL), + (4681, 13130, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Blood Queen Lana\'thel kills (Icecrown 25 player)', 'Defeat Blood-Queen Lana\'thel', NULL, NULL), + (4682, 13132, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Blood Queen Lana\'thel kills (Heroic Icecrown 25 player)', 'Defeat Blood-Queen Lana\'thel', NULL, NULL), + (4683, 13133, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Sindragosa kills (Icecrown 25 player)', 'Sindragosa', NULL, NULL), + (4684, 13134, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Sindragosa kills (Heroic Icecrown 10 player)', 'Sindragosa', NULL, NULL), + (4685, 13135, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Sindragosa kills (Heroic Icecrown 25 player)', 'Sindragosa', NULL, NULL), + (4686, 13137, 1, 15062, 14807, 6, 80, 80, 80, 'ICC - Lich King', 0, 'Victories over the Lich King (Heroic Icecrown 10 player)', 'The Lich King', NULL, NULL), + (4687, 13136, 1, 15062, 14807, 8, 80, 71, 76, 'ICC - Lich King', 0, 'Victories over the Lich King (Icecrown 25 player)', 'The Lich King', NULL, NULL), + (4688, 13138, 1, 15062, 14807, 10, 80, 80, 80, 'ICC - Lich King', 0, 'Victories over the Lich King (Heroic Icecrown 25 player)', 'The Lich King', 37711, 1000), + (4713, 13166, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Bronjahm kills (Forge of Souls)', 'Bronjahm', NULL, NULL), + (4714, 13167, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Bronjahm kills (Heroic Forge of Souls)', 'Bronjahm', NULL, NULL), + (4715, 13169, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Devourer of Souls kills (Forge of Souls)', 'Devourer of Souls', NULL, NULL), + (4716, 13168, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Devourer of Souls kills (Heroic Forge of Souls)', 'Devourer of Souls', NULL, NULL), + (4717, 13170, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Forgemaster Garfrost kills (Pit of Saron)', 'Forgemaster Garfrost', NULL, NULL), + (4718, 13172, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Ick and Krick kills (Pit of Saron)', 'Ick and Krick', NULL, NULL), + (4719, 13173, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Ick and Krick kills (Heroic Pit of Saron)', 'Ick and Krick', NULL, NULL), + (4720, 13174, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Scourgelord Tyrannus kills (Pit of Saron)', 'Scourgelord Tyrannus and Rimefang', NULL, NULL), + (4721, 13175, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Scourgelord Tyrannus kills (Heroic Pit of Saron)', 'Scourgelord Tyrannus and Rimefang', NULL, NULL), + (4722, 13176, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Falric kills (Halls of Reflection)', 'Falric', NULL, NULL), + (4723, 13177, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Falric kills (Heroic Halls of Reflection)', 'Falric', NULL, NULL), + (4724, 13178, 1, 15062, 14807, 1, 80, 71, 76, NULL, 0, 'Marwyn kills (Halls of Reflection)', 'Marwyn', NULL, NULL), + (4725, 13179, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Marwyn kills (Heroic Halls of Reflection)', 'Marwyn', NULL, NULL), + (4726, 13180, 1, 15062, 14807, 1, 80, 71, 76, 'ICC - Lich King', 0, 'Lich King escapes (Halls of Reflection)', 'Survive the encounter with the Lich King', NULL, NULL), + (4727, 13181, 1, 15062, 14807, 1, 80, 80, 80, 'ICC - Lich King', 0, 'Lich King escapes (Heroic Halls of Reflection)', 'Survive the encounter with the Lich King', NULL, NULL), + (4728, 13182, 1, 15062, 14807, 1, 80, 80, 80, NULL, 0, 'Forgemaster Garfrost kills (Heroic Pit of Saron)', 'Forgemaster Garfrost', NULL, NULL), + (4729, 13183, 1, 130, 1, 1, 80, 1, 1, NULL, 0, 'Emblems of Triumph acquired', 'Emblems of Triumph acquired ', NULL, NULL), + (4730, 13184, 1, 130, 1, 1, 80, 1, 1, NULL, 0, 'Emblems of Frost acquired', 'Emblems of Frost acquired ', NULL, NULL), + (4777, 13255, 1, 137, 128, 1, 80, 1, 1, NULL, 0, 'Isle of Conquest Killing Blows', 'Isle of Conquest Killing Blows', NULL, NULL), + (4778, 13258, 1, 191, 130, 1, 80, 1, 1, NULL, 0, 'Disenchant rolls made on loot', 'Disenchant rolls made on loot', NULL, NULL), + (4779, 13261, 1, 136, 128, 1, 80, 1, 1, NULL, 0, 'Isle of Conquest Honorable Kills', 'Isle of Conquest Honorable Kills', NULL, NULL), + (4780, 13306, 1, 125, 122, 1, 80, 1, 1, NULL, 0, 'Deaths in Trial of the Crusader', 'Deaths in Trial of the Crusader', NULL, NULL), + (4781, 13307, 1, 125, 122, 1, 80, 1, 1, NULL, 0, 'Deaths in Icecrown Citadel', 'Deaths in Icecrown Citadel', NULL, NULL), + (4782, 13372, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Green Brewfest Stein', 'Green Brewfest Stein', NULL, NULL), + (4782, 13373, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Green Brewfest Stein', 'Filled Green Brewfest Stein', NULL, NULL), + (4782, 13374, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Green Brewfest Stein', 'Filled Green Brewfest Stein', NULL, NULL), + (4782, 13375, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Green Brewfest Stein', 'Filled Green Brewfest Stein', NULL, NULL), + (4782, 13376, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Green Brewfest Stein', 'Filled Green Brewfest Stein', NULL, NULL), + (4782, 13377, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Green Brewfest Stein', 'Filled Green Brewfest Stein', NULL, NULL), + (4784, 13379, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Emblematic', '', NULL, NULL), + (4784, 13380, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Emblematic', '', NULL, NULL), + (4784, 13381, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Emblematic', '', NULL, NULL), + (4784, 13382, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Emblematic', '', NULL, NULL), + (4784, 13383, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Emblematic', '', NULL, NULL), + (4785, 13384, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Emblematic', '', NULL, NULL), + (4785, 13385, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Emblematic', '', NULL, NULL), + (4785, 13386, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Emblematic', '', NULL, NULL), + (4785, 13387, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Emblematic', '', NULL, NULL), + (4785, 13388, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Emblematic', '', NULL, NULL), + (4786, 13389, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Operation: Gnomeregan', '', NULL, NULL), + (4790, 13421, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Zalazane\'s Fall', '', NULL, NULL), + (4815, 13451, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'The Twilight Destroyer (25 player)', 'Halion', NULL, NULL), + (4816, 13452, 10, 14923, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Twilight Destroyer (25 player)', 'Halion', NULL, NULL), + (4817, 13453, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'The Twilight Destroyer (10 player)', 'Halion', NULL, NULL), + (4818, 13454, 10, 14922, 168, 1, 80, 1, 1, NULL, 10, 'Heroic: The Twilight Destroyer (10 player)', 'Halion', NULL, NULL), + (4820, 13465, 2, 15062, 14807, 4, 80, 71, 76, 'Ruby Sanctum', 0, 'Halion kills (Ruby Sanctum 25 player)', 'Halion', NULL, NULL), + (4821, 13466, 2, 15062, 14807, 4, 80, 71, 76, 'Ruby Sanctum', 0, 'Halion kills (Ruby Sanctum 10 player)', 'Halion', NULL, NULL), + (4822, 13468, 1, 15062, 14807, 6, 80, 80, 80, 'Ruby Sanctum', 0, 'Halion kills (Heroic Ruby Sanctum 10 player)', 'Halion', NULL, NULL), + (4823, 13467, 1, 15062, 14807, 6, 80, 80, 80, 'Ruby Sanctum', 0, 'Halion kills (Heroic Ruby Sanctum 25 player)', 'Halion', NULL, NULL), + (4824, 13469, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Mini Thor', '', NULL, NULL), + (4824, 13470, 1, 81, -1, 1, 80, 1, 1, NULL, 0, 'Collector\'s Edition: Mini Thor', 'Frosty', NULL, NULL), + (10001, 100001, 1, 14821, 14807, 1, 21, 10, 15, NULL, NULL, 'Ragefire Chasm', 'Boh', 37711, 1); +/*!40000 ALTER TABLE `azth_achievements` ENABLE KEYS */; + +/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; +/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; diff --git a/data/sql/db-characters/bonus_rating.sql b/data/sql/db-characters/bonus_rating.sql new file mode 100644 index 0000000..9ad9849 --- /dev/null +++ b/data/sql/db-characters/bonus_rating.sql @@ -0,0 +1,20 @@ +DROP TABLE IF EXISTS `rating_bonuses`; +CREATE TABLE `rating_bonuses` ( + `id` INT(10) NOT NULL, + `type` INT(10) NOT NULL COMMENT '2 = 2v2, 3 = 3v3, 5 = 5v5, 1 = 1v1', + `day` INT(10) DEFAULT '0' COMMENT '0 to 6, 0 = sunday', + `startHour` INT(10) DEFAULT '12' COMMENT '0 to 23', + `endHour` INT(10) DEFAULT '12' COMMENT '0 to 23', + `multiplier` INT(10) DEFAULT '2', + PRIMARY KEY (`id`) +); + +-- domenica, dalle 21 alle 23 bonus 3x alle 5v5 +INSERT INTO `rating_bonuses` VALUES (1, 5, 0, 21, 23, 3); +-- domenica, dalle 15 alle 17 bonus 3x alle 3v3 +INSERT INTO `rating_bonuses` VALUES (2, 3, 0, 15, 17, 3); + +-- giovedì, dalle 21 alle 23 bonus 3x alle 3v3 +INSERT INTO `rating_bonuses` VALUES (3, 3, 4, 21, 23, 3); +-- giovedì, dalle 21 alle 23 bonus 3x alle 5v5 +INSERT INTO `rating_bonuses` VALUES (4, 5, 4, 15, 17, 3); \ No newline at end of file diff --git a/data/sql/db-characters/buy_log.sql b/data/sql/db-characters/buy_log.sql new file mode 100644 index 0000000..74f3b8d --- /dev/null +++ b/data/sql/db-characters/buy_log.sql @@ -0,0 +1,7 @@ +create table `buy_log` ( + `playerGuid` bigint (10), + `item` int (10), + `vendor` bigint (10), + `price` bigint (10), + `date` timestamp +); diff --git a/data/sql/db-characters/characters_saved_position.sql b/data/sql/db-characters/characters_saved_position.sql new file mode 100644 index 0000000..d4f1502 --- /dev/null +++ b/data/sql/db-characters/characters_saved_position.sql @@ -0,0 +1,12 @@ +DROP TABLE IF EXISTS `character_saved_position`; +CREATE TABLE `character_saved_position`( + `charGuid` INT(10) NOT NULL, + `type` INT(10) NOT NULL, + `posX` FLOAT(10) NOT NULL, + `posY` FLOAT(10) NOT NULL, + `posZ` FLOAT(10) NOT NULL, + `mapId` FLOAT(10) NOT NULL +); + +ALTER TABLE `character_saved_position` + ADD CONSTRAINT `character_saved_position` UNIQUE(`charGuid`, `type`); \ No newline at end of file diff --git a/data/sql/db-characters/characters_smartstone_commands.sql b/data/sql/db-characters/characters_smartstone_commands.sql new file mode 100644 index 0000000..0e9d5fc --- /dev/null +++ b/data/sql/db-characters/characters_smartstone_commands.sql @@ -0,0 +1,9 @@ +DROP TABLE IF EXISTS `character_smartstone_commands`; +CREATE TABLE `character_smartstone_commands` +( `playerGuid` INT(10) NOT NULL COMMENT 'player guid', +`command` INT(10) NOT NULL COMMENT 'player command id', + `dateExpired` BIGINT(10) NOT NULL DEFAULT '0', + `charges` INT(10) NOT NULL DEFAULT '-1'); + +ALTER TABLE `character_smartstone_commands` + ADD CONSTRAINT `character_smartstone_commands` UNIQUE(playerGuid, command); \ No newline at end of file diff --git a/data/sql/db-characters/characters_xp_rate.sql b/data/sql/db-characters/characters_xp_rate.sql new file mode 100644 index 0000000..2e7194b --- /dev/null +++ b/data/sql/db-characters/characters_xp_rate.sql @@ -0,0 +1,5 @@ +CREATE TABLE `character_xp_rate` ( + `guid` int(10) UNSIGNED NOT NULL, + `xp_rate` float UNSIGNED NOT NULL DEFAULT '1', + PRIMARY KEY (`guid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player XP Rate System'; \ No newline at end of file diff --git a/data/sql/db-characters/extra_smartstone_commands.sql b/data/sql/db-characters/extra_smartstone_commands.sql new file mode 100644 index 0000000..44e2b22 --- /dev/null +++ b/data/sql/db-characters/extra_smartstone_commands.sql @@ -0,0 +1,32 @@ +DROP TABLE IF EXISTS `smartstone_commands`; +CREATE TABLE `smartstone_commands` ( + `id` INT(10) NOT NULL COMMENT 'command id', + `text` TEXT NOT NULL COMMENT 'text that will be shown to the player', + `item` INT(10) DEFAULT NULL COMMENT 'item that will provide this command', + `icon` INT(10) DEFAULT NULL COMMENT 'icon id for the command', + `parent_menu` INT(10) DEFAULT NULL COMMENT 'menu that will contain the command', + `type` INT(10) DEFAULT '1' COMMENT 'type of command', + `action` INT(10) DEFAULT NULL COMMENT 'based on type', + `charges` INT(10) DEFAULT '-1' COMMENT 'number of times it can be used', + `duration` INT(10) DEFAULT '0' COMMENT 'duration in minutes', + `comment` TEXT COMMENT 'description of the command', + PRIMARY KEY (`id`), + UNIQUE KEY `item` (`item`) +); + +DELETE FROM `smartstone_commands`; +INSERT INTO `smartstone_commands` (id, `text`, item, icon, parent_menu, `type`, `action`, charges, duration, `comment`) VALUES +(1, "Teletrasportami al Mercato Nero", NULL, 2, 1, 1, 0, -1, 0, "Teletrasporto al Mercato Nero"), +(2, "Change Faction", 987890, 0, 2, 1, 0, 1, 0, "Change Faction 1 charge"), +(3, "Rename", 987891, 0, 2, 1, 0, 1, 0, "Rename character 1 charge"), +(4, "Menù character", NULL, 1, 1, 2, 2, -1, 0, "submenu character"), +(5, "Change Race", 987892, 0, 2, 1, 0, 1, 0, "Change character race 1 charge"), +(6, "Jukebox!", 987893, 6, 1, 1, 0, 1, 0, "summon jukebox"), +(7, "Herbalism", 987894, 0, 3, 1, 0, -1, 0, "bonus loot herbalism"), +(8, "Mining", 987895, 0, 3, 1, 0, -1, 0, "bonus loot mining"), +(9, "Bonus passivi", NULL, 1, 1, 2, 3, -1, 0, "submenu for passive bonuses"); + +-- new commands +DELETE FROM smartstone_commands WHERE id IN(10,11); +INSERT INTO smartstone_commands VALUES (10, "Max Skill", NULL,9, 2, 1, 0, -1, 0, "Max Skill Command"); +INSERT INTO smartstone_commands VALUES (11, "Modifica xp rate", NULL,4, 2, 3, 0, -1, 0, "Azth xp command"); diff --git a/data/sql/db-characters/gh_char.sql b/data/sql/db-characters/gh_char.sql new file mode 100644 index 0000000..bc17553 --- /dev/null +++ b/data/sql/db-characters/gh_char.sql @@ -0,0 +1,5 @@ +CREATE TABLE IF NOT EXISTS `gh_guildadd` ( + `guildId` int(11) unsigned NOT NULL, + `GuildHouse_Add` int(11) unsigned NOT NULL, + PRIMARY KEY (`guildId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; diff --git a/data/sql/db-characters/groups_maxLevelGroup.sql b/data/sql/db-characters/groups_maxLevelGroup.sql new file mode 100644 index 0000000..b386180 --- /dev/null +++ b/data/sql/db-characters/groups_maxLevelGroup.sql @@ -0,0 +1 @@ +ALTER TABLE `groups` ADD COLUMN `MaxlevelGroup` INT(10) UNSIGNED DEFAULT 0 NOT NULL AFTER `masterLooterGuid`; \ No newline at end of file diff --git a/data/sql/db-characters/guildhouses.sql b/data/sql/db-characters/guildhouses.sql new file mode 100644 index 0000000..31749b7 --- /dev/null +++ b/data/sql/db-characters/guildhouses.sql @@ -0,0 +1,13 @@ +CREATE TABLE `guildhouses` ( + `id` int(16) unsigned NOT NULL AUTO_INCREMENT, + `guildId` bigint(20) NOT NULL DEFAULT '0', + `x` double NOT NULL, + `y` double NOT NULL, + `z` double NOT NULL, + `map` int(16) NOT NULL, + `comment` varchar(255) NOT NULL DEFAULT '', + `price` bigint(20) NOT NULL DEFAULT '0', + `faction` int(8) unsigned NOT NULL DEFAULT '3', + `minguildsize` int(16) unsigned NOT NULL DEFAULT '1', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; diff --git a/data/sql/db-characters/hearthstone_criteria_credits.sql b/data/sql/db-characters/hearthstone_criteria_credits.sql new file mode 100644 index 0000000..79dea2f --- /dev/null +++ b/data/sql/db-characters/hearthstone_criteria_credits.sql @@ -0,0 +1,59 @@ +DROP TABLE IF EXISTS `hearthstone_criteria_credits`; +CREATE TABLE `hearthstone_criteria_credits`( + `type` INT(10) NOT NULL DEFAULT 0 COMMENT 'criteria type (column 3)', + `data0` INT(10) DEFAULT 0 COMMENT 'column 4', + `data1` INT(10) DEFAULT 0 COMMENT 'column 5', + `creature` BIGINT(10) DEFAULT 0 COMMENT 'linked creature', + `comment` TEXT +); + +-- honorable kill at area 31, areatable.db, count + +INSERT INTO `hearthstone_criteria_credits` (`type`, `data0`, `data1`, `creature`,`comment`) VALUES +-- Bg wins +(1, 30, 1, 110001, "Alterac Valley Victory"), +(1, 489, 1, 110002, "Warsong Gulch Victory"), +(1, 529, 1, 110003, "Arathi Basin Victory"), +(1, 566, 1, 110004, "Eye of the Storm Victory"), +(1, 607, 1, 110005, "Strand of the Ancients Victory"), +(1, 628, 1, 110006, "Isle of Conquest Victory"), +-- Bg Objectives +(30, 122, 1, 110007, "Arathi Basin Flag Capture "), +(30, 42, 1, 110008, "Warsong Gulch Flag Capture"), +(30, 44, 1, 110009, "Warsong Gulch Flag Recover"), +(30, 183, 1, 110010, "Eye of the Storm Flag Capture"), +(30, 63, 1, 110011, "Alterac Valley Graveyard Capture"), +(30, 64, 1, 110012, "Alterac Valley Tower Defense"), +(30, 61, 1, 110013, "Alterac Valley Tower Capture"), +(30, 123, 1, 110014, "Arathi Basin Base Defense"), +(30, 65, 1, 110015, "Alterac Valley Graveyard Capture"), -- need test!! not sure +(30, 245, 1, 110016, "Isle of Conquest Base Capture"), -- not sure, maybe this is defend +(30, 246, 1, 110017, "Isle of Conquest Base Defend"), -- not sure, maybe this is capture +-- Kill Class +(52, 1, 1, 110018, "Kill a Warrior"), +(52, 2, 1, 110019, "Kill a Paladin"), +(52, 3, 1, 110020, "Kill a Hunter"), +(52, 4, 1, 110021, "Kill a Rogue"), +(52, 5, 1, 110022, "Kill a Priest"), +(52, 6, 1, 110023, "Kill a Death Knight"), +(52, 7, 1, 110024, "Kill a Shaman"), +(52, 8, 1, 110025, "Kill a Mage"), +(52, 9, 1, 110026, "Kill a Warlock"), +(52, 11, 1, 110027, "Kill a Druid"), +-- Kill Race +(53, 1, 1, 110028, "Kill a Human"), +(53, 2, 1, 110029, "Kill an Orc"), +(53, 3, 1, 110030, "Kill a Dwarf"), +(53, 4, 1, 110031, "Kill a Night Elf"), +(53, 5, 1, 110032, "Kill an Undead"), +(53, 6, 1, 110033, "Kill a Tauren"), +(53, 7, 1, 110034, "Kill a Gnome"), +(53, 8, 1, 110035, "Kill a Troll"), +(53, 10, 1, 110036, "Kill a Blood Elf"), +(53, 11, 1, 110037, "Kill a Draenei"), +-- Get Kills +(56, 0, 1, 110038, "Get a Killing Blow"), +(113, 0, 1, 110039, "Earn Honorable Kill"), +-- Win Duel +(76, 0, 1, 110040, "Win Duel") +; \ No newline at end of file diff --git a/data/sql/db-characters/hearthstone_quests.sql b/data/sql/db-characters/hearthstone_quests.sql new file mode 100644 index 0000000..24e5a27 --- /dev/null +++ b/data/sql/db-characters/hearthstone_quests.sql @@ -0,0 +1,20 @@ +DROP TABLE IF EXISTS `hearthstone_quests`; +CREATE TABLE `hearthstone_quests`( + `id` BIGINT(10) NOT NULL, + `flag` INT(10) DEFAULT 0, -- 1 pve, 2 pvp + PRIMARY KEY (`id`) +); + +-- pve quests +DELETE FROM hearthstone_quests WHERE id >= 100000 AND id <= 100080; +INSERT INTO hearthstone_quests (id) VALUES +(100000),(100001),(100002),(100003),(100004),(100005),(100006),(100007),(100008),(100009),(100010),(100011),(100012),(100013),(100014),(100015),(100016),(100017),(100018),(100019),(100020),(100021),(100022),(100023),(100024),(100025),(100026),(100027),(100028),(100029),(100030),(100031),(100032),(100033),(100034),(100035),(100036),(100037),(100038),(100039),(100040),(100041),(100042),(100043),(100044),(100045),(100046),(100047),(100048),(100049),(100050),(100051),(100052),(100053),(100054),(100055),(100056),(100057),(100058),(100059),(100060),(100061),(100062),(100063),(100064),(100065),(100066),(100067),(100068),(100069),(100070),(100071),(100072),(100073),(100074),(100075),(100076),(100077),(100078),(100079),(100080); + +UPDATE hearthstone_quests SET flag = 1 WHERE id >= 100000 AND id <= 100080; + +-- pvp quests +DELETE FROM hearthstone_quests WHERE id >= 110040 AND id <= 110095; +INSERT INTO hearthstone_quests (id) VALUES +(110040),(110041),(110042),(110043),(110044),(110045),(110046),(110047),(110048),(110049),(110050),(110051),(110052),(110053),(110054),(110055),(110056),(110057),(110058),(110059),(110060),(110061),(110062),(110063),(110064),(110065),(110066),(110067),(110068),(110069),(110070),(110071),(110072),(110073),(110074),(110075),(110076),(110077),(110078),(110079),(110080),(110081),(110082),(110083),(110084),(110085),(110086),(110087),(110088),(110089),(110090),(110091),(110092),(110093),(110094),(110095); + +UPDATE hearthstone_quests SET flag = 2 WHERE id >= 110040 AND id <= 110095; \ No newline at end of file diff --git a/data/sql/db-characters/mail_external.sql b/data/sql/db-characters/mail_external.sql new file mode 100644 index 0000000..80ce487 --- /dev/null +++ b/data/sql/db-characters/mail_external.sql @@ -0,0 +1,12 @@ + +CREATE TABLE IF NOT EXISTS `mail_external` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `receiver` int(10) unsigned NOT NULL, + `subject` varchar(200) DEFAULT 'Support Message', + `message` varchar(400) DEFAULT NULL, + `money` int(10) unsigned NOT NULL DEFAULT '0', + `item` int(10) unsigned NOT NULL DEFAULT '0', + `item_count` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=MyISAM AUTO_INCREMENT=61578 DEFAULT CHARSET=utf8; + diff --git a/data/sql/db-characters/pve_stats.sql b/data/sql/db-characters/pve_stats.sql new file mode 100644 index 0000000..3af8d81 --- /dev/null +++ b/data/sql/db-characters/pve_stats.sql @@ -0,0 +1,12 @@ +CREATE TABLE IF NOT EXISTS azth_achievement_stats ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `playerGuid` int(10) unsigned NOT NULL DEFAULT '0', + `achievement` int(10) unsigned NOT NULL DEFAULT '0', + `type` int(8) unsigned NOT NULL DEFAULT '0' COMMENT '0 -> achievement, 1 -> criteria', + `level` int(10) unsigned NOT NULL DEFAULT '0', + `levelParty` int(10) unsigned DEFAULT '0', + `date` int(10) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + diff --git a/data/sql/db-characters/pvpMode.sql b/data/sql/db-characters/pvpMode.sql new file mode 100644 index 0000000..8282336 --- /dev/null +++ b/data/sql/db-characters/pvpMode.sql @@ -0,0 +1,9 @@ +CREATE TABLE IF NOT EXISTS `pvp_accounts` ( + `id` int(11) DEFAULT NULL, + `isPvP` int(11) DEFAULT '1' +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `pvp_characters` ( + `id` int(11) DEFAULT NULL, + `isPvP` int(11) DEFAULT '1' +) ENGINE=InnoDB DEFAULT CHARSET=utf8; diff --git a/data/sql/db-characters/table_azth_character_morph.sql b/data/sql/db-characters/table_azth_character_morph.sql new file mode 100644 index 0000000..eb82a0d --- /dev/null +++ b/data/sql/db-characters/table_azth_character_morph.sql @@ -0,0 +1,9 @@ +DROP TABLE IF EXISTS `azth_character_morph`; +CREATE TABLE `azth_character_morph`( + `guid` INT NOT NULL, + `entry` INT NOT NULL, + `name` TEXT, + `comment` TEXT +); +ALTER TABLE `azth_character_morph` + ADD CONSTRAINT `azth_character_morph` UNIQUE(guid, entry); \ No newline at end of file diff --git a/data/sql/db-characters/timewalking.sql b/data/sql/db-characters/timewalking.sql new file mode 100644 index 0000000..f6ef27f --- /dev/null +++ b/data/sql/db-characters/timewalking.sql @@ -0,0 +1,5047 @@ +-- -------------------------------------------------------- +-- Host: 127.0.0.1 +-- Versione server: 5.6.34-log - MySQL Community Server (GPL) +-- S.O. server: Win64 +-- HeidiSQL Versione: 9.4.0.5125 +-- -------------------------------------------------------- + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8 */; +/*!50503 SET NAMES utf8mb4 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; + +-- Dump della struttura di tabella extra.timewalking +CREATE TABLE IF NOT EXISTS `timewalking` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(50) NOT NULL DEFAULT '0', + `exp` int(11) NOT NULL DEFAULT '0', + `phase` int(3) NOT NULL DEFAULT '0', + `level` int(11) NOT NULL DEFAULT '0', + `bonus` int(1) NOT NULL DEFAULT '0', + `criteria` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; + +-- Dump dei dati della tabella extra.timewalking: ~14 rows (circa) +DELETE FROM `timewalking`; +/*!40000 ALTER TABLE `timewalking` DISABLE KEYS */; +INSERT INTO `timewalking` (`id`, `name`, `exp`, `phase`, `level`, `bonus`, `criteria`) VALUES + (1, 'Ragefire Chasm', 1, 1, 10, 1, NULL), + (2, 'Deadmines', 1, 1, 10, 0, NULL), + (3, 'Blackfathom Deeps', 1, 2, 15, 0, NULL), + (4, 'The Stockade', 1, 2, 15, 0, NULL), + (5, 'Razorfen Kraul', 1, 3, 25, 1, NULL), + (6, 'Uldaman', 1, 4, 30, 0, NULL), + (7, 'Razorfen Downs', 1, 5, 35, 0, NULL), + (8, 'Blackrock Depths: Detention Block', 1, 6, 42, 0, NULL), + (9, 'Lower Blackrock Spire', 1, 7, 48, 0, NULL), + (10, 'Molten Core', 1, 8, 50, 0, NULL), + (11, 'Hellfire Citadel: Hellfire Ramparts', 2, 9, 57, 1, NULL), + (12, 'Coilfang Reservoir: The Steamvault', 2, 10, 65, 0, NULL), + (13, 'Coilfang Reservoir: Serpentshrine Cavern', 2, 11, 70, 0, NULL), + (14, 'Onyxia\'s Lair', 3, 12, 80, 0, NULL); +/*!40000 ALTER TABLE `timewalking` ENABLE KEYS */; + +-- Dump della struttura di tabella extra.timewalking_characters_active +CREATE TABLE IF NOT EXISTS `timewalking_characters_active` ( + `id` int(11) NOT NULL, + `level` int(11) NOT NULL, + `spec` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- Dump dei dati della tabella extra.timewalking_characters_active: ~4 rows (circa) +DELETE FROM `timewalking_characters_active`; +/*!40000 ALTER TABLE `timewalking_characters_active` DISABLE KEYS */; +INSERT INTO `timewalking_characters_active` (`id`, `level`, `spec`) VALUES + (8, 10, NULL), + (11, 10, 1), + (12, 3, NULL), + (13, 10, NULL); +/*!40000 ALTER TABLE `timewalking_characters_active` ENABLE KEYS */; + +-- Dump della struttura di tabella extra.timewalking_levels +CREATE TABLE IF NOT EXISTS `timewalking_levels` ( + `level` int(11) NOT NULL AUTO_INCREMENT, + `race` int(11) NOT NULL DEFAULT '0', + `class` int(11) NOT NULL DEFAULT '0', + `strength_pct` int(11) NOT NULL DEFAULT '0', + `agility_pct` int(11) NOT NULL DEFAULT '0', + `stamina_pct` int(11) NOT NULL DEFAULT '0', + `intellect_pct` int(11) NOT NULL DEFAULT '0', + `spirit_pct` int(11) NOT NULL DEFAULT '0', + `damage_pct` int(11) NOT NULL DEFAULT '0', + `heal_pct` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`level`,`race`,`class`) +) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8; + +-- Dump dei dati della tabella extra.timewalking_levels: ~4.960 rows (circa) +DELETE FROM `timewalking_levels`; +/*!40000 ALTER TABLE `timewalking_levels` DISABLE KEYS */; +INSERT INTO `timewalking_levels` (`level`, `race`, `class`, `strength_pct`, `agility_pct`, `stamina_pct`, `intellect_pct`, `spirit_pct`, `damage_pct`, `heal_pct`) VALUES + (1, 1, 1, 88, 83, 87, 45, 67, 89, 89), + (1, 1, 2, 88, 78, 87, 80, 81, 99, 99), + (1, 1, 4, 82, 88, 81, 54, 72, 90, 90), + (1, 1, 5, 54, 61, 71, 88, 88, 87, 87), + (1, 1, 6, 88, 83, 87, 43, 67, 89, 89), + (1, 1, 8, 45, 54, 67, 88, 88, 83, 83), + (1, 1, 9, 67, 71, 79, 87, 88, 93, 93), + (1, 2, 1, 87, 85, 86, 49, 63, 89, 89), + (1, 2, 3, 71, 89, 83, 81, 76, 95, 95), + (1, 2, 4, 80, 90, 79, 58, 68, 90, 90), + (1, 2, 6, 87, 85, 86, 47, 63, 89, 89), + (1, 2, 7, 81, 77, 84, 87, 83, 97, 97), + (1, 2, 9, 63, 74, 77, 88, 86, 93, 93), + (1, 3, 1, 87, 86, 86, 46, 68, 90, 90), + (1, 3, 2, 87, 82, 83, 81, 81, 98, 98), + (1, 3, 3, 72, 90, 82, 79, 80, 95, 95), + (1, 3, 4, 80, 90, 78, 55, 72, 90, 90), + (1, 3, 5, 52, 66, 68, 88, 89, 88, 88), + (1, 3, 6, 87, 86, 85, 45, 68, 89, 89), + (1, 4, 1, 89, 79, 88, 45, 67, 89, 89), + (1, 4, 3, 77, 86, 85, 79, 79, 96, 96), + (1, 4, 4, 84, 86, 81, 54, 71, 90, 90), + (1, 4, 5, 58, 56, 72, 89, 88, 88, 88), + (1, 4, 6, 89, 79, 87, 43, 67, 88, 88), + (1, 4, 11, 80, 72, 81, 85, 87, 96, 96), + (1, 5, 1, 88, 84, 86, 48, 61, 88, 88), + (1, 5, 4, 83, 89, 80, 57, 66, 90, 90), + (1, 5, 5, 55, 64, 70, 89, 85, 88, 88), + (1, 5, 6, 88, 84, 86, 46, 61, 88, 88), + (1, 5, 8, 46, 57, 65, 89, 85, 83, 83), + (1, 5, 9, 68, 73, 78, 88, 85, 93, 93), + (1, 6, 1, 85, 87, 86, 52, 64, 90, 90), + (1, 6, 3, 69, 91, 83, 83, 77, 96, 96), + (1, 6, 6, 85, 86, 86, 50, 64, 89, 89), + (1, 6, 7, 80, 79, 84, 89, 84, 98, 98), + (1, 6, 11, 73, 81, 78, 88, 88, 97, 97), + (1, 7, 1, 90, 81, 88, 40, 67, 88, 88), + (1, 7, 4, 86, 87, 82, 50, 71, 90, 90), + (1, 7, 6, 90, 80, 88, 39, 67, 88, 88), + (1, 7, 8, 52, 50, 68, 87, 88, 84, 84), + (1, 7, 9, 73, 68, 80, 85, 87, 93, 93), + (1, 8, 1, 88, 81, 87, 50, 65, 89, 89), + (1, 8, 3, 72, 87, 83, 83, 78, 96, 96), + (1, 8, 4, 81, 87, 80, 59, 70, 91, 91), + (1, 8, 5, 53, 59, 70, 90, 87, 87, 87), + (1, 8, 6, 87, 81, 86, 49, 65, 89, 89), + (1, 8, 7, 82, 72, 84, 88, 85, 97, 97), + (1, 8, 8, 44, 52, 65, 90, 87, 83, 83), + (1, 10, 2, 88, 77, 86, 77, 81, 97, 97), + (1, 10, 3, 77, 87, 85, 75, 80, 96, 96), + (1, 10, 4, 84, 87, 82, 49, 72, 90, 90), + (1, 10, 5, 58, 59, 71, 86, 88, 87, 87), + (1, 10, 6, 90, 80, 87, 39, 66, 88, 88), + (1, 10, 8, 49, 52, 67, 86, 88, 83, 83), + (1, 10, 9, 70, 69, 79, 85, 88, 93, 93), + (1, 11, 1, 88, 85, 88, 44, 64, 89, 89), + (1, 11, 2, 85, 81, 86, 82, 79, 98, 98), + (1, 11, 3, 72, 89, 85, 77, 77, 95, 95), + (1, 11, 5, 53, 65, 72, 87, 87, 88, 88), + (1, 11, 6, 87, 85, 87, 42, 64, 88, 88), + (1, 11, 7, 82, 77, 86, 85, 84, 98, 98), + (1, 11, 8, 44, 58, 68, 87, 87, 84, 84), + (2, 1, 1, 87, 82, 87, 45, 67, 89, 89), + (2, 1, 2, 87, 77, 86, 79, 80, 98, 98), + (2, 1, 4, 81, 88, 80, 54, 72, 90, 90), + (2, 1, 5, 54, 61, 71, 87, 88, 87, 87), + (2, 1, 6, 87, 82, 86, 43, 67, 88, 88), + (2, 1, 8, 45, 54, 67, 87, 88, 83, 83), + (2, 1, 9, 67, 71, 78, 86, 87, 93, 93), + (2, 2, 1, 86, 84, 86, 49, 63, 89, 89), + (2, 2, 3, 71, 89, 82, 80, 75, 94, 94), + (2, 2, 4, 79, 89, 78, 58, 68, 89, 89), + (2, 2, 6, 87, 84, 86, 47, 63, 88, 88), + (2, 2, 7, 80, 77, 83, 87, 83, 97, 97), + (2, 2, 9, 63, 74, 76, 88, 85, 92, 92), + (2, 3, 1, 87, 85, 85, 46, 68, 89, 89), + (2, 3, 2, 86, 81, 83, 80, 80, 97, 97), + (2, 3, 3, 72, 89, 81, 78, 79, 95, 95), + (2, 3, 4, 80, 90, 77, 55, 72, 90, 90), + (2, 3, 5, 52, 66, 68, 88, 88, 87, 87), + (2, 3, 6, 86, 85, 85, 45, 68, 89, 89), + (2, 4, 1, 89, 78, 87, 45, 67, 88, 88), + (2, 4, 3, 77, 85, 84, 78, 78, 95, 95), + (2, 4, 4, 83, 86, 80, 54, 71, 90, 90), + (2, 4, 5, 58, 56, 72, 89, 88, 88, 88), + (2, 4, 6, 89, 78, 87, 43, 67, 88, 88), + (2, 4, 11, 78, 72, 80, 84, 86, 95, 95), + (2, 5, 1, 87, 83, 85, 48, 61, 88, 88), + (2, 5, 4, 82, 89, 79, 57, 66, 89, 89), + (2, 5, 5, 55, 64, 70, 88, 85, 87, 87), + (2, 5, 6, 87, 83, 86, 46, 61, 88, 88), + (2, 5, 8, 46, 57, 65, 88, 85, 83, 83), + (2, 5, 9, 68, 73, 77, 87, 84, 93, 93), + (2, 6, 1, 84, 86, 86, 52, 64, 89, 89), + (2, 6, 3, 69, 90, 82, 82, 76, 95, 95), + (2, 6, 6, 85, 86, 85, 50, 64, 89, 89), + (2, 6, 7, 79, 79, 83, 88, 83, 97, 97), + (2, 6, 11, 72, 80, 77, 87, 87, 96, 96), + (2, 7, 1, 90, 80, 87, 40, 67, 88, 88), + (2, 7, 4, 85, 86, 81, 50, 71, 90, 90), + (2, 7, 6, 89, 80, 87, 39, 67, 87, 87), + (2, 7, 8, 52, 50, 68, 86, 87, 84, 84), + (2, 7, 9, 73, 68, 79, 85, 87, 93, 93), + (2, 8, 1, 87, 80, 86, 50, 65, 89, 89), + (2, 8, 3, 72, 87, 83, 81, 77, 95, 95), + (2, 8, 4, 80, 87, 80, 59, 70, 90, 90), + (2, 8, 5, 53, 59, 70, 89, 87, 86, 86), + (2, 8, 6, 87, 80, 86, 49, 65, 88, 88), + (2, 8, 7, 81, 72, 84, 87, 84, 97, 97), + (2, 8, 8, 44, 52, 65, 89, 87, 82, 82), + (2, 10, 2, 87, 75, 85, 76, 80, 96, 96), + (2, 10, 3, 77, 86, 84, 74, 79, 95, 95), + (2, 10, 4, 83, 87, 81, 49, 72, 89, 89), + (2, 10, 5, 58, 59, 71, 85, 88, 87, 87), + (2, 10, 6, 89, 79, 87, 39, 66, 87, 87), + (2, 10, 8, 49, 52, 67, 85, 88, 83, 83), + (2, 10, 9, 70, 69, 78, 84, 87, 93, 93), + (2, 11, 1, 87, 84, 87, 44, 64, 88, 88), + (2, 11, 2, 85, 80, 85, 81, 78, 97, 97), + (2, 11, 3, 72, 89, 84, 76, 76, 95, 95), + (2, 11, 5, 53, 65, 72, 87, 86, 88, 88), + (2, 11, 6, 86, 84, 87, 42, 64, 88, 88), + (2, 11, 7, 81, 77, 85, 84, 83, 97, 97), + (2, 11, 8, 44, 58, 68, 87, 86, 84, 84), + (3, 1, 1, 86, 81, 86, 45, 65, 88, 88), + (3, 1, 2, 87, 77, 85, 79, 80, 97, 97), + (3, 1, 4, 80, 87, 80, 54, 70, 89, 89), + (3, 1, 5, 54, 61, 69, 86, 87, 86, 86), + (3, 1, 6, 86, 81, 85, 43, 65, 87, 87), + (3, 1, 8, 45, 54, 65, 86, 87, 82, 82), + (3, 1, 9, 65, 69, 78, 85, 86, 92, 92), + (3, 2, 1, 85, 83, 85, 49, 62, 88, 88), + (3, 2, 3, 69, 88, 81, 80, 75, 94, 94), + (3, 2, 4, 79, 88, 78, 58, 66, 89, 89), + (3, 2, 6, 86, 83, 85, 47, 62, 88, 88), + (3, 2, 7, 79, 75, 82, 86, 82, 96, 96), + (3, 2, 9, 62, 72, 76, 87, 85, 91, 91), + (3, 3, 1, 85, 84, 85, 46, 66, 88, 88), + (3, 3, 2, 86, 81, 82, 80, 80, 97, 97), + (3, 3, 3, 70, 88, 81, 78, 79, 94, 94), + (3, 3, 4, 80, 89, 77, 55, 70, 89, 89), + (3, 3, 5, 52, 66, 66, 87, 87, 87, 87), + (3, 3, 6, 85, 84, 84, 45, 66, 88, 88), + (3, 4, 1, 88, 78, 87, 45, 65, 87, 87), + (3, 4, 3, 75, 84, 83, 78, 78, 95, 95), + (3, 4, 4, 82, 85, 80, 54, 69, 89, 89), + (3, 4, 5, 58, 56, 70, 88, 87, 87, 87), + (3, 4, 6, 88, 77, 86, 43, 65, 87, 87), + (3, 4, 11, 78, 71, 80, 84, 85, 95, 95), + (3, 5, 1, 86, 82, 85, 48, 60, 87, 87), + (3, 5, 4, 81, 88, 79, 57, 64, 89, 89), + (3, 5, 5, 55, 64, 68, 87, 84, 87, 87), + (3, 5, 6, 86, 82, 85, 46, 60, 87, 87), + (3, 5, 8, 46, 57, 64, 87, 84, 82, 82), + (3, 5, 9, 66, 71, 77, 86, 84, 92, 92), + (3, 6, 1, 83, 85, 85, 52, 63, 89, 89), + (3, 6, 3, 68, 89, 81, 82, 76, 94, 94), + (3, 6, 6, 84, 85, 84, 50, 63, 88, 88), + (3, 6, 7, 78, 77, 82, 87, 83, 97, 97), + (3, 6, 11, 72, 80, 77, 87, 86, 95, 95), + (3, 7, 1, 88, 79, 86, 40, 65, 87, 87), + (3, 7, 4, 84, 85, 81, 50, 69, 89, 89), + (3, 7, 6, 88, 79, 87, 39, 65, 87, 87), + (3, 7, 8, 52, 50, 66, 85, 86, 83, 83), + (3, 7, 9, 71, 66, 79, 84, 86, 92, 92), + (3, 8, 1, 86, 80, 86, 50, 64, 88, 88), + (3, 8, 3, 71, 86, 82, 81, 77, 94, 94), + (3, 8, 4, 79, 86, 80, 59, 68, 90, 90), + (3, 8, 5, 53, 59, 68, 88, 86, 86, 86), + (3, 8, 6, 86, 79, 85, 49, 64, 88, 88), + (3, 8, 7, 81, 70, 83, 87, 83, 96, 96), + (3, 8, 8, 44, 52, 64, 88, 86, 82, 82), + (3, 10, 2, 86, 75, 84, 76, 80, 95, 95), + (3, 10, 3, 75, 85, 83, 74, 79, 94, 94), + (3, 10, 4, 82, 86, 81, 49, 70, 89, 89), + (3, 10, 5, 58, 59, 70, 84, 87, 87, 87), + (3, 10, 6, 88, 79, 86, 39, 64, 86, 86), + (3, 10, 8, 49, 52, 65, 84, 87, 82, 82), + (3, 10, 9, 68, 67, 78, 83, 87, 92, 92), + (3, 11, 1, 86, 83, 87, 44, 63, 87, 87), + (3, 11, 2, 84, 80, 84, 81, 78, 96, 96), + (3, 11, 3, 71, 88, 83, 76, 76, 94, 94), + (3, 11, 5, 53, 65, 70, 86, 85, 87, 87), + (3, 11, 6, 85, 83, 86, 42, 63, 87, 87), + (3, 11, 7, 81, 75, 84, 83, 83, 96, 96), + (3, 11, 8, 44, 58, 66, 86, 85, 83, 83), + (4, 1, 1, 86, 81, 85, 45, 65, 87, 87), + (4, 1, 2, 86, 76, 85, 78, 79, 96, 96), + (4, 1, 4, 80, 86, 79, 54, 70, 89, 89), + (4, 1, 5, 54, 59, 69, 86, 86, 86, 86), + (4, 1, 6, 85, 81, 84, 43, 65, 87, 87), + (4, 1, 8, 45, 54, 65, 86, 86, 82, 82), + (4, 1, 9, 65, 69, 77, 84, 86, 91, 91), + (4, 2, 1, 84, 83, 85, 49, 62, 88, 88), + (4, 2, 3, 69, 87, 80, 79, 74, 93, 93), + (4, 2, 4, 78, 88, 77, 58, 66, 88, 88), + (4, 2, 6, 85, 83, 85, 47, 62, 87, 87), + (4, 2, 7, 79, 75, 82, 85, 81, 96, 96), + (4, 2, 9, 62, 72, 75, 86, 84, 91, 91), + (4, 3, 1, 85, 84, 84, 46, 66, 88, 88), + (4, 3, 2, 85, 80, 81, 79, 79, 96, 96), + (4, 3, 3, 70, 88, 80, 77, 78, 93, 93), + (4, 3, 4, 79, 88, 76, 55, 70, 89, 89), + (4, 3, 5, 52, 64, 66, 86, 87, 86, 86), + (4, 3, 6, 85, 84, 83, 45, 66, 87, 87), + (4, 4, 1, 87, 78, 86, 45, 65, 87, 87), + (4, 4, 3, 75, 84, 82, 77, 77, 94, 94), + (4, 4, 4, 82, 84, 79, 54, 69, 89, 89), + (4, 4, 5, 58, 54, 70, 87, 86, 86, 86), + (4, 4, 6, 87, 77, 85, 43, 65, 86, 86), + (4, 4, 11, 77, 71, 79, 83, 84, 94, 94), + (4, 5, 1, 85, 82, 84, 48, 60, 87, 87), + (4, 5, 4, 81, 87, 78, 57, 64, 88, 88), + (4, 5, 5, 55, 62, 68, 87, 83, 86, 86), + (4, 5, 6, 86, 82, 84, 46, 60, 87, 87), + (4, 5, 8, 46, 57, 64, 87, 83, 82, 82), + (4, 5, 9, 66, 71, 76, 85, 83, 91, 91), + (4, 6, 1, 83, 85, 85, 52, 63, 88, 88), + (4, 6, 3, 68, 88, 80, 81, 75, 94, 94), + (4, 6, 6, 83, 85, 84, 50, 63, 88, 88), + (4, 6, 7, 78, 77, 82, 86, 82, 96, 96), + (4, 6, 11, 71, 78, 76, 86, 86, 95, 95), + (4, 7, 1, 88, 79, 85, 40, 65, 87, 87), + (4, 7, 4, 84, 85, 80, 50, 69, 89, 89), + (4, 7, 6, 88, 79, 86, 39, 65, 86, 86), + (4, 7, 8, 52, 50, 66, 84, 86, 83, 83), + (4, 7, 9, 71, 66, 78, 83, 85, 92, 92), + (4, 8, 1, 85, 80, 85, 50, 64, 88, 88), + (4, 8, 3, 71, 85, 81, 80, 76, 94, 94), + (4, 8, 4, 79, 85, 79, 59, 68, 89, 89), + (4, 8, 5, 53, 57, 68, 88, 85, 85, 85), + (4, 8, 6, 85, 79, 84, 49, 64, 87, 87), + (4, 8, 7, 80, 70, 82, 86, 82, 95, 95), + (4, 8, 8, 44, 52, 64, 88, 85, 81, 81), + (4, 10, 2, 86, 74, 83, 75, 79, 95, 95), + (4, 10, 3, 75, 85, 82, 73, 78, 93, 93), + (4, 10, 4, 82, 85, 80, 49, 70, 88, 88), + (4, 10, 5, 58, 57, 70, 84, 86, 86, 86), + (4, 10, 6, 88, 79, 85, 39, 64, 86, 86), + (4, 10, 8, 49, 52, 65, 84, 86, 82, 82), + (4, 10, 9, 68, 67, 77, 83, 86, 91, 91), + (4, 11, 1, 85, 83, 86, 44, 63, 87, 87), + (4, 11, 2, 83, 79, 84, 80, 77, 96, 96), + (4, 11, 3, 71, 87, 82, 75, 75, 93, 93), + (4, 11, 5, 53, 63, 70, 85, 85, 86, 86), + (4, 11, 6, 85, 83, 85, 42, 63, 86, 86), + (4, 11, 7, 80, 75, 83, 83, 82, 96, 96), + (4, 11, 8, 44, 58, 66, 85, 85, 82, 82), + (5, 1, 1, 85, 80, 84, 45, 65, 87, 87), + (5, 1, 2, 85, 76, 84, 77, 78, 95, 95), + (5, 1, 4, 79, 85, 78, 52, 70, 88, 88), + (5, 1, 5, 52, 59, 69, 85, 85, 85, 85), + (5, 1, 6, 85, 80, 84, 43, 65, 86, 86), + (5, 1, 8, 45, 52, 65, 85, 85, 81, 81), + (5, 1, 9, 65, 69, 77, 84, 85, 91, 91), + (5, 2, 1, 84, 82, 83, 49, 62, 87, 87), + (5, 2, 3, 68, 86, 80, 79, 74, 92, 92), + (5, 2, 4, 77, 87, 76, 55, 66, 87, 87), + (5, 2, 6, 85, 82, 84, 47, 62, 87, 87), + (5, 2, 7, 79, 74, 81, 84, 81, 95, 95), + (5, 2, 9, 62, 72, 75, 85, 83, 90, 90), + (5, 3, 1, 84, 83, 83, 46, 66, 88, 88), + (5, 3, 2, 84, 80, 81, 78, 78, 95, 95), + (5, 3, 3, 69, 86, 79, 77, 77, 93, 93), + (5, 3, 4, 78, 87, 75, 53, 70, 88, 88), + (5, 3, 5, 49, 64, 66, 85, 86, 85, 85), + (5, 3, 6, 84, 83, 82, 45, 66, 87, 87), + (5, 4, 1, 87, 77, 85, 45, 65, 87, 87), + (5, 4, 3, 74, 83, 82, 77, 76, 93, 93), + (5, 4, 4, 81, 83, 78, 52, 69, 88, 88), + (5, 4, 5, 55, 54, 70, 87, 86, 86, 86), + (5, 4, 6, 86, 77, 84, 43, 65, 86, 86), + (5, 4, 11, 77, 69, 78, 82, 84, 93, 93), + (5, 5, 1, 85, 82, 83, 48, 60, 86, 86), + (5, 5, 4, 80, 86, 77, 54, 64, 87, 87), + (5, 5, 5, 53, 62, 68, 86, 83, 85, 85), + (5, 5, 6, 85, 81, 83, 46, 60, 86, 86), + (5, 5, 8, 46, 54, 64, 86, 83, 82, 82), + (5, 5, 9, 66, 71, 76, 85, 82, 91, 91), + (5, 6, 1, 82, 84, 83, 52, 63, 88, 88), + (5, 6, 3, 66, 87, 80, 81, 75, 93, 93), + (5, 6, 6, 83, 84, 83, 50, 63, 87, 87), + (5, 6, 7, 77, 76, 81, 86, 81, 95, 95), + (5, 6, 11, 71, 78, 75, 85, 85, 94, 94), + (5, 7, 1, 87, 78, 85, 40, 65, 86, 86), + (5, 7, 4, 83, 84, 79, 48, 69, 88, 88), + (5, 7, 6, 87, 78, 85, 39, 65, 86, 86), + (5, 7, 8, 52, 48, 66, 84, 85, 82, 82), + (5, 7, 9, 71, 66, 78, 82, 84, 91, 91), + (5, 8, 1, 85, 79, 84, 50, 64, 87, 87), + (5, 8, 3, 70, 85, 80, 80, 75, 93, 93), + (5, 8, 4, 79, 84, 78, 57, 68, 88, 88), + (5, 8, 5, 50, 57, 68, 87, 85, 84, 84), + (5, 8, 6, 84, 79, 83, 49, 64, 87, 87), + (5, 8, 7, 80, 69, 82, 85, 82, 94, 94), + (5, 8, 8, 44, 49, 64, 86, 84, 81, 81), + (5, 10, 2, 85, 74, 83, 74, 78, 94, 94), + (5, 10, 3, 74, 84, 81, 73, 77, 93, 93), + (5, 10, 4, 81, 84, 79, 47, 70, 87, 87), + (5, 10, 5, 55, 57, 70, 83, 85, 85, 85), + (5, 10, 6, 87, 78, 84, 39, 64, 85, 85), + (5, 10, 8, 49, 49, 65, 83, 85, 81, 81), + (5, 10, 9, 68, 67, 77, 81, 85, 91, 91), + (5, 11, 1, 85, 82, 85, 44, 63, 87, 87), + (5, 11, 2, 83, 79, 83, 79, 76, 95, 95), + (5, 11, 3, 70, 86, 82, 75, 75, 93, 93), + (5, 11, 5, 50, 63, 70, 84, 84, 85, 85), + (5, 11, 6, 84, 82, 84, 42, 63, 86, 86), + (5, 11, 7, 80, 74, 83, 82, 81, 95, 95), + (5, 11, 8, 44, 55, 66, 85, 84, 82, 82), + (6, 1, 1, 84, 79, 84, 45, 65, 87, 87), + (6, 1, 2, 84, 75, 84, 77, 77, 94, 94), + (6, 1, 4, 78, 85, 78, 52, 69, 87, 87), + (6, 1, 5, 52, 59, 68, 84, 84, 84, 84), + (6, 1, 6, 84, 79, 83, 43, 65, 86, 86), + (6, 1, 8, 45, 52, 65, 84, 84, 81, 81), + (6, 1, 9, 65, 68, 76, 83, 84, 90, 90), + (6, 2, 1, 83, 81, 83, 49, 62, 87, 87), + (6, 2, 3, 68, 85, 79, 78, 73, 92, 92), + (6, 2, 4, 76, 86, 76, 55, 65, 87, 87), + (6, 2, 6, 84, 81, 83, 47, 62, 86, 86), + (6, 2, 7, 78, 74, 80, 84, 80, 94, 94), + (6, 2, 9, 62, 71, 74, 84, 82, 90, 90), + (6, 3, 1, 84, 82, 82, 46, 66, 87, 87), + (6, 3, 2, 84, 78, 80, 78, 77, 95, 95), + (6, 3, 3, 69, 86, 78, 76, 77, 92, 92), + (6, 3, 4, 77, 86, 75, 53, 69, 87, 87), + (6, 3, 5, 49, 64, 65, 84, 85, 85, 85), + (6, 3, 6, 83, 82, 81, 45, 66, 87, 87), + (6, 4, 1, 86, 76, 84, 45, 65, 86, 86), + (6, 4, 3, 74, 82, 81, 76, 76, 93, 93), + (6, 4, 4, 80, 82, 77, 52, 68, 87, 87), + (6, 4, 5, 55, 54, 69, 86, 85, 85, 85), + (6, 4, 6, 85, 76, 84, 43, 65, 86, 86), + (6, 4, 11, 76, 69, 78, 82, 83, 93, 93), + (6, 5, 1, 84, 81, 82, 48, 60, 86, 86), + (6, 5, 4, 79, 86, 77, 54, 63, 87, 87), + (6, 5, 5, 53, 62, 67, 85, 82, 85, 85), + (6, 5, 6, 84, 80, 82, 46, 60, 86, 86), + (6, 5, 8, 46, 54, 64, 85, 82, 81, 81), + (6, 5, 9, 66, 70, 75, 84, 81, 90, 90), + (6, 6, 1, 82, 83, 83, 52, 63, 87, 87), + (6, 6, 3, 66, 87, 79, 80, 74, 92, 92), + (6, 6, 6, 82, 83, 82, 50, 63, 87, 87), + (6, 6, 7, 76, 76, 80, 85, 80, 95, 95), + (6, 6, 11, 70, 77, 75, 85, 84, 93, 93), + (6, 7, 1, 86, 77, 84, 40, 65, 86, 86), + (6, 7, 4, 82, 83, 78, 48, 68, 87, 87), + (6, 7, 6, 86, 77, 84, 39, 65, 85, 85), + (6, 7, 8, 52, 48, 66, 83, 84, 82, 82), + (6, 7, 9, 69, 65, 77, 82, 84, 90, 90), + (6, 8, 1, 84, 78, 83, 50, 64, 87, 87), + (6, 8, 3, 70, 84, 80, 79, 75, 92, 92), + (6, 8, 4, 78, 84, 78, 57, 67, 88, 88), + (6, 8, 5, 50, 57, 67, 86, 83, 84, 84), + (6, 8, 6, 83, 78, 82, 49, 64, 86, 86), + (6, 8, 7, 79, 69, 81, 84, 81, 94, 94), + (6, 8, 8, 44, 49, 64, 86, 83, 80, 80), + (6, 10, 2, 84, 73, 82, 74, 77, 93, 93), + (6, 10, 3, 74, 83, 81, 72, 77, 92, 92), + (6, 10, 4, 80, 84, 78, 47, 69, 87, 87), + (6, 10, 5, 55, 57, 68, 82, 84, 84, 84), + (6, 10, 6, 86, 77, 83, 39, 64, 85, 85), + (6, 10, 8, 49, 49, 65, 82, 84, 81, 81), + (6, 10, 9, 68, 66, 76, 81, 84, 90, 90), + (6, 11, 1, 84, 81, 84, 44, 63, 86, 86), + (6, 11, 2, 81, 78, 82, 79, 76, 94, 94), + (6, 11, 3, 70, 85, 81, 74, 74, 92, 92), + (6, 11, 5, 50, 63, 69, 83, 83, 85, 85), + (6, 11, 6, 83, 81, 84, 42, 63, 86, 86), + (6, 11, 7, 79, 74, 82, 81, 80, 94, 94), + (6, 11, 8, 44, 55, 66, 83, 83, 81, 81), + (7, 1, 1, 84, 78, 83, 42, 64, 85, 85), + (7, 1, 2, 84, 74, 83, 76, 77, 94, 94), + (7, 1, 4, 77, 84, 78, 52, 69, 87, 87), + (7, 1, 5, 52, 59, 68, 83, 84, 84, 84), + (7, 1, 6, 83, 78, 82, 40, 64, 85, 85), + (7, 1, 8, 42, 52, 63, 83, 84, 80, 80), + (7, 1, 9, 63, 68, 76, 82, 83, 89, 89), + (7, 2, 1, 82, 80, 82, 46, 60, 85, 85), + (7, 2, 3, 67, 85, 79, 76, 72, 91, 91), + (7, 2, 4, 75, 85, 75, 55, 65, 86, 86), + (7, 2, 6, 83, 80, 82, 44, 60, 85, 85), + (7, 2, 7, 77, 72, 79, 83, 79, 93, 93), + (7, 2, 9, 60, 71, 74, 84, 82, 89, 89), + (7, 3, 1, 83, 81, 82, 43, 64, 86, 86), + (7, 3, 2, 83, 77, 79, 77, 77, 94, 94), + (7, 3, 3, 68, 85, 78, 75, 75, 91, 91), + (7, 3, 4, 76, 85, 75, 53, 69, 87, 87), + (7, 3, 5, 49, 64, 65, 84, 85, 84, 84), + (7, 3, 6, 82, 81, 81, 42, 64, 85, 85), + (7, 4, 1, 85, 75, 84, 42, 63, 85, 85), + (7, 4, 3, 72, 82, 80, 75, 75, 92, 92), + (7, 4, 4, 80, 81, 77, 52, 68, 87, 87), + (7, 4, 5, 55, 54, 69, 85, 84, 85, 85), + (7, 4, 6, 85, 75, 83, 40, 63, 84, 84), + (7, 4, 11, 76, 68, 77, 81, 82, 92, 92), + (7, 5, 1, 83, 80, 82, 45, 58, 85, 85), + (7, 5, 4, 78, 84, 76, 54, 63, 86, 86), + (7, 5, 5, 53, 62, 67, 84, 81, 84, 84), + (7, 5, 6, 83, 80, 82, 43, 58, 84, 84), + (7, 5, 8, 43, 54, 62, 84, 81, 80, 80), + (7, 5, 9, 64, 70, 75, 83, 81, 90, 90), + (7, 6, 1, 80, 82, 82, 49, 61, 86, 86), + (7, 6, 3, 65, 86, 79, 79, 73, 91, 91), + (7, 6, 6, 81, 82, 81, 47, 61, 86, 86), + (7, 6, 7, 76, 74, 79, 84, 80, 94, 94), + (7, 6, 11, 70, 77, 74, 84, 84, 93, 93), + (7, 7, 1, 86, 76, 83, 40, 63, 85, 85), + (7, 7, 4, 81, 82, 78, 48, 68, 87, 87), + (7, 7, 6, 85, 76, 84, 39, 63, 84, 84), + (7, 7, 8, 49, 48, 64, 82, 83, 80, 80), + (7, 7, 9, 69, 65, 77, 81, 83, 90, 90), + (7, 8, 1, 83, 77, 83, 47, 62, 86, 86), + (7, 8, 3, 68, 83, 79, 78, 74, 91, 91), + (7, 8, 4, 77, 83, 77, 57, 67, 87, 87), + (7, 8, 5, 50, 57, 67, 85, 83, 83, 83), + (7, 8, 6, 83, 77, 82, 46, 62, 85, 85), + (7, 8, 7, 78, 68, 80, 84, 80, 93, 93), + (7, 8, 8, 44, 49, 62, 85, 83, 80, 80), + (7, 10, 2, 83, 73, 81, 73, 77, 93, 93), + (7, 10, 3, 72, 82, 80, 72, 75, 91, 91), + (7, 10, 4, 80, 83, 78, 47, 69, 86, 86), + (7, 10, 5, 55, 57, 68, 81, 84, 84, 84), + (7, 10, 6, 85, 76, 83, 39, 63, 84, 84), + (7, 10, 8, 46, 49, 64, 82, 84, 80, 80), + (7, 10, 9, 67, 66, 76, 80, 84, 89, 89), + (7, 11, 1, 83, 80, 84, 44, 61, 85, 85), + (7, 11, 2, 81, 76, 81, 78, 75, 93, 93), + (7, 11, 3, 68, 85, 80, 74, 73, 91, 91), + (7, 11, 5, 50, 63, 69, 83, 82, 84, 84), + (7, 11, 6, 82, 80, 83, 42, 61, 85, 85), + (7, 11, 7, 78, 72, 81, 81, 80, 93, 93), + (7, 11, 8, 44, 55, 64, 83, 82, 81, 81), + (8, 1, 1, 83, 77, 83, 42, 64, 85, 85), + (8, 1, 2, 83, 74, 82, 75, 76, 93, 93), + (8, 1, 4, 77, 83, 77, 52, 67, 86, 86), + (8, 1, 5, 52, 57, 66, 83, 83, 83, 83), + (8, 1, 6, 83, 77, 82, 40, 64, 84, 84), + (8, 1, 8, 42, 52, 63, 82, 83, 79, 79), + (8, 1, 9, 63, 66, 75, 82, 83, 89, 89), + (8, 2, 1, 82, 80, 82, 46, 60, 85, 85), + (8, 2, 3, 67, 84, 78, 76, 72, 90, 90), + (8, 2, 4, 75, 84, 74, 55, 63, 86, 86), + (8, 2, 6, 82, 79, 82, 44, 60, 85, 85), + (8, 2, 7, 76, 72, 79, 82, 79, 93, 93), + (8, 2, 9, 60, 69, 73, 83, 81, 88, 88), + (8, 3, 1, 82, 80, 81, 43, 64, 85, 85), + (8, 3, 2, 82, 77, 79, 76, 76, 93, 93), + (8, 3, 3, 68, 84, 78, 75, 74, 91, 91), + (8, 3, 4, 76, 85, 74, 53, 67, 86, 86), + (8, 3, 5, 49, 62, 63, 83, 84, 83, 83), + (8, 3, 6, 82, 80, 80, 42, 64, 85, 85), + (8, 4, 1, 84, 74, 83, 42, 63, 84, 84), + (8, 4, 3, 72, 81, 79, 75, 75, 91, 91), + (8, 4, 4, 79, 81, 76, 52, 66, 86, 86), + (8, 4, 5, 55, 54, 67, 85, 83, 84, 84), + (8, 4, 6, 84, 74, 82, 40, 63, 84, 84), + (8, 4, 11, 75, 68, 76, 80, 82, 91, 91), + (8, 5, 1, 83, 79, 81, 45, 58, 84, 84), + (8, 5, 4, 78, 84, 75, 54, 63, 86, 86), + (8, 5, 5, 53, 60, 65, 84, 80, 83, 83), + (8, 5, 6, 83, 79, 81, 43, 58, 84, 84), + (8, 5, 8, 43, 54, 62, 83, 80, 80, 80), + (8, 5, 9, 64, 68, 74, 83, 80, 89, 89), + (8, 6, 1, 80, 81, 82, 49, 61, 86, 86), + (8, 6, 3, 65, 85, 78, 79, 73, 91, 91), + (8, 6, 6, 80, 81, 81, 47, 61, 85, 85), + (8, 6, 7, 75, 74, 79, 83, 79, 93, 93), + (8, 6, 11, 69, 76, 73, 83, 83, 92, 92), + (8, 7, 1, 85, 75, 83, 38, 63, 84, 84), + (8, 7, 4, 80, 82, 77, 48, 66, 86, 86), + (8, 7, 6, 85, 75, 83, 36, 63, 84, 84), + (8, 7, 8, 49, 48, 64, 81, 83, 80, 80), + (8, 7, 9, 69, 63, 75, 80, 82, 89, 89), + (8, 8, 1, 83, 76, 82, 47, 62, 85, 85), + (8, 8, 3, 68, 82, 79, 78, 74, 91, 91), + (8, 8, 4, 77, 82, 76, 57, 65, 86, 86), + (8, 8, 5, 50, 55, 65, 85, 82, 82, 82), + (8, 8, 6, 82, 76, 81, 46, 62, 84, 84), + (8, 8, 7, 77, 68, 79, 83, 80, 92, 92), + (8, 8, 8, 41, 49, 62, 84, 82, 79, 79), + (8, 10, 2, 82, 72, 81, 72, 76, 92, 92), + (8, 10, 3, 72, 81, 79, 71, 74, 91, 91), + (8, 10, 4, 79, 82, 77, 47, 67, 85, 85), + (8, 10, 5, 55, 55, 67, 81, 83, 83, 83), + (8, 10, 6, 85, 75, 82, 36, 63, 83, 83), + (8, 10, 8, 46, 49, 64, 80, 83, 80, 80), + (8, 10, 9, 67, 64, 75, 80, 83, 89, 89), + (8, 11, 1, 83, 80, 83, 41, 61, 85, 85), + (8, 11, 2, 80, 76, 81, 77, 74, 93, 93), + (8, 11, 3, 68, 84, 79, 73, 73, 91, 91), + (8, 11, 5, 50, 61, 67, 82, 81, 83, 83), + (8, 11, 6, 82, 79, 82, 39, 61, 84, 84), + (8, 11, 7, 77, 72, 80, 81, 79, 93, 93), + (8, 11, 8, 41, 55, 64, 82, 82, 80, 80), + (9, 1, 1, 82, 77, 81, 42, 64, 84, 84), + (9, 1, 2, 83, 73, 82, 75, 75, 93, 93), + (9, 1, 4, 77, 82, 76, 52, 67, 86, 86), + (9, 1, 5, 52, 57, 66, 82, 82, 83, 83), + (9, 1, 6, 82, 77, 80, 40, 64, 84, 84), + (9, 1, 8, 42, 52, 63, 82, 82, 79, 79), + (9, 1, 9, 63, 66, 74, 80, 82, 88, 88), + (9, 2, 1, 81, 79, 80, 46, 60, 84, 84), + (9, 2, 3, 67, 83, 77, 75, 71, 90, 90), + (9, 2, 4, 75, 83, 73, 55, 63, 85, 85), + (9, 2, 6, 81, 78, 81, 44, 60, 84, 84), + (9, 2, 7, 75, 71, 78, 82, 78, 92, 92), + (9, 2, 9, 60, 69, 73, 82, 80, 88, 88), + (9, 3, 1, 81, 79, 80, 43, 64, 85, 85), + (9, 3, 2, 82, 76, 78, 76, 75, 92, 92), + (9, 3, 3, 68, 84, 77, 74, 74, 90, 90), + (9, 3, 4, 75, 84, 73, 53, 67, 85, 85), + (9, 3, 5, 49, 62, 63, 82, 83, 83, 83), + (9, 3, 6, 81, 79, 79, 42, 64, 84, 84), + (9, 4, 1, 83, 74, 82, 42, 63, 84, 84), + (9, 4, 3, 71, 80, 79, 74, 74, 91, 91), + (9, 4, 4, 79, 80, 75, 52, 66, 85, 85), + (9, 4, 5, 55, 52, 67, 84, 83, 83, 83), + (9, 4, 6, 83, 74, 81, 40, 63, 83, 83), + (9, 4, 11, 74, 67, 76, 80, 80, 90, 90), + (9, 5, 1, 81, 78, 80, 45, 58, 83, 83), + (9, 5, 4, 77, 83, 74, 54, 62, 85, 85), + (9, 5, 5, 53, 60, 65, 82, 80, 83, 83), + (9, 5, 6, 82, 78, 80, 43, 58, 83, 83), + (9, 5, 8, 43, 54, 62, 83, 79, 79, 79), + (9, 5, 9, 64, 68, 74, 81, 79, 89, 89), + (9, 6, 1, 79, 80, 80, 49, 61, 85, 85), + (9, 6, 3, 65, 85, 77, 78, 72, 90, 90), + (9, 6, 6, 80, 80, 80, 47, 61, 85, 85), + (9, 6, 7, 74, 73, 78, 83, 78, 92, 92), + (9, 6, 11, 69, 76, 73, 82, 82, 91, 91), + (9, 7, 1, 84, 75, 82, 38, 63, 83, 83), + (9, 7, 4, 80, 81, 76, 48, 66, 85, 85), + (9, 7, 6, 83, 75, 82, 36, 63, 83, 83), + (9, 7, 8, 49, 48, 64, 81, 82, 80, 80), + (9, 7, 9, 69, 63, 74, 79, 82, 89, 89), + (9, 8, 1, 82, 76, 81, 47, 62, 85, 85), + (9, 8, 3, 67, 82, 78, 77, 73, 90, 90), + (9, 8, 4, 76, 81, 75, 57, 65, 86, 86), + (9, 8, 5, 50, 55, 65, 83, 81, 82, 82), + (9, 8, 6, 81, 76, 80, 46, 62, 84, 84), + (9, 8, 7, 77, 68, 79, 82, 79, 92, 92), + (9, 8, 8, 41, 49, 62, 84, 81, 78, 78), + (9, 10, 2, 82, 71, 80, 72, 75, 91, 91), + (9, 10, 3, 71, 81, 79, 70, 74, 90, 90), + (9, 10, 4, 79, 81, 76, 47, 67, 85, 85), + (9, 10, 5, 55, 55, 67, 80, 82, 83, 83), + (9, 10, 6, 84, 75, 81, 36, 63, 83, 83), + (9, 10, 8, 46, 49, 64, 80, 82, 79, 79), + (9, 10, 9, 67, 64, 74, 78, 82, 88, 88), + (9, 11, 1, 82, 79, 82, 41, 61, 84, 84), + (9, 11, 2, 79, 75, 80, 77, 73, 92, 92), + (9, 11, 3, 67, 83, 79, 72, 72, 90, 90), + (9, 11, 5, 50, 61, 67, 81, 81, 83, 83), + (9, 11, 6, 81, 78, 81, 39, 61, 83, 83), + (9, 11, 7, 77, 71, 80, 80, 78, 92, 92), + (9, 11, 8, 41, 55, 64, 81, 81, 80, 80), + (10, 1, 1, 81, 77, 81, 42, 62, 84, 84), + (10, 1, 2, 82, 73, 80, 74, 75, 92, 92), + (10, 1, 4, 76, 81, 76, 52, 67, 85, 85), + (10, 1, 5, 52, 57, 66, 81, 81, 82, 82), + (10, 1, 6, 81, 76, 80, 40, 62, 83, 83), + (10, 1, 8, 42, 52, 62, 81, 82, 78, 78), + (10, 1, 9, 62, 66, 74, 80, 81, 87, 87), + (10, 2, 1, 80, 79, 80, 46, 59, 84, 84), + (10, 2, 3, 65, 82, 77, 75, 70, 89, 89), + (10, 2, 4, 74, 83, 73, 53, 63, 84, 84), + (10, 2, 6, 81, 78, 80, 44, 59, 83, 83), + (10, 2, 7, 74, 71, 77, 81, 77, 91, 91), + (10, 2, 9, 59, 69, 72, 81, 79, 87, 87), + (10, 3, 1, 81, 79, 79, 43, 63, 84, 84), + (10, 3, 2, 81, 76, 77, 75, 75, 92, 92), + (10, 3, 3, 66, 82, 76, 74, 73, 89, 89), + (10, 3, 4, 74, 83, 73, 53, 67, 85, 85), + (10, 3, 5, 49, 62, 63, 81, 82, 83, 83), + (10, 3, 6, 80, 79, 78, 42, 63, 83, 83), + (10, 4, 1, 83, 73, 81, 42, 62, 83, 83), + (10, 4, 3, 71, 80, 78, 74, 73, 90, 90), + (10, 4, 4, 78, 79, 75, 52, 66, 85, 85), + (10, 4, 5, 53, 52, 67, 83, 82, 83, 83), + (10, 4, 6, 82, 73, 80, 40, 62, 83, 83), + (10, 4, 11, 74, 67, 75, 78, 80, 90, 90), + (10, 5, 1, 81, 78, 79, 45, 57, 83, 83), + (10, 5, 4, 76, 82, 74, 54, 62, 85, 85), + (10, 5, 5, 53, 60, 65, 82, 79, 83, 83), + (10, 5, 6, 81, 78, 79, 43, 57, 83, 83), + (10, 5, 8, 43, 54, 60, 82, 79, 79, 79), + (10, 5, 9, 63, 68, 73, 81, 78, 88, 88), + (10, 6, 1, 78, 80, 80, 49, 60, 84, 84), + (10, 6, 3, 64, 84, 77, 78, 71, 90, 90), + (10, 6, 6, 79, 80, 79, 47, 60, 84, 84), + (10, 6, 7, 73, 73, 77, 82, 78, 92, 92), + (10, 6, 11, 68, 75, 72, 81, 82, 90, 90), + (10, 7, 1, 83, 75, 81, 38, 62, 83, 83), + (10, 7, 4, 79, 80, 76, 48, 66, 85, 85), + (10, 7, 6, 83, 74, 81, 36, 62, 82, 82), + (10, 7, 8, 49, 48, 63, 80, 81, 79, 79), + (10, 7, 9, 67, 63, 74, 79, 81, 88, 88), + (10, 8, 1, 81, 75, 80, 47, 60, 84, 84), + (10, 8, 3, 67, 80, 77, 77, 72, 90, 90), + (10, 8, 4, 75, 81, 75, 54, 65, 85, 85), + (10, 8, 5, 50, 55, 65, 83, 80, 82, 82), + (10, 8, 6, 81, 75, 79, 46, 60, 83, 83), + (10, 8, 7, 76, 66, 78, 81, 78, 91, 91), + (10, 8, 8, 41, 49, 60, 82, 80, 78, 78), + (10, 10, 2, 81, 71, 79, 71, 75, 90, 90), + (10, 10, 3, 71, 80, 78, 70, 73, 89, 89), + (10, 10, 4, 78, 81, 76, 47, 67, 85, 85), + (10, 10, 5, 53, 55, 67, 79, 81, 82, 82), + (10, 10, 6, 83, 74, 80, 36, 61, 82, 82), + (10, 10, 8, 46, 49, 62, 79, 81, 79, 79), + (10, 10, 9, 65, 64, 74, 78, 81, 87, 87), + (10, 11, 1, 81, 79, 81, 41, 60, 83, 83), + (10, 11, 2, 79, 75, 79, 77, 73, 92, 92), + (10, 11, 3, 67, 82, 78, 72, 71, 89, 89), + (10, 11, 5, 50, 61, 67, 80, 80, 83, 83), + (10, 11, 6, 80, 78, 80, 39, 60, 83, 83), + (10, 11, 7, 76, 71, 79, 79, 78, 92, 92), + (10, 11, 8, 41, 53, 63, 80, 80, 78, 78), + (11, 1, 1, 81, 76, 80, 42, 62, 83, 83), + (11, 1, 2, 81, 72, 80, 73, 75, 91, 91), + (11, 1, 4, 75, 80, 75, 49, 66, 84, 84), + (11, 1, 5, 49, 57, 65, 80, 81, 81, 81), + (11, 1, 6, 80, 75, 79, 40, 62, 83, 83), + (11, 1, 8, 42, 49, 62, 80, 80, 78, 78), + (11, 1, 9, 62, 65, 73, 79, 80, 87, 87), + (11, 2, 1, 80, 78, 79, 46, 59, 83, 83), + (11, 2, 3, 65, 81, 76, 74, 70, 88, 88), + (11, 2, 4, 73, 82, 72, 53, 62, 83, 83), + (11, 2, 6, 80, 78, 79, 44, 59, 83, 83), + (11, 2, 7, 74, 70, 77, 80, 76, 90, 90), + (11, 2, 9, 59, 68, 71, 81, 79, 86, 86), + (11, 3, 1, 80, 78, 79, 43, 63, 84, 84), + (11, 3, 2, 80, 75, 76, 74, 75, 91, 91), + (11, 3, 3, 66, 82, 75, 72, 72, 89, 89), + (11, 3, 4, 74, 82, 72, 50, 66, 84, 84), + (11, 3, 5, 47, 62, 62, 80, 81, 82, 82), + (11, 3, 6, 80, 78, 78, 42, 63, 83, 83), + (11, 4, 1, 82, 73, 81, 42, 62, 83, 83), + (11, 4, 3, 70, 79, 78, 73, 72, 89, 89), + (11, 4, 4, 77, 78, 75, 49, 65, 84, 84), + (11, 4, 5, 53, 52, 66, 82, 81, 82, 82), + (11, 4, 6, 82, 72, 80, 40, 62, 82, 82), + (11, 4, 11, 73, 66, 74, 77, 79, 89, 89), + (11, 5, 1, 80, 77, 79, 45, 57, 82, 82), + (11, 5, 4, 75, 81, 73, 52, 60, 83, 83), + (11, 5, 5, 50, 60, 64, 81, 78, 82, 82), + (11, 5, 6, 80, 77, 79, 43, 57, 82, 82), + (11, 5, 8, 43, 52, 60, 81, 78, 78, 78), + (11, 5, 9, 63, 67, 72, 80, 78, 87, 87), + (11, 6, 1, 78, 79, 79, 49, 60, 84, 84), + (11, 6, 3, 64, 83, 76, 77, 71, 89, 89), + (11, 6, 6, 78, 79, 78, 47, 60, 83, 83), + (11, 6, 7, 72, 72, 77, 81, 76, 91, 91), + (11, 6, 11, 66, 75, 71, 80, 81, 90, 90), + (11, 7, 1, 82, 74, 80, 38, 62, 82, 82), + (11, 7, 4, 78, 79, 75, 48, 65, 84, 84), + (11, 7, 6, 82, 74, 81, 36, 62, 82, 82), + (11, 7, 8, 49, 46, 63, 79, 80, 78, 78), + (11, 7, 9, 67, 62, 73, 78, 80, 87, 87), + (11, 8, 1, 80, 74, 80, 47, 60, 84, 84), + (11, 8, 3, 67, 80, 76, 76, 71, 89, 89), + (11, 8, 4, 74, 80, 74, 54, 64, 84, 84), + (11, 8, 5, 48, 55, 64, 82, 80, 81, 81), + (11, 8, 6, 80, 74, 79, 46, 60, 83, 83), + (11, 8, 7, 75, 66, 77, 81, 77, 90, 90), + (11, 8, 8, 41, 47, 60, 82, 79, 77, 77), + (11, 10, 2, 80, 70, 78, 70, 75, 90, 90), + (11, 10, 3, 70, 79, 77, 69, 72, 88, 88), + (11, 10, 4, 77, 80, 75, 47, 66, 84, 84), + (11, 10, 5, 53, 55, 65, 79, 80, 81, 81), + (11, 10, 6, 82, 73, 80, 36, 61, 81, 81), + (11, 10, 8, 46, 47, 62, 78, 80, 78, 78), + (11, 10, 9, 65, 63, 73, 77, 80, 87, 87), + (11, 11, 1, 80, 78, 81, 41, 60, 83, 83), + (11, 11, 2, 78, 74, 78, 76, 72, 91, 91), + (11, 11, 3, 67, 81, 78, 71, 71, 89, 89), + (11, 11, 5, 48, 61, 66, 79, 79, 82, 82), + (11, 11, 6, 79, 78, 80, 39, 60, 82, 82), + (11, 11, 7, 75, 70, 78, 79, 76, 91, 91), + (11, 11, 8, 41, 53, 63, 80, 79, 78, 78), + (12, 1, 1, 80, 75, 80, 42, 62, 83, 83), + (12, 1, 2, 80, 70, 79, 73, 74, 90, 90), + (12, 1, 4, 74, 80, 74, 49, 66, 84, 84), + (12, 1, 5, 49, 55, 65, 79, 80, 81, 81), + (12, 1, 6, 79, 75, 79, 40, 62, 82, 82), + (12, 1, 8, 42, 49, 62, 79, 80, 77, 77), + (12, 1, 9, 62, 65, 73, 78, 80, 86, 86), + (12, 2, 1, 79, 77, 79, 46, 59, 83, 83), + (12, 2, 3, 64, 80, 75, 73, 69, 87, 87), + (12, 2, 4, 72, 81, 72, 53, 62, 83, 83), + (12, 2, 6, 79, 77, 79, 44, 59, 83, 83), + (12, 2, 7, 73, 70, 76, 79, 75, 90, 90), + (12, 2, 9, 59, 68, 71, 79, 78, 86, 86), + (12, 3, 1, 79, 78, 78, 43, 63, 83, 83), + (12, 3, 2, 80, 74, 75, 74, 74, 90, 90), + (12, 3, 3, 65, 81, 75, 71, 72, 88, 88), + (12, 3, 4, 73, 81, 71, 50, 66, 83, 83), + (12, 3, 5, 47, 60, 62, 80, 80, 81, 81), + (12, 3, 6, 79, 77, 77, 42, 63, 82, 82), + (12, 4, 1, 81, 72, 80, 42, 62, 82, 82), + (12, 4, 3, 70, 78, 77, 71, 72, 89, 89), + (12, 4, 4, 76, 78, 74, 49, 65, 83, 83), + (12, 4, 5, 53, 52, 66, 82, 80, 82, 82), + (12, 4, 6, 81, 71, 79, 40, 62, 82, 82), + (12, 4, 11, 73, 65, 74, 77, 78, 88, 88), + (12, 5, 1, 79, 76, 78, 45, 57, 82, 82), + (12, 5, 4, 75, 80, 72, 52, 60, 83, 83), + (12, 5, 5, 50, 58, 64, 80, 77, 81, 81), + (12, 5, 6, 79, 76, 78, 43, 57, 82, 82), + (12, 5, 8, 43, 52, 60, 80, 77, 77, 77), + (12, 5, 9, 63, 67, 72, 79, 77, 86, 86), + (12, 6, 1, 76, 78, 79, 49, 60, 83, 83), + (12, 6, 3, 63, 82, 75, 75, 70, 88, 88), + (12, 6, 6, 77, 78, 78, 47, 60, 83, 83), + (12, 6, 7, 72, 72, 76, 80, 76, 90, 90), + (12, 6, 11, 66, 73, 71, 79, 80, 89, 89), + (12, 7, 1, 82, 73, 80, 38, 62, 82, 82), + (12, 7, 4, 77, 79, 75, 46, 65, 83, 83), + (12, 7, 6, 81, 73, 80, 36, 62, 81, 81), + (12, 7, 8, 49, 46, 63, 79, 79, 78, 78), + (12, 7, 9, 67, 62, 73, 78, 79, 87, 87), + (12, 8, 1, 79, 74, 79, 47, 60, 83, 83), + (12, 8, 3, 66, 79, 76, 75, 71, 88, 88), + (12, 8, 4, 73, 79, 73, 54, 64, 84, 84), + (12, 8, 5, 48, 55, 64, 81, 79, 80, 80), + (12, 8, 6, 79, 73, 78, 46, 60, 82, 82), + (12, 8, 7, 74, 65, 76, 80, 76, 89, 89), + (12, 8, 8, 41, 47, 60, 81, 79, 77, 77), + (12, 10, 2, 79, 69, 77, 70, 74, 89, 89), + (12, 10, 3, 70, 78, 77, 68, 72, 88, 88), + (12, 10, 4, 76, 79, 74, 45, 66, 83, 83), + (12, 10, 5, 53, 55, 65, 77, 79, 81, 81), + (12, 10, 6, 81, 72, 79, 36, 61, 81, 81), + (12, 10, 8, 46, 47, 62, 78, 80, 78, 78), + (12, 10, 9, 65, 63, 73, 77, 80, 86, 86), + (12, 11, 1, 79, 77, 80, 41, 60, 82, 82), + (12, 11, 2, 77, 73, 77, 76, 72, 90, 90), + (12, 11, 3, 66, 80, 77, 70, 70, 88, 88), + (12, 11, 5, 48, 59, 66, 79, 78, 81, 81), + (12, 11, 6, 78, 77, 79, 39, 60, 82, 82), + (12, 11, 7, 74, 70, 78, 78, 76, 90, 90), + (12, 11, 8, 41, 53, 63, 79, 78, 78, 78), + (13, 1, 1, 79, 74, 78, 42, 60, 82, 82), + (13, 1, 2, 80, 70, 79, 72, 73, 90, 90), + (13, 1, 4, 73, 79, 73, 49, 64, 83, 83), + (13, 1, 5, 49, 55, 63, 79, 79, 80, 80), + (13, 1, 6, 79, 74, 77, 40, 60, 81, 81), + (13, 1, 8, 42, 49, 60, 78, 79, 77, 77), + (13, 1, 9, 60, 63, 72, 77, 79, 85, 85), + (13, 2, 1, 78, 76, 78, 46, 57, 82, 82), + (13, 2, 3, 64, 80, 74, 73, 68, 87, 87), + (13, 2, 4, 71, 80, 71, 53, 60, 82, 82), + (13, 2, 6, 79, 76, 78, 44, 57, 82, 82), + (13, 2, 7, 73, 68, 75, 79, 74, 89, 89), + (13, 2, 9, 57, 66, 70, 79, 77, 85, 85), + (13, 3, 1, 78, 77, 77, 43, 61, 82, 82), + (13, 3, 2, 79, 74, 74, 73, 73, 89, 89), + (13, 3, 3, 65, 80, 74, 71, 71, 87, 87), + (13, 3, 4, 72, 80, 70, 50, 64, 82, 82), + (13, 3, 5, 47, 60, 60, 79, 80, 80, 80), + (13, 3, 6, 78, 76, 76, 42, 61, 82, 82), + (13, 4, 1, 81, 71, 79, 42, 60, 81, 81), + (13, 4, 3, 68, 77, 76, 71, 71, 88, 88), + (13, 4, 4, 75, 77, 73, 49, 63, 82, 82), + (13, 4, 5, 53, 50, 64, 81, 80, 81, 81), + (13, 4, 6, 80, 71, 78, 40, 60, 81, 81), + (13, 4, 11, 71, 65, 73, 76, 77, 87, 87), + (13, 5, 1, 79, 75, 77, 45, 57, 81, 81), + (13, 5, 4, 74, 80, 71, 52, 60, 82, 82), + (13, 5, 5, 50, 58, 62, 79, 76, 80, 80), + (13, 5, 6, 79, 75, 77, 43, 57, 81, 81), + (13, 5, 8, 43, 52, 59, 79, 76, 77, 77), + (13, 5, 9, 61, 65, 71, 78, 77, 85, 85), + (13, 6, 1, 76, 77, 78, 49, 58, 83, 83), + (13, 6, 3, 63, 81, 74, 75, 69, 88, 88), + (13, 6, 6, 77, 77, 76, 47, 58, 82, 82), + (13, 6, 7, 72, 70, 75, 80, 75, 89, 89), + (13, 6, 11, 65, 73, 70, 79, 79, 88, 88), + (13, 7, 1, 81, 72, 79, 38, 60, 81, 81), + (13, 7, 4, 76, 78, 74, 46, 63, 82, 82), + (13, 7, 6, 80, 72, 79, 36, 60, 81, 81), + (13, 7, 8, 49, 46, 61, 78, 79, 77, 77), + (13, 7, 9, 65, 60, 72, 76, 79, 86, 86), + (13, 8, 1, 79, 73, 78, 47, 59, 82, 82), + (13, 8, 3, 66, 78, 75, 75, 70, 88, 88), + (13, 8, 4, 72, 78, 72, 54, 62, 83, 83), + (13, 8, 5, 48, 53, 62, 80, 78, 79, 79), + (13, 8, 6, 78, 72, 77, 46, 59, 81, 81), + (13, 8, 7, 73, 65, 76, 79, 75, 89, 89), + (13, 8, 8, 41, 47, 59, 80, 78, 76, 76), + (13, 10, 2, 78, 69, 76, 69, 73, 88, 88), + (13, 10, 3, 68, 78, 76, 68, 71, 87, 87), + (13, 10, 4, 75, 78, 73, 45, 64, 82, 82), + (13, 10, 5, 53, 53, 64, 77, 79, 80, 80), + (13, 10, 6, 81, 72, 78, 36, 59, 80, 80), + (13, 10, 8, 46, 47, 60, 77, 79, 77, 77), + (13, 10, 9, 63, 61, 72, 75, 79, 85, 85), + (13, 11, 1, 79, 76, 79, 41, 58, 82, 82), + (13, 11, 2, 76, 73, 77, 75, 71, 89, 89), + (13, 11, 3, 66, 80, 76, 70, 69, 87, 87), + (13, 11, 5, 48, 59, 64, 78, 78, 80, 80), + (13, 11, 6, 78, 76, 78, 39, 58, 81, 81), + (13, 11, 7, 73, 68, 77, 77, 75, 89, 89), + (13, 11, 8, 41, 53, 61, 78, 78, 77, 77), + (14, 1, 1, 78, 73, 78, 42, 60, 81, 81), + (14, 1, 2, 79, 69, 78, 71, 72, 89, 89), + (14, 1, 4, 73, 78, 72, 49, 64, 82, 82), + (14, 1, 5, 49, 55, 63, 78, 78, 80, 80), + (14, 1, 6, 78, 73, 77, 40, 60, 81, 81), + (14, 1, 8, 42, 49, 60, 77, 78, 76, 76), + (14, 1, 9, 60, 63, 71, 77, 78, 85, 85), + (14, 2, 1, 77, 75, 77, 46, 57, 81, 81), + (14, 2, 3, 63, 79, 74, 72, 67, 86, 86), + (14, 2, 4, 71, 79, 71, 53, 60, 82, 82), + (14, 2, 6, 78, 75, 77, 44, 57, 81, 81), + (14, 2, 7, 72, 68, 74, 78, 74, 88, 88), + (14, 2, 9, 57, 66, 69, 78, 76, 84, 84), + (14, 3, 1, 77, 76, 77, 43, 61, 82, 82), + (14, 3, 2, 78, 73, 74, 72, 72, 89, 89), + (14, 3, 3, 64, 79, 73, 70, 70, 86, 86), + (14, 3, 4, 72, 79, 70, 50, 64, 82, 82), + (14, 3, 5, 47, 60, 60, 78, 79, 80, 80), + (14, 3, 6, 77, 75, 75, 42, 61, 81, 81), + (14, 4, 1, 80, 70, 78, 42, 60, 81, 81), + (14, 4, 3, 68, 77, 75, 70, 70, 87, 87), + (14, 4, 4, 74, 76, 72, 49, 63, 82, 82), + (14, 4, 5, 53, 50, 64, 80, 79, 80, 80), + (14, 4, 6, 79, 70, 77, 40, 60, 80, 80), + (14, 4, 11, 70, 64, 72, 75, 77, 87, 87), + (14, 5, 1, 77, 74, 76, 45, 55, 81, 81), + (14, 5, 4, 73, 79, 70, 52, 59, 81, 81), + (14, 5, 5, 50, 58, 62, 78, 76, 80, 80), + (14, 5, 6, 78, 74, 76, 43, 55, 80, 80), + (14, 5, 8, 43, 52, 59, 78, 75, 76, 76), + (14, 5, 9, 61, 65, 70, 78, 75, 85, 85), + (14, 6, 1, 75, 76, 77, 49, 58, 82, 82), + (14, 6, 3, 61, 80, 74, 74, 68, 87, 87), + (14, 6, 6, 76, 76, 76, 47, 58, 82, 82), + (14, 6, 7, 71, 70, 74, 79, 74, 89, 89), + (14, 6, 11, 65, 72, 69, 78, 79, 88, 88), + (14, 7, 1, 80, 71, 78, 38, 60, 80, 80), + (14, 7, 4, 75, 77, 73, 46, 63, 82, 82), + (14, 7, 6, 79, 71, 78, 36, 60, 80, 80), + (14, 7, 8, 49, 46, 61, 77, 78, 77, 77), + (14, 7, 9, 65, 60, 71, 76, 78, 85, 85), + (14, 8, 1, 78, 72, 77, 47, 59, 82, 82), + (14, 8, 3, 64, 77, 74, 74, 69, 87, 87), + (14, 8, 4, 72, 77, 71, 54, 62, 82, 82), + (14, 8, 5, 48, 53, 62, 79, 77, 79, 79), + (14, 8, 6, 77, 72, 76, 46, 59, 81, 81), + (14, 8, 7, 72, 64, 75, 78, 75, 88, 88), + (14, 8, 8, 41, 47, 59, 79, 77, 76, 76), + (14, 10, 2, 78, 68, 76, 68, 72, 87, 87), + (14, 10, 3, 68, 76, 75, 66, 70, 86, 86), + (14, 10, 4, 74, 77, 72, 45, 64, 82, 82), + (14, 10, 5, 53, 53, 64, 76, 78, 80, 80), + (14, 10, 6, 80, 71, 77, 36, 59, 80, 80), + (14, 10, 8, 46, 47, 60, 76, 78, 76, 76), + (14, 10, 9, 63, 61, 71, 75, 78, 85, 85), + (14, 11, 1, 78, 75, 78, 41, 58, 81, 81), + (14, 11, 2, 75, 72, 76, 74, 71, 89, 89), + (14, 11, 3, 64, 79, 75, 69, 68, 86, 86), + (14, 11, 5, 48, 59, 64, 77, 76, 80, 80), + (14, 11, 6, 77, 75, 77, 39, 58, 80, 80), + (14, 11, 7, 72, 68, 76, 76, 74, 88, 88), + (14, 11, 8, 41, 53, 61, 77, 77, 77, 77), + (15, 1, 1, 78, 72, 77, 42, 60, 81, 81), + (15, 1, 2, 79, 68, 77, 70, 72, 88, 88), + (15, 1, 4, 72, 77, 72, 49, 64, 82, 82), + (15, 1, 5, 49, 55, 63, 77, 77, 79, 79), + (15, 1, 6, 77, 72, 76, 40, 60, 80, 80), + (15, 1, 8, 42, 49, 60, 77, 78, 76, 76), + (15, 1, 9, 60, 63, 71, 76, 78, 84, 84), + (15, 2, 1, 76, 74, 76, 46, 57, 81, 81), + (15, 2, 3, 63, 78, 73, 71, 67, 85, 85), + (15, 2, 4, 70, 78, 70, 53, 60, 81, 81), + (15, 2, 6, 77, 74, 77, 44, 57, 81, 81), + (15, 2, 7, 71, 67, 74, 77, 73, 87, 87), + (15, 2, 9, 57, 65, 69, 77, 76, 84, 84), + (15, 3, 1, 77, 75, 76, 43, 61, 81, 81), + (15, 3, 2, 78, 71, 73, 71, 72, 88, 88), + (15, 3, 3, 64, 78, 72, 69, 70, 86, 86), + (15, 3, 4, 71, 79, 69, 50, 63, 81, 81), + (15, 3, 5, 47, 60, 60, 77, 78, 80, 80), + (15, 3, 6, 76, 75, 75, 42, 61, 81, 81), + (15, 4, 1, 79, 69, 78, 42, 60, 81, 81), + (15, 4, 3, 67, 76, 74, 69, 70, 86, 86), + (15, 4, 4, 74, 75, 72, 49, 63, 82, 82), + (15, 4, 5, 53, 50, 63, 80, 78, 80, 80), + (15, 4, 6, 78, 69, 77, 40, 60, 80, 80), + (15, 4, 11, 70, 64, 71, 75, 76, 86, 86), + (15, 5, 1, 77, 73, 75, 45, 55, 80, 80), + (15, 5, 4, 73, 78, 70, 52, 59, 81, 81), + (15, 5, 5, 50, 58, 62, 78, 75, 80, 80), + (15, 5, 6, 77, 73, 76, 43, 55, 80, 80), + (15, 5, 8, 43, 52, 59, 78, 75, 76, 76), + (15, 5, 9, 61, 64, 70, 77, 75, 84, 84), + (15, 6, 1, 74, 75, 76, 46, 58, 81, 81), + (15, 6, 3, 61, 80, 73, 73, 68, 86, 86), + (15, 6, 6, 75, 75, 75, 44, 58, 80, 80), + (15, 6, 7, 70, 69, 74, 78, 74, 88, 88), + (15, 6, 11, 64, 71, 68, 77, 78, 87, 87), + (15, 7, 1, 79, 70, 77, 38, 60, 80, 80), + (15, 7, 4, 75, 76, 73, 46, 63, 82, 82), + (15, 7, 6, 79, 70, 78, 36, 60, 80, 80), + (15, 7, 8, 46, 46, 61, 76, 77, 76, 76), + (15, 7, 9, 63, 60, 71, 75, 77, 85, 85), + (15, 8, 1, 77, 71, 77, 44, 59, 81, 81), + (15, 8, 3, 64, 77, 73, 72, 69, 86, 86), + (15, 8, 4, 72, 76, 71, 52, 62, 82, 82), + (15, 8, 5, 48, 53, 62, 78, 76, 79, 79), + (15, 8, 6, 77, 71, 76, 42, 59, 80, 80), + (15, 8, 7, 72, 64, 74, 78, 74, 87, 87), + (15, 8, 8, 41, 47, 59, 78, 76, 75, 75), + (15, 10, 2, 77, 67, 75, 68, 72, 87, 87), + (15, 10, 3, 67, 76, 74, 66, 70, 86, 86), + (15, 10, 4, 74, 76, 72, 45, 63, 81, 81), + (15, 10, 5, 53, 53, 62, 75, 77, 79, 79), + (15, 10, 6, 79, 70, 76, 36, 59, 79, 79), + (15, 10, 8, 46, 47, 60, 75, 77, 76, 76), + (15, 10, 9, 63, 61, 71, 74, 77, 84, 84), + (15, 11, 1, 77, 74, 78, 41, 58, 81, 81), + (15, 11, 2, 75, 71, 75, 73, 70, 88, 88), + (15, 11, 3, 64, 78, 74, 68, 68, 85, 85), + (15, 11, 5, 48, 59, 63, 76, 76, 79, 79), + (15, 11, 6, 76, 74, 77, 39, 58, 80, 80), + (15, 11, 7, 72, 67, 75, 76, 74, 88, 88), + (15, 11, 8, 41, 53, 61, 76, 76, 76, 76), + (16, 1, 1, 77, 71, 76, 42, 59, 80, 80), + (16, 1, 2, 77, 68, 77, 70, 71, 88, 88), + (16, 1, 4, 71, 76, 71, 47, 63, 81, 81), + (16, 1, 5, 47, 53, 62, 76, 76, 78, 78), + (16, 1, 6, 76, 71, 75, 40, 59, 79, 79), + (16, 1, 8, 42, 47, 58, 76, 76, 75, 75), + (16, 1, 9, 58, 62, 70, 75, 77, 83, 83), + (16, 2, 1, 75, 73, 75, 43, 55, 79, 79), + (16, 2, 3, 62, 77, 72, 71, 66, 85, 85), + (16, 2, 4, 69, 77, 69, 50, 59, 80, 80), + (16, 2, 6, 76, 73, 75, 41, 55, 79, 79), + (16, 2, 7, 70, 67, 72, 76, 72, 87, 87), + (16, 2, 9, 55, 65, 68, 76, 75, 83, 83), + (16, 3, 1, 76, 74, 75, 40, 59, 80, 80), + (16, 3, 2, 77, 71, 72, 71, 71, 87, 87), + (16, 3, 3, 62, 77, 71, 69, 69, 85, 85), + (16, 3, 4, 70, 78, 68, 48, 63, 80, 80), + (16, 3, 5, 47, 58, 59, 76, 77, 79, 79), + (16, 3, 6, 75, 74, 74, 39, 59, 79, 79), + (16, 4, 1, 78, 69, 77, 42, 58, 80, 80), + (16, 4, 3, 67, 75, 73, 69, 69, 85, 85), + (16, 4, 4, 73, 74, 71, 47, 62, 80, 80), + (16, 4, 5, 50, 50, 63, 79, 77, 79, 79), + (16, 4, 6, 77, 69, 75, 40, 58, 79, 79), + (16, 4, 11, 69, 63, 71, 74, 75, 85, 85), + (16, 5, 1, 76, 73, 74, 42, 55, 79, 79), + (16, 5, 4, 72, 77, 69, 49, 57, 80, 80), + (16, 5, 5, 48, 56, 61, 77, 74, 78, 78), + (16, 5, 6, 76, 72, 74, 40, 55, 79, 79), + (16, 5, 8, 40, 49, 57, 76, 74, 74, 74), + (16, 5, 9, 59, 64, 69, 76, 74, 83, 83), + (16, 6, 1, 74, 75, 75, 46, 56, 80, 80), + (16, 6, 3, 60, 79, 72, 73, 67, 85, 85), + (16, 6, 6, 75, 74, 74, 44, 56, 80, 80), + (16, 6, 7, 69, 69, 72, 78, 73, 87, 87), + (16, 6, 11, 63, 71, 68, 76, 77, 86, 86), + (16, 7, 1, 78, 69, 76, 38, 58, 79, 79), + (16, 7, 4, 75, 75, 72, 46, 62, 81, 81), + (16, 7, 6, 78, 69, 77, 36, 58, 79, 79), + (16, 7, 8, 46, 46, 59, 75, 76, 75, 75), + (16, 7, 9, 63, 59, 70, 74, 76, 84, 84), + (16, 8, 1, 76, 70, 76, 44, 57, 80, 80), + (16, 8, 3, 63, 76, 73, 72, 68, 85, 85), + (16, 8, 4, 71, 75, 70, 52, 61, 81, 81), + (16, 8, 5, 46, 51, 61, 78, 75, 77, 77), + (16, 8, 6, 76, 70, 74, 42, 57, 79, 79), + (16, 8, 7, 72, 62, 73, 77, 73, 86, 86), + (16, 8, 8, 41, 47, 57, 77, 75, 75, 75), + (16, 10, 2, 75, 67, 74, 67, 71, 86, 86), + (16, 10, 3, 67, 75, 73, 65, 69, 85, 85), + (16, 10, 4, 73, 75, 72, 45, 63, 81, 81), + (16, 10, 5, 50, 51, 62, 74, 76, 78, 78), + (16, 10, 6, 78, 69, 75, 36, 57, 78, 78), + (16, 10, 8, 43, 47, 58, 74, 76, 75, 75), + (16, 10, 9, 61, 60, 70, 73, 77, 83, 83), + (16, 11, 1, 76, 73, 77, 41, 56, 80, 80), + (16, 11, 2, 74, 71, 74, 73, 69, 87, 87), + (16, 11, 3, 63, 77, 73, 68, 67, 85, 85), + (16, 11, 5, 46, 57, 63, 75, 75, 78, 78), + (16, 11, 6, 75, 73, 75, 39, 56, 79, 79), + (16, 11, 7, 72, 67, 74, 75, 73, 87, 87), + (16, 11, 8, 41, 50, 59, 75, 75, 75, 75), + (17, 1, 1, 76, 70, 75, 39, 59, 79, 79), + (17, 1, 2, 77, 67, 75, 69, 70, 87, 87), + (17, 1, 4, 70, 75, 70, 47, 63, 80, 80), + (17, 1, 5, 47, 53, 62, 75, 76, 78, 78), + (17, 1, 6, 75, 70, 74, 38, 59, 78, 78), + (17, 1, 8, 39, 47, 58, 75, 76, 74, 74), + (17, 1, 9, 58, 62, 69, 74, 76, 83, 83), + (17, 2, 1, 75, 72, 75, 43, 55, 79, 79), + (17, 2, 3, 62, 76, 70, 69, 65, 84, 84), + (17, 2, 4, 69, 76, 68, 50, 59, 79, 79), + (17, 2, 6, 76, 72, 75, 41, 55, 79, 79), + (17, 2, 7, 70, 65, 72, 76, 71, 86, 86), + (17, 2, 9, 55, 65, 68, 75, 74, 82, 82), + (17, 3, 1, 75, 73, 74, 40, 59, 79, 79), + (17, 3, 2, 76, 70, 71, 70, 70, 86, 86), + (17, 3, 3, 62, 77, 71, 68, 68, 84, 84), + (17, 3, 4, 69, 77, 67, 48, 63, 80, 80), + (17, 3, 5, 45, 58, 59, 76, 77, 78, 78), + (17, 3, 6, 75, 73, 73, 39, 59, 79, 79), + (17, 4, 1, 77, 68, 76, 39, 58, 79, 79), + (17, 4, 3, 65, 74, 72, 68, 68, 84, 84), + (17, 4, 4, 72, 74, 70, 47, 62, 80, 80), + (17, 4, 5, 50, 49, 63, 78, 76, 78, 78), + (17, 4, 6, 77, 68, 75, 38, 58, 78, 78), + (17, 4, 11, 68, 63, 70, 73, 74, 84, 84), + (17, 5, 1, 75, 72, 74, 42, 54, 78, 78), + (17, 5, 4, 71, 76, 68, 49, 57, 79, 79), + (17, 5, 5, 48, 56, 61, 76, 73, 78, 78), + (17, 5, 6, 75, 71, 74, 40, 54, 78, 78), + (17, 5, 8, 40, 49, 57, 76, 73, 74, 74), + (17, 5, 9, 59, 64, 69, 75, 73, 83, 83), + (17, 6, 1, 73, 74, 75, 46, 56, 80, 80), + (17, 6, 3, 60, 78, 70, 72, 66, 84, 84), + (17, 6, 6, 73, 73, 73, 44, 56, 79, 79), + (17, 6, 7, 68, 67, 72, 77, 72, 86, 86), + (17, 6, 11, 63, 69, 67, 75, 77, 85, 85), + (17, 7, 1, 78, 69, 75, 38, 58, 79, 79), + (17, 7, 4, 74, 74, 71, 44, 62, 80, 80), + (17, 7, 6, 77, 69, 76, 36, 58, 78, 78), + (17, 7, 8, 46, 44, 59, 75, 75, 75, 75), + (17, 7, 9, 63, 59, 69, 73, 75, 83, 83), + (17, 8, 1, 76, 70, 75, 44, 57, 79, 79), + (17, 8, 3, 63, 75, 71, 71, 67, 85, 85), + (17, 8, 4, 70, 74, 70, 52, 61, 80, 80), + (17, 8, 5, 46, 51, 61, 76, 75, 77, 77), + (17, 8, 6, 75, 70, 74, 42, 57, 79, 79), + (17, 8, 7, 71, 62, 72, 76, 72, 86, 86), + (17, 8, 8, 38, 45, 57, 77, 75, 73, 73), + (17, 10, 2, 75, 66, 73, 66, 70, 85, 85), + (17, 10, 3, 65, 74, 72, 64, 68, 84, 84), + (17, 10, 4, 72, 74, 71, 43, 63, 80, 80), + (17, 10, 5, 50, 51, 62, 74, 75, 78, 78), + (17, 10, 6, 77, 69, 75, 36, 57, 78, 78), + (17, 10, 8, 43, 45, 58, 73, 76, 74, 74), + (17, 10, 9, 61, 60, 69, 72, 76, 83, 83), + (17, 11, 1, 76, 72, 76, 38, 56, 79, 79), + (17, 11, 2, 73, 69, 73, 72, 68, 86, 86), + (17, 11, 3, 63, 76, 72, 66, 66, 84, 84), + (17, 11, 5, 46, 57, 63, 75, 74, 78, 78), + (17, 11, 6, 74, 72, 75, 37, 56, 78, 78), + (17, 11, 7, 71, 65, 73, 74, 72, 86, 86), + (17, 11, 8, 38, 50, 59, 75, 74, 74, 74), + (18, 1, 1, 75, 70, 75, 39, 59, 79, 79), + (18, 1, 2, 76, 66, 75, 68, 69, 86, 86), + (18, 1, 4, 70, 75, 69, 47, 61, 79, 79), + (18, 1, 5, 47, 53, 60, 74, 75, 77, 77), + (18, 1, 6, 74, 70, 74, 38, 59, 78, 78), + (18, 1, 8, 39, 47, 58, 74, 75, 74, 74), + (18, 1, 9, 58, 60, 69, 73, 75, 82, 82), + (18, 2, 1, 74, 71, 74, 43, 55, 78, 78), + (18, 2, 3, 60, 75, 70, 68, 65, 83, 83), + (18, 2, 4, 68, 76, 67, 50, 58, 79, 79), + (18, 2, 6, 75, 71, 74, 41, 55, 78, 78), + (18, 2, 7, 69, 65, 71, 75, 70, 85, 85), + (18, 2, 9, 55, 63, 67, 74, 73, 82, 82), + (18, 3, 1, 74, 72, 74, 40, 59, 79, 79), + (18, 3, 2, 75, 69, 70, 69, 69, 85, 85), + (18, 3, 3, 61, 76, 69, 67, 67, 83, 83), + (18, 3, 4, 68, 76, 66, 48, 61, 79, 79), + (18, 3, 5, 45, 58, 58, 74, 76, 77, 77), + (18, 3, 6, 74, 72, 72, 39, 59, 78, 78), + (18, 4, 1, 76, 67, 75, 39, 58, 78, 78), + (18, 4, 3, 65, 73, 71, 67, 66, 84, 84), + (18, 4, 4, 71, 73, 69, 47, 60, 79, 79), + (18, 4, 5, 50, 49, 61, 77, 75, 78, 78), + (18, 4, 6, 76, 67, 73, 38, 58, 77, 77), + (18, 4, 11, 68, 61, 69, 72, 73, 84, 84), + (18, 5, 1, 74, 71, 73, 42, 54, 78, 78), + (18, 5, 4, 70, 75, 67, 49, 56, 79, 79), + (18, 5, 5, 48, 56, 59, 75, 72, 77, 77), + (18, 5, 6, 74, 70, 73, 40, 54, 77, 77), + (18, 5, 8, 40, 49, 57, 75, 72, 74, 74), + (18, 5, 9, 59, 62, 68, 74, 72, 82, 82), + (18, 6, 1, 72, 73, 74, 46, 56, 79, 79), + (18, 6, 3, 59, 77, 70, 71, 65, 83, 83), + (18, 6, 6, 73, 72, 73, 44, 56, 79, 79), + (18, 6, 7, 68, 67, 71, 76, 71, 86, 86), + (18, 6, 11, 62, 69, 66, 74, 76, 85, 85), + (18, 7, 1, 76, 69, 74, 35, 58, 78, 78), + (18, 7, 4, 73, 73, 70, 44, 60, 79, 79), + (18, 7, 6, 76, 68, 75, 34, 58, 77, 77), + (18, 7, 8, 46, 44, 59, 74, 74, 74, 74), + (18, 7, 9, 62, 58, 69, 73, 75, 82, 82), + (18, 8, 1, 75, 69, 74, 44, 57, 79, 79), + (18, 8, 3, 62, 74, 70, 70, 66, 83, 83), + (18, 8, 4, 69, 74, 69, 52, 59, 80, 80), + (18, 8, 5, 46, 51, 59, 76, 74, 76, 76), + (18, 8, 6, 74, 69, 73, 42, 57, 78, 78), + (18, 8, 7, 70, 61, 71, 75, 71, 85, 85), + (18, 8, 8, 38, 45, 57, 76, 74, 73, 73), + (18, 10, 2, 74, 65, 72, 65, 69, 84, 84), + (18, 10, 3, 65, 73, 71, 64, 67, 83, 83), + (18, 10, 4, 71, 74, 70, 43, 61, 79, 79), + (18, 10, 5, 50, 51, 60, 72, 74, 77, 77), + (18, 10, 6, 76, 68, 73, 34, 57, 77, 77), + (18, 10, 8, 43, 45, 58, 72, 74, 74, 74), + (18, 10, 9, 59, 58, 69, 72, 75, 82, 82), + (18, 11, 1, 75, 71, 75, 38, 56, 78, 78), + (18, 11, 2, 72, 68, 72, 71, 67, 85, 85), + (18, 11, 3, 62, 75, 71, 65, 65, 83, 83), + (18, 11, 5, 46, 57, 61, 74, 73, 77, 77), + (18, 11, 6, 73, 71, 73, 37, 56, 77, 77), + (18, 11, 7, 70, 65, 72, 73, 71, 85, 85), + (18, 11, 8, 38, 50, 59, 74, 73, 74, 74), + (19, 1, 1, 74, 70, 74, 39, 57, 78, 78), + (19, 1, 2, 76, 66, 74, 67, 68, 85, 85), + (19, 1, 4, 69, 74, 68, 47, 61, 79, 79), + (19, 1, 5, 47, 53, 60, 73, 74, 77, 77), + (19, 1, 6, 74, 69, 72, 38, 57, 77, 77), + (19, 1, 8, 39, 47, 56, 73, 74, 73, 73), + (19, 1, 9, 56, 60, 68, 72, 75, 81, 81), + (19, 2, 1, 73, 70, 73, 43, 54, 78, 78), + (19, 2, 3, 60, 74, 69, 68, 64, 82, 82), + (19, 2, 4, 67, 75, 66, 50, 58, 78, 78), + (19, 2, 6, 74, 70, 73, 41, 54, 77, 77), + (19, 2, 7, 68, 64, 70, 74, 70, 84, 84), + (19, 2, 9, 54, 63, 66, 74, 73, 81, 81), + (19, 3, 1, 74, 71, 72, 40, 57, 78, 78), + (19, 3, 2, 75, 68, 70, 68, 68, 85, 85), + (19, 3, 3, 61, 75, 68, 67, 67, 83, 83), + (19, 3, 4, 67, 75, 65, 48, 61, 78, 78), + (19, 3, 5, 45, 56, 58, 74, 75, 76, 76), + (19, 3, 6, 73, 71, 71, 39, 57, 77, 77), + (19, 4, 1, 76, 67, 74, 39, 56, 77, 77), + (19, 4, 3, 64, 73, 71, 67, 66, 83, 83), + (19, 4, 4, 70, 72, 68, 47, 60, 78, 78), + (19, 4, 5, 50, 49, 61, 77, 75, 77, 77), + (19, 4, 6, 75, 66, 73, 38, 56, 77, 77), + (19, 4, 11, 67, 60, 68, 71, 72, 83, 83), + (19, 5, 1, 73, 70, 72, 42, 52, 77, 77), + (19, 5, 4, 69, 74, 67, 49, 56, 78, 78), + (19, 5, 5, 48, 54, 59, 74, 71, 76, 76), + (19, 5, 6, 73, 70, 72, 40, 52, 76, 76), + (19, 5, 8, 40, 49, 55, 74, 71, 73, 73), + (19, 5, 9, 57, 62, 67, 73, 72, 81, 81), + (19, 6, 1, 71, 72, 73, 46, 55, 78, 78), + (19, 6, 3, 59, 76, 69, 70, 65, 83, 83), + (19, 6, 6, 72, 72, 71, 44, 55, 78, 78), + (19, 6, 7, 67, 66, 70, 75, 70, 85, 85), + (19, 6, 11, 61, 68, 65, 74, 75, 84, 84), + (19, 7, 1, 76, 68, 74, 35, 56, 77, 77), + (19, 7, 4, 72, 72, 69, 44, 60, 79, 79), + (19, 7, 6, 75, 67, 74, 34, 56, 76, 76), + (19, 7, 8, 46, 44, 57, 73, 73, 74, 74), + (19, 7, 9, 62, 58, 68, 72, 74, 82, 82), + (19, 8, 1, 74, 68, 73, 44, 55, 78, 78), + (19, 8, 3, 62, 74, 69, 69, 66, 83, 83), + (19, 8, 4, 68, 73, 68, 52, 59, 79, 79), + (19, 8, 5, 46, 51, 59, 75, 73, 76, 76), + (19, 8, 6, 73, 68, 72, 42, 55, 77, 77), + (19, 8, 7, 69, 61, 71, 75, 71, 84, 84), + (19, 8, 8, 38, 45, 55, 75, 73, 72, 72), + (19, 10, 2, 73, 65, 71, 65, 68, 84, 84), + (19, 10, 3, 64, 73, 70, 63, 67, 82, 82), + (19, 10, 4, 70, 73, 69, 43, 61, 78, 78), + (19, 10, 5, 50, 51, 60, 72, 73, 77, 77), + (19, 10, 6, 75, 67, 73, 34, 56, 76, 76), + (19, 10, 8, 43, 45, 57, 72, 74, 73, 73), + (19, 10, 9, 59, 58, 68, 70, 74, 81, 81), + (19, 11, 1, 74, 70, 74, 38, 55, 77, 77), + (19, 11, 2, 72, 68, 72, 70, 66, 85, 85), + (19, 11, 3, 62, 74, 71, 65, 65, 82, 82), + (19, 11, 5, 46, 55, 61, 73, 73, 76, 76), + (19, 11, 6, 73, 70, 73, 37, 55, 76, 76), + (19, 11, 7, 69, 64, 72, 72, 70, 84, 84), + (19, 11, 8, 38, 50, 57, 73, 73, 73, 73), + (20, 1, 1, 73, 69, 73, 39, 57, 77, 77), + (20, 1, 2, 74, 65, 74, 67, 68, 85, 85), + (20, 1, 4, 68, 72, 68, 47, 60, 78, 78), + (20, 1, 5, 47, 51, 59, 72, 73, 76, 76), + (20, 1, 6, 73, 68, 72, 38, 57, 77, 77), + (20, 1, 8, 39, 47, 56, 72, 73, 73, 73), + (20, 1, 9, 56, 59, 66, 72, 73, 80, 80), + (20, 2, 1, 72, 70, 72, 43, 54, 77, 77), + (20, 2, 3, 59, 74, 68, 67, 63, 81, 81), + (20, 2, 4, 66, 74, 66, 48, 56, 77, 77), + (20, 2, 6, 73, 69, 72, 41, 54, 77, 77), + (20, 2, 7, 67, 64, 69, 73, 69, 84, 84), + (20, 2, 9, 54, 61, 66, 73, 72, 80, 80), + (20, 3, 1, 73, 70, 72, 40, 57, 78, 78), + (20, 3, 2, 74, 68, 69, 68, 67, 84, 84), + (20, 3, 3, 60, 74, 68, 66, 66, 82, 82), + (20, 3, 4, 67, 74, 65, 48, 60, 78, 78), + (20, 3, 5, 45, 56, 56, 73, 74, 76, 76), + (20, 3, 6, 72, 70, 70, 39, 57, 77, 77), + (20, 4, 1, 75, 66, 74, 39, 56, 77, 77), + (20, 4, 3, 64, 71, 70, 66, 65, 82, 82), + (20, 4, 4, 70, 71, 67, 47, 59, 78, 78), + (20, 4, 5, 48, 47, 60, 76, 74, 76, 76), + (20, 4, 6, 74, 65, 72, 38, 56, 76, 76), + (20, 4, 11, 66, 60, 68, 70, 72, 82, 82), + (20, 5, 1, 72, 70, 71, 42, 52, 76, 76), + (20, 5, 4, 68, 73, 67, 49, 56, 78, 78), + (20, 5, 5, 48, 54, 58, 73, 70, 76, 76), + (20, 5, 6, 72, 70, 71, 40, 52, 76, 76), + (20, 5, 8, 40, 49, 55, 73, 70, 73, 73), + (20, 5, 9, 57, 60, 67, 72, 71, 81, 81), + (20, 6, 1, 70, 71, 72, 46, 55, 78, 78), + (20, 6, 3, 57, 75, 68, 70, 64, 82, 82), + (20, 6, 6, 71, 71, 71, 44, 55, 77, 77), + (20, 6, 7, 66, 66, 69, 75, 69, 84, 84), + (20, 6, 11, 61, 67, 65, 72, 75, 83, 83), + (20, 7, 1, 75, 67, 73, 35, 56, 76, 76), + (20, 7, 4, 71, 71, 68, 44, 59, 78, 78), + (20, 7, 6, 74, 67, 74, 34, 56, 76, 76), + (20, 7, 8, 46, 44, 57, 72, 72, 73, 73), + (20, 7, 9, 62, 56, 67, 71, 73, 81, 81), + (20, 8, 1, 73, 67, 73, 44, 55, 78, 78), + (20, 8, 3, 60, 73, 69, 69, 65, 82, 82), + (20, 8, 4, 67, 72, 68, 49, 58, 78, 78), + (20, 8, 5, 46, 50, 58, 74, 72, 75, 75), + (20, 8, 6, 72, 67, 71, 42, 55, 77, 77), + (20, 8, 7, 68, 60, 70, 74, 70, 83, 83), + (20, 8, 8, 38, 45, 55, 74, 72, 72, 72), + (20, 10, 2, 72, 64, 71, 64, 67, 82, 82), + (20, 10, 3, 64, 72, 70, 62, 66, 82, 82), + (20, 10, 4, 70, 72, 68, 43, 60, 77, 77), + (20, 10, 5, 48, 50, 59, 71, 73, 75, 75), + (20, 10, 6, 74, 66, 72, 34, 56, 75, 75), + (20, 10, 8, 43, 45, 57, 71, 73, 73, 73), + (20, 10, 9, 59, 57, 67, 70, 73, 80, 80), + (20, 11, 1, 73, 70, 74, 38, 55, 77, 77), + (20, 11, 2, 70, 67, 71, 70, 66, 84, 84), + (20, 11, 3, 60, 74, 70, 64, 64, 81, 81), + (20, 11, 5, 46, 55, 60, 72, 72, 76, 76), + (20, 11, 6, 72, 69, 72, 37, 55, 76, 76), + (20, 11, 7, 68, 64, 71, 71, 69, 84, 84), + (20, 11, 8, 38, 48, 57, 72, 72, 72, 72), + (21, 1, 1, 73, 68, 72, 39, 57, 77, 77), + (21, 1, 2, 74, 64, 72, 66, 67, 84, 84), + (21, 1, 4, 67, 72, 67, 45, 60, 77, 77), + (21, 1, 5, 45, 51, 59, 71, 72, 75, 75), + (21, 1, 6, 72, 67, 70, 38, 57, 76, 76), + (21, 1, 8, 39, 45, 56, 71, 72, 72, 72), + (21, 1, 9, 56, 59, 66, 70, 73, 80, 80), + (21, 2, 1, 72, 70, 71, 43, 54, 77, 77), + (21, 2, 3, 59, 72, 67, 66, 62, 80, 80), + (21, 2, 4, 65, 73, 65, 48, 56, 76, 76), + (21, 2, 6, 73, 69, 71, 41, 54, 77, 77), + (21, 2, 7, 66, 62, 69, 73, 68, 83, 83), + (21, 2, 9, 54, 61, 65, 72, 71, 80, 80), + (21, 3, 1, 72, 69, 71, 40, 56, 77, 77), + (21, 3, 2, 73, 67, 68, 66, 67, 83, 83), + (21, 3, 3, 58, 73, 67, 65, 65, 81, 81), + (21, 3, 4, 66, 73, 64, 46, 60, 77, 77), + (21, 3, 5, 45, 56, 56, 72, 73, 75, 75), + (21, 3, 6, 71, 69, 69, 39, 56, 76, 76), + (21, 4, 1, 74, 65, 72, 39, 56, 76, 76), + (21, 4, 3, 62, 71, 69, 65, 64, 81, 81), + (21, 4, 4, 69, 70, 67, 45, 59, 77, 77), + (21, 4, 5, 48, 47, 60, 75, 73, 75, 75), + (21, 4, 6, 73, 65, 71, 38, 56, 76, 76), + (21, 4, 11, 66, 59, 66, 69, 70, 81, 81), + (21, 5, 1, 72, 69, 70, 42, 52, 76, 76), + (21, 5, 4, 67, 73, 66, 47, 55, 76, 76), + (21, 5, 5, 46, 54, 58, 72, 70, 75, 75), + (21, 5, 6, 72, 69, 70, 40, 52, 75, 75), + (21, 5, 8, 40, 47, 55, 72, 70, 72, 72), + (21, 5, 9, 56, 60, 66, 71, 70, 80, 80), + (21, 6, 1, 69, 70, 71, 46, 55, 77, 77), + (21, 6, 3, 57, 74, 67, 69, 63, 81, 81), + (21, 6, 6, 70, 70, 70, 44, 55, 77, 77), + (21, 6, 7, 65, 64, 69, 74, 69, 83, 83), + (21, 6, 11, 60, 67, 64, 72, 73, 82, 82), + (21, 7, 1, 74, 66, 72, 35, 56, 76, 76), + (21, 7, 4, 70, 71, 68, 44, 59, 77, 77), + (21, 7, 6, 73, 66, 73, 34, 56, 75, 75), + (21, 7, 8, 46, 44, 56, 71, 71, 72, 72), + (21, 7, 9, 60, 56, 67, 70, 72, 80, 80), + (21, 8, 1, 72, 67, 72, 44, 55, 77, 77), + (21, 8, 3, 59, 72, 68, 68, 64, 81, 81), + (21, 8, 4, 66, 71, 67, 49, 58, 77, 77), + (21, 8, 5, 44, 50, 58, 73, 71, 74, 74), + (21, 8, 6, 72, 66, 70, 42, 55, 76, 76), + (21, 8, 7, 67, 58, 69, 73, 69, 82, 82), + (21, 8, 8, 38, 45, 55, 73, 71, 72, 72), + (21, 10, 2, 71, 62, 69, 63, 67, 82, 82), + (21, 10, 3, 62, 70, 69, 61, 65, 81, 81), + (21, 10, 4, 69, 71, 68, 43, 60, 77, 77), + (21, 10, 5, 48, 50, 59, 70, 72, 75, 75), + (21, 10, 6, 73, 65, 71, 34, 56, 75, 75), + (21, 10, 8, 43, 45, 55, 70, 72, 72, 72), + (21, 10, 9, 58, 57, 67, 69, 73, 80, 80), + (21, 11, 1, 72, 70, 72, 38, 55, 76, 76), + (21, 11, 2, 70, 66, 70, 70, 65, 83, 83), + (21, 11, 3, 59, 72, 69, 63, 63, 80, 80), + (21, 11, 5, 44, 55, 60, 71, 70, 75, 75), + (21, 11, 6, 71, 69, 71, 37, 55, 75, 75), + (21, 11, 7, 67, 62, 70, 71, 69, 83, 83), + (21, 11, 8, 38, 48, 56, 71, 71, 72, 72), + (22, 1, 1, 72, 67, 71, 39, 55, 76, 76), + (22, 1, 2, 73, 64, 72, 65, 66, 83, 83), + (22, 1, 4, 66, 71, 67, 45, 58, 76, 76), + (22, 1, 5, 45, 51, 57, 71, 71, 74, 74), + (22, 1, 6, 71, 67, 70, 38, 55, 75, 75), + (22, 1, 8, 39, 45, 55, 71, 71, 71, 71), + (22, 1, 9, 55, 57, 65, 70, 72, 79, 79), + (22, 2, 1, 71, 69, 70, 43, 52, 76, 76), + (22, 2, 3, 58, 72, 67, 65, 61, 80, 80), + (22, 2, 4, 64, 72, 64, 48, 56, 76, 76), + (22, 2, 6, 72, 68, 71, 41, 52, 76, 76), + (22, 2, 7, 66, 62, 68, 72, 67, 82, 82), + (22, 2, 9, 52, 60, 64, 71, 70, 78, 78), + (22, 3, 1, 71, 69, 70, 40, 56, 76, 76), + (22, 3, 2, 72, 66, 67, 65, 66, 82, 82), + (22, 3, 3, 58, 72, 66, 63, 64, 80, 80), + (22, 3, 4, 65, 72, 63, 46, 58, 76, 76), + (22, 3, 5, 43, 54, 56, 71, 72, 74, 74), + (22, 3, 6, 70, 69, 69, 39, 56, 75, 75), + (22, 4, 1, 73, 64, 72, 39, 55, 76, 76), + (22, 4, 3, 62, 70, 68, 65, 63, 81, 81), + (22, 4, 4, 68, 69, 66, 45, 57, 76, 76), + (22, 4, 5, 48, 47, 58, 74, 72, 75, 75), + (22, 4, 6, 72, 64, 70, 38, 55, 75, 75), + (22, 4, 11, 64, 59, 65, 68, 70, 80, 80), + (22, 5, 1, 70, 68, 69, 42, 50, 75, 75), + (22, 5, 4, 67, 72, 65, 47, 55, 76, 76), + (22, 5, 5, 46, 54, 56, 71, 69, 74, 74), + (22, 5, 6, 71, 68, 69, 40, 50, 75, 75), + (22, 5, 8, 40, 47, 54, 71, 69, 71, 71), + (22, 5, 9, 56, 59, 65, 71, 70, 79, 79), + (22, 6, 1, 68, 69, 70, 42, 53, 76, 76), + (22, 6, 3, 56, 73, 67, 68, 62, 80, 80), + (22, 6, 6, 69, 69, 69, 40, 53, 75, 75), + (22, 6, 7, 64, 64, 68, 73, 67, 82, 82), + (22, 6, 11, 59, 65, 63, 71, 73, 81, 81), + (22, 7, 1, 73, 65, 71, 35, 55, 75, 75), + (22, 7, 4, 69, 70, 67, 42, 57, 76, 76), + (22, 7, 6, 72, 65, 72, 34, 55, 75, 75), + (22, 7, 8, 42, 42, 56, 70, 71, 71, 71), + (22, 7, 9, 60, 56, 66, 69, 71, 79, 79), + (22, 8, 1, 71, 66, 71, 44, 54, 76, 76), + (22, 8, 3, 59, 71, 67, 67, 63, 80, 80), + (22, 8, 4, 65, 70, 66, 49, 56, 76, 76), + (22, 8, 5, 44, 50, 56, 72, 70, 73, 73), + (22, 8, 6, 71, 65, 69, 42, 54, 75, 75), + (22, 8, 7, 67, 58, 68, 73, 68, 82, 82), + (22, 8, 8, 38, 43, 54, 72, 70, 70, 70), + (22, 10, 2, 71, 62, 69, 62, 66, 81, 81), + (22, 10, 3, 62, 70, 68, 61, 64, 80, 80), + (22, 10, 4, 68, 70, 67, 41, 58, 76, 76), + (22, 10, 5, 48, 50, 57, 69, 71, 74, 74), + (22, 10, 6, 73, 65, 70, 34, 54, 74, 74), + (22, 10, 8, 43, 43, 55, 69, 71, 71, 71), + (22, 10, 9, 58, 56, 66, 68, 71, 79, 79), + (22, 11, 1, 71, 69, 72, 38, 53, 76, 76), + (22, 11, 2, 69, 65, 69, 69, 64, 82, 82), + (22, 11, 3, 59, 72, 68, 63, 62, 80, 80), + (22, 11, 5, 44, 55, 58, 70, 70, 74, 74), + (22, 11, 6, 70, 68, 70, 37, 53, 75, 75), + (22, 11, 7, 67, 62, 69, 70, 67, 82, 82), + (22, 11, 8, 38, 48, 56, 70, 70, 71, 71), + (23, 1, 1, 71, 66, 70, 39, 55, 75, 75), + (23, 1, 2, 72, 63, 71, 64, 65, 82, 82), + (23, 1, 4, 65, 70, 66, 45, 58, 76, 76), + (23, 1, 5, 45, 50, 57, 69, 70, 73, 73), + (23, 1, 6, 70, 66, 69, 38, 55, 75, 75), + (23, 1, 8, 39, 45, 55, 70, 70, 71, 71), + (23, 1, 9, 55, 57, 64, 68, 71, 78, 78), + (23, 2, 1, 70, 68, 70, 40, 52, 75, 75), + (23, 2, 3, 56, 71, 66, 65, 61, 79, 79), + (23, 2, 4, 63, 71, 63, 48, 55, 75, 75), + (23, 2, 6, 71, 67, 70, 38, 52, 75, 75), + (23, 2, 7, 65, 61, 66, 71, 66, 81, 81), + (23, 2, 9, 52, 60, 63, 70, 69, 78, 78), + (23, 3, 1, 70, 68, 70, 40, 56, 76, 76), + (23, 3, 2, 71, 66, 66, 64, 65, 82, 82), + (23, 3, 3, 57, 71, 65, 63, 63, 79, 79), + (23, 3, 4, 64, 71, 63, 46, 58, 75, 75), + (23, 3, 5, 43, 54, 55, 70, 71, 73, 73), + (23, 3, 6, 70, 68, 68, 39, 56, 75, 75), + (23, 4, 1, 72, 63, 71, 39, 55, 75, 75), + (23, 4, 3, 61, 69, 67, 64, 63, 80, 80), + (23, 4, 4, 67, 68, 65, 45, 57, 75, 75), + (23, 4, 5, 48, 47, 58, 73, 71, 75, 75), + (23, 4, 6, 71, 63, 69, 38, 55, 74, 74), + (23, 4, 11, 63, 58, 64, 68, 68, 79, 79), + (23, 5, 1, 70, 67, 69, 39, 50, 74, 74), + (23, 5, 4, 66, 71, 64, 47, 53, 75, 75), + (23, 5, 5, 46, 52, 56, 70, 68, 73, 73), + (23, 5, 6, 70, 67, 69, 37, 50, 74, 74), + (23, 5, 8, 40, 47, 54, 70, 68, 71, 71), + (23, 5, 9, 56, 59, 64, 69, 68, 78, 78), + (23, 6, 1, 68, 68, 70, 42, 53, 75, 75), + (23, 6, 3, 56, 73, 66, 68, 62, 80, 80), + (23, 6, 6, 69, 68, 68, 40, 53, 75, 75), + (23, 6, 7, 64, 63, 66, 72, 67, 81, 81), + (23, 6, 11, 59, 64, 62, 70, 72, 81, 81), + (23, 7, 1, 72, 64, 70, 35, 55, 74, 74), + (23, 7, 4, 68, 69, 66, 42, 57, 75, 75), + (23, 7, 6, 71, 64, 71, 34, 55, 74, 74), + (23, 7, 8, 42, 42, 56, 69, 69, 71, 71), + (23, 7, 9, 58, 55, 65, 69, 70, 78, 78), + (23, 8, 1, 71, 65, 70, 41, 54, 75, 75), + (23, 8, 3, 58, 70, 66, 67, 63, 80, 80), + (23, 8, 4, 65, 69, 65, 49, 56, 76, 76), + (23, 8, 5, 44, 48, 56, 71, 69, 73, 73), + (23, 8, 6, 70, 65, 69, 39, 54, 74, 74), + (23, 8, 7, 65, 57, 67, 72, 67, 81, 81), + (23, 8, 8, 38, 43, 54, 71, 69, 70, 70), + (23, 10, 2, 69, 61, 68, 61, 65, 80, 80), + (23, 10, 3, 61, 69, 67, 60, 63, 79, 79), + (23, 10, 4, 67, 69, 66, 41, 58, 75, 75), + (23, 10, 5, 48, 48, 57, 68, 70, 73, 73), + (23, 10, 6, 71, 64, 69, 34, 54, 73, 73), + (23, 10, 8, 40, 43, 55, 68, 70, 70, 70), + (23, 10, 9, 58, 56, 65, 67, 71, 78, 78), + (23, 11, 1, 71, 68, 71, 38, 53, 75, 75), + (23, 11, 2, 68, 65, 68, 68, 63, 81, 81), + (23, 11, 3, 58, 71, 67, 62, 62, 79, 79), + (23, 11, 5, 44, 53, 58, 69, 69, 73, 73), + (23, 11, 6, 69, 67, 69, 37, 53, 74, 74), + (23, 11, 7, 65, 61, 68, 69, 67, 81, 81), + (23, 11, 8, 38, 48, 56, 69, 69, 71, 71), + (24, 1, 1, 70, 65, 70, 37, 54, 74, 74), + (24, 1, 2, 72, 62, 70, 63, 64, 81, 81), + (24, 1, 4, 64, 69, 65, 45, 57, 75, 75), + (24, 1, 5, 45, 50, 56, 69, 69, 73, 73), + (24, 1, 6, 69, 65, 68, 35, 54, 73, 73), + (24, 1, 8, 37, 45, 53, 68, 70, 70, 70), + (24, 1, 9, 53, 56, 64, 68, 70, 77, 77), + (24, 2, 1, 69, 67, 69, 40, 52, 74, 74), + (24, 2, 3, 56, 70, 65, 64, 60, 78, 78), + (24, 2, 4, 63, 70, 62, 48, 55, 75, 75), + (24, 2, 6, 70, 67, 69, 38, 52, 74, 74), + (24, 2, 7, 64, 61, 66, 71, 66, 80, 80), + (24, 2, 9, 52, 58, 63, 69, 69, 77, 77), + (24, 3, 1, 69, 67, 68, 38, 54, 74, 74), + (24, 3, 2, 71, 64, 66, 63, 64, 81, 81), + (24, 3, 3, 57, 70, 65, 62, 63, 78, 78), + (24, 3, 4, 63, 70, 62, 46, 57, 74, 74), + (24, 3, 5, 43, 54, 55, 69, 70, 73, 73), + (24, 3, 6, 69, 67, 67, 36, 54, 73, 73), + (24, 4, 1, 71, 62, 70, 37, 53, 74, 74), + (24, 4, 3, 61, 68, 67, 63, 62, 79, 79), + (24, 4, 4, 66, 68, 64, 45, 56, 75, 75), + (24, 4, 5, 48, 45, 57, 73, 70, 74, 74), + (24, 4, 6, 71, 62, 68, 35, 53, 73, 73), + (24, 4, 11, 63, 57, 63, 67, 68, 79, 79), + (24, 5, 1, 69, 66, 67, 39, 50, 73, 73), + (24, 5, 4, 65, 69, 63, 47, 53, 74, 74), + (24, 5, 5, 46, 52, 55, 70, 67, 73, 73), + (24, 5, 6, 69, 66, 68, 37, 50, 73, 73), + (24, 5, 8, 38, 47, 52, 69, 67, 70, 70), + (24, 5, 9, 54, 57, 64, 69, 68, 77, 77), + (24, 6, 1, 66, 67, 69, 42, 51, 74, 74), + (24, 6, 3, 55, 72, 65, 66, 61, 79, 79), + (24, 6, 6, 68, 67, 67, 40, 51, 74, 74), + (24, 6, 7, 63, 61, 66, 71, 66, 80, 80), + (24, 6, 11, 58, 64, 61, 69, 71, 80, 80), + (24, 7, 1, 71, 63, 69, 35, 53, 74, 74), + (24, 7, 4, 67, 68, 65, 42, 56, 75, 75), + (24, 7, 6, 70, 63, 70, 34, 53, 73, 73), + (24, 7, 8, 42, 42, 54, 69, 69, 70, 70), + (24, 7, 9, 58, 55, 65, 68, 70, 78, 78), + (24, 8, 1, 70, 64, 69, 41, 52, 74, 74), + (24, 8, 3, 58, 69, 66, 66, 62, 79, 79), + (24, 8, 4, 64, 68, 64, 49, 55, 75, 75), + (24, 8, 5, 44, 48, 55, 70, 68, 72, 72), + (24, 8, 6, 69, 64, 68, 39, 52, 73, 73), + (24, 8, 7, 64, 57, 66, 71, 66, 80, 80), + (24, 8, 8, 36, 43, 52, 70, 68, 69, 69), + (24, 10, 2, 69, 60, 67, 61, 64, 79, 79), + (24, 10, 3, 61, 68, 66, 59, 63, 78, 78), + (24, 10, 4, 66, 68, 65, 41, 57, 74, 74), + (24, 10, 5, 48, 48, 56, 67, 69, 73, 73), + (24, 10, 6, 71, 63, 68, 34, 52, 73, 73), + (24, 10, 8, 40, 43, 53, 68, 69, 70, 70), + (24, 10, 9, 56, 56, 65, 66, 70, 77, 77), + (24, 11, 1, 70, 67, 70, 36, 51, 74, 74), + (24, 11, 2, 67, 64, 67, 67, 62, 80, 80), + (24, 11, 3, 58, 70, 67, 61, 61, 78, 78), + (24, 11, 5, 44, 53, 57, 68, 68, 73, 73), + (24, 11, 6, 68, 67, 68, 34, 51, 73, 73), + (24, 11, 7, 64, 61, 67, 69, 66, 80, 80), + (24, 11, 8, 36, 48, 54, 68, 68, 70, 70), + (25, 1, 1, 69, 64, 69, 37, 54, 74, 74), + (25, 1, 2, 71, 60, 69, 63, 63, 80, 80), + (25, 1, 4, 63, 68, 64, 42, 57, 74, 74), + (25, 1, 5, 42, 50, 56, 68, 69, 72, 72), + (25, 1, 6, 68, 64, 67, 35, 54, 73, 73), + (25, 1, 8, 37, 42, 53, 68, 69, 69, 69), + (25, 1, 9, 53, 56, 63, 67, 69, 77, 77), + (25, 2, 1, 68, 66, 68, 40, 50, 74, 74), + (25, 2, 3, 55, 68, 64, 63, 59, 77, 77), + (25, 2, 4, 63, 69, 61, 45, 53, 73, 73), + (25, 2, 6, 70, 66, 68, 38, 50, 73, 73), + (25, 2, 7, 62, 60, 65, 69, 65, 79, 79), + (25, 2, 9, 50, 58, 62, 68, 67, 76, 76), + (25, 3, 1, 69, 67, 68, 38, 54, 74, 74), + (25, 3, 2, 70, 63, 65, 63, 63, 80, 80), + (25, 3, 3, 56, 69, 64, 61, 62, 77, 77), + (25, 3, 4, 62, 69, 61, 43, 57, 73, 73), + (25, 3, 5, 43, 54, 53, 68, 70, 73, 73), + (25, 3, 6, 68, 66, 66, 36, 54, 73, 73), + (25, 4, 1, 70, 62, 69, 37, 53, 73, 73), + (25, 4, 3, 60, 67, 66, 62, 61, 78, 78), + (25, 4, 4, 65, 66, 63, 42, 56, 74, 74), + (25, 4, 5, 45, 45, 57, 72, 70, 73, 73), + (25, 4, 6, 69, 61, 68, 35, 53, 72, 72), + (25, 4, 11, 62, 57, 63, 66, 67, 78, 78), + (25, 5, 1, 68, 65, 67, 39, 49, 72, 72), + (25, 5, 4, 64, 68, 62, 44, 52, 73, 73), + (25, 5, 5, 43, 52, 55, 69, 66, 72, 72), + (25, 5, 6, 68, 65, 67, 37, 49, 72, 72), + (25, 5, 8, 38, 44, 52, 69, 66, 69, 69), + (25, 5, 9, 54, 57, 63, 67, 67, 77, 77), + (25, 6, 1, 66, 66, 68, 42, 51, 74, 74), + (25, 6, 3, 54, 70, 64, 65, 60, 78, 78), + (25, 6, 6, 67, 66, 67, 40, 51, 73, 73), + (25, 6, 7, 62, 61, 65, 70, 65, 80, 80), + (25, 6, 11, 57, 63, 61, 68, 71, 79, 79), + (25, 7, 1, 70, 63, 69, 33, 53, 73, 73), + (25, 7, 4, 66, 67, 64, 42, 56, 74, 74), + (25, 7, 6, 69, 62, 70, 31, 53, 72, 72), + (25, 7, 8, 42, 42, 54, 68, 68, 70, 70), + (25, 7, 9, 58, 53, 64, 67, 69, 77, 77), + (25, 8, 1, 69, 63, 69, 41, 52, 74, 74), + (25, 8, 3, 56, 68, 65, 65, 61, 78, 78), + (25, 8, 4, 63, 68, 63, 47, 55, 74, 74), + (25, 8, 5, 44, 48, 55, 69, 68, 72, 72), + (25, 8, 6, 68, 63, 67, 39, 52, 73, 73), + (25, 8, 7, 63, 56, 65, 70, 65, 79, 79), + (25, 8, 8, 36, 43, 52, 69, 67, 68, 68), + (25, 10, 2, 67, 59, 66, 60, 63, 78, 78), + (25, 10, 3, 60, 67, 66, 59, 62, 78, 78), + (25, 10, 4, 65, 68, 64, 41, 57, 74, 74), + (25, 10, 5, 45, 48, 56, 66, 68, 72, 72), + (25, 10, 6, 70, 62, 68, 31, 52, 72, 72), + (25, 10, 8, 40, 43, 53, 66, 68, 69, 69), + (25, 10, 9, 56, 54, 64, 66, 69, 77, 77), + (25, 11, 1, 69, 66, 69, 36, 51, 73, 73), + (25, 11, 2, 66, 63, 66, 67, 61, 80, 80), + (25, 11, 3, 56, 68, 66, 60, 60, 77, 77), + (25, 11, 5, 44, 53, 57, 67, 67, 72, 72), + (25, 11, 6, 67, 66, 68, 34, 51, 72, 72), + (25, 11, 7, 63, 60, 66, 68, 65, 80, 80), + (25, 11, 8, 36, 45, 54, 68, 67, 69, 69), + (26, 1, 1, 68, 63, 68, 37, 54, 73, 73), + (26, 1, 2, 70, 60, 69, 62, 63, 80, 80), + (26, 1, 4, 62, 67, 63, 42, 56, 73, 73), + (26, 1, 5, 42, 48, 54, 67, 68, 71, 71), + (26, 1, 6, 68, 63, 66, 35, 54, 72, 72), + (26, 1, 8, 37, 42, 53, 67, 68, 68, 68), + (26, 1, 9, 53, 54, 62, 66, 69, 76, 76), + (26, 2, 1, 67, 65, 67, 40, 50, 73, 73), + (26, 2, 3, 55, 68, 64, 61, 58, 76, 76), + (26, 2, 4, 62, 68, 60, 45, 53, 73, 73), + (26, 2, 6, 69, 65, 67, 38, 50, 73, 73), + (26, 2, 7, 61, 58, 64, 68, 64, 78, 78), + (26, 2, 9, 50, 57, 61, 67, 67, 75, 75), + (26, 3, 1, 68, 66, 67, 38, 54, 73, 73), + (26, 3, 2, 69, 62, 64, 62, 62, 79, 79), + (26, 3, 3, 56, 68, 63, 61, 61, 77, 77), + (26, 3, 4, 62, 69, 60, 43, 55, 73, 73), + (26, 3, 5, 40, 52, 53, 67, 69, 71, 71), + (26, 3, 6, 67, 65, 65, 36, 54, 72, 72), + (26, 4, 1, 70, 61, 68, 37, 53, 73, 73), + (26, 4, 3, 58, 66, 64, 62, 60, 77, 77), + (26, 4, 4, 64, 65, 62, 42, 54, 73, 73), + (26, 4, 5, 45, 45, 55, 71, 69, 72, 72), + (26, 4, 6, 69, 60, 67, 35, 53, 72, 72), + (26, 4, 11, 61, 56, 62, 65, 66, 77, 77), + (26, 5, 1, 67, 64, 65, 39, 49, 72, 72), + (26, 5, 4, 63, 68, 61, 44, 52, 73, 73), + (26, 5, 5, 43, 49, 53, 67, 65, 71, 71), + (26, 5, 6, 67, 64, 66, 37, 49, 72, 72), + (26, 5, 8, 38, 44, 52, 68, 65, 68, 68), + (26, 5, 9, 54, 56, 62, 67, 66, 76, 76), + (26, 6, 1, 65, 65, 67, 42, 51, 73, 73), + (26, 6, 3, 54, 70, 64, 64, 59, 77, 77), + (26, 6, 6, 66, 65, 65, 40, 51, 73, 73), + (26, 6, 7, 61, 60, 64, 69, 64, 79, 79), + (26, 6, 11, 57, 62, 60, 67, 70, 78, 78), + (26, 7, 1, 69, 62, 68, 33, 53, 72, 72), + (26, 7, 4, 65, 66, 63, 40, 54, 73, 73), + (26, 7, 6, 68, 61, 68, 31, 53, 71, 71), + (26, 7, 8, 42, 40, 54, 67, 67, 69, 69), + (26, 7, 9, 56, 53, 63, 66, 68, 76, 76), + (26, 8, 1, 68, 62, 67, 41, 52, 73, 73), + (26, 8, 3, 56, 67, 63, 63, 60, 77, 77), + (26, 8, 4, 62, 66, 62, 47, 53, 73, 73), + (26, 8, 5, 41, 48, 53, 68, 66, 70, 70), + (26, 8, 6, 67, 62, 66, 39, 52, 72, 72), + (26, 8, 7, 62, 56, 65, 69, 64, 78, 78), + (26, 8, 8, 36, 40, 52, 68, 66, 68, 68), + (26, 10, 2, 67, 59, 65, 59, 62, 77, 77), + (26, 10, 3, 58, 66, 64, 58, 61, 76, 76), + (26, 10, 4, 64, 66, 63, 39, 55, 73, 73), + (26, 10, 5, 45, 48, 54, 66, 67, 71, 71), + (26, 10, 6, 69, 61, 66, 31, 52, 71, 71), + (26, 10, 8, 40, 40, 53, 65, 67, 68, 68), + (26, 10, 9, 54, 54, 63, 64, 68, 76, 76), + (26, 11, 1, 68, 65, 68, 36, 51, 73, 73), + (26, 11, 2, 65, 61, 65, 66, 60, 79, 79), + (26, 11, 3, 56, 68, 64, 60, 59, 77, 77), + (26, 11, 5, 41, 50, 55, 66, 66, 71, 71), + (26, 11, 6, 66, 65, 67, 34, 51, 72, 72), + (26, 11, 7, 62, 58, 66, 66, 64, 78, 78), + (26, 11, 8, 36, 45, 54, 66, 66, 69, 69), + (27, 1, 1, 67, 62, 67, 37, 52, 72, 72), + (27, 1, 2, 69, 59, 68, 61, 62, 79, 79), + (27, 1, 4, 62, 66, 62, 42, 56, 73, 73), + (27, 1, 5, 42, 48, 54, 66, 67, 70, 70), + (27, 1, 6, 67, 62, 65, 35, 52, 71, 71), + (27, 1, 8, 37, 42, 51, 66, 67, 68, 68), + (27, 1, 9, 51, 54, 62, 65, 68, 75, 75), + (27, 2, 1, 66, 64, 66, 40, 49, 72, 72), + (27, 2, 3, 54, 67, 62, 61, 57, 75, 75), + (27, 2, 4, 61, 67, 59, 45, 52, 72, 72), + (27, 2, 6, 68, 64, 67, 38, 49, 72, 72), + (27, 2, 7, 61, 58, 63, 68, 63, 77, 77), + (27, 2, 9, 49, 57, 61, 66, 66, 75, 75), + (27, 3, 1, 67, 65, 66, 38, 52, 72, 72), + (27, 3, 2, 68, 62, 63, 61, 61, 78, 78), + (27, 3, 3, 54, 67, 62, 60, 60, 76, 76), + (27, 3, 4, 61, 68, 60, 43, 55, 72, 72), + (27, 3, 5, 40, 52, 52, 66, 68, 71, 71), + (27, 3, 6, 66, 64, 64, 36, 52, 72, 72), + (27, 4, 1, 68, 60, 68, 37, 51, 72, 72), + (27, 4, 3, 58, 65, 63, 61, 59, 76, 76), + (27, 4, 4, 63, 64, 61, 42, 54, 72, 72), + (27, 4, 5, 45, 43, 55, 70, 68, 71, 71), + (27, 4, 6, 68, 59, 66, 35, 51, 71, 71), + (27, 4, 11, 60, 55, 61, 64, 65, 76, 76), + (27, 5, 1, 66, 64, 65, 39, 47, 71, 71), + (27, 5, 4, 62, 67, 60, 44, 50, 72, 72), + (27, 5, 5, 43, 49, 53, 67, 64, 70, 70), + (27, 5, 6, 66, 63, 65, 37, 47, 71, 71), + (27, 5, 8, 38, 44, 50, 66, 64, 68, 68), + (27, 5, 9, 52, 56, 62, 65, 65, 75, 75), + (27, 6, 1, 64, 64, 66, 42, 50, 72, 72), + (27, 6, 3, 52, 69, 62, 64, 58, 76, 76), + (27, 6, 6, 65, 64, 65, 40, 50, 72, 72), + (27, 6, 7, 60, 60, 63, 69, 63, 78, 78), + (27, 6, 11, 56, 62, 59, 66, 69, 77, 77), + (27, 7, 1, 68, 61, 67, 33, 51, 71, 71), + (27, 7, 4, 64, 65, 63, 40, 54, 72, 72), + (27, 7, 6, 68, 60, 68, 31, 51, 71, 71), + (27, 7, 8, 42, 40, 52, 66, 66, 68, 68), + (27, 7, 9, 56, 52, 62, 65, 67, 75, 75), + (27, 8, 1, 67, 61, 67, 41, 50, 72, 72), + (27, 8, 3, 55, 66, 63, 63, 59, 76, 76), + (27, 8, 4, 61, 65, 61, 47, 53, 73, 73), + (27, 8, 5, 41, 46, 53, 68, 65, 70, 70), + (27, 8, 6, 66, 61, 65, 39, 50, 71, 71), + (27, 8, 7, 62, 54, 63, 68, 64, 77, 77), + (27, 8, 8, 36, 40, 50, 67, 66, 67, 67), + (27, 10, 2, 66, 58, 64, 58, 61, 77, 77), + (27, 10, 3, 58, 65, 63, 57, 60, 76, 76), + (27, 10, 4, 63, 65, 62, 39, 55, 72, 72), + (27, 10, 5, 45, 46, 54, 65, 66, 70, 70), + (27, 10, 6, 68, 60, 66, 31, 50, 70, 70), + (27, 10, 8, 40, 40, 51, 64, 66, 67, 67), + (27, 10, 9, 54, 53, 62, 64, 67, 75, 75), + (27, 11, 1, 67, 64, 68, 36, 50, 72, 72), + (27, 11, 2, 64, 61, 65, 65, 59, 78, 78), + (27, 11, 3, 55, 67, 63, 59, 58, 75, 75), + (27, 11, 5, 41, 50, 55, 66, 65, 71, 71), + (27, 11, 6, 65, 64, 66, 34, 50, 71, 71), + (27, 11, 7, 62, 58, 64, 66, 63, 78, 78), + (27, 11, 8, 36, 45, 52, 65, 65, 68, 68), + (28, 1, 1, 66, 62, 66, 37, 52, 72, 72), + (28, 1, 2, 68, 58, 67, 60, 61, 78, 78), + (28, 1, 4, 61, 65, 61, 42, 54, 72, 72), + (28, 1, 5, 42, 48, 53, 65, 66, 70, 70), + (28, 1, 6, 65, 61, 64, 35, 52, 71, 71), + (28, 1, 8, 37, 42, 51, 65, 66, 67, 67), + (28, 1, 9, 51, 53, 61, 64, 67, 74, 74), + (28, 2, 1, 66, 63, 65, 40, 49, 72, 72), + (28, 2, 3, 54, 66, 61, 60, 57, 75, 75), + (28, 2, 4, 60, 66, 59, 45, 52, 72, 72), + (28, 2, 6, 67, 63, 65, 38, 49, 71, 71), + (28, 2, 7, 60, 57, 62, 67, 62, 77, 77), + (28, 2, 9, 49, 55, 60, 65, 65, 74, 74), + (28, 3, 1, 66, 63, 65, 38, 52, 72, 72), + (28, 3, 2, 68, 61, 62, 60, 60, 77, 77), + (28, 3, 3, 54, 66, 61, 59, 59, 75, 75), + (28, 3, 4, 60, 66, 59, 43, 54, 72, 72), + (28, 3, 5, 40, 52, 52, 65, 67, 70, 70), + (28, 3, 6, 65, 63, 63, 36, 52, 71, 71), + (28, 4, 1, 67, 59, 66, 37, 51, 71, 71), + (28, 4, 3, 57, 65, 63, 60, 58, 75, 75), + (28, 4, 4, 62, 63, 60, 42, 53, 71, 71), + (28, 4, 5, 45, 43, 54, 69, 66, 71, 71), + (28, 4, 6, 67, 59, 65, 35, 51, 70, 70), + (28, 4, 11, 60, 55, 60, 63, 64, 75, 75), + (28, 5, 1, 65, 63, 64, 39, 47, 70, 70), + (28, 5, 4, 61, 66, 59, 44, 50, 71, 71), + (28, 5, 5, 43, 49, 52, 66, 63, 70, 70), + (28, 5, 6, 65, 62, 64, 37, 47, 70, 70), + (28, 5, 8, 38, 44, 50, 65, 63, 67, 67), + (28, 5, 9, 52, 54, 61, 65, 64, 74, 74), + (28, 6, 1, 63, 63, 65, 42, 50, 72, 72), + (28, 6, 3, 52, 68, 61, 63, 58, 75, 75), + (28, 6, 6, 64, 63, 63, 40, 50, 71, 71), + (28, 6, 7, 59, 58, 62, 68, 63, 77, 77), + (28, 6, 11, 55, 60, 58, 65, 68, 76, 76), + (28, 7, 1, 67, 60, 66, 33, 51, 70, 70), + (28, 7, 4, 63, 64, 62, 40, 53, 71, 71), + (28, 7, 6, 66, 60, 67, 31, 51, 70, 70), + (28, 7, 8, 42, 40, 52, 65, 65, 68, 68), + (28, 7, 9, 54, 52, 62, 64, 66, 75, 75), + (28, 8, 1, 66, 60, 66, 41, 50, 72, 72), + (28, 8, 3, 54, 66, 62, 62, 59, 75, 75), + (28, 8, 4, 60, 64, 60, 47, 52, 72, 72), + (28, 8, 5, 41, 46, 52, 66, 65, 69, 69), + (28, 8, 6, 66, 60, 64, 39, 50, 71, 71), + (28, 8, 7, 61, 54, 63, 67, 63, 77, 77), + (28, 8, 8, 36, 40, 50, 66, 64, 66, 66), + (28, 10, 2, 65, 57, 63, 57, 60, 75, 75), + (28, 10, 3, 57, 64, 62, 56, 59, 75, 75), + (28, 10, 4, 62, 64, 61, 39, 54, 71, 71), + (28, 10, 5, 45, 46, 53, 63, 65, 69, 69), + (28, 10, 6, 67, 59, 64, 31, 50, 69, 69), + (28, 10, 8, 40, 40, 51, 64, 65, 67, 67), + (28, 10, 9, 54, 53, 62, 62, 67, 74, 74), + (28, 11, 1, 66, 63, 66, 36, 50, 71, 71), + (28, 11, 2, 64, 60, 63, 64, 59, 77, 77), + (28, 11, 3, 54, 66, 63, 58, 58, 75, 75), + (28, 11, 5, 41, 50, 54, 64, 64, 70, 70), + (28, 11, 6, 65, 63, 65, 34, 50, 70, 70), + (28, 11, 7, 61, 57, 63, 65, 63, 77, 77), + (28, 11, 8, 36, 45, 52, 65, 64, 67, 67), + (29, 1, 1, 66, 61, 65, 37, 50, 71, 71), + (29, 1, 2, 68, 57, 66, 59, 61, 77, 77), + (29, 1, 4, 60, 64, 61, 42, 54, 71, 71), + (29, 1, 5, 42, 46, 53, 64, 65, 69, 69), + (29, 1, 6, 65, 60, 64, 35, 50, 70, 70), + (29, 1, 8, 37, 42, 50, 64, 65, 66, 66), + (29, 1, 9, 50, 53, 60, 63, 66, 73, 73), + (29, 2, 1, 65, 61, 65, 37, 49, 70, 70), + (29, 2, 3, 52, 65, 60, 59, 56, 74, 74), + (29, 2, 4, 59, 65, 58, 43, 50, 70, 70), + (29, 2, 6, 66, 61, 65, 35, 49, 70, 70), + (29, 2, 7, 59, 57, 61, 66, 61, 76, 76), + (29, 2, 9, 49, 55, 59, 64, 64, 73, 73), + (29, 3, 1, 65, 62, 64, 38, 50, 71, 71), + (29, 3, 2, 67, 60, 61, 59, 59, 76, 76), + (29, 3, 3, 53, 65, 60, 58, 59, 74, 74), + (29, 3, 4, 60, 65, 58, 41, 54, 70, 70), + (29, 3, 5, 40, 49, 50, 64, 66, 69, 69), + (29, 3, 6, 64, 62, 62, 36, 50, 70, 70), + (29, 4, 1, 67, 58, 66, 37, 50, 70, 70), + (29, 4, 3, 57, 64, 62, 59, 58, 75, 75), + (29, 4, 4, 61, 63, 59, 42, 53, 71, 71), + (29, 4, 5, 43, 43, 54, 68, 66, 70, 70), + (29, 4, 6, 66, 58, 64, 35, 50, 69, 69), + (29, 4, 11, 59, 53, 59, 62, 63, 74, 74), + (29, 5, 1, 64, 62, 63, 39, 47, 70, 70), + (29, 5, 4, 60, 65, 59, 42, 49, 70, 70), + (29, 5, 5, 41, 47, 52, 64, 62, 68, 68), + (29, 5, 6, 64, 61, 63, 37, 47, 70, 70), + (29, 5, 8, 38, 42, 49, 65, 63, 66, 66), + (29, 5, 9, 50, 54, 60, 64, 64, 73, 73), + (29, 6, 1, 62, 63, 65, 39, 48, 70, 70), + (29, 6, 3, 51, 67, 60, 62, 57, 74, 74), + (29, 6, 6, 63, 62, 63, 37, 48, 70, 70), + (29, 6, 7, 58, 58, 61, 67, 61, 76, 76), + (29, 6, 11, 54, 59, 57, 64, 68, 75, 75), + (29, 7, 1, 67, 59, 65, 33, 50, 70, 70), + (29, 7, 4, 63, 63, 61, 40, 53, 71, 71), + (29, 7, 6, 66, 59, 66, 31, 50, 69, 69), + (29, 7, 8, 39, 40, 50, 64, 64, 66, 66), + (29, 7, 9, 54, 50, 61, 63, 65, 74, 74), + (29, 8, 1, 65, 60, 65, 38, 49, 70, 70), + (29, 8, 3, 54, 65, 61, 61, 58, 75, 75), + (29, 8, 4, 59, 63, 60, 44, 52, 71, 71), + (29, 8, 5, 41, 46, 52, 65, 64, 69, 69), + (29, 8, 6, 65, 59, 63, 36, 49, 69, 69), + (29, 8, 7, 60, 53, 62, 67, 62, 76, 76), + (29, 8, 8, 36, 40, 49, 65, 63, 66, 66), + (29, 10, 2, 64, 56, 62, 56, 59, 75, 75), + (29, 10, 3, 57, 63, 62, 56, 59, 74, 74), + (29, 10, 4, 61, 63, 60, 39, 54, 70, 70), + (29, 10, 5, 43, 46, 53, 63, 64, 69, 69), + (29, 10, 6, 66, 58, 64, 31, 49, 69, 69), + (29, 10, 8, 37, 40, 50, 63, 64, 66, 66), + (29, 10, 9, 52, 51, 60, 62, 65, 73, 73), + (29, 11, 1, 65, 61, 66, 36, 48, 70, 70), + (29, 11, 2, 62, 59, 62, 63, 58, 76, 76), + (29, 11, 3, 54, 65, 62, 57, 57, 74, 74), + (29, 11, 5, 41, 48, 54, 63, 63, 69, 69), + (29, 11, 6, 64, 61, 64, 34, 48, 69, 69), + (29, 11, 7, 60, 57, 63, 64, 61, 76, 76), + (29, 11, 8, 36, 43, 50, 64, 64, 66, 66), + (30, 1, 1, 65, 60, 64, 34, 50, 70, 70), + (30, 1, 2, 67, 57, 65, 58, 60, 76, 76), + (30, 1, 4, 59, 63, 60, 40, 53, 70, 70), + (30, 1, 5, 40, 46, 51, 63, 64, 68, 68), + (30, 1, 6, 64, 59, 62, 32, 50, 69, 69), + (30, 1, 8, 34, 40, 50, 63, 64, 65, 65), + (30, 1, 9, 50, 51, 59, 62, 65, 73, 73), + (30, 2, 1, 64, 60, 63, 37, 47, 69, 69), + (30, 2, 3, 51, 64, 60, 58, 55, 73, 73), + (30, 2, 4, 58, 64, 58, 43, 50, 70, 70), + (30, 2, 6, 65, 60, 64, 35, 47, 69, 69), + (30, 2, 7, 58, 55, 61, 65, 60, 75, 75), + (30, 2, 9, 47, 54, 58, 63, 63, 72, 72), + (30, 3, 1, 64, 61, 63, 35, 50, 70, 70), + (30, 3, 2, 66, 59, 60, 58, 59, 75, 75), + (30, 3, 3, 52, 64, 59, 57, 58, 73, 73), + (30, 3, 4, 59, 64, 57, 41, 52, 70, 70), + (30, 3, 5, 38, 49, 50, 64, 65, 68, 68), + (30, 3, 6, 63, 61, 61, 33, 50, 69, 69), + (30, 4, 1, 66, 57, 65, 34, 50, 69, 69), + (30, 4, 3, 55, 63, 61, 59, 57, 74, 74), + (30, 4, 4, 60, 62, 59, 40, 51, 70, 70), + (30, 4, 5, 43, 42, 52, 68, 65, 69, 69), + (30, 4, 6, 65, 57, 63, 32, 50, 68, 68), + (30, 4, 11, 57, 52, 58, 61, 62, 73, 73), + (30, 5, 1, 63, 61, 62, 36, 46, 68, 68), + (30, 5, 4, 59, 64, 58, 42, 49, 69, 69), + (30, 5, 5, 41, 47, 50, 64, 61, 68, 68), + (30, 5, 6, 63, 60, 62, 34, 46, 68, 68), + (30, 5, 8, 35, 42, 49, 64, 61, 65, 65), + (30, 5, 9, 50, 53, 59, 63, 62, 73, 73), + (30, 6, 1, 61, 62, 63, 39, 48, 70, 70), + (30, 6, 3, 51, 66, 60, 61, 56, 74, 74), + (30, 6, 6, 62, 61, 62, 37, 48, 69, 69), + (30, 6, 7, 57, 57, 61, 66, 60, 75, 75), + (30, 6, 11, 54, 59, 56, 63, 66, 75, 75), + (30, 7, 1, 66, 58, 64, 33, 50, 69, 69), + (30, 7, 4, 62, 62, 61, 40, 51, 70, 70), + (30, 7, 6, 65, 58, 65, 31, 50, 69, 69), + (30, 7, 8, 39, 37, 50, 63, 63, 66, 66), + (30, 7, 9, 54, 50, 60, 62, 64, 73, 73), + (30, 8, 1, 64, 59, 64, 38, 49, 70, 70), + (30, 8, 3, 52, 64, 60, 60, 57, 74, 74), + (30, 8, 4, 58, 63, 60, 44, 50, 70, 70), + (30, 8, 5, 39, 44, 50, 64, 63, 67, 67), + (30, 8, 6, 63, 58, 62, 36, 49, 69, 69), + (30, 8, 7, 59, 52, 61, 65, 61, 75, 75), + (30, 8, 8, 36, 38, 49, 64, 63, 65, 65), + (30, 10, 2, 63, 56, 61, 56, 59, 74, 74), + (30, 10, 3, 55, 62, 61, 55, 58, 73, 73), + (30, 10, 4, 60, 63, 60, 39, 52, 70, 70), + (30, 10, 5, 43, 44, 51, 62, 63, 68, 68), + (30, 10, 6, 65, 58, 63, 31, 49, 68, 68), + (30, 10, 8, 37, 38, 50, 62, 64, 65, 65), + (30, 10, 9, 52, 51, 59, 61, 65, 73, 73), + (30, 11, 1, 64, 60, 65, 36, 48, 70, 70), + (30, 11, 2, 62, 58, 62, 62, 58, 75, 75), + (30, 11, 3, 52, 64, 61, 57, 56, 73, 73), + (30, 11, 5, 39, 48, 52, 63, 62, 68, 68), + (30, 11, 6, 62, 60, 63, 34, 48, 68, 68), + (30, 11, 7, 59, 55, 61, 64, 60, 75, 75), + (30, 11, 8, 36, 43, 50, 63, 62, 66, 66), + (31, 1, 1, 64, 59, 64, 34, 50, 69, 69), + (31, 1, 2, 66, 56, 64, 57, 59, 75, 75), + (31, 1, 4, 58, 62, 59, 40, 53, 69, 69), + (31, 1, 5, 40, 46, 51, 62, 63, 67, 67), + (31, 1, 6, 63, 59, 62, 32, 50, 68, 68), + (31, 1, 8, 34, 40, 50, 62, 63, 65, 65), + (31, 1, 9, 50, 51, 59, 62, 64, 72, 72), + (31, 2, 1, 63, 60, 63, 37, 47, 69, 69), + (31, 2, 3, 51, 63, 59, 58, 54, 72, 72), + (31, 2, 4, 57, 63, 57, 43, 49, 69, 69), + (31, 2, 6, 64, 59, 63, 35, 47, 69, 69), + (31, 2, 7, 57, 54, 59, 64, 59, 74, 74), + (31, 2, 9, 47, 54, 58, 62, 62, 72, 72), + (31, 3, 1, 63, 60, 62, 35, 49, 69, 69), + (31, 3, 2, 65, 57, 59, 57, 58, 74, 74), + (31, 3, 3, 52, 63, 59, 57, 57, 72, 72), + (31, 3, 4, 58, 63, 56, 41, 52, 69, 69), + (31, 3, 5, 38, 49, 49, 62, 64, 68, 68), + (31, 3, 6, 63, 60, 61, 33, 49, 68, 68), + (31, 4, 1, 65, 56, 63, 34, 50, 69, 69), + (31, 4, 3, 54, 62, 60, 57, 56, 73, 73), + (31, 4, 4, 60, 61, 58, 40, 51, 69, 69), + (31, 4, 5, 43, 42, 52, 67, 64, 68, 68), + (31, 4, 6, 64, 56, 62, 32, 50, 68, 68), + (31, 4, 11, 56, 52, 57, 60, 62, 72, 72), + (31, 5, 1, 62, 59, 61, 36, 46, 68, 68), + (31, 5, 4, 59, 63, 57, 42, 48, 69, 69), + (31, 5, 5, 41, 47, 50, 63, 60, 67, 67), + (31, 5, 6, 62, 59, 61, 34, 46, 67, 67), + (31, 5, 8, 35, 42, 49, 63, 60, 65, 65), + (31, 5, 9, 49, 53, 59, 62, 62, 72, 72), + (31, 6, 1, 60, 61, 63, 39, 48, 69, 69), + (31, 6, 3, 50, 65, 59, 60, 55, 73, 73), + (31, 6, 6, 62, 60, 61, 37, 48, 69, 69), + (31, 6, 7, 56, 56, 59, 65, 60, 74, 74), + (31, 6, 11, 53, 58, 56, 62, 66, 74, 74), + (31, 7, 1, 64, 57, 63, 33, 50, 68, 68), + (31, 7, 4, 61, 61, 60, 38, 51, 69, 69), + (31, 7, 6, 63, 57, 64, 31, 50, 68, 68), + (31, 7, 8, 39, 37, 49, 62, 62, 65, 65), + (31, 7, 9, 52, 49, 59, 62, 63, 72, 72), + (31, 8, 1, 63, 58, 63, 38, 49, 69, 69), + (31, 8, 3, 52, 63, 59, 59, 56, 73, 73), + (31, 8, 4, 58, 62, 59, 44, 50, 70, 70), + (31, 8, 5, 39, 44, 50, 63, 61, 67, 67), + (31, 8, 6, 62, 58, 61, 36, 49, 68, 68), + (31, 8, 7, 58, 52, 60, 64, 60, 74, 74), + (31, 8, 8, 33, 38, 49, 63, 62, 64, 64), + (31, 10, 2, 62, 55, 60, 55, 58, 73, 73), + (31, 10, 3, 54, 61, 59, 54, 57, 72, 72), + (31, 10, 4, 60, 62, 59, 37, 52, 69, 69), + (31, 10, 5, 43, 44, 51, 61, 62, 67, 67), + (31, 10, 6, 64, 57, 61, 31, 49, 67, 67), + (31, 10, 8, 37, 38, 48, 60, 62, 64, 64), + (31, 10, 9, 50, 50, 58, 60, 64, 71, 71), + (31, 11, 1, 63, 60, 63, 33, 48, 68, 68), + (31, 11, 2, 60, 58, 60, 62, 57, 75, 75), + (31, 11, 3, 52, 63, 60, 55, 55, 72, 72), + (31, 11, 5, 39, 48, 52, 62, 61, 67, 67), + (31, 11, 6, 61, 59, 62, 31, 48, 67, 67), + (31, 11, 7, 58, 54, 60, 63, 60, 74, 74), + (31, 11, 8, 33, 43, 49, 61, 61, 64, 64), + (32, 1, 1, 63, 58, 62, 34, 49, 68, 68), + (32, 1, 2, 65, 55, 64, 57, 58, 75, 75), + (32, 1, 4, 57, 61, 58, 40, 51, 69, 69), + (32, 1, 5, 40, 44, 50, 61, 62, 66, 66), + (32, 1, 6, 62, 58, 60, 32, 49, 67, 67), + (32, 1, 8, 34, 40, 48, 61, 62, 64, 64), + (32, 1, 9, 48, 50, 58, 60, 63, 71, 71), + (32, 2, 1, 62, 59, 62, 37, 46, 68, 68), + (32, 2, 3, 50, 62, 57, 57, 53, 71, 71), + (32, 2, 4, 57, 62, 56, 43, 49, 68, 68), + (32, 2, 6, 63, 58, 62, 35, 46, 68, 68), + (32, 2, 7, 57, 54, 58, 63, 58, 73, 73), + (32, 2, 9, 46, 52, 57, 61, 61, 71, 71), + (32, 3, 1, 62, 59, 61, 35, 49, 68, 68), + (32, 3, 2, 64, 57, 58, 57, 57, 74, 74), + (32, 3, 3, 50, 62, 57, 56, 56, 71, 71), + (32, 3, 4, 56, 62, 55, 41, 50, 68, 68), + (32, 3, 5, 38, 47, 49, 61, 63, 67, 67), + (32, 3, 6, 61, 59, 59, 33, 49, 67, 67), + (32, 4, 1, 64, 56, 63, 34, 48, 68, 68), + (32, 4, 3, 54, 61, 59, 56, 55, 72, 72), + (32, 4, 4, 59, 60, 57, 40, 50, 68, 68), + (32, 4, 5, 43, 42, 50, 66, 63, 68, 68), + (32, 4, 6, 63, 55, 61, 32, 48, 67, 67), + (32, 4, 11, 56, 51, 57, 59, 60, 72, 72), + (32, 5, 1, 61, 58, 60, 36, 44, 67, 67), + (32, 5, 4, 58, 62, 56, 42, 48, 68, 68), + (32, 5, 5, 41, 45, 49, 62, 60, 66, 66), + (32, 5, 6, 61, 58, 60, 34, 44, 66, 66), + (32, 5, 8, 35, 42, 47, 61, 60, 64, 64), + (32, 5, 9, 49, 51, 58, 61, 61, 71, 71), + (32, 6, 1, 59, 60, 62, 39, 46, 68, 68), + (32, 6, 3, 49, 64, 57, 60, 54, 72, 72), + (32, 6, 6, 60, 59, 60, 37, 46, 68, 68), + (32, 6, 7, 56, 56, 58, 64, 58, 73, 73), + (32, 6, 11, 52, 56, 55, 61, 65, 73, 73), + (32, 7, 1, 63, 57, 62, 30, 48, 67, 67), + (32, 7, 4, 60, 60, 59, 38, 50, 68, 68), + (32, 7, 6, 62, 56, 63, 29, 48, 67, 67), + (32, 7, 8, 39, 37, 49, 62, 61, 65, 65), + (32, 7, 9, 52, 49, 59, 60, 63, 72, 72), + (32, 8, 1, 63, 57, 62, 38, 47, 68, 68), + (32, 8, 3, 51, 62, 58, 59, 55, 72, 72), + (32, 8, 4, 57, 61, 58, 44, 49, 69, 69), + (32, 8, 5, 39, 44, 49, 62, 60, 66, 66), + (32, 8, 6, 62, 57, 60, 36, 47, 67, 67), + (32, 8, 7, 58, 50, 59, 64, 59, 73, 73), + (32, 8, 8, 33, 38, 47, 62, 60, 63, 63), + (32, 10, 2, 61, 54, 59, 54, 57, 72, 72), + (32, 10, 3, 54, 61, 58, 53, 56, 71, 71), + (32, 10, 4, 59, 61, 58, 37, 50, 68, 68), + (32, 10, 5, 43, 44, 50, 60, 61, 67, 67), + (32, 10, 6, 63, 56, 61, 29, 47, 66, 66), + (32, 10, 8, 37, 38, 48, 60, 61, 64, 64), + (32, 10, 9, 50, 48, 58, 59, 63, 71, 71), + (32, 11, 1, 63, 59, 63, 33, 46, 68, 68), + (32, 11, 2, 60, 57, 60, 62, 56, 74, 74), + (32, 11, 3, 51, 62, 59, 54, 54, 71, 71), + (32, 11, 5, 39, 46, 50, 60, 61, 66, 66), + (32, 11, 6, 61, 58, 61, 31, 46, 66, 66), + (32, 11, 7, 58, 54, 60, 61, 58, 73, 73), + (32, 11, 8, 33, 43, 49, 60, 60, 64, 64), + (33, 1, 1, 62, 56, 61, 34, 49, 67, 67), + (33, 1, 2, 64, 54, 63, 56, 57, 74, 74), + (33, 1, 4, 56, 60, 57, 38, 51, 68, 68), + (33, 1, 5, 38, 44, 50, 60, 61, 66, 66), + (33, 1, 6, 61, 56, 59, 32, 49, 66, 66), + (33, 1, 8, 34, 38, 48, 60, 61, 63, 63), + (33, 1, 9, 48, 50, 57, 59, 62, 70, 70), + (33, 2, 1, 61, 58, 61, 37, 46, 67, 67), + (33, 2, 3, 50, 61, 57, 56, 52, 70, 70), + (33, 2, 4, 55, 61, 55, 40, 48, 67, 67), + (33, 2, 6, 62, 57, 61, 35, 46, 67, 67), + (33, 2, 7, 56, 53, 58, 63, 57, 72, 72), + (33, 2, 9, 46, 52, 56, 60, 60, 70, 70), + (33, 3, 1, 61, 58, 61, 35, 49, 68, 68), + (33, 3, 2, 63, 56, 57, 56, 56, 73, 73), + (33, 3, 3, 50, 61, 56, 54, 55, 70, 70), + (33, 3, 4, 55, 62, 54, 39, 50, 67, 67), + (33, 3, 5, 38, 47, 48, 60, 62, 66, 66), + (33, 3, 6, 60, 58, 59, 33, 49, 67, 67), + (33, 4, 1, 63, 55, 62, 34, 48, 67, 67), + (33, 4, 3, 53, 60, 58, 55, 54, 71, 71), + (33, 4, 4, 58, 59, 56, 38, 50, 67, 67), + (33, 4, 5, 40, 40, 50, 65, 62, 67, 67), + (33, 4, 6, 62, 54, 60, 32, 48, 66, 66), + (33, 4, 11, 55, 50, 56, 59, 59, 71, 71), + (33, 5, 1, 60, 57, 59, 36, 44, 66, 66), + (33, 5, 4, 57, 61, 55, 40, 46, 67, 67), + (33, 5, 5, 39, 45, 49, 60, 59, 65, 65), + (33, 5, 6, 60, 57, 59, 34, 44, 66, 66), + (33, 5, 8, 35, 40, 47, 60, 59, 63, 63), + (33, 5, 9, 49, 51, 57, 60, 60, 70, 70), + (33, 6, 1, 58, 59, 61, 39, 46, 68, 68), + (33, 6, 3, 49, 63, 57, 58, 53, 71, 71), + (33, 6, 6, 59, 58, 59, 37, 46, 67, 67), + (33, 6, 7, 55, 54, 58, 63, 58, 73, 73), + (33, 6, 11, 50, 56, 54, 60, 64, 72, 72), + (33, 7, 1, 63, 56, 61, 30, 48, 67, 67), + (33, 7, 4, 59, 59, 58, 38, 50, 68, 68), + (33, 7, 6, 62, 55, 62, 29, 48, 66, 66), + (33, 7, 8, 39, 37, 49, 61, 60, 64, 64), + (33, 7, 9, 50, 48, 58, 60, 61, 70, 70), + (33, 8, 1, 62, 56, 61, 38, 47, 68, 68), + (33, 8, 3, 50, 61, 57, 58, 54, 71, 71), + (33, 8, 4, 56, 60, 57, 42, 49, 68, 68), + (33, 8, 5, 39, 42, 49, 61, 60, 65, 65), + (33, 8, 6, 61, 56, 59, 36, 47, 67, 67), + (33, 8, 7, 57, 50, 58, 63, 58, 72, 72), + (33, 8, 8, 33, 38, 47, 61, 60, 63, 63), + (33, 10, 2, 60, 53, 59, 53, 56, 71, 71), + (33, 10, 3, 53, 60, 58, 52, 55, 70, 70), + (33, 10, 4, 58, 60, 58, 37, 50, 67, 67), + (33, 10, 5, 40, 42, 50, 59, 60, 65, 65), + (33, 10, 6, 62, 55, 59, 29, 47, 65, 65), + (33, 10, 8, 37, 38, 48, 59, 60, 63, 63), + (33, 10, 9, 49, 48, 57, 58, 62, 70, 70), + (33, 11, 1, 62, 58, 62, 33, 46, 67, 67), + (33, 11, 2, 58, 56, 59, 61, 55, 73, 73), + (33, 11, 3, 50, 61, 58, 53, 53, 70, 70), + (33, 11, 5, 39, 46, 50, 60, 60, 66, 66), + (33, 11, 6, 60, 57, 60, 31, 46, 66, 66), + (33, 11, 7, 57, 53, 59, 61, 58, 72, 72), + (33, 11, 8, 33, 40, 49, 60, 60, 63, 63), + (34, 1, 1, 61, 55, 61, 34, 47, 67, 67), + (34, 1, 2, 64, 53, 62, 55, 56, 73, 73), + (34, 1, 4, 55, 59, 56, 38, 50, 67, 67), + (34, 1, 5, 38, 44, 48, 59, 60, 65, 65), + (34, 1, 6, 60, 55, 59, 32, 47, 66, 66), + (34, 1, 8, 34, 38, 46, 59, 60, 62, 62), + (34, 1, 9, 46, 48, 56, 58, 62, 69, 69), + (34, 2, 1, 60, 57, 60, 37, 44, 67, 67), + (34, 2, 3, 49, 60, 56, 55, 51, 69, 69), + (34, 2, 4, 54, 60, 54, 40, 46, 66, 66), + (34, 2, 6, 61, 56, 60, 35, 44, 66, 66), + (34, 2, 7, 54, 53, 56, 62, 56, 71, 71), + (34, 2, 9, 44, 50, 55, 59, 60, 69, 69), + (34, 3, 1, 60, 57, 60, 35, 47, 67, 67), + (34, 3, 2, 63, 55, 56, 55, 55, 72, 72), + (34, 3, 3, 49, 60, 55, 53, 54, 69, 69), + (34, 3, 4, 54, 60, 53, 39, 49, 66, 66), + (34, 3, 5, 36, 45, 46, 59, 61, 65, 65), + (34, 3, 6, 59, 57, 58, 33, 47, 66, 66), + (34, 4, 1, 62, 54, 61, 34, 46, 66, 66), + (34, 4, 3, 53, 59, 57, 54, 53, 70, 70), + (34, 4, 4, 57, 58, 55, 38, 48, 66, 66), + (34, 4, 5, 40, 40, 49, 64, 61, 66, 66), + (34, 4, 6, 61, 53, 59, 32, 46, 65, 65), + (34, 4, 11, 54, 50, 55, 57, 58, 70, 70), + (34, 5, 1, 59, 56, 58, 36, 44, 66, 66), + (34, 5, 4, 56, 60, 54, 40, 46, 66, 66), + (34, 5, 5, 39, 45, 48, 60, 57, 65, 65), + (34, 5, 6, 59, 56, 58, 34, 44, 65, 65), + (34, 5, 8, 35, 40, 45, 60, 57, 62, 62), + (34, 5, 9, 47, 50, 56, 59, 59, 69, 69), + (34, 6, 1, 57, 58, 60, 36, 45, 66, 66), + (34, 6, 3, 47, 62, 56, 57, 52, 70, 70), + (34, 6, 6, 59, 58, 58, 34, 45, 66, 66), + (34, 6, 7, 54, 53, 56, 63, 56, 71, 71), + (34, 6, 11, 50, 55, 53, 59, 63, 71, 71), + (34, 7, 1, 62, 55, 60, 30, 46, 66, 66), + (34, 7, 4, 58, 58, 57, 36, 48, 66, 66), + (34, 7, 6, 60, 54, 61, 29, 46, 65, 65), + (34, 7, 8, 36, 35, 47, 60, 59, 62, 62), + (34, 7, 9, 50, 46, 57, 59, 61, 70, 70), + (34, 8, 1, 60, 54, 60, 38, 45, 67, 67), + (34, 8, 3, 50, 60, 56, 57, 53, 70, 70), + (34, 8, 4, 55, 59, 56, 42, 48, 67, 67), + (34, 8, 5, 37, 42, 48, 60, 59, 64, 64), + (34, 8, 6, 60, 54, 58, 36, 45, 66, 66), + (34, 8, 7, 55, 49, 57, 62, 57, 71, 71), + (34, 8, 8, 33, 36, 45, 60, 59, 62, 62), + (34, 10, 2, 59, 52, 57, 52, 55, 70, 70), + (34, 10, 3, 53, 58, 57, 52, 54, 70, 70), + (34, 10, 4, 57, 59, 57, 35, 49, 66, 66), + (34, 10, 5, 40, 42, 48, 58, 59, 65, 65), + (34, 10, 6, 61, 54, 59, 29, 45, 65, 65), + (34, 10, 8, 37, 36, 46, 58, 59, 62, 62), + (34, 10, 9, 49, 47, 56, 57, 61, 69, 69), + (34, 11, 1, 60, 57, 61, 33, 45, 66, 66), + (34, 11, 2, 58, 55, 58, 60, 54, 72, 72), + (34, 11, 3, 50, 60, 57, 52, 52, 69, 69), + (34, 11, 5, 37, 46, 49, 59, 58, 65, 65), + (34, 11, 6, 58, 56, 59, 31, 45, 65, 65), + (34, 11, 7, 55, 53, 58, 60, 56, 71, 71), + (34, 11, 8, 33, 40, 47, 59, 58, 63, 63), + (35, 1, 1, 60, 54, 59, 34, 47, 66, 66), + (35, 1, 2, 62, 52, 61, 54, 55, 72, 72), + (35, 1, 4, 54, 58, 56, 38, 50, 66, 66), + (35, 1, 5, 38, 42, 48, 58, 59, 64, 64), + (35, 1, 6, 59, 54, 57, 32, 47, 65, 65), + (35, 1, 8, 34, 38, 46, 58, 59, 62, 62), + (35, 1, 9, 46, 48, 55, 57, 60, 68, 68), + (35, 2, 1, 59, 56, 59, 34, 44, 65, 65), + (35, 2, 3, 47, 59, 55, 53, 51, 68, 68), + (35, 2, 4, 53, 59, 53, 40, 46, 65, 65), + (35, 2, 6, 61, 56, 59, 32, 44, 65, 65), + (35, 2, 7, 53, 51, 56, 60, 55, 70, 70), + (35, 2, 9, 44, 50, 55, 58, 58, 68, 68), + (35, 3, 1, 60, 56, 58, 32, 47, 66, 66), + (35, 3, 2, 62, 54, 55, 54, 54, 71, 71), + (35, 3, 3, 48, 59, 55, 52, 53, 68, 68), + (35, 3, 4, 54, 59, 52, 39, 49, 66, 66), + (35, 3, 5, 36, 45, 46, 58, 60, 64, 64), + (35, 3, 6, 59, 56, 56, 30, 47, 65, 65), + (35, 4, 1, 61, 53, 60, 34, 46, 66, 66), + (35, 4, 3, 51, 58, 56, 53, 52, 69, 69), + (35, 4, 4, 56, 57, 54, 38, 48, 66, 66), + (35, 4, 5, 40, 40, 49, 63, 60, 66, 66), + (35, 4, 6, 60, 53, 58, 32, 46, 65, 65), + (35, 4, 11, 53, 49, 54, 56, 57, 69, 69), + (35, 5, 1, 58, 55, 57, 33, 43, 64, 64), + (35, 5, 4, 55, 59, 53, 40, 45, 65, 65), + (35, 5, 5, 39, 43, 48, 59, 56, 64, 64), + (35, 5, 6, 58, 55, 57, 31, 43, 64, 64), + (35, 5, 8, 32, 40, 45, 59, 56, 61, 61), + (35, 5, 9, 47, 50, 55, 58, 58, 68, 68), + (35, 6, 1, 56, 57, 59, 36, 45, 66, 66), + (35, 6, 3, 46, 61, 55, 56, 52, 69, 69), + (35, 6, 6, 58, 57, 57, 34, 45, 65, 65), + (35, 6, 7, 52, 53, 56, 61, 56, 71, 71), + (35, 6, 11, 49, 54, 52, 58, 62, 70, 70), + (35, 7, 1, 60, 53, 59, 30, 46, 65, 65), + (35, 7, 4, 57, 57, 56, 36, 48, 66, 66), + (35, 7, 6, 59, 53, 60, 29, 46, 64, 64), + (35, 7, 8, 36, 35, 47, 59, 58, 62, 62), + (35, 7, 9, 49, 46, 56, 58, 60, 69, 69), + (35, 8, 1, 60, 54, 59, 35, 45, 66, 66), + (35, 8, 3, 48, 59, 56, 56, 52, 69, 69), + (35, 8, 4, 54, 58, 55, 42, 48, 66, 66), + (35, 8, 5, 37, 40, 48, 59, 58, 63, 63), + (35, 8, 6, 59, 53, 57, 33, 45, 64, 64), + (35, 8, 7, 54, 48, 56, 61, 56, 70, 70), + (35, 8, 8, 33, 36, 45, 59, 58, 61, 61), + (35, 10, 2, 58, 52, 57, 51, 54, 69, 69), + (35, 10, 3, 51, 57, 55, 50, 53, 68, 68), + (35, 10, 4, 56, 58, 56, 35, 49, 66, 66), + (35, 10, 5, 40, 40, 48, 57, 58, 64, 64), + (35, 10, 6, 60, 52, 57, 29, 45, 64, 64), + (35, 10, 8, 34, 36, 46, 57, 58, 61, 61), + (35, 10, 9, 49, 47, 55, 56, 60, 68, 68), + (35, 11, 1, 60, 56, 60, 33, 45, 66, 66), + (35, 11, 2, 56, 53, 57, 59, 53, 71, 71), + (35, 11, 3, 48, 59, 56, 52, 52, 68, 68), + (35, 11, 5, 37, 44, 49, 58, 57, 64, 64), + (35, 11, 6, 58, 56, 58, 31, 45, 64, 64), + (35, 11, 7, 54, 51, 57, 59, 56, 70, 70), + (35, 11, 8, 33, 40, 47, 58, 57, 62, 62), + (36, 1, 1, 59, 54, 59, 31, 45, 65, 65), + (36, 1, 2, 62, 52, 60, 53, 54, 71, 71), + (36, 1, 4, 54, 57, 55, 38, 48, 65, 65), + (36, 1, 5, 38, 42, 47, 57, 58, 63, 63), + (36, 1, 6, 58, 53, 57, 29, 45, 64, 64), + (36, 1, 8, 31, 38, 45, 57, 58, 61, 61), + (36, 1, 9, 45, 47, 55, 56, 60, 68, 68), + (36, 2, 1, 58, 55, 58, 34, 42, 65, 65), + (36, 2, 3, 47, 58, 54, 52, 50, 67, 67), + (36, 2, 4, 52, 58, 52, 40, 45, 64, 64), + (36, 2, 6, 60, 55, 58, 32, 42, 64, 64), + (36, 2, 7, 53, 50, 55, 60, 55, 69, 69), + (36, 2, 9, 42, 49, 54, 57, 58, 67, 67), + (36, 3, 1, 59, 56, 58, 32, 45, 65, 65), + (36, 3, 2, 61, 53, 55, 53, 53, 70, 70), + (36, 3, 3, 48, 58, 53, 52, 52, 68, 68), + (36, 3, 4, 53, 58, 51, 39, 47, 65, 65), + (36, 3, 5, 36, 45, 45, 57, 59, 63, 63), + (36, 3, 6, 58, 55, 56, 30, 45, 64, 64), + (36, 4, 1, 60, 51, 59, 31, 45, 64, 64), + (36, 4, 3, 50, 57, 55, 53, 51, 68, 68), + (36, 4, 4, 55, 56, 53, 38, 47, 65, 65), + (36, 4, 5, 40, 38, 47, 62, 59, 65, 65), + (36, 4, 6, 59, 51, 57, 29, 45, 63, 63), + (36, 4, 11, 52, 48, 53, 55, 56, 68, 68), + (36, 5, 1, 57, 55, 56, 33, 43, 64, 64), + (36, 5, 4, 54, 58, 52, 40, 44, 64, 64), + (36, 5, 5, 39, 43, 46, 57, 55, 63, 63), + (36, 5, 6, 57, 54, 56, 31, 43, 63, 63), + (36, 5, 8, 32, 40, 44, 57, 56, 61, 61), + (36, 5, 9, 45, 48, 55, 57, 57, 67, 67), + (36, 6, 1, 55, 56, 58, 36, 43, 65, 65), + (36, 6, 3, 46, 60, 54, 55, 51, 68, 68), + (36, 6, 6, 57, 56, 56, 34, 43, 64, 64), + (36, 6, 7, 52, 51, 55, 60, 55, 70, 70), + (36, 6, 11, 48, 54, 51, 57, 62, 69, 69), + (36, 7, 1, 59, 52, 58, 30, 45, 64, 64), + (36, 7, 4, 56, 56, 55, 36, 47, 65, 65), + (36, 7, 6, 58, 52, 59, 29, 45, 64, 64), + (36, 7, 8, 36, 35, 45, 57, 57, 61, 61), + (36, 7, 9, 49, 45, 56, 57, 59, 68, 68), + (36, 8, 1, 59, 53, 58, 35, 44, 65, 65), + (36, 8, 3, 48, 58, 54, 54, 52, 68, 68), + (36, 8, 4, 53, 57, 54, 39, 46, 65, 65), + (36, 8, 5, 37, 40, 46, 58, 57, 63, 63), + (36, 8, 6, 58, 52, 56, 33, 44, 64, 64), + (36, 8, 7, 53, 48, 55, 60, 55, 69, 69), + (36, 8, 8, 30, 36, 44, 58, 56, 60, 60), + (36, 10, 2, 57, 50, 55, 50, 53, 68, 68), + (36, 10, 3, 50, 56, 54, 49, 52, 67, 67), + (36, 10, 4, 55, 57, 55, 35, 47, 65, 65), + (36, 10, 5, 40, 40, 47, 56, 57, 63, 63), + (36, 10, 6, 59, 51, 57, 29, 44, 63, 63), + (36, 10, 8, 34, 36, 44, 56, 57, 60, 60), + (36, 10, 9, 47, 45, 55, 55, 59, 67, 67), + (36, 11, 1, 59, 55, 59, 30, 43, 64, 64), + (36, 11, 2, 56, 52, 55, 58, 52, 70, 70), + (36, 11, 3, 48, 58, 55, 51, 51, 68, 68), + (36, 11, 5, 37, 44, 47, 56, 56, 63, 63), + (36, 11, 6, 57, 55, 57, 28, 43, 63, 63), + (36, 11, 7, 53, 50, 56, 58, 55, 69, 69), + (36, 11, 8, 30, 40, 45, 57, 56, 61, 61), + (37, 1, 1, 58, 53, 58, 31, 45, 64, 64), + (37, 1, 2, 61, 50, 59, 52, 53, 70, 70), + (37, 1, 4, 53, 56, 54, 35, 48, 64, 64), + (37, 1, 5, 35, 42, 47, 56, 57, 62, 62), + (37, 1, 6, 57, 52, 55, 29, 45, 63, 63), + (37, 1, 8, 31, 35, 45, 56, 57, 60, 60), + (37, 1, 9, 45, 47, 54, 55, 59, 67, 67), + (37, 2, 1, 57, 54, 57, 34, 42, 64, 64), + (37, 2, 3, 46, 57, 53, 52, 49, 66, 66), + (37, 2, 4, 51, 57, 51, 38, 45, 63, 63), + (37, 2, 6, 59, 54, 57, 32, 42, 64, 64), + (37, 2, 7, 52, 50, 53, 59, 53, 68, 68), + (37, 2, 9, 42, 47, 53, 56, 57, 66, 66), + (37, 3, 1, 57, 55, 57, 32, 45, 64, 64), + (37, 3, 2, 60, 53, 53, 52, 52, 69, 69), + (37, 3, 3, 47, 57, 52, 51, 52, 67, 67), + (37, 3, 4, 52, 57, 50, 36, 47, 64, 64), + (37, 3, 5, 36, 43, 45, 56, 58, 63, 63), + (37, 3, 6, 57, 54, 54, 30, 45, 63, 63), + (37, 4, 1, 59, 50, 58, 31, 45, 64, 64), + (37, 4, 3, 50, 56, 54, 52, 51, 68, 68), + (37, 4, 4, 54, 55, 52, 35, 47, 64, 64), + (37, 4, 5, 38, 38, 47, 61, 58, 64, 64), + (37, 4, 6, 58, 50, 56, 29, 45, 63, 63), + (37, 4, 11, 52, 46, 52, 54, 55, 67, 67), + (37, 5, 1, 56, 54, 55, 33, 41, 63, 63), + (37, 5, 4, 53, 57, 51, 37, 44, 63, 63), + (37, 5, 5, 36, 43, 46, 56, 54, 62, 62), + (37, 5, 6, 56, 53, 55, 31, 41, 62, 62), + (37, 5, 8, 32, 37, 44, 56, 55, 60, 60), + (37, 5, 9, 45, 48, 54, 56, 56, 67, 67), + (37, 6, 1, 54, 55, 57, 36, 43, 64, 64), + (37, 6, 3, 45, 59, 53, 55, 50, 67, 67), + (37, 6, 6, 56, 55, 55, 34, 43, 63, 63), + (37, 6, 7, 51, 51, 53, 60, 54, 69, 69), + (37, 6, 11, 47, 52, 50, 56, 60, 68, 68), + (37, 7, 1, 59, 51, 57, 28, 45, 63, 63), + (37, 7, 4, 55, 55, 54, 36, 47, 64, 64), + (37, 7, 6, 58, 51, 58, 26, 45, 62, 62), + (37, 7, 8, 36, 35, 45, 56, 56, 61, 61), + (37, 7, 9, 49, 45, 55, 56, 58, 67, 67), + (37, 8, 1, 58, 52, 57, 35, 44, 64, 64), + (37, 8, 3, 47, 57, 53, 54, 50, 67, 67), + (37, 8, 4, 52, 55, 53, 39, 46, 64, 64), + (37, 8, 5, 35, 40, 46, 57, 55, 62, 62), + (37, 8, 6, 57, 51, 55, 33, 44, 63, 63), + (37, 8, 7, 53, 47, 54, 59, 54, 68, 68), + (37, 8, 8, 30, 36, 44, 57, 55, 59, 59), + (37, 10, 2, 56, 49, 54, 50, 52, 67, 67), + (37, 10, 3, 50, 55, 54, 48, 52, 67, 67), + (37, 10, 4, 54, 55, 54, 35, 47, 64, 64), + (37, 10, 5, 38, 40, 47, 55, 56, 62, 62), + (37, 10, 6, 58, 50, 56, 26, 44, 62, 62), + (37, 10, 8, 34, 36, 44, 55, 56, 60, 60), + (37, 10, 9, 47, 45, 54, 54, 58, 67, 67), + (37, 11, 1, 58, 54, 58, 30, 43, 64, 64), + (37, 11, 2, 54, 52, 55, 57, 51, 69, 69), + (37, 11, 3, 47, 57, 54, 50, 50, 67, 67), + (37, 11, 5, 35, 42, 47, 55, 55, 62, 62), + (37, 11, 6, 56, 54, 56, 28, 43, 62, 62), + (37, 11, 7, 53, 50, 55, 57, 54, 69, 69), + (37, 11, 8, 30, 38, 45, 55, 56, 60, 60), + (38, 1, 1, 57, 52, 56, 31, 44, 63, 63), + (38, 1, 2, 60, 49, 59, 50, 52, 69, 69), + (38, 1, 4, 52, 55, 53, 35, 47, 63, 63), + (38, 1, 5, 35, 40, 45, 55, 56, 61, 61), + (38, 1, 6, 56, 51, 54, 29, 44, 62, 62), + (38, 1, 8, 31, 35, 43, 55, 56, 59, 59), + (38, 1, 9, 43, 45, 53, 54, 58, 66, 66), + (38, 2, 1, 56, 53, 56, 34, 42, 63, 63), + (38, 2, 3, 45, 56, 52, 51, 48, 65, 65), + (38, 2, 4, 50, 56, 50, 38, 43, 63, 63), + (38, 2, 6, 58, 53, 56, 32, 42, 63, 63), + (38, 2, 7, 51, 48, 53, 58, 53, 68, 68), + (38, 2, 9, 42, 47, 52, 55, 56, 65, 65), + (38, 3, 1, 56, 54, 56, 32, 44, 63, 63), + (38, 3, 2, 59, 52, 53, 51, 51, 68, 68), + (38, 3, 3, 45, 56, 52, 50, 50, 66, 66), + (38, 3, 4, 51, 56, 50, 36, 46, 63, 63), + (38, 3, 5, 34, 43, 43, 55, 57, 62, 62), + (38, 3, 6, 55, 53, 54, 30, 44, 62, 62), + (38, 4, 1, 58, 50, 57, 31, 43, 63, 63), + (38, 4, 3, 48, 55, 53, 51, 50, 67, 67), + (38, 4, 4, 53, 54, 51, 35, 45, 63, 63), + (38, 4, 5, 38, 38, 46, 61, 57, 63, 63), + (38, 4, 6, 57, 49, 55, 29, 43, 62, 62), + (38, 4, 11, 50, 46, 51, 54, 54, 66, 66), + (38, 5, 1, 55, 53, 54, 33, 41, 62, 62), + (38, 5, 4, 52, 56, 50, 37, 42, 63, 63), + (38, 5, 5, 36, 41, 45, 56, 54, 61, 61), + (38, 5, 6, 55, 52, 54, 31, 41, 62, 62), + (38, 5, 8, 32, 37, 42, 55, 54, 59, 59), + (38, 5, 9, 44, 47, 53, 55, 55, 66, 66), + (38, 6, 1, 53, 54, 56, 36, 43, 63, 63), + (38, 6, 3, 44, 58, 52, 54, 49, 66, 66), + (38, 6, 6, 55, 54, 54, 34, 43, 63, 63), + (38, 6, 7, 50, 50, 53, 58, 53, 68, 68), + (38, 6, 11, 46, 51, 49, 55, 59, 67, 67), + (38, 7, 1, 58, 50, 56, 28, 43, 62, 62), + (38, 7, 4, 54, 54, 53, 34, 45, 63, 63), + (38, 7, 6, 56, 50, 57, 26, 43, 62, 62), + (38, 7, 8, 36, 33, 44, 56, 55, 60, 60), + (38, 7, 9, 47, 43, 54, 55, 57, 66, 66), + (38, 8, 1, 57, 51, 56, 35, 42, 63, 63), + (38, 8, 3, 46, 56, 52, 53, 49, 66, 66), + (38, 8, 4, 51, 54, 52, 39, 45, 63, 63), + (38, 8, 5, 35, 38, 45, 56, 54, 61, 61), + (38, 8, 6, 56, 50, 54, 33, 42, 62, 62), + (38, 8, 7, 52, 45, 53, 59, 53, 67, 67), + (38, 8, 8, 30, 34, 42, 56, 55, 58, 58), + (38, 10, 2, 55, 48, 53, 49, 51, 66, 66), + (38, 10, 3, 48, 54, 53, 47, 50, 66, 66), + (38, 10, 4, 53, 54, 53, 32, 46, 63, 63), + (38, 10, 5, 38, 38, 45, 54, 55, 61, 61), + (38, 10, 6, 57, 50, 54, 26, 42, 61, 61), + (38, 10, 8, 34, 34, 43, 54, 55, 59, 59), + (38, 10, 9, 45, 44, 53, 53, 57, 65, 65), + (38, 11, 1, 57, 53, 57, 30, 43, 63, 63), + (38, 11, 2, 54, 51, 53, 56, 50, 68, 68), + (38, 11, 3, 46, 56, 53, 49, 49, 65, 65), + (38, 11, 5, 35, 42, 46, 55, 54, 61, 61), + (38, 11, 6, 54, 53, 55, 28, 43, 62, 62), + (38, 11, 7, 52, 48, 54, 57, 53, 68, 68), + (38, 11, 8, 30, 38, 44, 54, 54, 59, 59), + (39, 1, 1, 56, 51, 56, 31, 44, 63, 63), + (39, 1, 2, 59, 48, 57, 49, 51, 68, 68), + (39, 1, 4, 51, 54, 52, 35, 45, 63, 63), + (39, 1, 5, 35, 40, 44, 54, 55, 61, 61), + (39, 1, 6, 55, 50, 54, 29, 44, 61, 61), + (39, 1, 8, 31, 35, 43, 54, 55, 59, 59), + (39, 1, 9, 43, 44, 52, 53, 57, 65, 65), + (39, 2, 1, 56, 52, 55, 34, 41, 63, 63), + (39, 2, 3, 45, 54, 51, 50, 47, 65, 65), + (39, 2, 4, 50, 55, 49, 38, 43, 62, 62), + (39, 2, 6, 57, 52, 55, 32, 41, 62, 62), + (39, 2, 7, 50, 47, 52, 57, 51, 66, 66), + (39, 2, 9, 41, 46, 51, 54, 55, 64, 64), + (39, 3, 1, 55, 53, 55, 32, 44, 63, 63), + (39, 3, 2, 58, 50, 51, 50, 50, 67, 67), + (39, 3, 3, 45, 55, 51, 49, 49, 65, 65), + (39, 3, 4, 50, 55, 49, 36, 44, 62, 62), + (39, 3, 5, 34, 43, 43, 54, 56, 61, 61), + (39, 3, 6, 54, 52, 53, 30, 44, 62, 62), + (39, 4, 1, 57, 49, 56, 31, 43, 62, 62), + (39, 4, 3, 47, 54, 52, 50, 49, 65, 65), + (39, 4, 4, 52, 53, 50, 35, 44, 62, 62), + (39, 4, 5, 38, 36, 44, 60, 56, 62, 62), + (39, 4, 6, 56, 48, 54, 29, 43, 61, 61), + (39, 4, 11, 49, 45, 50, 52, 53, 65, 65), + (39, 5, 1, 54, 52, 53, 33, 40, 61, 61), + (39, 5, 4, 51, 55, 50, 37, 42, 62, 62), + (39, 5, 5, 36, 41, 45, 55, 53, 61, 61), + (39, 5, 6, 54, 51, 53, 31, 40, 61, 61), + (39, 5, 8, 32, 37, 42, 54, 52, 59, 59), + (39, 5, 9, 44, 45, 52, 54, 54, 65, 65), + (39, 6, 1, 52, 53, 55, 33, 41, 62, 62), + (39, 6, 3, 44, 57, 51, 53, 48, 65, 65), + (39, 6, 6, 54, 53, 53, 30, 41, 61, 61), + (39, 6, 7, 49, 48, 52, 58, 52, 67, 67), + (39, 6, 11, 45, 50, 48, 54, 59, 66, 66), + (39, 7, 1, 56, 50, 55, 28, 43, 61, 61), + (39, 7, 4, 53, 53, 52, 34, 44, 62, 62), + (39, 7, 6, 55, 49, 56, 26, 43, 61, 61), + (39, 7, 8, 33, 33, 44, 55, 54, 59, 59), + (39, 7, 9, 47, 43, 53, 54, 56, 66, 66), + (39, 8, 1, 56, 50, 56, 35, 42, 63, 63), + (39, 8, 3, 46, 55, 52, 52, 48, 66, 66), + (39, 8, 4, 50, 53, 51, 39, 45, 63, 63), + (39, 8, 5, 35, 38, 45, 55, 53, 60, 60), + (39, 8, 6, 55, 50, 53, 33, 42, 61, 61), + (39, 8, 7, 50, 45, 52, 57, 52, 66, 66), + (39, 8, 8, 30, 34, 42, 55, 54, 58, 58), + (39, 10, 2, 54, 47, 52, 48, 50, 65, 65), + (39, 10, 3, 47, 54, 51, 46, 49, 64, 64), + (39, 10, 4, 52, 53, 52, 32, 44, 62, 62), + (39, 10, 5, 38, 38, 44, 53, 54, 60, 60), + (39, 10, 6, 56, 49, 54, 26, 42, 60, 60), + (39, 10, 8, 34, 34, 43, 53, 54, 58, 58), + (39, 10, 9, 45, 44, 52, 52, 56, 65, 65), + (39, 11, 1, 56, 52, 56, 30, 41, 62, 62), + (39, 11, 2, 52, 50, 53, 55, 49, 67, 67), + (39, 11, 3, 46, 54, 52, 48, 48, 65, 65), + (39, 11, 5, 35, 42, 44, 54, 54, 61, 61), + (39, 11, 6, 53, 52, 54, 28, 41, 61, 61), + (39, 11, 7, 50, 47, 52, 56, 52, 66, 66), + (39, 11, 8, 30, 38, 44, 53, 53, 59, 59), + (40, 1, 1, 55, 50, 55, 31, 42, 62, 62), + (40, 1, 2, 58, 47, 57, 48, 50, 67, 67), + (40, 1, 4, 50, 53, 51, 35, 45, 62, 62), + (40, 1, 5, 35, 40, 44, 53, 54, 60, 60), + (40, 1, 6, 54, 50, 52, 29, 42, 61, 61), + (40, 1, 8, 31, 35, 41, 52, 54, 58, 58), + (40, 1, 9, 41, 44, 51, 52, 56, 64, 64), + (40, 2, 1, 55, 50, 54, 31, 41, 61, 61), + (40, 2, 3, 43, 53, 50, 49, 46, 63, 63), + (40, 2, 4, 49, 54, 48, 35, 42, 61, 61), + (40, 2, 6, 56, 50, 54, 29, 41, 61, 61), + (40, 2, 7, 48, 47, 50, 56, 50, 65, 65), + (40, 2, 9, 41, 46, 50, 53, 54, 64, 64), + (40, 3, 1, 55, 51, 54, 32, 42, 62, 62), + (40, 3, 2, 58, 49, 50, 49, 50, 66, 66), + (40, 3, 3, 44, 54, 49, 48, 48, 64, 64), + (40, 3, 4, 49, 54, 48, 34, 44, 61, 61), + (40, 3, 5, 34, 41, 42, 53, 55, 60, 60), + (40, 3, 6, 54, 50, 51, 30, 42, 61, 61), + (40, 4, 1, 56, 48, 55, 31, 41, 61, 61), + (40, 4, 3, 47, 53, 51, 49, 48, 65, 65), + (40, 4, 4, 51, 52, 50, 35, 44, 61, 61), + (40, 4, 5, 35, 36, 44, 59, 55, 61, 61), + (40, 4, 6, 55, 48, 53, 29, 41, 60, 60), + (40, 4, 11, 48, 44, 49, 52, 52, 64, 64), + (40, 5, 1, 53, 51, 52, 30, 40, 60, 60), + (40, 5, 4, 50, 53, 49, 35, 41, 61, 61), + (40, 5, 5, 34, 39, 43, 53, 52, 59, 59), + (40, 5, 6, 53, 50, 52, 28, 40, 60, 60), + (40, 5, 8, 32, 35, 42, 53, 51, 58, 58), + (40, 5, 9, 42, 45, 51, 53, 53, 64, 64), + (40, 6, 1, 51, 51, 54, 33, 41, 61, 61), + (40, 6, 3, 42, 56, 50, 52, 47, 64, 64), + (40, 6, 6, 53, 51, 52, 30, 41, 61, 61), + (40, 6, 7, 48, 48, 50, 57, 51, 66, 66), + (40, 6, 11, 45, 50, 47, 53, 58, 66, 66), + (40, 7, 1, 55, 49, 54, 28, 41, 60, 60), + (40, 7, 4, 51, 52, 51, 34, 44, 62, 62), + (40, 7, 6, 54, 48, 55, 26, 41, 60, 60), + (40, 7, 8, 33, 33, 42, 54, 53, 58, 58), + (40, 7, 9, 45, 42, 52, 53, 55, 64, 64), + (40, 8, 1, 55, 49, 54, 32, 42, 62, 62), + (40, 8, 3, 44, 54, 50, 51, 47, 64, 64), + (40, 8, 4, 50, 52, 50, 36, 43, 61, 61), + (40, 8, 5, 35, 38, 43, 54, 53, 60, 60), + (40, 8, 6, 54, 49, 52, 30, 42, 60, 60), + (40, 8, 7, 49, 44, 51, 56, 51, 65, 65), + (40, 8, 8, 30, 34, 42, 54, 52, 57, 57), + (40, 10, 2, 53, 46, 52, 47, 50, 64, 64), + (40, 10, 3, 47, 52, 50, 46, 48, 64, 64), + (40, 10, 4, 51, 52, 51, 32, 44, 61, 61), + (40, 10, 5, 35, 38, 44, 52, 53, 59, 59), + (40, 10, 6, 55, 48, 52, 26, 40, 59, 59), + (40, 10, 8, 31, 34, 41, 52, 53, 57, 57), + (40, 10, 9, 43, 43, 51, 51, 55, 64, 64), + (40, 11, 1, 55, 50, 55, 30, 41, 61, 61), + (40, 11, 2, 52, 49, 52, 54, 48, 66, 66), + (40, 11, 3, 44, 53, 51, 47, 47, 63, 63), + (40, 11, 5, 35, 40, 44, 52, 52, 60, 60), + (40, 11, 6, 53, 50, 53, 28, 41, 60, 60), + (40, 11, 7, 49, 47, 52, 54, 51, 66, 66), + (40, 11, 8, 30, 35, 42, 53, 52, 58, 58), + (41, 1, 1, 54, 49, 53, 28, 42, 60, 60), + (41, 1, 2, 57, 46, 55, 47, 50, 66, 66), + (41, 1, 4, 49, 52, 50, 33, 44, 61, 61), + (41, 1, 5, 33, 38, 42, 52, 53, 59, 59), + (41, 1, 6, 53, 49, 51, 26, 42, 59, 59), + (41, 1, 8, 28, 33, 41, 52, 53, 56, 56), + (41, 1, 9, 41, 42, 51, 51, 55, 63, 63), + (41, 2, 1, 53, 50, 53, 31, 39, 60, 60), + (41, 2, 3, 42, 52, 49, 48, 45, 62, 62), + (41, 2, 4, 48, 53, 47, 35, 42, 60, 60), + (41, 2, 6, 55, 49, 53, 29, 39, 60, 60), + (41, 2, 7, 48, 46, 50, 55, 49, 64, 64), + (41, 2, 9, 39, 44, 50, 52, 53, 63, 63), + (41, 3, 1, 54, 50, 53, 29, 42, 61, 61), + (41, 3, 2, 56, 48, 49, 48, 49, 65, 65), + (41, 3, 3, 43, 52, 49, 47, 47, 63, 63), + (41, 3, 4, 48, 53, 47, 34, 43, 60, 60), + (41, 3, 5, 32, 41, 42, 52, 54, 59, 59), + (41, 3, 6, 53, 50, 51, 27, 42, 59, 59), + (41, 4, 1, 55, 47, 54, 28, 41, 60, 60), + (41, 4, 3, 46, 52, 50, 48, 47, 64, 64), + (41, 4, 4, 50, 50, 49, 33, 42, 60, 60), + (41, 4, 5, 35, 34, 43, 58, 54, 60, 60), + (41, 4, 6, 54, 47, 51, 26, 41, 59, 59), + (41, 4, 11, 47, 43, 48, 50, 51, 63, 63), + (41, 5, 1, 52, 49, 50, 30, 38, 59, 59), + (41, 5, 4, 50, 52, 48, 35, 41, 60, 60), + (41, 5, 5, 34, 39, 42, 52, 50, 59, 59), + (41, 5, 6, 52, 49, 51, 28, 38, 58, 58), + (41, 5, 8, 29, 35, 40, 52, 50, 56, 56), + (41, 5, 9, 42, 44, 51, 51, 53, 63, 63), + (41, 6, 1, 50, 50, 53, 33, 40, 60, 60), + (41, 6, 3, 41, 55, 49, 50, 46, 63, 63), + (41, 6, 6, 52, 50, 50, 30, 40, 60, 60), + (41, 6, 7, 47, 47, 50, 56, 49, 65, 65), + (41, 6, 11, 44, 49, 46, 52, 57, 65, 65), + (41, 7, 1, 54, 48, 53, 28, 41, 60, 60), + (41, 7, 4, 50, 51, 50, 32, 42, 60, 60), + (41, 7, 6, 53, 47, 54, 26, 41, 59, 59), + (41, 7, 8, 33, 31, 42, 53, 52, 57, 57), + (41, 7, 9, 45, 42, 50, 52, 54, 64, 64), + (41, 8, 1, 54, 48, 53, 32, 40, 61, 61), + (41, 8, 3, 43, 53, 49, 50, 46, 63, 63), + (41, 8, 4, 49, 51, 50, 36, 42, 61, 61), + (41, 8, 5, 32, 36, 42, 53, 52, 58, 58), + (41, 8, 6, 53, 48, 51, 30, 40, 59, 59), + (41, 8, 7, 48, 43, 50, 56, 50, 64, 64), + (41, 8, 8, 28, 32, 40, 52, 51, 56, 56), + (41, 10, 2, 52, 46, 50, 47, 49, 64, 64), + (41, 10, 3, 46, 51, 50, 45, 47, 63, 63), + (41, 10, 4, 50, 51, 50, 30, 43, 60, 60), + (41, 10, 5, 35, 36, 42, 50, 52, 58, 58), + (41, 10, 6, 53, 47, 51, 26, 40, 59, 59), + (41, 10, 8, 31, 32, 41, 51, 52, 56, 56), + (41, 10, 9, 43, 41, 50, 50, 54, 63, 63), + (41, 11, 1, 54, 50, 54, 28, 40, 60, 60), + (41, 11, 2, 50, 48, 50, 54, 47, 65, 65), + (41, 11, 3, 43, 52, 50, 46, 46, 62, 62), + (41, 11, 5, 32, 40, 43, 51, 51, 59, 59), + (41, 11, 6, 52, 49, 51, 25, 40, 59, 59), + (41, 11, 7, 48, 46, 51, 54, 49, 65, 65), + (41, 11, 8, 28, 35, 42, 52, 51, 57, 57), + (42, 1, 1, 53, 47, 53, 28, 42, 60, 60), + (42, 1, 2, 56, 46, 55, 46, 49, 65, 65), + (42, 1, 4, 47, 51, 49, 33, 44, 60, 60), + (42, 1, 5, 33, 38, 42, 50, 52, 58, 58), + (42, 1, 6, 52, 47, 50, 26, 42, 59, 59), + (42, 1, 8, 28, 33, 41, 51, 52, 56, 56), + (42, 1, 9, 41, 42, 50, 50, 54, 63, 63), + (42, 2, 1, 52, 49, 52, 31, 39, 60, 60), + (42, 2, 3, 42, 51, 48, 46, 44, 61, 61), + (42, 2, 4, 47, 52, 46, 35, 40, 59, 59), + (42, 2, 6, 54, 48, 53, 29, 39, 60, 60), + (42, 2, 7, 47, 44, 48, 54, 48, 63, 63), + (42, 2, 9, 39, 44, 49, 51, 52, 62, 62), + (42, 3, 1, 53, 49, 52, 29, 40, 60, 60), + (42, 3, 2, 56, 47, 48, 47, 48, 64, 64), + (42, 3, 3, 43, 51, 48, 45, 46, 62, 62), + (42, 3, 4, 47, 52, 46, 34, 43, 59, 59), + (42, 3, 5, 32, 39, 40, 51, 53, 58, 58), + (42, 3, 6, 52, 49, 50, 27, 40, 58, 58), + (42, 4, 1, 54, 46, 53, 28, 41, 60, 60), + (42, 4, 3, 44, 51, 49, 48, 46, 63, 63), + (42, 4, 4, 49, 49, 48, 33, 42, 59, 59), + (42, 4, 5, 35, 34, 43, 57, 53, 60, 60), + (42, 4, 6, 53, 46, 51, 26, 41, 58, 58), + (42, 4, 11, 47, 43, 47, 49, 50, 62, 62), + (42, 5, 1, 51, 48, 50, 30, 38, 58, 58), + (42, 5, 4, 48, 51, 47, 35, 39, 59, 59), + (42, 5, 5, 34, 39, 42, 51, 49, 58, 58), + (42, 5, 6, 51, 48, 50, 28, 38, 58, 58), + (42, 5, 8, 29, 35, 40, 51, 50, 56, 56), + (42, 5, 9, 40, 44, 50, 51, 51, 62, 62), + (42, 6, 1, 49, 50, 52, 33, 40, 60, 60), + (42, 6, 3, 41, 54, 48, 49, 45, 62, 62), + (42, 6, 6, 51, 49, 50, 30, 40, 59, 59), + (42, 6, 7, 46, 45, 48, 55, 49, 64, 64), + (42, 6, 11, 43, 47, 45, 50, 56, 63, 63), + (42, 7, 1, 54, 47, 52, 25, 41, 59, 59), + (42, 7, 4, 50, 50, 50, 32, 42, 60, 60), + (42, 7, 6, 52, 47, 53, 24, 41, 58, 58), + (42, 7, 8, 33, 31, 40, 52, 50, 56, 56), + (42, 7, 9, 43, 40, 50, 51, 53, 63, 63), + (42, 8, 1, 53, 47, 53, 32, 40, 60, 60), + (42, 8, 3, 43, 52, 49, 49, 45, 63, 63), + (42, 8, 4, 48, 50, 49, 36, 42, 60, 60), + (42, 8, 5, 32, 36, 42, 52, 50, 58, 58), + (42, 8, 6, 52, 46, 50, 30, 40, 59, 59), + (42, 8, 7, 48, 43, 49, 54, 49, 63, 63), + (42, 8, 8, 28, 32, 40, 51, 50, 55, 55), + (42, 10, 2, 50, 45, 49, 46, 48, 63, 63), + (42, 10, 3, 44, 50, 48, 44, 46, 62, 62), + (42, 10, 4, 49, 50, 49, 30, 43, 59, 59), + (42, 10, 5, 35, 36, 42, 49, 51, 58, 58), + (42, 10, 6, 53, 46, 50, 24, 40, 58, 58), + (42, 10, 8, 31, 32, 39, 50, 51, 55, 55), + (42, 10, 9, 42, 41, 50, 49, 53, 62, 62), + (42, 11, 1, 53, 49, 53, 28, 40, 59, 59), + (42, 11, 2, 49, 46, 50, 53, 46, 64, 64), + (42, 11, 3, 43, 51, 49, 46, 45, 62, 62), + (42, 11, 5, 32, 40, 43, 50, 50, 58, 58), + (42, 11, 6, 50, 48, 51, 25, 40, 58, 58), + (42, 11, 7, 48, 44, 49, 53, 49, 64, 64), + (42, 11, 8, 28, 35, 40, 50, 50, 56, 56), + (43, 1, 1, 52, 47, 52, 28, 40, 59, 59), + (43, 1, 2, 55, 45, 54, 45, 48, 64, 64), + (43, 1, 4, 47, 50, 48, 33, 43, 59, 59), + (43, 1, 5, 33, 36, 41, 49, 51, 57, 57), + (43, 1, 6, 51, 46, 49, 26, 40, 58, 58), + (43, 1, 8, 28, 33, 39, 50, 51, 55, 55), + (43, 1, 9, 39, 41, 49, 49, 53, 61, 61), + (43, 2, 1, 51, 48, 51, 31, 38, 59, 59), + (43, 2, 3, 41, 50, 47, 46, 43, 60, 60), + (43, 2, 4, 46, 50, 45, 33, 39, 58, 58), + (43, 2, 6, 53, 47, 51, 29, 38, 59, 59), + (43, 2, 7, 46, 44, 48, 53, 47, 63, 63), + (43, 2, 9, 38, 43, 48, 50, 51, 61, 61), + (43, 3, 1, 52, 48, 51, 29, 40, 59, 59), + (43, 3, 2, 55, 46, 47, 46, 47, 63, 63), + (43, 3, 3, 41, 50, 46, 45, 45, 61, 61), + (43, 3, 4, 46, 51, 45, 34, 41, 58, 58), + (43, 3, 5, 32, 39, 39, 50, 52, 57, 57), + (43, 3, 6, 50, 48, 48, 27, 40, 58, 58), + (43, 4, 1, 53, 45, 52, 28, 39, 58, 58), + (43, 4, 3, 44, 50, 48, 47, 45, 62, 62), + (43, 4, 4, 48, 48, 47, 33, 41, 58, 58), + (43, 4, 5, 33, 34, 41, 56, 52, 58, 58), + (43, 4, 6, 52, 44, 50, 26, 39, 57, 57), + (43, 4, 11, 46, 42, 46, 48, 49, 61, 61), + (43, 5, 1, 50, 47, 49, 30, 36, 57, 57), + (43, 5, 4, 47, 50, 46, 35, 38, 58, 58), + (43, 5, 5, 34, 37, 40, 50, 48, 57, 57), + (43, 5, 6, 50, 47, 49, 28, 36, 57, 57), + (43, 5, 8, 29, 35, 39, 50, 49, 55, 55), + (43, 5, 9, 40, 42, 49, 50, 50, 61, 61), + (43, 6, 1, 48, 49, 51, 33, 38, 59, 59), + (43, 6, 3, 40, 52, 47, 48, 44, 61, 61), + (43, 6, 6, 50, 48, 49, 30, 38, 58, 58), + (43, 6, 7, 45, 45, 48, 54, 47, 63, 63), + (43, 6, 11, 42, 46, 44, 50, 55, 62, 62), + (43, 7, 1, 52, 45, 51, 25, 39, 58, 58), + (43, 7, 4, 49, 49, 49, 32, 41, 59, 59), + (43, 7, 6, 51, 45, 52, 24, 39, 57, 57), + (43, 7, 8, 33, 31, 40, 51, 49, 56, 56), + (43, 7, 9, 43, 39, 49, 50, 52, 62, 62), + (43, 8, 1, 52, 46, 51, 32, 39, 59, 59), + (43, 8, 3, 42, 51, 47, 48, 44, 61, 61), + (43, 8, 4, 46, 49, 48, 34, 40, 58, 58), + (43, 8, 5, 32, 34, 40, 50, 49, 56, 56), + (43, 8, 6, 51, 45, 49, 30, 39, 58, 58), + (43, 8, 7, 47, 41, 48, 53, 48, 62, 62), + (43, 8, 8, 28, 32, 39, 50, 49, 54, 54), + (43, 10, 2, 50, 44, 48, 45, 47, 62, 62), + (43, 10, 3, 44, 49, 47, 43, 45, 61, 61), + (43, 10, 4, 48, 49, 48, 30, 41, 58, 58), + (43, 10, 5, 33, 34, 40, 49, 50, 56, 56), + (43, 10, 6, 52, 44, 49, 24, 38, 56, 56), + (43, 10, 8, 31, 32, 39, 49, 50, 55, 55), + (43, 10, 9, 42, 40, 49, 48, 52, 61, 61), + (43, 11, 1, 52, 48, 52, 28, 38, 58, 58), + (43, 11, 2, 49, 46, 48, 52, 45, 63, 63), + (43, 11, 3, 42, 50, 48, 44, 44, 61, 61), + (43, 11, 5, 32, 38, 41, 49, 49, 57, 57), + (43, 11, 6, 49, 47, 50, 25, 38, 57, 57), + (43, 11, 7, 47, 44, 49, 52, 47, 63, 63), + (43, 11, 8, 28, 33, 40, 49, 49, 55, 55), + (44, 1, 1, 51, 46, 50, 28, 40, 58, 58), + (44, 1, 2, 54, 44, 53, 44, 47, 63, 63), + (44, 1, 4, 46, 49, 47, 31, 43, 58, 58), + (44, 1, 5, 31, 36, 41, 48, 50, 56, 56), + (44, 1, 6, 50, 45, 48, 26, 40, 57, 57), + (44, 1, 8, 28, 31, 39, 49, 50, 54, 54), + (44, 1, 9, 39, 41, 48, 48, 52, 61, 61), + (44, 2, 1, 50, 47, 50, 31, 38, 58, 58), + (44, 2, 3, 39, 49, 46, 45, 42, 60, 60), + (44, 2, 4, 44, 49, 44, 33, 39, 57, 57), + (44, 2, 6, 52, 46, 50, 29, 38, 58, 58), + (44, 2, 7, 44, 43, 47, 52, 46, 62, 62), + (44, 2, 9, 38, 41, 47, 49, 50, 60, 60), + (44, 3, 1, 50, 47, 50, 29, 38, 58, 58), + (44, 3, 2, 54, 46, 46, 45, 46, 62, 62), + (44, 3, 3, 40, 49, 46, 44, 44, 60, 60), + (44, 3, 4, 45, 49, 44, 31, 41, 57, 57), + (44, 3, 5, 29, 39, 39, 48, 51, 56, 56), + (44, 3, 6, 49, 47, 47, 27, 38, 57, 57), + (44, 4, 1, 52, 44, 51, 28, 39, 58, 58), + (44, 4, 3, 43, 49, 47, 46, 44, 61, 61), + (44, 4, 4, 47, 47, 46, 31, 41, 57, 57), + (44, 4, 5, 33, 33, 41, 55, 51, 58, 58), + (44, 4, 6, 51, 43, 48, 26, 39, 57, 57), + (44, 4, 11, 45, 41, 45, 47, 48, 60, 60), + (44, 5, 1, 48, 46, 47, 30, 36, 57, 57), + (44, 5, 4, 46, 49, 45, 32, 38, 57, 57), + (44, 5, 5, 31, 37, 40, 49, 47, 56, 56), + (44, 5, 6, 49, 46, 48, 28, 36, 56, 56), + (44, 5, 8, 29, 32, 39, 49, 47, 54, 54), + (44, 5, 9, 38, 40, 48, 48, 50, 60, 60), + (44, 6, 1, 47, 48, 50, 30, 38, 57, 57), + (44, 6, 3, 38, 51, 46, 48, 43, 60, 60), + (44, 6, 6, 49, 47, 47, 27, 38, 57, 57), + (44, 6, 7, 44, 44, 47, 53, 47, 62, 62), + (44, 6, 11, 41, 45, 43, 48, 54, 61, 61), + (44, 7, 1, 51, 44, 50, 25, 39, 57, 57), + (44, 7, 4, 48, 48, 48, 32, 41, 58, 58), + (44, 7, 6, 50, 44, 51, 24, 39, 57, 57), + (44, 7, 8, 30, 31, 38, 50, 48, 54, 54), + (44, 7, 9, 41, 39, 48, 49, 50, 61, 61), + (44, 8, 1, 51, 45, 50, 32, 39, 58, 58), + (44, 8, 3, 40, 50, 46, 48, 43, 61, 61), + (44, 8, 4, 45, 48, 47, 34, 40, 58, 58), + (44, 8, 5, 30, 34, 40, 49, 48, 55, 55), + (44, 8, 6, 50, 44, 48, 30, 39, 57, 57), + (44, 8, 7, 45, 40, 46, 53, 47, 61, 61), + (44, 8, 8, 28, 29, 39, 49, 48, 54, 54), + (44, 10, 2, 48, 43, 47, 44, 46, 61, 61), + (44, 10, 3, 43, 48, 47, 42, 44, 60, 60), + (44, 10, 4, 47, 48, 47, 30, 41, 58, 58), + (44, 10, 5, 33, 34, 40, 48, 49, 56, 56), + (44, 10, 6, 50, 43, 48, 24, 38, 56, 56), + (44, 10, 8, 31, 29, 37, 48, 48, 54, 54), + (44, 10, 9, 40, 40, 48, 47, 51, 60, 60), + (44, 11, 1, 51, 47, 51, 28, 38, 58, 58), + (44, 11, 2, 47, 45, 48, 51, 44, 62, 62), + (44, 11, 3, 40, 49, 47, 43, 43, 60, 60), + (44, 11, 5, 30, 38, 41, 48, 48, 56, 56), + (44, 11, 6, 48, 46, 48, 25, 38, 56, 56), + (44, 11, 7, 45, 43, 47, 51, 47, 62, 62), + (44, 11, 8, 28, 33, 38, 48, 48, 54, 54), + (45, 1, 1, 50, 45, 50, 28, 39, 57, 57), + (45, 1, 2, 54, 43, 52, 43, 46, 62, 62), + (45, 1, 4, 45, 48, 46, 31, 41, 57, 57), + (45, 1, 5, 31, 36, 39, 48, 49, 55, 55), + (45, 1, 6, 49, 44, 47, 26, 39, 56, 56), + (45, 1, 8, 28, 31, 38, 47, 49, 54, 54), + (45, 1, 9, 38, 39, 47, 47, 51, 59, 59), + (45, 2, 1, 49, 46, 49, 28, 36, 57, 57), + (45, 2, 3, 39, 48, 45, 44, 41, 59, 59), + (45, 2, 4, 44, 48, 43, 33, 38, 56, 56), + (45, 2, 6, 51, 45, 50, 25, 36, 57, 57), + (45, 2, 7, 44, 41, 45, 51, 45, 60, 60), + (45, 2, 9, 36, 41, 46, 47, 49, 59, 59), + (45, 3, 1, 49, 46, 49, 26, 38, 57, 57), + (45, 3, 2, 53, 45, 45, 44, 44, 61, 61), + (45, 3, 3, 40, 48, 45, 43, 43, 59, 59), + (45, 3, 4, 44, 48, 43, 31, 40, 56, 56), + (45, 3, 5, 29, 37, 38, 47, 50, 55, 55), + (45, 3, 6, 48, 46, 47, 24, 38, 56, 56), + (45, 4, 1, 51, 43, 50, 28, 38, 57, 57), + (45, 4, 3, 41, 48, 45, 45, 43, 59, 59), + (45, 4, 4, 46, 46, 44, 31, 39, 56, 56), + (45, 4, 5, 33, 33, 40, 54, 50, 57, 57), + (45, 4, 6, 50, 42, 47, 26, 38, 56, 56), + (45, 4, 11, 44, 40, 44, 46, 47, 59, 59), + (45, 5, 1, 47, 46, 47, 27, 35, 55, 55), + (45, 5, 4, 45, 48, 44, 32, 37, 56, 56), + (45, 5, 5, 31, 35, 39, 48, 46, 55, 55), + (45, 5, 6, 48, 45, 47, 25, 35, 55, 55), + (45, 5, 8, 26, 32, 37, 48, 46, 53, 53), + (45, 5, 9, 38, 40, 47, 47, 48, 59, 59), + (45, 6, 1, 46, 47, 49, 30, 37, 57, 57), + (45, 6, 3, 38, 50, 45, 47, 42, 60, 60), + (45, 6, 6, 48, 46, 47, 27, 37, 56, 56), + (45, 6, 7, 43, 43, 45, 52, 45, 61, 61), + (45, 6, 11, 40, 45, 43, 48, 53, 61, 61), + (45, 7, 1, 50, 44, 49, 25, 38, 56, 56), + (45, 7, 4, 47, 47, 46, 30, 39, 57, 57), + (45, 7, 6, 49, 43, 50, 24, 38, 56, 56), + (45, 7, 8, 30, 29, 38, 49, 48, 54, 54), + (45, 7, 9, 41, 38, 47, 48, 50, 60, 60), + (45, 8, 1, 50, 44, 50, 29, 37, 57, 57), + (45, 8, 3, 40, 49, 45, 47, 42, 60, 60), + (45, 8, 4, 44, 47, 46, 34, 39, 57, 57), + (45, 8, 5, 30, 34, 39, 48, 47, 55, 55), + (45, 8, 6, 49, 43, 47, 26, 37, 56, 56), + (45, 8, 7, 44, 40, 46, 51, 46, 60, 60), + (45, 8, 8, 28, 29, 37, 48, 47, 53, 53), + (45, 10, 2, 47, 42, 46, 43, 44, 59, 59), + (45, 10, 3, 41, 47, 45, 41, 43, 58, 58), + (45, 10, 4, 46, 47, 45, 28, 40, 56, 56), + (45, 10, 5, 33, 34, 39, 47, 48, 55, 55), + (45, 10, 6, 49, 43, 47, 24, 37, 55, 55), + (45, 10, 8, 28, 29, 37, 46, 47, 53, 53), + (45, 10, 9, 40, 38, 47, 46, 50, 59, 59), + (45, 11, 1, 50, 46, 50, 28, 37, 57, 57), + (45, 11, 2, 47, 44, 46, 50, 43, 61, 61), + (45, 11, 3, 40, 48, 45, 42, 42, 59, 59), + (45, 11, 5, 30, 36, 40, 47, 47, 55, 55), + (45, 11, 6, 47, 45, 47, 25, 37, 55, 55), + (45, 11, 7, 44, 41, 46, 50, 45, 61, 61), + (45, 11, 8, 28, 33, 38, 47, 47, 54, 54), + (46, 1, 1, 49, 44, 49, 25, 39, 56, 56), + (46, 1, 2, 53, 42, 51, 42, 44, 61, 61), + (46, 1, 4, 44, 46, 45, 31, 40, 56, 56), + (46, 1, 5, 31, 34, 38, 46, 48, 54, 54), + (46, 1, 6, 48, 43, 46, 23, 39, 55, 55), + (46, 1, 8, 25, 31, 38, 46, 48, 53, 53), + (46, 1, 9, 38, 38, 46, 46, 50, 58, 58), + (46, 2, 1, 48, 44, 48, 28, 36, 56, 56), + (46, 2, 3, 38, 47, 44, 43, 40, 57, 57), + (46, 2, 4, 43, 47, 43, 33, 38, 56, 56), + (46, 2, 6, 50, 44, 48, 25, 36, 56, 56), + (46, 2, 7, 43, 41, 45, 50, 44, 60, 60), + (46, 2, 9, 36, 40, 45, 47, 48, 58, 58), + (46, 3, 1, 48, 45, 48, 26, 37, 56, 56), + (46, 3, 2, 52, 44, 44, 43, 43, 60, 60), + (46, 3, 3, 39, 47, 43, 42, 42, 58, 58), + (46, 3, 4, 43, 47, 42, 31, 38, 55, 55), + (46, 3, 5, 29, 37, 38, 47, 49, 55, 55), + (46, 3, 6, 47, 44, 45, 24, 37, 54, 54), + (46, 4, 1, 50, 42, 49, 25, 38, 56, 56), + (46, 4, 3, 41, 47, 45, 44, 42, 59, 59), + (46, 4, 4, 45, 45, 43, 31, 38, 55, 55), + (46, 4, 5, 33, 31, 38, 53, 49, 56, 56), + (46, 4, 6, 49, 42, 46, 23, 38, 55, 55), + (46, 4, 11, 42, 38, 43, 45, 46, 58, 58), + (46, 5, 1, 46, 45, 45, 27, 35, 55, 55), + (46, 5, 4, 44, 46, 43, 32, 37, 56, 56), + (46, 5, 5, 31, 35, 37, 47, 45, 54, 54), + (46, 5, 6, 46, 44, 46, 25, 35, 54, 54), + (46, 5, 8, 26, 32, 37, 47, 45, 53, 53), + (46, 5, 9, 37, 39, 46, 46, 47, 58, 58), + (46, 6, 1, 45, 45, 48, 30, 37, 56, 56), + (46, 6, 3, 37, 49, 44, 46, 41, 58, 58), + (46, 6, 6, 47, 44, 46, 27, 37, 55, 55), + (46, 6, 7, 42, 41, 45, 51, 45, 60, 60), + (46, 6, 11, 40, 43, 42, 46, 52, 60, 60), + (46, 7, 1, 49, 43, 48, 25, 38, 56, 56), + (46, 7, 4, 46, 46, 45, 30, 38, 56, 56), + (46, 7, 6, 48, 42, 49, 24, 38, 55, 55), + (46, 7, 8, 30, 29, 37, 48, 46, 53, 53), + (46, 7, 9, 39, 38, 46, 47, 49, 59, 59), + (46, 8, 1, 49, 43, 48, 29, 37, 56, 56), + (46, 8, 3, 39, 48, 44, 45, 41, 59, 59), + (46, 8, 4, 43, 46, 45, 31, 37, 56, 56), + (46, 8, 5, 30, 33, 37, 47, 46, 54, 54), + (46, 8, 6, 47, 43, 46, 26, 37, 55, 55), + (46, 8, 7, 43, 39, 45, 50, 45, 60, 60), + (46, 8, 8, 25, 29, 37, 47, 46, 52, 52), + (46, 10, 2, 46, 41, 45, 42, 43, 58, 58), + (46, 10, 3, 41, 46, 44, 40, 42, 58, 58), + (46, 10, 4, 45, 46, 44, 28, 38, 55, 55), + (46, 10, 5, 33, 33, 37, 45, 47, 54, 54), + (46, 10, 6, 48, 42, 46, 24, 37, 54, 54), + (46, 10, 8, 28, 29, 36, 45, 47, 52, 52), + (46, 10, 9, 38, 37, 46, 45, 49, 58, 58), + (46, 11, 1, 49, 44, 49, 25, 37, 56, 56), + (46, 11, 2, 45, 43, 46, 49, 43, 60, 60), + (46, 11, 3, 39, 47, 45, 41, 41, 58, 58), + (46, 11, 5, 30, 36, 38, 46, 46, 54, 54), + (46, 11, 6, 46, 44, 46, 23, 37, 54, 54), + (46, 11, 7, 43, 41, 45, 49, 45, 60, 60), + (46, 11, 8, 25, 33, 37, 46, 46, 52, 52), + (47, 1, 1, 48, 42, 48, 25, 37, 55, 55), + (47, 1, 2, 51, 40, 50, 41, 43, 60, 60), + (47, 1, 4, 43, 45, 44, 28, 40, 55, 55), + (47, 1, 5, 28, 34, 38, 45, 47, 53, 53), + (47, 1, 6, 47, 42, 45, 23, 37, 54, 54), + (47, 1, 8, 25, 28, 36, 45, 47, 51, 51), + (47, 1, 9, 36, 38, 45, 45, 49, 57, 57), + (47, 2, 1, 47, 43, 47, 28, 34, 55, 55), + (47, 2, 3, 37, 45, 43, 42, 39, 56, 56), + (47, 2, 4, 42, 46, 41, 30, 36, 54, 54), + (47, 2, 6, 49, 43, 47, 25, 34, 55, 55), + (47, 2, 7, 42, 40, 43, 49, 43, 59, 59), + (47, 2, 9, 34, 40, 44, 45, 47, 57, 57), + (47, 3, 1, 47, 44, 47, 26, 37, 55, 55), + (47, 3, 2, 51, 42, 43, 42, 42, 59, 59), + (47, 3, 3, 37, 46, 42, 41, 41, 57, 57), + (47, 3, 4, 42, 46, 41, 29, 38, 54, 54), + (47, 3, 5, 29, 37, 36, 46, 48, 54, 54), + (47, 3, 6, 46, 43, 44, 24, 37, 54, 54), + (47, 4, 1, 49, 41, 48, 25, 36, 55, 55), + (47, 4, 3, 40, 46, 44, 42, 41, 58, 58), + (47, 4, 4, 44, 44, 42, 28, 38, 54, 54), + (47, 4, 5, 30, 31, 38, 52, 48, 55, 55), + (47, 4, 6, 47, 41, 45, 23, 36, 54, 54), + (47, 4, 11, 41, 38, 42, 44, 45, 57, 57), + (47, 5, 1, 45, 43, 44, 27, 33, 53, 53), + (47, 5, 4, 43, 45, 41, 30, 35, 54, 54), + (47, 5, 5, 29, 35, 37, 46, 44, 53, 53), + (47, 5, 6, 45, 42, 45, 25, 33, 53, 53), + (47, 5, 8, 26, 30, 35, 46, 44, 51, 51), + (47, 5, 9, 37, 39, 45, 45, 47, 57, 57), + (47, 6, 1, 44, 44, 47, 30, 35, 55, 55), + (47, 6, 3, 36, 48, 43, 45, 40, 57, 57), + (47, 6, 6, 46, 44, 44, 27, 35, 54, 54), + (47, 6, 7, 41, 41, 43, 49, 43, 59, 59), + (47, 6, 11, 39, 42, 40, 45, 51, 59, 59), + (47, 7, 1, 48, 42, 47, 23, 36, 54, 54), + (47, 7, 4, 44, 45, 44, 30, 38, 55, 55), + (47, 7, 6, 46, 41, 48, 21, 36, 54, 54), + (47, 7, 8, 30, 29, 37, 47, 45, 52, 52), + (47, 7, 9, 39, 36, 45, 46, 47, 58, 58), + (47, 8, 1, 48, 42, 47, 29, 35, 55, 55), + (47, 8, 3, 38, 47, 43, 44, 40, 57, 57), + (47, 8, 4, 43, 44, 43, 31, 37, 55, 55), + (47, 8, 5, 28, 33, 37, 46, 45, 53, 53), + (47, 8, 6, 46, 42, 45, 26, 35, 54, 54), + (47, 8, 7, 42, 37, 44, 50, 44, 58, 58), + (47, 8, 8, 25, 29, 35, 46, 45, 51, 51), + (47, 10, 2, 45, 40, 44, 41, 42, 57, 57), + (47, 10, 3, 40, 45, 43, 39, 41, 57, 57), + (47, 10, 4, 44, 44, 43, 28, 38, 55, 55), + (47, 10, 5, 30, 33, 37, 44, 45, 53, 53), + (47, 10, 6, 47, 41, 45, 21, 35, 53, 53), + (47, 10, 8, 28, 29, 36, 44, 46, 52, 52), + (47, 10, 9, 38, 37, 45, 43, 48, 57, 57), + (47, 11, 1, 48, 43, 48, 25, 35, 55, 55), + (47, 11, 2, 44, 42, 44, 48, 41, 59, 59), + (47, 11, 3, 38, 45, 44, 40, 40, 56, 56), + (47, 11, 5, 28, 36, 38, 45, 45, 53, 53), + (47, 11, 6, 45, 43, 45, 23, 35, 53, 53), + (47, 11, 7, 42, 40, 44, 48, 43, 58, 58), + (47, 11, 8, 25, 30, 37, 45, 45, 51, 51), + (48, 1, 1, 47, 41, 46, 25, 37, 54, 54), + (48, 1, 2, 51, 39, 49, 40, 42, 59, 59), + (48, 1, 4, 42, 44, 43, 28, 38, 54, 54), + (48, 1, 5, 28, 32, 36, 44, 46, 52, 52), + (48, 1, 6, 45, 41, 44, 23, 37, 53, 53), + (48, 1, 8, 25, 28, 36, 44, 46, 51, 51), + (48, 1, 9, 36, 36, 44, 43, 48, 57, 57), + (48, 2, 1, 46, 42, 46, 28, 34, 54, 54), + (48, 2, 3, 36, 44, 41, 41, 38, 55, 55), + (48, 2, 4, 41, 45, 40, 30, 35, 53, 53), + (48, 2, 6, 48, 42, 46, 25, 34, 54, 54), + (48, 2, 7, 40, 39, 43, 48, 42, 57, 57), + (48, 2, 9, 34, 38, 44, 44, 46, 56, 56), + (48, 3, 1, 46, 43, 46, 26, 35, 54, 54), + (48, 3, 2, 50, 41, 42, 41, 41, 58, 58), + (48, 3, 3, 36, 45, 41, 40, 40, 55, 55), + (48, 3, 4, 41, 45, 39, 29, 37, 53, 53), + (48, 3, 5, 27, 35, 35, 44, 47, 53, 53), + (48, 3, 6, 45, 42, 43, 24, 35, 53, 53), + (48, 4, 1, 47, 39, 47, 25, 36, 54, 54), + (48, 4, 3, 39, 45, 42, 41, 40, 56, 56), + (48, 4, 4, 42, 43, 41, 28, 36, 53, 53), + (48, 4, 5, 30, 31, 37, 51, 47, 54, 54), + (48, 4, 6, 46, 39, 44, 23, 36, 53, 53), + (48, 4, 11, 40, 37, 41, 42, 43, 56, 56), + (48, 5, 1, 44, 42, 43, 27, 33, 53, 53), + (48, 5, 4, 42, 44, 40, 30, 34, 53, 53), + (48, 5, 5, 29, 33, 36, 45, 43, 52, 52), + (48, 5, 6, 44, 41, 43, 25, 33, 52, 52), + (48, 5, 8, 26, 30, 35, 45, 43, 51, 51), + (48, 5, 9, 35, 37, 45, 44, 46, 56, 56), + (48, 6, 1, 43, 43, 46, 30, 35, 54, 54), + (48, 6, 3, 36, 47, 41, 44, 39, 56, 56), + (48, 6, 6, 45, 43, 43, 27, 35, 54, 54), + (48, 6, 7, 40, 40, 43, 49, 43, 58, 58), + (48, 6, 11, 38, 41, 39, 44, 50, 57, 57), + (48, 7, 1, 47, 40, 46, 23, 36, 53, 53), + (48, 7, 4, 43, 43, 43, 28, 36, 54, 54), + (48, 7, 6, 45, 40, 47, 21, 36, 53, 53), + (48, 7, 8, 30, 27, 35, 46, 44, 51, 51), + (48, 7, 9, 38, 35, 44, 45, 47, 57, 57), + (48, 8, 1, 46, 40, 46, 29, 35, 54, 54), + (48, 8, 3, 36, 46, 42, 43, 39, 56, 56), + (48, 8, 4, 42, 43, 42, 31, 36, 54, 54), + (48, 8, 5, 28, 31, 36, 45, 44, 52, 52), + (48, 8, 6, 45, 40, 43, 26, 35, 53, 53), + (48, 8, 7, 41, 36, 43, 48, 43, 57, 57), + (48, 8, 8, 25, 27, 35, 45, 44, 50, 50), + (48, 10, 2, 44, 39, 42, 40, 41, 56, 56), + (48, 10, 3, 39, 44, 42, 38, 40, 55, 55), + (48, 10, 4, 42, 43, 43, 26, 37, 53, 53), + (48, 10, 5, 30, 31, 36, 43, 44, 52, 52), + (48, 10, 6, 46, 40, 44, 21, 35, 52, 52), + (48, 10, 8, 28, 27, 34, 43, 44, 50, 50), + (48, 10, 9, 36, 35, 44, 42, 47, 56, 56), + (48, 11, 1, 46, 42, 47, 25, 35, 54, 54), + (48, 11, 2, 43, 41, 43, 47, 40, 58, 58), + (48, 11, 3, 36, 44, 42, 39, 39, 55, 55), + (48, 11, 5, 28, 34, 37, 44, 44, 52, 52), + (48, 11, 6, 44, 42, 44, 23, 35, 52, 52), + (48, 11, 7, 41, 39, 43, 47, 43, 57, 57), + (48, 11, 8, 25, 30, 35, 44, 44, 51, 51), + (49, 1, 1, 46, 40, 45, 25, 35, 53, 53), + (49, 1, 2, 50, 38, 48, 39, 41, 58, 58), + (49, 1, 4, 40, 43, 42, 28, 37, 53, 53), + (49, 1, 5, 28, 32, 35, 43, 45, 52, 52), + (49, 1, 6, 44, 40, 42, 23, 35, 52, 52), + (49, 1, 8, 25, 28, 34, 43, 45, 50, 50), + (49, 1, 9, 34, 35, 44, 42, 47, 55, 55), + (49, 2, 1, 45, 41, 45, 25, 33, 53, 53), + (49, 2, 3, 36, 43, 40, 40, 37, 54, 54), + (49, 2, 4, 39, 44, 39, 30, 35, 52, 52), + (49, 2, 6, 47, 41, 46, 22, 33, 53, 53), + (49, 2, 7, 40, 37, 41, 47, 41, 56, 56), + (49, 2, 9, 33, 36, 43, 43, 45, 55, 55), + (49, 3, 1, 46, 42, 45, 26, 35, 54, 54), + (49, 3, 2, 49, 40, 41, 40, 40, 57, 57), + (49, 3, 3, 36, 43, 40, 39, 39, 54, 54), + (49, 3, 4, 40, 44, 38, 29, 35, 52, 52), + (49, 3, 5, 27, 35, 35, 43, 46, 52, 52), + (49, 3, 6, 44, 41, 42, 24, 35, 52, 52), + (49, 4, 1, 46, 39, 45, 25, 34, 53, 53), + (49, 4, 3, 37, 44, 41, 40, 39, 55, 55), + (49, 4, 4, 41, 42, 40, 28, 35, 52, 52), + (49, 4, 5, 30, 29, 35, 50, 46, 53, 53), + (49, 4, 6, 45, 38, 43, 23, 34, 52, 52), + (49, 4, 11, 39, 36, 40, 42, 42, 55, 55), + (49, 5, 1, 43, 41, 42, 27, 32, 52, 52), + (49, 5, 4, 41, 43, 39, 30, 34, 52, 52), + (49, 5, 5, 29, 33, 36, 44, 42, 52, 52), + (49, 5, 6, 43, 40, 43, 25, 32, 52, 52), + (49, 5, 8, 26, 30, 34, 43, 42, 50, 50), + (49, 5, 9, 35, 36, 44, 43, 44, 55, 55), + (49, 6, 1, 42, 42, 45, 26, 33, 53, 53), + (49, 6, 3, 35, 46, 40, 43, 38, 55, 55), + (49, 6, 6, 44, 43, 42, 24, 33, 52, 52), + (49, 6, 7, 39, 38, 41, 48, 41, 56, 56), + (49, 6, 11, 37, 39, 38, 43, 50, 57, 57), + (49, 7, 1, 46, 39, 44, 23, 34, 52, 52), + (49, 7, 4, 42, 42, 42, 28, 35, 53, 53), + (49, 7, 6, 44, 39, 46, 21, 34, 52, 52), + (49, 7, 8, 26, 27, 35, 45, 43, 50, 50), + (49, 7, 9, 38, 35, 44, 44, 46, 56, 56), + (49, 8, 1, 45, 40, 45, 25, 34, 53, 53), + (49, 8, 3, 36, 45, 41, 42, 38, 55, 55), + (49, 8, 4, 40, 42, 41, 31, 36, 53, 53), + (49, 8, 5, 28, 31, 36, 44, 43, 51, 51), + (49, 8, 6, 44, 39, 43, 23, 34, 52, 52), + (49, 8, 7, 40, 36, 41, 48, 41, 56, 56), + (49, 8, 8, 25, 27, 34, 43, 43, 49, 49), + (49, 10, 2, 43, 37, 42, 39, 40, 55, 55), + (49, 10, 3, 37, 43, 41, 37, 39, 54, 54), + (49, 10, 4, 41, 42, 42, 26, 35, 52, 52), + (49, 10, 5, 30, 31, 34, 42, 43, 51, 51), + (49, 10, 6, 45, 40, 42, 21, 33, 51, 51), + (49, 10, 8, 25, 27, 34, 42, 43, 49, 49), + (49, 10, 9, 36, 35, 44, 42, 46, 56, 56), + (49, 11, 1, 45, 41, 45, 25, 33, 53, 53), + (49, 11, 2, 42, 40, 42, 47, 39, 57, 57), + (49, 11, 3, 36, 43, 41, 38, 38, 54, 54), + (49, 11, 5, 28, 34, 35, 43, 43, 51, 51), + (49, 11, 6, 43, 41, 43, 23, 33, 51, 51), + (49, 11, 7, 40, 37, 42, 46, 41, 56, 56), + (49, 11, 8, 25, 30, 35, 43, 43, 50, 50), + (50, 1, 1, 45, 39, 45, 23, 34, 52, 52), + (50, 1, 2, 48, 37, 47, 38, 40, 57, 57), + (50, 1, 4, 39, 42, 41, 26, 37, 52, 52), + (50, 1, 5, 26, 30, 35, 42, 44, 50, 50), + (50, 1, 6, 43, 39, 42, 20, 34, 51, 51), + (50, 1, 8, 23, 26, 33, 42, 44, 48, 48), + (50, 1, 9, 33, 35, 43, 41, 46, 54, 54), + (50, 2, 1, 44, 40, 44, 25, 33, 52, 52), + (50, 2, 3, 34, 42, 40, 38, 36, 53, 53), + (50, 2, 4, 38, 42, 38, 28, 33, 51, 51), + (50, 2, 6, 46, 40, 44, 22, 33, 52, 52), + (50, 2, 7, 39, 37, 40, 46, 40, 55, 55), + (50, 2, 9, 33, 36, 42, 42, 44, 54, 54), + (50, 3, 1, 45, 41, 44, 23, 33, 52, 52), + (50, 3, 2, 48, 39, 40, 39, 39, 56, 56), + (50, 3, 3, 35, 42, 39, 38, 38, 53, 53), + (50, 3, 4, 39, 43, 38, 27, 35, 51, 51), + (50, 3, 5, 27, 32, 33, 42, 44, 51, 51), + (50, 3, 6, 43, 40, 41, 21, 33, 51, 51), + (50, 4, 1, 45, 38, 45, 23, 33, 52, 52), + (50, 4, 3, 37, 43, 40, 39, 38, 54, 54), + (50, 4, 4, 40, 41, 39, 26, 35, 51, 51), + (50, 4, 5, 28, 29, 35, 49, 45, 52, 52), + (50, 4, 6, 44, 37, 42, 20, 33, 50, 50), + (50, 4, 11, 39, 35, 39, 40, 41, 54, 54), + (50, 5, 1, 42, 40, 41, 24, 32, 51, 51), + (50, 5, 4, 40, 42, 38, 27, 32, 51, 51), + (50, 5, 5, 27, 31, 34, 42, 41, 50, 50), + (50, 5, 6, 42, 40, 41, 22, 32, 50, 50), + (50, 5, 8, 23, 27, 34, 42, 41, 48, 48), + (50, 5, 9, 33, 36, 43, 42, 43, 54, 54), + (50, 6, 1, 41, 40, 44, 26, 33, 52, 52), + (50, 6, 3, 33, 45, 40, 41, 37, 54, 54), + (50, 6, 6, 43, 42, 41, 24, 33, 52, 52), + (50, 6, 7, 38, 38, 40, 46, 40, 56, 56), + (50, 6, 11, 36, 39, 37, 42, 49, 56, 56), + (50, 7, 1, 44, 38, 44, 23, 33, 51, 51), + (50, 7, 4, 41, 41, 41, 28, 35, 52, 52), + (50, 7, 6, 43, 38, 45, 21, 33, 51, 51), + (50, 7, 8, 26, 27, 33, 44, 42, 49, 49), + (50, 7, 9, 36, 33, 43, 43, 44, 55, 55), + (50, 8, 1, 45, 39, 44, 25, 34, 52, 52), + (50, 8, 3, 35, 44, 40, 41, 37, 54, 54), + (50, 8, 4, 39, 41, 40, 29, 34, 52, 52), + (50, 8, 5, 25, 31, 34, 43, 42, 50, 50), + (50, 8, 6, 44, 38, 41, 23, 34, 51, 51), + (50, 8, 7, 39, 35, 41, 46, 40, 55, 55), + (50, 8, 8, 22, 27, 34, 42, 42, 48, 48), + (50, 10, 2, 42, 36, 40, 38, 39, 54, 54), + (50, 10, 3, 37, 41, 39, 36, 38, 53, 53), + (50, 10, 4, 40, 41, 41, 26, 35, 52, 52), + (50, 10, 5, 28, 31, 34, 41, 42, 50, 50), + (50, 10, 6, 44, 39, 42, 21, 32, 50, 50), + (50, 10, 8, 25, 27, 32, 41, 42, 48, 48), + (50, 10, 9, 34, 34, 43, 40, 45, 54, 54), + (50, 11, 1, 45, 40, 45, 22, 33, 52, 52), + (50, 11, 2, 41, 38, 41, 46, 38, 56, 56), + (50, 11, 3, 35, 42, 40, 37, 37, 53, 53), + (50, 11, 5, 25, 32, 35, 42, 41, 50, 50), + (50, 11, 6, 42, 41, 42, 20, 33, 51, 51), + (50, 11, 7, 39, 37, 40, 45, 40, 55, 55), + (50, 11, 8, 22, 28, 33, 42, 41, 48, 48), + (51, 1, 1, 43, 38, 43, 23, 34, 51, 51), + (51, 1, 2, 48, 36, 46, 37, 39, 56, 56), + (51, 1, 4, 39, 41, 40, 26, 35, 51, 51), + (51, 1, 5, 26, 30, 33, 41, 42, 49, 49), + (51, 1, 6, 42, 37, 40, 20, 34, 50, 50), + (51, 1, 8, 23, 26, 33, 40, 42, 48, 48), + (51, 1, 9, 33, 33, 42, 40, 45, 54, 54), + (51, 2, 1, 43, 39, 43, 25, 31, 51, 51), + (51, 2, 3, 33, 41, 38, 37, 35, 52, 52), + (51, 2, 4, 38, 41, 37, 28, 32, 50, 50), + (51, 2, 6, 45, 38, 43, 22, 31, 51, 51), + (51, 2, 7, 37, 36, 39, 45, 39, 54, 54), + (51, 2, 9, 31, 35, 41, 41, 43, 53, 53), + (51, 3, 1, 44, 39, 43, 23, 33, 51, 51), + (51, 3, 2, 47, 38, 39, 38, 38, 55, 55), + (51, 3, 3, 33, 41, 38, 36, 37, 52, 52), + (51, 3, 4, 38, 41, 37, 27, 34, 50, 50), + (51, 3, 5, 25, 32, 32, 41, 43, 50, 50), + (51, 3, 6, 42, 38, 40, 21, 33, 50, 50), + (51, 4, 1, 44, 37, 44, 23, 33, 51, 51), + (51, 4, 3, 36, 42, 39, 38, 37, 53, 53), + (51, 4, 4, 40, 40, 38, 26, 33, 50, 50), + (51, 4, 5, 28, 27, 34, 48, 43, 51, 51), + (51, 4, 6, 43, 36, 41, 20, 33, 50, 50), + (51, 4, 11, 38, 34, 38, 40, 40, 53, 53), + (51, 5, 1, 40, 38, 40, 24, 30, 50, 50), + (51, 5, 4, 39, 41, 37, 27, 31, 50, 50), + (51, 5, 5, 27, 31, 33, 41, 40, 49, 49), + (51, 5, 6, 41, 40, 41, 22, 30, 50, 50), + (51, 5, 8, 23, 27, 32, 41, 40, 48, 48), + (51, 5, 9, 33, 34, 42, 41, 42, 53, 53), + (51, 6, 1, 40, 39, 43, 26, 32, 51, 51), + (51, 6, 3, 32, 44, 38, 40, 36, 53, 53), + (51, 6, 6, 42, 41, 41, 24, 32, 51, 51), + (51, 6, 7, 36, 37, 39, 46, 39, 54, 54), + (51, 6, 11, 35, 38, 36, 40, 48, 54, 54), + (51, 7, 1, 43, 38, 43, 20, 33, 50, 50), + (51, 7, 4, 40, 40, 40, 25, 33, 51, 51), + (51, 7, 6, 42, 38, 45, 18, 33, 50, 50), + (51, 7, 8, 26, 24, 33, 42, 41, 48, 48), + (51, 7, 9, 36, 32, 42, 42, 43, 54, 54), + (51, 8, 1, 44, 38, 43, 25, 32, 51, 51), + (51, 8, 3, 34, 43, 38, 40, 36, 53, 53), + (51, 8, 4, 38, 40, 40, 29, 33, 51, 51), + (51, 8, 5, 25, 29, 33, 42, 40, 49, 49), + (51, 8, 6, 42, 37, 41, 23, 32, 50, 50), + (51, 8, 7, 38, 33, 39, 45, 39, 54, 54), + (51, 8, 8, 22, 25, 32, 41, 40, 47, 47), + (51, 10, 2, 40, 35, 40, 36, 38, 53, 53), + (51, 10, 3, 36, 40, 39, 36, 37, 52, 52), + (51, 10, 4, 40, 40, 40, 24, 34, 50, 50), + (51, 10, 5, 28, 29, 33, 40, 40, 49, 49), + (51, 10, 6, 42, 38, 40, 18, 32, 49, 49), + (51, 10, 8, 25, 25, 32, 40, 41, 48, 48), + (51, 10, 9, 34, 32, 42, 39, 44, 53, 53), + (51, 11, 1, 44, 39, 44, 22, 32, 51, 51), + (51, 11, 2, 40, 37, 40, 45, 37, 55, 55), + (51, 11, 3, 34, 41, 39, 36, 36, 52, 52), + (51, 11, 5, 25, 32, 34, 40, 40, 49, 49), + (51, 11, 6, 41, 40, 41, 20, 32, 50, 50), + (51, 11, 7, 38, 36, 40, 44, 39, 54, 54), + (51, 11, 8, 22, 28, 33, 40, 40, 48, 48), + (52, 1, 1, 42, 37, 42, 23, 32, 50, 50), + (52, 1, 2, 47, 35, 45, 36, 38, 55, 55), + (52, 1, 4, 38, 39, 39, 26, 35, 50, 50), + (52, 1, 5, 26, 30, 33, 40, 41, 49, 49), + (52, 1, 6, 42, 36, 40, 20, 32, 49, 49), + (52, 1, 8, 23, 26, 31, 39, 41, 47, 47), + (52, 1, 9, 31, 33, 41, 39, 43, 52, 52), + (52, 2, 1, 42, 38, 42, 25, 31, 51, 51), + (52, 2, 3, 33, 40, 37, 36, 34, 51, 51), + (52, 2, 4, 37, 40, 36, 28, 32, 49, 49), + (52, 2, 6, 44, 37, 42, 22, 31, 50, 50), + (52, 2, 7, 36, 34, 38, 44, 37, 53, 53), + (52, 2, 9, 31, 33, 40, 40, 42, 52, 52), + (52, 3, 1, 42, 38, 41, 23, 32, 50, 50), + (52, 3, 2, 46, 37, 37, 37, 37, 54, 54), + (52, 3, 3, 33, 40, 37, 35, 36, 51, 51), + (52, 3, 4, 37, 40, 36, 27, 34, 50, 50), + (52, 3, 5, 25, 30, 32, 40, 42, 49, 49), + (52, 3, 6, 41, 38, 40, 21, 32, 49, 49), + (52, 4, 1, 43, 35, 42, 23, 31, 50, 50), + (52, 4, 3, 34, 41, 38, 37, 36, 52, 52), + (52, 4, 4, 39, 39, 37, 26, 33, 50, 50), + (52, 4, 5, 28, 27, 34, 47, 42, 51, 51), + (52, 4, 6, 43, 36, 41, 20, 31, 49, 49), + (52, 4, 11, 37, 33, 37, 38, 39, 52, 52), + (52, 5, 1, 39, 37, 39, 24, 30, 49, 49), + (52, 5, 4, 38, 40, 36, 27, 31, 49, 49), + (52, 5, 5, 27, 29, 33, 40, 39, 48, 48), + (52, 5, 6, 41, 39, 40, 22, 30, 49, 49), + (52, 5, 8, 23, 27, 30, 40, 38, 47, 47), + (52, 5, 9, 32, 33, 41, 39, 41, 52, 52), + (52, 6, 1, 38, 38, 42, 26, 32, 50, 50), + (52, 6, 3, 32, 43, 37, 39, 35, 52, 52), + (52, 6, 6, 41, 40, 40, 24, 32, 50, 50), + (52, 6, 7, 36, 35, 38, 44, 38, 53, 53), + (52, 6, 11, 33, 37, 35, 40, 46, 53, 53), + (52, 7, 1, 42, 36, 41, 20, 31, 49, 49), + (52, 7, 4, 38, 39, 39, 25, 33, 50, 50), + (52, 7, 6, 42, 37, 44, 18, 31, 49, 49), + (52, 7, 8, 26, 24, 32, 41, 40, 48, 48), + (52, 7, 9, 34, 32, 41, 40, 42, 53, 53), + (52, 8, 1, 43, 36, 42, 25, 30, 50, 50), + (52, 8, 3, 32, 41, 38, 39, 35, 52, 52), + (52, 8, 4, 37, 39, 39, 29, 33, 50, 50), + (52, 8, 5, 25, 29, 33, 40, 39, 48, 48), + (52, 8, 6, 42, 36, 40, 23, 30, 49, 49), + (52, 8, 7, 37, 33, 38, 44, 38, 53, 53), + (52, 8, 8, 22, 25, 30, 40, 39, 46, 46), + (52, 10, 2, 40, 34, 38, 35, 37, 52, 52), + (52, 10, 3, 34, 39, 38, 35, 36, 51, 51), + (52, 10, 4, 39, 39, 39, 24, 34, 50, 50), + (52, 10, 5, 28, 29, 33, 39, 39, 49, 49), + (52, 10, 6, 41, 37, 40, 18, 30, 48, 48), + (52, 10, 8, 25, 25, 30, 39, 40, 47, 47), + (52, 10, 9, 33, 32, 40, 38, 42, 52, 52), + (52, 11, 1, 43, 38, 42, 22, 32, 50, 50), + (52, 11, 2, 39, 36, 39, 44, 36, 54, 54), + (52, 11, 3, 32, 40, 38, 35, 35, 51, 51), + (52, 11, 5, 25, 30, 34, 39, 39, 48, 48), + (52, 11, 6, 40, 39, 41, 20, 32, 49, 49), + (52, 11, 7, 37, 34, 38, 43, 38, 53, 53), + (52, 11, 8, 22, 28, 32, 39, 39, 47, 47), + (53, 1, 1, 41, 36, 41, 23, 32, 50, 50), + (53, 1, 2, 46, 34, 44, 35, 38, 54, 54), + (53, 1, 4, 36, 38, 38, 24, 34, 49, 49), + (53, 1, 5, 24, 28, 32, 38, 40, 47, 47), + (53, 1, 6, 41, 36, 39, 20, 32, 49, 49), + (53, 1, 8, 23, 24, 31, 38, 40, 46, 46), + (53, 1, 9, 31, 32, 40, 38, 43, 52, 52), + (53, 2, 1, 41, 37, 40, 25, 30, 50, 50), + (53, 2, 3, 32, 39, 36, 35, 33, 50, 50), + (53, 2, 4, 36, 39, 35, 25, 30, 48, 48), + (53, 2, 6, 44, 37, 42, 22, 30, 50, 50), + (53, 2, 7, 35, 34, 37, 43, 37, 52, 52), + (53, 2, 9, 30, 33, 39, 38, 41, 51, 51), + (53, 3, 1, 41, 37, 40, 23, 32, 50, 50), + (53, 3, 2, 45, 35, 37, 36, 36, 53, 53), + (53, 3, 3, 32, 39, 36, 34, 35, 50, 50), + (53, 3, 4, 36, 39, 35, 24, 32, 48, 48), + (53, 3, 5, 23, 30, 30, 39, 41, 48, 48), + (53, 3, 6, 41, 38, 39, 21, 32, 49, 49), + (53, 4, 1, 42, 34, 41, 23, 31, 49, 49), + (53, 4, 3, 34, 39, 37, 36, 35, 51, 51), + (53, 4, 4, 37, 37, 36, 24, 32, 48, 48), + (53, 4, 5, 25, 25, 32, 46, 41, 49, 49), + (53, 4, 6, 42, 35, 40, 20, 31, 49, 49), + (53, 4, 11, 35, 33, 36, 37, 38, 51, 51), + (53, 5, 1, 38, 37, 37, 24, 29, 48, 48), + (53, 5, 4, 36, 38, 35, 25, 30, 48, 48), + (53, 5, 5, 24, 29, 31, 39, 37, 47, 47), + (53, 5, 6, 40, 38, 40, 22, 29, 49, 49), + (53, 5, 8, 23, 25, 30, 38, 37, 46, 46), + (53, 5, 9, 32, 33, 40, 38, 40, 52, 52), + (53, 6, 1, 37, 38, 40, 23, 30, 49, 49), + (53, 6, 3, 31, 41, 36, 38, 34, 51, 51), + (53, 6, 6, 40, 39, 39, 20, 30, 49, 49), + (53, 6, 7, 35, 34, 37, 43, 37, 52, 52), + (53, 6, 11, 32, 36, 34, 38, 45, 52, 52), + (53, 7, 1, 41, 35, 40, 20, 31, 49, 49), + (53, 7, 4, 38, 37, 38, 25, 32, 49, 49), + (53, 7, 6, 41, 36, 43, 18, 31, 49, 49), + (53, 7, 8, 23, 24, 32, 40, 38, 46, 46), + (53, 7, 9, 34, 30, 40, 39, 41, 52, 52), + (53, 8, 1, 42, 35, 41, 22, 30, 49, 49), + (53, 8, 3, 32, 40, 36, 38, 34, 51, 51), + (53, 8, 4, 36, 38, 38, 26, 31, 49, 49), + (53, 8, 5, 23, 27, 31, 39, 38, 47, 47), + (53, 8, 6, 41, 36, 40, 20, 30, 49, 49), + (53, 8, 7, 36, 32, 37, 43, 37, 52, 52), + (53, 8, 8, 22, 23, 30, 39, 38, 45, 45), + (53, 10, 2, 38, 34, 37, 34, 36, 51, 51), + (53, 10, 3, 34, 38, 36, 33, 35, 50, 50), + (53, 10, 4, 37, 38, 38, 24, 32, 49, 49), + (53, 10, 5, 25, 27, 31, 38, 38, 47, 47), + (53, 10, 6, 41, 36, 39, 18, 30, 48, 48), + (53, 10, 8, 25, 23, 30, 37, 39, 46, 46), + (53, 10, 9, 33, 31, 39, 37, 42, 51, 51), + (53, 11, 1, 42, 37, 41, 22, 30, 49, 49), + (53, 11, 2, 37, 35, 37, 43, 35, 53, 53), + (53, 11, 3, 32, 39, 37, 33, 34, 50, 50), + (53, 11, 5, 23, 30, 32, 38, 38, 47, 47), + (53, 11, 6, 40, 38, 40, 20, 30, 49, 49), + (53, 11, 7, 36, 34, 38, 42, 37, 52, 52), + (53, 11, 8, 22, 25, 32, 38, 38, 46, 46), + (54, 1, 1, 40, 35, 40, 20, 30, 48, 48), + (54, 1, 2, 44, 33, 43, 34, 37, 53, 53), + (54, 1, 4, 35, 37, 37, 24, 32, 48, 48), + (54, 1, 5, 24, 28, 30, 37, 39, 47, 47), + (54, 1, 6, 41, 35, 39, 18, 30, 48, 48), + (54, 1, 8, 20, 24, 29, 37, 39, 45, 45), + (54, 1, 9, 29, 30, 39, 36, 42, 50, 50), + (54, 2, 1, 40, 36, 39, 22, 28, 48, 48), + (54, 2, 3, 30, 38, 35, 34, 32, 49, 49), + (54, 2, 4, 34, 38, 34, 25, 29, 47, 47), + (54, 2, 6, 43, 36, 41, 19, 28, 49, 49), + (54, 2, 7, 34, 33, 35, 42, 35, 51, 51), + (54, 2, 9, 28, 32, 38, 37, 40, 50, 50), + (54, 3, 1, 40, 36, 40, 20, 30, 48, 48), + (54, 3, 2, 44, 34, 35, 35, 34, 52, 52), + (54, 3, 3, 31, 38, 35, 33, 34, 49, 49), + (54, 3, 4, 34, 38, 34, 24, 31, 47, 47), + (54, 3, 5, 23, 30, 29, 37, 40, 47, 47), + (54, 3, 6, 40, 37, 39, 18, 30, 48, 48), + (54, 4, 1, 41, 34, 40, 20, 29, 48, 48), + (54, 4, 3, 33, 38, 36, 35, 33, 50, 50), + (54, 4, 4, 36, 36, 34, 24, 30, 47, 47), + (54, 4, 5, 25, 25, 31, 45, 40, 49, 49), + (54, 4, 6, 42, 35, 39, 18, 29, 48, 48), + (54, 4, 11, 34, 32, 35, 36, 36, 50, 50), + (54, 5, 1, 37, 36, 36, 21, 29, 47, 47), + (54, 5, 4, 35, 37, 34, 25, 28, 47, 47), + (54, 5, 5, 24, 29, 30, 38, 36, 46, 46), + (54, 5, 6, 40, 37, 39, 19, 29, 48, 48), + (54, 5, 8, 20, 25, 29, 37, 36, 45, 45), + (54, 5, 9, 30, 31, 39, 37, 39, 50, 50), + (54, 6, 1, 36, 36, 39, 23, 28, 48, 48), + (54, 6, 3, 30, 40, 35, 37, 33, 50, 50), + (54, 6, 6, 40, 38, 39, 20, 28, 48, 48), + (54, 6, 7, 33, 34, 35, 43, 36, 51, 51), + (54, 6, 11, 31, 34, 33, 37, 44, 51, 51), + (54, 7, 1, 40, 34, 39, 20, 29, 48, 48), + (54, 7, 4, 37, 36, 37, 23, 30, 48, 48), + (54, 7, 6, 40, 35, 43, 18, 29, 48, 48), + (54, 7, 8, 23, 22, 30, 39, 37, 45, 45), + (54, 7, 9, 32, 29, 39, 39, 40, 51, 51), + (54, 8, 1, 40, 34, 40, 22, 29, 48, 48), + (54, 8, 3, 31, 39, 35, 36, 33, 50, 50), + (54, 8, 4, 35, 37, 37, 26, 30, 48, 48), + (54, 8, 5, 23, 27, 30, 38, 37, 46, 46), + (54, 8, 6, 41, 36, 39, 20, 29, 48, 48), + (54, 8, 7, 34, 31, 36, 42, 36, 51, 51), + (54, 8, 8, 19, 23, 29, 38, 37, 44, 44), + (54, 10, 2, 37, 33, 36, 33, 34, 50, 50), + (54, 10, 3, 33, 37, 35, 32, 34, 49, 49), + (54, 10, 4, 36, 37, 36, 22, 31, 47, 47), + (54, 10, 5, 25, 27, 30, 36, 37, 46, 46), + (54, 10, 6, 40, 36, 38, 18, 30, 47, 47), + (54, 10, 8, 22, 23, 29, 36, 37, 44, 44), + (54, 10, 9, 31, 29, 38, 36, 40, 50, 50), + (54, 11, 1, 40, 36, 40, 19, 28, 48, 48), + (54, 11, 2, 37, 34, 36, 42, 34, 52, 52), + (54, 11, 3, 31, 38, 36, 33, 33, 49, 49), + (54, 11, 5, 23, 30, 31, 37, 37, 46, 46), + (54, 11, 6, 39, 37, 39, 17, 28, 47, 47), + (54, 11, 7, 34, 33, 36, 41, 36, 51, 51), + (54, 11, 8, 19, 25, 30, 37, 37, 45, 45), + (55, 1, 1, 39, 33, 39, 20, 30, 47, 47), + (55, 1, 2, 44, 33, 42, 33, 35, 52, 52), + (55, 1, 4, 34, 36, 35, 24, 32, 47, 47), + (55, 1, 5, 24, 26, 30, 36, 38, 46, 46), + (55, 1, 6, 40, 35, 39, 18, 29, 47, 47), + (55, 1, 8, 20, 24, 29, 36, 38, 44, 44), + (55, 1, 9, 29, 30, 38, 36, 40, 50, 50), + (55, 2, 1, 39, 34, 39, 22, 28, 47, 47), + (55, 2, 3, 29, 36, 34, 33, 31, 48, 48), + (55, 2, 4, 33, 37, 32, 25, 29, 46, 46), + (55, 2, 6, 43, 36, 41, 19, 28, 49, 49), + (55, 2, 7, 33, 31, 35, 41, 34, 50, 50), + (55, 2, 9, 28, 30, 37, 36, 38, 49, 49), + (55, 3, 1, 39, 34, 39, 20, 30, 47, 47), + (55, 3, 2, 43, 33, 34, 33, 33, 50, 50), + (55, 3, 3, 29, 37, 33, 32, 33, 48, 48), + (55, 3, 4, 34, 37, 33, 24, 31, 47, 47), + (55, 3, 5, 23, 28, 29, 36, 39, 46, 46), + (55, 3, 6, 40, 37, 38, 18, 30, 48, 48), + (55, 4, 1, 40, 33, 39, 20, 29, 47, 47), + (55, 4, 3, 31, 37, 34, 35, 32, 49, 49), + (55, 4, 4, 35, 35, 33, 24, 30, 46, 46), + (55, 4, 5, 25, 24, 31, 44, 39, 48, 48), + (55, 4, 6, 41, 34, 39, 18, 29, 47, 47), + (55, 4, 11, 33, 30, 33, 35, 36, 48, 48), + (55, 5, 1, 36, 34, 35, 21, 27, 46, 46), + (55, 5, 4, 34, 36, 33, 25, 28, 46, 46), + (55, 5, 5, 24, 27, 30, 37, 35, 46, 46), + (55, 5, 6, 39, 36, 38, 19, 27, 47, 47), + (55, 5, 8, 20, 25, 29, 36, 35, 44, 44), + (55, 5, 9, 30, 31, 38, 36, 38, 49, 49), + (55, 6, 1, 35, 35, 39, 23, 28, 47, 47), + (55, 6, 3, 28, 39, 34, 36, 32, 49, 49), + (55, 6, 6, 39, 37, 38, 20, 28, 48, 48), + (55, 6, 7, 32, 32, 35, 41, 34, 50, 50), + (55, 6, 11, 30, 34, 32, 36, 44, 50, 50), + (55, 7, 1, 39, 33, 38, 18, 29, 46, 46), + (55, 7, 4, 36, 35, 36, 23, 30, 47, 47), + (55, 7, 6, 40, 34, 42, 16, 29, 47, 47), + (55, 7, 8, 23, 22, 30, 38, 36, 45, 45), + (55, 7, 9, 32, 29, 38, 38, 39, 50, 50), + (55, 8, 1, 39, 33, 39, 22, 29, 47, 47), + (55, 8, 3, 30, 38, 34, 35, 32, 49, 49), + (55, 8, 4, 34, 36, 35, 26, 30, 47, 47), + (55, 8, 5, 23, 25, 30, 36, 36, 45, 45), + (55, 8, 6, 40, 35, 38, 20, 29, 47, 47), + (55, 8, 7, 34, 29, 35, 41, 35, 50, 50), + (55, 8, 8, 19, 23, 29, 37, 36, 44, 44), + (55, 10, 2, 36, 32, 35, 32, 33, 49, 49), + (55, 10, 3, 31, 35, 34, 31, 33, 48, 48), + (55, 10, 4, 35, 36, 35, 22, 31, 47, 47), + (55, 10, 5, 25, 25, 30, 35, 36, 45, 45), + (55, 10, 6, 39, 35, 39, 16, 30, 47, 47), + (55, 10, 8, 22, 23, 29, 35, 36, 44, 44), + (55, 10, 9, 31, 29, 37, 35, 39, 49, 49), + (55, 11, 1, 39, 34, 39, 19, 28, 47, 47), + (55, 11, 2, 35, 33, 35, 41, 32, 50, 50), + (55, 11, 3, 30, 36, 34, 32, 32, 48, 48), + (55, 11, 5, 23, 28, 31, 36, 35, 46, 46), + (55, 11, 6, 39, 36, 39, 17, 28, 47, 47), + (55, 11, 7, 34, 31, 35, 40, 34, 50, 50), + (55, 11, 8, 19, 25, 30, 36, 36, 44, 44), + (56, 1, 1, 38, 32, 38, 20, 29, 46, 46), + (56, 1, 2, 43, 32, 41, 32, 34, 51, 51), + (56, 1, 4, 33, 34, 34, 21, 31, 46, 46), + (56, 1, 5, 21, 26, 29, 35, 37, 45, 45), + (56, 1, 6, 39, 34, 37, 18, 27, 46, 46), + (56, 1, 8, 20, 21, 28, 35, 37, 43, 43), + (56, 1, 9, 28, 29, 37, 34, 39, 48, 48), + (56, 2, 1, 37, 33, 38, 22, 26, 46, 46), + (56, 2, 3, 29, 35, 33, 32, 30, 47, 47), + (56, 2, 4, 32, 35, 31, 23, 28, 45, 45), + (56, 2, 6, 42, 34, 40, 19, 26, 47, 47), + (56, 2, 7, 31, 30, 33, 40, 33, 49, 49), + (56, 2, 9, 26, 30, 36, 35, 37, 48, 48), + (56, 3, 1, 38, 34, 37, 20, 28, 46, 46), + (56, 3, 2, 42, 32, 33, 32, 32, 49, 49), + (56, 3, 3, 28, 36, 33, 31, 32, 47, 47), + (56, 3, 4, 33, 35, 31, 22, 29, 45, 45), + (56, 3, 5, 20, 28, 28, 35, 38, 45, 45), + (56, 3, 6, 38, 35, 36, 18, 28, 46, 46), + (56, 4, 1, 39, 31, 38, 20, 28, 46, 46), + (56, 4, 3, 30, 36, 34, 34, 31, 48, 48), + (56, 4, 4, 34, 34, 32, 21, 29, 45, 45), + (56, 4, 5, 23, 24, 29, 43, 38, 47, 47), + (56, 4, 6, 39, 32, 37, 18, 28, 46, 46), + (56, 4, 11, 32, 29, 32, 34, 34, 47, 47), + (56, 5, 1, 35, 33, 34, 21, 25, 45, 45), + (56, 5, 4, 34, 35, 32, 22, 27, 45, 45), + (56, 5, 5, 22, 27, 28, 35, 34, 44, 44), + (56, 5, 6, 37, 34, 37, 19, 25, 45, 45), + (56, 5, 8, 20, 22, 27, 35, 34, 43, 43), + (56, 5, 9, 28, 30, 37, 35, 37, 48, 48), + (56, 6, 1, 34, 34, 38, 23, 27, 46, 46), + (56, 6, 3, 28, 38, 33, 35, 31, 48, 48), + (56, 6, 6, 38, 35, 36, 20, 27, 46, 46), + (56, 6, 7, 32, 31, 33, 40, 34, 49, 49), + (56, 6, 11, 29, 33, 31, 35, 43, 49, 49), + (56, 7, 1, 38, 32, 37, 18, 28, 45, 45), + (56, 7, 4, 34, 34, 35, 23, 29, 46, 46), + (56, 7, 6, 38, 33, 40, 16, 28, 46, 46), + (56, 7, 8, 23, 20, 28, 37, 35, 44, 44), + (56, 7, 9, 30, 28, 37, 36, 38, 49, 49), + (56, 8, 1, 38, 32, 38, 22, 27, 46, 46), + (56, 8, 3, 28, 37, 33, 34, 31, 48, 48), + (56, 8, 4, 33, 35, 34, 24, 28, 46, 46), + (56, 8, 5, 21, 25, 28, 35, 35, 44, 44), + (56, 8, 6, 39, 33, 37, 20, 27, 46, 46), + (56, 8, 7, 32, 28, 33, 40, 34, 48, 48), + (56, 8, 8, 19, 20, 27, 36, 35, 42, 42), + (56, 10, 2, 35, 31, 33, 31, 32, 47, 47), + (56, 10, 3, 30, 34, 33, 30, 32, 47, 47), + (56, 10, 4, 34, 35, 34, 22, 29, 46, 46), + (56, 10, 5, 23, 25, 28, 34, 35, 44, 44), + (56, 10, 6, 38, 33, 37, 16, 28, 45, 45), + (56, 10, 8, 22, 20, 27, 34, 35, 43, 43), + (56, 10, 9, 29, 28, 36, 34, 38, 48, 48), + (56, 11, 1, 38, 33, 38, 19, 27, 46, 46), + (56, 11, 2, 34, 32, 34, 40, 31, 49, 49), + (56, 11, 3, 28, 35, 34, 31, 31, 47, 47), + (56, 11, 5, 21, 28, 29, 35, 34, 44, 44), + (56, 11, 6, 37, 34, 37, 17, 27, 45, 45), + (56, 11, 7, 32, 30, 34, 39, 34, 49, 49), + (56, 11, 8, 19, 23, 28, 35, 35, 43, 43), + (57, 1, 1, 37, 31, 37, 20, 29, 46, 46), + (57, 1, 2, 42, 30, 40, 31, 33, 50, 50), + (57, 1, 4, 31, 33, 34, 21, 29, 45, 45), + (57, 1, 5, 21, 24, 27, 33, 35, 43, 43), + (57, 1, 6, 38, 33, 35, 18, 27, 45, 45), + (57, 1, 8, 20, 21, 28, 34, 35, 43, 43), + (57, 1, 9, 28, 27, 36, 33, 38, 47, 47), + (57, 2, 1, 36, 32, 36, 22, 26, 46, 46), + (57, 2, 3, 28, 34, 31, 30, 29, 46, 46), + (57, 2, 4, 32, 34, 30, 23, 26, 44, 44), + (57, 2, 6, 41, 34, 39, 19, 26, 47, 47), + (57, 2, 7, 31, 30, 32, 38, 32, 48, 48), + (57, 2, 9, 26, 29, 35, 34, 36, 47, 47), + (57, 3, 1, 37, 33, 36, 20, 28, 46, 46), + (57, 3, 2, 41, 31, 32, 31, 31, 48, 48), + (57, 3, 3, 28, 34, 31, 31, 31, 46, 46), + (57, 3, 4, 31, 34, 30, 22, 28, 44, 44), + (57, 3, 5, 20, 26, 26, 33, 37, 44, 44), + (57, 3, 6, 36, 34, 35, 18, 28, 45, 45), + (57, 4, 1, 38, 30, 37, 20, 28, 45, 45), + (57, 4, 3, 30, 35, 32, 33, 30, 47, 47), + (57, 4, 4, 32, 32, 31, 21, 27, 44, 44), + (57, 4, 5, 23, 24, 28, 42, 37, 46, 46), + (57, 4, 6, 37, 31, 36, 18, 28, 45, 45), + (57, 4, 11, 31, 28, 31, 33, 33, 46, 46), + (57, 5, 1, 33, 32, 33, 21, 25, 44, 44), + (57, 5, 4, 32, 34, 31, 22, 25, 44, 44), + (57, 5, 5, 22, 25, 27, 34, 33, 43, 43), + (57, 5, 6, 36, 33, 35, 19, 25, 45, 45), + (57, 5, 8, 20, 22, 27, 34, 33, 42, 42), + (57, 5, 9, 28, 28, 36, 34, 36, 47, 47), + (57, 6, 1, 32, 33, 36, 20, 27, 45, 45), + (57, 6, 3, 27, 37, 31, 33, 30, 47, 47), + (57, 6, 6, 35, 34, 35, 20, 27, 45, 45), + (57, 6, 7, 30, 29, 32, 39, 32, 48, 48), + (57, 6, 11, 28, 32, 30, 34, 42, 48, 48), + (57, 7, 1, 36, 31, 36, 18, 28, 45, 45), + (57, 7, 4, 33, 33, 34, 21, 27, 45, 45), + (57, 7, 6, 35, 32, 39, 16, 28, 45, 45), + (57, 7, 8, 20, 20, 28, 36, 33, 42, 42), + (57, 7, 9, 30, 26, 36, 35, 37, 48, 48), + (57, 8, 1, 37, 31, 37, 22, 27, 46, 46), + (57, 8, 3, 28, 36, 32, 33, 30, 47, 47), + (57, 8, 4, 31, 33, 33, 24, 27, 45, 45), + (57, 8, 5, 21, 23, 27, 34, 33, 43, 43), + (57, 8, 6, 38, 32, 35, 20, 27, 45, 45), + (57, 8, 7, 31, 28, 33, 39, 32, 48, 48), + (57, 8, 8, 19, 20, 27, 34, 33, 42, 42), + (57, 10, 2, 34, 30, 32, 30, 31, 46, 46), + (57, 10, 3, 30, 33, 31, 29, 31, 46, 46), + (57, 10, 4, 32, 33, 33, 20, 28, 44, 44), + (57, 10, 5, 23, 23, 27, 33, 34, 43, 43), + (57, 10, 6, 35, 32, 36, 16, 28, 44, 44), + (57, 10, 8, 22, 20, 27, 33, 33, 42, 42), + (57, 10, 9, 29, 27, 35, 32, 37, 47, 47), + (57, 11, 1, 37, 32, 37, 19, 27, 45, 45), + (57, 11, 2, 33, 30, 33, 39, 30, 48, 48), + (57, 11, 3, 28, 34, 32, 30, 30, 46, 46), + (57, 11, 5, 21, 25, 28, 33, 33, 43, 43), + (57, 11, 6, 36, 34, 36, 17, 27, 45, 45), + (57, 11, 7, 31, 30, 33, 37, 32, 48, 48), + (57, 11, 8, 19, 23, 28, 33, 33, 42, 42), + (58, 1, 1, 36, 31, 36, 17, 27, 44, 44), + (58, 1, 2, 40, 29, 39, 30, 32, 49, 49), + (58, 1, 4, 31, 32, 33, 21, 29, 44, 44), + (58, 1, 5, 21, 24, 27, 32, 34, 43, 43), + (58, 1, 6, 35, 32, 34, 15, 25, 43, 43), + (58, 1, 8, 17, 21, 26, 32, 34, 41, 41), + (58, 1, 9, 26, 27, 35, 32, 37, 46, 46), + (58, 2, 1, 35, 30, 35, 19, 25, 44, 44), + (58, 2, 3, 26, 33, 30, 29, 28, 44, 44), + (58, 2, 4, 30, 33, 29, 23, 26, 43, 43), + (58, 2, 6, 40, 33, 37, 16, 25, 45, 45), + (58, 2, 7, 30, 29, 31, 38, 31, 47, 47), + (58, 2, 9, 25, 27, 34, 33, 35, 46, 46), + (58, 3, 1, 35, 31, 35, 18, 26, 44, 44), + (58, 3, 2, 40, 30, 31, 30, 30, 47, 47), + (58, 3, 3, 27, 33, 30, 30, 30, 45, 45), + (58, 3, 4, 30, 33, 29, 22, 28, 43, 43), + (58, 3, 5, 20, 26, 26, 32, 35, 43, 43), + (58, 3, 6, 35, 33, 34, 15, 26, 44, 44), + (58, 4, 1, 36, 29, 36, 17, 26, 44, 44), + (58, 4, 3, 29, 34, 31, 32, 29, 46, 46), + (58, 4, 4, 31, 31, 30, 21, 27, 43, 43), + (58, 4, 5, 23, 22, 28, 41, 36, 45, 45), + (58, 4, 6, 36, 30, 34, 15, 26, 43, 43), + (58, 4, 11, 30, 27, 30, 31, 32, 45, 45), + (58, 5, 1, 32, 30, 32, 18, 24, 42, 42), + (58, 5, 4, 31, 33, 30, 22, 25, 43, 43), + (58, 5, 5, 22, 25, 27, 32, 32, 43, 43), + (58, 5, 6, 35, 32, 34, 16, 24, 43, 43), + (58, 5, 8, 18, 22, 25, 32, 32, 41, 41), + (58, 5, 9, 26, 28, 35, 32, 35, 46, 46), + (58, 6, 1, 31, 31, 35, 20, 25, 43, 43), + (58, 6, 3, 26, 35, 30, 32, 29, 46, 46), + (58, 6, 6, 34, 33, 34, 17, 25, 44, 44), + (58, 6, 7, 29, 29, 31, 38, 31, 47, 47), + (58, 6, 11, 27, 30, 29, 32, 40, 47, 47), + (58, 7, 1, 35, 30, 35, 18, 26, 44, 44), + (58, 7, 4, 32, 32, 33, 21, 27, 44, 44), + (58, 7, 6, 34, 31, 38, 13, 26, 43, 43), + (58, 7, 8, 20, 20, 26, 35, 32, 42, 42), + (58, 7, 9, 28, 26, 35, 34, 35, 47, 47), + (58, 8, 1, 36, 30, 35, 19, 25, 44, 44), + (58, 8, 3, 27, 34, 31, 32, 29, 46, 46), + (58, 8, 4, 30, 32, 32, 24, 27, 44, 44), + (58, 8, 5, 21, 23, 27, 33, 32, 42, 42), + (58, 8, 6, 35, 31, 34, 17, 25, 44, 44), + (58, 8, 7, 30, 27, 31, 38, 31, 46, 46), + (58, 8, 8, 17, 20, 25, 33, 32, 40, 40), + (58, 10, 2, 32, 29, 31, 29, 30, 45, 45), + (58, 10, 3, 29, 32, 31, 28, 30, 45, 45), + (58, 10, 4, 31, 32, 32, 20, 28, 44, 44), + (58, 10, 5, 23, 23, 27, 31, 32, 42, 42), + (58, 10, 6, 34, 31, 35, 13, 26, 43, 43), + (58, 10, 8, 19, 20, 25, 32, 32, 41, 41), + (58, 10, 9, 27, 27, 34, 31, 36, 46, 46), + (58, 11, 1, 36, 30, 36, 17, 25, 44, 44), + (58, 11, 2, 31, 29, 31, 39, 29, 47, 47), + (58, 11, 3, 27, 33, 31, 29, 29, 45, 45), + (58, 11, 5, 21, 25, 28, 32, 32, 43, 43), + (58, 11, 6, 34, 33, 34, 14, 25, 43, 43), + (58, 11, 7, 30, 29, 32, 37, 31, 47, 47), + (58, 11, 8, 17, 23, 26, 32, 32, 41, 41), + (59, 1, 1, 35, 29, 34, 17, 27, 43, 43), + (59, 1, 2, 40, 28, 37, 29, 31, 48, 48), + (59, 1, 4, 30, 31, 32, 19, 28, 43, 43), + (59, 1, 5, 19, 22, 26, 31, 33, 41, 41), + (59, 1, 6, 35, 30, 33, 15, 25, 43, 43), + (59, 1, 8, 17, 19, 26, 31, 33, 40, 40), + (59, 1, 9, 26, 26, 33, 31, 36, 45, 45), + (59, 2, 1, 34, 30, 34, 19, 25, 43, 43), + (59, 2, 3, 25, 31, 29, 28, 27, 43, 43), + (59, 2, 4, 29, 31, 29, 20, 25, 42, 42), + (59, 2, 6, 37, 31, 36, 16, 25, 44, 44), + (59, 2, 7, 28, 27, 30, 36, 30, 45, 45), + (59, 2, 9, 25, 27, 33, 31, 34, 45, 45), + (59, 3, 1, 34, 30, 34, 18, 26, 43, 43), + (59, 3, 2, 39, 28, 30, 29, 29, 46, 46), + (59, 3, 3, 25, 32, 29, 29, 28, 43, 43), + (59, 3, 4, 29, 31, 28, 20, 26, 42, 42), + (59, 3, 5, 18, 24, 25, 31, 34, 41, 41), + (59, 3, 6, 33, 31, 32, 15, 26, 43, 43), + (59, 4, 1, 35, 28, 35, 17, 26, 43, 43), + (59, 4, 3, 27, 33, 30, 31, 28, 45, 45), + (59, 4, 4, 30, 30, 29, 19, 26, 42, 42), + (59, 4, 5, 20, 22, 26, 40, 35, 44, 44), + (59, 4, 6, 36, 29, 33, 15, 26, 43, 43), + (59, 4, 11, 28, 26, 29, 30, 31, 44, 44), + (59, 5, 1, 31, 29, 30, 18, 24, 42, 42), + (59, 5, 4, 30, 31, 29, 20, 24, 42, 42), + (59, 5, 5, 20, 23, 25, 31, 30, 41, 41), + (59, 5, 6, 32, 30, 33, 16, 24, 42, 42), + (59, 5, 8, 18, 20, 25, 31, 30, 40, 40), + (59, 5, 9, 26, 27, 34, 31, 34, 45, 45), + (59, 6, 1, 30, 30, 34, 20, 25, 43, 43), + (59, 6, 3, 25, 34, 29, 31, 28, 44, 44), + (59, 6, 6, 34, 31, 33, 17, 25, 43, 43), + (59, 6, 7, 28, 28, 30, 37, 30, 46, 46), + (59, 6, 11, 26, 29, 28, 31, 39, 46, 46), + (59, 7, 1, 34, 28, 33, 15, 26, 42, 42), + (59, 7, 4, 31, 31, 32, 19, 26, 43, 43), + (59, 7, 6, 32, 29, 37, 13, 26, 43, 43), + (59, 7, 8, 20, 18, 26, 33, 31, 41, 41), + (59, 7, 9, 26, 25, 34, 33, 35, 46, 46), + (59, 8, 1, 35, 28, 34, 19, 25, 43, 43), + (59, 8, 3, 26, 33, 29, 31, 28, 44, 44), + (59, 8, 4, 29, 31, 31, 21, 25, 43, 43), + (59, 8, 5, 19, 21, 25, 32, 31, 41, 41), + (59, 8, 6, 35, 29, 33, 17, 25, 43, 43), + (59, 8, 7, 29, 25, 30, 37, 30, 45, 45), + (59, 8, 8, 17, 18, 25, 32, 31, 40, 40), + (59, 10, 2, 32, 28, 30, 28, 29, 44, 44), + (59, 10, 3, 27, 31, 29, 27, 28, 43, 43), + (59, 10, 4, 30, 31, 31, 18, 26, 42, 42), + (59, 10, 5, 20, 21, 25, 30, 31, 41, 41), + (59, 10, 6, 32, 29, 33, 13, 26, 42, 42), + (59, 10, 8, 19, 18, 25, 30, 31, 40, 40), + (59, 10, 9, 25, 25, 33, 30, 35, 45, 45), + (59, 11, 1, 35, 30, 35, 17, 25, 43, 43), + (59, 11, 2, 31, 28, 30, 38, 29, 46, 46), + (59, 11, 3, 26, 31, 30, 28, 28, 44, 44), + (59, 11, 5, 19, 23, 26, 31, 31, 41, 41), + (59, 11, 6, 33, 31, 33, 14, 25, 42, 42), + (59, 11, 7, 29, 27, 30, 35, 30, 45, 45), + (59, 11, 8, 17, 20, 26, 31, 31, 40, 40), + (60, 1, 1, 34, 28, 33, 17, 25, 42, 42), + (60, 1, 2, 39, 27, 37, 28, 29, 47, 47), + (60, 1, 4, 29, 30, 30, 19, 27, 42, 42), + (60, 1, 5, 19, 22, 24, 30, 32, 40, 40), + (60, 1, 6, 32, 29, 32, 15, 24, 41, 41), + (60, 1, 8, 17, 19, 24, 30, 32, 39, 39), + (60, 1, 9, 24, 24, 32, 29, 35, 44, 44), + (60, 2, 1, 33, 29, 33, 19, 23, 42, 42), + (60, 2, 3, 24, 30, 28, 27, 26, 42, 42), + (60, 2, 4, 28, 30, 28, 20, 23, 41, 41), + (60, 2, 6, 36, 30, 35, 16, 23, 43, 43), + (60, 2, 7, 27, 26, 29, 36, 29, 44, 44), + (60, 2, 9, 23, 25, 32, 30, 33, 44, 44), + (60, 3, 1, 33, 29, 33, 18, 25, 42, 42), + (60, 3, 2, 38, 27, 29, 28, 27, 45, 45), + (60, 3, 3, 24, 30, 28, 27, 27, 42, 42), + (60, 3, 4, 28, 30, 27, 20, 25, 41, 41), + (60, 3, 5, 18, 24, 23, 30, 33, 41, 41), + (60, 3, 6, 32, 30, 31, 15, 25, 42, 42), + (60, 4, 1, 34, 27, 33, 17, 24, 42, 42), + (60, 4, 3, 26, 32, 29, 30, 26, 43, 43), + (60, 4, 4, 29, 29, 27, 19, 24, 41, 41), + (60, 4, 5, 20, 20, 25, 39, 33, 43, 43), + (60, 4, 6, 33, 28, 32, 15, 24, 41, 41), + (60, 4, 11, 27, 25, 28, 29, 29, 43, 43), + (60, 5, 1, 30, 28, 29, 18, 22, 41, 41), + (60, 5, 4, 28, 30, 28, 20, 23, 41, 41), + (60, 5, 5, 20, 23, 24, 30, 29, 40, 40), + (60, 5, 6, 30, 30, 32, 16, 22, 41, 41), + (60, 5, 8, 18, 20, 24, 30, 29, 39, 39), + (60, 5, 9, 25, 25, 33, 30, 33, 44, 44), + (60, 6, 1, 29, 29, 33, 20, 23, 42, 42), + (60, 6, 3, 23, 33, 28, 30, 26, 43, 43), + (60, 6, 6, 33, 30, 31, 17, 23, 42, 42), + (60, 6, 7, 27, 27, 29, 36, 29, 44, 44), + (60, 6, 11, 25, 28, 27, 30, 38, 45, 45), + (60, 7, 1, 33, 27, 32, 15, 24, 41, 41), + (60, 7, 4, 29, 29, 30, 19, 24, 41, 41), + (60, 7, 6, 31, 28, 36, 13, 24, 42, 42), + (60, 7, 8, 20, 18, 25, 32, 30, 40, 40), + (60, 7, 9, 26, 23, 33, 32, 34, 45, 45), + (60, 8, 1, 33, 27, 33, 19, 24, 42, 42), + (60, 8, 3, 24, 32, 28, 30, 26, 43, 43), + (60, 8, 4, 29, 29, 30, 21, 24, 42, 42), + (60, 8, 5, 19, 21, 24, 30, 30, 40, 40), + (60, 8, 6, 34, 29, 32, 17, 24, 42, 42), + (60, 8, 7, 28, 24, 29, 36, 29, 44, 44), + (60, 8, 8, 17, 18, 24, 30, 30, 39, 39), + (60, 10, 2, 30, 27, 29, 27, 27, 43, 43), + (60, 10, 3, 26, 29, 28, 26, 27, 42, 42), + (60, 10, 4, 29, 29, 29, 18, 25, 41, 41), + (60, 10, 5, 20, 21, 24, 29, 30, 40, 40), + (60, 10, 6, 32, 29, 32, 13, 25, 41, 41), + (60, 10, 8, 19, 18, 23, 29, 30, 39, 39), + (60, 10, 9, 25, 24, 32, 29, 34, 44, 44), + (60, 11, 1, 33, 29, 33, 17, 23, 42, 42), + (60, 11, 2, 29, 27, 29, 37, 28, 45, 45), + (60, 11, 3, 24, 30, 29, 27, 26, 42, 42), + (60, 11, 5, 19, 23, 25, 30, 29, 40, 40), + (60, 11, 6, 32, 30, 32, 14, 23, 41, 41), + (60, 11, 7, 28, 26, 29, 35, 29, 44, 44), + (60, 11, 8, 17, 20, 25, 30, 29, 39, 39), + (61, 1, 1, 33, 27, 32, 17, 24, 42, 42), + (61, 1, 2, 37, 26, 35, 26, 28, 46, 46), + (61, 1, 4, 27, 29, 29, 19, 27, 41, 41), + (61, 1, 5, 19, 20, 24, 29, 31, 40, 40), + (61, 1, 6, 31, 28, 30, 15, 22, 40, 40), + (61, 1, 8, 17, 19, 23, 29, 31, 39, 39), + (61, 1, 9, 23, 24, 31, 28, 34, 43, 43), + (61, 2, 1, 32, 27, 32, 19, 23, 41, 41), + (61, 2, 3, 24, 29, 27, 26, 24, 41, 41), + (61, 2, 4, 26, 29, 26, 18, 23, 39, 39), + (61, 2, 6, 35, 29, 34, 16, 21, 42, 42), + (61, 2, 7, 26, 24, 27, 34, 27, 43, 43), + (61, 2, 9, 23, 24, 31, 29, 32, 43, 43), + (61, 3, 1, 32, 27, 31, 18, 23, 41, 41), + (61, 3, 2, 37, 26, 27, 26, 26, 44, 44), + (61, 3, 3, 24, 29, 26, 25, 25, 41, 41), + (61, 3, 4, 27, 29, 25, 20, 23, 40, 40), + (61, 3, 5, 18, 22, 23, 29, 32, 40, 40), + (61, 3, 6, 31, 29, 30, 15, 23, 41, 41), + (61, 4, 1, 33, 26, 32, 17, 23, 41, 41), + (61, 4, 3, 24, 31, 27, 28, 25, 42, 42), + (61, 4, 4, 28, 28, 26, 19, 24, 40, 40), + (61, 4, 5, 18, 20, 23, 38, 32, 41, 41), + (61, 4, 6, 32, 27, 31, 15, 23, 40, 40), + (61, 4, 11, 26, 25, 26, 28, 28, 42, 42), + (61, 5, 1, 29, 27, 28, 18, 22, 40, 40), + (61, 5, 4, 27, 29, 26, 18, 23, 39, 39), + (61, 5, 5, 20, 21, 24, 29, 28, 39, 39), + (61, 5, 6, 29, 29, 30, 16, 21, 40, 40), + (61, 5, 8, 18, 18, 22, 29, 28, 38, 38), + (61, 5, 9, 23, 24, 32, 29, 31, 43, 43), + (61, 6, 1, 28, 27, 32, 17, 22, 40, 40), + (61, 6, 3, 23, 32, 27, 29, 25, 42, 42), + (61, 6, 6, 32, 29, 30, 17, 22, 41, 41), + (61, 6, 7, 25, 25, 27, 35, 27, 43, 43), + (61, 6, 11, 24, 26, 26, 29, 37, 44, 44), + (61, 7, 1, 32, 26, 31, 15, 23, 40, 40), + (61, 7, 4, 28, 28, 29, 19, 24, 41, 41), + (61, 7, 6, 30, 27, 34, 13, 23, 41, 41), + (61, 7, 8, 17, 18, 23, 31, 29, 38, 38), + (61, 7, 9, 25, 23, 32, 30, 32, 44, 44), + (61, 8, 1, 32, 27, 32, 16, 22, 41, 41), + (61, 8, 3, 23, 31, 27, 29, 25, 42, 42), + (61, 8, 4, 27, 28, 29, 18, 24, 40, 40), + (61, 8, 5, 19, 21, 24, 29, 29, 39, 39), + (61, 8, 6, 33, 28, 30, 17, 22, 41, 41), + (61, 8, 7, 26, 24, 28, 34, 28, 43, 43), + (61, 8, 8, 17, 18, 22, 29, 28, 38, 38), + (61, 10, 2, 29, 25, 27, 26, 26, 42, 42), + (61, 10, 3, 24, 28, 27, 25, 25, 41, 41), + (61, 10, 4, 28, 28, 29, 18, 23, 40, 40), + (61, 10, 5, 18, 21, 22, 28, 29, 39, 39), + (61, 10, 6, 31, 28, 31, 13, 23, 40, 40), + (61, 10, 8, 19, 18, 22, 28, 29, 38, 38), + (61, 10, 9, 24, 24, 31, 27, 33, 43, 43), + (61, 11, 1, 32, 27, 32, 17, 22, 41, 41), + (61, 11, 2, 28, 26, 28, 35, 26, 44, 44), + (61, 11, 3, 23, 29, 27, 26, 25, 41, 41), + (61, 11, 5, 19, 21, 23, 28, 28, 39, 39), + (61, 11, 6, 31, 29, 31, 14, 22, 40, 40), + (61, 11, 7, 26, 24, 28, 33, 27, 43, 43), + (61, 11, 8, 17, 18, 23, 29, 28, 38, 38), + (62, 1, 1, 31, 25, 31, 14, 24, 40, 40), + (62, 1, 2, 36, 24, 34, 25, 27, 44, 44), + (62, 1, 4, 26, 27, 28, 17, 25, 40, 40), + (62, 1, 5, 17, 20, 23, 28, 30, 38, 38), + (62, 1, 6, 29, 26, 29, 15, 22, 39, 39), + (62, 1, 8, 14, 17, 23, 28, 30, 37, 37), + (62, 1, 9, 23, 23, 30, 27, 33, 42, 42), + (62, 2, 1, 31, 26, 30, 16, 21, 40, 40), + (62, 2, 3, 23, 27, 26, 25, 23, 40, 40), + (62, 2, 4, 25, 27, 25, 18, 22, 39, 39), + (62, 2, 6, 33, 27, 33, 16, 21, 41, 41), + (62, 2, 7, 25, 24, 27, 33, 26, 42, 42), + (62, 2, 9, 21, 24, 30, 27, 31, 42, 42), + (62, 3, 1, 31, 26, 30, 15, 23, 40, 40), + (62, 3, 2, 36, 25, 26, 25, 25, 42, 42), + (62, 3, 3, 23, 28, 26, 24, 24, 40, 40), + (62, 3, 4, 26, 28, 25, 17, 23, 39, 39), + (62, 3, 5, 16, 22, 22, 28, 31, 39, 39), + (62, 3, 6, 31, 27, 29, 15, 23, 40, 40), + (62, 4, 1, 32, 24, 31, 14, 23, 40, 40), + (62, 4, 3, 24, 30, 26, 26, 24, 41, 41), + (62, 4, 4, 27, 27, 25, 17, 23, 39, 39), + (62, 4, 5, 18, 18, 23, 37, 31, 41, 41), + (62, 4, 6, 32, 25, 29, 15, 23, 40, 40), + (62, 4, 11, 25, 23, 25, 26, 27, 40, 40), + (62, 5, 1, 28, 26, 27, 15, 21, 38, 38), + (62, 5, 4, 26, 27, 25, 18, 21, 39, 39), + (62, 5, 5, 17, 21, 23, 28, 27, 38, 38), + (62, 5, 6, 28, 27, 29, 16, 21, 39, 39), + (62, 5, 8, 15, 18, 22, 27, 27, 37, 37), + (62, 5, 9, 23, 24, 31, 27, 30, 42, 42), + (62, 6, 1, 27, 26, 30, 17, 22, 39, 39), + (62, 6, 3, 22, 31, 26, 28, 24, 41, 41), + (62, 6, 6, 29, 28, 29, 17, 22, 40, 40), + (62, 6, 7, 24, 25, 27, 34, 26, 42, 42), + (62, 6, 11, 23, 25, 24, 27, 36, 42, 42), + (62, 7, 1, 31, 25, 30, 13, 23, 39, 39), + (62, 7, 4, 27, 27, 28, 17, 23, 40, 40), + (62, 7, 6, 26, 26, 30, 13, 23, 38, 38), + (62, 7, 8, 17, 16, 23, 30, 28, 38, 38), + (62, 7, 9, 25, 22, 31, 29, 31, 43, 43), + (62, 8, 1, 31, 25, 31, 16, 22, 40, 40), + (62, 8, 3, 23, 30, 26, 27, 24, 41, 41), + (62, 8, 4, 26, 27, 28, 18, 23, 39, 39), + (62, 8, 5, 16, 19, 23, 28, 27, 38, 38), + (62, 8, 6, 31, 26, 29, 17, 22, 40, 40), + (62, 8, 7, 25, 23, 27, 34, 26, 42, 42), + (62, 8, 8, 14, 16, 22, 28, 27, 36, 36), + (62, 10, 2, 28, 24, 26, 24, 25, 41, 41), + (62, 10, 3, 24, 27, 26, 24, 24, 40, 40), + (62, 10, 4, 27, 27, 28, 15, 23, 39, 39), + (62, 10, 5, 18, 19, 22, 27, 28, 38, 38), + (62, 10, 6, 30, 26, 30, 13, 23, 39, 39), + (62, 10, 8, 16, 16, 22, 27, 28, 37, 37), + (62, 10, 9, 24, 22, 30, 26, 31, 42, 42), + (62, 11, 1, 31, 26, 31, 14, 22, 40, 40), + (62, 11, 2, 27, 25, 27, 34, 25, 42, 42), + (62, 11, 3, 23, 27, 26, 25, 24, 40, 40), + (62, 11, 5, 16, 21, 23, 27, 27, 38, 38), + (62, 11, 6, 29, 27, 29, 14, 22, 39, 39), + (62, 11, 7, 25, 24, 27, 32, 26, 42, 42), + (62, 11, 8, 14, 18, 23, 27, 27, 37, 37), + (63, 1, 1, 30, 24, 30, 14, 22, 39, 39), + (63, 1, 2, 35, 23, 34, 24, 26, 43, 43), + (63, 1, 4, 25, 26, 27, 17, 24, 39, 39), + (63, 1, 5, 17, 20, 21, 26, 28, 38, 38), + (63, 1, 6, 28, 25, 27, 12, 20, 38, 38), + (63, 1, 8, 14, 17, 21, 26, 28, 36, 36), + (63, 1, 9, 21, 21, 29, 26, 32, 41, 41), + (63, 2, 1, 30, 25, 29, 16, 20, 39, 39), + (63, 2, 3, 21, 26, 24, 23, 22, 39, 39), + (63, 2, 4, 25, 26, 24, 18, 20, 38, 38), + (63, 2, 6, 32, 26, 31, 13, 20, 39, 39), + (63, 2, 7, 23, 23, 25, 32, 25, 41, 41), + (63, 2, 9, 20, 22, 29, 26, 29, 40, 40), + (63, 3, 1, 30, 25, 29, 15, 21, 39, 39), + (63, 3, 2, 35, 24, 25, 24, 25, 41, 41), + (63, 3, 3, 22, 26, 24, 23, 23, 39, 39), + (63, 3, 4, 25, 26, 24, 17, 22, 38, 38), + (63, 3, 5, 16, 20, 20, 27, 30, 37, 37), + (63, 3, 6, 30, 26, 27, 12, 21, 38, 38), + (63, 4, 1, 30, 23, 30, 14, 21, 39, 39), + (63, 4, 3, 23, 28, 25, 25, 23, 40, 40), + (63, 4, 4, 26, 25, 25, 17, 21, 38, 38), + (63, 4, 5, 18, 18, 22, 36, 30, 40, 40), + (63, 4, 6, 29, 24, 28, 12, 21, 38, 38), + (63, 4, 11, 24, 22, 24, 26, 26, 39, 39), + (63, 5, 1, 27, 25, 25, 15, 19, 37, 37), + (63, 5, 4, 25, 26, 24, 18, 20, 38, 38), + (63, 5, 5, 17, 19, 21, 27, 25, 37, 37), + (63, 5, 6, 26, 26, 27, 13, 19, 37, 37), + (63, 5, 8, 15, 18, 20, 26, 26, 36, 36), + (63, 5, 9, 21, 22, 30, 26, 29, 41, 41), + (63, 6, 1, 26, 25, 29, 17, 20, 38, 38), + (63, 6, 3, 21, 29, 24, 27, 23, 40, 40), + (63, 6, 6, 28, 27, 27, 14, 20, 38, 38), + (63, 6, 7, 24, 24, 25, 32, 25, 41, 41), + (63, 6, 11, 22, 24, 23, 26, 35, 41, 41), + (63, 7, 1, 29, 24, 29, 13, 21, 38, 38), + (63, 7, 4, 25, 25, 27, 17, 21, 38, 38), + (63, 7, 6, 25, 25, 28, 11, 21, 37, 37), + (63, 7, 8, 17, 16, 21, 28, 26, 37, 37), + (63, 7, 9, 23, 20, 30, 28, 30, 41, 41), + (63, 8, 1, 30, 24, 29, 16, 20, 39, 39), + (63, 8, 3, 22, 28, 25, 26, 23, 40, 40), + (63, 8, 4, 25, 26, 27, 18, 21, 38, 38), + (63, 8, 5, 16, 19, 21, 27, 26, 37, 37), + (63, 8, 6, 30, 25, 27, 13, 20, 38, 38), + (63, 8, 7, 24, 22, 25, 32, 25, 41, 41), + (63, 8, 8, 14, 16, 20, 26, 26, 36, 36), + (63, 10, 2, 26, 22, 25, 23, 25, 39, 39), + (63, 10, 3, 23, 26, 24, 23, 23, 39, 39), + (63, 10, 4, 26, 26, 27, 15, 22, 38, 38), + (63, 10, 5, 18, 19, 20, 26, 26, 37, 37), + (63, 10, 6, 28, 25, 28, 11, 21, 38, 38), + (63, 10, 8, 16, 16, 20, 25, 27, 36, 36), + (63, 10, 9, 22, 21, 29, 25, 30, 40, 40), + (63, 11, 1, 30, 25, 30, 14, 20, 39, 39), + (63, 11, 2, 25, 23, 26, 33, 24, 41, 41), + (63, 11, 3, 22, 26, 25, 22, 23, 39, 39), + (63, 11, 5, 16, 19, 22, 26, 26, 37, 37), + (63, 11, 6, 28, 26, 28, 12, 20, 38, 38), + (63, 11, 7, 24, 23, 26, 31, 25, 41, 41), + (63, 11, 8, 14, 18, 21, 26, 26, 36, 36), + (64, 1, 1, 29, 23, 28, 14, 22, 38, 38), + (64, 1, 2, 34, 22, 32, 23, 25, 42, 42), + (64, 1, 4, 24, 25, 26, 14, 22, 37, 37), + (64, 1, 5, 14, 18, 20, 25, 27, 36, 36), + (64, 1, 6, 28, 24, 26, 12, 20, 37, 37), + (64, 1, 8, 14, 14, 21, 25, 27, 35, 35), + (64, 1, 9, 21, 20, 28, 24, 30, 40, 40), + (64, 2, 1, 28, 23, 28, 16, 20, 38, 38), + (64, 2, 3, 20, 25, 24, 22, 21, 38, 38), + (64, 2, 4, 23, 25, 23, 15, 19, 36, 36), + (64, 2, 6, 30, 24, 30, 13, 20, 38, 38), + (64, 2, 7, 22, 22, 24, 31, 24, 40, 40), + (64, 2, 9, 20, 21, 28, 25, 28, 39, 39), + (64, 3, 1, 28, 23, 28, 15, 21, 38, 38), + (64, 3, 2, 34, 23, 24, 23, 24, 40, 40), + (64, 3, 3, 20, 25, 23, 22, 22, 38, 38), + (64, 3, 4, 23, 25, 23, 15, 20, 36, 36), + (64, 3, 5, 14, 20, 19, 25, 29, 36, 36), + (64, 3, 6, 28, 25, 26, 12, 21, 37, 37), + (64, 4, 1, 29, 23, 29, 14, 21, 38, 38), + (64, 4, 3, 22, 27, 24, 24, 22, 39, 39), + (64, 4, 4, 24, 24, 24, 14, 20, 36, 36), + (64, 4, 5, 15, 17, 20, 34, 29, 38, 38), + (64, 4, 6, 29, 23, 26, 12, 21, 37, 37), + (64, 4, 11, 23, 21, 23, 24, 24, 38, 38), + (64, 5, 1, 25, 23, 24, 15, 19, 36, 36), + (64, 5, 4, 24, 25, 23, 15, 19, 36, 36), + (64, 5, 5, 15, 19, 20, 25, 24, 35, 35), + (64, 5, 6, 22, 24, 26, 13, 19, 36, 36), + (64, 5, 8, 15, 15, 20, 25, 25, 35, 35), + (64, 5, 9, 21, 20, 29, 25, 28, 40, 40), + (64, 6, 1, 24, 24, 28, 17, 20, 38, 38), + (64, 6, 3, 19, 28, 24, 25, 22, 39, 39), + (64, 6, 6, 25, 25, 26, 14, 20, 37, 37), + (64, 6, 7, 22, 22, 24, 32, 24, 40, 40), + (64, 6, 11, 21, 24, 22, 25, 34, 40, 40), + (64, 7, 1, 28, 22, 27, 13, 21, 37, 37), + (64, 7, 4, 25, 24, 26, 15, 20, 37, 37), + (64, 7, 6, 23, 23, 26, 11, 21, 36, 36), + (64, 7, 8, 17, 14, 21, 27, 25, 36, 36), + (64, 7, 9, 23, 19, 29, 27, 29, 40, 40), + (64, 8, 1, 29, 22, 28, 16, 20, 38, 38), + (64, 8, 3, 20, 27, 24, 25, 22, 39, 39), + (64, 8, 4, 23, 25, 26, 16, 20, 37, 37), + (64, 8, 5, 14, 17, 20, 25, 25, 35, 35), + (64, 8, 6, 28, 23, 26, 13, 20, 37, 37), + (64, 8, 7, 23, 20, 24, 31, 24, 39, 39), + (64, 8, 8, 14, 14, 20, 25, 24, 35, 35), + (64, 10, 2, 25, 21, 24, 22, 24, 38, 38), + (64, 10, 3, 22, 25, 24, 21, 22, 38, 38), + (64, 10, 4, 24, 25, 26, 13, 20, 37, 37), + (64, 10, 5, 15, 17, 19, 25, 25, 35, 35), + (64, 10, 6, 27, 23, 26, 11, 21, 37, 37), + (64, 10, 8, 16, 14, 20, 24, 25, 35, 35), + (64, 10, 9, 22, 19, 28, 24, 29, 39, 39), + (64, 11, 1, 29, 23, 29, 14, 20, 38, 38), + (64, 11, 2, 24, 22, 24, 32, 23, 40, 40), + (64, 11, 3, 20, 25, 24, 21, 22, 38, 38), + (64, 11, 5, 14, 19, 20, 24, 25, 36, 36), + (64, 11, 6, 26, 24, 26, 12, 20, 37, 37), + (64, 11, 7, 23, 22, 24, 30, 24, 40, 40), + (64, 11, 8, 14, 15, 21, 25, 24, 35, 35), + (65, 1, 1, 28, 22, 27, 12, 20, 37, 37), + (65, 1, 2, 33, 20, 31, 22, 24, 41, 41), + (65, 1, 4, 23, 23, 24, 14, 22, 36, 36), + (65, 1, 5, 14, 18, 20, 23, 26, 35, 35), + (65, 1, 6, 23, 23, 20, 12, 19, 34, 34), + (65, 1, 8, 12, 14, 19, 24, 26, 34, 34), + (65, 1, 9, 19, 20, 27, 23, 29, 39, 39), + (65, 2, 1, 27, 22, 27, 13, 18, 36, 36), + (65, 2, 3, 19, 24, 22, 21, 20, 36, 36), + (65, 2, 4, 22, 24, 21, 15, 19, 35, 35), + (65, 2, 6, 30, 23, 29, 13, 18, 38, 38), + (65, 2, 7, 22, 20, 23, 30, 22, 38, 38), + (65, 2, 9, 18, 21, 27, 24, 27, 38, 38), + (65, 3, 1, 27, 23, 27, 12, 19, 37, 37), + (65, 3, 2, 33, 21, 22, 22, 22, 39, 39), + (65, 3, 3, 19, 24, 22, 21, 21, 36, 36), + (65, 3, 4, 22, 24, 21, 15, 20, 35, 35), + (65, 3, 5, 14, 18, 19, 24, 27, 35, 35), + (65, 3, 6, 26, 24, 24, 12, 19, 36, 36), + (65, 4, 1, 28, 21, 27, 12, 19, 36, 36), + (65, 4, 3, 20, 26, 23, 23, 21, 38, 38), + (65, 4, 4, 23, 23, 22, 14, 20, 35, 35), + (65, 4, 5, 15, 17, 20, 33, 28, 38, 38), + (65, 4, 6, 25, 22, 25, 12, 19, 36, 36), + (65, 4, 11, 21, 20, 22, 23, 23, 37, 37), + (65, 5, 1, 24, 22, 23, 12, 18, 35, 35), + (65, 5, 4, 23, 23, 21, 15, 19, 35, 35), + (65, 5, 5, 15, 17, 20, 24, 23, 35, 35), + (65, 5, 6, 22, 23, 24, 13, 18, 35, 35), + (65, 5, 8, 12, 15, 19, 24, 23, 34, 34), + (65, 5, 9, 19, 20, 28, 23, 27, 39, 39), + (65, 6, 1, 23, 23, 27, 13, 19, 36, 36), + (65, 6, 3, 18, 27, 22, 24, 21, 38, 38), + (65, 6, 6, 24, 24, 25, 14, 19, 36, 36), + (65, 6, 7, 21, 21, 23, 30, 23, 39, 39), + (65, 6, 11, 20, 23, 21, 24, 33, 39, 39), + (65, 7, 1, 27, 21, 26, 13, 19, 36, 36), + (65, 7, 4, 24, 23, 25, 15, 20, 36, 36), + (65, 7, 6, 21, 22, 25, 11, 19, 35, 35), + (65, 7, 8, 13, 14, 19, 26, 23, 34, 34), + (65, 7, 9, 21, 19, 28, 26, 28, 39, 39), + (65, 8, 1, 28, 21, 27, 13, 19, 37, 37), + (65, 8, 3, 19, 26, 22, 24, 21, 38, 38), + (65, 8, 4, 22, 23, 24, 16, 20, 36, 36), + (65, 8, 5, 14, 17, 20, 24, 24, 35, 35), + (65, 8, 6, 24, 22, 25, 13, 19, 36, 36), + (65, 8, 7, 22, 19, 23, 30, 23, 38, 38), + (65, 8, 8, 11, 14, 19, 24, 23, 33, 33), + (65, 10, 2, 24, 20, 22, 21, 22, 37, 37), + (65, 10, 3, 20, 23, 22, 20, 21, 36, 36), + (65, 10, 4, 23, 23, 24, 13, 20, 36, 36), + (65, 10, 5, 15, 17, 19, 23, 24, 35, 35), + (65, 10, 6, 23, 22, 25, 11, 19, 35, 35), + (65, 10, 8, 13, 14, 18, 23, 24, 33, 33), + (65, 10, 9, 20, 19, 27, 23, 28, 38, 38), + (65, 11, 1, 28, 22, 27, 11, 19, 36, 36), + (65, 11, 2, 24, 21, 23, 31, 21, 39, 39), + (65, 11, 3, 19, 24, 23, 20, 21, 36, 36), + (65, 11, 5, 14, 17, 20, 23, 23, 35, 35), + (65, 11, 6, 23, 23, 25, 12, 19, 35, 35), + (65, 11, 7, 22, 20, 23, 29, 23, 38, 38), + (65, 11, 8, 11, 15, 19, 24, 23, 34, 34), + (66, 1, 1, 27, 21, 26, 12, 19, 36, 36), + (66, 1, 2, 32, 19, 30, 21, 23, 40, 40), + (66, 1, 4, 22, 22, 23, 14, 21, 36, 36), + (66, 1, 5, 14, 16, 18, 22, 24, 34, 34), + (66, 1, 6, 21, 21, 19, 12, 17, 33, 33), + (66, 1, 8, 12, 14, 17, 22, 25, 33, 33), + (66, 1, 9, 17, 18, 26, 22, 28, 37, 37), + (66, 2, 1, 26, 21, 26, 13, 17, 36, 36), + (66, 2, 3, 17, 22, 20, 20, 19, 35, 35), + (66, 2, 4, 21, 23, 20, 15, 18, 34, 34), + (66, 2, 6, 27, 22, 27, 13, 17, 36, 36), + (66, 2, 7, 20, 19, 22, 28, 21, 37, 37), + (66, 2, 9, 17, 19, 26, 22, 26, 37, 37), + (66, 3, 1, 26, 22, 26, 12, 18, 36, 36), + (66, 3, 2, 32, 20, 21, 21, 21, 38, 38), + (66, 3, 3, 18, 23, 20, 20, 20, 35, 35), + (66, 3, 4, 21, 23, 20, 15, 19, 34, 34), + (66, 3, 5, 14, 18, 18, 22, 26, 34, 34), + (66, 3, 6, 25, 22, 23, 12, 18, 35, 35), + (66, 4, 1, 27, 20, 26, 12, 17, 35, 35), + (66, 4, 3, 19, 24, 21, 22, 20, 36, 36), + (66, 4, 4, 21, 22, 21, 14, 18, 34, 34), + (66, 4, 5, 15, 15, 19, 32, 26, 37, 37), + (66, 4, 6, 24, 20, 23, 12, 17, 34, 34), + (66, 4, 11, 20, 19, 21, 21, 22, 36, 36), + (66, 5, 1, 22, 21, 22, 12, 18, 34, 34), + (66, 5, 4, 22, 22, 20, 15, 17, 34, 34), + (66, 5, 5, 15, 17, 18, 23, 21, 34, 34), + (66, 5, 6, 21, 21, 23, 13, 16, 34, 34), + (66, 5, 8, 12, 15, 17, 22, 22, 33, 33), + (66, 5, 9, 18, 19, 27, 22, 26, 37, 37), + (66, 6, 1, 22, 22, 26, 13, 17, 35, 35), + (66, 6, 3, 17, 26, 20, 23, 20, 36, 36), + (66, 6, 6, 22, 22, 23, 14, 17, 34, 34), + (66, 6, 7, 20, 19, 22, 29, 21, 37, 37), + (66, 6, 11, 19, 21, 20, 22, 32, 38, 38), + (66, 7, 1, 26, 20, 25, 10, 17, 35, 35), + (66, 7, 4, 22, 22, 24, 15, 18, 35, 35), + (66, 7, 6, 20, 20, 23, 11, 17, 33, 33), + (66, 7, 8, 13, 14, 18, 25, 22, 33, 33), + (66, 7, 9, 19, 18, 27, 25, 26, 38, 38), + (66, 8, 1, 26, 20, 26, 13, 17, 36, 36), + (66, 8, 3, 18, 25, 21, 23, 20, 36, 36), + (66, 8, 4, 22, 22, 23, 16, 18, 35, 35), + (66, 8, 5, 14, 16, 18, 23, 22, 34, 34), + (66, 8, 6, 23, 21, 23, 13, 17, 34, 34), + (66, 8, 7, 20, 18, 22, 28, 21, 37, 37), + (66, 8, 8, 11, 14, 17, 23, 22, 32, 32), + (66, 10, 2, 23, 19, 21, 20, 21, 36, 36), + (66, 10, 3, 19, 22, 20, 19, 20, 35, 35), + (66, 10, 4, 21, 22, 23, 13, 19, 35, 35), + (66, 10, 5, 15, 16, 17, 22, 22, 34, 34), + (66, 10, 6, 22, 21, 23, 11, 18, 34, 34), + (66, 10, 8, 13, 14, 16, 22, 22, 32, 32), + (66, 10, 9, 18, 18, 26, 21, 27, 37, 37), + (66, 11, 1, 26, 21, 26, 11, 17, 35, 35), + (66, 11, 2, 22, 20, 22, 31, 20, 38, 38), + (66, 11, 3, 18, 22, 21, 19, 20, 35, 35), + (66, 11, 5, 14, 17, 19, 22, 22, 34, 34), + (66, 11, 6, 21, 22, 23, 12, 17, 34, 34), + (66, 11, 7, 20, 19, 22, 27, 21, 37, 37), + (66, 11, 8, 11, 15, 18, 22, 22, 33, 33), + (67, 1, 1, 25, 19, 25, 12, 19, 35, 35), + (67, 1, 2, 31, 18, 29, 20, 22, 39, 39), + (67, 1, 4, 20, 21, 23, 12, 19, 34, 34), + (67, 1, 5, 12, 16, 17, 21, 23, 33, 33), + (67, 1, 6, 19, 20, 17, 9, 17, 32, 32), + (67, 1, 8, 12, 12, 17, 21, 23, 32, 32), + (67, 1, 9, 17, 17, 25, 21, 27, 36, 36), + (67, 2, 1, 25, 20, 25, 13, 17, 35, 35), + (67, 2, 3, 17, 21, 20, 19, 18, 34, 34), + (67, 2, 4, 19, 21, 19, 13, 16, 33, 33), + (67, 2, 6, 26, 21, 26, 10, 17, 35, 35), + (67, 2, 7, 19, 19, 20, 28, 20, 36, 36), + (67, 2, 9, 17, 18, 25, 21, 25, 36, 36), + (67, 3, 1, 25, 20, 24, 12, 18, 35, 35), + (67, 3, 2, 31, 19, 20, 20, 20, 37, 37), + (67, 3, 3, 18, 21, 20, 18, 19, 34, 34), + (67, 3, 4, 20, 21, 19, 12, 17, 33, 33), + (67, 3, 5, 12, 15, 16, 21, 25, 33, 33), + (67, 3, 6, 21, 21, 21, 9, 18, 33, 33), + (67, 4, 1, 26, 18, 25, 12, 17, 35, 35), + (67, 4, 3, 19, 23, 20, 21, 19, 35, 35), + (67, 4, 4, 20, 20, 20, 12, 17, 33, 33), + (67, 4, 5, 13, 15, 17, 31, 25, 35, 35), + (67, 4, 6, 24, 19, 22, 9, 17, 33, 33), + (67, 4, 11, 19, 18, 20, 20, 21, 35, 35), + (67, 5, 1, 21, 19, 20, 12, 16, 33, 33), + (67, 5, 4, 20, 21, 19, 13, 16, 33, 33), + (67, 5, 5, 12, 17, 17, 21, 20, 33, 33), + (67, 5, 6, 19, 20, 22, 10, 16, 32, 32), + (67, 5, 8, 12, 13, 17, 21, 21, 32, 32), + (67, 5, 9, 18, 17, 26, 21, 24, 36, 36), + (67, 6, 1, 21, 20, 25, 13, 17, 34, 34), + (67, 6, 3, 17, 25, 20, 22, 19, 35, 35), + (67, 6, 6, 19, 21, 19, 10, 17, 32, 32), + (67, 6, 7, 19, 18, 20, 28, 20, 36, 36), + (67, 6, 11, 18, 20, 19, 21, 31, 37, 37), + (67, 7, 1, 24, 19, 24, 10, 17, 34, 34), + (67, 7, 4, 21, 20, 23, 13, 17, 34, 34), + (67, 7, 6, 19, 20, 23, 8, 17, 33, 33), + (67, 7, 8, 13, 11, 18, 24, 21, 33, 33), + (67, 7, 9, 19, 16, 25, 23, 25, 37, 37), + (67, 8, 1, 25, 19, 25, 13, 17, 35, 35), + (67, 8, 3, 18, 24, 20, 22, 19, 35, 35), + (67, 8, 4, 20, 20, 22, 13, 17, 34, 34), + (67, 8, 5, 12, 16, 17, 22, 21, 32, 32), + (67, 8, 6, 21, 20, 22, 10, 17, 33, 33), + (67, 8, 7, 20, 18, 20, 28, 20, 36, 36), + (67, 8, 8, 11, 12, 17, 21, 21, 32, 32), + (67, 10, 2, 21, 18, 20, 19, 20, 35, 35), + (67, 10, 3, 19, 21, 20, 18, 19, 34, 34), + (67, 10, 4, 20, 20, 22, 11, 17, 33, 33), + (67, 10, 5, 13, 16, 16, 21, 21, 32, 32), + (67, 10, 6, 20, 20, 22, 8, 18, 32, 32), + (67, 10, 8, 13, 12, 16, 20, 21, 31, 31), + (67, 10, 9, 18, 16, 25, 20, 25, 36, 36), + (67, 11, 1, 25, 20, 25, 11, 17, 35, 35), + (67, 11, 2, 21, 19, 20, 30, 19, 37, 37), + (67, 11, 3, 18, 21, 20, 18, 19, 34, 34), + (67, 11, 5, 12, 17, 17, 21, 21, 33, 33), + (67, 11, 6, 20, 21, 22, 9, 17, 33, 33), + (67, 11, 7, 20, 19, 20, 27, 20, 36, 36), + (67, 11, 8, 11, 13, 18, 21, 21, 32, 32), + (68, 1, 1, 24, 18, 24, 12, 17, 34, 34), + (68, 1, 2, 30, 17, 28, 18, 21, 38, 38), + (68, 1, 4, 19, 20, 22, 12, 18, 33, 33), + (68, 1, 5, 12, 14, 15, 20, 22, 32, 32), + (68, 1, 6, 18, 18, 16, 9, 15, 30, 30), + (68, 1, 8, 12, 12, 16, 20, 22, 31, 31), + (68, 1, 9, 16, 15, 24, 19, 26, 35, 35), + (68, 2, 1, 24, 19, 23, 13, 15, 34, 34), + (68, 2, 3, 16, 20, 18, 18, 16, 33, 33), + (68, 2, 4, 19, 20, 18, 13, 16, 32, 32), + (68, 2, 6, 25, 19, 24, 10, 15, 34, 34), + (68, 2, 7, 18, 17, 19, 26, 19, 35, 35), + (68, 2, 9, 15, 16, 24, 20, 24, 35, 35), + (68, 3, 1, 24, 19, 23, 12, 16, 34, 34), + (68, 3, 2, 30, 18, 19, 18, 19, 36, 36), + (68, 3, 3, 16, 20, 18, 17, 17, 33, 33), + (68, 3, 4, 19, 20, 18, 12, 16, 32, 32), + (68, 3, 5, 12, 15, 16, 20, 24, 32, 32), + (68, 3, 6, 20, 19, 20, 9, 16, 32, 32), + (68, 4, 1, 24, 17, 24, 12, 16, 34, 34), + (68, 4, 3, 17, 22, 19, 20, 17, 34, 34), + (68, 4, 4, 20, 19, 19, 12, 15, 32, 32), + (68, 4, 5, 13, 13, 16, 30, 24, 34, 34), + (68, 4, 6, 23, 18, 21, 9, 16, 32, 32), + (68, 4, 11, 18, 17, 18, 19, 19, 33, 33), + (68, 5, 1, 20, 19, 19, 12, 15, 32, 32), + (68, 5, 4, 19, 20, 18, 13, 16, 32, 32), + (68, 5, 5, 12, 15, 15, 20, 19, 31, 31), + (68, 5, 6, 18, 19, 20, 10, 15, 31, 31), + (68, 5, 8, 12, 13, 15, 20, 19, 31, 31), + (68, 5, 9, 16, 16, 25, 20, 23, 35, 35), + (68, 6, 1, 19, 19, 23, 13, 15, 33, 33), + (68, 6, 3, 16, 23, 18, 21, 17, 34, 34), + (68, 6, 6, 18, 19, 16, 10, 15, 31, 31), + (68, 6, 7, 17, 18, 19, 26, 19, 35, 35), + (68, 6, 11, 16, 19, 17, 20, 30, 35, 35), + (68, 7, 1, 23, 18, 22, 10, 16, 33, 33), + (68, 7, 4, 20, 19, 22, 13, 15, 33, 33), + (68, 7, 6, 18, 18, 23, 8, 16, 32, 32), + (68, 7, 8, 13, 11, 16, 23, 20, 32, 32), + (68, 7, 9, 17, 16, 24, 22, 24, 36, 36), + (68, 8, 1, 24, 18, 24, 13, 15, 34, 34), + (68, 8, 3, 16, 23, 18, 21, 17, 34, 34), + (68, 8, 4, 19, 19, 21, 13, 15, 33, 33), + (68, 8, 5, 12, 14, 15, 20, 20, 31, 31), + (68, 8, 6, 20, 18, 20, 10, 15, 32, 32), + (68, 8, 7, 18, 16, 19, 26, 19, 35, 35), + (68, 8, 8, 11, 12, 15, 20, 20, 31, 31), + (68, 10, 2, 20, 17, 19, 17, 19, 33, 33), + (68, 10, 3, 17, 20, 18, 16, 17, 33, 33), + (68, 10, 4, 20, 19, 21, 11, 16, 32, 32), + (68, 10, 5, 13, 14, 14, 20, 20, 31, 31), + (68, 10, 6, 19, 18, 21, 8, 16, 31, 31), + (68, 10, 8, 13, 12, 15, 19, 20, 31, 31), + (68, 10, 9, 17, 16, 24, 19, 24, 35, 35), + (68, 11, 1, 24, 19, 24, 11, 15, 34, 34), + (68, 11, 2, 20, 18, 20, 28, 18, 36, 36), + (68, 11, 3, 16, 20, 19, 17, 17, 33, 33), + (68, 11, 5, 12, 15, 16, 20, 20, 31, 31), + (68, 11, 6, 20, 19, 21, 9, 15, 32, 32), + (68, 11, 7, 18, 17, 19, 25, 19, 35, 35), + (68, 11, 8, 11, 13, 16, 20, 20, 31, 31), + (69, 1, 1, 23, 16, 23, 9, 17, 33, 33), + (69, 1, 2, 29, 16, 27, 17, 19, 36, 36), + (69, 1, 4, 17, 18, 20, 10, 18, 32, 32), + (69, 1, 5, 10, 14, 15, 18, 20, 31, 31), + (69, 1, 6, 17, 17, 14, 9, 14, 29, 29), + (69, 1, 8, 9, 10, 16, 18, 21, 30, 30), + (69, 1, 9, 16, 15, 23, 18, 25, 34, 34), + (69, 2, 1, 22, 17, 22, 10, 15, 32, 32), + (69, 2, 3, 15, 18, 17, 17, 15, 32, 32), + (69, 2, 4, 17, 18, 16, 10, 15, 30, 30), + (69, 2, 6, 23, 18, 23, 10, 13, 32, 32), + (69, 2, 7, 17, 16, 18, 25, 18, 34, 34), + (69, 2, 9, 15, 16, 23, 18, 22, 34, 34), + (69, 3, 1, 23, 17, 22, 9, 16, 32, 32), + (69, 3, 2, 28, 17, 18, 17, 17, 34, 34), + (69, 3, 3, 15, 19, 17, 16, 16, 32, 32), + (69, 3, 4, 17, 18, 16, 10, 16, 30, 30), + (69, 3, 5, 9, 15, 15, 18, 22, 31, 31), + (69, 3, 6, 19, 18, 19, 9, 14, 31, 31), + (69, 4, 1, 23, 16, 23, 9, 16, 32, 32), + (69, 4, 3, 16, 21, 18, 19, 16, 33, 33), + (69, 4, 4, 18, 18, 17, 10, 15, 31, 31), + (69, 4, 5, 10, 13, 16, 29, 22, 33, 33), + (69, 4, 6, 21, 17, 19, 9, 14, 31, 31), + (69, 4, 11, 17, 15, 17, 18, 18, 32, 32), + (69, 5, 1, 18, 17, 18, 9, 15, 30, 30), + (69, 5, 4, 17, 18, 17, 10, 14, 30, 30), + (69, 5, 5, 10, 15, 15, 19, 18, 30, 30), + (69, 5, 6, 17, 18, 19, 10, 13, 30, 30), + (69, 5, 8, 9, 10, 15, 18, 18, 29, 29), + (69, 5, 9, 16, 16, 24, 18, 22, 34, 34), + (69, 6, 1, 18, 17, 22, 10, 15, 32, 32), + (69, 6, 3, 14, 22, 17, 20, 16, 33, 33), + (69, 6, 6, 16, 18, 14, 10, 14, 29, 29), + (69, 6, 7, 16, 16, 18, 26, 18, 34, 34), + (69, 6, 11, 15, 17, 16, 19, 29, 34, 34), + (69, 7, 1, 22, 16, 21, 8, 16, 32, 32), + (69, 7, 4, 18, 18, 20, 11, 15, 32, 32), + (69, 7, 6, 17, 17, 23, 8, 14, 31, 31), + (69, 7, 8, 10, 9, 16, 21, 18, 30, 30), + (69, 7, 9, 17, 15, 23, 21, 23, 35, 35), + (69, 8, 1, 23, 16, 22, 10, 15, 32, 32), + (69, 8, 3, 15, 21, 18, 20, 16, 33, 33), + (69, 8, 4, 17, 18, 20, 11, 15, 31, 31), + (69, 8, 5, 10, 14, 15, 19, 18, 30, 30), + (69, 8, 6, 19, 17, 19, 10, 14, 31, 31), + (69, 8, 7, 17, 15, 18, 25, 18, 34, 34), + (69, 8, 8, 9, 9, 15, 19, 18, 29, 29), + (69, 10, 2, 19, 16, 18, 16, 17, 32, 32), + (69, 10, 3, 16, 18, 17, 15, 16, 32, 32), + (69, 10, 4, 18, 18, 19, 9, 16, 31, 31), + (69, 10, 5, 10, 14, 14, 18, 18, 30, 30), + (69, 10, 6, 18, 17, 19, 8, 14, 30, 30), + (69, 10, 8, 10, 9, 15, 18, 18, 29, 29), + (69, 10, 9, 17, 15, 23, 18, 23, 34, 34), + (69, 11, 1, 23, 17, 23, 9, 15, 32, 32), + (69, 11, 2, 18, 17, 18, 27, 16, 34, 34), + (69, 11, 3, 15, 18, 18, 16, 16, 32, 32), + (69, 11, 5, 10, 15, 16, 18, 18, 30, 30), + (69, 11, 6, 19, 18, 19, 9, 14, 31, 31), + (69, 11, 7, 17, 16, 18, 25, 18, 34, 34), + (69, 11, 8, 9, 10, 16, 18, 18, 29, 29), + (70, 1, 1, 22, 16, 21, 9, 15, 32, 32), + (70, 1, 2, 28, 15, 25, 16, 18, 35, 35), + (70, 1, 4, 16, 17, 19, 10, 16, 31, 31), + (70, 1, 5, 10, 12, 14, 17, 19, 29, 29), + (70, 1, 6, 15, 16, 13, 9, 14, 28, 28), + (70, 1, 8, 9, 10, 14, 17, 19, 29, 29), + (70, 1, 9, 14, 14, 22, 17, 23, 33, 33), + (70, 2, 1, 21, 16, 21, 10, 13, 31, 31), + (70, 2, 3, 13, 17, 16, 15, 14, 30, 30), + (70, 2, 4, 16, 17, 15, 10, 13, 29, 29), + (70, 2, 6, 20, 16, 22, 10, 13, 31, 31), + (70, 2, 7, 15, 15, 16, 24, 16, 32, 32), + (70, 2, 9, 13, 15, 22, 17, 21, 33, 33), + (70, 3, 1, 21, 16, 21, 9, 14, 31, 31), + (70, 3, 2, 27, 16, 16, 16, 16, 33, 33), + (70, 3, 3, 14, 17, 16, 15, 15, 30, 30), + (70, 3, 4, 16, 17, 15, 10, 14, 30, 30), + (70, 3, 5, 9, 13, 13, 17, 21, 30, 30), + (70, 3, 6, 17, 16, 17, 9, 14, 30, 30), + (70, 4, 1, 22, 15, 21, 9, 14, 31, 31), + (70, 4, 3, 15, 20, 16, 18, 15, 32, 32), + (70, 4, 4, 17, 16, 16, 10, 14, 30, 30), + (70, 4, 5, 10, 11, 14, 28, 21, 32, 32), + (70, 4, 6, 17, 15, 17, 9, 14, 30, 30), + (70, 4, 11, 16, 14, 16, 17, 17, 31, 31), + (70, 5, 1, 17, 16, 17, 9, 13, 29, 29), + (70, 5, 4, 17, 17, 16, 10, 13, 29, 29), + (70, 5, 5, 10, 13, 14, 17, 17, 29, 29), + (70, 5, 6, 15, 16, 17, 10, 13, 29, 29), + (70, 5, 8, 9, 10, 14, 17, 17, 28, 28), + (70, 5, 9, 14, 14, 23, 17, 21, 33, 33), + (70, 6, 1, 17, 16, 21, 10, 14, 31, 31), + (70, 6, 3, 13, 21, 16, 19, 15, 32, 32), + (70, 6, 6, 14, 16, 12, 10, 14, 28, 28), + (70, 6, 7, 15, 15, 16, 24, 16, 32, 32), + (70, 6, 11, 14, 16, 15, 17, 28, 33, 33), + (70, 7, 1, 20, 15, 20, 8, 14, 31, 31), + (70, 7, 4, 17, 17, 19, 11, 14, 31, 31), + (70, 7, 6, 15, 15, 22, 8, 14, 30, 30), + (70, 7, 8, 10, 9, 14, 20, 17, 29, 29), + (70, 7, 9, 15, 13, 22, 20, 22, 34, 34), + (70, 8, 1, 22, 15, 21, 10, 14, 31, 31), + (70, 8, 3, 14, 20, 16, 18, 15, 32, 32), + (70, 8, 4, 16, 17, 19, 11, 14, 30, 30), + (70, 8, 5, 10, 12, 14, 18, 17, 29, 29), + (70, 8, 6, 17, 15, 17, 10, 14, 30, 30), + (70, 8, 7, 15, 14, 17, 24, 16, 32, 32), + (70, 8, 8, 9, 9, 14, 17, 17, 28, 28), + (70, 10, 2, 17, 15, 16, 15, 16, 31, 31), + (70, 10, 3, 15, 17, 16, 14, 15, 30, 30), + (70, 10, 4, 17, 17, 18, 9, 14, 30, 30), + (70, 10, 5, 10, 12, 13, 17, 17, 29, 29), + (70, 10, 6, 16, 15, 18, 8, 14, 29, 29), + (70, 10, 8, 10, 9, 13, 17, 17, 28, 28), + (70, 10, 9, 15, 14, 22, 16, 22, 33, 33), + (70, 11, 1, 22, 16, 21, 9, 14, 31, 31), + (70, 11, 2, 17, 15, 17, 26, 15, 33, 33), + (70, 11, 3, 14, 17, 16, 15, 15, 30, 30), + (70, 11, 5, 10, 13, 14, 17, 17, 29, 29), + (70, 11, 6, 17, 16, 17, 9, 14, 30, 30), + (70, 11, 7, 15, 15, 17, 23, 16, 32, 32), + (70, 11, 8, 9, 10, 14, 17, 17, 28, 28), + (71, 1, 1, 20, 15, 17, 9, 12, 30, 30), + (71, 1, 2, 15, 14, 24, 15, 15, 32, 32), + (71, 1, 4, 15, 15, 18, 10, 14, 29, 29), + (71, 1, 5, 10, 10, 12, 15, 16, 28, 28), + (71, 1, 6, 10, 14, 10, 6, 12, 26, 26), + (71, 1, 8, 9, 10, 12, 15, 16, 27, 27), + (71, 1, 9, 12, 12, 20, 16, 15, 30, 30), + (71, 2, 1, 17, 15, 17, 10, 12, 29, 29), + (71, 2, 3, 12, 16, 14, 14, 13, 29, 29), + (71, 2, 4, 14, 16, 15, 10, 12, 28, 28), + (71, 2, 6, 18, 14, 20, 7, 12, 29, 29), + (71, 2, 7, 14, 13, 15, 15, 15, 29, 29), + (71, 2, 9, 12, 13, 12, 15, 15, 28, 28), + (71, 3, 1, 20, 15, 20, 9, 13, 30, 30), + (71, 3, 2, 15, 14, 15, 15, 15, 30, 30), + (71, 3, 3, 12, 16, 14, 14, 14, 29, 29), + (71, 3, 4, 14, 16, 14, 10, 13, 28, 28), + (71, 3, 5, 9, 11, 12, 16, 20, 29, 29), + (71, 3, 6, 16, 14, 15, 6, 13, 28, 28), + (71, 4, 1, 20, 14, 20, 9, 12, 30, 30), + (71, 4, 3, 13, 18, 15, 17, 14, 30, 30), + (71, 4, 4, 15, 15, 14, 10, 12, 28, 28), + (71, 4, 5, 10, 9, 13, 26, 16, 30, 30), + (71, 4, 6, 13, 13, 16, 6, 12, 27, 27), + (71, 4, 11, 13, 13, 15, 15, 16, 29, 29), + (71, 5, 1, 16, 15, 15, 9, 11, 28, 28), + (71, 5, 4, 15, 15, 15, 10, 12, 28, 28), + (71, 5, 5, 10, 11, 12, 16, 15, 28, 28), + (71, 5, 6, 13, 14, 15, 7, 11, 27, 27), + (71, 5, 8, 9, 10, 12, 16, 15, 27, 27), + (71, 5, 9, 13, 13, 14, 15, 15, 29, 29), + (71, 6, 1, 15, 15, 20, 10, 12, 29, 29), + (71, 6, 3, 12, 19, 14, 18, 14, 30, 30), + (71, 6, 6, 12, 15, 10, 7, 12, 26, 26), + (71, 6, 7, 14, 14, 15, 17, 15, 30, 30), + (71, 6, 11, 12, 15, 14, 16, 26, 32, 32), + (71, 7, 1, 19, 14, 19, 8, 12, 29, 29), + (71, 7, 4, 15, 15, 18, 9, 12, 29, 29), + (71, 7, 6, 13, 14, 20, 6, 12, 28, 28), + (71, 7, 8, 10, 9, 13, 13, 15, 27, 27), + (71, 7, 9, 13, 12, 13, 14, 15, 28, 28), + (71, 8, 1, 20, 14, 20, 10, 12, 30, 30), + (71, 8, 3, 12, 18, 14, 17, 14, 30, 30), + (71, 8, 4, 15, 15, 15, 11, 12, 29, 29), + (71, 8, 5, 10, 10, 12, 16, 15, 28, 28), + (71, 8, 6, 15, 14, 15, 7, 12, 28, 28), + (71, 8, 7, 15, 12, 15, 15, 15, 29, 29), + (71, 8, 8, 9, 9, 12, 16, 15, 27, 27), + (71, 10, 2, 16, 14, 15, 14, 15, 30, 30), + (71, 10, 3, 13, 15, 15, 13, 14, 29, 29), + (71, 10, 4, 15, 15, 18, 9, 13, 29, 29), + (71, 10, 5, 10, 10, 13, 15, 15, 28, 28), + (71, 10, 6, 13, 14, 16, 6, 13, 27, 27), + (71, 10, 8, 10, 9, 13, 15, 16, 27, 27), + (71, 10, 9, 13, 12, 13, 15, 15, 29, 29), + (71, 11, 1, 20, 15, 20, 9, 12, 30, 30), + (71, 11, 2, 15, 14, 15, 24, 15, 32, 32), + (71, 11, 3, 12, 16, 15, 14, 14, 29, 29), + (71, 11, 5, 10, 11, 13, 15, 15, 28, 28), + (71, 11, 6, 15, 14, 16, 6, 12, 28, 28), + (71, 11, 7, 15, 13, 15, 14, 15, 29, 29), + (71, 11, 8, 9, 10, 13, 15, 15, 27, 27), + (72, 1, 1, 16, 13, 15, 9, 10, 28, 28), + (72, 1, 2, 14, 13, 22, 13, 13, 30, 30), + (72, 1, 4, 13, 14, 16, 7, 14, 28, 28), + (72, 1, 5, 7, 10, 12, 14, 14, 27, 27), + (72, 1, 6, 9, 13, 9, 6, 10, 25, 25), + (72, 1, 8, 9, 7, 11, 12, 14, 26, 26), + (72, 1, 9, 11, 12, 19, 14, 13, 29, 29), + (72, 2, 1, 14, 13, 13, 10, 10, 27, 27), + (72, 2, 3, 11, 14, 13, 13, 12, 28, 28), + (72, 2, 4, 13, 14, 13, 8, 12, 27, 27), + (72, 2, 6, 16, 13, 19, 7, 10, 28, 28), + (72, 2, 7, 13, 12, 14, 14, 13, 28, 28), + (72, 2, 9, 10, 13, 11, 14, 14, 27, 27), + (72, 3, 1, 19, 13, 18, 9, 11, 29, 29), + (72, 3, 2, 14, 13, 13, 13, 13, 28, 28), + (72, 3, 3, 11, 14, 13, 13, 13, 28, 28), + (72, 3, 4, 13, 14, 12, 8, 13, 27, 27), + (72, 3, 5, 7, 11, 12, 14, 14, 27, 27), + (72, 3, 6, 14, 13, 14, 6, 11, 27, 27), + (72, 4, 1, 19, 12, 18, 9, 11, 29, 29), + (72, 4, 3, 12, 17, 13, 16, 13, 29, 29), + (72, 4, 4, 13, 13, 13, 7, 12, 27, 27), + (72, 4, 5, 8, 9, 13, 25, 15, 29, 29), + (72, 4, 6, 12, 12, 14, 6, 11, 26, 26), + (72, 4, 11, 12, 11, 13, 13, 14, 28, 28), + (72, 5, 1, 14, 13, 14, 9, 10, 27, 27), + (72, 5, 4, 13, 14, 13, 8, 12, 27, 27), + (72, 5, 5, 8, 11, 12, 14, 13, 27, 27), + (72, 5, 6, 12, 13, 14, 7, 10, 26, 26), + (72, 5, 8, 9, 8, 10, 14, 13, 26, 26), + (72, 5, 9, 11, 13, 12, 14, 13, 28, 28), + (72, 6, 1, 14, 13, 18, 10, 10, 28, 28), + (72, 6, 3, 11, 17, 13, 16, 13, 29, 29), + (72, 6, 6, 11, 14, 9, 7, 10, 25, 25), + (72, 6, 7, 12, 12, 14, 14, 13, 28, 28), + (72, 6, 11, 11, 12, 12, 14, 25, 30, 30), + (72, 7, 1, 18, 13, 17, 8, 11, 28, 28), + (72, 7, 4, 13, 14, 16, 7, 12, 27, 27), + (72, 7, 6, 12, 13, 19, 6, 11, 27, 27), + (72, 7, 8, 10, 7, 11, 13, 14, 26, 26), + (72, 7, 9, 12, 12, 12, 13, 14, 28, 28), + (72, 8, 1, 19, 13, 18, 10, 10, 29, 29), + (72, 8, 3, 11, 17, 13, 16, 13, 29, 29), + (72, 8, 4, 13, 14, 13, 8, 12, 27, 27), + (72, 8, 5, 7, 10, 12, 14, 14, 26, 26), + (72, 8, 6, 14, 13, 14, 7, 10, 27, 27), + (72, 8, 7, 13, 11, 14, 14, 13, 28, 28), + (72, 8, 8, 9, 7, 10, 14, 14, 26, 26), + (72, 10, 2, 14, 12, 13, 12, 13, 28, 28), + (72, 10, 3, 12, 14, 13, 12, 13, 28, 28), + (72, 10, 4, 13, 14, 16, 7, 13, 28, 28), + (72, 10, 5, 8, 10, 13, 13, 14, 27, 27), + (72, 10, 6, 12, 13, 14, 6, 11, 26, 26), + (72, 10, 8, 10, 7, 11, 13, 14, 26, 26), + (72, 10, 9, 11, 12, 12, 13, 14, 28, 28), + (72, 11, 1, 19, 13, 18, 9, 10, 29, 29), + (72, 11, 2, 14, 13, 13, 21, 13, 30, 30), + (72, 11, 3, 11, 14, 13, 13, 13, 28, 28), + (72, 11, 5, 7, 11, 13, 12, 14, 26, 26), + (72, 11, 6, 14, 13, 14, 6, 10, 27, 27), + (72, 11, 7, 13, 12, 14, 13, 13, 28, 28), + (72, 11, 8, 9, 8, 11, 12, 14, 26, 26), + (73, 1, 1, 12, 11, 12, 9, 9, 26, 26), + (73, 1, 2, 13, 12, 21, 12, 12, 29, 29), + (73, 1, 4, 12, 12, 14, 7, 12, 27, 27), + (73, 1, 5, 7, 8, 11, 12, 12, 25, 25), + (73, 1, 6, 9, 11, 8, 6, 9, 24, 24), + (73, 1, 8, 9, 7, 9, 12, 12, 25, 25), + (73, 1, 9, 9, 11, 18, 12, 12, 27, 27), + (73, 2, 1, 12, 11, 12, 10, 9, 26, 26), + (73, 2, 3, 10, 12, 11, 12, 10, 26, 26), + (73, 2, 4, 12, 12, 8, 8, 10, 25, 25), + (73, 2, 6, 15, 12, 12, 7, 9, 26, 26), + (73, 2, 7, 11, 10, 12, 11, 11, 26, 26), + (73, 2, 9, 9, 11, 10, 13, 12, 26, 26), + (73, 3, 1, 12, 12, 12, 9, 9, 26, 26), + (73, 3, 2, 11, 12, 11, 12, 11, 27, 27), + (73, 3, 3, 10, 12, 11, 12, 11, 26, 26), + (73, 3, 4, 12, 12, 11, 8, 11, 26, 26), + (73, 3, 5, 7, 9, 10, 12, 13, 25, 25), + (73, 3, 6, 13, 12, 12, 6, 9, 25, 25), + (73, 4, 1, 18, 11, 17, 9, 9, 28, 28), + (73, 4, 3, 10, 15, 12, 14, 11, 27, 27), + (73, 4, 4, 12, 12, 11, 7, 11, 26, 26), + (73, 4, 5, 8, 8, 11, 23, 13, 28, 28), + (73, 4, 6, 12, 11, 12, 6, 9, 25, 25), + (73, 4, 11, 11, 10, 12, 12, 12, 26, 26), + (73, 5, 1, 13, 11, 12, 9, 8, 26, 26), + (73, 5, 4, 12, 12, 11, 8, 10, 26, 26), + (73, 5, 5, 8, 9, 11, 12, 12, 25, 25), + (73, 5, 6, 10, 11, 12, 7, 8, 25, 25), + (73, 5, 8, 9, 8, 9, 12, 12, 25, 25), + (73, 5, 9, 9, 11, 11, 13, 12, 26, 26), + (73, 6, 1, 12, 12, 17, 10, 9, 27, 27), + (73, 6, 3, 9, 16, 11, 15, 11, 27, 27), + (73, 6, 6, 10, 12, 8, 7, 9, 24, 24), + (73, 6, 7, 11, 11, 12, 12, 12, 27, 27), + (73, 6, 11, 10, 11, 11, 12, 24, 29, 29), + (73, 7, 1, 16, 11, 16, 8, 9, 27, 27), + (73, 7, 4, 13, 12, 14, 7, 11, 26, 26), + (73, 7, 6, 10, 11, 17, 6, 9, 26, 26), + (73, 7, 8, 10, 7, 9, 12, 12, 25, 25), + (73, 7, 9, 10, 10, 12, 10, 12, 26, 26), + (73, 8, 1, 17, 11, 17, 10, 9, 28, 28), + (73, 8, 3, 10, 15, 11, 15, 11, 27, 27), + (73, 8, 4, 12, 12, 13, 8, 11, 26, 26), + (73, 8, 5, 7, 8, 11, 12, 12, 25, 25), + (73, 8, 6, 13, 11, 12, 7, 9, 25, 25), + (73, 8, 7, 11, 10, 12, 12, 12, 26, 26), + (73, 8, 8, 9, 7, 9, 12, 12, 25, 25), + (73, 10, 2, 13, 11, 12, 11, 11, 27, 27), + (73, 10, 3, 10, 12, 12, 11, 11, 26, 26), + (73, 10, 4, 12, 12, 15, 7, 11, 26, 26), + (73, 10, 5, 8, 8, 11, 12, 12, 25, 25), + (73, 10, 6, 10, 11, 13, 6, 9, 25, 25), + (73, 10, 8, 10, 7, 9, 12, 12, 25, 25), + (73, 10, 9, 9, 11, 12, 12, 12, 26, 26), + (73, 11, 1, 17, 11, 17, 9, 9, 28, 28), + (73, 11, 2, 12, 12, 12, 18, 11, 28, 28), + (73, 11, 3, 10, 12, 12, 11, 11, 26, 26), + (73, 11, 5, 7, 9, 11, 11, 13, 25, 25), + (73, 11, 6, 12, 12, 12, 6, 9, 25, 25), + (73, 11, 7, 11, 10, 12, 11, 12, 26, 26), + (73, 11, 8, 9, 8, 9, 12, 12, 25, 25), + (74, 1, 1, 12, 10, 12, 6, 9, 25, 25), + (74, 1, 2, 10, 9, 20, 10, 11, 27, 27), + (74, 1, 4, 10, 11, 13, 5, 11, 25, 25), + (74, 1, 5, 5, 8, 9, 11, 11, 24, 24), + (74, 1, 6, 8, 9, 6, 6, 9, 23, 23), + (74, 1, 8, 6, 5, 9, 10, 11, 23, 23), + (74, 1, 9, 9, 9, 9, 11, 10, 25, 25), + (74, 2, 1, 11, 10, 10, 7, 9, 24, 24), + (74, 2, 3, 8, 11, 10, 10, 9, 25, 25), + (74, 2, 4, 10, 11, 7, 5, 9, 23, 23), + (74, 2, 6, 13, 10, 10, 7, 9, 25, 25), + (74, 2, 7, 9, 9, 10, 10, 10, 25, 25), + (74, 2, 9, 9, 10, 9, 9, 10, 24, 24), + (74, 3, 1, 12, 11, 12, 6, 9, 25, 25), + (74, 3, 2, 10, 10, 10, 10, 10, 25, 25), + (74, 3, 3, 8, 11, 10, 9, 10, 25, 25), + (74, 3, 4, 10, 11, 10, 5, 10, 24, 24), + (74, 3, 5, 5, 9, 9, 11, 11, 24, 24), + (74, 3, 6, 11, 10, 11, 6, 9, 24, 24), + (74, 4, 1, 16, 10, 15, 6, 9, 26, 26), + (74, 4, 3, 9, 13, 10, 12, 10, 26, 26), + (74, 4, 4, 10, 10, 10, 5, 9, 24, 24), + (74, 4, 5, 5, 8, 10, 22, 11, 26, 26), + (74, 4, 6, 11, 9, 11, 6, 9, 24, 24), + (74, 4, 11, 10, 9, 10, 9, 11, 25, 25), + (74, 5, 1, 11, 10, 10, 6, 8, 24, 24), + (74, 5, 4, 10, 11, 10, 5, 9, 24, 24), + (74, 5, 5, 5, 9, 9, 9, 10, 24, 24), + (74, 5, 6, 10, 10, 10, 7, 8, 24, 24), + (74, 5, 8, 6, 5, 9, 11, 11, 23, 23), + (74, 5, 9, 9, 10, 10, 11, 10, 25, 25), + (74, 6, 1, 11, 11, 15, 7, 9, 25, 25), + (74, 6, 3, 8, 14, 10, 13, 10, 26, 26), + (74, 6, 6, 8, 10, 6, 7, 9, 23, 23), + (74, 6, 7, 9, 9, 10, 10, 10, 25, 25), + (74, 6, 11, 9, 10, 9, 11, 22, 27, 27), + (74, 7, 1, 14, 10, 14, 5, 9, 26, 26), + (74, 7, 4, 11, 10, 13, 5, 9, 25, 25), + (74, 7, 6, 10, 9, 16, 6, 9, 25, 25), + (74, 7, 8, 7, 5, 9, 10, 11, 23, 23), + (74, 7, 9, 10, 9, 9, 10, 10, 25, 25), + (74, 8, 1, 16, 10, 15, 7, 9, 26, 26), + (74, 8, 3, 8, 14, 10, 13, 10, 26, 26), + (74, 8, 4, 10, 10, 12, 6, 9, 25, 25), + (74, 8, 5, 5, 8, 9, 11, 10, 24, 24), + (74, 8, 6, 11, 9, 11, 7, 9, 24, 24), + (74, 8, 7, 10, 8, 10, 10, 10, 25, 25), + (74, 8, 8, 6, 5, 9, 11, 11, 23, 23), + (74, 10, 2, 11, 9, 10, 9, 10, 25, 25), + (74, 10, 3, 9, 10, 10, 9, 10, 25, 25), + (74, 10, 4, 10, 10, 14, 5, 10, 25, 25), + (74, 10, 5, 5, 8, 10, 11, 10, 24, 24), + (74, 10, 6, 9, 9, 11, 6, 9, 24, 24), + (74, 10, 8, 7, 5, 9, 10, 11, 23, 23), + (74, 10, 9, 9, 9, 10, 10, 10, 25, 25), + (74, 11, 1, 16, 10, 15, 6, 9, 26, 26), + (74, 11, 2, 10, 10, 10, 15, 10, 26, 26), + (74, 11, 3, 8, 11, 10, 9, 10, 25, 25), + (74, 11, 5, 5, 9, 8, 9, 11, 23, 23), + (74, 11, 6, 8, 10, 11, 6, 9, 24, 24), + (74, 11, 7, 10, 9, 10, 10, 10, 25, 25), + (74, 11, 8, 6, 5, 9, 10, 11, 23, 23), + (75, 1, 1, 11, 8, 11, 6, 7, 24, 24), + (75, 1, 2, 9, 8, 19, 9, 9, 26, 26), + (75, 1, 4, 8, 9, 12, 5, 9, 24, 24), + (75, 1, 5, 5, 6, 8, 9, 9, 23, 23), + (75, 1, 6, 7, 9, 4, 3, 7, 21, 21), + (75, 1, 8, 6, 5, 7, 9, 9, 22, 22), + (75, 1, 9, 7, 8, 7, 9, 9, 23, 23), + (75, 2, 1, 10, 9, 10, 7, 7, 23, 23), + (75, 2, 3, 7, 9, 8, 9, 7, 23, 23), + (75, 2, 4, 8, 9, 5, 5, 8, 22, 22), + (75, 2, 6, 12, 9, 9, 4, 7, 23, 23), + (75, 2, 7, 8, 8, 8, 9, 9, 23, 23), + (75, 2, 9, 7, 8, 7, 9, 9, 23, 23), + (75, 3, 1, 9, 9, 9, 6, 7, 23, 23), + (75, 3, 2, 8, 9, 9, 9, 8, 24, 24), + (75, 3, 3, 7, 9, 8, 8, 8, 23, 23), + (75, 3, 4, 8, 9, 8, 5, 8, 23, 23), + (75, 3, 5, 5, 7, 8, 9, 9, 23, 23), + (75, 3, 6, 9, 9, 8, 3, 7, 22, 22), + (75, 4, 1, 14, 8, 14, 6, 7, 25, 25), + (75, 4, 3, 8, 12, 8, 11, 8, 24, 24), + (75, 4, 4, 9, 9, 8, 5, 8, 23, 23), + (75, 4, 5, 5, 6, 8, 21, 9, 25, 25), + (75, 4, 6, 10, 8, 9, 3, 7, 23, 23), + (75, 4, 11, 7, 7, 9, 7, 9, 23, 23), + (75, 5, 1, 9, 9, 9, 6, 7, 23, 23), + (75, 5, 4, 9, 9, 8, 5, 7, 23, 23), + (75, 5, 5, 5, 7, 8, 9, 9, 23, 23), + (75, 5, 6, 9, 9, 9, 4, 7, 22, 22), + (75, 5, 8, 6, 5, 7, 9, 9, 22, 22), + (75, 5, 9, 7, 8, 8, 9, 9, 23, 23), + (75, 6, 1, 9, 9, 14, 7, 7, 24, 24), + (75, 6, 3, 7, 13, 8, 12, 8, 24, 24), + (75, 6, 6, 6, 9, 4, 4, 7, 21, 21), + (75, 6, 7, 8, 8, 8, 9, 9, 23, 23), + (75, 6, 11, 7, 8, 8, 9, 21, 26, 26), + (75, 7, 1, 12, 8, 13, 5, 7, 24, 24), + (75, 7, 4, 9, 9, 12, 5, 8, 23, 23), + (75, 7, 6, 9, 8, 14, 3, 7, 23, 23), + (75, 7, 8, 7, 5, 7, 9, 9, 22, 22), + (75, 7, 9, 8, 8, 7, 9, 9, 23, 23), + (75, 8, 1, 11, 8, 11, 7, 7, 24, 24), + (75, 8, 3, 7, 9, 8, 8, 8, 23, 23), + (75, 8, 4, 8, 9, 11, 6, 8, 23, 23), + (75, 8, 5, 5, 6, 8, 9, 9, 22, 22), + (75, 8, 6, 9, 8, 9, 4, 7, 23, 23), + (75, 8, 7, 8, 7, 9, 9, 9, 23, 23), + (75, 8, 8, 6, 5, 7, 9, 9, 22, 22), + (75, 10, 2, 9, 8, 9, 8, 8, 24, 24), + (75, 10, 3, 8, 9, 8, 8, 8, 23, 23), + (75, 10, 4, 9, 9, 12, 5, 8, 23, 23), + (75, 10, 5, 5, 6, 8, 9, 9, 23, 23), + (75, 10, 6, 8, 8, 9, 3, 7, 22, 22), + (75, 10, 8, 7, 5, 8, 9, 9, 22, 22), + (75, 10, 9, 8, 8, 7, 9, 9, 23, 23), + (75, 11, 1, 11, 9, 11, 6, 7, 24, 24), + (75, 11, 2, 9, 9, 9, 11, 8, 24, 24), + (75, 11, 3, 7, 9, 8, 8, 8, 23, 23), + (75, 11, 5, 5, 7, 7, 7, 10, 22, 22), + (75, 11, 6, 7, 9, 9, 3, 7, 22, 22), + (75, 11, 7, 8, 8, 9, 8, 9, 23, 23), + (75, 11, 8, 6, 5, 7, 9, 9, 22, 22), + (76, 1, 1, 8, 7, 8, 6, 5, 22, 22), + (76, 1, 2, 7, 7, 17, 7, 8, 24, 24), + (76, 1, 4, 8, 7, 11, 5, 8, 23, 23), + (76, 1, 5, 5, 4, 6, 7, 7, 21, 21), + (76, 1, 6, 5, 7, 2, 3, 5, 20, 20), + (76, 1, 8, 6, 5, 6, 7, 8, 21, 21), + (76, 1, 9, 6, 6, 6, 7, 7, 21, 21), + (76, 2, 1, 9, 7, 9, 7, 5, 22, 22), + (76, 2, 3, 6, 7, 7, 7, 6, 22, 22), + (76, 2, 4, 7, 7, 5, 5, 6, 21, 21), + (76, 2, 6, 10, 7, 7, 4, 5, 22, 22), + (76, 2, 7, 6, 6, 7, 7, 7, 22, 22), + (76, 2, 9, 5, 7, 6, 8, 7, 21, 21), + (76, 3, 1, 7, 7, 7, 6, 6, 22, 22), + (76, 3, 2, 7, 7, 7, 7, 7, 22, 22), + (76, 3, 3, 6, 7, 7, 7, 7, 22, 22), + (76, 3, 4, 7, 8, 7, 5, 7, 22, 22), + (76, 3, 5, 5, 5, 6, 7, 7, 21, 21), + (76, 3, 6, 8, 7, 7, 3, 6, 21, 21), + (76, 4, 1, 13, 6, 12, 6, 6, 24, 24), + (76, 4, 3, 6, 10, 7, 10, 7, 23, 23), + (76, 4, 4, 8, 7, 7, 5, 6, 22, 22), + (76, 4, 5, 5, 4, 7, 19, 8, 24, 24), + (76, 4, 6, 8, 6, 7, 3, 6, 21, 21), + (76, 4, 11, 6, 6, 7, 7, 7, 22, 22), + (76, 5, 1, 6, 7, 7, 6, 5, 21, 21), + (76, 5, 4, 8, 7, 7, 5, 6, 22, 22), + (76, 5, 5, 5, 5, 6, 7, 7, 21, 21), + (76, 5, 6, 7, 7, 7, 4, 5, 21, 21), + (76, 5, 8, 6, 5, 5, 7, 7, 21, 21), + (76, 5, 9, 6, 7, 7, 8, 7, 22, 22), + (76, 6, 1, 7, 7, 12, 7, 5, 23, 23), + (76, 6, 3, 6, 11, 7, 11, 7, 23, 23), + (76, 6, 6, 4, 7, 4, 4, 5, 20, 20), + (76, 6, 7, 6, 6, 7, 7, 7, 22, 22), + (76, 6, 11, 6, 7, 6, 8, 19, 24, 24), + (76, 7, 1, 11, 7, 11, 5, 6, 23, 23), + (76, 7, 4, 8, 7, 11, 5, 6, 22, 22), + (76, 7, 6, 8, 7, 11, 3, 6, 22, 22), + (76, 7, 8, 7, 5, 6, 7, 7, 21, 21), + (76, 7, 9, 6, 6, 6, 8, 7, 22, 22), + (76, 8, 1, 8, 7, 8, 7, 5, 22, 22), + (76, 8, 3, 6, 7, 7, 7, 7, 22, 22), + (76, 8, 4, 8, 7, 10, 6, 6, 22, 22), + (76, 8, 5, 5, 4, 6, 8, 7, 21, 21), + (76, 8, 6, 8, 7, 7, 4, 5, 21, 21), + (76, 8, 7, 6, 6, 7, 7, 7, 22, 22), + (76, 8, 8, 6, 5, 5, 6, 7, 21, 21), + (76, 10, 2, 8, 7, 7, 6, 7, 22, 22), + (76, 10, 3, 6, 7, 7, 6, 7, 22, 22), + (76, 10, 4, 8, 7, 11, 5, 7, 22, 22), + (76, 10, 5, 5, 4, 7, 7, 6, 21, 21), + (76, 10, 6, 7, 7, 7, 3, 6, 21, 21), + (76, 10, 8, 7, 5, 6, 7, 7, 21, 21), + (76, 10, 9, 6, 6, 6, 5, 7, 21, 21), + (76, 11, 1, 8, 7, 8, 6, 5, 22, 22), + (76, 11, 2, 7, 7, 7, 7, 7, 22, 22), + (76, 11, 3, 6, 7, 7, 7, 7, 22, 22), + (76, 11, 5, 5, 5, 7, 5, 8, 21, 21), + (76, 11, 6, 6, 7, 9, 3, 5, 21, 21), + (76, 11, 7, 6, 6, 7, 6, 7, 21, 21), + (76, 11, 8, 6, 5, 6, 7, 7, 21, 21), + (77, 1, 1, 8, 5, 7, 3, 4, 20, 20), + (77, 1, 2, 6, 5, 15, 6, 5, 22, 22), + (77, 1, 4, 6, 6, 9, 3, 6, 21, 21), + (77, 1, 5, 3, 4, 5, 6, 5, 20, 20), + (77, 1, 6, 3, 5, 2, 3, 4, 19, 19), + (77, 1, 8, 3, 3, 4, 5, 6, 19, 19), + (77, 1, 9, 4, 5, 5, 6, 5, 20, 20), + (77, 2, 1, 7, 5, 7, 4, 4, 20, 20), + (77, 2, 3, 4, 6, 5, 5, 4, 20, 20), + (77, 2, 4, 6, 6, 5, 3, 5, 20, 20), + (77, 2, 6, 8, 5, 6, 4, 4, 20, 20), + (77, 2, 7, 5, 5, 6, 7, 5, 21, 21), + (77, 2, 9, 4, 5, 5, 6, 5, 20, 20), + (77, 3, 1, 7, 5, 7, 3, 4, 20, 20), + (77, 3, 2, 6, 5, 5, 6, 5, 20, 20), + (77, 3, 3, 4, 6, 5, 5, 5, 20, 20), + (77, 3, 4, 6, 6, 5, 3, 5, 20, 20), + (77, 3, 5, 3, 5, 5, 6, 6, 20, 20), + (77, 3, 6, 6, 5, 5, 3, 4, 20, 20), + (77, 4, 1, 11, 5, 11, 3, 4, 22, 22), + (77, 4, 3, 5, 9, 5, 8, 5, 21, 21), + (77, 4, 4, 6, 6, 5, 3, 5, 20, 20), + (77, 4, 5, 3, 4, 5, 18, 6, 22, 22), + (77, 4, 6, 6, 5, 6, 3, 4, 20, 20), + (77, 4, 11, 5, 5, 6, 5, 6, 20, 20), + (77, 5, 1, 4, 5, 5, 3, 4, 19, 19), + (77, 5, 4, 6, 6, 5, 3, 5, 20, 20), + (77, 5, 5, 3, 5, 5, 6, 5, 20, 20), + (77, 5, 6, 5, 5, 6, 4, 4, 20, 20), + (77, 5, 8, 3, 3, 4, 6, 6, 19, 19), + (77, 5, 9, 4, 5, 6, 6, 5, 20, 20), + (77, 6, 1, 6, 5, 10, 4, 4, 21, 21), + (77, 6, 3, 4, 9, 5, 8, 5, 21, 21), + (77, 6, 6, 4, 5, 4, 4, 4, 19, 19), + (77, 6, 7, 5, 5, 6, 6, 5, 20, 20), + (77, 6, 11, 5, 6, 5, 6, 18, 23, 23), + (77, 7, 1, 7, 5, 7, 3, 4, 20, 20), + (77, 7, 4, 6, 6, 6, 3, 5, 20, 20), + (77, 7, 6, 6, 5, 7, 3, 4, 20, 20), + (77, 7, 8, 4, 3, 4, 6, 6, 19, 19), + (77, 7, 9, 4, 5, 5, 6, 5, 20, 20), + (77, 8, 1, 6, 5, 5, 4, 4, 20, 20), + (77, 8, 3, 4, 6, 5, 5, 5, 20, 20), + (77, 8, 4, 6, 6, 5, 3, 5, 20, 20), + (77, 8, 5, 3, 4, 5, 6, 5, 20, 20), + (77, 8, 6, 7, 5, 5, 4, 4, 20, 20), + (77, 8, 7, 5, 4, 6, 6, 5, 20, 20), + (77, 8, 8, 3, 3, 4, 6, 6, 19, 19), + (77, 10, 2, 6, 5, 5, 5, 5, 20, 20), + (77, 10, 3, 5, 5, 5, 5, 5, 20, 20), + (77, 10, 4, 6, 6, 6, 3, 5, 20, 20), + (77, 10, 5, 3, 4, 5, 6, 3, 19, 19), + (77, 10, 6, 6, 5, 6, 3, 4, 20, 20), + (77, 10, 8, 4, 3, 4, 5, 6, 19, 19), + (77, 10, 9, 4, 5, 5, 5, 5, 20, 20), + (77, 11, 1, 6, 5, 5, 3, 4, 20, 20), + (77, 11, 2, 6, 5, 5, 5, 5, 20, 20), + (77, 11, 3, 4, 6, 5, 5, 5, 20, 20), + (77, 11, 5, 3, 5, 5, 4, 7, 20, 20), + (77, 11, 6, 4, 5, 6, 3, 4, 20, 20), + (77, 11, 7, 5, 5, 6, 5, 5, 20, 20), + (77, 11, 8, 3, 3, 4, 5, 6, 19, 19), + (78, 1, 1, 6, 4, 6, 3, 4, 20, 20), + (78, 1, 2, 4, 4, 14, 4, 3, 21, 21), + (78, 1, 4, 4, 4, 3, 3, 5, 19, 19), + (78, 1, 5, 3, 2, 3, 4, 4, 18, 18), + (78, 1, 6, 3, 4, 2, 3, 4, 18, 18), + (78, 1, 8, 3, 3, 4, 4, 4, 19, 19), + (78, 1, 9, 4, 3, 3, 4, 3, 19, 19), + (78, 2, 1, 5, 4, 5, 4, 4, 19, 19), + (78, 2, 3, 3, 4, 4, 4, 3, 19, 19), + (78, 2, 4, 4, 4, 4, 3, 3, 19, 19), + (78, 2, 6, 7, 4, 4, 4, 4, 19, 19), + (78, 2, 7, 4, 3, 4, 3, 4, 19, 19), + (78, 2, 9, 4, 4, 3, 4, 3, 19, 19), + (78, 3, 1, 6, 4, 6, 3, 4, 20, 20), + (78, 3, 2, 3, 4, 4, 4, 3, 19, 19), + (78, 3, 3, 3, 4, 4, 4, 4, 19, 19), + (78, 3, 4, 4, 4, 3, 3, 4, 18, 18), + (78, 3, 5, 3, 3, 3, 4, 4, 18, 18), + (78, 3, 6, 4, 4, 4, 3, 4, 19, 19), + (78, 4, 1, 9, 4, 9, 3, 4, 21, 21), + (78, 4, 3, 3, 7, 4, 7, 4, 20, 20), + (78, 4, 4, 4, 4, 3, 3, 3, 18, 18), + (78, 4, 5, 3, 2, 4, 16, 5, 21, 21), + (78, 4, 6, 4, 4, 4, 3, 4, 19, 19), + (78, 4, 11, 3, 3, 4, 4, 4, 18, 18), + (78, 5, 1, 4, 4, 4, 3, 4, 19, 19), + (78, 5, 4, 4, 4, 3, 3, 3, 18, 18), + (78, 5, 5, 3, 3, 3, 4, 4, 18, 18), + (78, 5, 6, 1, 4, 4, 4, 4, 18, 18), + (78, 5, 8, 3, 3, 4, 4, 4, 19, 19), + (78, 5, 9, 4, 4, 4, 4, 3, 19, 19), + (78, 6, 1, 4, 4, 9, 4, 4, 20, 20), + (78, 6, 3, 3, 4, 4, 4, 4, 19, 19), + (78, 6, 6, 4, 4, 4, 4, 4, 19, 19), + (78, 6, 7, 4, 3, 4, 4, 4, 19, 19), + (78, 6, 11, 3, 3, 3, 4, 17, 21, 21), + (78, 7, 1, 4, 4, 4, 3, 4, 19, 19), + (78, 7, 4, 4, 4, 3, 3, 3, 18, 18), + (78, 7, 6, 4, 4, 4, 3, 4, 19, 19), + (78, 7, 8, 4, 3, 4, 4, 4, 19, 19), + (78, 7, 9, 4, 3, 4, 5, 4, 19, 19), + (78, 8, 1, 4, 4, 4, 4, 4, 19, 19), + (78, 8, 3, 3, 4, 4, 4, 4, 19, 19), + (78, 8, 4, 4, 4, 3, 3, 3, 18, 18), + (78, 8, 5, 3, 2, 3, 4, 4, 18, 18), + (78, 8, 6, 7, 4, 4, 4, 4, 19, 19), + (78, 8, 7, 4, 3, 4, 3, 4, 19, 19), + (78, 8, 8, 3, 3, 4, 4, 4, 19, 19), + (78, 10, 2, 4, 4, 4, 3, 3, 19, 19), + (78, 10, 3, 3, 4, 4, 4, 4, 19, 19), + (78, 10, 4, 4, 4, 3, 3, 4, 18, 18), + (78, 10, 5, 3, 2, 4, 4, 4, 18, 18), + (78, 10, 6, 4, 4, 4, 3, 4, 19, 19), + (78, 10, 8, 4, 3, 4, 4, 4, 19, 19), + (78, 10, 9, 4, 3, 3, 4, 4, 19, 19), + (78, 11, 1, 4, 4, 4, 3, 4, 19, 19), + (78, 11, 2, 4, 4, 4, 3, 3, 19, 19), + (78, 11, 3, 3, 4, 4, 4, 4, 19, 19), + (78, 11, 5, 3, 3, 4, 4, 4, 18, 18), + (78, 11, 6, 4, 4, 5, 3, 4, 19, 19), + (78, 11, 7, 4, 3, 4, 3, 4, 19, 19), + (78, 11, 8, 3, 3, 4, 4, 4, 19, 19), + (79, 1, 1, 2, 2, 2, 3, 2, 17, 17), + (79, 1, 2, 2, 3, 5, 3, 2, 18, 18), + (79, 1, 4, 2, 2, 2, 0, 3, 17, 17), + (79, 1, 5, 0, 2, 2, 2, 2, 17, 17), + (79, 1, 6, 2, 2, 2, 0, 2, 17, 17), + (79, 1, 8, 3, 0, 2, 2, 2, 17, 17), + (79, 1, 9, 2, 2, 2, 2, 2, 17, 17), + (79, 2, 1, 2, 2, 2, 4, 2, 17, 17), + (79, 2, 3, 2, 2, 2, 3, 1, 17, 17), + (79, 2, 4, 2, 2, 2, 0, 2, 17, 17), + (79, 2, 6, 2, 2, 2, 0, 2, 17, 17), + (79, 2, 7, 2, 2, 2, 2, 2, 17, 17), + (79, 2, 9, 2, 2, 2, 2, 2, 17, 17), + (79, 3, 1, 2, 2, 2, 3, 2, 17, 17), + (79, 3, 2, 2, 3, 2, 3, 2, 17, 17), + (79, 3, 3, 2, 2, 2, 3, 2, 17, 17), + (79, 3, 4, 2, 2, 2, 0, 2, 17, 17), + (79, 3, 5, 0, 3, 2, 2, 3, 17, 17), + (79, 3, 6, 2, 2, 2, 0, 2, 17, 17), + (79, 4, 1, 2, 2, 2, 3, 2, 17, 17), + (79, 4, 3, 2, 2, 2, 3, 2, 17, 17), + (79, 4, 4, 2, 2, 2, 0, 2, 17, 17), + (79, 4, 5, 0, 2, 2, 15, 3, 20, 20), + (79, 4, 6, 3, 2, 2, 0, 2, 17, 17), + (79, 4, 11, 2, 2, 3, 2, 2, 17, 17), + (79, 5, 1, 2, 2, 2, 3, 2, 17, 17), + (79, 5, 4, 2, 2, 2, 0, 2, 17, 17), + (79, 5, 5, 0, 3, 2, 2, 2, 17, 17), + (79, 5, 6, 0, 2, 2, 0, 2, 17, 17), + (79, 5, 8, 3, 0, 2, 2, 2, 17, 17), + (79, 5, 9, 2, 2, 3, 2, 2, 17, 17), + (79, 6, 1, 2, 2, 4, 4, 2, 18, 18), + (79, 6, 3, 2, 3, 2, 3, 2, 17, 17), + (79, 6, 6, 2, 2, 2, 0, 2, 17, 17), + (79, 6, 7, 2, 2, 2, 2, 2, 17, 17), + (79, 6, 11, 2, 2, 2, 2, 15, 20, 20), + (79, 7, 1, 2, 2, 2, 3, 2, 17, 17), + (79, 7, 4, 2, 2, 2, 0, 2, 17, 17), + (79, 7, 6, 2, 2, 2, 0, 2, 17, 17), + (79, 7, 8, 4, 0, 2, 2, 2, 17, 17), + (79, 7, 9, 2, 2, 2, 3, 2, 17, 17), + (79, 8, 1, 2, 2, 3, 4, 2, 18, 18), + (79, 8, 3, 2, 2, 2, 3, 2, 17, 17), + (79, 8, 4, 2, 2, 1, 0, 2, 17, 17), + (79, 8, 5, 0, 2, 2, 2, 2, 17, 17), + (79, 8, 6, 2, 2, 2, 0, 2, 17, 17), + (79, 8, 7, 2, 2, 2, 2, 2, 17, 17), + (79, 8, 8, 3, 0, 2, 0, 2, 17, 17), + (79, 10, 2, 3, 3, 2, 2, 2, 17, 17), + (79, 10, 3, 2, 2, 2, 3, 2, 17, 17), + (79, 10, 4, 2, 2, 2, 0, 2, 17, 17), + (79, 10, 5, 0, 2, 2, 2, 2, 17, 17), + (79, 10, 6, 2, 2, 2, 0, 2, 17, 17), + (79, 10, 8, 4, 0, 2, 2, 2, 17, 17), + (79, 10, 9, 2, 2, 2, 2, 2, 17, 17), + (79, 11, 1, 2, 2, 2, 3, 2, 17, 17), + (79, 11, 2, 2, 3, 2, 2, 2, 17, 17), + (79, 11, 3, 2, 2, 2, 3, 2, 17, 17), + (79, 11, 5, 0, 3, 2, 2, 2, 17, 17), + (79, 11, 6, 2, 2, 2, 0, 2, 17, 17), + (79, 11, 7, 2, 2, 2, 2, 2, 17, 17), + (79, 11, 8, 3, 0, 2, 2, 2, 17, 17), + (80, 1, 1, 0, 0, 0, 0, 0, 15, 15), + (80, 1, 2, 0, 0, 0, 0, 0, 0, 0), + (80, 1, 4, 0, 0, 0, 0, 0, 15, 15), + (80, 1, 5, 0, 0, 0, 0, 0, 15, 15), + (80, 1, 6, 0, 0, 0, 0, 0, 15, 15), + (80, 1, 8, 0, 0, 0, 0, 0, 15, 15), + (80, 1, 9, 0, 0, 0, 0, 0, 15, 15), + (80, 2, 1, 0, 0, 0, 0, 0, 15, 15), + (80, 2, 3, 0, 0, 0, 0, 0, 15, 15), + (80, 2, 4, 0, 0, 0, 0, 0, 15, 15), + (80, 2, 6, 0, 0, 0, 0, 0, 15, 15), + (80, 2, 7, 0, 0, 0, 0, 0, 15, 15), + (80, 2, 9, 0, 0, 0, 0, 0, 15, 15), + (80, 3, 1, 0, 0, 0, 0, 0, 15, 15), + (80, 3, 2, 0, 0, 0, 0, 0, 15, 15), + (80, 3, 3, 0, 0, 0, 0, 0, 15, 15), + (80, 3, 4, 0, 0, 0, 0, 0, 15, 15), + (80, 3, 5, 0, 0, 0, 0, 0, 15, 15), + (80, 3, 6, 0, 0, 0, 0, 0, 15, 15), + (80, 4, 1, 0, 0, 0, 0, 0, 15, 15), + (80, 4, 3, 0, 0, 0, 0, 0, 15, 15), + (80, 4, 4, 0, 0, 0, 0, 0, 15, 15), + (80, 4, 5, 0, 0, 0, 0, 0, 15, 15), + (80, 4, 6, 0, 0, 0, 0, 0, 15, 15), + (80, 4, 11, 0, 0, 0, 0, 0, 15, 15), + (80, 5, 1, 0, 0, 0, 0, 0, 15, 15), + (80, 5, 4, 0, 0, 0, 0, 0, 15, 15), + (80, 5, 5, 0, 0, 0, 0, 0, 15, 15), + (80, 5, 6, 0, 0, 0, 0, 0, 15, 15), + (80, 5, 8, 0, 0, 0, 0, 0, 15, 15), + (80, 5, 9, 0, 0, 0, 0, 0, 15, 15), + (80, 6, 1, 0, 0, 0, 0, 0, 15, 15), + (80, 6, 3, 0, 0, 0, 0, 0, 15, 15), + (80, 6, 6, 0, 0, 0, 0, 0, 15, 15), + (80, 6, 7, 0, 0, 0, 0, 0, 15, 15), + (80, 6, 11, 0, 0, 0, 0, 0, 15, 15), + (80, 7, 1, 0, 0, 0, 0, 0, 15, 15), + (80, 7, 4, 0, 0, 0, 0, 0, 15, 15), + (80, 7, 6, 0, 0, 0, 0, 0, 15, 15), + (80, 7, 8, 0, 0, 0, 0, 0, 15, 15), + (80, 7, 9, 0, 0, 0, 0, 0, 15, 15), + (80, 8, 1, 0, 0, 0, 0, 0, 15, 15), + (80, 8, 3, 0, 0, 0, 0, 0, 15, 15), + (80, 8, 4, 0, 0, 0, 0, 0, 15, 15), + (80, 8, 5, 0, 0, 0, 0, 0, 15, 15), + (80, 8, 6, 0, 0, 0, 0, 0, 15, 15), + (80, 8, 7, 0, 0, 0, 0, 0, 15, 15), + (80, 8, 8, 0, 0, 0, 0, 0, 15, 15), + (80, 10, 2, 0, 0, 0, 0, 0, 15, 15), + (80, 10, 3, 0, 0, 0, 0, 0, 15, 15), + (80, 10, 4, 0, 0, 0, 0, 0, 15, 15), + (80, 10, 5, 0, 0, 0, 0, 0, 15, 15), + (80, 10, 6, 0, 0, 0, 0, 0, 15, 15), + (80, 10, 8, 0, 0, 0, 0, 0, 15, 15), + (80, 10, 9, 0, 0, 0, 0, 0, 15, 15), + (80, 11, 1, 0, 0, 0, 0, 0, 15, 15), + (80, 11, 2, 0, 0, 0, 0, 0, 15, 15), + (80, 11, 3, 0, 0, 0, 0, 0, 15, 15), + (80, 11, 5, 0, 0, 0, 0, 0, 15, 15), + (80, 11, 6, 0, 0, 0, 0, 0, 15, 15), + (80, 11, 7, 0, 0, 0, 0, 0, 15, 15), + (80, 11, 8, 0, 0, 0, 0, 0, 15, 15); +/*!40000 ALTER TABLE `timewalking_levels` ENABLE KEYS */; + +/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; +/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; diff --git a/data/sql/db-characters/transmog_items.sql b/data/sql/db-characters/transmog_items.sql new file mode 100644 index 0000000..78ea76a --- /dev/null +++ b/data/sql/db-characters/transmog_items.sql @@ -0,0 +1,19529 @@ +DROP TABLE IF EXISTS `transmog_items`; +CREATE TABLE `transmog_items`( + `entry` INT(10) NOT NULL COMMENT 'from item_template', + `flags` INT(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`entry`) +); + +INSERT INTO `transmog_items` (`entry`) VALUES('100036'); +INSERT INTO `transmog_items` (`entry`) VALUES('100039'); +INSERT INTO `transmog_items` (`entry`) VALUES('100044'); +INSERT INTO `transmog_items` (`entry`) VALUES('100048'); +INSERT INTO `transmog_items` (`entry`) VALUES('100052'); +INSERT INTO `transmog_items` (`entry`) VALUES('100056'); +INSERT INTO `transmog_items` (`entry`) VALUES('100057'); +INSERT INTO `transmog_items` (`entry`) VALUES('100060'); +INSERT INTO `transmog_items` (`entry`) VALUES('100061'); +INSERT INTO `transmog_items` (`entry`) VALUES('100079'); +INSERT INTO `transmog_items` (`entry`) VALUES('100080'); +INSERT INTO `transmog_items` (`entry`) VALUES('100085'); +INSERT INTO `transmog_items` (`entry`) VALUES('100120'); +INSERT INTO `transmog_items` (`entry`) VALUES('100139'); +INSERT INTO `transmog_items` (`entry`) VALUES('100147'); +INSERT INTO `transmog_items` (`entry`) VALUES('100153'); +INSERT INTO `transmog_items` (`entry`) VALUES('100192'); +INSERT INTO `transmog_items` (`entry`) VALUES('100193'); +INSERT INTO `transmog_items` (`entry`) VALUES('100194'); +INSERT INTO `transmog_items` (`entry`) VALUES('100195'); +INSERT INTO `transmog_items` (`entry`) VALUES('100200'); +INSERT INTO `transmog_items` (`entry`) VALUES('100201'); +INSERT INTO `transmog_items` (`entry`) VALUES('100202'); +INSERT INTO `transmog_items` (`entry`) VALUES('100203'); +INSERT INTO `transmog_items` (`entry`) VALUES('100209'); +INSERT INTO `transmog_items` (`entry`) VALUES('100210'); +INSERT INTO `transmog_items` (`entry`) VALUES('100236'); +INSERT INTO `transmog_items` (`entry`) VALUES('100237'); +INSERT INTO `transmog_items` (`entry`) VALUES('100238'); +INSERT INTO `transmog_items` (`entry`) VALUES('100239'); +INSERT INTO `transmog_items` (`entry`) VALUES('100285'); +INSERT INTO `transmog_items` (`entry`) VALUES('100286'); +INSERT INTO `transmog_items` (`entry`) VALUES('100287'); +INSERT INTO `transmog_items` (`entry`) VALUES('100710'); +INSERT INTO `transmog_items` (`entry`) VALUES('100711'); +INSERT INTO `transmog_items` (`entry`) VALUES('100714'); +INSERT INTO `transmog_items` (`entry`) VALUES('100718'); +INSERT INTO `transmog_items` (`entry`) VALUES('100719'); +INSERT INTO `transmog_items` (`entry`) VALUES('100720'); +INSERT INTO `transmog_items` (`entry`) VALUES('100756'); +INSERT INTO `transmog_items` (`entry`) VALUES('100763'); +INSERT INTO `transmog_items` (`entry`) VALUES('100766'); +INSERT INTO `transmog_items` (`entry`) VALUES('100776'); +INSERT INTO `transmog_items` (`entry`) VALUES('100781'); +INSERT INTO `transmog_items` (`entry`) VALUES('100789'); +INSERT INTO `transmog_items` (`entry`) VALUES('100792'); +INSERT INTO `transmog_items` (`entry`) VALUES('100793'); +INSERT INTO `transmog_items` (`entry`) VALUES('100794'); +INSERT INTO `transmog_items` (`entry`) VALUES('100795'); +INSERT INTO `transmog_items` (`entry`) VALUES('100796'); +INSERT INTO `transmog_items` (`entry`) VALUES('100797'); +INSERT INTO `transmog_items` (`entry`) VALUES('100798'); +INSERT INTO `transmog_items` (`entry`) VALUES('100799'); +INSERT INTO `transmog_items` (`entry`) VALUES('100810'); +INSERT INTO `transmog_items` (`entry`) VALUES('100816'); +INSERT INTO `transmog_items` (`entry`) VALUES('100820'); +INSERT INTO `transmog_items` (`entry`) VALUES('100821'); +INSERT INTO `transmog_items` (`entry`) VALUES('100827'); +INSERT INTO `transmog_items` (`entry`) VALUES('100832'); +INSERT INTO `transmog_items` (`entry`) VALUES('100837'); +INSERT INTO `transmog_items` (`entry`) VALUES('100838'); +INSERT INTO `transmog_items` (`entry`) VALUES('100839'); +INSERT INTO `transmog_items` (`entry`) VALUES('100840'); +INSERT INTO `transmog_items` (`entry`) VALUES('100843'); +INSERT INTO `transmog_items` (`entry`) VALUES('100844'); +INSERT INTO `transmog_items` (`entry`) VALUES('100845'); +INSERT INTO `transmog_items` (`entry`) VALUES('100846'); +INSERT INTO `transmog_items` (`entry`) VALUES('100847'); +INSERT INTO `transmog_items` (`entry`) VALUES('100848'); +INSERT INTO `transmog_items` (`entry`) VALUES('100849'); +INSERT INTO `transmog_items` (`entry`) VALUES('100850'); +INSERT INTO `transmog_items` (`entry`) VALUES('100852'); +INSERT INTO `transmog_items` (`entry`) VALUES('100860'); +INSERT INTO `transmog_items` (`entry`) VALUES('100865'); +INSERT INTO `transmog_items` (`entry`) VALUES('100867'); +INSERT INTO `transmog_items` (`entry`) VALUES('100868'); +INSERT INTO `transmog_items` (`entry`) VALUES('100870'); +INSERT INTO `transmog_items` (`entry`) VALUES('100872'); +INSERT INTO `transmog_items` (`entry`) VALUES('100876'); +INSERT INTO `transmog_items` (`entry`) VALUES('100888'); +INSERT INTO `transmog_items` (`entry`) VALUES('100892'); +INSERT INTO `transmog_items` (`entry`) VALUES('100897'); +INSERT INTO `transmog_items` (`entry`) VALUES('100899'); +INSERT INTO `transmog_items` (`entry`) VALUES('100914'); +INSERT INTO `transmog_items` (`entry`) VALUES('100920'); +INSERT INTO `transmog_items` (`entry`) VALUES('100925'); +INSERT INTO `transmog_items` (`entry`) VALUES('100926'); +INSERT INTO `transmog_items` (`entry`) VALUES('100936'); +INSERT INTO `transmog_items` (`entry`) VALUES('100940'); +INSERT INTO `transmog_items` (`entry`) VALUES('100983'); +INSERT INTO `transmog_items` (`entry`) VALUES('101009'); +INSERT INTO `transmog_items` (`entry`) VALUES('101121'); +INSERT INTO `transmog_items` (`entry`) VALUES('101154'); +INSERT INTO `transmog_items` (`entry`) VALUES('101158'); +INSERT INTO `transmog_items` (`entry`) VALUES('101166'); +INSERT INTO `transmog_items` (`entry`) VALUES('101167'); +INSERT INTO `transmog_items` (`entry`) VALUES('101168'); +INSERT INTO `transmog_items` (`entry`) VALUES('101169'); +INSERT INTO `transmog_items` (`entry`) VALUES('101171'); +INSERT INTO `transmog_items` (`entry`) VALUES('101173'); +INSERT INTO `transmog_items` (`entry`) VALUES('101182'); +INSERT INTO `transmog_items` (`entry`) VALUES('101183'); +INSERT INTO `transmog_items` (`entry`) VALUES('101190'); +INSERT INTO `transmog_items` (`entry`) VALUES('101193'); +INSERT INTO `transmog_items` (`entry`) VALUES('101196'); +INSERT INTO `transmog_items` (`entry`) VALUES('101200'); +INSERT INTO `transmog_items` (`entry`) VALUES('101201'); +INSERT INTO `transmog_items` (`entry`) VALUES('101202'); +INSERT INTO `transmog_items` (`entry`) VALUES('101203'); +INSERT INTO `transmog_items` (`entry`) VALUES('101204'); +INSERT INTO `transmog_items` (`entry`) VALUES('101207'); +INSERT INTO `transmog_items` (`entry`) VALUES('101211'); +INSERT INTO `transmog_items` (`entry`) VALUES('101213'); +INSERT INTO `transmog_items` (`entry`) VALUES('101214'); +INSERT INTO `transmog_items` (`entry`) VALUES('101215'); +INSERT INTO `transmog_items` (`entry`) VALUES('101220'); +INSERT INTO `transmog_items` (`entry`) VALUES('101263'); +INSERT INTO `transmog_items` (`entry`) VALUES('101270'); +INSERT INTO `transmog_items` (`entry`) VALUES('101273'); +INSERT INTO `transmog_items` (`entry`) VALUES('101275'); +INSERT INTO `transmog_items` (`entry`) VALUES('101276'); +INSERT INTO `transmog_items` (`entry`) VALUES('101280'); +INSERT INTO `transmog_items` (`entry`) VALUES('101282'); +INSERT INTO `transmog_items` (`entry`) VALUES('101287'); +INSERT INTO `transmog_items` (`entry`) VALUES('101296'); +INSERT INTO `transmog_items` (`entry`) VALUES('101297'); +INSERT INTO `transmog_items` (`entry`) VALUES('101299'); +INSERT INTO `transmog_items` (`entry`) VALUES('101302'); +INSERT INTO `transmog_items` (`entry`) VALUES('101303'); +INSERT INTO `transmog_items` (`entry`) VALUES('101304'); +INSERT INTO `transmog_items` (`entry`) VALUES('101306'); +INSERT INTO `transmog_items` (`entry`) VALUES('101310'); +INSERT INTO `transmog_items` (`entry`) VALUES('101314'); +INSERT INTO `transmog_items` (`entry`) VALUES('101318'); +INSERT INTO `transmog_items` (`entry`) VALUES('101351'); +INSERT INTO `transmog_items` (`entry`) VALUES('101355'); +INSERT INTO `transmog_items` (`entry`) VALUES('101359'); +INSERT INTO `transmog_items` (`entry`) VALUES('101360'); +INSERT INTO `transmog_items` (`entry`) VALUES('101364'); +INSERT INTO `transmog_items` (`entry`) VALUES('101366'); +INSERT INTO `transmog_items` (`entry`) VALUES('101367'); +INSERT INTO `transmog_items` (`entry`) VALUES('101368'); +INSERT INTO `transmog_items` (`entry`) VALUES('101369'); +INSERT INTO `transmog_items` (`entry`) VALUES('101370'); +INSERT INTO `transmog_items` (`entry`) VALUES('101372'); +INSERT INTO `transmog_items` (`entry`) VALUES('101374'); +INSERT INTO `transmog_items` (`entry`) VALUES('101376'); +INSERT INTO `transmog_items` (`entry`) VALUES('101377'); +INSERT INTO `transmog_items` (`entry`) VALUES('101378'); +INSERT INTO `transmog_items` (`entry`) VALUES('101380'); +INSERT INTO `transmog_items` (`entry`) VALUES('101382'); +INSERT INTO `transmog_items` (`entry`) VALUES('101386'); +INSERT INTO `transmog_items` (`entry`) VALUES('101389'); +INSERT INTO `transmog_items` (`entry`) VALUES('101394'); +INSERT INTO `transmog_items` (`entry`) VALUES('101395'); +INSERT INTO `transmog_items` (`entry`) VALUES('101396'); +INSERT INTO `transmog_items` (`entry`) VALUES('101406'); +INSERT INTO `transmog_items` (`entry`) VALUES('101415'); +INSERT INTO `transmog_items` (`entry`) VALUES('101417'); +INSERT INTO `transmog_items` (`entry`) VALUES('101418'); +INSERT INTO `transmog_items` (`entry`) VALUES('101419'); +INSERT INTO `transmog_items` (`entry`) VALUES('101420'); +INSERT INTO `transmog_items` (`entry`) VALUES('101421'); +INSERT INTO `transmog_items` (`entry`) VALUES('101422'); +INSERT INTO `transmog_items` (`entry`) VALUES('101423'); +INSERT INTO `transmog_items` (`entry`) VALUES('101425'); +INSERT INTO `transmog_items` (`entry`) VALUES('101427'); +INSERT INTO `transmog_items` (`entry`) VALUES('101429'); +INSERT INTO `transmog_items` (`entry`) VALUES('101430'); +INSERT INTO `transmog_items` (`entry`) VALUES('101431'); +INSERT INTO `transmog_items` (`entry`) VALUES('101433'); +INSERT INTO `transmog_items` (`entry`) VALUES('101436'); +INSERT INTO `transmog_items` (`entry`) VALUES('101438'); +INSERT INTO `transmog_items` (`entry`) VALUES('101440'); +INSERT INTO `transmog_items` (`entry`) VALUES('101445'); +INSERT INTO `transmog_items` (`entry`) VALUES('101446'); +INSERT INTO `transmog_items` (`entry`) VALUES('101448'); +INSERT INTO `transmog_items` (`entry`) VALUES('101455'); +INSERT INTO `transmog_items` (`entry`) VALUES('101457'); +INSERT INTO `transmog_items` (`entry`) VALUES('101461'); +INSERT INTO `transmog_items` (`entry`) VALUES('101465'); +INSERT INTO `transmog_items` (`entry`) VALUES('101479'); +INSERT INTO `transmog_items` (`entry`) VALUES('101480'); +INSERT INTO `transmog_items` (`entry`) VALUES('101483'); +INSERT INTO `transmog_items` (`entry`) VALUES('101485'); +INSERT INTO `transmog_items` (`entry`) VALUES('101486'); +INSERT INTO `transmog_items` (`entry`) VALUES('101488'); +INSERT INTO `transmog_items` (`entry`) VALUES('101489'); +INSERT INTO `transmog_items` (`entry`) VALUES('101495'); +INSERT INTO `transmog_items` (`entry`) VALUES('101497'); +INSERT INTO `transmog_items` (`entry`) VALUES('101498'); +INSERT INTO `transmog_items` (`entry`) VALUES('101499'); +INSERT INTO `transmog_items` (`entry`) VALUES('101501'); +INSERT INTO `transmog_items` (`entry`) VALUES('101502'); +INSERT INTO `transmog_items` (`entry`) VALUES('101503'); +INSERT INTO `transmog_items` (`entry`) VALUES('101504'); +INSERT INTO `transmog_items` (`entry`) VALUES('101505'); +INSERT INTO `transmog_items` (`entry`) VALUES('101506'); +INSERT INTO `transmog_items` (`entry`) VALUES('101507'); +INSERT INTO `transmog_items` (`entry`) VALUES('101509'); +INSERT INTO `transmog_items` (`entry`) VALUES('101510'); +INSERT INTO `transmog_items` (`entry`) VALUES('101512'); +INSERT INTO `transmog_items` (`entry`) VALUES('101521'); +INSERT INTO `transmog_items` (`entry`) VALUES('101522'); +INSERT INTO `transmog_items` (`entry`) VALUES('101547'); +INSERT INTO `transmog_items` (`entry`) VALUES('101557'); +INSERT INTO `transmog_items` (`entry`) VALUES('101560'); +INSERT INTO `transmog_items` (`entry`) VALUES('101561'); +INSERT INTO `transmog_items` (`entry`) VALUES('101608'); +INSERT INTO `transmog_items` (`entry`) VALUES('101624'); +INSERT INTO `transmog_items` (`entry`) VALUES('101639'); +INSERT INTO `transmog_items` (`entry`) VALUES('101640'); +INSERT INTO `transmog_items` (`entry`) VALUES('101659'); +INSERT INTO `transmog_items` (`entry`) VALUES('101677'); +INSERT INTO `transmog_items` (`entry`) VALUES('101678'); +INSERT INTO `transmog_items` (`entry`) VALUES('101680'); +INSERT INTO `transmog_items` (`entry`) VALUES('101715'); +INSERT INTO `transmog_items` (`entry`) VALUES('101716'); +INSERT INTO `transmog_items` (`entry`) VALUES('101717'); +INSERT INTO `transmog_items` (`entry`) VALUES('101718'); +INSERT INTO `transmog_items` (`entry`) VALUES('101721'); +INSERT INTO `transmog_items` (`entry`) VALUES('101726'); +INSERT INTO `transmog_items` (`entry`) VALUES('101730'); +INSERT INTO `transmog_items` (`entry`) VALUES('101731'); +INSERT INTO `transmog_items` (`entry`) VALUES('101732'); +INSERT INTO `transmog_items` (`entry`) VALUES('101733'); +INSERT INTO `transmog_items` (`entry`) VALUES('101734'); +INSERT INTO `transmog_items` (`entry`) VALUES('101735'); +INSERT INTO `transmog_items` (`entry`) VALUES('101737'); +INSERT INTO `transmog_items` (`entry`) VALUES('101738'); +INSERT INTO `transmog_items` (`entry`) VALUES('101739'); +INSERT INTO `transmog_items` (`entry`) VALUES('101740'); +INSERT INTO `transmog_items` (`entry`) VALUES('101741'); +INSERT INTO `transmog_items` (`entry`) VALUES('101742'); +INSERT INTO `transmog_items` (`entry`) VALUES('101743'); +INSERT INTO `transmog_items` (`entry`) VALUES('101744'); +INSERT INTO `transmog_items` (`entry`) VALUES('101745'); +INSERT INTO `transmog_items` (`entry`) VALUES('101746'); +INSERT INTO `transmog_items` (`entry`) VALUES('101747'); +INSERT INTO `transmog_items` (`entry`) VALUES('101748'); +INSERT INTO `transmog_items` (`entry`) VALUES('101749'); +INSERT INTO `transmog_items` (`entry`) VALUES('101750'); +INSERT INTO `transmog_items` (`entry`) VALUES('101751'); +INSERT INTO `transmog_items` (`entry`) VALUES('101752'); +INSERT INTO `transmog_items` (`entry`) VALUES('101753'); +INSERT INTO `transmog_items` (`entry`) VALUES('101754'); +INSERT INTO `transmog_items` (`entry`) VALUES('101755'); +INSERT INTO `transmog_items` (`entry`) VALUES('101756'); +INSERT INTO `transmog_items` (`entry`) VALUES('101757'); +INSERT INTO `transmog_items` (`entry`) VALUES('101758'); +INSERT INTO `transmog_items` (`entry`) VALUES('101759'); +INSERT INTO `transmog_items` (`entry`) VALUES('101760'); +INSERT INTO `transmog_items` (`entry`) VALUES('101761'); +INSERT INTO `transmog_items` (`entry`) VALUES('101764'); +INSERT INTO `transmog_items` (`entry`) VALUES('101766'); +INSERT INTO `transmog_items` (`entry`) VALUES('101767'); +INSERT INTO `transmog_items` (`entry`) VALUES('101768'); +INSERT INTO `transmog_items` (`entry`) VALUES('101769'); +INSERT INTO `transmog_items` (`entry`) VALUES('101770'); +INSERT INTO `transmog_items` (`entry`) VALUES('101772'); +INSERT INTO `transmog_items` (`entry`) VALUES('101774'); +INSERT INTO `transmog_items` (`entry`) VALUES('101775'); +INSERT INTO `transmog_items` (`entry`) VALUES('101776'); +INSERT INTO `transmog_items` (`entry`) VALUES('101777'); +INSERT INTO `transmog_items` (`entry`) VALUES('101778'); +INSERT INTO `transmog_items` (`entry`) VALUES('101780'); +INSERT INTO `transmog_items` (`entry`) VALUES('101782'); +INSERT INTO `transmog_items` (`entry`) VALUES('101783'); +INSERT INTO `transmog_items` (`entry`) VALUES('101784'); +INSERT INTO `transmog_items` (`entry`) VALUES('101785'); +INSERT INTO `transmog_items` (`entry`) VALUES('101786'); +INSERT INTO `transmog_items` (`entry`) VALUES('101787'); +INSERT INTO `transmog_items` (`entry`) VALUES('101788'); +INSERT INTO `transmog_items` (`entry`) VALUES('101789'); +INSERT INTO `transmog_items` (`entry`) VALUES('101790'); +INSERT INTO `transmog_items` (`entry`) VALUES('101791'); +INSERT INTO `transmog_items` (`entry`) VALUES('101792'); +INSERT INTO `transmog_items` (`entry`) VALUES('101793'); +INSERT INTO `transmog_items` (`entry`) VALUES('101794'); +INSERT INTO `transmog_items` (`entry`) VALUES('101795'); +INSERT INTO `transmog_items` (`entry`) VALUES('101796'); +INSERT INTO `transmog_items` (`entry`) VALUES('101797'); +INSERT INTO `transmog_items` (`entry`) VALUES('101798'); +INSERT INTO `transmog_items` (`entry`) VALUES('101799'); +INSERT INTO `transmog_items` (`entry`) VALUES('101800'); +INSERT INTO `transmog_items` (`entry`) VALUES('101801'); +INSERT INTO `transmog_items` (`entry`) VALUES('101802'); +INSERT INTO `transmog_items` (`entry`) VALUES('101803'); +INSERT INTO `transmog_items` (`entry`) VALUES('101804'); +INSERT INTO `transmog_items` (`entry`) VALUES('101805'); +INSERT INTO `transmog_items` (`entry`) VALUES('101806'); +INSERT INTO `transmog_items` (`entry`) VALUES('101807'); +INSERT INTO `transmog_items` (`entry`) VALUES('101808'); +INSERT INTO `transmog_items` (`entry`) VALUES('101809'); +INSERT INTO `transmog_items` (`entry`) VALUES('101810'); +INSERT INTO `transmog_items` (`entry`) VALUES('101812'); +INSERT INTO `transmog_items` (`entry`) VALUES('101815'); +INSERT INTO `transmog_items` (`entry`) VALUES('101823'); +INSERT INTO `transmog_items` (`entry`) VALUES('101824'); +INSERT INTO `transmog_items` (`entry`) VALUES('101825'); +INSERT INTO `transmog_items` (`entry`) VALUES('101828'); +INSERT INTO `transmog_items` (`entry`) VALUES('101832'); +INSERT INTO `transmog_items` (`entry`) VALUES('101835'); +INSERT INTO `transmog_items` (`entry`) VALUES('101836'); +INSERT INTO `transmog_items` (`entry`) VALUES('101839'); +INSERT INTO `transmog_items` (`entry`) VALUES('101840'); +INSERT INTO `transmog_items` (`entry`) VALUES('101843'); +INSERT INTO `transmog_items` (`entry`) VALUES('101844'); +INSERT INTO `transmog_items` (`entry`) VALUES('101845'); +INSERT INTO `transmog_items` (`entry`) VALUES('101846'); +INSERT INTO `transmog_items` (`entry`) VALUES('101849'); +INSERT INTO `transmog_items` (`entry`) VALUES('101850'); +INSERT INTO `transmog_items` (`entry`) VALUES('101852'); +INSERT INTO `transmog_items` (`entry`) VALUES('101853'); +INSERT INTO `transmog_items` (`entry`) VALUES('101893'); +INSERT INTO `transmog_items` (`entry`) VALUES('101913'); +INSERT INTO `transmog_items` (`entry`) VALUES('101917'); +INSERT INTO `transmog_items` (`entry`) VALUES('101926'); +INSERT INTO `transmog_items` (`entry`) VALUES('101929'); +INSERT INTO `transmog_items` (`entry`) VALUES('101930'); +INSERT INTO `transmog_items` (`entry`) VALUES('101934'); +INSERT INTO `transmog_items` (`entry`) VALUES('101935'); +INSERT INTO `transmog_items` (`entry`) VALUES('101936'); +INSERT INTO `transmog_items` (`entry`) VALUES('101938'); +INSERT INTO `transmog_items` (`entry`) VALUES('101943'); +INSERT INTO `transmog_items` (`entry`) VALUES('101944'); +INSERT INTO `transmog_items` (`entry`) VALUES('101945'); +INSERT INTO `transmog_items` (`entry`) VALUES('101955'); +INSERT INTO `transmog_items` (`entry`) VALUES('101958'); +INSERT INTO `transmog_items` (`entry`) VALUES('101959'); +INSERT INTO `transmog_items` (`entry`) VALUES('101965'); +INSERT INTO `transmog_items` (`entry`) VALUES('101974'); +INSERT INTO `transmog_items` (`entry`) VALUES('101978'); +INSERT INTO `transmog_items` (`entry`) VALUES('101979'); +INSERT INTO `transmog_items` (`entry`) VALUES('101981'); +INSERT INTO `transmog_items` (`entry`) VALUES('101988'); +INSERT INTO `transmog_items` (`entry`) VALUES('101997'); +INSERT INTO `transmog_items` (`entry`) VALUES('102015'); +INSERT INTO `transmog_items` (`entry`) VALUES('102016'); +INSERT INTO `transmog_items` (`entry`) VALUES('102017'); +INSERT INTO `transmog_items` (`entry`) VALUES('102020'); +INSERT INTO `transmog_items` (`entry`) VALUES('102021'); +INSERT INTO `transmog_items` (`entry`) VALUES('102025'); +INSERT INTO `transmog_items` (`entry`) VALUES('102028'); +INSERT INTO `transmog_items` (`entry`) VALUES('102032'); +INSERT INTO `transmog_items` (`entry`) VALUES('102033'); +INSERT INTO `transmog_items` (`entry`) VALUES('102034'); +INSERT INTO `transmog_items` (`entry`) VALUES('102036'); +INSERT INTO `transmog_items` (`entry`) VALUES('102037'); +INSERT INTO `transmog_items` (`entry`) VALUES('102040'); +INSERT INTO `transmog_items` (`entry`) VALUES('102041'); +INSERT INTO `transmog_items` (`entry`) VALUES('102048'); +INSERT INTO `transmog_items` (`entry`) VALUES('102055'); +INSERT INTO `transmog_items` (`entry`) VALUES('102059'); +INSERT INTO `transmog_items` (`entry`) VALUES('102064'); +INSERT INTO `transmog_items` (`entry`) VALUES('102069'); +INSERT INTO `transmog_items` (`entry`) VALUES('102075'); +INSERT INTO `transmog_items` (`entry`) VALUES('102079'); +INSERT INTO `transmog_items` (`entry`) VALUES('102087'); +INSERT INTO `transmog_items` (`entry`) VALUES('102088'); +INSERT INTO `transmog_items` (`entry`) VALUES('102089'); +INSERT INTO `transmog_items` (`entry`) VALUES('102092'); +INSERT INTO `transmog_items` (`entry`) VALUES('102098'); +INSERT INTO `transmog_items` (`entry`) VALUES('102099'); +INSERT INTO `transmog_items` (`entry`) VALUES('102100'); +INSERT INTO `transmog_items` (`entry`) VALUES('102108'); +INSERT INTO `transmog_items` (`entry`) VALUES('102109'); +INSERT INTO `transmog_items` (`entry`) VALUES('102110'); +INSERT INTO `transmog_items` (`entry`) VALUES('102112'); +INSERT INTO `transmog_items` (`entry`) VALUES('102114'); +INSERT INTO `transmog_items` (`entry`) VALUES('102117'); +INSERT INTO `transmog_items` (`entry`) VALUES('102119'); +INSERT INTO `transmog_items` (`entry`) VALUES('102120'); +INSERT INTO `transmog_items` (`entry`) VALUES('102121'); +INSERT INTO `transmog_items` (`entry`) VALUES('102122'); +INSERT INTO `transmog_items` (`entry`) VALUES('102123'); +INSERT INTO `transmog_items` (`entry`) VALUES('102124'); +INSERT INTO `transmog_items` (`entry`) VALUES('102125'); +INSERT INTO `transmog_items` (`entry`) VALUES('102126'); +INSERT INTO `transmog_items` (`entry`) VALUES('102127'); +INSERT INTO `transmog_items` (`entry`) VALUES('102129'); +INSERT INTO `transmog_items` (`entry`) VALUES('102130'); +INSERT INTO `transmog_items` (`entry`) VALUES('102133'); +INSERT INTO `transmog_items` (`entry`) VALUES('102137'); +INSERT INTO `transmog_items` (`entry`) VALUES('102138'); +INSERT INTO `transmog_items` (`entry`) VALUES('102139'); +INSERT INTO `transmog_items` (`entry`) VALUES('102140'); +INSERT INTO `transmog_items` (`entry`) VALUES('102141'); +INSERT INTO `transmog_items` (`entry`) VALUES('102142'); +INSERT INTO `transmog_items` (`entry`) VALUES('102143'); +INSERT INTO `transmog_items` (`entry`) VALUES('102144'); +INSERT INTO `transmog_items` (`entry`) VALUES('102145'); +INSERT INTO `transmog_items` (`entry`) VALUES('102146'); +INSERT INTO `transmog_items` (`entry`) VALUES('102148'); +INSERT INTO `transmog_items` (`entry`) VALUES('102149'); +INSERT INTO `transmog_items` (`entry`) VALUES('102150'); +INSERT INTO `transmog_items` (`entry`) VALUES('102151'); +INSERT INTO `transmog_items` (`entry`) VALUES('102152'); +INSERT INTO `transmog_items` (`entry`) VALUES('102153'); +INSERT INTO `transmog_items` (`entry`) VALUES('102156'); +INSERT INTO `transmog_items` (`entry`) VALUES('102158'); +INSERT INTO `transmog_items` (`entry`) VALUES('102159'); +INSERT INTO `transmog_items` (`entry`) VALUES('102160'); +INSERT INTO `transmog_items` (`entry`) VALUES('102163'); +INSERT INTO `transmog_items` (`entry`) VALUES('102164'); +INSERT INTO `transmog_items` (`entry`) VALUES('102165'); +INSERT INTO `transmog_items` (`entry`) VALUES('102166'); +INSERT INTO `transmog_items` (`entry`) VALUES('102167'); +INSERT INTO `transmog_items` (`entry`) VALUES('102168'); +INSERT INTO `transmog_items` (`entry`) VALUES('102169'); +INSERT INTO `transmog_items` (`entry`) VALUES('102172'); +INSERT INTO `transmog_items` (`entry`) VALUES('102173'); +INSERT INTO `transmog_items` (`entry`) VALUES('102175'); +INSERT INTO `transmog_items` (`entry`) VALUES('102186'); +INSERT INTO `transmog_items` (`entry`) VALUES('102194'); +INSERT INTO `transmog_items` (`entry`) VALUES('102195'); +INSERT INTO `transmog_items` (`entry`) VALUES('102203'); +INSERT INTO `transmog_items` (`entry`) VALUES('102207'); +INSERT INTO `transmog_items` (`entry`) VALUES('102208'); +INSERT INTO `transmog_items` (`entry`) VALUES('102209'); +INSERT INTO `transmog_items` (`entry`) VALUES('102210'); +INSERT INTO `transmog_items` (`entry`) VALUES('102211'); +INSERT INTO `transmog_items` (`entry`) VALUES('102212'); +INSERT INTO `transmog_items` (`entry`) VALUES('102213'); +INSERT INTO `transmog_items` (`entry`) VALUES('102214'); +INSERT INTO `transmog_items` (`entry`) VALUES('102215'); +INSERT INTO `transmog_items` (`entry`) VALUES('102216'); +INSERT INTO `transmog_items` (`entry`) VALUES('102217'); +INSERT INTO `transmog_items` (`entry`) VALUES('102218'); +INSERT INTO `transmog_items` (`entry`) VALUES('102219'); +INSERT INTO `transmog_items` (`entry`) VALUES('102220'); +INSERT INTO `transmog_items` (`entry`) VALUES('102221'); +INSERT INTO `transmog_items` (`entry`) VALUES('102222'); +INSERT INTO `transmog_items` (`entry`) VALUES('102224'); +INSERT INTO `transmog_items` (`entry`) VALUES('102225'); +INSERT INTO `transmog_items` (`entry`) VALUES('102227'); +INSERT INTO `transmog_items` (`entry`) VALUES('102230'); +INSERT INTO `transmog_items` (`entry`) VALUES('102231'); +INSERT INTO `transmog_items` (`entry`) VALUES('102232'); +INSERT INTO `transmog_items` (`entry`) VALUES('102233'); +INSERT INTO `transmog_items` (`entry`) VALUES('102234'); +INSERT INTO `transmog_items` (`entry`) VALUES('102235'); +INSERT INTO `transmog_items` (`entry`) VALUES('102236'); +INSERT INTO `transmog_items` (`entry`) VALUES('102237'); +INSERT INTO `transmog_items` (`entry`) VALUES('102238'); +INSERT INTO `transmog_items` (`entry`) VALUES('102240'); +INSERT INTO `transmog_items` (`entry`) VALUES('102241'); +INSERT INTO `transmog_items` (`entry`) VALUES('102243'); +INSERT INTO `transmog_items` (`entry`) VALUES('102245'); +INSERT INTO `transmog_items` (`entry`) VALUES('102249'); +INSERT INTO `transmog_items` (`entry`) VALUES('102256'); +INSERT INTO `transmog_items` (`entry`) VALUES('102259'); +INSERT INTO `transmog_items` (`entry`) VALUES('102264'); +INSERT INTO `transmog_items` (`entry`) VALUES('102266'); +INSERT INTO `transmog_items` (`entry`) VALUES('102267'); +INSERT INTO `transmog_items` (`entry`) VALUES('102273'); +INSERT INTO `transmog_items` (`entry`) VALUES('102274'); +INSERT INTO `transmog_items` (`entry`) VALUES('102276'); +INSERT INTO `transmog_items` (`entry`) VALUES('102277'); +INSERT INTO `transmog_items` (`entry`) VALUES('102278'); +INSERT INTO `transmog_items` (`entry`) VALUES('102283'); +INSERT INTO `transmog_items` (`entry`) VALUES('102284'); +INSERT INTO `transmog_items` (`entry`) VALUES('102291'); +INSERT INTO `transmog_items` (`entry`) VALUES('102292'); +INSERT INTO `transmog_items` (`entry`) VALUES('102299'); +INSERT INTO `transmog_items` (`entry`) VALUES('102300'); +INSERT INTO `transmog_items` (`entry`) VALUES('102302'); +INSERT INTO `transmog_items` (`entry`) VALUES('102303'); +INSERT INTO `transmog_items` (`entry`) VALUES('102307'); +INSERT INTO `transmog_items` (`entry`) VALUES('102308'); +INSERT INTO `transmog_items` (`entry`) VALUES('102309'); +INSERT INTO `transmog_items` (`entry`) VALUES('102310'); +INSERT INTO `transmog_items` (`entry`) VALUES('102311'); +INSERT INTO `transmog_items` (`entry`) VALUES('102312'); +INSERT INTO `transmog_items` (`entry`) VALUES('102314'); +INSERT INTO `transmog_items` (`entry`) VALUES('102315'); +INSERT INTO `transmog_items` (`entry`) VALUES('102316'); +INSERT INTO `transmog_items` (`entry`) VALUES('102317'); +INSERT INTO `transmog_items` (`entry`) VALUES('102326'); +INSERT INTO `transmog_items` (`entry`) VALUES('102327'); +INSERT INTO `transmog_items` (`entry`) VALUES('102362'); +INSERT INTO `transmog_items` (`entry`) VALUES('102364'); +INSERT INTO `transmog_items` (`entry`) VALUES('102366'); +INSERT INTO `transmog_items` (`entry`) VALUES('102367'); +INSERT INTO `transmog_items` (`entry`) VALUES('102369'); +INSERT INTO `transmog_items` (`entry`) VALUES('102370'); +INSERT INTO `transmog_items` (`entry`) VALUES('102371'); +INSERT INTO `transmog_items` (`entry`) VALUES('102372'); +INSERT INTO `transmog_items` (`entry`) VALUES('102373'); +INSERT INTO `transmog_items` (`entry`) VALUES('102374'); +INSERT INTO `transmog_items` (`entry`) VALUES('102375'); +INSERT INTO `transmog_items` (`entry`) VALUES('102376'); +INSERT INTO `transmog_items` (`entry`) VALUES('102377'); +INSERT INTO `transmog_items` (`entry`) VALUES('102379'); +INSERT INTO `transmog_items` (`entry`) VALUES('102380'); +INSERT INTO `transmog_items` (`entry`) VALUES('102381'); +INSERT INTO `transmog_items` (`entry`) VALUES('102383'); +INSERT INTO `transmog_items` (`entry`) VALUES('102384'); +INSERT INTO `transmog_items` (`entry`) VALUES('102385'); +INSERT INTO `transmog_items` (`entry`) VALUES('102386'); +INSERT INTO `transmog_items` (`entry`) VALUES('102387'); +INSERT INTO `transmog_items` (`entry`) VALUES('102388'); +INSERT INTO `transmog_items` (`entry`) VALUES('102389'); +INSERT INTO `transmog_items` (`entry`) VALUES('102390'); +INSERT INTO `transmog_items` (`entry`) VALUES('102391'); +INSERT INTO `transmog_items` (`entry`) VALUES('102392'); +INSERT INTO `transmog_items` (`entry`) VALUES('102393'); +INSERT INTO `transmog_items` (`entry`) VALUES('102394'); +INSERT INTO `transmog_items` (`entry`) VALUES('102395'); +INSERT INTO `transmog_items` (`entry`) VALUES('102396'); +INSERT INTO `transmog_items` (`entry`) VALUES('102397'); +INSERT INTO `transmog_items` (`entry`) VALUES('102398'); +INSERT INTO `transmog_items` (`entry`) VALUES('102399'); +INSERT INTO `transmog_items` (`entry`) VALUES('102400'); +INSERT INTO `transmog_items` (`entry`) VALUES('102401'); +INSERT INTO `transmog_items` (`entry`) VALUES('102402'); +INSERT INTO `transmog_items` (`entry`) VALUES('102403'); +INSERT INTO `transmog_items` (`entry`) VALUES('102417'); +INSERT INTO `transmog_items` (`entry`) VALUES('102418'); +INSERT INTO `transmog_items` (`entry`) VALUES('102419'); +INSERT INTO `transmog_items` (`entry`) VALUES('102420'); +INSERT INTO `transmog_items` (`entry`) VALUES('102421'); +INSERT INTO `transmog_items` (`entry`) VALUES('102422'); +INSERT INTO `transmog_items` (`entry`) VALUES('102423'); +INSERT INTO `transmog_items` (`entry`) VALUES('102424'); +INSERT INTO `transmog_items` (`entry`) VALUES('102425'); +INSERT INTO `transmog_items` (`entry`) VALUES('102426'); +INSERT INTO `transmog_items` (`entry`) VALUES('102427'); +INSERT INTO `transmog_items` (`entry`) VALUES('102428'); +INSERT INTO `transmog_items` (`entry`) VALUES('102429'); +INSERT INTO `transmog_items` (`entry`) VALUES('102431'); +INSERT INTO `transmog_items` (`entry`) VALUES('102432'); +INSERT INTO `transmog_items` (`entry`) VALUES('102434'); +INSERT INTO `transmog_items` (`entry`) VALUES('102435'); +INSERT INTO `transmog_items` (`entry`) VALUES('102437'); +INSERT INTO `transmog_items` (`entry`) VALUES('102438'); +INSERT INTO `transmog_items` (`entry`) VALUES('102440'); +INSERT INTO `transmog_items` (`entry`) VALUES('102441'); +INSERT INTO `transmog_items` (`entry`) VALUES('102442'); +INSERT INTO `transmog_items` (`entry`) VALUES('102443'); +INSERT INTO `transmog_items` (`entry`) VALUES('102444'); +INSERT INTO `transmog_items` (`entry`) VALUES('102445'); +INSERT INTO `transmog_items` (`entry`) VALUES('102446'); +INSERT INTO `transmog_items` (`entry`) VALUES('102448'); +INSERT INTO `transmog_items` (`entry`) VALUES('102451'); +INSERT INTO `transmog_items` (`entry`) VALUES('102463'); +INSERT INTO `transmog_items` (`entry`) VALUES('102464'); +INSERT INTO `transmog_items` (`entry`) VALUES('102465'); +INSERT INTO `transmog_items` (`entry`) VALUES('102467'); +INSERT INTO `transmog_items` (`entry`) VALUES('102468'); +INSERT INTO `transmog_items` (`entry`) VALUES('102469'); +INSERT INTO `transmog_items` (`entry`) VALUES('102470'); +INSERT INTO `transmog_items` (`entry`) VALUES('102471'); +INSERT INTO `transmog_items` (`entry`) VALUES('102472'); +INSERT INTO `transmog_items` (`entry`) VALUES('102473'); +INSERT INTO `transmog_items` (`entry`) VALUES('102474'); +INSERT INTO `transmog_items` (`entry`) VALUES('102475'); +INSERT INTO `transmog_items` (`entry`) VALUES('102479'); +INSERT INTO `transmog_items` (`entry`) VALUES('102483'); +INSERT INTO `transmog_items` (`entry`) VALUES('102484'); +INSERT INTO `transmog_items` (`entry`) VALUES('102485'); +INSERT INTO `transmog_items` (`entry`) VALUES('102491'); +INSERT INTO `transmog_items` (`entry`) VALUES('102492'); +INSERT INTO `transmog_items` (`entry`) VALUES('102494'); +INSERT INTO `transmog_items` (`entry`) VALUES('102499'); +INSERT INTO `transmog_items` (`entry`) VALUES('102500'); +INSERT INTO `transmog_items` (`entry`) VALUES('102502'); +INSERT INTO `transmog_items` (`entry`) VALUES('102504'); +INSERT INTO `transmog_items` (`entry`) VALUES('102505'); +INSERT INTO `transmog_items` (`entry`) VALUES('102506'); +INSERT INTO `transmog_items` (`entry`) VALUES('102507'); +INSERT INTO `transmog_items` (`entry`) VALUES('102508'); +INSERT INTO `transmog_items` (`entry`) VALUES('102509'); +INSERT INTO `transmog_items` (`entry`) VALUES('102510'); +INSERT INTO `transmog_items` (`entry`) VALUES('102511'); +INSERT INTO `transmog_items` (`entry`) VALUES('102523'); +INSERT INTO `transmog_items` (`entry`) VALUES('102524'); +INSERT INTO `transmog_items` (`entry`) VALUES('102526'); +INSERT INTO `transmog_items` (`entry`) VALUES('102531'); +INSERT INTO `transmog_items` (`entry`) VALUES('102532'); +INSERT INTO `transmog_items` (`entry`) VALUES('102534'); +INSERT INTO `transmog_items` (`entry`) VALUES('102545'); +INSERT INTO `transmog_items` (`entry`) VALUES('102546'); +INSERT INTO `transmog_items` (`entry`) VALUES('102547'); +INSERT INTO `transmog_items` (`entry`) VALUES('102564'); +INSERT INTO `transmog_items` (`entry`) VALUES('102566'); +INSERT INTO `transmog_items` (`entry`) VALUES('102567'); +INSERT INTO `transmog_items` (`entry`) VALUES('102568'); +INSERT INTO `transmog_items` (`entry`) VALUES('102569'); +INSERT INTO `transmog_items` (`entry`) VALUES('102570'); +INSERT INTO `transmog_items` (`entry`) VALUES('102571'); +INSERT INTO `transmog_items` (`entry`) VALUES('102572'); +INSERT INTO `transmog_items` (`entry`) VALUES('102578'); +INSERT INTO `transmog_items` (`entry`) VALUES('102580'); +INSERT INTO `transmog_items` (`entry`) VALUES('102582'); +INSERT INTO `transmog_items` (`entry`) VALUES('102583'); +INSERT INTO `transmog_items` (`entry`) VALUES('102584'); +INSERT INTO `transmog_items` (`entry`) VALUES('102585'); +INSERT INTO `transmog_items` (`entry`) VALUES('102586'); +INSERT INTO `transmog_items` (`entry`) VALUES('102612'); +INSERT INTO `transmog_items` (`entry`) VALUES('102613'); +INSERT INTO `transmog_items` (`entry`) VALUES('102614'); +INSERT INTO `transmog_items` (`entry`) VALUES('102615'); +INSERT INTO `transmog_items` (`entry`) VALUES('102616'); +INSERT INTO `transmog_items` (`entry`) VALUES('102617'); +INSERT INTO `transmog_items` (`entry`) VALUES('102618'); +INSERT INTO `transmog_items` (`entry`) VALUES('102620'); +INSERT INTO `transmog_items` (`entry`) VALUES('102621'); +INSERT INTO `transmog_items` (`entry`) VALUES('102622'); +INSERT INTO `transmog_items` (`entry`) VALUES('102623'); +INSERT INTO `transmog_items` (`entry`) VALUES('102624'); +INSERT INTO `transmog_items` (`entry`) VALUES('102632'); +INSERT INTO `transmog_items` (`entry`) VALUES('102635'); +INSERT INTO `transmog_items` (`entry`) VALUES('102642'); +INSERT INTO `transmog_items` (`entry`) VALUES('102643'); +INSERT INTO `transmog_items` (`entry`) VALUES('102644'); +INSERT INTO `transmog_items` (`entry`) VALUES('102645'); +INSERT INTO `transmog_items` (`entry`) VALUES('102646'); +INSERT INTO `transmog_items` (`entry`) VALUES('102648'); +INSERT INTO `transmog_items` (`entry`) VALUES('102649'); +INSERT INTO `transmog_items` (`entry`) VALUES('102650'); +INSERT INTO `transmog_items` (`entry`) VALUES('102651'); +INSERT INTO `transmog_items` (`entry`) VALUES('102652'); +INSERT INTO `transmog_items` (`entry`) VALUES('102653'); +INSERT INTO `transmog_items` (`entry`) VALUES('102654'); +INSERT INTO `transmog_items` (`entry`) VALUES('102656'); +INSERT INTO `transmog_items` (`entry`) VALUES('102664'); +INSERT INTO `transmog_items` (`entry`) VALUES('102690'); +INSERT INTO `transmog_items` (`entry`) VALUES('102691'); +INSERT INTO `transmog_items` (`entry`) VALUES('102694'); +INSERT INTO `transmog_items` (`entry`) VALUES('102721'); +INSERT INTO `transmog_items` (`entry`) VALUES('102763'); +INSERT INTO `transmog_items` (`entry`) VALUES('102764'); +INSERT INTO `transmog_items` (`entry`) VALUES('102765'); +INSERT INTO `transmog_items` (`entry`) VALUES('102766'); +INSERT INTO `transmog_items` (`entry`) VALUES('102773'); +INSERT INTO `transmog_items` (`entry`) VALUES('102774'); +INSERT INTO `transmog_items` (`entry`) VALUES('102777'); +INSERT INTO `transmog_items` (`entry`) VALUES('102778'); +INSERT INTO `transmog_items` (`entry`) VALUES('102780'); +INSERT INTO `transmog_items` (`entry`) VALUES('102781'); +INSERT INTO `transmog_items` (`entry`) VALUES('102782'); +INSERT INTO `transmog_items` (`entry`) VALUES('102783'); +INSERT INTO `transmog_items` (`entry`) VALUES('102785'); +INSERT INTO `transmog_items` (`entry`) VALUES('102786'); +INSERT INTO `transmog_items` (`entry`) VALUES('102787'); +INSERT INTO `transmog_items` (`entry`) VALUES('102800'); +INSERT INTO `transmog_items` (`entry`) VALUES('102805'); +INSERT INTO `transmog_items` (`entry`) VALUES('102808'); +INSERT INTO `transmog_items` (`entry`) VALUES('102816'); +INSERT INTO `transmog_items` (`entry`) VALUES('102817'); +INSERT INTO `transmog_items` (`entry`) VALUES('102818'); +INSERT INTO `transmog_items` (`entry`) VALUES('102819'); +INSERT INTO `transmog_items` (`entry`) VALUES('102821'); +INSERT INTO `transmog_items` (`entry`) VALUES('102823'); +INSERT INTO `transmog_items` (`entry`) VALUES('102824'); +INSERT INTO `transmog_items` (`entry`) VALUES('102825'); +INSERT INTO `transmog_items` (`entry`) VALUES('102844'); +INSERT INTO `transmog_items` (`entry`) VALUES('102848'); +INSERT INTO `transmog_items` (`entry`) VALUES('102851'); +INSERT INTO `transmog_items` (`entry`) VALUES('102852'); +INSERT INTO `transmog_items` (`entry`) VALUES('102853'); +INSERT INTO `transmog_items` (`entry`) VALUES('102854'); +INSERT INTO `transmog_items` (`entry`) VALUES('102857'); +INSERT INTO `transmog_items` (`entry`) VALUES('102864'); +INSERT INTO `transmog_items` (`entry`) VALUES('102865'); +INSERT INTO `transmog_items` (`entry`) VALUES('102866'); +INSERT INTO `transmog_items` (`entry`) VALUES('102867'); +INSERT INTO `transmog_items` (`entry`) VALUES('102868'); +INSERT INTO `transmog_items` (`entry`) VALUES('102869'); +INSERT INTO `transmog_items` (`entry`) VALUES('102870'); +INSERT INTO `transmog_items` (`entry`) VALUES('102898'); +INSERT INTO `transmog_items` (`entry`) VALUES('102899'); +INSERT INTO `transmog_items` (`entry`) VALUES('102900'); +INSERT INTO `transmog_items` (`entry`) VALUES('102901'); +INSERT INTO `transmog_items` (`entry`) VALUES('102902'); +INSERT INTO `transmog_items` (`entry`) VALUES('102903'); +INSERT INTO `transmog_items` (`entry`) VALUES('102904'); +INSERT INTO `transmog_items` (`entry`) VALUES('102905'); +INSERT INTO `transmog_items` (`entry`) VALUES('102906'); +INSERT INTO `transmog_items` (`entry`) VALUES('102907'); +INSERT INTO `transmog_items` (`entry`) VALUES('102908'); +INSERT INTO `transmog_items` (`entry`) VALUES('102910'); +INSERT INTO `transmog_items` (`entry`) VALUES('102911'); +INSERT INTO `transmog_items` (`entry`) VALUES('102912'); +INSERT INTO `transmog_items` (`entry`) VALUES('102913'); +INSERT INTO `transmog_items` (`entry`) VALUES('102916'); +INSERT INTO `transmog_items` (`entry`) VALUES('102941'); +INSERT INTO `transmog_items` (`entry`) VALUES('102942'); +INSERT INTO `transmog_items` (`entry`) VALUES('102949'); +INSERT INTO `transmog_items` (`entry`) VALUES('102953'); +INSERT INTO `transmog_items` (`entry`) VALUES('102954'); +INSERT INTO `transmog_items` (`entry`) VALUES('102955'); +INSERT INTO `transmog_items` (`entry`) VALUES('102957'); +INSERT INTO `transmog_items` (`entry`) VALUES('102958'); +INSERT INTO `transmog_items` (`entry`) VALUES('102959'); +INSERT INTO `transmog_items` (`entry`) VALUES('102960'); +INSERT INTO `transmog_items` (`entry`) VALUES('102961'); +INSERT INTO `transmog_items` (`entry`) VALUES('102962'); +INSERT INTO `transmog_items` (`entry`) VALUES('102963'); +INSERT INTO `transmog_items` (`entry`) VALUES('102964'); +INSERT INTO `transmog_items` (`entry`) VALUES('102965'); +INSERT INTO `transmog_items` (`entry`) VALUES('102966'); +INSERT INTO `transmog_items` (`entry`) VALUES('102967'); +INSERT INTO `transmog_items` (`entry`) VALUES('102968'); +INSERT INTO `transmog_items` (`entry`) VALUES('102969'); +INSERT INTO `transmog_items` (`entry`) VALUES('102970'); +INSERT INTO `transmog_items` (`entry`) VALUES('102971'); +INSERT INTO `transmog_items` (`entry`) VALUES('102972'); +INSERT INTO `transmog_items` (`entry`) VALUES('102973'); +INSERT INTO `transmog_items` (`entry`) VALUES('102974'); +INSERT INTO `transmog_items` (`entry`) VALUES('102975'); +INSERT INTO `transmog_items` (`entry`) VALUES('102976'); +INSERT INTO `transmog_items` (`entry`) VALUES('102977'); +INSERT INTO `transmog_items` (`entry`) VALUES('102978'); +INSERT INTO `transmog_items` (`entry`) VALUES('102979'); +INSERT INTO `transmog_items` (`entry`) VALUES('102980'); +INSERT INTO `transmog_items` (`entry`) VALUES('102981'); +INSERT INTO `transmog_items` (`entry`) VALUES('102982'); +INSERT INTO `transmog_items` (`entry`) VALUES('102983'); +INSERT INTO `transmog_items` (`entry`) VALUES('102984'); +INSERT INTO `transmog_items` (`entry`) VALUES('102985'); +INSERT INTO `transmog_items` (`entry`) VALUES('102986'); +INSERT INTO `transmog_items` (`entry`) VALUES('102987'); +INSERT INTO `transmog_items` (`entry`) VALUES('102988'); +INSERT INTO `transmog_items` (`entry`) VALUES('102989'); +INSERT INTO `transmog_items` (`entry`) VALUES('102990'); +INSERT INTO `transmog_items` (`entry`) VALUES('102991'); +INSERT INTO `transmog_items` (`entry`) VALUES('102992'); +INSERT INTO `transmog_items` (`entry`) VALUES('103000'); +INSERT INTO `transmog_items` (`entry`) VALUES('103008'); +INSERT INTO `transmog_items` (`entry`) VALUES('103011'); +INSERT INTO `transmog_items` (`entry`) VALUES('103018'); +INSERT INTO `transmog_items` (`entry`) VALUES('103019'); +INSERT INTO `transmog_items` (`entry`) VALUES('103020'); +INSERT INTO `transmog_items` (`entry`) VALUES('103021'); +INSERT INTO `transmog_items` (`entry`) VALUES('103022'); +INSERT INTO `transmog_items` (`entry`) VALUES('103023'); +INSERT INTO `transmog_items` (`entry`) VALUES('103024'); +INSERT INTO `transmog_items` (`entry`) VALUES('103025'); +INSERT INTO `transmog_items` (`entry`) VALUES('103026'); +INSERT INTO `transmog_items` (`entry`) VALUES('103027'); +INSERT INTO `transmog_items` (`entry`) VALUES('103036'); +INSERT INTO `transmog_items` (`entry`) VALUES('103037'); +INSERT INTO `transmog_items` (`entry`) VALUES('103039'); +INSERT INTO `transmog_items` (`entry`) VALUES('103040'); +INSERT INTO `transmog_items` (`entry`) VALUES('103041'); +INSERT INTO `transmog_items` (`entry`) VALUES('103042'); +INSERT INTO `transmog_items` (`entry`) VALUES('103045'); +INSERT INTO `transmog_items` (`entry`) VALUES('103047'); +INSERT INTO `transmog_items` (`entry`) VALUES('103048'); +INSERT INTO `transmog_items` (`entry`) VALUES('103049'); +INSERT INTO `transmog_items` (`entry`) VALUES('103053'); +INSERT INTO `transmog_items` (`entry`) VALUES('103055'); +INSERT INTO `transmog_items` (`entry`) VALUES('103056'); +INSERT INTO `transmog_items` (`entry`) VALUES('103057'); +INSERT INTO `transmog_items` (`entry`) VALUES('103058'); +INSERT INTO `transmog_items` (`entry`) VALUES('103065'); +INSERT INTO `transmog_items` (`entry`) VALUES('103066'); +INSERT INTO `transmog_items` (`entry`) VALUES('103067'); +INSERT INTO `transmog_items` (`entry`) VALUES('103069'); +INSERT INTO `transmog_items` (`entry`) VALUES('103070'); +INSERT INTO `transmog_items` (`entry`) VALUES('103072'); +INSERT INTO `transmog_items` (`entry`) VALUES('103073'); +INSERT INTO `transmog_items` (`entry`) VALUES('103074'); +INSERT INTO `transmog_items` (`entry`) VALUES('103075'); +INSERT INTO `transmog_items` (`entry`) VALUES('103076'); +INSERT INTO `transmog_items` (`entry`) VALUES('103078'); +INSERT INTO `transmog_items` (`entry`) VALUES('103079'); +INSERT INTO `transmog_items` (`entry`) VALUES('103151'); +INSERT INTO `transmog_items` (`entry`) VALUES('103152'); +INSERT INTO `transmog_items` (`entry`) VALUES('103153'); +INSERT INTO `transmog_items` (`entry`) VALUES('103158'); +INSERT INTO `transmog_items` (`entry`) VALUES('103160'); +INSERT INTO `transmog_items` (`entry`) VALUES('103161'); +INSERT INTO `transmog_items` (`entry`) VALUES('103166'); +INSERT INTO `transmog_items` (`entry`) VALUES('103184'); +INSERT INTO `transmog_items` (`entry`) VALUES('103187'); +INSERT INTO `transmog_items` (`entry`) VALUES('103189'); +INSERT INTO `transmog_items` (`entry`) VALUES('103191'); +INSERT INTO `transmog_items` (`entry`) VALUES('103195'); +INSERT INTO `transmog_items` (`entry`) VALUES('103199'); +INSERT INTO `transmog_items` (`entry`) VALUES('103200'); +INSERT INTO `transmog_items` (`entry`) VALUES('103201'); +INSERT INTO `transmog_items` (`entry`) VALUES('103202'); +INSERT INTO `transmog_items` (`entry`) VALUES('103204'); +INSERT INTO `transmog_items` (`entry`) VALUES('103205'); +INSERT INTO `transmog_items` (`entry`) VALUES('103207'); +INSERT INTO `transmog_items` (`entry`) VALUES('103210'); +INSERT INTO `transmog_items` (`entry`) VALUES('103211'); +INSERT INTO `transmog_items` (`entry`) VALUES('103212'); +INSERT INTO `transmog_items` (`entry`) VALUES('103213'); +INSERT INTO `transmog_items` (`entry`) VALUES('103214'); +INSERT INTO `transmog_items` (`entry`) VALUES('103216'); +INSERT INTO `transmog_items` (`entry`) VALUES('103217'); +INSERT INTO `transmog_items` (`entry`) VALUES('103222'); +INSERT INTO `transmog_items` (`entry`) VALUES('103223'); +INSERT INTO `transmog_items` (`entry`) VALUES('103224'); +INSERT INTO `transmog_items` (`entry`) VALUES('103225'); +INSERT INTO `transmog_items` (`entry`) VALUES('103228'); +INSERT INTO `transmog_items` (`entry`) VALUES('103229'); +INSERT INTO `transmog_items` (`entry`) VALUES('103230'); +INSERT INTO `transmog_items` (`entry`) VALUES('103231'); +INSERT INTO `transmog_items` (`entry`) VALUES('103260'); +INSERT INTO `transmog_items` (`entry`) VALUES('103261'); +INSERT INTO `transmog_items` (`entry`) VALUES('103262'); +INSERT INTO `transmog_items` (`entry`) VALUES('103263'); +INSERT INTO `transmog_items` (`entry`) VALUES('103268'); +INSERT INTO `transmog_items` (`entry`) VALUES('103269'); +INSERT INTO `transmog_items` (`entry`) VALUES('103270'); +INSERT INTO `transmog_items` (`entry`) VALUES('103272'); +INSERT INTO `transmog_items` (`entry`) VALUES('103273'); +INSERT INTO `transmog_items` (`entry`) VALUES('103274'); +INSERT INTO `transmog_items` (`entry`) VALUES('103275'); +INSERT INTO `transmog_items` (`entry`) VALUES('103276'); +INSERT INTO `transmog_items` (`entry`) VALUES('103279'); +INSERT INTO `transmog_items` (`entry`) VALUES('103280'); +INSERT INTO `transmog_items` (`entry`) VALUES('103281'); +INSERT INTO `transmog_items` (`entry`) VALUES('103282'); +INSERT INTO `transmog_items` (`entry`) VALUES('103283'); +INSERT INTO `transmog_items` (`entry`) VALUES('103284'); +INSERT INTO `transmog_items` (`entry`) VALUES('103285'); +INSERT INTO `transmog_items` (`entry`) VALUES('103286'); +INSERT INTO `transmog_items` (`entry`) VALUES('103287'); +INSERT INTO `transmog_items` (`entry`) VALUES('103288'); +INSERT INTO `transmog_items` (`entry`) VALUES('103289'); +INSERT INTO `transmog_items` (`entry`) VALUES('103290'); +INSERT INTO `transmog_items` (`entry`) VALUES('103291'); +INSERT INTO `transmog_items` (`entry`) VALUES('103292'); +INSERT INTO `transmog_items` (`entry`) VALUES('103294'); +INSERT INTO `transmog_items` (`entry`) VALUES('103296'); +INSERT INTO `transmog_items` (`entry`) VALUES('103302'); +INSERT INTO `transmog_items` (`entry`) VALUES('103303'); +INSERT INTO `transmog_items` (`entry`) VALUES('103304'); +INSERT INTO `transmog_items` (`entry`) VALUES('103305'); +INSERT INTO `transmog_items` (`entry`) VALUES('103306'); +INSERT INTO `transmog_items` (`entry`) VALUES('103307'); +INSERT INTO `transmog_items` (`entry`) VALUES('103308'); +INSERT INTO `transmog_items` (`entry`) VALUES('103309'); +INSERT INTO `transmog_items` (`entry`) VALUES('103310'); +INSERT INTO `transmog_items` (`entry`) VALUES('103311'); +INSERT INTO `transmog_items` (`entry`) VALUES('103312'); +INSERT INTO `transmog_items` (`entry`) VALUES('103313'); +INSERT INTO `transmog_items` (`entry`) VALUES('103314'); +INSERT INTO `transmog_items` (`entry`) VALUES('103315'); +INSERT INTO `transmog_items` (`entry`) VALUES('103320'); +INSERT INTO `transmog_items` (`entry`) VALUES('103321'); +INSERT INTO `transmog_items` (`entry`) VALUES('103322'); +INSERT INTO `transmog_items` (`entry`) VALUES('103323'); +INSERT INTO `transmog_items` (`entry`) VALUES('103324'); +INSERT INTO `transmog_items` (`entry`) VALUES('103325'); +INSERT INTO `transmog_items` (`entry`) VALUES('103328'); +INSERT INTO `transmog_items` (`entry`) VALUES('103329'); +INSERT INTO `transmog_items` (`entry`) VALUES('103330'); +INSERT INTO `transmog_items` (`entry`) VALUES('103331'); +INSERT INTO `transmog_items` (`entry`) VALUES('103332'); +INSERT INTO `transmog_items` (`entry`) VALUES('103336'); +INSERT INTO `transmog_items` (`entry`) VALUES('103341'); +INSERT INTO `transmog_items` (`entry`) VALUES('103344'); +INSERT INTO `transmog_items` (`entry`) VALUES('103345'); +INSERT INTO `transmog_items` (`entry`) VALUES('103363'); +INSERT INTO `transmog_items` (`entry`) VALUES('103365'); +INSERT INTO `transmog_items` (`entry`) VALUES('103370'); +INSERT INTO `transmog_items` (`entry`) VALUES('103373'); +INSERT INTO `transmog_items` (`entry`) VALUES('103374'); +INSERT INTO `transmog_items` (`entry`) VALUES('103375'); +INSERT INTO `transmog_items` (`entry`) VALUES('103376'); +INSERT INTO `transmog_items` (`entry`) VALUES('103377'); +INSERT INTO `transmog_items` (`entry`) VALUES('103378'); +INSERT INTO `transmog_items` (`entry`) VALUES('103379'); +INSERT INTO `transmog_items` (`entry`) VALUES('103380'); +INSERT INTO `transmog_items` (`entry`) VALUES('103381'); +INSERT INTO `transmog_items` (`entry`) VALUES('103392'); +INSERT INTO `transmog_items` (`entry`) VALUES('103413'); +INSERT INTO `transmog_items` (`entry`) VALUES('103414'); +INSERT INTO `transmog_items` (`entry`) VALUES('103416'); +INSERT INTO `transmog_items` (`entry`) VALUES('103429'); +INSERT INTO `transmog_items` (`entry`) VALUES('103430'); +INSERT INTO `transmog_items` (`entry`) VALUES('103431'); +INSERT INTO `transmog_items` (`entry`) VALUES('103435'); +INSERT INTO `transmog_items` (`entry`) VALUES('103437'); +INSERT INTO `transmog_items` (`entry`) VALUES('103439'); +INSERT INTO `transmog_items` (`entry`) VALUES('103442'); +INSERT INTO `transmog_items` (`entry`) VALUES('103444'); +INSERT INTO `transmog_items` (`entry`) VALUES('103445'); +INSERT INTO `transmog_items` (`entry`) VALUES('103447'); +INSERT INTO `transmog_items` (`entry`) VALUES('103449'); +INSERT INTO `transmog_items` (`entry`) VALUES('103450'); +INSERT INTO `transmog_items` (`entry`) VALUES('103453'); +INSERT INTO `transmog_items` (`entry`) VALUES('103454'); +INSERT INTO `transmog_items` (`entry`) VALUES('103457'); +INSERT INTO `transmog_items` (`entry`) VALUES('103458'); +INSERT INTO `transmog_items` (`entry`) VALUES('103461'); +INSERT INTO `transmog_items` (`entry`) VALUES('103469'); +INSERT INTO `transmog_items` (`entry`) VALUES('103471'); +INSERT INTO `transmog_items` (`entry`) VALUES('103472'); +INSERT INTO `transmog_items` (`entry`) VALUES('103473'); +INSERT INTO `transmog_items` (`entry`) VALUES('103474'); +INSERT INTO `transmog_items` (`entry`) VALUES('103475'); +INSERT INTO `transmog_items` (`entry`) VALUES('103480'); +INSERT INTO `transmog_items` (`entry`) VALUES('103481'); +INSERT INTO `transmog_items` (`entry`) VALUES('103482'); +INSERT INTO `transmog_items` (`entry`) VALUES('103483'); +INSERT INTO `transmog_items` (`entry`) VALUES('103484'); +INSERT INTO `transmog_items` (`entry`) VALUES('103485'); +INSERT INTO `transmog_items` (`entry`) VALUES('103488'); +INSERT INTO `transmog_items` (`entry`) VALUES('103490'); +INSERT INTO `transmog_items` (`entry`) VALUES('103491'); +INSERT INTO `transmog_items` (`entry`) VALUES('103492'); +INSERT INTO `transmog_items` (`entry`) VALUES('103493'); +INSERT INTO `transmog_items` (`entry`) VALUES('103511'); +INSERT INTO `transmog_items` (`entry`) VALUES('103536'); +INSERT INTO `transmog_items` (`entry`) VALUES('103555'); +INSERT INTO `transmog_items` (`entry`) VALUES('103556'); +INSERT INTO `transmog_items` (`entry`) VALUES('103558'); +INSERT INTO `transmog_items` (`entry`) VALUES('103559'); +INSERT INTO `transmog_items` (`entry`) VALUES('103560'); +INSERT INTO `transmog_items` (`entry`) VALUES('103561'); +INSERT INTO `transmog_items` (`entry`) VALUES('103562'); +INSERT INTO `transmog_items` (`entry`) VALUES('103563'); +INSERT INTO `transmog_items` (`entry`) VALUES('103565'); +INSERT INTO `transmog_items` (`entry`) VALUES('103566'); +INSERT INTO `transmog_items` (`entry`) VALUES('103567'); +INSERT INTO `transmog_items` (`entry`) VALUES('103569'); +INSERT INTO `transmog_items` (`entry`) VALUES('103570'); +INSERT INTO `transmog_items` (`entry`) VALUES('103578'); +INSERT INTO `transmog_items` (`entry`) VALUES('103581'); +INSERT INTO `transmog_items` (`entry`) VALUES('103582'); +INSERT INTO `transmog_items` (`entry`) VALUES('103583'); +INSERT INTO `transmog_items` (`entry`) VALUES('103585'); +INSERT INTO `transmog_items` (`entry`) VALUES('103586'); +INSERT INTO `transmog_items` (`entry`) VALUES('103587'); +INSERT INTO `transmog_items` (`entry`) VALUES('103588'); +INSERT INTO `transmog_items` (`entry`) VALUES('103589'); +INSERT INTO `transmog_items` (`entry`) VALUES('103590'); +INSERT INTO `transmog_items` (`entry`) VALUES('103591'); +INSERT INTO `transmog_items` (`entry`) VALUES('103592'); +INSERT INTO `transmog_items` (`entry`) VALUES('103593'); +INSERT INTO `transmog_items` (`entry`) VALUES('103594'); +INSERT INTO `transmog_items` (`entry`) VALUES('103595'); +INSERT INTO `transmog_items` (`entry`) VALUES('103596'); +INSERT INTO `transmog_items` (`entry`) VALUES('103597'); +INSERT INTO `transmog_items` (`entry`) VALUES('103598'); +INSERT INTO `transmog_items` (`entry`) VALUES('103599'); +INSERT INTO `transmog_items` (`entry`) VALUES('103600'); +INSERT INTO `transmog_items` (`entry`) VALUES('103602'); +INSERT INTO `transmog_items` (`entry`) VALUES('103603'); +INSERT INTO `transmog_items` (`entry`) VALUES('103606'); +INSERT INTO `transmog_items` (`entry`) VALUES('103607'); +INSERT INTO `transmog_items` (`entry`) VALUES('103641'); +INSERT INTO `transmog_items` (`entry`) VALUES('103642'); +INSERT INTO `transmog_items` (`entry`) VALUES('103643'); +INSERT INTO `transmog_items` (`entry`) VALUES('103644'); +INSERT INTO `transmog_items` (`entry`) VALUES('103645'); +INSERT INTO `transmog_items` (`entry`) VALUES('103647'); +INSERT INTO `transmog_items` (`entry`) VALUES('103648'); +INSERT INTO `transmog_items` (`entry`) VALUES('103649'); +INSERT INTO `transmog_items` (`entry`) VALUES('103650'); +INSERT INTO `transmog_items` (`entry`) VALUES('103651'); +INSERT INTO `transmog_items` (`entry`) VALUES('103652'); +INSERT INTO `transmog_items` (`entry`) VALUES('103653'); +INSERT INTO `transmog_items` (`entry`) VALUES('103654'); +INSERT INTO `transmog_items` (`entry`) VALUES('103655'); +INSERT INTO `transmog_items` (`entry`) VALUES('103656'); +INSERT INTO `transmog_items` (`entry`) VALUES('103719'); +INSERT INTO `transmog_items` (`entry`) VALUES('103732'); +INSERT INTO `transmog_items` (`entry`) VALUES('103733'); +INSERT INTO `transmog_items` (`entry`) VALUES('103741'); +INSERT INTO `transmog_items` (`entry`) VALUES('103742'); +INSERT INTO `transmog_items` (`entry`) VALUES('103743'); +INSERT INTO `transmog_items` (`entry`) VALUES('103747'); +INSERT INTO `transmog_items` (`entry`) VALUES('103748'); +INSERT INTO `transmog_items` (`entry`) VALUES('103749'); +INSERT INTO `transmog_items` (`entry`) VALUES('103750'); +INSERT INTO `transmog_items` (`entry`) VALUES('103751'); +INSERT INTO `transmog_items` (`entry`) VALUES('103752'); +INSERT INTO `transmog_items` (`entry`) VALUES('103753'); +INSERT INTO `transmog_items` (`entry`) VALUES('103754'); +INSERT INTO `transmog_items` (`entry`) VALUES('103758'); +INSERT INTO `transmog_items` (`entry`) VALUES('103759'); +INSERT INTO `transmog_items` (`entry`) VALUES('103761'); +INSERT INTO `transmog_items` (`entry`) VALUES('103763'); +INSERT INTO `transmog_items` (`entry`) VALUES('103764'); +INSERT INTO `transmog_items` (`entry`) VALUES('103765'); +INSERT INTO `transmog_items` (`entry`) VALUES('103778'); +INSERT INTO `transmog_items` (`entry`) VALUES('103779'); +INSERT INTO `transmog_items` (`entry`) VALUES('103780'); +INSERT INTO `transmog_items` (`entry`) VALUES('103786'); +INSERT INTO `transmog_items` (`entry`) VALUES('103787'); +INSERT INTO `transmog_items` (`entry`) VALUES('103792'); +INSERT INTO `transmog_items` (`entry`) VALUES('103793'); +INSERT INTO `transmog_items` (`entry`) VALUES('103794'); +INSERT INTO `transmog_items` (`entry`) VALUES('103795'); +INSERT INTO `transmog_items` (`entry`) VALUES('103796'); +INSERT INTO `transmog_items` (`entry`) VALUES('103797'); +INSERT INTO `transmog_items` (`entry`) VALUES('103798'); +INSERT INTO `transmog_items` (`entry`) VALUES('103799'); +INSERT INTO `transmog_items` (`entry`) VALUES('103800'); +INSERT INTO `transmog_items` (`entry`) VALUES('103801'); +INSERT INTO `transmog_items` (`entry`) VALUES('103802'); +INSERT INTO `transmog_items` (`entry`) VALUES('103803'); +INSERT INTO `transmog_items` (`entry`) VALUES('103804'); +INSERT INTO `transmog_items` (`entry`) VALUES('103805'); +INSERT INTO `transmog_items` (`entry`) VALUES('103806'); +INSERT INTO `transmog_items` (`entry`) VALUES('103807'); +INSERT INTO `transmog_items` (`entry`) VALUES('103808'); +INSERT INTO `transmog_items` (`entry`) VALUES('103809'); +INSERT INTO `transmog_items` (`entry`) VALUES('103810'); +INSERT INTO `transmog_items` (`entry`) VALUES('103811'); +INSERT INTO `transmog_items` (`entry`) VALUES('103812'); +INSERT INTO `transmog_items` (`entry`) VALUES('103813'); +INSERT INTO `transmog_items` (`entry`) VALUES('103814'); +INSERT INTO `transmog_items` (`entry`) VALUES('103815'); +INSERT INTO `transmog_items` (`entry`) VALUES('103816'); +INSERT INTO `transmog_items` (`entry`) VALUES('103817'); +INSERT INTO `transmog_items` (`entry`) VALUES('103833'); +INSERT INTO `transmog_items` (`entry`) VALUES('103834'); +INSERT INTO `transmog_items` (`entry`) VALUES('103835'); +INSERT INTO `transmog_items` (`entry`) VALUES('103836'); +INSERT INTO `transmog_items` (`entry`) VALUES('103837'); +INSERT INTO `transmog_items` (`entry`) VALUES('103840'); +INSERT INTO `transmog_items` (`entry`) VALUES('103841'); +INSERT INTO `transmog_items` (`entry`) VALUES('103842'); +INSERT INTO `transmog_items` (`entry`) VALUES('103843'); +INSERT INTO `transmog_items` (`entry`) VALUES('103844'); +INSERT INTO `transmog_items` (`entry`) VALUES('103845'); +INSERT INTO `transmog_items` (`entry`) VALUES('103846'); +INSERT INTO `transmog_items` (`entry`) VALUES('103847'); +INSERT INTO `transmog_items` (`entry`) VALUES('103848'); +INSERT INTO `transmog_items` (`entry`) VALUES('103855'); +INSERT INTO `transmog_items` (`entry`) VALUES('103856'); +INSERT INTO `transmog_items` (`entry`) VALUES('103889'); +INSERT INTO `transmog_items` (`entry`) VALUES('103890'); +INSERT INTO `transmog_items` (`entry`) VALUES('103891'); +INSERT INTO `transmog_items` (`entry`) VALUES('103892'); +INSERT INTO `transmog_items` (`entry`) VALUES('103893'); +INSERT INTO `transmog_items` (`entry`) VALUES('103894'); +INSERT INTO `transmog_items` (`entry`) VALUES('103936'); +INSERT INTO `transmog_items` (`entry`) VALUES('103937'); +INSERT INTO `transmog_items` (`entry`) VALUES('103938'); +INSERT INTO `transmog_items` (`entry`) VALUES('103939'); +INSERT INTO `transmog_items` (`entry`) VALUES('103940'); +INSERT INTO `transmog_items` (`entry`) VALUES('103941'); +INSERT INTO `transmog_items` (`entry`) VALUES('103942'); +INSERT INTO `transmog_items` (`entry`) VALUES('103943'); +INSERT INTO `transmog_items` (`entry`) VALUES('103944'); +INSERT INTO `transmog_items` (`entry`) VALUES('103945'); +INSERT INTO `transmog_items` (`entry`) VALUES('103946'); +INSERT INTO `transmog_items` (`entry`) VALUES('103947'); +INSERT INTO `transmog_items` (`entry`) VALUES('103948'); +INSERT INTO `transmog_items` (`entry`) VALUES('103949'); +INSERT INTO `transmog_items` (`entry`) VALUES('103950'); +INSERT INTO `transmog_items` (`entry`) VALUES('103951'); +INSERT INTO `transmog_items` (`entry`) VALUES('103952'); +INSERT INTO `transmog_items` (`entry`) VALUES('103953'); +INSERT INTO `transmog_items` (`entry`) VALUES('103954'); +INSERT INTO `transmog_items` (`entry`) VALUES('103955'); +INSERT INTO `transmog_items` (`entry`) VALUES('103956'); +INSERT INTO `transmog_items` (`entry`) VALUES('103957'); +INSERT INTO `transmog_items` (`entry`) VALUES('103958'); +INSERT INTO `transmog_items` (`entry`) VALUES('103959'); +INSERT INTO `transmog_items` (`entry`) VALUES('103961'); +INSERT INTO `transmog_items` (`entry`) VALUES('103962'); +INSERT INTO `transmog_items` (`entry`) VALUES('103963'); +INSERT INTO `transmog_items` (`entry`) VALUES('103964'); +INSERT INTO `transmog_items` (`entry`) VALUES('103965'); +INSERT INTO `transmog_items` (`entry`) VALUES('103966'); +INSERT INTO `transmog_items` (`entry`) VALUES('103967'); +INSERT INTO `transmog_items` (`entry`) VALUES('103968'); +INSERT INTO `transmog_items` (`entry`) VALUES('103969'); +INSERT INTO `transmog_items` (`entry`) VALUES('103970'); +INSERT INTO `transmog_items` (`entry`) VALUES('103971'); +INSERT INTO `transmog_items` (`entry`) VALUES('103972'); +INSERT INTO `transmog_items` (`entry`) VALUES('103973'); +INSERT INTO `transmog_items` (`entry`) VALUES('103974'); +INSERT INTO `transmog_items` (`entry`) VALUES('103975'); +INSERT INTO `transmog_items` (`entry`) VALUES('103976'); +INSERT INTO `transmog_items` (`entry`) VALUES('103977'); +INSERT INTO `transmog_items` (`entry`) VALUES('103978'); +INSERT INTO `transmog_items` (`entry`) VALUES('103979'); +INSERT INTO `transmog_items` (`entry`) VALUES('103980'); +INSERT INTO `transmog_items` (`entry`) VALUES('103981'); +INSERT INTO `transmog_items` (`entry`) VALUES('103982'); +INSERT INTO `transmog_items` (`entry`) VALUES('103983'); +INSERT INTO `transmog_items` (`entry`) VALUES('103984'); +INSERT INTO `transmog_items` (`entry`) VALUES('103985'); +INSERT INTO `transmog_items` (`entry`) VALUES('103986'); +INSERT INTO `transmog_items` (`entry`) VALUES('103987'); +INSERT INTO `transmog_items` (`entry`) VALUES('103988'); +INSERT INTO `transmog_items` (`entry`) VALUES('103989'); +INSERT INTO `transmog_items` (`entry`) VALUES('103990'); +INSERT INTO `transmog_items` (`entry`) VALUES('103991'); +INSERT INTO `transmog_items` (`entry`) VALUES('103992'); +INSERT INTO `transmog_items` (`entry`) VALUES('103993'); +INSERT INTO `transmog_items` (`entry`) VALUES('103994'); +INSERT INTO `transmog_items` (`entry`) VALUES('103995'); +INSERT INTO `transmog_items` (`entry`) VALUES('103996'); +INSERT INTO `transmog_items` (`entry`) VALUES('103997'); +INSERT INTO `transmog_items` (`entry`) VALUES('103998'); +INSERT INTO `transmog_items` (`entry`) VALUES('103999'); +INSERT INTO `transmog_items` (`entry`) VALUES('104000'); +INSERT INTO `transmog_items` (`entry`) VALUES('104001'); +INSERT INTO `transmog_items` (`entry`) VALUES('104002'); +INSERT INTO `transmog_items` (`entry`) VALUES('104003'); +INSERT INTO `transmog_items` (`entry`) VALUES('104004'); +INSERT INTO `transmog_items` (`entry`) VALUES('104005'); +INSERT INTO `transmog_items` (`entry`) VALUES('104006'); +INSERT INTO `transmog_items` (`entry`) VALUES('104007'); +INSERT INTO `transmog_items` (`entry`) VALUES('104008'); +INSERT INTO `transmog_items` (`entry`) VALUES('104009'); +INSERT INTO `transmog_items` (`entry`) VALUES('104010'); +INSERT INTO `transmog_items` (`entry`) VALUES('104011'); +INSERT INTO `transmog_items` (`entry`) VALUES('104012'); +INSERT INTO `transmog_items` (`entry`) VALUES('104013'); +INSERT INTO `transmog_items` (`entry`) VALUES('104014'); +INSERT INTO `transmog_items` (`entry`) VALUES('104015'); +INSERT INTO `transmog_items` (`entry`) VALUES('104020'); +INSERT INTO `transmog_items` (`entry`) VALUES('104021'); +INSERT INTO `transmog_items` (`entry`) VALUES('104023'); +INSERT INTO `transmog_items` (`entry`) VALUES('104025'); +INSERT INTO `transmog_items` (`entry`) VALUES('104026'); +INSERT INTO `transmog_items` (`entry`) VALUES('104035'); +INSERT INTO `transmog_items` (`entry`) VALUES('104036'); +INSERT INTO `transmog_items` (`entry`) VALUES('104037'); +INSERT INTO `transmog_items` (`entry`) VALUES('104038'); +INSERT INTO `transmog_items` (`entry`) VALUES('104039'); +INSERT INTO `transmog_items` (`entry`) VALUES('104040'); +INSERT INTO `transmog_items` (`entry`) VALUES('104041'); +INSERT INTO `transmog_items` (`entry`) VALUES('104042'); +INSERT INTO `transmog_items` (`entry`) VALUES('104043'); +INSERT INTO `transmog_items` (`entry`) VALUES('104044'); +INSERT INTO `transmog_items` (`entry`) VALUES('104045'); +INSERT INTO `transmog_items` (`entry`) VALUES('104046'); +INSERT INTO `transmog_items` (`entry`) VALUES('104047'); +INSERT INTO `transmog_items` (`entry`) VALUES('104048'); +INSERT INTO `transmog_items` (`entry`) VALUES('104049'); +INSERT INTO `transmog_items` (`entry`) VALUES('104050'); +INSERT INTO `transmog_items` (`entry`) VALUES('104051'); +INSERT INTO `transmog_items` (`entry`) VALUES('104052'); +INSERT INTO `transmog_items` (`entry`) VALUES('104054'); +INSERT INTO `transmog_items` (`entry`) VALUES('104055'); +INSERT INTO `transmog_items` (`entry`) VALUES('104057'); +INSERT INTO `transmog_items` (`entry`) VALUES('104058'); +INSERT INTO `transmog_items` (`entry`) VALUES('104059'); +INSERT INTO `transmog_items` (`entry`) VALUES('104060'); +INSERT INTO `transmog_items` (`entry`) VALUES('104061'); +INSERT INTO `transmog_items` (`entry`) VALUES('104062'); +INSERT INTO `transmog_items` (`entry`) VALUES('104063'); +INSERT INTO `transmog_items` (`entry`) VALUES('104064'); +INSERT INTO `transmog_items` (`entry`) VALUES('104065'); +INSERT INTO `transmog_items` (`entry`) VALUES('104066'); +INSERT INTO `transmog_items` (`entry`) VALUES('104067'); +INSERT INTO `transmog_items` (`entry`) VALUES('104068'); +INSERT INTO `transmog_items` (`entry`) VALUES('104069'); +INSERT INTO `transmog_items` (`entry`) VALUES('104070'); +INSERT INTO `transmog_items` (`entry`) VALUES('104071'); +INSERT INTO `transmog_items` (`entry`) VALUES('104072'); +INSERT INTO `transmog_items` (`entry`) VALUES('104073'); +INSERT INTO `transmog_items` (`entry`) VALUES('104074'); +INSERT INTO `transmog_items` (`entry`) VALUES('104075'); +INSERT INTO `transmog_items` (`entry`) VALUES('104076'); +INSERT INTO `transmog_items` (`entry`) VALUES('104077'); +INSERT INTO `transmog_items` (`entry`) VALUES('104078'); +INSERT INTO `transmog_items` (`entry`) VALUES('104079'); +INSERT INTO `transmog_items` (`entry`) VALUES('104080'); +INSERT INTO `transmog_items` (`entry`) VALUES('104082'); +INSERT INTO `transmog_items` (`entry`) VALUES('104083'); +INSERT INTO `transmog_items` (`entry`) VALUES('104084'); +INSERT INTO `transmog_items` (`entry`) VALUES('104086'); +INSERT INTO `transmog_items` (`entry`) VALUES('104087'); +INSERT INTO `transmog_items` (`entry`) VALUES('104088'); +INSERT INTO `transmog_items` (`entry`) VALUES('104089'); +INSERT INTO `transmog_items` (`entry`) VALUES('104090'); +INSERT INTO `transmog_items` (`entry`) VALUES('104091'); +INSERT INTO `transmog_items` (`entry`) VALUES('104107'); +INSERT INTO `transmog_items` (`entry`) VALUES('104108'); +INSERT INTO `transmog_items` (`entry`) VALUES('104109'); +INSERT INTO `transmog_items` (`entry`) VALUES('104110'); +INSERT INTO `transmog_items` (`entry`) VALUES('104111'); +INSERT INTO `transmog_items` (`entry`) VALUES('104113'); +INSERT INTO `transmog_items` (`entry`) VALUES('104114'); +INSERT INTO `transmog_items` (`entry`) VALUES('104115'); +INSERT INTO `transmog_items` (`entry`) VALUES('104117'); +INSERT INTO `transmog_items` (`entry`) VALUES('104118'); +INSERT INTO `transmog_items` (`entry`) VALUES('104119'); +INSERT INTO `transmog_items` (`entry`) VALUES('104120'); +INSERT INTO `transmog_items` (`entry`) VALUES('104121'); +INSERT INTO `transmog_items` (`entry`) VALUES('104122'); +INSERT INTO `transmog_items` (`entry`) VALUES('104123'); +INSERT INTO `transmog_items` (`entry`) VALUES('104124'); +INSERT INTO `transmog_items` (`entry`) VALUES('104127'); +INSERT INTO `transmog_items` (`entry`) VALUES('104129'); +INSERT INTO `transmog_items` (`entry`) VALUES('104131'); +INSERT INTO `transmog_items` (`entry`) VALUES('104132'); +INSERT INTO `transmog_items` (`entry`) VALUES('104133'); +INSERT INTO `transmog_items` (`entry`) VALUES('104136'); +INSERT INTO `transmog_items` (`entry`) VALUES('104137'); +INSERT INTO `transmog_items` (`entry`) VALUES('104138'); +INSERT INTO `transmog_items` (`entry`) VALUES('104139'); +INSERT INTO `transmog_items` (`entry`) VALUES('104140'); +INSERT INTO `transmog_items` (`entry`) VALUES('104191'); +INSERT INTO `transmog_items` (`entry`) VALUES('104196'); +INSERT INTO `transmog_items` (`entry`) VALUES('104197'); +INSERT INTO `transmog_items` (`entry`) VALUES('104237'); +INSERT INTO `transmog_items` (`entry`) VALUES('104239'); +INSERT INTO `transmog_items` (`entry`) VALUES('104242'); +INSERT INTO `transmog_items` (`entry`) VALUES('104243'); +INSERT INTO `transmog_items` (`entry`) VALUES('104244'); +INSERT INTO `transmog_items` (`entry`) VALUES('104246'); +INSERT INTO `transmog_items` (`entry`) VALUES('104247'); +INSERT INTO `transmog_items` (`entry`) VALUES('104248'); +INSERT INTO `transmog_items` (`entry`) VALUES('104249'); +INSERT INTO `transmog_items` (`entry`) VALUES('104250'); +INSERT INTO `transmog_items` (`entry`) VALUES('104251'); +INSERT INTO `transmog_items` (`entry`) VALUES('104252'); +INSERT INTO `transmog_items` (`entry`) VALUES('104253'); +INSERT INTO `transmog_items` (`entry`) VALUES('104254'); +INSERT INTO `transmog_items` (`entry`) VALUES('104255'); +INSERT INTO `transmog_items` (`entry`) VALUES('104256'); +INSERT INTO `transmog_items` (`entry`) VALUES('104257'); +INSERT INTO `transmog_items` (`entry`) VALUES('104258'); +INSERT INTO `transmog_items` (`entry`) VALUES('104259'); +INSERT INTO `transmog_items` (`entry`) VALUES('104260'); +INSERT INTO `transmog_items` (`entry`) VALUES('104261'); +INSERT INTO `transmog_items` (`entry`) VALUES('104262'); +INSERT INTO `transmog_items` (`entry`) VALUES('104263'); +INSERT INTO `transmog_items` (`entry`) VALUES('104264'); +INSERT INTO `transmog_items` (`entry`) VALUES('104290'); +INSERT INTO `transmog_items` (`entry`) VALUES('104302'); +INSERT INTO `transmog_items` (`entry`) VALUES('104303'); +INSERT INTO `transmog_items` (`entry`) VALUES('104307'); +INSERT INTO `transmog_items` (`entry`) VALUES('104308'); +INSERT INTO `transmog_items` (`entry`) VALUES('104309'); +INSERT INTO `transmog_items` (`entry`) VALUES('104310'); +INSERT INTO `transmog_items` (`entry`) VALUES('104311'); +INSERT INTO `transmog_items` (`entry`) VALUES('104312'); +INSERT INTO `transmog_items` (`entry`) VALUES('104313'); +INSERT INTO `transmog_items` (`entry`) VALUES('104314'); +INSERT INTO `transmog_items` (`entry`) VALUES('104315'); +INSERT INTO `transmog_items` (`entry`) VALUES('104316'); +INSERT INTO `transmog_items` (`entry`) VALUES('104317'); +INSERT INTO `transmog_items` (`entry`) VALUES('104318'); +INSERT INTO `transmog_items` (`entry`) VALUES('104319'); +INSERT INTO `transmog_items` (`entry`) VALUES('104320'); +INSERT INTO `transmog_items` (`entry`) VALUES('104321'); +INSERT INTO `transmog_items` (`entry`) VALUES('104322'); +INSERT INTO `transmog_items` (`entry`) VALUES('104323'); +INSERT INTO `transmog_items` (`entry`) VALUES('104324'); +INSERT INTO `transmog_items` (`entry`) VALUES('104325'); +INSERT INTO `transmog_items` (`entry`) VALUES('104326'); +INSERT INTO `transmog_items` (`entry`) VALUES('104327'); +INSERT INTO `transmog_items` (`entry`) VALUES('104328'); +INSERT INTO `transmog_items` (`entry`) VALUES('104329'); +INSERT INTO `transmog_items` (`entry`) VALUES('104331'); +INSERT INTO `transmog_items` (`entry`) VALUES('104343'); +INSERT INTO `transmog_items` (`entry`) VALUES('104362'); +INSERT INTO `transmog_items` (`entry`) VALUES('104368'); +INSERT INTO `transmog_items` (`entry`) VALUES('104369'); +INSERT INTO `transmog_items` (`entry`) VALUES('104372'); +INSERT INTO `transmog_items` (`entry`) VALUES('104373'); +INSERT INTO `transmog_items` (`entry`) VALUES('104379'); +INSERT INTO `transmog_items` (`entry`) VALUES('104383'); +INSERT INTO `transmog_items` (`entry`) VALUES('104385'); +INSERT INTO `transmog_items` (`entry`) VALUES('104393'); +INSERT INTO `transmog_items` (`entry`) VALUES('104434'); +INSERT INTO `transmog_items` (`entry`) VALUES('104436'); +INSERT INTO `transmog_items` (`entry`) VALUES('104438'); +INSERT INTO `transmog_items` (`entry`) VALUES('104439'); +INSERT INTO `transmog_items` (`entry`) VALUES('104443'); +INSERT INTO `transmog_items` (`entry`) VALUES('104444'); +INSERT INTO `transmog_items` (`entry`) VALUES('104446'); +INSERT INTO `transmog_items` (`entry`) VALUES('104447'); +INSERT INTO `transmog_items` (`entry`) VALUES('104448'); +INSERT INTO `transmog_items` (`entry`) VALUES('104449'); +INSERT INTO `transmog_items` (`entry`) VALUES('104454'); +INSERT INTO `transmog_items` (`entry`) VALUES('104455'); +INSERT INTO `transmog_items` (`entry`) VALUES('104456'); +INSERT INTO `transmog_items` (`entry`) VALUES('104462'); +INSERT INTO `transmog_items` (`entry`) VALUES('104463'); +INSERT INTO `transmog_items` (`entry`) VALUES('104464'); +INSERT INTO `transmog_items` (`entry`) VALUES('104465'); +INSERT INTO `transmog_items` (`entry`) VALUES('104474'); +INSERT INTO `transmog_items` (`entry`) VALUES('104476'); +INSERT INTO `transmog_items` (`entry`) VALUES('104477'); +INSERT INTO `transmog_items` (`entry`) VALUES('104478'); +INSERT INTO `transmog_items` (`entry`) VALUES('104504'); +INSERT INTO `transmog_items` (`entry`) VALUES('104505'); +INSERT INTO `transmog_items` (`entry`) VALUES('104507'); +INSERT INTO `transmog_items` (`entry`) VALUES('104508'); +INSERT INTO `transmog_items` (`entry`) VALUES('104509'); +INSERT INTO `transmog_items` (`entry`) VALUES('104511'); +INSERT INTO `transmog_items` (`entry`) VALUES('104534'); +INSERT INTO `transmog_items` (`entry`) VALUES('104543'); +INSERT INTO `transmog_items` (`entry`) VALUES('104545'); +INSERT INTO `transmog_items` (`entry`) VALUES('104547'); +INSERT INTO `transmog_items` (`entry`) VALUES('104562'); +INSERT INTO `transmog_items` (`entry`) VALUES('104563'); +INSERT INTO `transmog_items` (`entry`) VALUES('104565'); +INSERT INTO `transmog_items` (`entry`) VALUES('104569'); +INSERT INTO `transmog_items` (`entry`) VALUES('104571'); +INSERT INTO `transmog_items` (`entry`) VALUES('104576'); +INSERT INTO `transmog_items` (`entry`) VALUES('104577'); +INSERT INTO `transmog_items` (`entry`) VALUES('104616'); +INSERT INTO `transmog_items` (`entry`) VALUES('104643'); +INSERT INTO `transmog_items` (`entry`) VALUES('104652'); +INSERT INTO `transmog_items` (`entry`) VALUES('104653'); +INSERT INTO `transmog_items` (`entry`) VALUES('104658'); +INSERT INTO `transmog_items` (`entry`) VALUES('104659'); +INSERT INTO `transmog_items` (`entry`) VALUES('104660'); +INSERT INTO `transmog_items` (`entry`) VALUES('104661'); +INSERT INTO `transmog_items` (`entry`) VALUES('104662'); +INSERT INTO `transmog_items` (`entry`) VALUES('104663'); +INSERT INTO `transmog_items` (`entry`) VALUES('104665'); +INSERT INTO `transmog_items` (`entry`) VALUES('104666'); +INSERT INTO `transmog_items` (`entry`) VALUES('104668'); +INSERT INTO `transmog_items` (`entry`) VALUES('104669'); +INSERT INTO `transmog_items` (`entry`) VALUES('104671'); +INSERT INTO `transmog_items` (`entry`) VALUES('104672'); +INSERT INTO `transmog_items` (`entry`) VALUES('104674'); +INSERT INTO `transmog_items` (`entry`) VALUES('104675'); +INSERT INTO `transmog_items` (`entry`) VALUES('104676'); +INSERT INTO `transmog_items` (`entry`) VALUES('104677'); +INSERT INTO `transmog_items` (`entry`) VALUES('104678'); +INSERT INTO `transmog_items` (`entry`) VALUES('104680'); +INSERT INTO `transmog_items` (`entry`) VALUES('104681'); +INSERT INTO `transmog_items` (`entry`) VALUES('104683'); +INSERT INTO `transmog_items` (`entry`) VALUES('104684'); +INSERT INTO `transmog_items` (`entry`) VALUES('104686'); +INSERT INTO `transmog_items` (`entry`) VALUES('104687'); +INSERT INTO `transmog_items` (`entry`) VALUES('104689'); +INSERT INTO `transmog_items` (`entry`) VALUES('104690'); +INSERT INTO `transmog_items` (`entry`) VALUES('104692'); +INSERT INTO `transmog_items` (`entry`) VALUES('104693'); +INSERT INTO `transmog_items` (`entry`) VALUES('104694'); +INSERT INTO `transmog_items` (`entry`) VALUES('104695'); +INSERT INTO `transmog_items` (`entry`) VALUES('104697'); +INSERT INTO `transmog_items` (`entry`) VALUES('104698'); +INSERT INTO `transmog_items` (`entry`) VALUES('104699'); +INSERT INTO `transmog_items` (`entry`) VALUES('104700'); +INSERT INTO `transmog_items` (`entry`) VALUES('104701'); +INSERT INTO `transmog_items` (`entry`) VALUES('104705'); +INSERT INTO `transmog_items` (`entry`) VALUES('104706'); +INSERT INTO `transmog_items` (`entry`) VALUES('104707'); +INSERT INTO `transmog_items` (`entry`) VALUES('104708'); +INSERT INTO `transmog_items` (`entry`) VALUES('104709'); +INSERT INTO `transmog_items` (`entry`) VALUES('104710'); +INSERT INTO `transmog_items` (`entry`) VALUES('104711'); +INSERT INTO `transmog_items` (`entry`) VALUES('104712'); +INSERT INTO `transmog_items` (`entry`) VALUES('104713'); +INSERT INTO `transmog_items` (`entry`) VALUES('104714'); +INSERT INTO `transmog_items` (`entry`) VALUES('104715'); +INSERT INTO `transmog_items` (`entry`) VALUES('104716'); +INSERT INTO `transmog_items` (`entry`) VALUES('104717'); +INSERT INTO `transmog_items` (`entry`) VALUES('104718'); +INSERT INTO `transmog_items` (`entry`) VALUES('104719'); +INSERT INTO `transmog_items` (`entry`) VALUES('104720'); +INSERT INTO `transmog_items` (`entry`) VALUES('104721'); +INSERT INTO `transmog_items` (`entry`) VALUES('104722'); +INSERT INTO `transmog_items` (`entry`) VALUES('104723'); +INSERT INTO `transmog_items` (`entry`) VALUES('104724'); +INSERT INTO `transmog_items` (`entry`) VALUES('104725'); +INSERT INTO `transmog_items` (`entry`) VALUES('104726'); +INSERT INTO `transmog_items` (`entry`) VALUES('104727'); +INSERT INTO `transmog_items` (`entry`) VALUES('104729'); +INSERT INTO `transmog_items` (`entry`) VALUES('104731'); +INSERT INTO `transmog_items` (`entry`) VALUES('104732'); +INSERT INTO `transmog_items` (`entry`) VALUES('104733'); +INSERT INTO `transmog_items` (`entry`) VALUES('104734'); +INSERT INTO `transmog_items` (`entry`) VALUES('104735'); +INSERT INTO `transmog_items` (`entry`) VALUES('104736'); +INSERT INTO `transmog_items` (`entry`) VALUES('104737'); +INSERT INTO `transmog_items` (`entry`) VALUES('104738'); +INSERT INTO `transmog_items` (`entry`) VALUES('104741'); +INSERT INTO `transmog_items` (`entry`) VALUES('104744'); +INSERT INTO `transmog_items` (`entry`) VALUES('104745'); +INSERT INTO `transmog_items` (`entry`) VALUES('104746'); +INSERT INTO `transmog_items` (`entry`) VALUES('104763'); +INSERT INTO `transmog_items` (`entry`) VALUES('104767'); +INSERT INTO `transmog_items` (`entry`) VALUES('104768'); +INSERT INTO `transmog_items` (`entry`) VALUES('104771'); +INSERT INTO `transmog_items` (`entry`) VALUES('104772'); +INSERT INTO `transmog_items` (`entry`) VALUES('104781'); +INSERT INTO `transmog_items` (`entry`) VALUES('104782'); +INSERT INTO `transmog_items` (`entry`) VALUES('104785'); +INSERT INTO `transmog_items` (`entry`) VALUES('104786'); +INSERT INTO `transmog_items` (`entry`) VALUES('104788'); +INSERT INTO `transmog_items` (`entry`) VALUES('104789'); +INSERT INTO `transmog_items` (`entry`) VALUES('104790'); +INSERT INTO `transmog_items` (`entry`) VALUES('104792'); +INSERT INTO `transmog_items` (`entry`) VALUES('104793'); +INSERT INTO `transmog_items` (`entry`) VALUES('104794'); +INSERT INTO `transmog_items` (`entry`) VALUES('104795'); +INSERT INTO `transmog_items` (`entry`) VALUES('104796'); +INSERT INTO `transmog_items` (`entry`) VALUES('104797'); +INSERT INTO `transmog_items` (`entry`) VALUES('104798'); +INSERT INTO `transmog_items` (`entry`) VALUES('104799'); +INSERT INTO `transmog_items` (`entry`) VALUES('104800'); +INSERT INTO `transmog_items` (`entry`) VALUES('104810'); +INSERT INTO `transmog_items` (`entry`) VALUES('104816'); +INSERT INTO `transmog_items` (`entry`) VALUES('104820'); +INSERT INTO `transmog_items` (`entry`) VALUES('104821'); +INSERT INTO `transmog_items` (`entry`) VALUES('104822'); +INSERT INTO `transmog_items` (`entry`) VALUES('104827'); +INSERT INTO `transmog_items` (`entry`) VALUES('104828'); +INSERT INTO `transmog_items` (`entry`) VALUES('104829'); +INSERT INTO `transmog_items` (`entry`) VALUES('104830'); +INSERT INTO `transmog_items` (`entry`) VALUES('104831'); +INSERT INTO `transmog_items` (`entry`) VALUES('104832'); +INSERT INTO `transmog_items` (`entry`) VALUES('104833'); +INSERT INTO `transmog_items` (`entry`) VALUES('104835'); +INSERT INTO `transmog_items` (`entry`) VALUES('104840'); +INSERT INTO `transmog_items` (`entry`) VALUES('104854'); +INSERT INTO `transmog_items` (`entry`) VALUES('104858'); +INSERT INTO `transmog_items` (`entry`) VALUES('104861'); +INSERT INTO `transmog_items` (`entry`) VALUES('104906'); +INSERT INTO `transmog_items` (`entry`) VALUES('104907'); +INSERT INTO `transmog_items` (`entry`) VALUES('104908'); +INSERT INTO `transmog_items` (`entry`) VALUES('104909'); +INSERT INTO `transmog_items` (`entry`) VALUES('104910'); +INSERT INTO `transmog_items` (`entry`) VALUES('104911'); +INSERT INTO `transmog_items` (`entry`) VALUES('104913'); +INSERT INTO `transmog_items` (`entry`) VALUES('104914'); +INSERT INTO `transmog_items` (`entry`) VALUES('104915'); +INSERT INTO `transmog_items` (`entry`) VALUES('104916'); +INSERT INTO `transmog_items` (`entry`) VALUES('104917'); +INSERT INTO `transmog_items` (`entry`) VALUES('104919'); +INSERT INTO `transmog_items` (`entry`) VALUES('104920'); +INSERT INTO `transmog_items` (`entry`) VALUES('104921'); +INSERT INTO `transmog_items` (`entry`) VALUES('104922'); +INSERT INTO `transmog_items` (`entry`) VALUES('104924'); +INSERT INTO `transmog_items` (`entry`) VALUES('104925'); +INSERT INTO `transmog_items` (`entry`) VALUES('104928'); +INSERT INTO `transmog_items` (`entry`) VALUES('104929'); +INSERT INTO `transmog_items` (`entry`) VALUES('104931'); +INSERT INTO `transmog_items` (`entry`) VALUES('104933'); +INSERT INTO `transmog_items` (`entry`) VALUES('104935'); +INSERT INTO `transmog_items` (`entry`) VALUES('104936'); +INSERT INTO `transmog_items` (`entry`) VALUES('104937'); +INSERT INTO `transmog_items` (`entry`) VALUES('104940'); +INSERT INTO `transmog_items` (`entry`) VALUES('104942'); +INSERT INTO `transmog_items` (`entry`) VALUES('104944'); +INSERT INTO `transmog_items` (`entry`) VALUES('104946'); +INSERT INTO `transmog_items` (`entry`) VALUES('104947'); +INSERT INTO `transmog_items` (`entry`) VALUES('104948'); +INSERT INTO `transmog_items` (`entry`) VALUES('104951'); +INSERT INTO `transmog_items` (`entry`) VALUES('104954'); +INSERT INTO `transmog_items` (`entry`) VALUES('104958'); +INSERT INTO `transmog_items` (`entry`) VALUES('104962'); +INSERT INTO `transmog_items` (`entry`) VALUES('104963'); +INSERT INTO `transmog_items` (`entry`) VALUES('104967'); +INSERT INTO `transmog_items` (`entry`) VALUES('104968'); +INSERT INTO `transmog_items` (`entry`) VALUES('104969'); +INSERT INTO `transmog_items` (`entry`) VALUES('104970'); +INSERT INTO `transmog_items` (`entry`) VALUES('104971'); +INSERT INTO `transmog_items` (`entry`) VALUES('104972'); +INSERT INTO `transmog_items` (`entry`) VALUES('104973'); +INSERT INTO `transmog_items` (`entry`) VALUES('104974'); +INSERT INTO `transmog_items` (`entry`) VALUES('104975'); +INSERT INTO `transmog_items` (`entry`) VALUES('104976'); +INSERT INTO `transmog_items` (`entry`) VALUES('104978'); +INSERT INTO `transmog_items` (`entry`) VALUES('104979'); +INSERT INTO `transmog_items` (`entry`) VALUES('104980'); +INSERT INTO `transmog_items` (`entry`) VALUES('104982'); +INSERT INTO `transmog_items` (`entry`) VALUES('104989'); +INSERT INTO `transmog_items` (`entry`) VALUES('104990'); +INSERT INTO `transmog_items` (`entry`) VALUES('105016'); +INSERT INTO `transmog_items` (`entry`) VALUES('105040'); +INSERT INTO `transmog_items` (`entry`) VALUES('105069'); +INSERT INTO `transmog_items` (`entry`) VALUES('105071'); +INSERT INTO `transmog_items` (`entry`) VALUES('105092'); +INSERT INTO `transmog_items` (`entry`) VALUES('105093'); +INSERT INTO `transmog_items` (`entry`) VALUES('105094'); +INSERT INTO `transmog_items` (`entry`) VALUES('105106'); +INSERT INTO `transmog_items` (`entry`) VALUES('105108'); +INSERT INTO `transmog_items` (`entry`) VALUES('105109'); +INSERT INTO `transmog_items` (`entry`) VALUES('105110'); +INSERT INTO `transmog_items` (`entry`) VALUES('105111'); +INSERT INTO `transmog_items` (`entry`) VALUES('105112'); +INSERT INTO `transmog_items` (`entry`) VALUES('105181'); +INSERT INTO `transmog_items` (`entry`) VALUES('105193'); +INSERT INTO `transmog_items` (`entry`) VALUES('105194'); +INSERT INTO `transmog_items` (`entry`) VALUES('105195'); +INSERT INTO `transmog_items` (`entry`) VALUES('105197'); +INSERT INTO `transmog_items` (`entry`) VALUES('105198'); +INSERT INTO `transmog_items` (`entry`) VALUES('105199'); +INSERT INTO `transmog_items` (`entry`) VALUES('105200'); +INSERT INTO `transmog_items` (`entry`) VALUES('105202'); +INSERT INTO `transmog_items` (`entry`) VALUES('105207'); +INSERT INTO `transmog_items` (`entry`) VALUES('105208'); +INSERT INTO `transmog_items` (`entry`) VALUES('105209'); +INSERT INTO `transmog_items` (`entry`) VALUES('105210'); +INSERT INTO `transmog_items` (`entry`) VALUES('105211'); +INSERT INTO `transmog_items` (`entry`) VALUES('105212'); +INSERT INTO `transmog_items` (`entry`) VALUES('105213'); +INSERT INTO `transmog_items` (`entry`) VALUES('105214'); +INSERT INTO `transmog_items` (`entry`) VALUES('105215'); +INSERT INTO `transmog_items` (`entry`) VALUES('105216'); +INSERT INTO `transmog_items` (`entry`) VALUES('105235'); +INSERT INTO `transmog_items` (`entry`) VALUES('105236'); +INSERT INTO `transmog_items` (`entry`) VALUES('105238'); +INSERT INTO `transmog_items` (`entry`) VALUES('105239'); +INSERT INTO `transmog_items` (`entry`) VALUES('105240'); +INSERT INTO `transmog_items` (`entry`) VALUES('105241'); +INSERT INTO `transmog_items` (`entry`) VALUES('105242'); +INSERT INTO `transmog_items` (`entry`) VALUES('105243'); +INSERT INTO `transmog_items` (`entry`) VALUES('105244'); +INSERT INTO `transmog_items` (`entry`) VALUES('105245'); +INSERT INTO `transmog_items` (`entry`) VALUES('105246'); +INSERT INTO `transmog_items` (`entry`) VALUES('105247'); +INSERT INTO `transmog_items` (`entry`) VALUES('105248'); +INSERT INTO `transmog_items` (`entry`) VALUES('105249'); +INSERT INTO `transmog_items` (`entry`) VALUES('105250'); +INSERT INTO `transmog_items` (`entry`) VALUES('105252'); +INSERT INTO `transmog_items` (`entry`) VALUES('105253'); +INSERT INTO `transmog_items` (`entry`) VALUES('105254'); +INSERT INTO `transmog_items` (`entry`) VALUES('105256'); +INSERT INTO `transmog_items` (`entry`) VALUES('105257'); +INSERT INTO `transmog_items` (`entry`) VALUES('105259'); +INSERT INTO `transmog_items` (`entry`) VALUES('105267'); +INSERT INTO `transmog_items` (`entry`) VALUES('105274'); +INSERT INTO `transmog_items` (`entry`) VALUES('105275'); +INSERT INTO `transmog_items` (`entry`) VALUES('105279'); +INSERT INTO `transmog_items` (`entry`) VALUES('105299'); +INSERT INTO `transmog_items` (`entry`) VALUES('105302'); +INSERT INTO `transmog_items` (`entry`) VALUES('105309'); +INSERT INTO `transmog_items` (`entry`) VALUES('105310'); +INSERT INTO `transmog_items` (`entry`) VALUES('105311'); +INSERT INTO `transmog_items` (`entry`) VALUES('105312'); +INSERT INTO `transmog_items` (`entry`) VALUES('105314'); +INSERT INTO `transmog_items` (`entry`) VALUES('105315'); +INSERT INTO `transmog_items` (`entry`) VALUES('105316'); +INSERT INTO `transmog_items` (`entry`) VALUES('105317'); +INSERT INTO `transmog_items` (`entry`) VALUES('105318'); +INSERT INTO `transmog_items` (`entry`) VALUES('105319'); +INSERT INTO `transmog_items` (`entry`) VALUES('105320'); +INSERT INTO `transmog_items` (`entry`) VALUES('105324'); +INSERT INTO `transmog_items` (`entry`) VALUES('105325'); +INSERT INTO `transmog_items` (`entry`) VALUES('105326'); +INSERT INTO `transmog_items` (`entry`) VALUES('105327'); +INSERT INTO `transmog_items` (`entry`) VALUES('105328'); +INSERT INTO `transmog_items` (`entry`) VALUES('105337'); +INSERT INTO `transmog_items` (`entry`) VALUES('105341'); +INSERT INTO `transmog_items` (`entry`) VALUES('105343'); +INSERT INTO `transmog_items` (`entry`) VALUES('105346'); +INSERT INTO `transmog_items` (`entry`) VALUES('105347'); +INSERT INTO `transmog_items` (`entry`) VALUES('105355'); +INSERT INTO `transmog_items` (`entry`) VALUES('105356'); +INSERT INTO `transmog_items` (`entry`) VALUES('105357'); +INSERT INTO `transmog_items` (`entry`) VALUES('105387'); +INSERT INTO `transmog_items` (`entry`) VALUES('105392'); +INSERT INTO `transmog_items` (`entry`) VALUES('105394'); +INSERT INTO `transmog_items` (`entry`) VALUES('105395'); +INSERT INTO `transmog_items` (`entry`) VALUES('105398'); +INSERT INTO `transmog_items` (`entry`) VALUES('105399'); +INSERT INTO `transmog_items` (`entry`) VALUES('105404'); +INSERT INTO `transmog_items` (`entry`) VALUES('105405'); +INSERT INTO `transmog_items` (`entry`) VALUES('105419'); +INSERT INTO `transmog_items` (`entry`) VALUES('105420'); +INSERT INTO `transmog_items` (`entry`) VALUES('105422'); +INSERT INTO `transmog_items` (`entry`) VALUES('105423'); +INSERT INTO `transmog_items` (`entry`) VALUES('105425'); +INSERT INTO `transmog_items` (`entry`) VALUES('105443'); +INSERT INTO `transmog_items` (`entry`) VALUES('105444'); +INSERT INTO `transmog_items` (`entry`) VALUES('105458'); +INSERT INTO `transmog_items` (`entry`) VALUES('105495'); +INSERT INTO `transmog_items` (`entry`) VALUES('105516'); +INSERT INTO `transmog_items` (`entry`) VALUES('105540'); +INSERT INTO `transmog_items` (`entry`) VALUES('105541'); +INSERT INTO `transmog_items` (`entry`) VALUES('105542'); +INSERT INTO `transmog_items` (`entry`) VALUES('105580'); +INSERT INTO `transmog_items` (`entry`) VALUES('105587'); +INSERT INTO `transmog_items` (`entry`) VALUES('105589'); +INSERT INTO `transmog_items` (`entry`) VALUES('105590'); +INSERT INTO `transmog_items` (`entry`) VALUES('105591'); +INSERT INTO `transmog_items` (`entry`) VALUES('105592'); +INSERT INTO `transmog_items` (`entry`) VALUES('105593'); +INSERT INTO `transmog_items` (`entry`) VALUES('105596'); +INSERT INTO `transmog_items` (`entry`) VALUES('105604'); +INSERT INTO `transmog_items` (`entry`) VALUES('105605'); +INSERT INTO `transmog_items` (`entry`) VALUES('105606'); +INSERT INTO `transmog_items` (`entry`) VALUES('105608'); +INSERT INTO `transmog_items` (`entry`) VALUES('105609'); +INSERT INTO `transmog_items` (`entry`) VALUES('105610'); +INSERT INTO `transmog_items` (`entry`) VALUES('105612'); +INSERT INTO `transmog_items` (`entry`) VALUES('105616'); +INSERT INTO `transmog_items` (`entry`) VALUES('105617'); +INSERT INTO `transmog_items` (`entry`) VALUES('105618'); +INSERT INTO `transmog_items` (`entry`) VALUES('105624'); +INSERT INTO `transmog_items` (`entry`) VALUES('105626'); +INSERT INTO `transmog_items` (`entry`) VALUES('105627'); +INSERT INTO `transmog_items` (`entry`) VALUES('105629'); +INSERT INTO `transmog_items` (`entry`) VALUES('105630'); +INSERT INTO `transmog_items` (`entry`) VALUES('105739'); +INSERT INTO `transmog_items` (`entry`) VALUES('105742'); +INSERT INTO `transmog_items` (`entry`) VALUES('105748'); +INSERT INTO `transmog_items` (`entry`) VALUES('105749'); +INSERT INTO `transmog_items` (`entry`) VALUES('105750'); +INSERT INTO `transmog_items` (`entry`) VALUES('105751'); +INSERT INTO `transmog_items` (`entry`) VALUES('105752'); +INSERT INTO `transmog_items` (`entry`) VALUES('105753'); +INSERT INTO `transmog_items` (`entry`) VALUES('105755'); +INSERT INTO `transmog_items` (`entry`) VALUES('105756'); +INSERT INTO `transmog_items` (`entry`) VALUES('105757'); +INSERT INTO `transmog_items` (`entry`) VALUES('105766'); +INSERT INTO `transmog_items` (`entry`) VALUES('105767'); +INSERT INTO `transmog_items` (`entry`) VALUES('105770'); +INSERT INTO `transmog_items` (`entry`) VALUES('105777'); +INSERT INTO `transmog_items` (`entry`) VALUES('105780'); +INSERT INTO `transmog_items` (`entry`) VALUES('105781'); +INSERT INTO `transmog_items` (`entry`) VALUES('105782'); +INSERT INTO `transmog_items` (`entry`) VALUES('105783'); +INSERT INTO `transmog_items` (`entry`) VALUES('105812'); +INSERT INTO `transmog_items` (`entry`) VALUES('105814'); +INSERT INTO `transmog_items` (`entry`) VALUES('105817'); +INSERT INTO `transmog_items` (`entry`) VALUES('105818'); +INSERT INTO `transmog_items` (`entry`) VALUES('105819'); +INSERT INTO `transmog_items` (`entry`) VALUES('105820'); +INSERT INTO `transmog_items` (`entry`) VALUES('105821'); +INSERT INTO `transmog_items` (`entry`) VALUES('105822'); +INSERT INTO `transmog_items` (`entry`) VALUES('105936'); +INSERT INTO `transmog_items` (`entry`) VALUES('105939'); +INSERT INTO `transmog_items` (`entry`) VALUES('105940'); +INSERT INTO `transmog_items` (`entry`) VALUES('105941'); +INSERT INTO `transmog_items` (`entry`) VALUES('105943'); +INSERT INTO `transmog_items` (`entry`) VALUES('105944'); +INSERT INTO `transmog_items` (`entry`) VALUES('105956'); +INSERT INTO `transmog_items` (`entry`) VALUES('105957'); +INSERT INTO `transmog_items` (`entry`) VALUES('105958'); +INSERT INTO `transmog_items` (`entry`) VALUES('105961'); +INSERT INTO `transmog_items` (`entry`) VALUES('105962'); +INSERT INTO `transmog_items` (`entry`) VALUES('105963'); +INSERT INTO `transmog_items` (`entry`) VALUES('105964'); +INSERT INTO `transmog_items` (`entry`) VALUES('105965'); +INSERT INTO `transmog_items` (`entry`) VALUES('105966'); +INSERT INTO `transmog_items` (`entry`) VALUES('105967'); +INSERT INTO `transmog_items` (`entry`) VALUES('105968'); +INSERT INTO `transmog_items` (`entry`) VALUES('105969'); +INSERT INTO `transmog_items` (`entry`) VALUES('105970'); +INSERT INTO `transmog_items` (`entry`) VALUES('105971'); +INSERT INTO `transmog_items` (`entry`) VALUES('105975'); +INSERT INTO `transmog_items` (`entry`) VALUES('106040'); +INSERT INTO `transmog_items` (`entry`) VALUES('106058'); +INSERT INTO `transmog_items` (`entry`) VALUES('106059'); +INSERT INTO `transmog_items` (`entry`) VALUES('106060'); +INSERT INTO `transmog_items` (`entry`) VALUES('106061'); +INSERT INTO `transmog_items` (`entry`) VALUES('106062'); +INSERT INTO `transmog_items` (`entry`) VALUES('106063'); +INSERT INTO `transmog_items` (`entry`) VALUES('106070'); +INSERT INTO `transmog_items` (`entry`) VALUES('106076'); +INSERT INTO `transmog_items` (`entry`) VALUES('106078'); +INSERT INTO `transmog_items` (`entry`) VALUES('106084'); +INSERT INTO `transmog_items` (`entry`) VALUES('106085'); +INSERT INTO `transmog_items` (`entry`) VALUES('106087'); +INSERT INTO `transmog_items` (`entry`) VALUES('106092'); +INSERT INTO `transmog_items` (`entry`) VALUES('106094'); +INSERT INTO `transmog_items` (`entry`) VALUES('106095'); +INSERT INTO `transmog_items` (`entry`) VALUES('106098'); +INSERT INTO `transmog_items` (`entry`) VALUES('106116'); +INSERT INTO `transmog_items` (`entry`) VALUES('106118'); +INSERT INTO `transmog_items` (`entry`) VALUES('106119'); +INSERT INTO `transmog_items` (`entry`) VALUES('106121'); +INSERT INTO `transmog_items` (`entry`) VALUES('106123'); +INSERT INTO `transmog_items` (`entry`) VALUES('106124'); +INSERT INTO `transmog_items` (`entry`) VALUES('106126'); +INSERT INTO `transmog_items` (`entry`) VALUES('106129'); +INSERT INTO `transmog_items` (`entry`) VALUES('106131'); +INSERT INTO `transmog_items` (`entry`) VALUES('106135'); +INSERT INTO `transmog_items` (`entry`) VALUES('106137'); +INSERT INTO `transmog_items` (`entry`) VALUES('106139'); +INSERT INTO `transmog_items` (`entry`) VALUES('106140'); +INSERT INTO `transmog_items` (`entry`) VALUES('106144'); +INSERT INTO `transmog_items` (`entry`) VALUES('106147'); +INSERT INTO `transmog_items` (`entry`) VALUES('106148'); +INSERT INTO `transmog_items` (`entry`) VALUES('106171'); +INSERT INTO `transmog_items` (`entry`) VALUES('106173'); +INSERT INTO `transmog_items` (`entry`) VALUES('106174'); +INSERT INTO `transmog_items` (`entry`) VALUES('106176'); +INSERT INTO `transmog_items` (`entry`) VALUES('106177'); +INSERT INTO `transmog_items` (`entry`) VALUES('106179'); +INSERT INTO `transmog_items` (`entry`) VALUES('106180'); +INSERT INTO `transmog_items` (`entry`) VALUES('106185'); +INSERT INTO `transmog_items` (`entry`) VALUES('106187'); +INSERT INTO `transmog_items` (`entry`) VALUES('106188'); +INSERT INTO `transmog_items` (`entry`) VALUES('106189'); +INSERT INTO `transmog_items` (`entry`) VALUES('106191'); +INSERT INTO `transmog_items` (`entry`) VALUES('106195'); +INSERT INTO `transmog_items` (`entry`) VALUES('106196'); +INSERT INTO `transmog_items` (`entry`) VALUES('106197'); +INSERT INTO `transmog_items` (`entry`) VALUES('106198'); +INSERT INTO `transmog_items` (`entry`) VALUES('106200'); +INSERT INTO `transmog_items` (`entry`) VALUES('106201'); +INSERT INTO `transmog_items` (`entry`) VALUES('106202'); +INSERT INTO `transmog_items` (`entry`) VALUES('106203'); +INSERT INTO `transmog_items` (`entry`) VALUES('106204'); +INSERT INTO `transmog_items` (`entry`) VALUES('106206'); +INSERT INTO `transmog_items` (`entry`) VALUES('106219'); +INSERT INTO `transmog_items` (`entry`) VALUES('106220'); +INSERT INTO `transmog_items` (`entry`) VALUES('106223'); +INSERT INTO `transmog_items` (`entry`) VALUES('106226'); +INSERT INTO `transmog_items` (`entry`) VALUES('106238'); +INSERT INTO `transmog_items` (`entry`) VALUES('106239'); +INSERT INTO `transmog_items` (`entry`) VALUES('106240'); +INSERT INTO `transmog_items` (`entry`) VALUES('106241'); +INSERT INTO `transmog_items` (`entry`) VALUES('106242'); +INSERT INTO `transmog_items` (`entry`) VALUES('106243'); +INSERT INTO `transmog_items` (`entry`) VALUES('106256'); +INSERT INTO `transmog_items` (`entry`) VALUES('106263'); +INSERT INTO `transmog_items` (`entry`) VALUES('106264'); +INSERT INTO `transmog_items` (`entry`) VALUES('106266'); +INSERT INTO `transmog_items` (`entry`) VALUES('106267'); +INSERT INTO `transmog_items` (`entry`) VALUES('106268'); +INSERT INTO `transmog_items` (`entry`) VALUES('106269'); +INSERT INTO `transmog_items` (`entry`) VALUES('106282'); +INSERT INTO `transmog_items` (`entry`) VALUES('106314'); +INSERT INTO `transmog_items` (`entry`) VALUES('106315'); +INSERT INTO `transmog_items` (`entry`) VALUES('106319'); +INSERT INTO `transmog_items` (`entry`) VALUES('106320'); +INSERT INTO `transmog_items` (`entry`) VALUES('106323'); +INSERT INTO `transmog_items` (`entry`) VALUES('106324'); +INSERT INTO `transmog_items` (`entry`) VALUES('106331'); +INSERT INTO `transmog_items` (`entry`) VALUES('106333'); +INSERT INTO `transmog_items` (`entry`) VALUES('106335'); +INSERT INTO `transmog_items` (`entry`) VALUES('106336'); +INSERT INTO `transmog_items` (`entry`) VALUES('106337'); +INSERT INTO `transmog_items` (`entry`) VALUES('106340'); +INSERT INTO `transmog_items` (`entry`) VALUES('106350'); +INSERT INTO `transmog_items` (`entry`) VALUES('106360'); +INSERT INTO `transmog_items` (`entry`) VALUES('106365'); +INSERT INTO `transmog_items` (`entry`) VALUES('106366'); +INSERT INTO `transmog_items` (`entry`) VALUES('106367'); +INSERT INTO `transmog_items` (`entry`) VALUES('106378'); +INSERT INTO `transmog_items` (`entry`) VALUES('106379'); +INSERT INTO `transmog_items` (`entry`) VALUES('106380'); +INSERT INTO `transmog_items` (`entry`) VALUES('106381'); +INSERT INTO `transmog_items` (`entry`) VALUES('106382'); +INSERT INTO `transmog_items` (`entry`) VALUES('106383'); +INSERT INTO `transmog_items` (`entry`) VALUES('106386'); +INSERT INTO `transmog_items` (`entry`) VALUES('106387'); +INSERT INTO `transmog_items` (`entry`) VALUES('106388'); +INSERT INTO `transmog_items` (`entry`) VALUES('106389'); +INSERT INTO `transmog_items` (`entry`) VALUES('106392'); +INSERT INTO `transmog_items` (`entry`) VALUES('106393'); +INSERT INTO `transmog_items` (`entry`) VALUES('106394'); +INSERT INTO `transmog_items` (`entry`) VALUES('106395'); +INSERT INTO `transmog_items` (`entry`) VALUES('106396'); +INSERT INTO `transmog_items` (`entry`) VALUES('106397'); +INSERT INTO `transmog_items` (`entry`) VALUES('106398'); +INSERT INTO `transmog_items` (`entry`) VALUES('106399'); +INSERT INTO `transmog_items` (`entry`) VALUES('106400'); +INSERT INTO `transmog_items` (`entry`) VALUES('106402'); +INSERT INTO `transmog_items` (`entry`) VALUES('106403'); +INSERT INTO `transmog_items` (`entry`) VALUES('106404'); +INSERT INTO `transmog_items` (`entry`) VALUES('106405'); +INSERT INTO `transmog_items` (`entry`) VALUES('106406'); +INSERT INTO `transmog_items` (`entry`) VALUES('106407'); +INSERT INTO `transmog_items` (`entry`) VALUES('106408'); +INSERT INTO `transmog_items` (`entry`) VALUES('106409'); +INSERT INTO `transmog_items` (`entry`) VALUES('106410'); +INSERT INTO `transmog_items` (`entry`) VALUES('106411'); +INSERT INTO `transmog_items` (`entry`) VALUES('106412'); +INSERT INTO `transmog_items` (`entry`) VALUES('106413'); +INSERT INTO `transmog_items` (`entry`) VALUES('106415'); +INSERT INTO `transmog_items` (`entry`) VALUES('106416'); +INSERT INTO `transmog_items` (`entry`) VALUES('106417'); +INSERT INTO `transmog_items` (`entry`) VALUES('106418'); +INSERT INTO `transmog_items` (`entry`) VALUES('106419'); +INSERT INTO `transmog_items` (`entry`) VALUES('106420'); +INSERT INTO `transmog_items` (`entry`) VALUES('106421'); +INSERT INTO `transmog_items` (`entry`) VALUES('106422'); +INSERT INTO `transmog_items` (`entry`) VALUES('106423'); +INSERT INTO `transmog_items` (`entry`) VALUES('106424'); +INSERT INTO `transmog_items` (`entry`) VALUES('106425'); +INSERT INTO `transmog_items` (`entry`) VALUES('106426'); +INSERT INTO `transmog_items` (`entry`) VALUES('106427'); +INSERT INTO `transmog_items` (`entry`) VALUES('106428'); +INSERT INTO `transmog_items` (`entry`) VALUES('106429'); +INSERT INTO `transmog_items` (`entry`) VALUES('106430'); +INSERT INTO `transmog_items` (`entry`) VALUES('106431'); +INSERT INTO `transmog_items` (`entry`) VALUES('106432'); +INSERT INTO `transmog_items` (`entry`) VALUES('106433'); +INSERT INTO `transmog_items` (`entry`) VALUES('106447'); +INSERT INTO `transmog_items` (`entry`) VALUES('106448'); +INSERT INTO `transmog_items` (`entry`) VALUES('106449'); +INSERT INTO `transmog_items` (`entry`) VALUES('106459'); +INSERT INTO `transmog_items` (`entry`) VALUES('106460'); +INSERT INTO `transmog_items` (`entry`) VALUES('106461'); +INSERT INTO `transmog_items` (`entry`) VALUES('106465'); +INSERT INTO `transmog_items` (`entry`) VALUES('106466'); +INSERT INTO `transmog_items` (`entry`) VALUES('106467'); +INSERT INTO `transmog_items` (`entry`) VALUES('106468'); +INSERT INTO `transmog_items` (`entry`) VALUES('106469'); +INSERT INTO `transmog_items` (`entry`) VALUES('106472'); +INSERT INTO `transmog_items` (`entry`) VALUES('106473'); +INSERT INTO `transmog_items` (`entry`) VALUES('106477'); +INSERT INTO `transmog_items` (`entry`) VALUES('106478'); +INSERT INTO `transmog_items` (`entry`) VALUES('106480'); +INSERT INTO `transmog_items` (`entry`) VALUES('106481'); +INSERT INTO `transmog_items` (`entry`) VALUES('106482'); +INSERT INTO `transmog_items` (`entry`) VALUES('106502'); +INSERT INTO `transmog_items` (`entry`) VALUES('106503'); +INSERT INTO `transmog_items` (`entry`) VALUES('106506'); +INSERT INTO `transmog_items` (`entry`) VALUES('106507'); +INSERT INTO `transmog_items` (`entry`) VALUES('106508'); +INSERT INTO `transmog_items` (`entry`) VALUES('106509'); +INSERT INTO `transmog_items` (`entry`) VALUES('106510'); +INSERT INTO `transmog_items` (`entry`) VALUES('106511'); +INSERT INTO `transmog_items` (`entry`) VALUES('106512'); +INSERT INTO `transmog_items` (`entry`) VALUES('106513'); +INSERT INTO `transmog_items` (`entry`) VALUES('106514'); +INSERT INTO `transmog_items` (`entry`) VALUES('106515'); +INSERT INTO `transmog_items` (`entry`) VALUES('106517'); +INSERT INTO `transmog_items` (`entry`) VALUES('106518'); +INSERT INTO `transmog_items` (`entry`) VALUES('106519'); +INSERT INTO `transmog_items` (`entry`) VALUES('106520'); +INSERT INTO `transmog_items` (`entry`) VALUES('106521'); +INSERT INTO `transmog_items` (`entry`) VALUES('106523'); +INSERT INTO `transmog_items` (`entry`) VALUES('106524'); +INSERT INTO `transmog_items` (`entry`) VALUES('106525'); +INSERT INTO `transmog_items` (`entry`) VALUES('106526'); +INSERT INTO `transmog_items` (`entry`) VALUES('106527'); +INSERT INTO `transmog_items` (`entry`) VALUES('106528'); +INSERT INTO `transmog_items` (`entry`) VALUES('106531'); +INSERT INTO `transmog_items` (`entry`) VALUES('106536'); +INSERT INTO `transmog_items` (`entry`) VALUES('106537'); +INSERT INTO `transmog_items` (`entry`) VALUES('106538'); +INSERT INTO `transmog_items` (`entry`) VALUES('106539'); +INSERT INTO `transmog_items` (`entry`) VALUES('106540'); +INSERT INTO `transmog_items` (`entry`) VALUES('106541'); +INSERT INTO `transmog_items` (`entry`) VALUES('106542'); +INSERT INTO `transmog_items` (`entry`) VALUES('106543'); +INSERT INTO `transmog_items` (`entry`) VALUES('106545'); +INSERT INTO `transmog_items` (`entry`) VALUES('106546'); +INSERT INTO `transmog_items` (`entry`) VALUES('106547'); +INSERT INTO `transmog_items` (`entry`) VALUES('106548'); +INSERT INTO `transmog_items` (`entry`) VALUES('106549'); +INSERT INTO `transmog_items` (`entry`) VALUES('106550'); +INSERT INTO `transmog_items` (`entry`) VALUES('106551'); +INSERT INTO `transmog_items` (`entry`) VALUES('106552'); +INSERT INTO `transmog_items` (`entry`) VALUES('106553'); +INSERT INTO `transmog_items` (`entry`) VALUES('106554'); +INSERT INTO `transmog_items` (`entry`) VALUES('106555'); +INSERT INTO `transmog_items` (`entry`) VALUES('106556'); +INSERT INTO `transmog_items` (`entry`) VALUES('106557'); +INSERT INTO `transmog_items` (`entry`) VALUES('106558'); +INSERT INTO `transmog_items` (`entry`) VALUES('106559'); +INSERT INTO `transmog_items` (`entry`) VALUES('106560'); +INSERT INTO `transmog_items` (`entry`) VALUES('106561'); +INSERT INTO `transmog_items` (`entry`) VALUES('106562'); +INSERT INTO `transmog_items` (`entry`) VALUES('106563'); +INSERT INTO `transmog_items` (`entry`) VALUES('106564'); +INSERT INTO `transmog_items` (`entry`) VALUES('106565'); +INSERT INTO `transmog_items` (`entry`) VALUES('106566'); +INSERT INTO `transmog_items` (`entry`) VALUES('106567'); +INSERT INTO `transmog_items` (`entry`) VALUES('106568'); +INSERT INTO `transmog_items` (`entry`) VALUES('106569'); +INSERT INTO `transmog_items` (`entry`) VALUES('106570'); +INSERT INTO `transmog_items` (`entry`) VALUES('106571'); +INSERT INTO `transmog_items` (`entry`) VALUES('106572'); +INSERT INTO `transmog_items` (`entry`) VALUES('106573'); +INSERT INTO `transmog_items` (`entry`) VALUES('106574'); +INSERT INTO `transmog_items` (`entry`) VALUES('106575'); +INSERT INTO `transmog_items` (`entry`) VALUES('106576'); +INSERT INTO `transmog_items` (`entry`) VALUES('106577'); +INSERT INTO `transmog_items` (`entry`) VALUES('106578'); +INSERT INTO `transmog_items` (`entry`) VALUES('106579'); +INSERT INTO `transmog_items` (`entry`) VALUES('106580'); +INSERT INTO `transmog_items` (`entry`) VALUES('106581'); +INSERT INTO `transmog_items` (`entry`) VALUES('106582'); +INSERT INTO `transmog_items` (`entry`) VALUES('106583'); +INSERT INTO `transmog_items` (`entry`) VALUES('106584'); +INSERT INTO `transmog_items` (`entry`) VALUES('106585'); +INSERT INTO `transmog_items` (`entry`) VALUES('106586'); +INSERT INTO `transmog_items` (`entry`) VALUES('106587'); +INSERT INTO `transmog_items` (`entry`) VALUES('106588'); +INSERT INTO `transmog_items` (`entry`) VALUES('106590'); +INSERT INTO `transmog_items` (`entry`) VALUES('106591'); +INSERT INTO `transmog_items` (`entry`) VALUES('106592'); +INSERT INTO `transmog_items` (`entry`) VALUES('106593'); +INSERT INTO `transmog_items` (`entry`) VALUES('106594'); +INSERT INTO `transmog_items` (`entry`) VALUES('106595'); +INSERT INTO `transmog_items` (`entry`) VALUES('106596'); +INSERT INTO `transmog_items` (`entry`) VALUES('106597'); +INSERT INTO `transmog_items` (`entry`) VALUES('106598'); +INSERT INTO `transmog_items` (`entry`) VALUES('106599'); +INSERT INTO `transmog_items` (`entry`) VALUES('106600'); +INSERT INTO `transmog_items` (`entry`) VALUES('106601'); +INSERT INTO `transmog_items` (`entry`) VALUES('106602'); +INSERT INTO `transmog_items` (`entry`) VALUES('106603'); +INSERT INTO `transmog_items` (`entry`) VALUES('106604'); +INSERT INTO `transmog_items` (`entry`) VALUES('106605'); +INSERT INTO `transmog_items` (`entry`) VALUES('106607'); +INSERT INTO `transmog_items` (`entry`) VALUES('106608'); +INSERT INTO `transmog_items` (`entry`) VALUES('106609'); +INSERT INTO `transmog_items` (`entry`) VALUES('106610'); +INSERT INTO `transmog_items` (`entry`) VALUES('106611'); +INSERT INTO `transmog_items` (`entry`) VALUES('106612'); +INSERT INTO `transmog_items` (`entry`) VALUES('106613'); +INSERT INTO `transmog_items` (`entry`) VALUES('106614'); +INSERT INTO `transmog_items` (`entry`) VALUES('106615'); +INSERT INTO `transmog_items` (`entry`) VALUES('106616'); +INSERT INTO `transmog_items` (`entry`) VALUES('106617'); +INSERT INTO `transmog_items` (`entry`) VALUES('106627'); +INSERT INTO `transmog_items` (`entry`) VALUES('106628'); +INSERT INTO `transmog_items` (`entry`) VALUES('106629'); +INSERT INTO `transmog_items` (`entry`) VALUES('106630'); +INSERT INTO `transmog_items` (`entry`) VALUES('106632'); +INSERT INTO `transmog_items` (`entry`) VALUES('106642'); +INSERT INTO `transmog_items` (`entry`) VALUES('106651'); +INSERT INTO `transmog_items` (`entry`) VALUES('106659'); +INSERT INTO `transmog_items` (`entry`) VALUES('106660'); +INSERT INTO `transmog_items` (`entry`) VALUES('106664'); +INSERT INTO `transmog_items` (`entry`) VALUES('106665'); +INSERT INTO `transmog_items` (`entry`) VALUES('106666'); +INSERT INTO `transmog_items` (`entry`) VALUES('106667'); +INSERT INTO `transmog_items` (`entry`) VALUES('106668'); +INSERT INTO `transmog_items` (`entry`) VALUES('106670'); +INSERT INTO `transmog_items` (`entry`) VALUES('106671'); +INSERT INTO `transmog_items` (`entry`) VALUES('106675'); +INSERT INTO `transmog_items` (`entry`) VALUES('106676'); +INSERT INTO `transmog_items` (`entry`) VALUES('106677'); +INSERT INTO `transmog_items` (`entry`) VALUES('106679'); +INSERT INTO `transmog_items` (`entry`) VALUES('106681'); +INSERT INTO `transmog_items` (`entry`) VALUES('106682'); +INSERT INTO `transmog_items` (`entry`) VALUES('106685'); +INSERT INTO `transmog_items` (`entry`) VALUES('106686'); +INSERT INTO `transmog_items` (`entry`) VALUES('106687'); +INSERT INTO `transmog_items` (`entry`) VALUES('106688'); +INSERT INTO `transmog_items` (`entry`) VALUES('106690'); +INSERT INTO `transmog_items` (`entry`) VALUES('106691'); +INSERT INTO `transmog_items` (`entry`) VALUES('106694'); +INSERT INTO `transmog_items` (`entry`) VALUES('106696'); +INSERT INTO `transmog_items` (`entry`) VALUES('106697'); +INSERT INTO `transmog_items` (`entry`) VALUES('106709'); +INSERT INTO `transmog_items` (`entry`) VALUES('106713'); +INSERT INTO `transmog_items` (`entry`) VALUES('106719'); +INSERT INTO `transmog_items` (`entry`) VALUES('106720'); +INSERT INTO `transmog_items` (`entry`) VALUES('106721'); +INSERT INTO `transmog_items` (`entry`) VALUES('106722'); +INSERT INTO `transmog_items` (`entry`) VALUES('106725'); +INSERT INTO `transmog_items` (`entry`) VALUES('106726'); +INSERT INTO `transmog_items` (`entry`) VALUES('106727'); +INSERT INTO `transmog_items` (`entry`) VALUES('106729'); +INSERT INTO `transmog_items` (`entry`) VALUES('106730'); +INSERT INTO `transmog_items` (`entry`) VALUES('106731'); +INSERT INTO `transmog_items` (`entry`) VALUES('106732'); +INSERT INTO `transmog_items` (`entry`) VALUES('106733'); +INSERT INTO `transmog_items` (`entry`) VALUES('106737'); +INSERT INTO `transmog_items` (`entry`) VALUES('106739'); +INSERT INTO `transmog_items` (`entry`) VALUES('106740'); +INSERT INTO `transmog_items` (`entry`) VALUES('106742'); +INSERT INTO `transmog_items` (`entry`) VALUES('106744'); +INSERT INTO `transmog_items` (`entry`) VALUES('106745'); +INSERT INTO `transmog_items` (`entry`) VALUES('106746'); +INSERT INTO `transmog_items` (`entry`) VALUES('106747'); +INSERT INTO `transmog_items` (`entry`) VALUES('106751'); +INSERT INTO `transmog_items` (`entry`) VALUES('106752'); +INSERT INTO `transmog_items` (`entry`) VALUES('106773'); +INSERT INTO `transmog_items` (`entry`) VALUES('106780'); +INSERT INTO `transmog_items` (`entry`) VALUES('106784'); +INSERT INTO `transmog_items` (`entry`) VALUES('106788'); +INSERT INTO `transmog_items` (`entry`) VALUES('106789'); +INSERT INTO `transmog_items` (`entry`) VALUES('106791'); +INSERT INTO `transmog_items` (`entry`) VALUES('106792'); +INSERT INTO `transmog_items` (`entry`) VALUES('106793'); +INSERT INTO `transmog_items` (`entry`) VALUES('106794'); +INSERT INTO `transmog_items` (`entry`) VALUES('106797'); +INSERT INTO `transmog_items` (`entry`) VALUES('106798'); +INSERT INTO `transmog_items` (`entry`) VALUES('106801'); +INSERT INTO `transmog_items` (`entry`) VALUES('106804'); +INSERT INTO `transmog_items` (`entry`) VALUES('106806'); +INSERT INTO `transmog_items` (`entry`) VALUES('106828'); +INSERT INTO `transmog_items` (`entry`) VALUES('106830'); +INSERT INTO `transmog_items` (`entry`) VALUES('106831'); +INSERT INTO `transmog_items` (`entry`) VALUES('106832'); +INSERT INTO `transmog_items` (`entry`) VALUES('106834'); +INSERT INTO `transmog_items` (`entry`) VALUES('106835'); +INSERT INTO `transmog_items` (`entry`) VALUES('106836'); +INSERT INTO `transmog_items` (`entry`) VALUES('106900'); +INSERT INTO `transmog_items` (`entry`) VALUES('106901'); +INSERT INTO `transmog_items` (`entry`) VALUES('106902'); +INSERT INTO `transmog_items` (`entry`) VALUES('106903'); +INSERT INTO `transmog_items` (`entry`) VALUES('106904'); +INSERT INTO `transmog_items` (`entry`) VALUES('106905'); +INSERT INTO `transmog_items` (`entry`) VALUES('106906'); +INSERT INTO `transmog_items` (`entry`) VALUES('106907'); +INSERT INTO `transmog_items` (`entry`) VALUES('106908'); +INSERT INTO `transmog_items` (`entry`) VALUES('106910'); +INSERT INTO `transmog_items` (`entry`) VALUES('106911'); +INSERT INTO `transmog_items` (`entry`) VALUES('106968'); +INSERT INTO `transmog_items` (`entry`) VALUES('106969'); +INSERT INTO `transmog_items` (`entry`) VALUES('106970'); +INSERT INTO `transmog_items` (`entry`) VALUES('106971'); +INSERT INTO `transmog_items` (`entry`) VALUES('106972'); +INSERT INTO `transmog_items` (`entry`) VALUES('106973'); +INSERT INTO `transmog_items` (`entry`) VALUES('106974'); +INSERT INTO `transmog_items` (`entry`) VALUES('106975'); +INSERT INTO `transmog_items` (`entry`) VALUES('106980'); +INSERT INTO `transmog_items` (`entry`) VALUES('106981'); +INSERT INTO `transmog_items` (`entry`) VALUES('106982'); +INSERT INTO `transmog_items` (`entry`) VALUES('106983'); +INSERT INTO `transmog_items` (`entry`) VALUES('106998'); +INSERT INTO `transmog_items` (`entry`) VALUES('107000'); +INSERT INTO `transmog_items` (`entry`) VALUES('107001'); +INSERT INTO `transmog_items` (`entry`) VALUES('107002'); +INSERT INTO `transmog_items` (`entry`) VALUES('107003'); +INSERT INTO `transmog_items` (`entry`) VALUES('107004'); +INSERT INTO `transmog_items` (`entry`) VALUES('107005'); +INSERT INTO `transmog_items` (`entry`) VALUES('107026'); +INSERT INTO `transmog_items` (`entry`) VALUES('107027'); +INSERT INTO `transmog_items` (`entry`) VALUES('107046'); +INSERT INTO `transmog_items` (`entry`) VALUES('107047'); +INSERT INTO `transmog_items` (`entry`) VALUES('107048'); +INSERT INTO `transmog_items` (`entry`) VALUES('107049'); +INSERT INTO `transmog_items` (`entry`) VALUES('107050'); +INSERT INTO `transmog_items` (`entry`) VALUES('107051'); +INSERT INTO `transmog_items` (`entry`) VALUES('107052'); +INSERT INTO `transmog_items` (`entry`) VALUES('107053'); +INSERT INTO `transmog_items` (`entry`) VALUES('107054'); +INSERT INTO `transmog_items` (`entry`) VALUES('107055'); +INSERT INTO `transmog_items` (`entry`) VALUES('107056'); +INSERT INTO `transmog_items` (`entry`) VALUES('107057'); +INSERT INTO `transmog_items` (`entry`) VALUES('107058'); +INSERT INTO `transmog_items` (`entry`) VALUES('107059'); +INSERT INTO `transmog_items` (`entry`) VALUES('107060'); +INSERT INTO `transmog_items` (`entry`) VALUES('107061'); +INSERT INTO `transmog_items` (`entry`) VALUES('107062'); +INSERT INTO `transmog_items` (`entry`) VALUES('107063'); +INSERT INTO `transmog_items` (`entry`) VALUES('107064'); +INSERT INTO `transmog_items` (`entry`) VALUES('107065'); +INSERT INTO `transmog_items` (`entry`) VALUES('107095'); +INSERT INTO `transmog_items` (`entry`) VALUES('107106'); +INSERT INTO `transmog_items` (`entry`) VALUES('107107'); +INSERT INTO `transmog_items` (`entry`) VALUES('107108'); +INSERT INTO `transmog_items` (`entry`) VALUES('107109'); +INSERT INTO `transmog_items` (`entry`) VALUES('107110'); +INSERT INTO `transmog_items` (`entry`) VALUES('107111'); +INSERT INTO `transmog_items` (`entry`) VALUES('107112'); +INSERT INTO `transmog_items` (`entry`) VALUES('107113'); +INSERT INTO `transmog_items` (`entry`) VALUES('107116'); +INSERT INTO `transmog_items` (`entry`) VALUES('107117'); +INSERT INTO `transmog_items` (`entry`) VALUES('107120'); +INSERT INTO `transmog_items` (`entry`) VALUES('107129'); +INSERT INTO `transmog_items` (`entry`) VALUES('107130'); +INSERT INTO `transmog_items` (`entry`) VALUES('107132'); +INSERT INTO `transmog_items` (`entry`) VALUES('107133'); +INSERT INTO `transmog_items` (`entry`) VALUES('107166'); +INSERT INTO `transmog_items` (`entry`) VALUES('107170'); +INSERT INTO `transmog_items` (`entry`) VALUES('107187'); +INSERT INTO `transmog_items` (`entry`) VALUES('107188'); +INSERT INTO `transmog_items` (`entry`) VALUES('107189'); +INSERT INTO `transmog_items` (`entry`) VALUES('107229'); +INSERT INTO `transmog_items` (`entry`) VALUES('107276'); +INSERT INTO `transmog_items` (`entry`) VALUES('107277'); +INSERT INTO `transmog_items` (`entry`) VALUES('107280'); +INSERT INTO `transmog_items` (`entry`) VALUES('107281'); +INSERT INTO `transmog_items` (`entry`) VALUES('107282'); +INSERT INTO `transmog_items` (`entry`) VALUES('107283'); +INSERT INTO `transmog_items` (`entry`) VALUES('107284'); +INSERT INTO `transmog_items` (`entry`) VALUES('107285'); +INSERT INTO `transmog_items` (`entry`) VALUES('107298'); +INSERT INTO `transmog_items` (`entry`) VALUES('107327'); +INSERT INTO `transmog_items` (`entry`) VALUES('107328'); +INSERT INTO `transmog_items` (`entry`) VALUES('107330'); +INSERT INTO `transmog_items` (`entry`) VALUES('107331'); +INSERT INTO `transmog_items` (`entry`) VALUES('107332'); +INSERT INTO `transmog_items` (`entry`) VALUES('107334'); +INSERT INTO `transmog_items` (`entry`) VALUES('107335'); +INSERT INTO `transmog_items` (`entry`) VALUES('107336'); +INSERT INTO `transmog_items` (`entry`) VALUES('107348'); +INSERT INTO `transmog_items` (`entry`) VALUES('107349'); +INSERT INTO `transmog_items` (`entry`) VALUES('107350'); +INSERT INTO `transmog_items` (`entry`) VALUES('107351'); +INSERT INTO `transmog_items` (`entry`) VALUES('107352'); +INSERT INTO `transmog_items` (`entry`) VALUES('107353'); +INSERT INTO `transmog_items` (`entry`) VALUES('107354'); +INSERT INTO `transmog_items` (`entry`) VALUES('107355'); +INSERT INTO `transmog_items` (`entry`) VALUES('107356'); +INSERT INTO `transmog_items` (`entry`) VALUES('107357'); +INSERT INTO `transmog_items` (`entry`) VALUES('107358'); +INSERT INTO `transmog_items` (`entry`) VALUES('107359'); +INSERT INTO `transmog_items` (`entry`) VALUES('107366'); +INSERT INTO `transmog_items` (`entry`) VALUES('107367'); +INSERT INTO `transmog_items` (`entry`) VALUES('107368'); +INSERT INTO `transmog_items` (`entry`) VALUES('107369'); +INSERT INTO `transmog_items` (`entry`) VALUES('107370'); +INSERT INTO `transmog_items` (`entry`) VALUES('107373'); +INSERT INTO `transmog_items` (`entry`) VALUES('107374'); +INSERT INTO `transmog_items` (`entry`) VALUES('107375'); +INSERT INTO `transmog_items` (`entry`) VALUES('107377'); +INSERT INTO `transmog_items` (`entry`) VALUES('107378'); +INSERT INTO `transmog_items` (`entry`) VALUES('107386'); +INSERT INTO `transmog_items` (`entry`) VALUES('107387'); +INSERT INTO `transmog_items` (`entry`) VALUES('107390'); +INSERT INTO `transmog_items` (`entry`) VALUES('107391'); +INSERT INTO `transmog_items` (`entry`) VALUES('107406'); +INSERT INTO `transmog_items` (`entry`) VALUES('107407'); +INSERT INTO `transmog_items` (`entry`) VALUES('107408'); +INSERT INTO `transmog_items` (`entry`) VALUES('107409'); +INSERT INTO `transmog_items` (`entry`) VALUES('107410'); +INSERT INTO `transmog_items` (`entry`) VALUES('107411'); +INSERT INTO `transmog_items` (`entry`) VALUES('107412'); +INSERT INTO `transmog_items` (`entry`) VALUES('107413'); +INSERT INTO `transmog_items` (`entry`) VALUES('107414'); +INSERT INTO `transmog_items` (`entry`) VALUES('107415'); +INSERT INTO `transmog_items` (`entry`) VALUES('107416'); +INSERT INTO `transmog_items` (`entry`) VALUES('107417'); +INSERT INTO `transmog_items` (`entry`) VALUES('107418'); +INSERT INTO `transmog_items` (`entry`) VALUES('107419'); +INSERT INTO `transmog_items` (`entry`) VALUES('107420'); +INSERT INTO `transmog_items` (`entry`) VALUES('107421'); +INSERT INTO `transmog_items` (`entry`) VALUES('107422'); +INSERT INTO `transmog_items` (`entry`) VALUES('107423'); +INSERT INTO `transmog_items` (`entry`) VALUES('107424'); +INSERT INTO `transmog_items` (`entry`) VALUES('107429'); +INSERT INTO `transmog_items` (`entry`) VALUES('107430'); +INSERT INTO `transmog_items` (`entry`) VALUES('107431'); +INSERT INTO `transmog_items` (`entry`) VALUES('107432'); +INSERT INTO `transmog_items` (`entry`) VALUES('107433'); +INSERT INTO `transmog_items` (`entry`) VALUES('107434'); +INSERT INTO `transmog_items` (`entry`) VALUES('107435'); +INSERT INTO `transmog_items` (`entry`) VALUES('107436'); +INSERT INTO `transmog_items` (`entry`) VALUES('107437'); +INSERT INTO `transmog_items` (`entry`) VALUES('107438'); +INSERT INTO `transmog_items` (`entry`) VALUES('107439'); +INSERT INTO `transmog_items` (`entry`) VALUES('107440'); +INSERT INTO `transmog_items` (`entry`) VALUES('107441'); +INSERT INTO `transmog_items` (`entry`) VALUES('107443'); +INSERT INTO `transmog_items` (`entry`) VALUES('107444'); +INSERT INTO `transmog_items` (`entry`) VALUES('107445'); +INSERT INTO `transmog_items` (`entry`) VALUES('107446'); +INSERT INTO `transmog_items` (`entry`) VALUES('107447'); +INSERT INTO `transmog_items` (`entry`) VALUES('107448'); +INSERT INTO `transmog_items` (`entry`) VALUES('107454'); +INSERT INTO `transmog_items` (`entry`) VALUES('107455'); +INSERT INTO `transmog_items` (`entry`) VALUES('107456'); +INSERT INTO `transmog_items` (`entry`) VALUES('107457'); +INSERT INTO `transmog_items` (`entry`) VALUES('107458'); +INSERT INTO `transmog_items` (`entry`) VALUES('107459'); +INSERT INTO `transmog_items` (`entry`) VALUES('107460'); +INSERT INTO `transmog_items` (`entry`) VALUES('107461'); +INSERT INTO `transmog_items` (`entry`) VALUES('107462'); +INSERT INTO `transmog_items` (`entry`) VALUES('107463'); +INSERT INTO `transmog_items` (`entry`) VALUES('107465'); +INSERT INTO `transmog_items` (`entry`) VALUES('107468'); +INSERT INTO `transmog_items` (`entry`) VALUES('107469'); +INSERT INTO `transmog_items` (`entry`) VALUES('107470'); +INSERT INTO `transmog_items` (`entry`) VALUES('107471'); +INSERT INTO `transmog_items` (`entry`) VALUES('107472'); +INSERT INTO `transmog_items` (`entry`) VALUES('107473'); +INSERT INTO `transmog_items` (`entry`) VALUES('107474'); +INSERT INTO `transmog_items` (`entry`) VALUES('107475'); +INSERT INTO `transmog_items` (`entry`) VALUES('107476'); +INSERT INTO `transmog_items` (`entry`) VALUES('107477'); +INSERT INTO `transmog_items` (`entry`) VALUES('107478'); +INSERT INTO `transmog_items` (`entry`) VALUES('107479'); +INSERT INTO `transmog_items` (`entry`) VALUES('107480'); +INSERT INTO `transmog_items` (`entry`) VALUES('107481'); +INSERT INTO `transmog_items` (`entry`) VALUES('107482'); +INSERT INTO `transmog_items` (`entry`) VALUES('107483'); +INSERT INTO `transmog_items` (`entry`) VALUES('107484'); +INSERT INTO `transmog_items` (`entry`) VALUES('107485'); +INSERT INTO `transmog_items` (`entry`) VALUES('107486'); +INSERT INTO `transmog_items` (`entry`) VALUES('107487'); +INSERT INTO `transmog_items` (`entry`) VALUES('107488'); +INSERT INTO `transmog_items` (`entry`) VALUES('107489'); +INSERT INTO `transmog_items` (`entry`) VALUES('107490'); +INSERT INTO `transmog_items` (`entry`) VALUES('107491'); +INSERT INTO `transmog_items` (`entry`) VALUES('107492'); +INSERT INTO `transmog_items` (`entry`) VALUES('107493'); +INSERT INTO `transmog_items` (`entry`) VALUES('107494'); +INSERT INTO `transmog_items` (`entry`) VALUES('107495'); +INSERT INTO `transmog_items` (`entry`) VALUES('107496'); +INSERT INTO `transmog_items` (`entry`) VALUES('107509'); +INSERT INTO `transmog_items` (`entry`) VALUES('107510'); +INSERT INTO `transmog_items` (`entry`) VALUES('107511'); +INSERT INTO `transmog_items` (`entry`) VALUES('107512'); +INSERT INTO `transmog_items` (`entry`) VALUES('107513'); +INSERT INTO `transmog_items` (`entry`) VALUES('107514'); +INSERT INTO `transmog_items` (`entry`) VALUES('107517'); +INSERT INTO `transmog_items` (`entry`) VALUES('107518'); +INSERT INTO `transmog_items` (`entry`) VALUES('107519'); +INSERT INTO `transmog_items` (`entry`) VALUES('107520'); +INSERT INTO `transmog_items` (`entry`) VALUES('107521'); +INSERT INTO `transmog_items` (`entry`) VALUES('107522'); +INSERT INTO `transmog_items` (`entry`) VALUES('107523'); +INSERT INTO `transmog_items` (`entry`) VALUES('107524'); +INSERT INTO `transmog_items` (`entry`) VALUES('107525'); +INSERT INTO `transmog_items` (`entry`) VALUES('107526'); +INSERT INTO `transmog_items` (`entry`) VALUES('107527'); +INSERT INTO `transmog_items` (`entry`) VALUES('107528'); +INSERT INTO `transmog_items` (`entry`) VALUES('107529'); +INSERT INTO `transmog_items` (`entry`) VALUES('107530'); +INSERT INTO `transmog_items` (`entry`) VALUES('107531'); +INSERT INTO `transmog_items` (`entry`) VALUES('107532'); +INSERT INTO `transmog_items` (`entry`) VALUES('107533'); +INSERT INTO `transmog_items` (`entry`) VALUES('107534'); +INSERT INTO `transmog_items` (`entry`) VALUES('107535'); +INSERT INTO `transmog_items` (`entry`) VALUES('107536'); +INSERT INTO `transmog_items` (`entry`) VALUES('107537'); +INSERT INTO `transmog_items` (`entry`) VALUES('107538'); +INSERT INTO `transmog_items` (`entry`) VALUES('107539'); +INSERT INTO `transmog_items` (`entry`) VALUES('107540'); +INSERT INTO `transmog_items` (`entry`) VALUES('107541'); +INSERT INTO `transmog_items` (`entry`) VALUES('107542'); +INSERT INTO `transmog_items` (`entry`) VALUES('107543'); +INSERT INTO `transmog_items` (`entry`) VALUES('107544'); +INSERT INTO `transmog_items` (`entry`) VALUES('107545'); +INSERT INTO `transmog_items` (`entry`) VALUES('107546'); +INSERT INTO `transmog_items` (`entry`) VALUES('107606'); +INSERT INTO `transmog_items` (`entry`) VALUES('107607'); +INSERT INTO `transmog_items` (`entry`) VALUES('107682'); +INSERT INTO `transmog_items` (`entry`) VALUES('107683'); +INSERT INTO `transmog_items` (`entry`) VALUES('107684'); +INSERT INTO `transmog_items` (`entry`) VALUES('107687'); +INSERT INTO `transmog_items` (`entry`) VALUES('107688'); +INSERT INTO `transmog_items` (`entry`) VALUES('107690'); +INSERT INTO `transmog_items` (`entry`) VALUES('107691'); +INSERT INTO `transmog_items` (`entry`) VALUES('107708'); +INSERT INTO `transmog_items` (`entry`) VALUES('107709'); +INSERT INTO `transmog_items` (`entry`) VALUES('107711'); +INSERT INTO `transmog_items` (`entry`) VALUES('107712'); +INSERT INTO `transmog_items` (`entry`) VALUES('107714'); +INSERT INTO `transmog_items` (`entry`) VALUES('107717'); +INSERT INTO `transmog_items` (`entry`) VALUES('107718'); +INSERT INTO `transmog_items` (`entry`) VALUES('107719'); +INSERT INTO `transmog_items` (`entry`) VALUES('107720'); +INSERT INTO `transmog_items` (`entry`) VALUES('107721'); +INSERT INTO `transmog_items` (`entry`) VALUES('107724'); +INSERT INTO `transmog_items` (`entry`) VALUES('107726'); +INSERT INTO `transmog_items` (`entry`) VALUES('107727'); +INSERT INTO `transmog_items` (`entry`) VALUES('107728'); +INSERT INTO `transmog_items` (`entry`) VALUES('107729'); +INSERT INTO `transmog_items` (`entry`) VALUES('107736'); +INSERT INTO `transmog_items` (`entry`) VALUES('107738'); +INSERT INTO `transmog_items` (`entry`) VALUES('107739'); +INSERT INTO `transmog_items` (`entry`) VALUES('107747'); +INSERT INTO `transmog_items` (`entry`) VALUES('107748'); +INSERT INTO `transmog_items` (`entry`) VALUES('107750'); +INSERT INTO `transmog_items` (`entry`) VALUES('107751'); +INSERT INTO `transmog_items` (`entry`) VALUES('107752'); +INSERT INTO `transmog_items` (`entry`) VALUES('107753'); +INSERT INTO `transmog_items` (`entry`) VALUES('107754'); +INSERT INTO `transmog_items` (`entry`) VALUES('107755'); +INSERT INTO `transmog_items` (`entry`) VALUES('107756'); +INSERT INTO `transmog_items` (`entry`) VALUES('107758'); +INSERT INTO `transmog_items` (`entry`) VALUES('107759'); +INSERT INTO `transmog_items` (`entry`) VALUES('107760'); +INSERT INTO `transmog_items` (`entry`) VALUES('107787'); +INSERT INTO `transmog_items` (`entry`) VALUES('107913'); +INSERT INTO `transmog_items` (`entry`) VALUES('107914'); +INSERT INTO `transmog_items` (`entry`) VALUES('107915'); +INSERT INTO `transmog_items` (`entry`) VALUES('107916'); +INSERT INTO `transmog_items` (`entry`) VALUES('107917'); +INSERT INTO `transmog_items` (`entry`) VALUES('107918'); +INSERT INTO `transmog_items` (`entry`) VALUES('107919'); +INSERT INTO `transmog_items` (`entry`) VALUES('107920'); +INSERT INTO `transmog_items` (`entry`) VALUES('107921'); +INSERT INTO `transmog_items` (`entry`) VALUES('107922'); +INSERT INTO `transmog_items` (`entry`) VALUES('107924'); +INSERT INTO `transmog_items` (`entry`) VALUES('107925'); +INSERT INTO `transmog_items` (`entry`) VALUES('107926'); +INSERT INTO `transmog_items` (`entry`) VALUES('107927'); +INSERT INTO `transmog_items` (`entry`) VALUES('107928'); +INSERT INTO `transmog_items` (`entry`) VALUES('107929'); +INSERT INTO `transmog_items` (`entry`) VALUES('107930'); +INSERT INTO `transmog_items` (`entry`) VALUES('107931'); +INSERT INTO `transmog_items` (`entry`) VALUES('107932'); +INSERT INTO `transmog_items` (`entry`) VALUES('107933'); +INSERT INTO `transmog_items` (`entry`) VALUES('107934'); +INSERT INTO `transmog_items` (`entry`) VALUES('107935'); +INSERT INTO `transmog_items` (`entry`) VALUES('107936'); +INSERT INTO `transmog_items` (`entry`) VALUES('107937'); +INSERT INTO `transmog_items` (`entry`) VALUES('107938'); +INSERT INTO `transmog_items` (`entry`) VALUES('107939'); +INSERT INTO `transmog_items` (`entry`) VALUES('107945'); +INSERT INTO `transmog_items` (`entry`) VALUES('107946'); +INSERT INTO `transmog_items` (`entry`) VALUES('107947'); +INSERT INTO `transmog_items` (`entry`) VALUES('107948'); +INSERT INTO `transmog_items` (`entry`) VALUES('107949'); +INSERT INTO `transmog_items` (`entry`) VALUES('107950'); +INSERT INTO `transmog_items` (`entry`) VALUES('107951'); +INSERT INTO `transmog_items` (`entry`) VALUES('107952'); +INSERT INTO `transmog_items` (`entry`) VALUES('107953'); +INSERT INTO `transmog_items` (`entry`) VALUES('107954'); +INSERT INTO `transmog_items` (`entry`) VALUES('107958'); +INSERT INTO `transmog_items` (`entry`) VALUES('107959'); +INSERT INTO `transmog_items` (`entry`) VALUES('107963'); +INSERT INTO `transmog_items` (`entry`) VALUES('107996'); +INSERT INTO `transmog_items` (`entry`) VALUES('108006'); +INSERT INTO `transmog_items` (`entry`) VALUES('108071'); +INSERT INTO `transmog_items` (`entry`) VALUES('108080'); +INSERT INTO `transmog_items` (`entry`) VALUES('108081'); +INSERT INTO `transmog_items` (`entry`) VALUES('108082'); +INSERT INTO `transmog_items` (`entry`) VALUES('108083'); +INSERT INTO `transmog_items` (`entry`) VALUES('108084'); +INSERT INTO `transmog_items` (`entry`) VALUES('108085'); +INSERT INTO `transmog_items` (`entry`) VALUES('108086'); +INSERT INTO `transmog_items` (`entry`) VALUES('108088'); +INSERT INTO `transmog_items` (`entry`) VALUES('108089'); +INSERT INTO `transmog_items` (`entry`) VALUES('108090'); +INSERT INTO `transmog_items` (`entry`) VALUES('108091'); +INSERT INTO `transmog_items` (`entry`) VALUES('108092'); +INSERT INTO `transmog_items` (`entry`) VALUES('108093'); +INSERT INTO `transmog_items` (`entry`) VALUES('108094'); +INSERT INTO `transmog_items` (`entry`) VALUES('108106'); +INSERT INTO `transmog_items` (`entry`) VALUES('108107'); +INSERT INTO `transmog_items` (`entry`) VALUES('108108'); +INSERT INTO `transmog_items` (`entry`) VALUES('108109'); +INSERT INTO `transmog_items` (`entry`) VALUES('108110'); +INSERT INTO `transmog_items` (`entry`) VALUES('108111'); +INSERT INTO `transmog_items` (`entry`) VALUES('108112'); +INSERT INTO `transmog_items` (`entry`) VALUES('108113'); +INSERT INTO `transmog_items` (`entry`) VALUES('108114'); +INSERT INTO `transmog_items` (`entry`) VALUES('108115'); +INSERT INTO `transmog_items` (`entry`) VALUES('108116'); +INSERT INTO `transmog_items` (`entry`) VALUES('108117'); +INSERT INTO `transmog_items` (`entry`) VALUES('108118'); +INSERT INTO `transmog_items` (`entry`) VALUES('108119'); +INSERT INTO `transmog_items` (`entry`) VALUES('108120'); +INSERT INTO `transmog_items` (`entry`) VALUES('108121'); +INSERT INTO `transmog_items` (`entry`) VALUES('108122'); +INSERT INTO `transmog_items` (`entry`) VALUES('108123'); +INSERT INTO `transmog_items` (`entry`) VALUES('108124'); +INSERT INTO `transmog_items` (`entry`) VALUES('108125'); +INSERT INTO `transmog_items` (`entry`) VALUES('108126'); +INSERT INTO `transmog_items` (`entry`) VALUES('108127'); +INSERT INTO `transmog_items` (`entry`) VALUES('108128'); +INSERT INTO `transmog_items` (`entry`) VALUES('108129'); +INSERT INTO `transmog_items` (`entry`) VALUES('108130'); +INSERT INTO `transmog_items` (`entry`) VALUES('108131'); +INSERT INTO `transmog_items` (`entry`) VALUES('108132'); +INSERT INTO `transmog_items` (`entry`) VALUES('108133'); +INSERT INTO `transmog_items` (`entry`) VALUES('108134'); +INSERT INTO `transmog_items` (`entry`) VALUES('108135'); +INSERT INTO `transmog_items` (`entry`) VALUES('108137'); +INSERT INTO `transmog_items` (`entry`) VALUES('108138'); +INSERT INTO `transmog_items` (`entry`) VALUES('108139'); +INSERT INTO `transmog_items` (`entry`) VALUES('108140'); +INSERT INTO `transmog_items` (`entry`) VALUES('108141'); +INSERT INTO `transmog_items` (`entry`) VALUES('108142'); +INSERT INTO `transmog_items` (`entry`) VALUES('108143'); +INSERT INTO `transmog_items` (`entry`) VALUES('108144'); +INSERT INTO `transmog_items` (`entry`) VALUES('108156'); +INSERT INTO `transmog_items` (`entry`) VALUES('108157'); +INSERT INTO `transmog_items` (`entry`) VALUES('108158'); +INSERT INTO `transmog_items` (`entry`) VALUES('108159'); +INSERT INTO `transmog_items` (`entry`) VALUES('108160'); +INSERT INTO `transmog_items` (`entry`) VALUES('108161'); +INSERT INTO `transmog_items` (`entry`) VALUES('108162'); +INSERT INTO `transmog_items` (`entry`) VALUES('108163'); +INSERT INTO `transmog_items` (`entry`) VALUES('108174'); +INSERT INTO `transmog_items` (`entry`) VALUES('108175'); +INSERT INTO `transmog_items` (`entry`) VALUES('108176'); +INSERT INTO `transmog_items` (`entry`) VALUES('108179'); +INSERT INTO `transmog_items` (`entry`) VALUES('108180'); +INSERT INTO `transmog_items` (`entry`) VALUES('108181'); +INSERT INTO `transmog_items` (`entry`) VALUES('108182'); +INSERT INTO `transmog_items` (`entry`) VALUES('108183'); +INSERT INTO `transmog_items` (`entry`) VALUES('108184'); +INSERT INTO `transmog_items` (`entry`) VALUES('108185'); +INSERT INTO `transmog_items` (`entry`) VALUES('108186'); +INSERT INTO `transmog_items` (`entry`) VALUES('108187'); +INSERT INTO `transmog_items` (`entry`) VALUES('108188'); +INSERT INTO `transmog_items` (`entry`) VALUES('108189'); +INSERT INTO `transmog_items` (`entry`) VALUES('108191'); +INSERT INTO `transmog_items` (`entry`) VALUES('108192'); +INSERT INTO `transmog_items` (`entry`) VALUES('108193'); +INSERT INTO `transmog_items` (`entry`) VALUES('108194'); +INSERT INTO `transmog_items` (`entry`) VALUES('108195'); +INSERT INTO `transmog_items` (`entry`) VALUES('108197'); +INSERT INTO `transmog_items` (`entry`) VALUES('108198'); +INSERT INTO `transmog_items` (`entry`) VALUES('108200'); +INSERT INTO `transmog_items` (`entry`) VALUES('108201'); +INSERT INTO `transmog_items` (`entry`) VALUES('108202'); +INSERT INTO `transmog_items` (`entry`) VALUES('108203'); +INSERT INTO `transmog_items` (`entry`) VALUES('108204'); +INSERT INTO `transmog_items` (`entry`) VALUES('108205'); +INSERT INTO `transmog_items` (`entry`) VALUES('108206'); +INSERT INTO `transmog_items` (`entry`) VALUES('108207'); +INSERT INTO `transmog_items` (`entry`) VALUES('108208'); +INSERT INTO `transmog_items` (`entry`) VALUES('108209'); +INSERT INTO `transmog_items` (`entry`) VALUES('108210'); +INSERT INTO `transmog_items` (`entry`) VALUES('108211'); +INSERT INTO `transmog_items` (`entry`) VALUES('108212'); +INSERT INTO `transmog_items` (`entry`) VALUES('108213'); +INSERT INTO `transmog_items` (`entry`) VALUES('108214'); +INSERT INTO `transmog_items` (`entry`) VALUES('108215'); +INSERT INTO `transmog_items` (`entry`) VALUES('108216'); +INSERT INTO `transmog_items` (`entry`) VALUES('108245'); +INSERT INTO `transmog_items` (`entry`) VALUES('108246'); +INSERT INTO `transmog_items` (`entry`) VALUES('108247'); +INSERT INTO `transmog_items` (`entry`) VALUES('108248'); +INSERT INTO `transmog_items` (`entry`) VALUES('108249'); +INSERT INTO `transmog_items` (`entry`) VALUES('108250'); +INSERT INTO `transmog_items` (`entry`) VALUES('108251'); +INSERT INTO `transmog_items` (`entry`) VALUES('108252'); +INSERT INTO `transmog_items` (`entry`) VALUES('108253'); +INSERT INTO `transmog_items` (`entry`) VALUES('108254'); +INSERT INTO `transmog_items` (`entry`) VALUES('108255'); +INSERT INTO `transmog_items` (`entry`) VALUES('108256'); +INSERT INTO `transmog_items` (`entry`) VALUES('108257'); +INSERT INTO `transmog_items` (`entry`) VALUES('108258'); +INSERT INTO `transmog_items` (`entry`) VALUES('108259'); +INSERT INTO `transmog_items` (`entry`) VALUES('108260'); +INSERT INTO `transmog_items` (`entry`) VALUES('108261'); +INSERT INTO `transmog_items` (`entry`) VALUES('108262'); +INSERT INTO `transmog_items` (`entry`) VALUES('108263'); +INSERT INTO `transmog_items` (`entry`) VALUES('108264'); +INSERT INTO `transmog_items` (`entry`) VALUES('108265'); +INSERT INTO `transmog_items` (`entry`) VALUES('108266'); +INSERT INTO `transmog_items` (`entry`) VALUES('108267'); +INSERT INTO `transmog_items` (`entry`) VALUES('108268'); +INSERT INTO `transmog_items` (`entry`) VALUES('108269'); +INSERT INTO `transmog_items` (`entry`) VALUES('108270'); +INSERT INTO `transmog_items` (`entry`) VALUES('108271'); +INSERT INTO `transmog_items` (`entry`) VALUES('108272'); +INSERT INTO `transmog_items` (`entry`) VALUES('108273'); +INSERT INTO `transmog_items` (`entry`) VALUES('108274'); +INSERT INTO `transmog_items` (`entry`) VALUES('108275'); +INSERT INTO `transmog_items` (`entry`) VALUES('108276'); +INSERT INTO `transmog_items` (`entry`) VALUES('108277'); +INSERT INTO `transmog_items` (`entry`) VALUES('108278'); +INSERT INTO `transmog_items` (`entry`) VALUES('108279'); +INSERT INTO `transmog_items` (`entry`) VALUES('108280'); +INSERT INTO `transmog_items` (`entry`) VALUES('108281'); +INSERT INTO `transmog_items` (`entry`) VALUES('108282'); +INSERT INTO `transmog_items` (`entry`) VALUES('108283'); +INSERT INTO `transmog_items` (`entry`) VALUES('108284'); +INSERT INTO `transmog_items` (`entry`) VALUES('108285'); +INSERT INTO `transmog_items` (`entry`) VALUES('108286'); +INSERT INTO `transmog_items` (`entry`) VALUES('108287'); +INSERT INTO `transmog_items` (`entry`) VALUES('108288'); +INSERT INTO `transmog_items` (`entry`) VALUES('108289'); +INSERT INTO `transmog_items` (`entry`) VALUES('108290'); +INSERT INTO `transmog_items` (`entry`) VALUES('108291'); +INSERT INTO `transmog_items` (`entry`) VALUES('108292'); +INSERT INTO `transmog_items` (`entry`) VALUES('108293'); +INSERT INTO `transmog_items` (`entry`) VALUES('108294'); +INSERT INTO `transmog_items` (`entry`) VALUES('108295'); +INSERT INTO `transmog_items` (`entry`) VALUES('108296'); +INSERT INTO `transmog_items` (`entry`) VALUES('108297'); +INSERT INTO `transmog_items` (`entry`) VALUES('108298'); +INSERT INTO `transmog_items` (`entry`) VALUES('108299'); +INSERT INTO `transmog_items` (`entry`) VALUES('108300'); +INSERT INTO `transmog_items` (`entry`) VALUES('108301'); +INSERT INTO `transmog_items` (`entry`) VALUES('108302'); +INSERT INTO `transmog_items` (`entry`) VALUES('108303'); +INSERT INTO `transmog_items` (`entry`) VALUES('108304'); +INSERT INTO `transmog_items` (`entry`) VALUES('108305'); +INSERT INTO `transmog_items` (`entry`) VALUES('108306'); +INSERT INTO `transmog_items` (`entry`) VALUES('108307'); +INSERT INTO `transmog_items` (`entry`) VALUES('108308'); +INSERT INTO `transmog_items` (`entry`) VALUES('108309'); +INSERT INTO `transmog_items` (`entry`) VALUES('108310'); +INSERT INTO `transmog_items` (`entry`) VALUES('108311'); +INSERT INTO `transmog_items` (`entry`) VALUES('108312'); +INSERT INTO `transmog_items` (`entry`) VALUES('108313'); +INSERT INTO `transmog_items` (`entry`) VALUES('108314'); +INSERT INTO `transmog_items` (`entry`) VALUES('108315'); +INSERT INTO `transmog_items` (`entry`) VALUES('108316'); +INSERT INTO `transmog_items` (`entry`) VALUES('108317'); +INSERT INTO `transmog_items` (`entry`) VALUES('108318'); +INSERT INTO `transmog_items` (`entry`) VALUES('108319'); +INSERT INTO `transmog_items` (`entry`) VALUES('108320'); +INSERT INTO `transmog_items` (`entry`) VALUES('108345'); +INSERT INTO `transmog_items` (`entry`) VALUES('108346'); +INSERT INTO `transmog_items` (`entry`) VALUES('108347'); +INSERT INTO `transmog_items` (`entry`) VALUES('108348'); +INSERT INTO `transmog_items` (`entry`) VALUES('108349'); +INSERT INTO `transmog_items` (`entry`) VALUES('108367'); +INSERT INTO `transmog_items` (`entry`) VALUES('108708'); +INSERT INTO `transmog_items` (`entry`) VALUES('108746'); +INSERT INTO `transmog_items` (`entry`) VALUES('108747'); +INSERT INTO `transmog_items` (`entry`) VALUES('108748'); +INSERT INTO `transmog_items` (`entry`) VALUES('108749'); +INSERT INTO `transmog_items` (`entry`) VALUES('108750'); +INSERT INTO `transmog_items` (`entry`) VALUES('108751'); +INSERT INTO `transmog_items` (`entry`) VALUES('108752'); +INSERT INTO `transmog_items` (`entry`) VALUES('108753'); +INSERT INTO `transmog_items` (`entry`) VALUES('108754'); +INSERT INTO `transmog_items` (`entry`) VALUES('108755'); +INSERT INTO `transmog_items` (`entry`) VALUES('109240'); +INSERT INTO `transmog_items` (`entry`) VALUES('109285'); +INSERT INTO `transmog_items` (`entry`) VALUES('109286'); +INSERT INTO `transmog_items` (`entry`) VALUES('109287'); +INSERT INTO `transmog_items` (`entry`) VALUES('109288'); +INSERT INTO `transmog_items` (`entry`) VALUES('109289'); +INSERT INTO `transmog_items` (`entry`) VALUES('109290'); +INSERT INTO `transmog_items` (`entry`) VALUES('109291'); +INSERT INTO `transmog_items` (`entry`) VALUES('109292'); +INSERT INTO `transmog_items` (`entry`) VALUES('109359'); +INSERT INTO `transmog_items` (`entry`) VALUES('109366'); +INSERT INTO `transmog_items` (`entry`) VALUES('109375'); +INSERT INTO `transmog_items` (`entry`) VALUES('109381'); +INSERT INTO `transmog_items` (`entry`) VALUES('109382'); +INSERT INTO `transmog_items` (`entry`) VALUES('109383'); +INSERT INTO `transmog_items` (`entry`) VALUES('109384'); +INSERT INTO `transmog_items` (`entry`) VALUES('109386'); +INSERT INTO `transmog_items` (`entry`) VALUES('109387'); +INSERT INTO `transmog_items` (`entry`) VALUES('109388'); +INSERT INTO `transmog_items` (`entry`) VALUES('109389'); +INSERT INTO `transmog_items` (`entry`) VALUES('109390'); +INSERT INTO `transmog_items` (`entry`) VALUES('109394'); +INSERT INTO `transmog_items` (`entry`) VALUES('109395'); +INSERT INTO `transmog_items` (`entry`) VALUES('109396'); +INSERT INTO `transmog_items` (`entry`) VALUES('109397'); +INSERT INTO `transmog_items` (`entry`) VALUES('109398'); +INSERT INTO `transmog_items` (`entry`) VALUES('109400'); +INSERT INTO `transmog_items` (`entry`) VALUES('109402'); +INSERT INTO `transmog_items` (`entry`) VALUES('109403'); +INSERT INTO `transmog_items` (`entry`) VALUES('109404'); +INSERT INTO `transmog_items` (`entry`) VALUES('109405'); +INSERT INTO `transmog_items` (`entry`) VALUES('109406'); +INSERT INTO `transmog_items` (`entry`) VALUES('109407'); +INSERT INTO `transmog_items` (`entry`) VALUES('109409'); +INSERT INTO `transmog_items` (`entry`) VALUES('109410'); +INSERT INTO `transmog_items` (`entry`) VALUES('109411'); +INSERT INTO `transmog_items` (`entry`) VALUES('109412'); +INSERT INTO `transmog_items` (`entry`) VALUES('109414'); +INSERT INTO `transmog_items` (`entry`) VALUES('109415'); +INSERT INTO `transmog_items` (`entry`) VALUES('109416'); +INSERT INTO `transmog_items` (`entry`) VALUES('109419'); +INSERT INTO `transmog_items` (`entry`) VALUES('109420'); +INSERT INTO `transmog_items` (`entry`) VALUES('109422'); +INSERT INTO `transmog_items` (`entry`) VALUES('109425'); +INSERT INTO `transmog_items` (`entry`) VALUES('109426'); +INSERT INTO `transmog_items` (`entry`) VALUES('109427'); +INSERT INTO `transmog_items` (`entry`) VALUES('109428'); +INSERT INTO `transmog_items` (`entry`) VALUES('109429'); +INSERT INTO `transmog_items` (`entry`) VALUES('109430'); +INSERT INTO `transmog_items` (`entry`) VALUES('109431'); +INSERT INTO `transmog_items` (`entry`) VALUES('109432'); +INSERT INTO `transmog_items` (`entry`) VALUES('109433'); +INSERT INTO `transmog_items` (`entry`) VALUES('109434'); +INSERT INTO `transmog_items` (`entry`) VALUES('109435'); +INSERT INTO `transmog_items` (`entry`) VALUES('109444'); +INSERT INTO `transmog_items` (`entry`) VALUES('109445'); +INSERT INTO `transmog_items` (`entry`) VALUES('109448'); +INSERT INTO `transmog_items` (`entry`) VALUES('109450'); +INSERT INTO `transmog_items` (`entry`) VALUES('109453'); +INSERT INTO `transmog_items` (`entry`) VALUES('109454'); +INSERT INTO `transmog_items` (`entry`) VALUES('109455'); +INSERT INTO `transmog_items` (`entry`) VALUES('109456'); +INSERT INTO `transmog_items` (`entry`) VALUES('109457'); +INSERT INTO `transmog_items` (`entry`) VALUES('109458'); +INSERT INTO `transmog_items` (`entry`) VALUES('109459'); +INSERT INTO `transmog_items` (`entry`) VALUES('109467'); +INSERT INTO `transmog_items` (`entry`) VALUES('109469'); +INSERT INTO `transmog_items` (`entry`) VALUES('109470'); +INSERT INTO `transmog_items` (`entry`) VALUES('109473'); +INSERT INTO `transmog_items` (`entry`) VALUES('109474'); +INSERT INTO `transmog_items` (`entry`) VALUES('109475'); +INSERT INTO `transmog_items` (`entry`) VALUES('109476'); +INSERT INTO `transmog_items` (`entry`) VALUES('109479'); +INSERT INTO `transmog_items` (`entry`) VALUES('109480'); +INSERT INTO `transmog_items` (`entry`) VALUES('109481'); +INSERT INTO `transmog_items` (`entry`) VALUES('109483'); +INSERT INTO `transmog_items` (`entry`) VALUES('109484'); +INSERT INTO `transmog_items` (`entry`) VALUES('109486'); +INSERT INTO `transmog_items` (`entry`) VALUES('109487'); +INSERT INTO `transmog_items` (`entry`) VALUES('109488'); +INSERT INTO `transmog_items` (`entry`) VALUES('109489'); +INSERT INTO `transmog_items` (`entry`) VALUES('109491'); +INSERT INTO `transmog_items` (`entry`) VALUES('109492'); +INSERT INTO `transmog_items` (`entry`) VALUES('109508'); +INSERT INTO `transmog_items` (`entry`) VALUES('109509'); +INSERT INTO `transmog_items` (`entry`) VALUES('109510'); +INSERT INTO `transmog_items` (`entry`) VALUES('109512'); +INSERT INTO `transmog_items` (`entry`) VALUES('109515'); +INSERT INTO `transmog_items` (`entry`) VALUES('109516'); +INSERT INTO `transmog_items` (`entry`) VALUES('109518'); +INSERT INTO `transmog_items` (`entry`) VALUES('109519'); +INSERT INTO `transmog_items` (`entry`) VALUES('109520'); +INSERT INTO `transmog_items` (`entry`) VALUES('109521'); +INSERT INTO `transmog_items` (`entry`) VALUES('109522'); +INSERT INTO `transmog_items` (`entry`) VALUES('109531'); +INSERT INTO `transmog_items` (`entry`) VALUES('109534'); +INSERT INTO `transmog_items` (`entry`) VALUES('109535'); +INSERT INTO `transmog_items` (`entry`) VALUES('109536'); +INSERT INTO `transmog_items` (`entry`) VALUES('109598'); +INSERT INTO `transmog_items` (`entry`) VALUES('109599'); +INSERT INTO `transmog_items` (`entry`) VALUES('109600'); +INSERT INTO `transmog_items` (`entry`) VALUES('109601'); +INSERT INTO `transmog_items` (`entry`) VALUES('109605'); +INSERT INTO `transmog_items` (`entry`) VALUES('109607'); +INSERT INTO `transmog_items` (`entry`) VALUES('109609'); +INSERT INTO `transmog_items` (`entry`) VALUES('109623'); +INSERT INTO `transmog_items` (`entry`) VALUES('109624'); +INSERT INTO `transmog_items` (`entry`) VALUES('109625'); +INSERT INTO `transmog_items` (`entry`) VALUES('109626'); +INSERT INTO `transmog_items` (`entry`) VALUES('109630'); +INSERT INTO `transmog_items` (`entry`) VALUES('109631'); +INSERT INTO `transmog_items` (`entry`) VALUES('109632'); +INSERT INTO `transmog_items` (`entry`) VALUES('109633'); +INSERT INTO `transmog_items` (`entry`) VALUES('109634'); +INSERT INTO `transmog_items` (`entry`) VALUES('109635'); +INSERT INTO `transmog_items` (`entry`) VALUES('109636'); +INSERT INTO `transmog_items` (`entry`) VALUES('109637'); +INSERT INTO `transmog_items` (`entry`) VALUES('109638'); +INSERT INTO `transmog_items` (`entry`) VALUES('109639'); +INSERT INTO `transmog_items` (`entry`) VALUES('109640'); +INSERT INTO `transmog_items` (`entry`) VALUES('109643'); +INSERT INTO `transmog_items` (`entry`) VALUES('109645'); +INSERT INTO `transmog_items` (`entry`) VALUES('109646'); +INSERT INTO `transmog_items` (`entry`) VALUES('109647'); +INSERT INTO `transmog_items` (`entry`) VALUES('109648'); +INSERT INTO `transmog_items` (`entry`) VALUES('109649'); +INSERT INTO `transmog_items` (`entry`) VALUES('109650'); +INSERT INTO `transmog_items` (`entry`) VALUES('109651'); +INSERT INTO `transmog_items` (`entry`) VALUES('109652'); +INSERT INTO `transmog_items` (`entry`) VALUES('109653'); +INSERT INTO `transmog_items` (`entry`) VALUES('109654'); +INSERT INTO `transmog_items` (`entry`) VALUES('109656'); +INSERT INTO `transmog_items` (`entry`) VALUES('109657'); +INSERT INTO `transmog_items` (`entry`) VALUES('109658'); +INSERT INTO `transmog_items` (`entry`) VALUES('109660'); +INSERT INTO `transmog_items` (`entry`) VALUES('109661'); +INSERT INTO `transmog_items` (`entry`) VALUES('109662'); +INSERT INTO `transmog_items` (`entry`) VALUES('109663'); +INSERT INTO `transmog_items` (`entry`) VALUES('109664'); +INSERT INTO `transmog_items` (`entry`) VALUES('109665'); +INSERT INTO `transmog_items` (`entry`) VALUES('109666'); +INSERT INTO `transmog_items` (`entry`) VALUES('109679'); +INSERT INTO `transmog_items` (`entry`) VALUES('109680'); +INSERT INTO `transmog_items` (`entry`) VALUES('109682'); +INSERT INTO `transmog_items` (`entry`) VALUES('109685'); +INSERT INTO `transmog_items` (`entry`) VALUES('109686'); +INSERT INTO `transmog_items` (`entry`) VALUES('109687'); +INSERT INTO `transmog_items` (`entry`) VALUES('109698'); +INSERT INTO `transmog_items` (`entry`) VALUES('109699'); +INSERT INTO `transmog_items` (`entry`) VALUES('109703'); +INSERT INTO `transmog_items` (`entry`) VALUES('109704'); +INSERT INTO `transmog_items` (`entry`) VALUES('109705'); +INSERT INTO `transmog_items` (`entry`) VALUES('109706'); +INSERT INTO `transmog_items` (`entry`) VALUES('109742'); +INSERT INTO `transmog_items` (`entry`) VALUES('109743'); +INSERT INTO `transmog_items` (`entry`) VALUES('109744'); +INSERT INTO `transmog_items` (`entry`) VALUES('109745'); +INSERT INTO `transmog_items` (`entry`) VALUES('109746'); +INSERT INTO `transmog_items` (`entry`) VALUES('109747'); +INSERT INTO `transmog_items` (`entry`) VALUES('109748'); +INSERT INTO `transmog_items` (`entry`) VALUES('109749'); +INSERT INTO `transmog_items` (`entry`) VALUES('109750'); +INSERT INTO `transmog_items` (`entry`) VALUES('109751'); +INSERT INTO `transmog_items` (`entry`) VALUES('109752'); +INSERT INTO `transmog_items` (`entry`) VALUES('109753'); +INSERT INTO `transmog_items` (`entry`) VALUES('109754'); +INSERT INTO `transmog_items` (`entry`) VALUES('109755'); +INSERT INTO `transmog_items` (`entry`) VALUES('109756'); +INSERT INTO `transmog_items` (`entry`) VALUES('109757'); +INSERT INTO `transmog_items` (`entry`) VALUES('109758'); +INSERT INTO `transmog_items` (`entry`) VALUES('109759'); +INSERT INTO `transmog_items` (`entry`) VALUES('109760'); +INSERT INTO `transmog_items` (`entry`) VALUES('109761'); +INSERT INTO `transmog_items` (`entry`) VALUES('109762'); +INSERT INTO `transmog_items` (`entry`) VALUES('109763'); +INSERT INTO `transmog_items` (`entry`) VALUES('109764'); +INSERT INTO `transmog_items` (`entry`) VALUES('109765'); +INSERT INTO `transmog_items` (`entry`) VALUES('109766'); +INSERT INTO `transmog_items` (`entry`) VALUES('109767'); +INSERT INTO `transmog_items` (`entry`) VALUES('109768'); +INSERT INTO `transmog_items` (`entry`) VALUES('109770'); +INSERT INTO `transmog_items` (`entry`) VALUES('109771'); +INSERT INTO `transmog_items` (`entry`) VALUES('109772'); +INSERT INTO `transmog_items` (`entry`) VALUES('109773'); +INSERT INTO `transmog_items` (`entry`) VALUES('109774'); +INSERT INTO `transmog_items` (`entry`) VALUES('109775'); +INSERT INTO `transmog_items` (`entry`) VALUES('109776'); +INSERT INTO `transmog_items` (`entry`) VALUES('109777'); +INSERT INTO `transmog_items` (`entry`) VALUES('109778'); +INSERT INTO `transmog_items` (`entry`) VALUES('109779'); +INSERT INTO `transmog_items` (`entry`) VALUES('109780'); +INSERT INTO `transmog_items` (`entry`) VALUES('109781'); +INSERT INTO `transmog_items` (`entry`) VALUES('109782'); +INSERT INTO `transmog_items` (`entry`) VALUES('109783'); +INSERT INTO `transmog_items` (`entry`) VALUES('109784'); +INSERT INTO `transmog_items` (`entry`) VALUES('109785'); +INSERT INTO `transmog_items` (`entry`) VALUES('109786'); +INSERT INTO `transmog_items` (`entry`) VALUES('109787'); +INSERT INTO `transmog_items` (`entry`) VALUES('109788'); +INSERT INTO `transmog_items` (`entry`) VALUES('109789'); +INSERT INTO `transmog_items` (`entry`) VALUES('109790'); +INSERT INTO `transmog_items` (`entry`) VALUES('109791'); +INSERT INTO `transmog_items` (`entry`) VALUES('109792'); +INSERT INTO `transmog_items` (`entry`) VALUES('109793'); +INSERT INTO `transmog_items` (`entry`) VALUES('109794'); +INSERT INTO `transmog_items` (`entry`) VALUES('109795'); +INSERT INTO `transmog_items` (`entry`) VALUES('109796'); +INSERT INTO `transmog_items` (`entry`) VALUES('109797'); +INSERT INTO `transmog_items` (`entry`) VALUES('109798'); +INSERT INTO `transmog_items` (`entry`) VALUES('109799'); +INSERT INTO `transmog_items` (`entry`) VALUES('109801'); +INSERT INTO `transmog_items` (`entry`) VALUES('109802'); +INSERT INTO `transmog_items` (`entry`) VALUES('109803'); +INSERT INTO `transmog_items` (`entry`) VALUES('109804'); +INSERT INTO `transmog_items` (`entry`) VALUES('109805'); +INSERT INTO `transmog_items` (`entry`) VALUES('109806'); +INSERT INTO `transmog_items` (`entry`) VALUES('109807'); +INSERT INTO `transmog_items` (`entry`) VALUES('109808'); +INSERT INTO `transmog_items` (`entry`) VALUES('109809'); +INSERT INTO `transmog_items` (`entry`) VALUES('109810'); +INSERT INTO `transmog_items` (`entry`) VALUES('109811'); +INSERT INTO `transmog_items` (`entry`) VALUES('109812'); +INSERT INTO `transmog_items` (`entry`) VALUES('109813'); +INSERT INTO `transmog_items` (`entry`) VALUES('109814'); +INSERT INTO `transmog_items` (`entry`) VALUES('109815'); +INSERT INTO `transmog_items` (`entry`) VALUES('109816'); +INSERT INTO `transmog_items` (`entry`) VALUES('109817'); +INSERT INTO `transmog_items` (`entry`) VALUES('109818'); +INSERT INTO `transmog_items` (`entry`) VALUES('109819'); +INSERT INTO `transmog_items` (`entry`) VALUES('109820'); +INSERT INTO `transmog_items` (`entry`) VALUES('109821'); +INSERT INTO `transmog_items` (`entry`) VALUES('109822'); +INSERT INTO `transmog_items` (`entry`) VALUES('109823'); +INSERT INTO `transmog_items` (`entry`) VALUES('109824'); +INSERT INTO `transmog_items` (`entry`) VALUES('109825'); +INSERT INTO `transmog_items` (`entry`) VALUES('109826'); +INSERT INTO `transmog_items` (`entry`) VALUES('109827'); +INSERT INTO `transmog_items` (`entry`) VALUES('109828'); +INSERT INTO `transmog_items` (`entry`) VALUES('109829'); +INSERT INTO `transmog_items` (`entry`) VALUES('109830'); +INSERT INTO `transmog_items` (`entry`) VALUES('109831'); +INSERT INTO `transmog_items` (`entry`) VALUES('109832'); +INSERT INTO `transmog_items` (`entry`) VALUES('109833'); +INSERT INTO `transmog_items` (`entry`) VALUES('109834'); +INSERT INTO `transmog_items` (`entry`) VALUES('109835'); +INSERT INTO `transmog_items` (`entry`) VALUES('109836'); +INSERT INTO `transmog_items` (`entry`) VALUES('109837'); +INSERT INTO `transmog_items` (`entry`) VALUES('109838'); +INSERT INTO `transmog_items` (`entry`) VALUES('109839'); +INSERT INTO `transmog_items` (`entry`) VALUES('109840'); +INSERT INTO `transmog_items` (`entry`) VALUES('109841'); +INSERT INTO `transmog_items` (`entry`) VALUES('109842'); +INSERT INTO `transmog_items` (`entry`) VALUES('109843'); +INSERT INTO `transmog_items` (`entry`) VALUES('109844'); +INSERT INTO `transmog_items` (`entry`) VALUES('109845'); +INSERT INTO `transmog_items` (`entry`) VALUES('109846'); +INSERT INTO `transmog_items` (`entry`) VALUES('109847'); +INSERT INTO `transmog_items` (`entry`) VALUES('109848'); +INSERT INTO `transmog_items` (`entry`) VALUES('109849'); +INSERT INTO `transmog_items` (`entry`) VALUES('109850'); +INSERT INTO `transmog_items` (`entry`) VALUES('109851'); +INSERT INTO `transmog_items` (`entry`) VALUES('109852'); +INSERT INTO `transmog_items` (`entry`) VALUES('109853'); +INSERT INTO `transmog_items` (`entry`) VALUES('109854'); +INSERT INTO `transmog_items` (`entry`) VALUES('109855'); +INSERT INTO `transmog_items` (`entry`) VALUES('109856'); +INSERT INTO `transmog_items` (`entry`) VALUES('109857'); +INSERT INTO `transmog_items` (`entry`) VALUES('109858'); +INSERT INTO `transmog_items` (`entry`) VALUES('109859'); +INSERT INTO `transmog_items` (`entry`) VALUES('109860'); +INSERT INTO `transmog_items` (`entry`) VALUES('109861'); +INSERT INTO `transmog_items` (`entry`) VALUES('109862'); +INSERT INTO `transmog_items` (`entry`) VALUES('109863'); +INSERT INTO `transmog_items` (`entry`) VALUES('109864'); +INSERT INTO `transmog_items` (`entry`) VALUES('109865'); +INSERT INTO `transmog_items` (`entry`) VALUES('109866'); +INSERT INTO `transmog_items` (`entry`) VALUES('109867'); +INSERT INTO `transmog_items` (`entry`) VALUES('109868'); +INSERT INTO `transmog_items` (`entry`) VALUES('109869'); +INSERT INTO `transmog_items` (`entry`) VALUES('109870'); +INSERT INTO `transmog_items` (`entry`) VALUES('109871'); +INSERT INTO `transmog_items` (`entry`) VALUES('109872'); +INSERT INTO `transmog_items` (`entry`) VALUES('109873'); +INSERT INTO `transmog_items` (`entry`) VALUES('109874'); +INSERT INTO `transmog_items` (`entry`) VALUES('109875'); +INSERT INTO `transmog_items` (`entry`) VALUES('109876'); +INSERT INTO `transmog_items` (`entry`) VALUES('109877'); +INSERT INTO `transmog_items` (`entry`) VALUES('109878'); +INSERT INTO `transmog_items` (`entry`) VALUES('109879'); +INSERT INTO `transmog_items` (`entry`) VALUES('109880'); +INSERT INTO `transmog_items` (`entry`) VALUES('109881'); +INSERT INTO `transmog_items` (`entry`) VALUES('109883'); +INSERT INTO `transmog_items` (`entry`) VALUES('109884'); +INSERT INTO `transmog_items` (`entry`) VALUES('109885'); +INSERT INTO `transmog_items` (`entry`) VALUES('109886'); +INSERT INTO `transmog_items` (`entry`) VALUES('109887'); +INSERT INTO `transmog_items` (`entry`) VALUES('109888'); +INSERT INTO `transmog_items` (`entry`) VALUES('109889'); +INSERT INTO `transmog_items` (`entry`) VALUES('109890'); +INSERT INTO `transmog_items` (`entry`) VALUES('109891'); +INSERT INTO `transmog_items` (`entry`) VALUES('109892'); +INSERT INTO `transmog_items` (`entry`) VALUES('109893'); +INSERT INTO `transmog_items` (`entry`) VALUES('109894'); +INSERT INTO `transmog_items` (`entry`) VALUES('109895'); +INSERT INTO `transmog_items` (`entry`) VALUES('109896'); +INSERT INTO `transmog_items` (`entry`) VALUES('109897'); +INSERT INTO `transmog_items` (`entry`) VALUES('109898'); +INSERT INTO `transmog_items` (`entry`) VALUES('109899'); +INSERT INTO `transmog_items` (`entry`) VALUES('109900'); +INSERT INTO `transmog_items` (`entry`) VALUES('109901'); +INSERT INTO `transmog_items` (`entry`) VALUES('109902'); +INSERT INTO `transmog_items` (`entry`) VALUES('109903'); +INSERT INTO `transmog_items` (`entry`) VALUES('109904'); +INSERT INTO `transmog_items` (`entry`) VALUES('109905'); +INSERT INTO `transmog_items` (`entry`) VALUES('109906'); +INSERT INTO `transmog_items` (`entry`) VALUES('109907'); +INSERT INTO `transmog_items` (`entry`) VALUES('109908'); +INSERT INTO `transmog_items` (`entry`) VALUES('109909'); +INSERT INTO `transmog_items` (`entry`) VALUES('109910'); +INSERT INTO `transmog_items` (`entry`) VALUES('109911'); +INSERT INTO `transmog_items` (`entry`) VALUES('109912'); +INSERT INTO `transmog_items` (`entry`) VALUES('109913'); +INSERT INTO `transmog_items` (`entry`) VALUES('109915'); +INSERT INTO `transmog_items` (`entry`) VALUES('109916'); +INSERT INTO `transmog_items` (`entry`) VALUES('109917'); +INSERT INTO `transmog_items` (`entry`) VALUES('109918'); +INSERT INTO `transmog_items` (`entry`) VALUES('109919'); +INSERT INTO `transmog_items` (`entry`) VALUES('109920'); +INSERT INTO `transmog_items` (`entry`) VALUES('109921'); +INSERT INTO `transmog_items` (`entry`) VALUES('109922'); +INSERT INTO `transmog_items` (`entry`) VALUES('109923'); +INSERT INTO `transmog_items` (`entry`) VALUES('109924'); +INSERT INTO `transmog_items` (`entry`) VALUES('109925'); +INSERT INTO `transmog_items` (`entry`) VALUES('109926'); +INSERT INTO `transmog_items` (`entry`) VALUES('109927'); +INSERT INTO `transmog_items` (`entry`) VALUES('109928'); +INSERT INTO `transmog_items` (`entry`) VALUES('109929'); +INSERT INTO `transmog_items` (`entry`) VALUES('109930'); +INSERT INTO `transmog_items` (`entry`) VALUES('109931'); +INSERT INTO `transmog_items` (`entry`) VALUES('109932'); +INSERT INTO `transmog_items` (`entry`) VALUES('109933'); +INSERT INTO `transmog_items` (`entry`) VALUES('109934'); +INSERT INTO `transmog_items` (`entry`) VALUES('109935'); +INSERT INTO `transmog_items` (`entry`) VALUES('109936'); +INSERT INTO `transmog_items` (`entry`) VALUES('109937'); +INSERT INTO `transmog_items` (`entry`) VALUES('109938'); +INSERT INTO `transmog_items` (`entry`) VALUES('109939'); +INSERT INTO `transmog_items` (`entry`) VALUES('109940'); +INSERT INTO `transmog_items` (`entry`) VALUES('109941'); +INSERT INTO `transmog_items` (`entry`) VALUES('109942'); +INSERT INTO `transmog_items` (`entry`) VALUES('109943'); +INSERT INTO `transmog_items` (`entry`) VALUES('109945'); +INSERT INTO `transmog_items` (`entry`) VALUES('109946'); +INSERT INTO `transmog_items` (`entry`) VALUES('109947'); +INSERT INTO `transmog_items` (`entry`) VALUES('109948'); +INSERT INTO `transmog_items` (`entry`) VALUES('109949'); +INSERT INTO `transmog_items` (`entry`) VALUES('109950'); +INSERT INTO `transmog_items` (`entry`) VALUES('109951'); +INSERT INTO `transmog_items` (`entry`) VALUES('109952'); +INSERT INTO `transmog_items` (`entry`) VALUES('109953'); +INSERT INTO `transmog_items` (`entry`) VALUES('109954'); +INSERT INTO `transmog_items` (`entry`) VALUES('109955'); +INSERT INTO `transmog_items` (`entry`) VALUES('109956'); +INSERT INTO `transmog_items` (`entry`) VALUES('109957'); +INSERT INTO `transmog_items` (`entry`) VALUES('109958'); +INSERT INTO `transmog_items` (`entry`) VALUES('109959'); +INSERT INTO `transmog_items` (`entry`) VALUES('109960'); +INSERT INTO `transmog_items` (`entry`) VALUES('109961'); +INSERT INTO `transmog_items` (`entry`) VALUES('109962'); +INSERT INTO `transmog_items` (`entry`) VALUES('109963'); +INSERT INTO `transmog_items` (`entry`) VALUES('109964'); +INSERT INTO `transmog_items` (`entry`) VALUES('109965'); +INSERT INTO `transmog_items` (`entry`) VALUES('109966'); +INSERT INTO `transmog_items` (`entry`) VALUES('109967'); +INSERT INTO `transmog_items` (`entry`) VALUES('109968'); +INSERT INTO `transmog_items` (`entry`) VALUES('109969'); +INSERT INTO `transmog_items` (`entry`) VALUES('109970'); +INSERT INTO `transmog_items` (`entry`) VALUES('109971'); +INSERT INTO `transmog_items` (`entry`) VALUES('109972'); +INSERT INTO `transmog_items` (`entry`) VALUES('109973'); +INSERT INTO `transmog_items` (`entry`) VALUES('109974'); +INSERT INTO `transmog_items` (`entry`) VALUES('109998'); +INSERT INTO `transmog_items` (`entry`) VALUES('109999'); +INSERT INTO `transmog_items` (`entry`) VALUES('110001'); +INSERT INTO `transmog_items` (`entry`) VALUES('110002'); +INSERT INTO `transmog_items` (`entry`) VALUES('110003'); +INSERT INTO `transmog_items` (`entry`) VALUES('110004'); +INSERT INTO `transmog_items` (`entry`) VALUES('110007'); +INSERT INTO `transmog_items` (`entry`) VALUES('110008'); +INSERT INTO `transmog_items` (`entry`) VALUES('110009'); +INSERT INTO `transmog_items` (`entry`) VALUES('110010'); +INSERT INTO `transmog_items` (`entry`) VALUES('110011'); +INSERT INTO `transmog_items` (`entry`) VALUES('110018'); +INSERT INTO `transmog_items` (`entry`) VALUES('110019'); +INSERT INTO `transmog_items` (`entry`) VALUES('110020'); +INSERT INTO `transmog_items` (`entry`) VALUES('110021'); +INSERT INTO `transmog_items` (`entry`) VALUES('110023'); +INSERT INTO `transmog_items` (`entry`) VALUES('110024'); +INSERT INTO `transmog_items` (`entry`) VALUES('110025'); +INSERT INTO `transmog_items` (`entry`) VALUES('110026'); +INSERT INTO `transmog_items` (`entry`) VALUES('110027'); +INSERT INTO `transmog_items` (`entry`) VALUES('110028'); +INSERT INTO `transmog_items` (`entry`) VALUES('110029'); +INSERT INTO `transmog_items` (`entry`) VALUES('110030'); +INSERT INTO `transmog_items` (`entry`) VALUES('110031'); +INSERT INTO `transmog_items` (`entry`) VALUES('110032'); +INSERT INTO `transmog_items` (`entry`) VALUES('110033'); +INSERT INTO `transmog_items` (`entry`) VALUES('110035'); +INSERT INTO `transmog_items` (`entry`) VALUES('110036'); +INSERT INTO `transmog_items` (`entry`) VALUES('110038'); +INSERT INTO `transmog_items` (`entry`) VALUES('110039'); +INSERT INTO `transmog_items` (`entry`) VALUES('110040'); +INSERT INTO `transmog_items` (`entry`) VALUES('110041'); +INSERT INTO `transmog_items` (`entry`) VALUES('110042'); +INSERT INTO `transmog_items` (`entry`) VALUES('110043'); +INSERT INTO `transmog_items` (`entry`) VALUES('110044'); +INSERT INTO `transmog_items` (`entry`) VALUES('110045'); +INSERT INTO `transmog_items` (`entry`) VALUES('110046'); +INSERT INTO `transmog_items` (`entry`) VALUES('110047'); +INSERT INTO `transmog_items` (`entry`) VALUES('110048'); +INSERT INTO `transmog_items` (`entry`) VALUES('110049'); +INSERT INTO `transmog_items` (`entry`) VALUES('110057'); +INSERT INTO `transmog_items` (`entry`) VALUES('110058'); +INSERT INTO `transmog_items` (`entry`) VALUES('110059'); +INSERT INTO `transmog_items` (`entry`) VALUES('110060'); +INSERT INTO `transmog_items` (`entry`) VALUES('110061'); +INSERT INTO `transmog_items` (`entry`) VALUES('110062'); +INSERT INTO `transmog_items` (`entry`) VALUES('110063'); +INSERT INTO `transmog_items` (`entry`) VALUES('110064'); +INSERT INTO `transmog_items` (`entry`) VALUES('110065'); +INSERT INTO `transmog_items` (`entry`) VALUES('110066'); +INSERT INTO `transmog_items` (`entry`) VALUES('110067'); +INSERT INTO `transmog_items` (`entry`) VALUES('110068'); +INSERT INTO `transmog_items` (`entry`) VALUES('110069'); +INSERT INTO `transmog_items` (`entry`) VALUES('110070'); +INSERT INTO `transmog_items` (`entry`) VALUES('110071'); +INSERT INTO `transmog_items` (`entry`) VALUES('110072'); +INSERT INTO `transmog_items` (`entry`) VALUES('110073'); +INSERT INTO `transmog_items` (`entry`) VALUES('110074'); +INSERT INTO `transmog_items` (`entry`) VALUES('110075'); +INSERT INTO `transmog_items` (`entry`) VALUES('110076'); +INSERT INTO `transmog_items` (`entry`) VALUES('110077'); +INSERT INTO `transmog_items` (`entry`) VALUES('110078'); +INSERT INTO `transmog_items` (`entry`) VALUES('110079'); +INSERT INTO `transmog_items` (`entry`) VALUES('110080'); +INSERT INTO `transmog_items` (`entry`) VALUES('110081'); +INSERT INTO `transmog_items` (`entry`) VALUES('110082'); +INSERT INTO `transmog_items` (`entry`) VALUES('110083'); +INSERT INTO `transmog_items` (`entry`) VALUES('110084'); +INSERT INTO `transmog_items` (`entry`) VALUES('110085'); +INSERT INTO `transmog_items` (`entry`) VALUES('110086'); +INSERT INTO `transmog_items` (`entry`) VALUES('110087'); +INSERT INTO `transmog_items` (`entry`) VALUES('110088'); +INSERT INTO `transmog_items` (`entry`) VALUES('110089'); +INSERT INTO `transmog_items` (`entry`) VALUES('110090'); +INSERT INTO `transmog_items` (`entry`) VALUES('110091'); +INSERT INTO `transmog_items` (`entry`) VALUES('110092'); +INSERT INTO `transmog_items` (`entry`) VALUES('110093'); +INSERT INTO `transmog_items` (`entry`) VALUES('110094'); +INSERT INTO `transmog_items` (`entry`) VALUES('110095'); +INSERT INTO `transmog_items` (`entry`) VALUES('110096'); +INSERT INTO `transmog_items` (`entry`) VALUES('110097'); +INSERT INTO `transmog_items` (`entry`) VALUES('110098'); +INSERT INTO `transmog_items` (`entry`) VALUES('110099'); +INSERT INTO `transmog_items` (`entry`) VALUES('110100'); +INSERT INTO `transmog_items` (`entry`) VALUES('110101'); +INSERT INTO `transmog_items` (`entry`) VALUES('110102'); +INSERT INTO `transmog_items` (`entry`) VALUES('110103'); +INSERT INTO `transmog_items` (`entry`) VALUES('110104'); +INSERT INTO `transmog_items` (`entry`) VALUES('110105'); +INSERT INTO `transmog_items` (`entry`) VALUES('110106'); +INSERT INTO `transmog_items` (`entry`) VALUES('110107'); +INSERT INTO `transmog_items` (`entry`) VALUES('110108'); +INSERT INTO `transmog_items` (`entry`) VALUES('110109'); +INSERT INTO `transmog_items` (`entry`) VALUES('110110'); +INSERT INTO `transmog_items` (`entry`) VALUES('110111'); +INSERT INTO `transmog_items` (`entry`) VALUES('110112'); +INSERT INTO `transmog_items` (`entry`) VALUES('110113'); +INSERT INTO `transmog_items` (`entry`) VALUES('110118'); +INSERT INTO `transmog_items` (`entry`) VALUES('110119'); +INSERT INTO `transmog_items` (`entry`) VALUES('110120'); +INSERT INTO `transmog_items` (`entry`) VALUES('110121'); +INSERT INTO `transmog_items` (`entry`) VALUES('110122'); +INSERT INTO `transmog_items` (`entry`) VALUES('110123'); +INSERT INTO `transmog_items` (`entry`) VALUES('110124'); +INSERT INTO `transmog_items` (`entry`) VALUES('110125'); +INSERT INTO `transmog_items` (`entry`) VALUES('110126'); +INSERT INTO `transmog_items` (`entry`) VALUES('110127'); +INSERT INTO `transmog_items` (`entry`) VALUES('110128'); +INSERT INTO `transmog_items` (`entry`) VALUES('110129'); +INSERT INTO `transmog_items` (`entry`) VALUES('110130'); +INSERT INTO `transmog_items` (`entry`) VALUES('110131'); +INSERT INTO `transmog_items` (`entry`) VALUES('110132'); +INSERT INTO `transmog_items` (`entry`) VALUES('110133'); +INSERT INTO `transmog_items` (`entry`) VALUES('110134'); +INSERT INTO `transmog_items` (`entry`) VALUES('110135'); +INSERT INTO `transmog_items` (`entry`) VALUES('110136'); +INSERT INTO `transmog_items` (`entry`) VALUES('110137'); +INSERT INTO `transmog_items` (`entry`) VALUES('110138'); +INSERT INTO `transmog_items` (`entry`) VALUES('110139'); +INSERT INTO `transmog_items` (`entry`) VALUES('110140'); +INSERT INTO `transmog_items` (`entry`) VALUES('110141'); +INSERT INTO `transmog_items` (`entry`) VALUES('110142'); +INSERT INTO `transmog_items` (`entry`) VALUES('110143'); +INSERT INTO `transmog_items` (`entry`) VALUES('110144'); +INSERT INTO `transmog_items` (`entry`) VALUES('110145'); +INSERT INTO `transmog_items` (`entry`) VALUES('110146'); +INSERT INTO `transmog_items` (`entry`) VALUES('110147'); +INSERT INTO `transmog_items` (`entry`) VALUES('110148'); +INSERT INTO `transmog_items` (`entry`) VALUES('110149'); +INSERT INTO `transmog_items` (`entry`) VALUES('110150'); +INSERT INTO `transmog_items` (`entry`) VALUES('110151'); +INSERT INTO `transmog_items` (`entry`) VALUES('110152'); +INSERT INTO `transmog_items` (`entry`) VALUES('110153'); +INSERT INTO `transmog_items` (`entry`) VALUES('110154'); +INSERT INTO `transmog_items` (`entry`) VALUES('110155'); +INSERT INTO `transmog_items` (`entry`) VALUES('110156'); +INSERT INTO `transmog_items` (`entry`) VALUES('110157'); +INSERT INTO `transmog_items` (`entry`) VALUES('110158'); +INSERT INTO `transmog_items` (`entry`) VALUES('110159'); +INSERT INTO `transmog_items` (`entry`) VALUES('110160'); +INSERT INTO `transmog_items` (`entry`) VALUES('110161'); +INSERT INTO `transmog_items` (`entry`) VALUES('110162'); +INSERT INTO `transmog_items` (`entry`) VALUES('110163'); +INSERT INTO `transmog_items` (`entry`) VALUES('110164'); +INSERT INTO `transmog_items` (`entry`) VALUES('110165'); +INSERT INTO `transmog_items` (`entry`) VALUES('110166'); +INSERT INTO `transmog_items` (`entry`) VALUES('110167'); +INSERT INTO `transmog_items` (`entry`) VALUES('110168'); +INSERT INTO `transmog_items` (`entry`) VALUES('110169'); +INSERT INTO `transmog_items` (`entry`) VALUES('110170'); +INSERT INTO `transmog_items` (`entry`) VALUES('110171'); +INSERT INTO `transmog_items` (`entry`) VALUES('110172'); +INSERT INTO `transmog_items` (`entry`) VALUES('110173'); +INSERT INTO `transmog_items` (`entry`) VALUES('110174'); +INSERT INTO `transmog_items` (`entry`) VALUES('110175'); +INSERT INTO `transmog_items` (`entry`) VALUES('110176'); +INSERT INTO `transmog_items` (`entry`) VALUES('110177'); +INSERT INTO `transmog_items` (`entry`) VALUES('110178'); +INSERT INTO `transmog_items` (`entry`) VALUES('110179'); +INSERT INTO `transmog_items` (`entry`) VALUES('110180'); +INSERT INTO `transmog_items` (`entry`) VALUES('110181'); +INSERT INTO `transmog_items` (`entry`) VALUES('110182'); +INSERT INTO `transmog_items` (`entry`) VALUES('110183'); +INSERT INTO `transmog_items` (`entry`) VALUES('110184'); +INSERT INTO `transmog_items` (`entry`) VALUES('110185'); +INSERT INTO `transmog_items` (`entry`) VALUES('110186'); +INSERT INTO `transmog_items` (`entry`) VALUES('110187'); +INSERT INTO `transmog_items` (`entry`) VALUES('110188'); +INSERT INTO `transmog_items` (`entry`) VALUES('110189'); +INSERT INTO `transmog_items` (`entry`) VALUES('110190'); +INSERT INTO `transmog_items` (`entry`) VALUES('110191'); +INSERT INTO `transmog_items` (`entry`) VALUES('110192'); +INSERT INTO `transmog_items` (`entry`) VALUES('110193'); +INSERT INTO `transmog_items` (`entry`) VALUES('110194'); +INSERT INTO `transmog_items` (`entry`) VALUES('110195'); +INSERT INTO `transmog_items` (`entry`) VALUES('110196'); +INSERT INTO `transmog_items` (`entry`) VALUES('110197'); +INSERT INTO `transmog_items` (`entry`) VALUES('110198'); +INSERT INTO `transmog_items` (`entry`) VALUES('110199'); +INSERT INTO `transmog_items` (`entry`) VALUES('110200'); +INSERT INTO `transmog_items` (`entry`) VALUES('110201'); +INSERT INTO `transmog_items` (`entry`) VALUES('110202'); +INSERT INTO `transmog_items` (`entry`) VALUES('110203'); +INSERT INTO `transmog_items` (`entry`) VALUES('110204'); +INSERT INTO `transmog_items` (`entry`) VALUES('110205'); +INSERT INTO `transmog_items` (`entry`) VALUES('110206'); +INSERT INTO `transmog_items` (`entry`) VALUES('110207'); +INSERT INTO `transmog_items` (`entry`) VALUES('110208'); +INSERT INTO `transmog_items` (`entry`) VALUES('110209'); +INSERT INTO `transmog_items` (`entry`) VALUES('110210'); +INSERT INTO `transmog_items` (`entry`) VALUES('110211'); +INSERT INTO `transmog_items` (`entry`) VALUES('110212'); +INSERT INTO `transmog_items` (`entry`) VALUES('110213'); +INSERT INTO `transmog_items` (`entry`) VALUES('110214'); +INSERT INTO `transmog_items` (`entry`) VALUES('110215'); +INSERT INTO `transmog_items` (`entry`) VALUES('110216'); +INSERT INTO `transmog_items` (`entry`) VALUES('110217'); +INSERT INTO `transmog_items` (`entry`) VALUES('110218'); +INSERT INTO `transmog_items` (`entry`) VALUES('110219'); +INSERT INTO `transmog_items` (`entry`) VALUES('110220'); +INSERT INTO `transmog_items` (`entry`) VALUES('110221'); +INSERT INTO `transmog_items` (`entry`) VALUES('110222'); +INSERT INTO `transmog_items` (`entry`) VALUES('110223'); +INSERT INTO `transmog_items` (`entry`) VALUES('110224'); +INSERT INTO `transmog_items` (`entry`) VALUES('110225'); +INSERT INTO `transmog_items` (`entry`) VALUES('110226'); +INSERT INTO `transmog_items` (`entry`) VALUES('110227'); +INSERT INTO `transmog_items` (`entry`) VALUES('110228'); +INSERT INTO `transmog_items` (`entry`) VALUES('110229'); +INSERT INTO `transmog_items` (`entry`) VALUES('110230'); +INSERT INTO `transmog_items` (`entry`) VALUES('110231'); +INSERT INTO `transmog_items` (`entry`) VALUES('110232'); +INSERT INTO `transmog_items` (`entry`) VALUES('110233'); +INSERT INTO `transmog_items` (`entry`) VALUES('110234'); +INSERT INTO `transmog_items` (`entry`) VALUES('110235'); +INSERT INTO `transmog_items` (`entry`) VALUES('110236'); +INSERT INTO `transmog_items` (`entry`) VALUES('110237'); +INSERT INTO `transmog_items` (`entry`) VALUES('110238'); +INSERT INTO `transmog_items` (`entry`) VALUES('110239'); +INSERT INTO `transmog_items` (`entry`) VALUES('110240'); +INSERT INTO `transmog_items` (`entry`) VALUES('110241'); +INSERT INTO `transmog_items` (`entry`) VALUES('110242'); +INSERT INTO `transmog_items` (`entry`) VALUES('110243'); +INSERT INTO `transmog_items` (`entry`) VALUES('110244'); +INSERT INTO `transmog_items` (`entry`) VALUES('110245'); +INSERT INTO `transmog_items` (`entry`) VALUES('110246'); +INSERT INTO `transmog_items` (`entry`) VALUES('110247'); +INSERT INTO `transmog_items` (`entry`) VALUES('110248'); +INSERT INTO `transmog_items` (`entry`) VALUES('110249'); +INSERT INTO `transmog_items` (`entry`) VALUES('110250'); +INSERT INTO `transmog_items` (`entry`) VALUES('110251'); +INSERT INTO `transmog_items` (`entry`) VALUES('110252'); +INSERT INTO `transmog_items` (`entry`) VALUES('110253'); +INSERT INTO `transmog_items` (`entry`) VALUES('110254'); +INSERT INTO `transmog_items` (`entry`) VALUES('110255'); +INSERT INTO `transmog_items` (`entry`) VALUES('110256'); +INSERT INTO `transmog_items` (`entry`) VALUES('110257'); +INSERT INTO `transmog_items` (`entry`) VALUES('110258'); +INSERT INTO `transmog_items` (`entry`) VALUES('110259'); +INSERT INTO `transmog_items` (`entry`) VALUES('110260'); +INSERT INTO `transmog_items` (`entry`) VALUES('110261'); +INSERT INTO `transmog_items` (`entry`) VALUES('110262'); +INSERT INTO `transmog_items` (`entry`) VALUES('110263'); +INSERT INTO `transmog_items` (`entry`) VALUES('110264'); +INSERT INTO `transmog_items` (`entry`) VALUES('110265'); +INSERT INTO `transmog_items` (`entry`) VALUES('110266'); +INSERT INTO `transmog_items` (`entry`) VALUES('110267'); +INSERT INTO `transmog_items` (`entry`) VALUES('110268'); +INSERT INTO `transmog_items` (`entry`) VALUES('110269'); +INSERT INTO `transmog_items` (`entry`) VALUES('110270'); +INSERT INTO `transmog_items` (`entry`) VALUES('110271'); +INSERT INTO `transmog_items` (`entry`) VALUES('110272'); +INSERT INTO `transmog_items` (`entry`) VALUES('110273'); +INSERT INTO `transmog_items` (`entry`) VALUES('110274'); +INSERT INTO `transmog_items` (`entry`) VALUES('110275'); +INSERT INTO `transmog_items` (`entry`) VALUES('110276'); +INSERT INTO `transmog_items` (`entry`) VALUES('110277'); +INSERT INTO `transmog_items` (`entry`) VALUES('110278'); +INSERT INTO `transmog_items` (`entry`) VALUES('110279'); +INSERT INTO `transmog_items` (`entry`) VALUES('110280'); +INSERT INTO `transmog_items` (`entry`) VALUES('110281'); +INSERT INTO `transmog_items` (`entry`) VALUES('110282'); +INSERT INTO `transmog_items` (`entry`) VALUES('110287'); +INSERT INTO `transmog_items` (`entry`) VALUES('110288'); +INSERT INTO `transmog_items` (`entry`) VALUES('110289'); +INSERT INTO `transmog_items` (`entry`) VALUES('110328'); +INSERT INTO `transmog_items` (`entry`) VALUES('110329'); +INSERT INTO `transmog_items` (`entry`) VALUES('110330'); +INSERT INTO `transmog_items` (`entry`) VALUES('110331'); +INSERT INTO `transmog_items` (`entry`) VALUES('110332'); +INSERT INTO `transmog_items` (`entry`) VALUES('110333'); +INSERT INTO `transmog_items` (`entry`) VALUES('110358'); +INSERT INTO `transmog_items` (`entry`) VALUES('110359'); +INSERT INTO `transmog_items` (`entry`) VALUES('110362'); +INSERT INTO `transmog_items` (`entry`) VALUES('110363'); +INSERT INTO `transmog_items` (`entry`) VALUES('110364'); +INSERT INTO `transmog_items` (`entry`) VALUES('110365'); +INSERT INTO `transmog_items` (`entry`) VALUES('110366'); +INSERT INTO `transmog_items` (`entry`) VALUES('110367'); +INSERT INTO `transmog_items` (`entry`) VALUES('110368'); +INSERT INTO `transmog_items` (`entry`) VALUES('110369'); +INSERT INTO `transmog_items` (`entry`) VALUES('110370'); +INSERT INTO `transmog_items` (`entry`) VALUES('110371'); +INSERT INTO `transmog_items` (`entry`) VALUES('110372'); +INSERT INTO `transmog_items` (`entry`) VALUES('110373'); +INSERT INTO `transmog_items` (`entry`) VALUES('110374'); +INSERT INTO `transmog_items` (`entry`) VALUES('110375'); +INSERT INTO `transmog_items` (`entry`) VALUES('110376'); +INSERT INTO `transmog_items` (`entry`) VALUES('110377'); +INSERT INTO `transmog_items` (`entry`) VALUES('110378'); +INSERT INTO `transmog_items` (`entry`) VALUES('110379'); +INSERT INTO `transmog_items` (`entry`) VALUES('110380'); +INSERT INTO `transmog_items` (`entry`) VALUES('110381'); +INSERT INTO `transmog_items` (`entry`) VALUES('110382'); +INSERT INTO `transmog_items` (`entry`) VALUES('110383'); +INSERT INTO `transmog_items` (`entry`) VALUES('110384'); +INSERT INTO `transmog_items` (`entry`) VALUES('110385'); +INSERT INTO `transmog_items` (`entry`) VALUES('110386'); +INSERT INTO `transmog_items` (`entry`) VALUES('110387'); +INSERT INTO `transmog_items` (`entry`) VALUES('110388'); +INSERT INTO `transmog_items` (`entry`) VALUES('110389'); +INSERT INTO `transmog_items` (`entry`) VALUES('110390'); +INSERT INTO `transmog_items` (`entry`) VALUES('110391'); +INSERT INTO `transmog_items` (`entry`) VALUES('110399'); +INSERT INTO `transmog_items` (`entry`) VALUES('110400'); +INSERT INTO `transmog_items` (`entry`) VALUES('110401'); +INSERT INTO `transmog_items` (`entry`) VALUES('110402'); +INSERT INTO `transmog_items` (`entry`) VALUES('110403'); +INSERT INTO `transmog_items` (`entry`) VALUES('110404'); +INSERT INTO `transmog_items` (`entry`) VALUES('110405'); +INSERT INTO `transmog_items` (`entry`) VALUES('110406'); +INSERT INTO `transmog_items` (`entry`) VALUES('110407'); +INSERT INTO `transmog_items` (`entry`) VALUES('110408'); +INSERT INTO `transmog_items` (`entry`) VALUES('110409'); +INSERT INTO `transmog_items` (`entry`) VALUES('110410'); +INSERT INTO `transmog_items` (`entry`) VALUES('110411'); +INSERT INTO `transmog_items` (`entry`) VALUES('110412'); +INSERT INTO `transmog_items` (`entry`) VALUES('110413'); +INSERT INTO `transmog_items` (`entry`) VALUES('110421'); +INSERT INTO `transmog_items` (`entry`) VALUES('110423'); +INSERT INTO `transmog_items` (`entry`) VALUES('110461'); +INSERT INTO `transmog_items` (`entry`) VALUES('110462'); +INSERT INTO `transmog_items` (`entry`) VALUES('110499'); +INSERT INTO `transmog_items` (`entry`) VALUES('110500'); +INSERT INTO `transmog_items` (`entry`) VALUES('110501'); +INSERT INTO `transmog_items` (`entry`) VALUES('110502'); +INSERT INTO `transmog_items` (`entry`) VALUES('110503'); +INSERT INTO `transmog_items` (`entry`) VALUES('110504'); +INSERT INTO `transmog_items` (`entry`) VALUES('110506'); +INSERT INTO `transmog_items` (`entry`) VALUES('110508'); +INSERT INTO `transmog_items` (`entry`) VALUES('110510'); +INSERT INTO `transmog_items` (`entry`) VALUES('110518'); +INSERT INTO `transmog_items` (`entry`) VALUES('110542'); +INSERT INTO `transmog_items` (`entry`) VALUES('110543'); +INSERT INTO `transmog_items` (`entry`) VALUES('110544'); +INSERT INTO `transmog_items` (`entry`) VALUES('110545'); +INSERT INTO `transmog_items` (`entry`) VALUES('110547'); +INSERT INTO `transmog_items` (`entry`) VALUES('110549'); +INSERT INTO `transmog_items` (`entry`) VALUES('110550'); +INSERT INTO `transmog_items` (`entry`) VALUES('110553'); +INSERT INTO `transmog_items` (`entry`) VALUES('110554'); +INSERT INTO `transmog_items` (`entry`) VALUES('110567'); +INSERT INTO `transmog_items` (`entry`) VALUES('110570'); +INSERT INTO `transmog_items` (`entry`) VALUES('110571'); +INSERT INTO `transmog_items` (`entry`) VALUES('110572'); +INSERT INTO `transmog_items` (`entry`) VALUES('110574'); +INSERT INTO `transmog_items` (`entry`) VALUES('110578'); +INSERT INTO `transmog_items` (`entry`) VALUES('110581'); +INSERT INTO `transmog_items` (`entry`) VALUES('110582'); +INSERT INTO `transmog_items` (`entry`) VALUES('110583'); +INSERT INTO `transmog_items` (`entry`) VALUES('110584'); +INSERT INTO `transmog_items` (`entry`) VALUES('110588'); +INSERT INTO `transmog_items` (`entry`) VALUES('110624'); +INSERT INTO `transmog_items` (`entry`) VALUES('110625'); +INSERT INTO `transmog_items` (`entry`) VALUES('110629'); +INSERT INTO `transmog_items` (`entry`) VALUES('110630'); +INSERT INTO `transmog_items` (`entry`) VALUES('110631'); +INSERT INTO `transmog_items` (`entry`) VALUES('110632'); +INSERT INTO `transmog_items` (`entry`) VALUES('110633'); +INSERT INTO `transmog_items` (`entry`) VALUES('110635'); +INSERT INTO `transmog_items` (`entry`) VALUES('110636'); +INSERT INTO `transmog_items` (`entry`) VALUES('110637'); +INSERT INTO `transmog_items` (`entry`) VALUES('110638'); +INSERT INTO `transmog_items` (`entry`) VALUES('110652'); +INSERT INTO `transmog_items` (`entry`) VALUES('110653'); +INSERT INTO `transmog_items` (`entry`) VALUES('110654'); +INSERT INTO `transmog_items` (`entry`) VALUES('110655'); +INSERT INTO `transmog_items` (`entry`) VALUES('110656'); +INSERT INTO `transmog_items` (`entry`) VALUES('110657'); +INSERT INTO `transmog_items` (`entry`) VALUES('110658'); +INSERT INTO `transmog_items` (`entry`) VALUES('110686'); +INSERT INTO `transmog_items` (`entry`) VALUES('110697'); +INSERT INTO `transmog_items` (`entry`) VALUES('110700'); +INSERT INTO `transmog_items` (`entry`) VALUES('110701'); +INSERT INTO `transmog_items` (`entry`) VALUES('110702'); +INSERT INTO `transmog_items` (`entry`) VALUES('110703'); +INSERT INTO `transmog_items` (`entry`) VALUES('110704'); +INSERT INTO `transmog_items` (`entry`) VALUES('110705'); +INSERT INTO `transmog_items` (`entry`) VALUES('110706'); +INSERT INTO `transmog_items` (`entry`) VALUES('110707'); +INSERT INTO `transmog_items` (`entry`) VALUES('110721'); +INSERT INTO `transmog_items` (`entry`) VALUES('110724'); +INSERT INTO `transmog_items` (`entry`) VALUES('110726'); +INSERT INTO `transmog_items` (`entry`) VALUES('110740'); +INSERT INTO `transmog_items` (`entry`) VALUES('110741'); +INSERT INTO `transmog_items` (`entry`) VALUES('110742'); +INSERT INTO `transmog_items` (`entry`) VALUES('110743'); +INSERT INTO `transmog_items` (`entry`) VALUES('110745'); +INSERT INTO `transmog_items` (`entry`) VALUES('110746'); +INSERT INTO `transmog_items` (`entry`) VALUES('110747'); +INSERT INTO `transmog_items` (`entry`) VALUES('110748'); +INSERT INTO `transmog_items` (`entry`) VALUES('110749'); +INSERT INTO `transmog_items` (`entry`) VALUES('110750'); +INSERT INTO `transmog_items` (`entry`) VALUES('110751'); +INSERT INTO `transmog_items` (`entry`) VALUES('110760'); +INSERT INTO `transmog_items` (`entry`) VALUES('110761'); +INSERT INTO `transmog_items` (`entry`) VALUES('110762'); +INSERT INTO `transmog_items` (`entry`) VALUES('110763'); +INSERT INTO `transmog_items` (`entry`) VALUES('110764'); +INSERT INTO `transmog_items` (`entry`) VALUES('110765'); +INSERT INTO `transmog_items` (`entry`) VALUES('110766'); +INSERT INTO `transmog_items` (`entry`) VALUES('110767'); +INSERT INTO `transmog_items` (`entry`) VALUES('110768'); +INSERT INTO `transmog_items` (`entry`) VALUES('110771'); +INSERT INTO `transmog_items` (`entry`) VALUES('110774'); +INSERT INTO `transmog_items` (`entry`) VALUES('110775'); +INSERT INTO `transmog_items` (`entry`) VALUES('110776'); +INSERT INTO `transmog_items` (`entry`) VALUES('110777'); +INSERT INTO `transmog_items` (`entry`) VALUES('110781'); +INSERT INTO `transmog_items` (`entry`) VALUES('110782'); +INSERT INTO `transmog_items` (`entry`) VALUES('110783'); +INSERT INTO `transmog_items` (`entry`) VALUES('110784'); +INSERT INTO `transmog_items` (`entry`) VALUES('110785'); +INSERT INTO `transmog_items` (`entry`) VALUES('110786'); +INSERT INTO `transmog_items` (`entry`) VALUES('110787'); +INSERT INTO `transmog_items` (`entry`) VALUES('110788'); +INSERT INTO `transmog_items` (`entry`) VALUES('110798'); +INSERT INTO `transmog_items` (`entry`) VALUES('110799'); +INSERT INTO `transmog_items` (`entry`) VALUES('110800'); +INSERT INTO `transmog_items` (`entry`) VALUES('110801'); +INSERT INTO `transmog_items` (`entry`) VALUES('110802'); +INSERT INTO `transmog_items` (`entry`) VALUES('110804'); +INSERT INTO `transmog_items` (`entry`) VALUES('110806'); +INSERT INTO `transmog_items` (`entry`) VALUES('110807'); +INSERT INTO `transmog_items` (`entry`) VALUES('110808'); +INSERT INTO `transmog_items` (`entry`) VALUES('110820'); +INSERT INTO `transmog_items` (`entry`) VALUES('110821'); +INSERT INTO `transmog_items` (`entry`) VALUES('110827'); +INSERT INTO `transmog_items` (`entry`) VALUES('110828'); +INSERT INTO `transmog_items` (`entry`) VALUES('110833'); +INSERT INTO `transmog_items` (`entry`) VALUES('110835'); +INSERT INTO `transmog_items` (`entry`) VALUES('110836'); +INSERT INTO `transmog_items` (`entry`) VALUES('110838'); +INSERT INTO `transmog_items` (`entry`) VALUES('110842'); +INSERT INTO `transmog_items` (`entry`) VALUES('110843'); +INSERT INTO `transmog_items` (`entry`) VALUES('110845'); +INSERT INTO `transmog_items` (`entry`) VALUES('110846'); +INSERT INTO `transmog_items` (`entry`) VALUES('110919'); +INSERT INTO `transmog_items` (`entry`) VALUES('111120'); +INSERT INTO `transmog_items` (`entry`) VALUES('111123'); +INSERT INTO `transmog_items` (`entry`) VALUES('111124'); +INSERT INTO `transmog_items` (`entry`) VALUES('111187'); +INSERT INTO `transmog_items` (`entry`) VALUES('111189'); +INSERT INTO `transmog_items` (`entry`) VALUES('111190'); +INSERT INTO `transmog_items` (`entry`) VALUES('111191'); +INSERT INTO `transmog_items` (`entry`) VALUES('111192'); +INSERT INTO `transmog_items` (`entry`) VALUES('111193'); +INSERT INTO `transmog_items` (`entry`) VALUES('111194'); +INSERT INTO `transmog_items` (`entry`) VALUES('111195'); +INSERT INTO `transmog_items` (`entry`) VALUES('111229'); +INSERT INTO `transmog_items` (`entry`) VALUES('111263'); +INSERT INTO `transmog_items` (`entry`) VALUES('111287'); +INSERT INTO `transmog_items` (`entry`) VALUES('111288'); +INSERT INTO `transmog_items` (`entry`) VALUES('111289'); +INSERT INTO `transmog_items` (`entry`) VALUES('111290'); +INSERT INTO `transmog_items` (`entry`) VALUES('111303'); +INSERT INTO `transmog_items` (`entry`) VALUES('111304'); +INSERT INTO `transmog_items` (`entry`) VALUES('111305'); +INSERT INTO `transmog_items` (`entry`) VALUES('111306'); +INSERT INTO `transmog_items` (`entry`) VALUES('111307'); +INSERT INTO `transmog_items` (`entry`) VALUES('111308'); +INSERT INTO `transmog_items` (`entry`) VALUES('111310'); +INSERT INTO `transmog_items` (`entry`) VALUES('111311'); +INSERT INTO `transmog_items` (`entry`) VALUES('111411'); +INSERT INTO `transmog_items` (`entry`) VALUES('111469'); +INSERT INTO `transmog_items` (`entry`) VALUES('111475'); +INSERT INTO `transmog_items` (`entry`) VALUES('111502'); +INSERT INTO `transmog_items` (`entry`) VALUES('111508'); +INSERT INTO `transmog_items` (`entry`) VALUES('111603'); +INSERT INTO `transmog_items` (`entry`) VALUES('111604'); +INSERT INTO `transmog_items` (`entry`) VALUES('111605'); +INSERT INTO `transmog_items` (`entry`) VALUES('111606'); +INSERT INTO `transmog_items` (`entry`) VALUES('111607'); +INSERT INTO `transmog_items` (`entry`) VALUES('111623'); +INSERT INTO `transmog_items` (`entry`) VALUES('111624'); +INSERT INTO `transmog_items` (`entry`) VALUES('111626'); +INSERT INTO `transmog_items` (`entry`) VALUES('111627'); +INSERT INTO `transmog_items` (`entry`) VALUES('111628'); +INSERT INTO `transmog_items` (`entry`) VALUES('111629'); +INSERT INTO `transmog_items` (`entry`) VALUES('111631'); +INSERT INTO `transmog_items` (`entry`) VALUES('111632'); +INSERT INTO `transmog_items` (`entry`) VALUES('111633'); +INSERT INTO `transmog_items` (`entry`) VALUES('111634'); +INSERT INTO `transmog_items` (`entry`) VALUES('111635'); +INSERT INTO `transmog_items` (`entry`) VALUES('111662'); +INSERT INTO `transmog_items` (`entry`) VALUES('111665'); +INSERT INTO `transmog_items` (`entry`) VALUES('111675'); +INSERT INTO `transmog_items` (`entry`) VALUES('111677'); +INSERT INTO `transmog_items` (`entry`) VALUES('111678'); +INSERT INTO `transmog_items` (`entry`) VALUES('111679'); +INSERT INTO `transmog_items` (`entry`) VALUES('111684'); +INSERT INTO `transmog_items` (`entry`) VALUES('111685'); +INSERT INTO `transmog_items` (`entry`) VALUES('111686'); +INSERT INTO `transmog_items` (`entry`) VALUES('111703'); +INSERT INTO `transmog_items` (`entry`) VALUES('111722'); +INSERT INTO `transmog_items` (`entry`) VALUES('111726'); +INSERT INTO `transmog_items` (`entry`) VALUES('111728'); +INSERT INTO `transmog_items` (`entry`) VALUES('111729'); +INSERT INTO `transmog_items` (`entry`) VALUES('111730'); +INSERT INTO `transmog_items` (`entry`) VALUES('111731'); +INSERT INTO `transmog_items` (`entry`) VALUES('111735'); +INSERT INTO `transmog_items` (`entry`) VALUES('111743'); +INSERT INTO `transmog_items` (`entry`) VALUES('111744'); +INSERT INTO `transmog_items` (`entry`) VALUES('111745'); +INSERT INTO `transmog_items` (`entry`) VALUES('111746'); +INSERT INTO `transmog_items` (`entry`) VALUES('111747'); +INSERT INTO `transmog_items` (`entry`) VALUES('111748'); +INSERT INTO `transmog_items` (`entry`) VALUES('111749'); +INSERT INTO `transmog_items` (`entry`) VALUES('111764'); +INSERT INTO `transmog_items` (`entry`) VALUES('111765'); +INSERT INTO `transmog_items` (`entry`) VALUES('111766'); +INSERT INTO `transmog_items` (`entry`) VALUES('111767'); +INSERT INTO `transmog_items` (`entry`) VALUES('111768'); +INSERT INTO `transmog_items` (`entry`) VALUES('111782'); +INSERT INTO `transmog_items` (`entry`) VALUES('111783'); +INSERT INTO `transmog_items` (`entry`) VALUES('111785'); +INSERT INTO `transmog_items` (`entry`) VALUES('111787'); +INSERT INTO `transmog_items` (`entry`) VALUES('111802'); +INSERT INTO `transmog_items` (`entry`) VALUES('111805'); +INSERT INTO `transmog_items` (`entry`) VALUES('111807'); +INSERT INTO `transmog_items` (`entry`) VALUES('111808'); +INSERT INTO `transmog_items` (`entry`) VALUES('111809'); +INSERT INTO `transmog_items` (`entry`) VALUES('111812'); +INSERT INTO `transmog_items` (`entry`) VALUES('111814'); +INSERT INTO `transmog_items` (`entry`) VALUES('111816'); +INSERT INTO `transmog_items` (`entry`) VALUES('111820'); +INSERT INTO `transmog_items` (`entry`) VALUES('111821'); +INSERT INTO `transmog_items` (`entry`) VALUES('111822'); +INSERT INTO `transmog_items` (`entry`) VALUES('111823'); +INSERT INTO `transmog_items` (`entry`) VALUES('111839'); +INSERT INTO `transmog_items` (`entry`) VALUES('111841'); +INSERT INTO `transmog_items` (`entry`) VALUES('111842'); +INSERT INTO `transmog_items` (`entry`) VALUES('111847'); +INSERT INTO `transmog_items` (`entry`) VALUES('111848'); +INSERT INTO `transmog_items` (`entry`) VALUES('111849'); +INSERT INTO `transmog_items` (`entry`) VALUES('111850'); +INSERT INTO `transmog_items` (`entry`) VALUES('111851'); +INSERT INTO `transmog_items` (`entry`) VALUES('111852'); +INSERT INTO `transmog_items` (`entry`) VALUES('111853'); +INSERT INTO `transmog_items` (`entry`) VALUES('111856'); +INSERT INTO `transmog_items` (`entry`) VALUES('111858'); +INSERT INTO `transmog_items` (`entry`) VALUES('111860'); +INSERT INTO `transmog_items` (`entry`) VALUES('111861'); +INSERT INTO `transmog_items` (`entry`) VALUES('111863'); +INSERT INTO `transmog_items` (`entry`) VALUES('111864'); +INSERT INTO `transmog_items` (`entry`) VALUES('111865'); +INSERT INTO `transmog_items` (`entry`) VALUES('111866'); +INSERT INTO `transmog_items` (`entry`) VALUES('111867'); +INSERT INTO `transmog_items` (`entry`) VALUES('111871'); +INSERT INTO `transmog_items` (`entry`) VALUES('111872'); +INSERT INTO `transmog_items` (`entry`) VALUES('111873'); +INSERT INTO `transmog_items` (`entry`) VALUES('111874'); +INSERT INTO `transmog_items` (`entry`) VALUES('111875'); +INSERT INTO `transmog_items` (`entry`) VALUES('111876'); +INSERT INTO `transmog_items` (`entry`) VALUES('111882'); +INSERT INTO `transmog_items` (`entry`) VALUES('111884'); +INSERT INTO `transmog_items` (`entry`) VALUES('111888'); +INSERT INTO `transmog_items` (`entry`) VALUES('111889'); +INSERT INTO `transmog_items` (`entry`) VALUES('111906'); +INSERT INTO `transmog_items` (`entry`) VALUES('111907'); +INSERT INTO `transmog_items` (`entry`) VALUES('111908'); +INSERT INTO `transmog_items` (`entry`) VALUES('111909'); +INSERT INTO `transmog_items` (`entry`) VALUES('111910'); +INSERT INTO `transmog_items` (`entry`) VALUES('111911'); +INSERT INTO `transmog_items` (`entry`) VALUES('111913'); +INSERT INTO `transmog_items` (`entry`) VALUES('111915'); +INSERT INTO `transmog_items` (`entry`) VALUES('111916'); +INSERT INTO `transmog_items` (`entry`) VALUES('111917'); +INSERT INTO `transmog_items` (`entry`) VALUES('111918'); +INSERT INTO `transmog_items` (`entry`) VALUES('111919'); +INSERT INTO `transmog_items` (`entry`) VALUES('111922'); +INSERT INTO `transmog_items` (`entry`) VALUES('111923'); +INSERT INTO `transmog_items` (`entry`) VALUES('111924'); +INSERT INTO `transmog_items` (`entry`) VALUES('111925'); +INSERT INTO `transmog_items` (`entry`) VALUES('111926'); +INSERT INTO `transmog_items` (`entry`) VALUES('111927'); +INSERT INTO `transmog_items` (`entry`) VALUES('111929'); +INSERT INTO `transmog_items` (`entry`) VALUES('111930'); +INSERT INTO `transmog_items` (`entry`) VALUES('111931'); +INSERT INTO `transmog_items` (`entry`) VALUES('111936'); +INSERT INTO `transmog_items` (`entry`) VALUES('111962'); +INSERT INTO `transmog_items` (`entry`) VALUES('111963'); +INSERT INTO `transmog_items` (`entry`) VALUES('111964'); +INSERT INTO `transmog_items` (`entry`) VALUES('112000'); +INSERT INTO `transmog_items` (`entry`) VALUES('112018'); +INSERT INTO `transmog_items` (`entry`) VALUES('112021'); +INSERT INTO `transmog_items` (`entry`) VALUES('112041'); +INSERT INTO `transmog_items` (`entry`) VALUES('112049'); +INSERT INTO `transmog_items` (`entry`) VALUES('112050'); +INSERT INTO `transmog_items` (`entry`) VALUES('112051'); +INSERT INTO `transmog_items` (`entry`) VALUES('112062'); +INSERT INTO `transmog_items` (`entry`) VALUES('112064'); +INSERT INTO `transmog_items` (`entry`) VALUES('112066'); +INSERT INTO `transmog_items` (`entry`) VALUES('112082'); +INSERT INTO `transmog_items` (`entry`) VALUES('112083'); +INSERT INTO `transmog_items` (`entry`) VALUES('112104'); +INSERT INTO `transmog_items` (`entry`) VALUES('112105'); +INSERT INTO `transmog_items` (`entry`) VALUES('112106'); +INSERT INTO `transmog_items` (`entry`) VALUES('112107'); +INSERT INTO `transmog_items` (`entry`) VALUES('112108'); +INSERT INTO `transmog_items` (`entry`) VALUES('112109'); +INSERT INTO `transmog_items` (`entry`) VALUES('112110'); +INSERT INTO `transmog_items` (`entry`) VALUES('112111'); +INSERT INTO `transmog_items` (`entry`) VALUES('112112'); +INSERT INTO `transmog_items` (`entry`) VALUES('112113'); +INSERT INTO `transmog_items` (`entry`) VALUES('112114'); +INSERT INTO `transmog_items` (`entry`) VALUES('112115'); +INSERT INTO `transmog_items` (`entry`) VALUES('112185'); +INSERT INTO `transmog_items` (`entry`) VALUES('112225'); +INSERT INTO `transmog_items` (`entry`) VALUES('112243'); +INSERT INTO `transmog_items` (`entry`) VALUES('112247'); +INSERT INTO `transmog_items` (`entry`) VALUES('112248'); +INSERT INTO `transmog_items` (`entry`) VALUES('112249'); +INSERT INTO `transmog_items` (`entry`) VALUES('112250'); +INSERT INTO `transmog_items` (`entry`) VALUES('112253'); +INSERT INTO `transmog_items` (`entry`) VALUES('112254'); +INSERT INTO `transmog_items` (`entry`) VALUES('112255'); +INSERT INTO `transmog_items` (`entry`) VALUES('112256'); +INSERT INTO `transmog_items` (`entry`) VALUES('112257'); +INSERT INTO `transmog_items` (`entry`) VALUES('112258'); +INSERT INTO `transmog_items` (`entry`) VALUES('112259'); +INSERT INTO `transmog_items` (`entry`) VALUES('112260'); +INSERT INTO `transmog_items` (`entry`) VALUES('112282'); +INSERT INTO `transmog_items` (`entry`) VALUES('112295'); +INSERT INTO `transmog_items` (`entry`) VALUES('112296'); +INSERT INTO `transmog_items` (`entry`) VALUES('112299'); +INSERT INTO `transmog_items` (`entry`) VALUES('112405'); +INSERT INTO `transmog_items` (`entry`) VALUES('112406'); +INSERT INTO `transmog_items` (`entry`) VALUES('112408'); +INSERT INTO `transmog_items` (`entry`) VALUES('112409'); +INSERT INTO `transmog_items` (`entry`) VALUES('112410'); +INSERT INTO `transmog_items` (`entry`) VALUES('112414'); +INSERT INTO `transmog_items` (`entry`) VALUES('112415'); +INSERT INTO `transmog_items` (`entry`) VALUES('112416'); +INSERT INTO `transmog_items` (`entry`) VALUES('112417'); +INSERT INTO `transmog_items` (`entry`) VALUES('112418'); +INSERT INTO `transmog_items` (`entry`) VALUES('112419'); +INSERT INTO `transmog_items` (`entry`) VALUES('112420'); +INSERT INTO `transmog_items` (`entry`) VALUES('112422'); +INSERT INTO `transmog_items` (`entry`) VALUES('112424'); +INSERT INTO `transmog_items` (`entry`) VALUES('112425'); +INSERT INTO `transmog_items` (`entry`) VALUES('112426'); +INSERT INTO `transmog_items` (`entry`) VALUES('112427'); +INSERT INTO `transmog_items` (`entry`) VALUES('112428'); +INSERT INTO `transmog_items` (`entry`) VALUES('112429'); +INSERT INTO `transmog_items` (`entry`) VALUES('112446'); +INSERT INTO `transmog_items` (`entry`) VALUES('112447'); +INSERT INTO `transmog_items` (`entry`) VALUES('112448'); +INSERT INTO `transmog_items` (`entry`) VALUES('112449'); +INSERT INTO `transmog_items` (`entry`) VALUES('112462'); +INSERT INTO `transmog_items` (`entry`) VALUES('112464'); +INSERT INTO `transmog_items` (`entry`) VALUES('112465'); +INSERT INTO `transmog_items` (`entry`) VALUES('112466'); +INSERT INTO `transmog_items` (`entry`) VALUES('112468'); +INSERT INTO `transmog_items` (`entry`) VALUES('112470'); +INSERT INTO `transmog_items` (`entry`) VALUES('112522'); +INSERT INTO `transmog_items` (`entry`) VALUES('112531'); +INSERT INTO `transmog_items` (`entry`) VALUES('112542'); +INSERT INTO `transmog_items` (`entry`) VALUES('112546'); +INSERT INTO `transmog_items` (`entry`) VALUES('112547'); +INSERT INTO `transmog_items` (`entry`) VALUES('112549'); +INSERT INTO `transmog_items` (`entry`) VALUES('112550'); +INSERT INTO `transmog_items` (`entry`) VALUES('112551'); +INSERT INTO `transmog_items` (`entry`) VALUES('112552'); +INSERT INTO `transmog_items` (`entry`) VALUES('112553'); +INSERT INTO `transmog_items` (`entry`) VALUES('112554'); +INSERT INTO `transmog_items` (`entry`) VALUES('112555'); +INSERT INTO `transmog_items` (`entry`) VALUES('112556'); +INSERT INTO `transmog_items` (`entry`) VALUES('112557'); +INSERT INTO `transmog_items` (`entry`) VALUES('112582'); +INSERT INTO `transmog_items` (`entry`) VALUES('112583'); +INSERT INTO `transmog_items` (`entry`) VALUES('112587'); +INSERT INTO `transmog_items` (`entry`) VALUES('112588'); +INSERT INTO `transmog_items` (`entry`) VALUES('112589'); +INSERT INTO `transmog_items` (`entry`) VALUES('112590'); +INSERT INTO `transmog_items` (`entry`) VALUES('112602'); +INSERT INTO `transmog_items` (`entry`) VALUES('112603'); +INSERT INTO `transmog_items` (`entry`) VALUES('112604'); +INSERT INTO `transmog_items` (`entry`) VALUES('112605'); +INSERT INTO `transmog_items` (`entry`) VALUES('112606'); +INSERT INTO `transmog_items` (`entry`) VALUES('112608'); +INSERT INTO `transmog_items` (`entry`) VALUES('112609'); +INSERT INTO `transmog_items` (`entry`) VALUES('112610'); +INSERT INTO `transmog_items` (`entry`) VALUES('112611'); +INSERT INTO `transmog_items` (`entry`) VALUES('112612'); +INSERT INTO `transmog_items` (`entry`) VALUES('112613'); +INSERT INTO `transmog_items` (`entry`) VALUES('112614'); +INSERT INTO `transmog_items` (`entry`) VALUES('112615'); +INSERT INTO `transmog_items` (`entry`) VALUES('112616'); +INSERT INTO `transmog_items` (`entry`) VALUES('112617'); +INSERT INTO `transmog_items` (`entry`) VALUES('112618'); +INSERT INTO `transmog_items` (`entry`) VALUES('112619'); +INSERT INTO `transmog_items` (`entry`) VALUES('112620'); +INSERT INTO `transmog_items` (`entry`) VALUES('112624'); +INSERT INTO `transmog_items` (`entry`) VALUES('112625'); +INSERT INTO `transmog_items` (`entry`) VALUES('112626'); +INSERT INTO `transmog_items` (`entry`) VALUES('112628'); +INSERT INTO `transmog_items` (`entry`) VALUES('112631'); +INSERT INTO `transmog_items` (`entry`) VALUES('112632'); +INSERT INTO `transmog_items` (`entry`) VALUES('112633'); +INSERT INTO `transmog_items` (`entry`) VALUES('112634'); +INSERT INTO `transmog_items` (`entry`) VALUES('112636'); +INSERT INTO `transmog_items` (`entry`) VALUES('112637'); +INSERT INTO `transmog_items` (`entry`) VALUES('112639'); +INSERT INTO `transmog_items` (`entry`) VALUES('112640'); +INSERT INTO `transmog_items` (`entry`) VALUES('112641'); +INSERT INTO `transmog_items` (`entry`) VALUES('112651'); +INSERT INTO `transmog_items` (`entry`) VALUES('112653'); +INSERT INTO `transmog_items` (`entry`) VALUES('112709'); +INSERT INTO `transmog_items` (`entry`) VALUES('112752'); +INSERT INTO `transmog_items` (`entry`) VALUES('112756'); +INSERT INTO `transmog_items` (`entry`) VALUES('112757'); +INSERT INTO `transmog_items` (`entry`) VALUES('112769'); +INSERT INTO `transmog_items` (`entry`) VALUES('112775'); +INSERT INTO `transmog_items` (`entry`) VALUES('112781'); +INSERT INTO `transmog_items` (`entry`) VALUES('112783'); +INSERT INTO `transmog_items` (`entry`) VALUES('112784'); +INSERT INTO `transmog_items` (`entry`) VALUES('112791'); +INSERT INTO `transmog_items` (`entry`) VALUES('112792'); +INSERT INTO `transmog_items` (`entry`) VALUES('112793'); +INSERT INTO `transmog_items` (`entry`) VALUES('112794'); +INSERT INTO `transmog_items` (`entry`) VALUES('112795'); +INSERT INTO `transmog_items` (`entry`) VALUES('112802'); +INSERT INTO `transmog_items` (`entry`) VALUES('112866'); +INSERT INTO `transmog_items` (`entry`) VALUES('112895'); +INSERT INTO `transmog_items` (`entry`) VALUES('112903'); +INSERT INTO `transmog_items` (`entry`) VALUES('112904'); +INSERT INTO `transmog_items` (`entry`) VALUES('112905'); +INSERT INTO `transmog_items` (`entry`) VALUES('112927'); +INSERT INTO `transmog_items` (`entry`) VALUES('112935'); +INSERT INTO `transmog_items` (`entry`) VALUES('112936'); +INSERT INTO `transmog_items` (`entry`) VALUES('112945'); +INSERT INTO `transmog_items` (`entry`) VALUES('112952'); +INSERT INTO `transmog_items` (`entry`) VALUES('112953'); +INSERT INTO `transmog_items` (`entry`) VALUES('112960'); +INSERT INTO `transmog_items` (`entry`) VALUES('112963'); +INSERT INTO `transmog_items` (`entry`) VALUES('112964'); +INSERT INTO `transmog_items` (`entry`) VALUES('112965'); +INSERT INTO `transmog_items` (`entry`) VALUES('112966'); +INSERT INTO `transmog_items` (`entry`) VALUES('112967'); +INSERT INTO `transmog_items` (`entry`) VALUES('112968'); +INSERT INTO `transmog_items` (`entry`) VALUES('112970'); +INSERT INTO `transmog_items` (`entry`) VALUES('112975'); +INSERT INTO `transmog_items` (`entry`) VALUES('112977'); +INSERT INTO `transmog_items` (`entry`) VALUES('112978'); +INSERT INTO `transmog_items` (`entry`) VALUES('112979'); +INSERT INTO `transmog_items` (`entry`) VALUES('112982'); +INSERT INTO `transmog_items` (`entry`) VALUES('112984'); +INSERT INTO `transmog_items` (`entry`) VALUES('112987'); +INSERT INTO `transmog_items` (`entry`) VALUES('112988'); +INSERT INTO `transmog_items` (`entry`) VALUES('112989'); +INSERT INTO `transmog_items` (`entry`) VALUES('112994'); +INSERT INTO `transmog_items` (`entry`) VALUES('112997'); +INSERT INTO `transmog_items` (`entry`) VALUES('112998'); +INSERT INTO `transmog_items` (`entry`) VALUES('112999'); +INSERT INTO `transmog_items` (`entry`) VALUES('113003'); +INSERT INTO `transmog_items` (`entry`) VALUES('113004'); +INSERT INTO `transmog_items` (`entry`) VALUES('113005'); +INSERT INTO `transmog_items` (`entry`) VALUES('113006'); +INSERT INTO `transmog_items` (`entry`) VALUES('113007'); +INSERT INTO `transmog_items` (`entry`) VALUES('113008'); +INSERT INTO `transmog_items` (`entry`) VALUES('113009'); +INSERT INTO `transmog_items` (`entry`) VALUES('113010'); +INSERT INTO `transmog_items` (`entry`) VALUES('113011'); +INSERT INTO `transmog_items` (`entry`) VALUES('113012'); +INSERT INTO `transmog_items` (`entry`) VALUES('113013'); +INSERT INTO `transmog_items` (`entry`) VALUES('113016'); +INSERT INTO `transmog_items` (`entry`) VALUES('113017'); +INSERT INTO `transmog_items` (`entry`) VALUES('113018'); +INSERT INTO `transmog_items` (`entry`) VALUES('113019'); +INSERT INTO `transmog_items` (`entry`) VALUES('113020'); +INSERT INTO `transmog_items` (`entry`) VALUES('113021'); +INSERT INTO `transmog_items` (`entry`) VALUES('113022'); +INSERT INTO `transmog_items` (`entry`) VALUES('113023'); +INSERT INTO `transmog_items` (`entry`) VALUES('113024'); +INSERT INTO `transmog_items` (`entry`) VALUES('113025'); +INSERT INTO `transmog_items` (`entry`) VALUES('113026'); +INSERT INTO `transmog_items` (`entry`) VALUES('113027'); +INSERT INTO `transmog_items` (`entry`) VALUES('113028'); +INSERT INTO `transmog_items` (`entry`) VALUES('113037'); +INSERT INTO `transmog_items` (`entry`) VALUES('113038'); +INSERT INTO `transmog_items` (`entry`) VALUES('113039'); +INSERT INTO `transmog_items` (`entry`) VALUES('113040'); +INSERT INTO `transmog_items` (`entry`) VALUES('113048'); +INSERT INTO `transmog_items` (`entry`) VALUES('113054'); +INSERT INTO `transmog_items` (`entry`) VALUES('113055'); +INSERT INTO `transmog_items` (`entry`) VALUES('113056'); +INSERT INTO `transmog_items` (`entry`) VALUES('113057'); +INSERT INTO `transmog_items` (`entry`) VALUES('113058'); +INSERT INTO `transmog_items` (`entry`) VALUES('113059'); +INSERT INTO `transmog_items` (`entry`) VALUES('113060'); +INSERT INTO `transmog_items` (`entry`) VALUES('113062'); +INSERT INTO `transmog_items` (`entry`) VALUES('113063'); +INSERT INTO `transmog_items` (`entry`) VALUES('113064'); +INSERT INTO `transmog_items` (`entry`) VALUES('113065'); +INSERT INTO `transmog_items` (`entry`) VALUES('113066'); +INSERT INTO `transmog_items` (`entry`) VALUES('113067'); +INSERT INTO `transmog_items` (`entry`) VALUES('113068'); +INSERT INTO `transmog_items` (`entry`) VALUES('113070'); +INSERT INTO `transmog_items` (`entry`) VALUES('113071'); +INSERT INTO `transmog_items` (`entry`) VALUES('113072'); +INSERT INTO `transmog_items` (`entry`) VALUES('113073'); +INSERT INTO `transmog_items` (`entry`) VALUES('113074'); +INSERT INTO `transmog_items` (`entry`) VALUES('113075'); +INSERT INTO `transmog_items` (`entry`) VALUES('113076'); +INSERT INTO `transmog_items` (`entry`) VALUES('113077'); +INSERT INTO `transmog_items` (`entry`) VALUES('113079'); +INSERT INTO `transmog_items` (`entry`) VALUES('113080'); +INSERT INTO `transmog_items` (`entry`) VALUES('113081'); +INSERT INTO `transmog_items` (`entry`) VALUES('113082'); +INSERT INTO `transmog_items` (`entry`) VALUES('113083'); +INSERT INTO `transmog_items` (`entry`) VALUES('113090'); +INSERT INTO `transmog_items` (`entry`) VALUES('113092'); +INSERT INTO `transmog_items` (`entry`) VALUES('113099'); +INSERT INTO `transmog_items` (`entry`) VALUES('113100'); +INSERT INTO `transmog_items` (`entry`) VALUES('113101'); +INSERT INTO `transmog_items` (`entry`) VALUES('113102'); +INSERT INTO `transmog_items` (`entry`) VALUES('113103'); +INSERT INTO `transmog_items` (`entry`) VALUES('113105'); +INSERT INTO `transmog_items` (`entry`) VALUES('113106'); +INSERT INTO `transmog_items` (`entry`) VALUES('113107'); +INSERT INTO `transmog_items` (`entry`) VALUES('113108'); +INSERT INTO `transmog_items` (`entry`) VALUES('113109'); +INSERT INTO `transmog_items` (`entry`) VALUES('113110'); +INSERT INTO `transmog_items` (`entry`) VALUES('113111'); +INSERT INTO `transmog_items` (`entry`) VALUES('113112'); +INSERT INTO `transmog_items` (`entry`) VALUES('113113'); +INSERT INTO `transmog_items` (`entry`) VALUES('113114'); +INSERT INTO `transmog_items` (`entry`) VALUES('113115'); +INSERT INTO `transmog_items` (`entry`) VALUES('113116'); +INSERT INTO `transmog_items` (`entry`) VALUES('113117'); +INSERT INTO `transmog_items` (`entry`) VALUES('113118'); +INSERT INTO `transmog_items` (`entry`) VALUES('113119'); +INSERT INTO `transmog_items` (`entry`) VALUES('113120'); +INSERT INTO `transmog_items` (`entry`) VALUES('113121'); +INSERT INTO `transmog_items` (`entry`) VALUES('113122'); +INSERT INTO `transmog_items` (`entry`) VALUES('113123'); +INSERT INTO `transmog_items` (`entry`) VALUES('113124'); +INSERT INTO `transmog_items` (`entry`) VALUES('113125'); +INSERT INTO `transmog_items` (`entry`) VALUES('113126'); +INSERT INTO `transmog_items` (`entry`) VALUES('113127'); +INSERT INTO `transmog_items` (`entry`) VALUES('113128'); +INSERT INTO `transmog_items` (`entry`) VALUES('113129'); +INSERT INTO `transmog_items` (`entry`) VALUES('113130'); +INSERT INTO `transmog_items` (`entry`) VALUES('113131'); +INSERT INTO `transmog_items` (`entry`) VALUES('113132'); +INSERT INTO `transmog_items` (`entry`) VALUES('113133'); +INSERT INTO `transmog_items` (`entry`) VALUES('113134'); +INSERT INTO `transmog_items` (`entry`) VALUES('113135'); +INSERT INTO `transmog_items` (`entry`) VALUES('113136'); +INSERT INTO `transmog_items` (`entry`) VALUES('113137'); +INSERT INTO `transmog_items` (`entry`) VALUES('113138'); +INSERT INTO `transmog_items` (`entry`) VALUES('113139'); +INSERT INTO `transmog_items` (`entry`) VALUES('113142'); +INSERT INTO `transmog_items` (`entry`) VALUES('113144'); +INSERT INTO `transmog_items` (`entry`) VALUES('113145'); +INSERT INTO `transmog_items` (`entry`) VALUES('113146'); +INSERT INTO `transmog_items` (`entry`) VALUES('113148'); +INSERT INTO `transmog_items` (`entry`) VALUES('113162'); +INSERT INTO `transmog_items` (`entry`) VALUES('113166'); +INSERT INTO `transmog_items` (`entry`) VALUES('113168'); +INSERT INTO `transmog_items` (`entry`) VALUES('113169'); +INSERT INTO `transmog_items` (`entry`) VALUES('113170'); +INSERT INTO `transmog_items` (`entry`) VALUES('113175'); +INSERT INTO `transmog_items` (`entry`) VALUES('113179'); +INSERT INTO `transmog_items` (`entry`) VALUES('113181'); +INSERT INTO `transmog_items` (`entry`) VALUES('113183'); +INSERT INTO `transmog_items` (`entry`) VALUES('113184'); +INSERT INTO `transmog_items` (`entry`) VALUES('113185'); +INSERT INTO `transmog_items` (`entry`) VALUES('113198'); +INSERT INTO `transmog_items` (`entry`) VALUES('113199'); +INSERT INTO `transmog_items` (`entry`) VALUES('113203'); +INSERT INTO `transmog_items` (`entry`) VALUES('113204'); +INSERT INTO `transmog_items` (`entry`) VALUES('113205'); +INSERT INTO `transmog_items` (`entry`) VALUES('113206'); +INSERT INTO `transmog_items` (`entry`) VALUES('113208'); +INSERT INTO `transmog_items` (`entry`) VALUES('113210'); +INSERT INTO `transmog_items` (`entry`) VALUES('113211'); +INSERT INTO `transmog_items` (`entry`) VALUES('113216'); +INSERT INTO `transmog_items` (`entry`) VALUES('113218'); +INSERT INTO `transmog_items` (`entry`) VALUES('113243'); +INSERT INTO `transmog_items` (`entry`) VALUES('113244'); +INSERT INTO `transmog_items` (`entry`) VALUES('113245'); +INSERT INTO `transmog_items` (`entry`) VALUES('113248'); +INSERT INTO `transmog_items` (`entry`) VALUES('113252'); +INSERT INTO `transmog_items` (`entry`) VALUES('113253'); +INSERT INTO `transmog_items` (`entry`) VALUES('113254'); +INSERT INTO `transmog_items` (`entry`) VALUES('113255'); +INSERT INTO `transmog_items` (`entry`) VALUES('113257'); +INSERT INTO `transmog_items` (`entry`) VALUES('113258'); +INSERT INTO `transmog_items` (`entry`) VALUES('113259'); +INSERT INTO `transmog_items` (`entry`) VALUES('113260'); +INSERT INTO `transmog_items` (`entry`) VALUES('113282'); +INSERT INTO `transmog_items` (`entry`) VALUES('113284'); +INSERT INTO `transmog_items` (`entry`) VALUES('113285'); +INSERT INTO `transmog_items` (`entry`) VALUES('113314'); +INSERT INTO `transmog_items` (`entry`) VALUES('113340'); +INSERT INTO `transmog_items` (`entry`) VALUES('113344'); +INSERT INTO `transmog_items` (`entry`) VALUES('113346'); +INSERT INTO `transmog_items` (`entry`) VALUES('113349'); +INSERT INTO `transmog_items` (`entry`) VALUES('113358'); +INSERT INTO `transmog_items` (`entry`) VALUES('113359'); +INSERT INTO `transmog_items` (`entry`) VALUES('113360'); +INSERT INTO `transmog_items` (`entry`) VALUES('113368'); +INSERT INTO `transmog_items` (`entry`) VALUES('113369'); +INSERT INTO `transmog_items` (`entry`) VALUES('113374'); +INSERT INTO `transmog_items` (`entry`) VALUES('113375'); +INSERT INTO `transmog_items` (`entry`) VALUES('113376'); +INSERT INTO `transmog_items` (`entry`) VALUES('113378'); +INSERT INTO `transmog_items` (`entry`) VALUES('113380'); +INSERT INTO `transmog_items` (`entry`) VALUES('113381'); +INSERT INTO `transmog_items` (`entry`) VALUES('113383'); +INSERT INTO `transmog_items` (`entry`) VALUES('113384'); +INSERT INTO `transmog_items` (`entry`) VALUES('113386'); +INSERT INTO `transmog_items` (`entry`) VALUES('113387'); +INSERT INTO `transmog_items` (`entry`) VALUES('113388'); +INSERT INTO `transmog_items` (`entry`) VALUES('113389'); +INSERT INTO `transmog_items` (`entry`) VALUES('113390'); +INSERT INTO `transmog_items` (`entry`) VALUES('113391'); +INSERT INTO `transmog_items` (`entry`) VALUES('113394'); +INSERT INTO `transmog_items` (`entry`) VALUES('113395'); +INSERT INTO `transmog_items` (`entry`) VALUES('113396'); +INSERT INTO `transmog_items` (`entry`) VALUES('113397'); +INSERT INTO `transmog_items` (`entry`) VALUES('113398'); +INSERT INTO `transmog_items` (`entry`) VALUES('113399'); +INSERT INTO `transmog_items` (`entry`) VALUES('113400'); +INSERT INTO `transmog_items` (`entry`) VALUES('113401'); +INSERT INTO `transmog_items` (`entry`) VALUES('113402'); +INSERT INTO `transmog_items` (`entry`) VALUES('113403'); +INSERT INTO `transmog_items` (`entry`) VALUES('113404'); +INSERT INTO `transmog_items` (`entry`) VALUES('113405'); +INSERT INTO `transmog_items` (`entry`) VALUES('113409'); +INSERT INTO `transmog_items` (`entry`) VALUES('113474'); +INSERT INTO `transmog_items` (`entry`) VALUES('113498'); +INSERT INTO `transmog_items` (`entry`) VALUES('113502'); +INSERT INTO `transmog_items` (`entry`) VALUES('113525'); +INSERT INTO `transmog_items` (`entry`) VALUES('113526'); +INSERT INTO `transmog_items` (`entry`) VALUES('113527'); +INSERT INTO `transmog_items` (`entry`) VALUES('113528'); +INSERT INTO `transmog_items` (`entry`) VALUES('113529'); +INSERT INTO `transmog_items` (`entry`) VALUES('113530'); +INSERT INTO `transmog_items` (`entry`) VALUES('113531'); +INSERT INTO `transmog_items` (`entry`) VALUES('113532'); +INSERT INTO `transmog_items` (`entry`) VALUES('113533'); +INSERT INTO `transmog_items` (`entry`) VALUES('113534'); +INSERT INTO `transmog_items` (`entry`) VALUES('113535'); +INSERT INTO `transmog_items` (`entry`) VALUES('113537'); +INSERT INTO `transmog_items` (`entry`) VALUES('113538'); +INSERT INTO `transmog_items` (`entry`) VALUES('113539'); +INSERT INTO `transmog_items` (`entry`) VALUES('113819'); +INSERT INTO `transmog_items` (`entry`) VALUES('113820'); +INSERT INTO `transmog_items` (`entry`) VALUES('113822'); +INSERT INTO `transmog_items` (`entry`) VALUES('113824'); +INSERT INTO `transmog_items` (`entry`) VALUES('113825'); +INSERT INTO `transmog_items` (`entry`) VALUES('113856'); +INSERT INTO `transmog_items` (`entry`) VALUES('113857'); +INSERT INTO `transmog_items` (`entry`) VALUES('113858'); +INSERT INTO `transmog_items` (`entry`) VALUES('113860'); +INSERT INTO `transmog_items` (`entry`) VALUES('113863'); +INSERT INTO `transmog_items` (`entry`) VALUES('113864'); +INSERT INTO `transmog_items` (`entry`) VALUES('113865'); +INSERT INTO `transmog_items` (`entry`) VALUES('113866'); +INSERT INTO `transmog_items` (`entry`) VALUES('113867'); +INSERT INTO `transmog_items` (`entry`) VALUES('113868'); +INSERT INTO `transmog_items` (`entry`) VALUES('113869'); +INSERT INTO `transmog_items` (`entry`) VALUES('113870'); +INSERT INTO `transmog_items` (`entry`) VALUES('113871'); +INSERT INTO `transmog_items` (`entry`) VALUES('113936'); +INSERT INTO `transmog_items` (`entry`) VALUES('113938'); +INSERT INTO `transmog_items` (`entry`) VALUES('113944'); +INSERT INTO `transmog_items` (`entry`) VALUES('113950'); +INSERT INTO `transmog_items` (`entry`) VALUES('113951'); +INSERT INTO `transmog_items` (`entry`) VALUES('113954'); +INSERT INTO `transmog_items` (`entry`) VALUES('113955'); +INSERT INTO `transmog_items` (`entry`) VALUES('113956'); +INSERT INTO `transmog_items` (`entry`) VALUES('113957'); +INSERT INTO `transmog_items` (`entry`) VALUES('113958'); +INSERT INTO `transmog_items` (`entry`) VALUES('113959'); +INSERT INTO `transmog_items` (`entry`) VALUES('113961'); +INSERT INTO `transmog_items` (`entry`) VALUES('113962'); +INSERT INTO `transmog_items` (`entry`) VALUES('113963'); +INSERT INTO `transmog_items` (`entry`) VALUES('113964'); +INSERT INTO `transmog_items` (`entry`) VALUES('113967'); +INSERT INTO `transmog_items` (`entry`) VALUES('113969'); +INSERT INTO `transmog_items` (`entry`) VALUES('113983'); +INSERT INTO `transmog_items` (`entry`) VALUES('113984'); +INSERT INTO `transmog_items` (`entry`) VALUES('113986'); +INSERT INTO `transmog_items` (`entry`) VALUES('114002'); +INSERT INTO `transmog_items` (`entry`) VALUES('114024'); +INSERT INTO `transmog_items` (`entry`) VALUES('114025'); +INSERT INTO `transmog_items` (`entry`) VALUES('114042'); +INSERT INTO `transmog_items` (`entry`) VALUES('114043'); +INSERT INTO `transmog_items` (`entry`) VALUES('114044'); +INSERT INTO `transmog_items` (`entry`) VALUES('114045'); +INSERT INTO `transmog_items` (`entry`) VALUES('114086'); +INSERT INTO `transmog_items` (`entry`) VALUES('114087'); +INSERT INTO `transmog_items` (`entry`) VALUES('114088'); +INSERT INTO `transmog_items` (`entry`) VALUES('114089'); +INSERT INTO `transmog_items` (`entry`) VALUES('114090'); +INSERT INTO `transmog_items` (`entry`) VALUES('114091'); +INSERT INTO `transmog_items` (`entry`) VALUES('114093'); +INSERT INTO `transmog_items` (`entry`) VALUES('114094'); +INSERT INTO `transmog_items` (`entry`) VALUES('114095'); +INSERT INTO `transmog_items` (`entry`) VALUES('114096'); +INSERT INTO `transmog_items` (`entry`) VALUES('114097'); +INSERT INTO `transmog_items` (`entry`) VALUES('114098'); +INSERT INTO `transmog_items` (`entry`) VALUES('114099'); +INSERT INTO `transmog_items` (`entry`) VALUES('114100'); +INSERT INTO `transmog_items` (`entry`) VALUES('114101'); +INSERT INTO `transmog_items` (`entry`) VALUES('114102'); +INSERT INTO `transmog_items` (`entry`) VALUES('114103'); +INSERT INTO `transmog_items` (`entry`) VALUES('114104'); +INSERT INTO `transmog_items` (`entry`) VALUES('114106'); +INSERT INTO `transmog_items` (`entry`) VALUES('114107'); +INSERT INTO `transmog_items` (`entry`) VALUES('114108'); +INSERT INTO `transmog_items` (`entry`) VALUES('114109'); +INSERT INTO `transmog_items` (`entry`) VALUES('114110'); +INSERT INTO `transmog_items` (`entry`) VALUES('114111'); +INSERT INTO `transmog_items` (`entry`) VALUES('114112'); +INSERT INTO `transmog_items` (`entry`) VALUES('114113'); +INSERT INTO `transmog_items` (`entry`) VALUES('114114'); +INSERT INTO `transmog_items` (`entry`) VALUES('114115'); +INSERT INTO `transmog_items` (`entry`) VALUES('114116'); +INSERT INTO `transmog_items` (`entry`) VALUES('114117'); +INSERT INTO `transmog_items` (`entry`) VALUES('114119'); +INSERT INTO `transmog_items` (`entry`) VALUES('114120'); +INSERT INTO `transmog_items` (`entry`) VALUES('114121'); +INSERT INTO `transmog_items` (`entry`) VALUES('114122'); +INSERT INTO `transmog_items` (`entry`) VALUES('114123'); +INSERT INTO `transmog_items` (`entry`) VALUES('114124'); +INSERT INTO `transmog_items` (`entry`) VALUES('114125'); +INSERT INTO `transmog_items` (`entry`) VALUES('114126'); +INSERT INTO `transmog_items` (`entry`) VALUES('114127'); +INSERT INTO `transmog_items` (`entry`) VALUES('114128'); +INSERT INTO `transmog_items` (`entry`) VALUES('114129'); +INSERT INTO `transmog_items` (`entry`) VALUES('114130'); +INSERT INTO `transmog_items` (`entry`) VALUES('114131'); +INSERT INTO `transmog_items` (`entry`) VALUES('114132'); +INSERT INTO `transmog_items` (`entry`) VALUES('114133'); +INSERT INTO `transmog_items` (`entry`) VALUES('114134'); +INSERT INTO `transmog_items` (`entry`) VALUES('114136'); +INSERT INTO `transmog_items` (`entry`) VALUES('114137'); +INSERT INTO `transmog_items` (`entry`) VALUES('114138'); +INSERT INTO `transmog_items` (`entry`) VALUES('114139'); +INSERT INTO `transmog_items` (`entry`) VALUES('114140'); +INSERT INTO `transmog_items` (`entry`) VALUES('114141'); +INSERT INTO `transmog_items` (`entry`) VALUES('114142'); +INSERT INTO `transmog_items` (`entry`) VALUES('114143'); +INSERT INTO `transmog_items` (`entry`) VALUES('114144'); +INSERT INTO `transmog_items` (`entry`) VALUES('114146'); +INSERT INTO `transmog_items` (`entry`) VALUES('114147'); +INSERT INTO `transmog_items` (`entry`) VALUES('114148'); +INSERT INTO `transmog_items` (`entry`) VALUES('114149'); +INSERT INTO `transmog_items` (`entry`) VALUES('114150'); +INSERT INTO `transmog_items` (`entry`) VALUES('114151'); +INSERT INTO `transmog_items` (`entry`) VALUES('114152'); +INSERT INTO `transmog_items` (`entry`) VALUES('114153'); +INSERT INTO `transmog_items` (`entry`) VALUES('114154'); +INSERT INTO `transmog_items` (`entry`) VALUES('114157'); +INSERT INTO `transmog_items` (`entry`) VALUES('114158'); +INSERT INTO `transmog_items` (`entry`) VALUES('114159'); +INSERT INTO `transmog_items` (`entry`) VALUES('114160'); +INSERT INTO `transmog_items` (`entry`) VALUES('114161'); +INSERT INTO `transmog_items` (`entry`) VALUES('114162'); +INSERT INTO `transmog_items` (`entry`) VALUES('114163'); +INSERT INTO `transmog_items` (`entry`) VALUES('114164'); +INSERT INTO `transmog_items` (`entry`) VALUES('114165'); +INSERT INTO `transmog_items` (`entry`) VALUES('114166'); +INSERT INTO `transmog_items` (`entry`) VALUES('114167'); +INSERT INTO `transmog_items` (`entry`) VALUES('114168'); +INSERT INTO `transmog_items` (`entry`) VALUES('114169'); +INSERT INTO `transmog_items` (`entry`) VALUES('114170'); +INSERT INTO `transmog_items` (`entry`) VALUES('114171'); +INSERT INTO `transmog_items` (`entry`) VALUES('114172'); +INSERT INTO `transmog_items` (`entry`) VALUES('114173'); +INSERT INTO `transmog_items` (`entry`) VALUES('114174'); +INSERT INTO `transmog_items` (`entry`) VALUES('114175'); +INSERT INTO `transmog_items` (`entry`) VALUES('114176'); +INSERT INTO `transmog_items` (`entry`) VALUES('114177'); +INSERT INTO `transmog_items` (`entry`) VALUES('114178'); +INSERT INTO `transmog_items` (`entry`) VALUES('114179'); +INSERT INTO `transmog_items` (`entry`) VALUES('114180'); +INSERT INTO `transmog_items` (`entry`) VALUES('114181'); +INSERT INTO `transmog_items` (`entry`) VALUES('114182'); +INSERT INTO `transmog_items` (`entry`) VALUES('114183'); +INSERT INTO `transmog_items` (`entry`) VALUES('114184'); +INSERT INTO `transmog_items` (`entry`) VALUES('114185'); +INSERT INTO `transmog_items` (`entry`) VALUES('114186'); +INSERT INTO `transmog_items` (`entry`) VALUES('114187'); +INSERT INTO `transmog_items` (`entry`) VALUES('114188'); +INSERT INTO `transmog_items` (`entry`) VALUES('114189'); +INSERT INTO `transmog_items` (`entry`) VALUES('114190'); +INSERT INTO `transmog_items` (`entry`) VALUES('114191'); +INSERT INTO `transmog_items` (`entry`) VALUES('114192'); +INSERT INTO `transmog_items` (`entry`) VALUES('114193'); +INSERT INTO `transmog_items` (`entry`) VALUES('114194'); +INSERT INTO `transmog_items` (`entry`) VALUES('114195'); +INSERT INTO `transmog_items` (`entry`) VALUES('114196'); +INSERT INTO `transmog_items` (`entry`) VALUES('114197'); +INSERT INTO `transmog_items` (`entry`) VALUES('114198'); +INSERT INTO `transmog_items` (`entry`) VALUES('114199'); +INSERT INTO `transmog_items` (`entry`) VALUES('114200'); +INSERT INTO `transmog_items` (`entry`) VALUES('114201'); +INSERT INTO `transmog_items` (`entry`) VALUES('114202'); +INSERT INTO `transmog_items` (`entry`) VALUES('114203'); +INSERT INTO `transmog_items` (`entry`) VALUES('114204'); +INSERT INTO `transmog_items` (`entry`) VALUES('114205'); +INSERT INTO `transmog_items` (`entry`) VALUES('114206'); +INSERT INTO `transmog_items` (`entry`) VALUES('114207'); +INSERT INTO `transmog_items` (`entry`) VALUES('114208'); +INSERT INTO `transmog_items` (`entry`) VALUES('114209'); +INSERT INTO `transmog_items` (`entry`) VALUES('114210'); +INSERT INTO `transmog_items` (`entry`) VALUES('114211'); +INSERT INTO `transmog_items` (`entry`) VALUES('114212'); +INSERT INTO `transmog_items` (`entry`) VALUES('114213'); +INSERT INTO `transmog_items` (`entry`) VALUES('114214'); +INSERT INTO `transmog_items` (`entry`) VALUES('114215'); +INSERT INTO `transmog_items` (`entry`) VALUES('114216'); +INSERT INTO `transmog_items` (`entry`) VALUES('114217'); +INSERT INTO `transmog_items` (`entry`) VALUES('114218'); +INSERT INTO `transmog_items` (`entry`) VALUES('114219'); +INSERT INTO `transmog_items` (`entry`) VALUES('114220'); +INSERT INTO `transmog_items` (`entry`) VALUES('114221'); +INSERT INTO `transmog_items` (`entry`) VALUES('114222'); +INSERT INTO `transmog_items` (`entry`) VALUES('114223'); +INSERT INTO `transmog_items` (`entry`) VALUES('114224'); +INSERT INTO `transmog_items` (`entry`) VALUES('114225'); +INSERT INTO `transmog_items` (`entry`) VALUES('114226'); +INSERT INTO `transmog_items` (`entry`) VALUES('114228'); +INSERT INTO `transmog_items` (`entry`) VALUES('114229'); +INSERT INTO `transmog_items` (`entry`) VALUES('114230'); +INSERT INTO `transmog_items` (`entry`) VALUES('114231'); +INSERT INTO `transmog_items` (`entry`) VALUES('114232'); +INSERT INTO `transmog_items` (`entry`) VALUES('114233'); +INSERT INTO `transmog_items` (`entry`) VALUES('114234'); +INSERT INTO `transmog_items` (`entry`) VALUES('114235'); +INSERT INTO `transmog_items` (`entry`) VALUES('114236'); +INSERT INTO `transmog_items` (`entry`) VALUES('114237'); +INSERT INTO `transmog_items` (`entry`) VALUES('114238'); +INSERT INTO `transmog_items` (`entry`) VALUES('114239'); +INSERT INTO `transmog_items` (`entry`) VALUES('114240'); +INSERT INTO `transmog_items` (`entry`) VALUES('114241'); +INSERT INTO `transmog_items` (`entry`) VALUES('114242'); +INSERT INTO `transmog_items` (`entry`) VALUES('114243'); +INSERT INTO `transmog_items` (`entry`) VALUES('114244'); +INSERT INTO `transmog_items` (`entry`) VALUES('114245'); +INSERT INTO `transmog_items` (`entry`) VALUES('114246'); +INSERT INTO `transmog_items` (`entry`) VALUES('114247'); +INSERT INTO `transmog_items` (`entry`) VALUES('114248'); +INSERT INTO `transmog_items` (`entry`) VALUES('114249'); +INSERT INTO `transmog_items` (`entry`) VALUES('114250'); +INSERT INTO `transmog_items` (`entry`) VALUES('114251'); +INSERT INTO `transmog_items` (`entry`) VALUES('114252'); +INSERT INTO `transmog_items` (`entry`) VALUES('114253'); +INSERT INTO `transmog_items` (`entry`) VALUES('114254'); +INSERT INTO `transmog_items` (`entry`) VALUES('114255'); +INSERT INTO `transmog_items` (`entry`) VALUES('114257'); +INSERT INTO `transmog_items` (`entry`) VALUES('114258'); +INSERT INTO `transmog_items` (`entry`) VALUES('114259'); +INSERT INTO `transmog_items` (`entry`) VALUES('114260'); +INSERT INTO `transmog_items` (`entry`) VALUES('114261'); +INSERT INTO `transmog_items` (`entry`) VALUES('114262'); +INSERT INTO `transmog_items` (`entry`) VALUES('114263'); +INSERT INTO `transmog_items` (`entry`) VALUES('114264'); +INSERT INTO `transmog_items` (`entry`) VALUES('114265'); +INSERT INTO `transmog_items` (`entry`) VALUES('114266'); +INSERT INTO `transmog_items` (`entry`) VALUES('114267'); +INSERT INTO `transmog_items` (`entry`) VALUES('114268'); +INSERT INTO `transmog_items` (`entry`) VALUES('114269'); +INSERT INTO `transmog_items` (`entry`) VALUES('114270'); +INSERT INTO `transmog_items` (`entry`) VALUES('114271'); +INSERT INTO `transmog_items` (`entry`) VALUES('114272'); +INSERT INTO `transmog_items` (`entry`) VALUES('114273'); +INSERT INTO `transmog_items` (`entry`) VALUES('114274'); +INSERT INTO `transmog_items` (`entry`) VALUES('114275'); +INSERT INTO `transmog_items` (`entry`) VALUES('114276'); +INSERT INTO `transmog_items` (`entry`) VALUES('114277'); +INSERT INTO `transmog_items` (`entry`) VALUES('114278'); +INSERT INTO `transmog_items` (`entry`) VALUES('114279'); +INSERT INTO `transmog_items` (`entry`) VALUES('114280'); +INSERT INTO `transmog_items` (`entry`) VALUES('114281'); +INSERT INTO `transmog_items` (`entry`) VALUES('114282'); +INSERT INTO `transmog_items` (`entry`) VALUES('114283'); +INSERT INTO `transmog_items` (`entry`) VALUES('114284'); +INSERT INTO `transmog_items` (`entry`) VALUES('114285'); +INSERT INTO `transmog_items` (`entry`) VALUES('114286'); +INSERT INTO `transmog_items` (`entry`) VALUES('114287'); +INSERT INTO `transmog_items` (`entry`) VALUES('114288'); +INSERT INTO `transmog_items` (`entry`) VALUES('114289'); +INSERT INTO `transmog_items` (`entry`) VALUES('114290'); +INSERT INTO `transmog_items` (`entry`) VALUES('114291'); +INSERT INTO `transmog_items` (`entry`) VALUES('114292'); +INSERT INTO `transmog_items` (`entry`) VALUES('114293'); +INSERT INTO `transmog_items` (`entry`) VALUES('114294'); +INSERT INTO `transmog_items` (`entry`) VALUES('114295'); +INSERT INTO `transmog_items` (`entry`) VALUES('114296'); +INSERT INTO `transmog_items` (`entry`) VALUES('114297'); +INSERT INTO `transmog_items` (`entry`) VALUES('114298'); +INSERT INTO `transmog_items` (`entry`) VALUES('114299'); +INSERT INTO `transmog_items` (`entry`) VALUES('114300'); +INSERT INTO `transmog_items` (`entry`) VALUES('114301'); +INSERT INTO `transmog_items` (`entry`) VALUES('114302'); +INSERT INTO `transmog_items` (`entry`) VALUES('114303'); +INSERT INTO `transmog_items` (`entry`) VALUES('114304'); +INSERT INTO `transmog_items` (`entry`) VALUES('114305'); +INSERT INTO `transmog_items` (`entry`) VALUES('114306'); +INSERT INTO `transmog_items` (`entry`) VALUES('114307'); +INSERT INTO `transmog_items` (`entry`) VALUES('114308'); +INSERT INTO `transmog_items` (`entry`) VALUES('114309'); +INSERT INTO `transmog_items` (`entry`) VALUES('114310'); +INSERT INTO `transmog_items` (`entry`) VALUES('114311'); +INSERT INTO `transmog_items` (`entry`) VALUES('114312'); +INSERT INTO `transmog_items` (`entry`) VALUES('114313'); +INSERT INTO `transmog_items` (`entry`) VALUES('114314'); +INSERT INTO `transmog_items` (`entry`) VALUES('114315'); +INSERT INTO `transmog_items` (`entry`) VALUES('114316'); +INSERT INTO `transmog_items` (`entry`) VALUES('114317'); +INSERT INTO `transmog_items` (`entry`) VALUES('114318'); +INSERT INTO `transmog_items` (`entry`) VALUES('114319'); +INSERT INTO `transmog_items` (`entry`) VALUES('114320'); +INSERT INTO `transmog_items` (`entry`) VALUES('114321'); +INSERT INTO `transmog_items` (`entry`) VALUES('114322'); +INSERT INTO `transmog_items` (`entry`) VALUES('114323'); +INSERT INTO `transmog_items` (`entry`) VALUES('114324'); +INSERT INTO `transmog_items` (`entry`) VALUES('114325'); +INSERT INTO `transmog_items` (`entry`) VALUES('114326'); +INSERT INTO `transmog_items` (`entry`) VALUES('114327'); +INSERT INTO `transmog_items` (`entry`) VALUES('114328'); +INSERT INTO `transmog_items` (`entry`) VALUES('114329'); +INSERT INTO `transmog_items` (`entry`) VALUES('114330'); +INSERT INTO `transmog_items` (`entry`) VALUES('114331'); +INSERT INTO `transmog_items` (`entry`) VALUES('114332'); +INSERT INTO `transmog_items` (`entry`) VALUES('114333'); +INSERT INTO `transmog_items` (`entry`) VALUES('114334'); +INSERT INTO `transmog_items` (`entry`) VALUES('114335'); +INSERT INTO `transmog_items` (`entry`) VALUES('114336'); +INSERT INTO `transmog_items` (`entry`) VALUES('114337'); +INSERT INTO `transmog_items` (`entry`) VALUES('114340'); +INSERT INTO `transmog_items` (`entry`) VALUES('114364'); +INSERT INTO `transmog_items` (`entry`) VALUES('114365'); +INSERT INTO `transmog_items` (`entry`) VALUES('114366'); +INSERT INTO `transmog_items` (`entry`) VALUES('114367'); +INSERT INTO `transmog_items` (`entry`) VALUES('114368'); +INSERT INTO `transmog_items` (`entry`) VALUES('114369'); +INSERT INTO `transmog_items` (`entry`) VALUES('114370'); +INSERT INTO `transmog_items` (`entry`) VALUES('114371'); +INSERT INTO `transmog_items` (`entry`) VALUES('114372'); +INSERT INTO `transmog_items` (`entry`) VALUES('114373'); +INSERT INTO `transmog_items` (`entry`) VALUES('114374'); +INSERT INTO `transmog_items` (`entry`) VALUES('114375'); +INSERT INTO `transmog_items` (`entry`) VALUES('114376'); +INSERT INTO `transmog_items` (`entry`) VALUES('114377'); +INSERT INTO `transmog_items` (`entry`) VALUES('114378'); +INSERT INTO `transmog_items` (`entry`) VALUES('114379'); +INSERT INTO `transmog_items` (`entry`) VALUES('114380'); +INSERT INTO `transmog_items` (`entry`) VALUES('114390'); +INSERT INTO `transmog_items` (`entry`) VALUES('114397'); +INSERT INTO `transmog_items` (`entry`) VALUES('114398'); +INSERT INTO `transmog_items` (`entry`) VALUES('114399'); +INSERT INTO `transmog_items` (`entry`) VALUES('114400'); +INSERT INTO `transmog_items` (`entry`) VALUES('114401'); +INSERT INTO `transmog_items` (`entry`) VALUES('114402'); +INSERT INTO `transmog_items` (`entry`) VALUES('114403'); +INSERT INTO `transmog_items` (`entry`) VALUES('114404'); +INSERT INTO `transmog_items` (`entry`) VALUES('114405'); +INSERT INTO `transmog_items` (`entry`) VALUES('114406'); +INSERT INTO `transmog_items` (`entry`) VALUES('114407'); +INSERT INTO `transmog_items` (`entry`) VALUES('114408'); +INSERT INTO `transmog_items` (`entry`) VALUES('114409'); +INSERT INTO `transmog_items` (`entry`) VALUES('114410'); +INSERT INTO `transmog_items` (`entry`) VALUES('114411'); +INSERT INTO `transmog_items` (`entry`) VALUES('114412'); +INSERT INTO `transmog_items` (`entry`) VALUES('114413'); +INSERT INTO `transmog_items` (`entry`) VALUES('114414'); +INSERT INTO `transmog_items` (`entry`) VALUES('114415'); +INSERT INTO `transmog_items` (`entry`) VALUES('114416'); +INSERT INTO `transmog_items` (`entry`) VALUES('114417'); +INSERT INTO `transmog_items` (`entry`) VALUES('114418'); +INSERT INTO `transmog_items` (`entry`) VALUES('114419'); +INSERT INTO `transmog_items` (`entry`) VALUES('114420'); +INSERT INTO `transmog_items` (`entry`) VALUES('114421'); +INSERT INTO `transmog_items` (`entry`) VALUES('114422'); +INSERT INTO `transmog_items` (`entry`) VALUES('114423'); +INSERT INTO `transmog_items` (`entry`) VALUES('114424'); +INSERT INTO `transmog_items` (`entry`) VALUES('114425'); +INSERT INTO `transmog_items` (`entry`) VALUES('114426'); +INSERT INTO `transmog_items` (`entry`) VALUES('114427'); +INSERT INTO `transmog_items` (`entry`) VALUES('114428'); +INSERT INTO `transmog_items` (`entry`) VALUES('114429'); +INSERT INTO `transmog_items` (`entry`) VALUES('114430'); +INSERT INTO `transmog_items` (`entry`) VALUES('114431'); +INSERT INTO `transmog_items` (`entry`) VALUES('114432'); +INSERT INTO `transmog_items` (`entry`) VALUES('114433'); +INSERT INTO `transmog_items` (`entry`) VALUES('114434'); +INSERT INTO `transmog_items` (`entry`) VALUES('114435'); +INSERT INTO `transmog_items` (`entry`) VALUES('114436'); +INSERT INTO `transmog_items` (`entry`) VALUES('114437'); +INSERT INTO `transmog_items` (`entry`) VALUES('114438'); +INSERT INTO `transmog_items` (`entry`) VALUES('114439'); +INSERT INTO `transmog_items` (`entry`) VALUES('114440'); +INSERT INTO `transmog_items` (`entry`) VALUES('114441'); +INSERT INTO `transmog_items` (`entry`) VALUES('114442'); +INSERT INTO `transmog_items` (`entry`) VALUES('114443'); +INSERT INTO `transmog_items` (`entry`) VALUES('114444'); +INSERT INTO `transmog_items` (`entry`) VALUES('114445'); +INSERT INTO `transmog_items` (`entry`) VALUES('114446'); +INSERT INTO `transmog_items` (`entry`) VALUES('114447'); +INSERT INTO `transmog_items` (`entry`) VALUES('114448'); +INSERT INTO `transmog_items` (`entry`) VALUES('114449'); +INSERT INTO `transmog_items` (`entry`) VALUES('114450'); +INSERT INTO `transmog_items` (`entry`) VALUES('114451'); +INSERT INTO `transmog_items` (`entry`) VALUES('114452'); +INSERT INTO `transmog_items` (`entry`) VALUES('114453'); +INSERT INTO `transmog_items` (`entry`) VALUES('114454'); +INSERT INTO `transmog_items` (`entry`) VALUES('114455'); +INSERT INTO `transmog_items` (`entry`) VALUES('114456'); +INSERT INTO `transmog_items` (`entry`) VALUES('114457'); +INSERT INTO `transmog_items` (`entry`) VALUES('114458'); +INSERT INTO `transmog_items` (`entry`) VALUES('114459'); +INSERT INTO `transmog_items` (`entry`) VALUES('114460'); +INSERT INTO `transmog_items` (`entry`) VALUES('114461'); +INSERT INTO `transmog_items` (`entry`) VALUES('114462'); +INSERT INTO `transmog_items` (`entry`) VALUES('114463'); +INSERT INTO `transmog_items` (`entry`) VALUES('114464'); +INSERT INTO `transmog_items` (`entry`) VALUES('114465'); +INSERT INTO `transmog_items` (`entry`) VALUES('114487'); +INSERT INTO `transmog_items` (`entry`) VALUES('114502'); +INSERT INTO `transmog_items` (`entry`) VALUES('114503'); +INSERT INTO `transmog_items` (`entry`) VALUES('114522'); +INSERT INTO `transmog_items` (`entry`) VALUES('114525'); +INSERT INTO `transmog_items` (`entry`) VALUES('114528'); +INSERT INTO `transmog_items` (`entry`) VALUES('114536'); +INSERT INTO `transmog_items` (`entry`) VALUES('114537'); +INSERT INTO `transmog_items` (`entry`) VALUES('114538'); +INSERT INTO `transmog_items` (`entry`) VALUES('114539'); +INSERT INTO `transmog_items` (`entry`) VALUES('114543'); +INSERT INTO `transmog_items` (`entry`) VALUES('114545'); +INSERT INTO `transmog_items` (`entry`) VALUES('114548'); +INSERT INTO `transmog_items` (`entry`) VALUES('114549'); +INSERT INTO `transmog_items` (`entry`) VALUES('114550'); +INSERT INTO `transmog_items` (`entry`) VALUES('114551'); +INSERT INTO `transmog_items` (`entry`) VALUES('114552'); +INSERT INTO `transmog_items` (`entry`) VALUES('114553'); +INSERT INTO `transmog_items` (`entry`) VALUES('114554'); +INSERT INTO `transmog_items` (`entry`) VALUES('114555'); +INSERT INTO `transmog_items` (`entry`) VALUES('114559'); +INSERT INTO `transmog_items` (`entry`) VALUES('114560'); +INSERT INTO `transmog_items` (`entry`) VALUES('114561'); +INSERT INTO `transmog_items` (`entry`) VALUES('114562'); +INSERT INTO `transmog_items` (`entry`) VALUES('114563'); +INSERT INTO `transmog_items` (`entry`) VALUES('114564'); +INSERT INTO `transmog_items` (`entry`) VALUES('114565'); +INSERT INTO `transmog_items` (`entry`) VALUES('114566'); +INSERT INTO `transmog_items` (`entry`) VALUES('114567'); +INSERT INTO `transmog_items` (`entry`) VALUES('114568'); +INSERT INTO `transmog_items` (`entry`) VALUES('114569'); +INSERT INTO `transmog_items` (`entry`) VALUES('114570'); +INSERT INTO `transmog_items` (`entry`) VALUES('114571'); +INSERT INTO `transmog_items` (`entry`) VALUES('114572'); +INSERT INTO `transmog_items` (`entry`) VALUES('114573'); +INSERT INTO `transmog_items` (`entry`) VALUES('114574'); +INSERT INTO `transmog_items` (`entry`) VALUES('114577'); +INSERT INTO `transmog_items` (`entry`) VALUES('114578'); +INSERT INTO `transmog_items` (`entry`) VALUES('114579'); +INSERT INTO `transmog_items` (`entry`) VALUES('114580'); +INSERT INTO `transmog_items` (`entry`) VALUES('114581'); +INSERT INTO `transmog_items` (`entry`) VALUES('114582'); +INSERT INTO `transmog_items` (`entry`) VALUES('114583'); +INSERT INTO `transmog_items` (`entry`) VALUES('114584'); +INSERT INTO `transmog_items` (`entry`) VALUES('114585'); +INSERT INTO `transmog_items` (`entry`) VALUES('114587'); +INSERT INTO `transmog_items` (`entry`) VALUES('114588'); +INSERT INTO `transmog_items` (`entry`) VALUES('114589'); +INSERT INTO `transmog_items` (`entry`) VALUES('114590'); +INSERT INTO `transmog_items` (`entry`) VALUES('114591'); +INSERT INTO `transmog_items` (`entry`) VALUES('114592'); +INSERT INTO `transmog_items` (`entry`) VALUES('114593'); +INSERT INTO `transmog_items` (`entry`) VALUES('114594'); +INSERT INTO `transmog_items` (`entry`) VALUES('114595'); +INSERT INTO `transmog_items` (`entry`) VALUES('114596'); +INSERT INTO `transmog_items` (`entry`) VALUES('114598'); +INSERT INTO `transmog_items` (`entry`) VALUES('114599'); +INSERT INTO `transmog_items` (`entry`) VALUES('114600'); +INSERT INTO `transmog_items` (`entry`) VALUES('114601'); +INSERT INTO `transmog_items` (`entry`) VALUES('114602'); +INSERT INTO `transmog_items` (`entry`) VALUES('114603'); +INSERT INTO `transmog_items` (`entry`) VALUES('114604'); +INSERT INTO `transmog_items` (`entry`) VALUES('114605'); +INSERT INTO `transmog_items` (`entry`) VALUES('114606'); +INSERT INTO `transmog_items` (`entry`) VALUES('114607'); +INSERT INTO `transmog_items` (`entry`) VALUES('114608'); +INSERT INTO `transmog_items` (`entry`) VALUES('114611'); +INSERT INTO `transmog_items` (`entry`) VALUES('114612'); +INSERT INTO `transmog_items` (`entry`) VALUES('114614'); +INSERT INTO `transmog_items` (`entry`) VALUES('114615'); +INSERT INTO `transmog_items` (`entry`) VALUES('114616'); +INSERT INTO `transmog_items` (`entry`) VALUES('114620'); +INSERT INTO `transmog_items` (`entry`) VALUES('114621'); +INSERT INTO `transmog_items` (`entry`) VALUES('114622'); +INSERT INTO `transmog_items` (`entry`) VALUES('114623'); +INSERT INTO `transmog_items` (`entry`) VALUES('114624'); +INSERT INTO `transmog_items` (`entry`) VALUES('114626'); +INSERT INTO `transmog_items` (`entry`) VALUES('114629'); +INSERT INTO `transmog_items` (`entry`) VALUES('114631'); +INSERT INTO `transmog_items` (`entry`) VALUES('114632'); +INSERT INTO `transmog_items` (`entry`) VALUES('114633'); +INSERT INTO `transmog_items` (`entry`) VALUES('114636'); +INSERT INTO `transmog_items` (`entry`) VALUES('114637'); +INSERT INTO `transmog_items` (`entry`) VALUES('114638'); +INSERT INTO `transmog_items` (`entry`) VALUES('114640'); +INSERT INTO `transmog_items` (`entry`) VALUES('114641'); +INSERT INTO `transmog_items` (`entry`) VALUES('114652'); +INSERT INTO `transmog_items` (`entry`) VALUES('114653'); +INSERT INTO `transmog_items` (`entry`) VALUES('114654'); +INSERT INTO `transmog_items` (`entry`) VALUES('114655'); +INSERT INTO `transmog_items` (`entry`) VALUES('114656'); +INSERT INTO `transmog_items` (`entry`) VALUES('114657'); +INSERT INTO `transmog_items` (`entry`) VALUES('114658'); +INSERT INTO `transmog_items` (`entry`) VALUES('114659'); +INSERT INTO `transmog_items` (`entry`) VALUES('114660'); +INSERT INTO `transmog_items` (`entry`) VALUES('114661'); +INSERT INTO `transmog_items` (`entry`) VALUES('114662'); +INSERT INTO `transmog_items` (`entry`) VALUES('114663'); +INSERT INTO `transmog_items` (`entry`) VALUES('114664'); +INSERT INTO `transmog_items` (`entry`) VALUES('114665'); +INSERT INTO `transmog_items` (`entry`) VALUES('114666'); +INSERT INTO `transmog_items` (`entry`) VALUES('114667'); +INSERT INTO `transmog_items` (`entry`) VALUES('114668'); +INSERT INTO `transmog_items` (`entry`) VALUES('114669'); +INSERT INTO `transmog_items` (`entry`) VALUES('114670'); +INSERT INTO `transmog_items` (`entry`) VALUES('114671'); +INSERT INTO `transmog_items` (`entry`) VALUES('114672'); +INSERT INTO `transmog_items` (`entry`) VALUES('114673'); +INSERT INTO `transmog_items` (`entry`) VALUES('114674'); +INSERT INTO `transmog_items` (`entry`) VALUES('114675'); +INSERT INTO `transmog_items` (`entry`) VALUES('114676'); +INSERT INTO `transmog_items` (`entry`) VALUES('114677'); +INSERT INTO `transmog_items` (`entry`) VALUES('114678'); +INSERT INTO `transmog_items` (`entry`) VALUES('114680'); +INSERT INTO `transmog_items` (`entry`) VALUES('114681'); +INSERT INTO `transmog_items` (`entry`) VALUES('114682'); +INSERT INTO `transmog_items` (`entry`) VALUES('114683'); +INSERT INTO `transmog_items` (`entry`) VALUES('114684'); +INSERT INTO `transmog_items` (`entry`) VALUES('114685'); +INSERT INTO `transmog_items` (`entry`) VALUES('114686'); +INSERT INTO `transmog_items` (`entry`) VALUES('114687'); +INSERT INTO `transmog_items` (`entry`) VALUES('114688'); +INSERT INTO `transmog_items` (`entry`) VALUES('114722'); +INSERT INTO `transmog_items` (`entry`) VALUES('114723'); +INSERT INTO `transmog_items` (`entry`) VALUES('114724'); +INSERT INTO `transmog_items` (`entry`) VALUES('114725'); +INSERT INTO `transmog_items` (`entry`) VALUES('114726'); +INSERT INTO `transmog_items` (`entry`) VALUES('114727'); +INSERT INTO `transmog_items` (`entry`) VALUES('114728'); +INSERT INTO `transmog_items` (`entry`) VALUES('114729'); +INSERT INTO `transmog_items` (`entry`) VALUES('114730'); +INSERT INTO `transmog_items` (`entry`) VALUES('114742'); +INSERT INTO `transmog_items` (`entry`) VALUES('114743'); +INSERT INTO `transmog_items` (`entry`) VALUES('114744'); +INSERT INTO `transmog_items` (`entry`) VALUES('114745'); +INSERT INTO `transmog_items` (`entry`) VALUES('114746'); +INSERT INTO `transmog_items` (`entry`) VALUES('114747'); +INSERT INTO `transmog_items` (`entry`) VALUES('114748'); +INSERT INTO `transmog_items` (`entry`) VALUES('114749'); +INSERT INTO `transmog_items` (`entry`) VALUES('114750'); +INSERT INTO `transmog_items` (`entry`) VALUES('114751'); +INSERT INTO `transmog_items` (`entry`) VALUES('114752'); +INSERT INTO `transmog_items` (`entry`) VALUES('114753'); +INSERT INTO `transmog_items` (`entry`) VALUES('114754'); +INSERT INTO `transmog_items` (`entry`) VALUES('114755'); +INSERT INTO `transmog_items` (`entry`) VALUES('114756'); +INSERT INTO `transmog_items` (`entry`) VALUES('114757'); +INSERT INTO `transmog_items` (`entry`) VALUES('114758'); +INSERT INTO `transmog_items` (`entry`) VALUES('114759'); +INSERT INTO `transmog_items` (`entry`) VALUES('114760'); +INSERT INTO `transmog_items` (`entry`) VALUES('114761'); +INSERT INTO `transmog_items` (`entry`) VALUES('114762'); +INSERT INTO `transmog_items` (`entry`) VALUES('114763'); +INSERT INTO `transmog_items` (`entry`) VALUES('114764'); +INSERT INTO `transmog_items` (`entry`) VALUES('114765'); +INSERT INTO `transmog_items` (`entry`) VALUES('114766'); +INSERT INTO `transmog_items` (`entry`) VALUES('114767'); +INSERT INTO `transmog_items` (`entry`) VALUES('114768'); +INSERT INTO `transmog_items` (`entry`) VALUES('114769'); +INSERT INTO `transmog_items` (`entry`) VALUES('114770'); +INSERT INTO `transmog_items` (`entry`) VALUES('114771'); +INSERT INTO `transmog_items` (`entry`) VALUES('114772'); +INSERT INTO `transmog_items` (`entry`) VALUES('114773'); +INSERT INTO `transmog_items` (`entry`) VALUES('114774'); +INSERT INTO `transmog_items` (`entry`) VALUES('114775'); +INSERT INTO `transmog_items` (`entry`) VALUES('114776'); +INSERT INTO `transmog_items` (`entry`) VALUES('114777'); +INSERT INTO `transmog_items` (`entry`) VALUES('114778'); +INSERT INTO `transmog_items` (`entry`) VALUES('114779'); +INSERT INTO `transmog_items` (`entry`) VALUES('114780'); +INSERT INTO `transmog_items` (`entry`) VALUES('114781'); +INSERT INTO `transmog_items` (`entry`) VALUES('114782'); +INSERT INTO `transmog_items` (`entry`) VALUES('114783'); +INSERT INTO `transmog_items` (`entry`) VALUES('114784'); +INSERT INTO `transmog_items` (`entry`) VALUES('114785'); +INSERT INTO `transmog_items` (`entry`) VALUES('114786'); +INSERT INTO `transmog_items` (`entry`) VALUES('114787'); +INSERT INTO `transmog_items` (`entry`) VALUES('114788'); +INSERT INTO `transmog_items` (`entry`) VALUES('114789'); +INSERT INTO `transmog_items` (`entry`) VALUES('114790'); +INSERT INTO `transmog_items` (`entry`) VALUES('114791'); +INSERT INTO `transmog_items` (`entry`) VALUES('114792'); +INSERT INTO `transmog_items` (`entry`) VALUES('114793'); +INSERT INTO `transmog_items` (`entry`) VALUES('114794'); +INSERT INTO `transmog_items` (`entry`) VALUES('114795'); +INSERT INTO `transmog_items` (`entry`) VALUES('114796'); +INSERT INTO `transmog_items` (`entry`) VALUES('114797'); +INSERT INTO `transmog_items` (`entry`) VALUES('114798'); +INSERT INTO `transmog_items` (`entry`) VALUES('114799'); +INSERT INTO `transmog_items` (`entry`) VALUES('114800'); +INSERT INTO `transmog_items` (`entry`) VALUES('114801'); +INSERT INTO `transmog_items` (`entry`) VALUES('114802'); +INSERT INTO `transmog_items` (`entry`) VALUES('114803'); +INSERT INTO `transmog_items` (`entry`) VALUES('114804'); +INSERT INTO `transmog_items` (`entry`) VALUES('114805'); +INSERT INTO `transmog_items` (`entry`) VALUES('114806'); +INSERT INTO `transmog_items` (`entry`) VALUES('114807'); +INSERT INTO `transmog_items` (`entry`) VALUES('114808'); +INSERT INTO `transmog_items` (`entry`) VALUES('114809'); +INSERT INTO `transmog_items` (`entry`) VALUES('114810'); +INSERT INTO `transmog_items` (`entry`) VALUES('114811'); +INSERT INTO `transmog_items` (`entry`) VALUES('114812'); +INSERT INTO `transmog_items` (`entry`) VALUES('114813'); +INSERT INTO `transmog_items` (`entry`) VALUES('114814'); +INSERT INTO `transmog_items` (`entry`) VALUES('114815'); +INSERT INTO `transmog_items` (`entry`) VALUES('114816'); +INSERT INTO `transmog_items` (`entry`) VALUES('114817'); +INSERT INTO `transmog_items` (`entry`) VALUES('114821'); +INSERT INTO `transmog_items` (`entry`) VALUES('114825'); +INSERT INTO `transmog_items` (`entry`) VALUES('114826'); +INSERT INTO `transmog_items` (`entry`) VALUES('114827'); +INSERT INTO `transmog_items` (`entry`) VALUES('114828'); +INSERT INTO `transmog_items` (`entry`) VALUES('114829'); +INSERT INTO `transmog_items` (`entry`) VALUES('114830'); +INSERT INTO `transmog_items` (`entry`) VALUES('114831'); +INSERT INTO `transmog_items` (`entry`) VALUES('114832'); +INSERT INTO `transmog_items` (`entry`) VALUES('114833'); +INSERT INTO `transmog_items` (`entry`) VALUES('114834'); +INSERT INTO `transmog_items` (`entry`) VALUES('114835'); +INSERT INTO `transmog_items` (`entry`) VALUES('114838'); +INSERT INTO `transmog_items` (`entry`) VALUES('114839'); +INSERT INTO `transmog_items` (`entry`) VALUES('114840'); +INSERT INTO `transmog_items` (`entry`) VALUES('114841'); +INSERT INTO `transmog_items` (`entry`) VALUES('114842'); +INSERT INTO `transmog_items` (`entry`) VALUES('114843'); +INSERT INTO `transmog_items` (`entry`) VALUES('114844'); +INSERT INTO `transmog_items` (`entry`) VALUES('114846'); +INSERT INTO `transmog_items` (`entry`) VALUES('114847'); +INSERT INTO `transmog_items` (`entry`) VALUES('114848'); +INSERT INTO `transmog_items` (`entry`) VALUES('114849'); +INSERT INTO `transmog_items` (`entry`) VALUES('114850'); +INSERT INTO `transmog_items` (`entry`) VALUES('114851'); +INSERT INTO `transmog_items` (`entry`) VALUES('114852'); +INSERT INTO `transmog_items` (`entry`) VALUES('114853'); +INSERT INTO `transmog_items` (`entry`) VALUES('114854'); +INSERT INTO `transmog_items` (`entry`) VALUES('114855'); +INSERT INTO `transmog_items` (`entry`) VALUES('114856'); +INSERT INTO `transmog_items` (`entry`) VALUES('114857'); +INSERT INTO `transmog_items` (`entry`) VALUES('114858'); +INSERT INTO `transmog_items` (`entry`) VALUES('114859'); +INSERT INTO `transmog_items` (`entry`) VALUES('114860'); +INSERT INTO `transmog_items` (`entry`) VALUES('114861'); +INSERT INTO `transmog_items` (`entry`) VALUES('114862'); +INSERT INTO `transmog_items` (`entry`) VALUES('114863'); +INSERT INTO `transmog_items` (`entry`) VALUES('114864'); +INSERT INTO `transmog_items` (`entry`) VALUES('114865'); +INSERT INTO `transmog_items` (`entry`) VALUES('114866'); +INSERT INTO `transmog_items` (`entry`) VALUES('114867'); +INSERT INTO `transmog_items` (`entry`) VALUES('114868'); +INSERT INTO `transmog_items` (`entry`) VALUES('114869'); +INSERT INTO `transmog_items` (`entry`) VALUES('114895'); +INSERT INTO `transmog_items` (`entry`) VALUES('114896'); +INSERT INTO `transmog_items` (`entry`) VALUES('114897'); +INSERT INTO `transmog_items` (`entry`) VALUES('114898'); +INSERT INTO `transmog_items` (`entry`) VALUES('114899'); +INSERT INTO `transmog_items` (`entry`) VALUES('114900'); +INSERT INTO `transmog_items` (`entry`) VALUES('114901'); +INSERT INTO `transmog_items` (`entry`) VALUES('114902'); +INSERT INTO `transmog_items` (`entry`) VALUES('114903'); +INSERT INTO `transmog_items` (`entry`) VALUES('114904'); +INSERT INTO `transmog_items` (`entry`) VALUES('114905'); +INSERT INTO `transmog_items` (`entry`) VALUES('114906'); +INSERT INTO `transmog_items` (`entry`) VALUES('114907'); +INSERT INTO `transmog_items` (`entry`) VALUES('114908'); +INSERT INTO `transmog_items` (`entry`) VALUES('114909'); +INSERT INTO `transmog_items` (`entry`) VALUES('114910'); +INSERT INTO `transmog_items` (`entry`) VALUES('114911'); +INSERT INTO `transmog_items` (`entry`) VALUES('114912'); +INSERT INTO `transmog_items` (`entry`) VALUES('114913'); +INSERT INTO `transmog_items` (`entry`) VALUES('114914'); +INSERT INTO `transmog_items` (`entry`) VALUES('114915'); +INSERT INTO `transmog_items` (`entry`) VALUES('114916'); +INSERT INTO `transmog_items` (`entry`) VALUES('114917'); +INSERT INTO `transmog_items` (`entry`) VALUES('114918'); +INSERT INTO `transmog_items` (`entry`) VALUES('114919'); +INSERT INTO `transmog_items` (`entry`) VALUES('114920'); +INSERT INTO `transmog_items` (`entry`) VALUES('114921'); +INSERT INTO `transmog_items` (`entry`) VALUES('114922'); +INSERT INTO `transmog_items` (`entry`) VALUES('114923'); +INSERT INTO `transmog_items` (`entry`) VALUES('114924'); +INSERT INTO `transmog_items` (`entry`) VALUES('114925'); +INSERT INTO `transmog_items` (`entry`) VALUES('114926'); +INSERT INTO `transmog_items` (`entry`) VALUES('114927'); +INSERT INTO `transmog_items` (`entry`) VALUES('114928'); +INSERT INTO `transmog_items` (`entry`) VALUES('114929'); +INSERT INTO `transmog_items` (`entry`) VALUES('114930'); +INSERT INTO `transmog_items` (`entry`) VALUES('114931'); +INSERT INTO `transmog_items` (`entry`) VALUES('114932'); +INSERT INTO `transmog_items` (`entry`) VALUES('114933'); +INSERT INTO `transmog_items` (`entry`) VALUES('114934'); +INSERT INTO `transmog_items` (`entry`) VALUES('114935'); +INSERT INTO `transmog_items` (`entry`) VALUES('114936'); +INSERT INTO `transmog_items` (`entry`) VALUES('114937'); +INSERT INTO `transmog_items` (`entry`) VALUES('114938'); +INSERT INTO `transmog_items` (`entry`) VALUES('114939'); +INSERT INTO `transmog_items` (`entry`) VALUES('114940'); +INSERT INTO `transmog_items` (`entry`) VALUES('114941'); +INSERT INTO `transmog_items` (`entry`) VALUES('114942'); +INSERT INTO `transmog_items` (`entry`) VALUES('114943'); +INSERT INTO `transmog_items` (`entry`) VALUES('114944'); +INSERT INTO `transmog_items` (`entry`) VALUES('114945'); +INSERT INTO `transmog_items` (`entry`) VALUES('114946'); +INSERT INTO `transmog_items` (`entry`) VALUES('114947'); +INSERT INTO `transmog_items` (`entry`) VALUES('114948'); +INSERT INTO `transmog_items` (`entry`) VALUES('114949'); +INSERT INTO `transmog_items` (`entry`) VALUES('114950'); +INSERT INTO `transmog_items` (`entry`) VALUES('114951'); +INSERT INTO `transmog_items` (`entry`) VALUES('114952'); +INSERT INTO `transmog_items` (`entry`) VALUES('114953'); +INSERT INTO `transmog_items` (`entry`) VALUES('114954'); +INSERT INTO `transmog_items` (`entry`) VALUES('114955'); +INSERT INTO `transmog_items` (`entry`) VALUES('114956'); +INSERT INTO `transmog_items` (`entry`) VALUES('114957'); +INSERT INTO `transmog_items` (`entry`) VALUES('114958'); +INSERT INTO `transmog_items` (`entry`) VALUES('114959'); +INSERT INTO `transmog_items` (`entry`) VALUES('114960'); +INSERT INTO `transmog_items` (`entry`) VALUES('114961'); +INSERT INTO `transmog_items` (`entry`) VALUES('114962'); +INSERT INTO `transmog_items` (`entry`) VALUES('114963'); +INSERT INTO `transmog_items` (`entry`) VALUES('114964'); +INSERT INTO `transmog_items` (`entry`) VALUES('114965'); +INSERT INTO `transmog_items` (`entry`) VALUES('114966'); +INSERT INTO `transmog_items` (`entry`) VALUES('114967'); +INSERT INTO `transmog_items` (`entry`) VALUES('114968'); +INSERT INTO `transmog_items` (`entry`) VALUES('114969'); +INSERT INTO `transmog_items` (`entry`) VALUES('114970'); +INSERT INTO `transmog_items` (`entry`) VALUES('114971'); +INSERT INTO `transmog_items` (`entry`) VALUES('114972'); +INSERT INTO `transmog_items` (`entry`) VALUES('114973'); +INSERT INTO `transmog_items` (`entry`) VALUES('114974'); +INSERT INTO `transmog_items` (`entry`) VALUES('114975'); +INSERT INTO `transmog_items` (`entry`) VALUES('114976'); +INSERT INTO `transmog_items` (`entry`) VALUES('114977'); +INSERT INTO `transmog_items` (`entry`) VALUES('114978'); +INSERT INTO `transmog_items` (`entry`) VALUES('114979'); +INSERT INTO `transmog_items` (`entry`) VALUES('114980'); +INSERT INTO `transmog_items` (`entry`) VALUES('114981'); +INSERT INTO `transmog_items` (`entry`) VALUES('114982'); +INSERT INTO `transmog_items` (`entry`) VALUES('114983'); +INSERT INTO `transmog_items` (`entry`) VALUES('115003'); +INSERT INTO `transmog_items` (`entry`) VALUES('115004'); +INSERT INTO `transmog_items` (`entry`) VALUES('115005'); +INSERT INTO `transmog_items` (`entry`) VALUES('115006'); +INSERT INTO `transmog_items` (`entry`) VALUES('115007'); +INSERT INTO `transmog_items` (`entry`) VALUES('115008'); +INSERT INTO `transmog_items` (`entry`) VALUES('115009'); +INSERT INTO `transmog_items` (`entry`) VALUES('115010'); +INSERT INTO `transmog_items` (`entry`) VALUES('115011'); +INSERT INTO `transmog_items` (`entry`) VALUES('115012'); +INSERT INTO `transmog_items` (`entry`) VALUES('115013'); +INSERT INTO `transmog_items` (`entry`) VALUES('115014'); +INSERT INTO `transmog_items` (`entry`) VALUES('115015'); +INSERT INTO `transmog_items` (`entry`) VALUES('115016'); +INSERT INTO `transmog_items` (`entry`) VALUES('115017'); +INSERT INTO `transmog_items` (`entry`) VALUES('115018'); +INSERT INTO `transmog_items` (`entry`) VALUES('115019'); +INSERT INTO `transmog_items` (`entry`) VALUES('115045'); +INSERT INTO `transmog_items` (`entry`) VALUES('115046'); +INSERT INTO `transmog_items` (`entry`) VALUES('115047'); +INSERT INTO `transmog_items` (`entry`) VALUES('115048'); +INSERT INTO `transmog_items` (`entry`) VALUES('115049'); +INSERT INTO `transmog_items` (`entry`) VALUES('115050'); +INSERT INTO `transmog_items` (`entry`) VALUES('115051'); +INSERT INTO `transmog_items` (`entry`) VALUES('115052'); +INSERT INTO `transmog_items` (`entry`) VALUES('115053'); +INSERT INTO `transmog_items` (`entry`) VALUES('115054'); +INSERT INTO `transmog_items` (`entry`) VALUES('115055'); +INSERT INTO `transmog_items` (`entry`) VALUES('115056'); +INSERT INTO `transmog_items` (`entry`) VALUES('115057'); +INSERT INTO `transmog_items` (`entry`) VALUES('115058'); +INSERT INTO `transmog_items` (`entry`) VALUES('115059'); +INSERT INTO `transmog_items` (`entry`) VALUES('115060'); +INSERT INTO `transmog_items` (`entry`) VALUES('115061'); +INSERT INTO `transmog_items` (`entry`) VALUES('115062'); +INSERT INTO `transmog_items` (`entry`) VALUES('115063'); +INSERT INTO `transmog_items` (`entry`) VALUES('115064'); +INSERT INTO `transmog_items` (`entry`) VALUES('115065'); +INSERT INTO `transmog_items` (`entry`) VALUES('115066'); +INSERT INTO `transmog_items` (`entry`) VALUES('115067'); +INSERT INTO `transmog_items` (`entry`) VALUES('115068'); +INSERT INTO `transmog_items` (`entry`) VALUES('115069'); +INSERT INTO `transmog_items` (`entry`) VALUES('115070'); +INSERT INTO `transmog_items` (`entry`) VALUES('115071'); +INSERT INTO `transmog_items` (`entry`) VALUES('115072'); +INSERT INTO `transmog_items` (`entry`) VALUES('115073'); +INSERT INTO `transmog_items` (`entry`) VALUES('115074'); +INSERT INTO `transmog_items` (`entry`) VALUES('115075'); +INSERT INTO `transmog_items` (`entry`) VALUES('115076'); +INSERT INTO `transmog_items` (`entry`) VALUES('115077'); +INSERT INTO `transmog_items` (`entry`) VALUES('115078'); +INSERT INTO `transmog_items` (`entry`) VALUES('115079'); +INSERT INTO `transmog_items` (`entry`) VALUES('115080'); +INSERT INTO `transmog_items` (`entry`) VALUES('115081'); +INSERT INTO `transmog_items` (`entry`) VALUES('115082'); +INSERT INTO `transmog_items` (`entry`) VALUES('115083'); +INSERT INTO `transmog_items` (`entry`) VALUES('115084'); +INSERT INTO `transmog_items` (`entry`) VALUES('115085'); +INSERT INTO `transmog_items` (`entry`) VALUES('115086'); +INSERT INTO `transmog_items` (`entry`) VALUES('115087'); +INSERT INTO `transmog_items` (`entry`) VALUES('115088'); +INSERT INTO `transmog_items` (`entry`) VALUES('115090'); +INSERT INTO `transmog_items` (`entry`) VALUES('115091'); +INSERT INTO `transmog_items` (`entry`) VALUES('115092'); +INSERT INTO `transmog_items` (`entry`) VALUES('115093'); +INSERT INTO `transmog_items` (`entry`) VALUES('115094'); +INSERT INTO `transmog_items` (`entry`) VALUES('115095'); +INSERT INTO `transmog_items` (`entry`) VALUES('115096'); +INSERT INTO `transmog_items` (`entry`) VALUES('115104'); +INSERT INTO `transmog_items` (`entry`) VALUES('115110'); +INSERT INTO `transmog_items` (`entry`) VALUES('115111'); +INSERT INTO `transmog_items` (`entry`) VALUES('115112'); +INSERT INTO `transmog_items` (`entry`) VALUES('115113'); +INSERT INTO `transmog_items` (`entry`) VALUES('115114'); +INSERT INTO `transmog_items` (`entry`) VALUES('115115'); +INSERT INTO `transmog_items` (`entry`) VALUES('115116'); +INSERT INTO `transmog_items` (`entry`) VALUES('115117'); +INSERT INTO `transmog_items` (`entry`) VALUES('115118'); +INSERT INTO `transmog_items` (`entry`) VALUES('115119'); +INSERT INTO `transmog_items` (`entry`) VALUES('115120'); +INSERT INTO `transmog_items` (`entry`) VALUES('115121'); +INSERT INTO `transmog_items` (`entry`) VALUES('115122'); +INSERT INTO `transmog_items` (`entry`) VALUES('115123'); +INSERT INTO `transmog_items` (`entry`) VALUES('115124'); +INSERT INTO `transmog_items` (`entry`) VALUES('115125'); +INSERT INTO `transmog_items` (`entry`) VALUES('115126'); +INSERT INTO `transmog_items` (`entry`) VALUES('115127'); +INSERT INTO `transmog_items` (`entry`) VALUES('115128'); +INSERT INTO `transmog_items` (`entry`) VALUES('115129'); +INSERT INTO `transmog_items` (`entry`) VALUES('115130'); +INSERT INTO `transmog_items` (`entry`) VALUES('115131'); +INSERT INTO `transmog_items` (`entry`) VALUES('115132'); +INSERT INTO `transmog_items` (`entry`) VALUES('115133'); +INSERT INTO `transmog_items` (`entry`) VALUES('115134'); +INSERT INTO `transmog_items` (`entry`) VALUES('115135'); +INSERT INTO `transmog_items` (`entry`) VALUES('115136'); +INSERT INTO `transmog_items` (`entry`) VALUES('115137'); +INSERT INTO `transmog_items` (`entry`) VALUES('115138'); +INSERT INTO `transmog_items` (`entry`) VALUES('115139'); +INSERT INTO `transmog_items` (`entry`) VALUES('115140'); +INSERT INTO `transmog_items` (`entry`) VALUES('115141'); +INSERT INTO `transmog_items` (`entry`) VALUES('115142'); +INSERT INTO `transmog_items` (`entry`) VALUES('115143'); +INSERT INTO `transmog_items` (`entry`) VALUES('115144'); +INSERT INTO `transmog_items` (`entry`) VALUES('115145'); +INSERT INTO `transmog_items` (`entry`) VALUES('115146'); +INSERT INTO `transmog_items` (`entry`) VALUES('115147'); +INSERT INTO `transmog_items` (`entry`) VALUES('115148'); +INSERT INTO `transmog_items` (`entry`) VALUES('115149'); +INSERT INTO `transmog_items` (`entry`) VALUES('115150'); +INSERT INTO `transmog_items` (`entry`) VALUES('115151'); +INSERT INTO `transmog_items` (`entry`) VALUES('115152'); +INSERT INTO `transmog_items` (`entry`) VALUES('115153'); +INSERT INTO `transmog_items` (`entry`) VALUES('115154'); +INSERT INTO `transmog_items` (`entry`) VALUES('115155'); +INSERT INTO `transmog_items` (`entry`) VALUES('115156'); +INSERT INTO `transmog_items` (`entry`) VALUES('115157'); +INSERT INTO `transmog_items` (`entry`) VALUES('115158'); +INSERT INTO `transmog_items` (`entry`) VALUES('115159'); +INSERT INTO `transmog_items` (`entry`) VALUES('115160'); +INSERT INTO `transmog_items` (`entry`) VALUES('115161'); +INSERT INTO `transmog_items` (`entry`) VALUES('115162'); +INSERT INTO `transmog_items` (`entry`) VALUES('115163'); +INSERT INTO `transmog_items` (`entry`) VALUES('115164'); +INSERT INTO `transmog_items` (`entry`) VALUES('115165'); +INSERT INTO `transmog_items` (`entry`) VALUES('115166'); +INSERT INTO `transmog_items` (`entry`) VALUES('115167'); +INSERT INTO `transmog_items` (`entry`) VALUES('115168'); +INSERT INTO `transmog_items` (`entry`) VALUES('115169'); +INSERT INTO `transmog_items` (`entry`) VALUES('115170'); +INSERT INTO `transmog_items` (`entry`) VALUES('115171'); +INSERT INTO `transmog_items` (`entry`) VALUES('115172'); +INSERT INTO `transmog_items` (`entry`) VALUES('115173'); +INSERT INTO `transmog_items` (`entry`) VALUES('115174'); +INSERT INTO `transmog_items` (`entry`) VALUES('115175'); +INSERT INTO `transmog_items` (`entry`) VALUES('115176'); +INSERT INTO `transmog_items` (`entry`) VALUES('115177'); +INSERT INTO `transmog_items` (`entry`) VALUES('115178'); +INSERT INTO `transmog_items` (`entry`) VALUES('115179'); +INSERT INTO `transmog_items` (`entry`) VALUES('115180'); +INSERT INTO `transmog_items` (`entry`) VALUES('115181'); +INSERT INTO `transmog_items` (`entry`) VALUES('115182'); +INSERT INTO `transmog_items` (`entry`) VALUES('115183'); +INSERT INTO `transmog_items` (`entry`) VALUES('115184'); +INSERT INTO `transmog_items` (`entry`) VALUES('115185'); +INSERT INTO `transmog_items` (`entry`) VALUES('115186'); +INSERT INTO `transmog_items` (`entry`) VALUES('115187'); +INSERT INTO `transmog_items` (`entry`) VALUES('115188'); +INSERT INTO `transmog_items` (`entry`) VALUES('115189'); +INSERT INTO `transmog_items` (`entry`) VALUES('115190'); +INSERT INTO `transmog_items` (`entry`) VALUES('115191'); +INSERT INTO `transmog_items` (`entry`) VALUES('115192'); +INSERT INTO `transmog_items` (`entry`) VALUES('115193'); +INSERT INTO `transmog_items` (`entry`) VALUES('115194'); +INSERT INTO `transmog_items` (`entry`) VALUES('115195'); +INSERT INTO `transmog_items` (`entry`) VALUES('115202'); +INSERT INTO `transmog_items` (`entry`) VALUES('115203'); +INSERT INTO `transmog_items` (`entry`) VALUES('115204'); +INSERT INTO `transmog_items` (`entry`) VALUES('115205'); +INSERT INTO `transmog_items` (`entry`) VALUES('115207'); +INSERT INTO `transmog_items` (`entry`) VALUES('115222'); +INSERT INTO `transmog_items` (`entry`) VALUES('115223'); +INSERT INTO `transmog_items` (`entry`) VALUES('115224'); +INSERT INTO `transmog_items` (`entry`) VALUES('115225'); +INSERT INTO `transmog_items` (`entry`) VALUES('115226'); +INSERT INTO `transmog_items` (`entry`) VALUES('115227'); +INSERT INTO `transmog_items` (`entry`) VALUES('115228'); +INSERT INTO `transmog_items` (`entry`) VALUES('115229'); +INSERT INTO `transmog_items` (`entry`) VALUES('115241'); +INSERT INTO `transmog_items` (`entry`) VALUES('115242'); +INSERT INTO `transmog_items` (`entry`) VALUES('115243'); +INSERT INTO `transmog_items` (`entry`) VALUES('115244'); +INSERT INTO `transmog_items` (`entry`) VALUES('115245'); +INSERT INTO `transmog_items` (`entry`) VALUES('115246'); +INSERT INTO `transmog_items` (`entry`) VALUES('115247'); +INSERT INTO `transmog_items` (`entry`) VALUES('115268'); +INSERT INTO `transmog_items` (`entry`) VALUES('115269'); +INSERT INTO `transmog_items` (`entry`) VALUES('115270'); +INSERT INTO `transmog_items` (`entry`) VALUES('115271'); +INSERT INTO `transmog_items` (`entry`) VALUES('115272'); +INSERT INTO `transmog_items` (`entry`) VALUES('115273'); +INSERT INTO `transmog_items` (`entry`) VALUES('115279'); +INSERT INTO `transmog_items` (`entry`) VALUES('115280'); +INSERT INTO `transmog_items` (`entry`) VALUES('115281'); +INSERT INTO `transmog_items` (`entry`) VALUES('115282'); +INSERT INTO `transmog_items` (`entry`) VALUES('115283'); +INSERT INTO `transmog_items` (`entry`) VALUES('115284'); +INSERT INTO `transmog_items` (`entry`) VALUES('115285'); +INSERT INTO `transmog_items` (`entry`) VALUES('115286'); +INSERT INTO `transmog_items` (`entry`) VALUES('115287'); +INSERT INTO `transmog_items` (`entry`) VALUES('115288'); +INSERT INTO `transmog_items` (`entry`) VALUES('115289'); +INSERT INTO `transmog_items` (`entry`) VALUES('115291'); +INSERT INTO `transmog_items` (`entry`) VALUES('115294'); +INSERT INTO `transmog_items` (`entry`) VALUES('115295'); +INSERT INTO `transmog_items` (`entry`) VALUES('115296'); +INSERT INTO `transmog_items` (`entry`) VALUES('115297'); +INSERT INTO `transmog_items` (`entry`) VALUES('115298'); +INSERT INTO `transmog_items` (`entry`) VALUES('115299'); +INSERT INTO `transmog_items` (`entry`) VALUES('115300'); +INSERT INTO `transmog_items` (`entry`) VALUES('115301'); +INSERT INTO `transmog_items` (`entry`) VALUES('115302'); +INSERT INTO `transmog_items` (`entry`) VALUES('115303'); +INSERT INTO `transmog_items` (`entry`) VALUES('115304'); +INSERT INTO `transmog_items` (`entry`) VALUES('115305'); +INSERT INTO `transmog_items` (`entry`) VALUES('115306'); +INSERT INTO `transmog_items` (`entry`) VALUES('115307'); +INSERT INTO `transmog_items` (`entry`) VALUES('115308'); +INSERT INTO `transmog_items` (`entry`) VALUES('115309'); +INSERT INTO `transmog_items` (`entry`) VALUES('115310'); +INSERT INTO `transmog_items` (`entry`) VALUES('115311'); +INSERT INTO `transmog_items` (`entry`) VALUES('115312'); +INSERT INTO `transmog_items` (`entry`) VALUES('115313'); +INSERT INTO `transmog_items` (`entry`) VALUES('115322'); +INSERT INTO `transmog_items` (`entry`) VALUES('115323'); +INSERT INTO `transmog_items` (`entry`) VALUES('115324'); +INSERT INTO `transmog_items` (`entry`) VALUES('115325'); +INSERT INTO `transmog_items` (`entry`) VALUES('115329'); +INSERT INTO `transmog_items` (`entry`) VALUES('115330'); +INSERT INTO `transmog_items` (`entry`) VALUES('115331'); +INSERT INTO `transmog_items` (`entry`) VALUES('115332'); +INSERT INTO `transmog_items` (`entry`) VALUES('115333'); +INSERT INTO `transmog_items` (`entry`) VALUES('115334'); +INSERT INTO `transmog_items` (`entry`) VALUES('115336'); +INSERT INTO `transmog_items` (`entry`) VALUES('115337'); +INSERT INTO `transmog_items` (`entry`) VALUES('115338'); +INSERT INTO `transmog_items` (`entry`) VALUES('115339'); +INSERT INTO `transmog_items` (`entry`) VALUES('115340'); +INSERT INTO `transmog_items` (`entry`) VALUES('115341'); +INSERT INTO `transmog_items` (`entry`) VALUES('115342'); +INSERT INTO `transmog_items` (`entry`) VALUES('115343'); +INSERT INTO `transmog_items` (`entry`) VALUES('115344'); +INSERT INTO `transmog_items` (`entry`) VALUES('115345'); +INSERT INTO `transmog_items` (`entry`) VALUES('115346'); +INSERT INTO `transmog_items` (`entry`) VALUES('115347'); +INSERT INTO `transmog_items` (`entry`) VALUES('115348'); +INSERT INTO `transmog_items` (`entry`) VALUES('115349'); +INSERT INTO `transmog_items` (`entry`) VALUES('115350'); +INSERT INTO `transmog_items` (`entry`) VALUES('115351'); +INSERT INTO `transmog_items` (`entry`) VALUES('115352'); +INSERT INTO `transmog_items` (`entry`) VALUES('115353'); +INSERT INTO `transmog_items` (`entry`) VALUES('115354'); +INSERT INTO `transmog_items` (`entry`) VALUES('115355'); +INSERT INTO `transmog_items` (`entry`) VALUES('115356'); +INSERT INTO `transmog_items` (`entry`) VALUES('115357'); +INSERT INTO `transmog_items` (`entry`) VALUES('115358'); +INSERT INTO `transmog_items` (`entry`) VALUES('115359'); +INSERT INTO `transmog_items` (`entry`) VALUES('115360'); +INSERT INTO `transmog_items` (`entry`) VALUES('115361'); +INSERT INTO `transmog_items` (`entry`) VALUES('115362'); +INSERT INTO `transmog_items` (`entry`) VALUES('115363'); +INSERT INTO `transmog_items` (`entry`) VALUES('115364'); +INSERT INTO `transmog_items` (`entry`) VALUES('115365'); +INSERT INTO `transmog_items` (`entry`) VALUES('115366'); +INSERT INTO `transmog_items` (`entry`) VALUES('115367'); +INSERT INTO `transmog_items` (`entry`) VALUES('115368'); +INSERT INTO `transmog_items` (`entry`) VALUES('115369'); +INSERT INTO `transmog_items` (`entry`) VALUES('115370'); +INSERT INTO `transmog_items` (`entry`) VALUES('115371'); +INSERT INTO `transmog_items` (`entry`) VALUES('115372'); +INSERT INTO `transmog_items` (`entry`) VALUES('115373'); +INSERT INTO `transmog_items` (`entry`) VALUES('115374'); +INSERT INTO `transmog_items` (`entry`) VALUES('115375'); +INSERT INTO `transmog_items` (`entry`) VALUES('115376'); +INSERT INTO `transmog_items` (`entry`) VALUES('115377'); +INSERT INTO `transmog_items` (`entry`) VALUES('115378'); +INSERT INTO `transmog_items` (`entry`) VALUES('115379'); +INSERT INTO `transmog_items` (`entry`) VALUES('115380'); +INSERT INTO `transmog_items` (`entry`) VALUES('115381'); +INSERT INTO `transmog_items` (`entry`) VALUES('115382'); +INSERT INTO `transmog_items` (`entry`) VALUES('115383'); +INSERT INTO `transmog_items` (`entry`) VALUES('115384'); +INSERT INTO `transmog_items` (`entry`) VALUES('115385'); +INSERT INTO `transmog_items` (`entry`) VALUES('115386'); +INSERT INTO `transmog_items` (`entry`) VALUES('115387'); +INSERT INTO `transmog_items` (`entry`) VALUES('115388'); +INSERT INTO `transmog_items` (`entry`) VALUES('115389'); +INSERT INTO `transmog_items` (`entry`) VALUES('115390'); +INSERT INTO `transmog_items` (`entry`) VALUES('115391'); +INSERT INTO `transmog_items` (`entry`) VALUES('115392'); +INSERT INTO `transmog_items` (`entry`) VALUES('115393'); +INSERT INTO `transmog_items` (`entry`) VALUES('115394'); +INSERT INTO `transmog_items` (`entry`) VALUES('115395'); +INSERT INTO `transmog_items` (`entry`) VALUES('115396'); +INSERT INTO `transmog_items` (`entry`) VALUES('115398'); +INSERT INTO `transmog_items` (`entry`) VALUES('115399'); +INSERT INTO `transmog_items` (`entry`) VALUES('115400'); +INSERT INTO `transmog_items` (`entry`) VALUES('115401'); +INSERT INTO `transmog_items` (`entry`) VALUES('115402'); +INSERT INTO `transmog_items` (`entry`) VALUES('115403'); +INSERT INTO `transmog_items` (`entry`) VALUES('115404'); +INSERT INTO `transmog_items` (`entry`) VALUES('115405'); +INSERT INTO `transmog_items` (`entry`) VALUES('115406'); +INSERT INTO `transmog_items` (`entry`) VALUES('115413'); +INSERT INTO `transmog_items` (`entry`) VALUES('115421'); +INSERT INTO `transmog_items` (`entry`) VALUES('115424'); +INSERT INTO `transmog_items` (`entry`) VALUES('115425'); +INSERT INTO `transmog_items` (`entry`) VALUES('115426'); +INSERT INTO `transmog_items` (`entry`) VALUES('115427'); +INSERT INTO `transmog_items` (`entry`) VALUES('115428'); +INSERT INTO `transmog_items` (`entry`) VALUES('115429'); +INSERT INTO `transmog_items` (`entry`) VALUES('115430'); +INSERT INTO `transmog_items` (`entry`) VALUES('115431'); +INSERT INTO `transmog_items` (`entry`) VALUES('115432'); +INSERT INTO `transmog_items` (`entry`) VALUES('115433'); +INSERT INTO `transmog_items` (`entry`) VALUES('115434'); +INSERT INTO `transmog_items` (`entry`) VALUES('115435'); +INSERT INTO `transmog_items` (`entry`) VALUES('115436'); +INSERT INTO `transmog_items` (`entry`) VALUES('115437'); +INSERT INTO `transmog_items` (`entry`) VALUES('115438'); +INSERT INTO `transmog_items` (`entry`) VALUES('115439'); +INSERT INTO `transmog_items` (`entry`) VALUES('115440'); +INSERT INTO `transmog_items` (`entry`) VALUES('115441'); +INSERT INTO `transmog_items` (`entry`) VALUES('115442'); +INSERT INTO `transmog_items` (`entry`) VALUES('115443'); +INSERT INTO `transmog_items` (`entry`) VALUES('115445'); +INSERT INTO `transmog_items` (`entry`) VALUES('115449'); +INSERT INTO `transmog_items` (`entry`) VALUES('115450'); +INSERT INTO `transmog_items` (`entry`) VALUES('115451'); +INSERT INTO `transmog_items` (`entry`) VALUES('115452'); +INSERT INTO `transmog_items` (`entry`) VALUES('115453'); +INSERT INTO `transmog_items` (`entry`) VALUES('115455'); +INSERT INTO `transmog_items` (`entry`) VALUES('115456'); +INSERT INTO `transmog_items` (`entry`) VALUES('115457'); +INSERT INTO `transmog_items` (`entry`) VALUES('115458'); +INSERT INTO `transmog_items` (`entry`) VALUES('115459'); +INSERT INTO `transmog_items` (`entry`) VALUES('115461'); +INSERT INTO `transmog_items` (`entry`) VALUES('115462'); +INSERT INTO `transmog_items` (`entry`) VALUES('115463'); +INSERT INTO `transmog_items` (`entry`) VALUES('115465'); +INSERT INTO `transmog_items` (`entry`) VALUES('115466'); +INSERT INTO `transmog_items` (`entry`) VALUES('115468'); +INSERT INTO `transmog_items` (`entry`) VALUES('115469'); +INSERT INTO `transmog_items` (`entry`) VALUES('115470'); +INSERT INTO `transmog_items` (`entry`) VALUES('115471'); +INSERT INTO `transmog_items` (`entry`) VALUES('115472'); +INSERT INTO `transmog_items` (`entry`) VALUES('115473'); +INSERT INTO `transmog_items` (`entry`) VALUES('115474'); +INSERT INTO `transmog_items` (`entry`) VALUES('115475'); +INSERT INTO `transmog_items` (`entry`) VALUES('115476'); +INSERT INTO `transmog_items` (`entry`) VALUES('115477'); +INSERT INTO `transmog_items` (`entry`) VALUES('115478'); +INSERT INTO `transmog_items` (`entry`) VALUES('115479'); +INSERT INTO `transmog_items` (`entry`) VALUES('115480'); +INSERT INTO `transmog_items` (`entry`) VALUES('115481'); +INSERT INTO `transmog_items` (`entry`) VALUES('115482'); +INSERT INTO `transmog_items` (`entry`) VALUES('115483'); +INSERT INTO `transmog_items` (`entry`) VALUES('115484'); +INSERT INTO `transmog_items` (`entry`) VALUES('115485'); +INSERT INTO `transmog_items` (`entry`) VALUES('115486'); +INSERT INTO `transmog_items` (`entry`) VALUES('115487'); +INSERT INTO `transmog_items` (`entry`) VALUES('115488'); +INSERT INTO `transmog_items` (`entry`) VALUES('115489'); +INSERT INTO `transmog_items` (`entry`) VALUES('115490'); +INSERT INTO `transmog_items` (`entry`) VALUES('115491'); +INSERT INTO `transmog_items` (`entry`) VALUES('115492'); +INSERT INTO `transmog_items` (`entry`) VALUES('115493'); +INSERT INTO `transmog_items` (`entry`) VALUES('115494'); +INSERT INTO `transmog_items` (`entry`) VALUES('115495'); +INSERT INTO `transmog_items` (`entry`) VALUES('115496'); +INSERT INTO `transmog_items` (`entry`) VALUES('115497'); +INSERT INTO `transmog_items` (`entry`) VALUES('115498'); +INSERT INTO `transmog_items` (`entry`) VALUES('115499'); +INSERT INTO `transmog_items` (`entry`) VALUES('115500'); +INSERT INTO `transmog_items` (`entry`) VALUES('115501'); +INSERT INTO `transmog_items` (`entry`) VALUES('115502'); +INSERT INTO `transmog_items` (`entry`) VALUES('115503'); +INSERT INTO `transmog_items` (`entry`) VALUES('115504'); +INSERT INTO `transmog_items` (`entry`) VALUES('115505'); +INSERT INTO `transmog_items` (`entry`) VALUES('115506'); +INSERT INTO `transmog_items` (`entry`) VALUES('115507'); +INSERT INTO `transmog_items` (`entry`) VALUES('115508'); +INSERT INTO `transmog_items` (`entry`) VALUES('115509'); +INSERT INTO `transmog_items` (`entry`) VALUES('115510'); +INSERT INTO `transmog_items` (`entry`) VALUES('115511'); +INSERT INTO `transmog_items` (`entry`) VALUES('115512'); +INSERT INTO `transmog_items` (`entry`) VALUES('115513'); +INSERT INTO `transmog_items` (`entry`) VALUES('115514'); +INSERT INTO `transmog_items` (`entry`) VALUES('115515'); +INSERT INTO `transmog_items` (`entry`) VALUES('115516'); +INSERT INTO `transmog_items` (`entry`) VALUES('115517'); +INSERT INTO `transmog_items` (`entry`) VALUES('115518'); +INSERT INTO `transmog_items` (`entry`) VALUES('115519'); +INSERT INTO `transmog_items` (`entry`) VALUES('115520'); +INSERT INTO `transmog_items` (`entry`) VALUES('115521'); +INSERT INTO `transmog_items` (`entry`) VALUES('115522'); +INSERT INTO `transmog_items` (`entry`) VALUES('115523'); +INSERT INTO `transmog_items` (`entry`) VALUES('115524'); +INSERT INTO `transmog_items` (`entry`) VALUES('115525'); +INSERT INTO `transmog_items` (`entry`) VALUES('115526'); +INSERT INTO `transmog_items` (`entry`) VALUES('115527'); +INSERT INTO `transmog_items` (`entry`) VALUES('115528'); +INSERT INTO `transmog_items` (`entry`) VALUES('115529'); +INSERT INTO `transmog_items` (`entry`) VALUES('115530'); +INSERT INTO `transmog_items` (`entry`) VALUES('115531'); +INSERT INTO `transmog_items` (`entry`) VALUES('115532'); +INSERT INTO `transmog_items` (`entry`) VALUES('115533'); +INSERT INTO `transmog_items` (`entry`) VALUES('115534'); +INSERT INTO `transmog_items` (`entry`) VALUES('115535'); +INSERT INTO `transmog_items` (`entry`) VALUES('115536'); +INSERT INTO `transmog_items` (`entry`) VALUES('115537'); +INSERT INTO `transmog_items` (`entry`) VALUES('115538'); +INSERT INTO `transmog_items` (`entry`) VALUES('115539'); +INSERT INTO `transmog_items` (`entry`) VALUES('115540'); +INSERT INTO `transmog_items` (`entry`) VALUES('115541'); +INSERT INTO `transmog_items` (`entry`) VALUES('115542'); +INSERT INTO `transmog_items` (`entry`) VALUES('115543'); +INSERT INTO `transmog_items` (`entry`) VALUES('115544'); +INSERT INTO `transmog_items` (`entry`) VALUES('115545'); +INSERT INTO `transmog_items` (`entry`) VALUES('115546'); +INSERT INTO `transmog_items` (`entry`) VALUES('115547'); +INSERT INTO `transmog_items` (`entry`) VALUES('115548'); +INSERT INTO `transmog_items` (`entry`) VALUES('115549'); +INSERT INTO `transmog_items` (`entry`) VALUES('115550'); +INSERT INTO `transmog_items` (`entry`) VALUES('115551'); +INSERT INTO `transmog_items` (`entry`) VALUES('115552'); +INSERT INTO `transmog_items` (`entry`) VALUES('115553'); +INSERT INTO `transmog_items` (`entry`) VALUES('115554'); +INSERT INTO `transmog_items` (`entry`) VALUES('115555'); +INSERT INTO `transmog_items` (`entry`) VALUES('115556'); +INSERT INTO `transmog_items` (`entry`) VALUES('115557'); +INSERT INTO `transmog_items` (`entry`) VALUES('115558'); +INSERT INTO `transmog_items` (`entry`) VALUES('115559'); +INSERT INTO `transmog_items` (`entry`) VALUES('115560'); +INSERT INTO `transmog_items` (`entry`) VALUES('115561'); +INSERT INTO `transmog_items` (`entry`) VALUES('115562'); +INSERT INTO `transmog_items` (`entry`) VALUES('115563'); +INSERT INTO `transmog_items` (`entry`) VALUES('115565'); +INSERT INTO `transmog_items` (`entry`) VALUES('115566'); +INSERT INTO `transmog_items` (`entry`) VALUES('115567'); +INSERT INTO `transmog_items` (`entry`) VALUES('115568'); +INSERT INTO `transmog_items` (`entry`) VALUES('115569'); +INSERT INTO `transmog_items` (`entry`) VALUES('115570'); +INSERT INTO `transmog_items` (`entry`) VALUES('115571'); +INSERT INTO `transmog_items` (`entry`) VALUES('115572'); +INSERT INTO `transmog_items` (`entry`) VALUES('115573'); +INSERT INTO `transmog_items` (`entry`) VALUES('115574'); +INSERT INTO `transmog_items` (`entry`) VALUES('115575'); +INSERT INTO `transmog_items` (`entry`) VALUES('115576'); +INSERT INTO `transmog_items` (`entry`) VALUES('115577'); +INSERT INTO `transmog_items` (`entry`) VALUES('115578'); +INSERT INTO `transmog_items` (`entry`) VALUES('115579'); +INSERT INTO `transmog_items` (`entry`) VALUES('115580'); +INSERT INTO `transmog_items` (`entry`) VALUES('115581'); +INSERT INTO `transmog_items` (`entry`) VALUES('115582'); +INSERT INTO `transmog_items` (`entry`) VALUES('115583'); +INSERT INTO `transmog_items` (`entry`) VALUES('115584'); +INSERT INTO `transmog_items` (`entry`) VALUES('115585'); +INSERT INTO `transmog_items` (`entry`) VALUES('115587'); +INSERT INTO `transmog_items` (`entry`) VALUES('115588'); +INSERT INTO `transmog_items` (`entry`) VALUES('115589'); +INSERT INTO `transmog_items` (`entry`) VALUES('115590'); +INSERT INTO `transmog_items` (`entry`) VALUES('115591'); +INSERT INTO `transmog_items` (`entry`) VALUES('115592'); +INSERT INTO `transmog_items` (`entry`) VALUES('115593'); +INSERT INTO `transmog_items` (`entry`) VALUES('115594'); +INSERT INTO `transmog_items` (`entry`) VALUES('115595'); +INSERT INTO `transmog_items` (`entry`) VALUES('115596'); +INSERT INTO `transmog_items` (`entry`) VALUES('115597'); +INSERT INTO `transmog_items` (`entry`) VALUES('115598'); +INSERT INTO `transmog_items` (`entry`) VALUES('115599'); +INSERT INTO `transmog_items` (`entry`) VALUES('115600'); +INSERT INTO `transmog_items` (`entry`) VALUES('115601'); +INSERT INTO `transmog_items` (`entry`) VALUES('115602'); +INSERT INTO `transmog_items` (`entry`) VALUES('115603'); +INSERT INTO `transmog_items` (`entry`) VALUES('115604'); +INSERT INTO `transmog_items` (`entry`) VALUES('115605'); +INSERT INTO `transmog_items` (`entry`) VALUES('115606'); +INSERT INTO `transmog_items` (`entry`) VALUES('115607'); +INSERT INTO `transmog_items` (`entry`) VALUES('115608'); +INSERT INTO `transmog_items` (`entry`) VALUES('115609'); +INSERT INTO `transmog_items` (`entry`) VALUES('115610'); +INSERT INTO `transmog_items` (`entry`) VALUES('115611'); +INSERT INTO `transmog_items` (`entry`) VALUES('115612'); +INSERT INTO `transmog_items` (`entry`) VALUES('115613'); +INSERT INTO `transmog_items` (`entry`) VALUES('115614'); +INSERT INTO `transmog_items` (`entry`) VALUES('115615'); +INSERT INTO `transmog_items` (`entry`) VALUES('115616'); +INSERT INTO `transmog_items` (`entry`) VALUES('115617'); +INSERT INTO `transmog_items` (`entry`) VALUES('115618'); +INSERT INTO `transmog_items` (`entry`) VALUES('115619'); +INSERT INTO `transmog_items` (`entry`) VALUES('115620'); +INSERT INTO `transmog_items` (`entry`) VALUES('115621'); +INSERT INTO `transmog_items` (`entry`) VALUES('115622'); +INSERT INTO `transmog_items` (`entry`) VALUES('115623'); +INSERT INTO `transmog_items` (`entry`) VALUES('115624'); +INSERT INTO `transmog_items` (`entry`) VALUES('115625'); +INSERT INTO `transmog_items` (`entry`) VALUES('115626'); +INSERT INTO `transmog_items` (`entry`) VALUES('115627'); +INSERT INTO `transmog_items` (`entry`) VALUES('115628'); +INSERT INTO `transmog_items` (`entry`) VALUES('115629'); +INSERT INTO `transmog_items` (`entry`) VALUES('115630'); +INSERT INTO `transmog_items` (`entry`) VALUES('115631'); +INSERT INTO `transmog_items` (`entry`) VALUES('115632'); +INSERT INTO `transmog_items` (`entry`) VALUES('115633'); +INSERT INTO `transmog_items` (`entry`) VALUES('115634'); +INSERT INTO `transmog_items` (`entry`) VALUES('115635'); +INSERT INTO `transmog_items` (`entry`) VALUES('115636'); +INSERT INTO `transmog_items` (`entry`) VALUES('115637'); +INSERT INTO `transmog_items` (`entry`) VALUES('115638'); +INSERT INTO `transmog_items` (`entry`) VALUES('115639'); +INSERT INTO `transmog_items` (`entry`) VALUES('115640'); +INSERT INTO `transmog_items` (`entry`) VALUES('115641'); +INSERT INTO `transmog_items` (`entry`) VALUES('115642'); +INSERT INTO `transmog_items` (`entry`) VALUES('115643'); +INSERT INTO `transmog_items` (`entry`) VALUES('115644'); +INSERT INTO `transmog_items` (`entry`) VALUES('115645'); +INSERT INTO `transmog_items` (`entry`) VALUES('115646'); +INSERT INTO `transmog_items` (`entry`) VALUES('115647'); +INSERT INTO `transmog_items` (`entry`) VALUES('115648'); +INSERT INTO `transmog_items` (`entry`) VALUES('115649'); +INSERT INTO `transmog_items` (`entry`) VALUES('115650'); +INSERT INTO `transmog_items` (`entry`) VALUES('115651'); +INSERT INTO `transmog_items` (`entry`) VALUES('115652'); +INSERT INTO `transmog_items` (`entry`) VALUES('115653'); +INSERT INTO `transmog_items` (`entry`) VALUES('115654'); +INSERT INTO `transmog_items` (`entry`) VALUES('115655'); +INSERT INTO `transmog_items` (`entry`) VALUES('115656'); +INSERT INTO `transmog_items` (`entry`) VALUES('115657'); +INSERT INTO `transmog_items` (`entry`) VALUES('115658'); +INSERT INTO `transmog_items` (`entry`) VALUES('115659'); +INSERT INTO `transmog_items` (`entry`) VALUES('115660'); +INSERT INTO `transmog_items` (`entry`) VALUES('115661'); +INSERT INTO `transmog_items` (`entry`) VALUES('115662'); +INSERT INTO `transmog_items` (`entry`) VALUES('115663'); +INSERT INTO `transmog_items` (`entry`) VALUES('115664'); +INSERT INTO `transmog_items` (`entry`) VALUES('115665'); +INSERT INTO `transmog_items` (`entry`) VALUES('115666'); +INSERT INTO `transmog_items` (`entry`) VALUES('115667'); +INSERT INTO `transmog_items` (`entry`) VALUES('115668'); +INSERT INTO `transmog_items` (`entry`) VALUES('115669'); +INSERT INTO `transmog_items` (`entry`) VALUES('115670'); +INSERT INTO `transmog_items` (`entry`) VALUES('115671'); +INSERT INTO `transmog_items` (`entry`) VALUES('115672'); +INSERT INTO `transmog_items` (`entry`) VALUES('115673'); +INSERT INTO `transmog_items` (`entry`) VALUES('115674'); +INSERT INTO `transmog_items` (`entry`) VALUES('115675'); +INSERT INTO `transmog_items` (`entry`) VALUES('115676'); +INSERT INTO `transmog_items` (`entry`) VALUES('115677'); +INSERT INTO `transmog_items` (`entry`) VALUES('115678'); +INSERT INTO `transmog_items` (`entry`) VALUES('115679'); +INSERT INTO `transmog_items` (`entry`) VALUES('115680'); +INSERT INTO `transmog_items` (`entry`) VALUES('115681'); +INSERT INTO `transmog_items` (`entry`) VALUES('115682'); +INSERT INTO `transmog_items` (`entry`) VALUES('115683'); +INSERT INTO `transmog_items` (`entry`) VALUES('115684'); +INSERT INTO `transmog_items` (`entry`) VALUES('115685'); +INSERT INTO `transmog_items` (`entry`) VALUES('115686'); +INSERT INTO `transmog_items` (`entry`) VALUES('115687'); +INSERT INTO `transmog_items` (`entry`) VALUES('115691'); +INSERT INTO `transmog_items` (`entry`) VALUES('115692'); +INSERT INTO `transmog_items` (`entry`) VALUES('115693'); +INSERT INTO `transmog_items` (`entry`) VALUES('115694'); +INSERT INTO `transmog_items` (`entry`) VALUES('115695'); +INSERT INTO `transmog_items` (`entry`) VALUES('115697'); +INSERT INTO `transmog_items` (`entry`) VALUES('115698'); +INSERT INTO `transmog_items` (`entry`) VALUES('115703'); +INSERT INTO `transmog_items` (`entry`) VALUES('115706'); +INSERT INTO `transmog_items` (`entry`) VALUES('115707'); +INSERT INTO `transmog_items` (`entry`) VALUES('115708'); +INSERT INTO `transmog_items` (`entry`) VALUES('115709'); +INSERT INTO `transmog_items` (`entry`) VALUES('115783'); +INSERT INTO `transmog_items` (`entry`) VALUES('115784'); +INSERT INTO `transmog_items` (`entry`) VALUES('115786'); +INSERT INTO `transmog_items` (`entry`) VALUES('115787'); +INSERT INTO `transmog_items` (`entry`) VALUES('115789'); +INSERT INTO `transmog_items` (`entry`) VALUES('115791'); +INSERT INTO `transmog_items` (`entry`) VALUES('115792'); +INSERT INTO `transmog_items` (`entry`) VALUES('115794'); +INSERT INTO `transmog_items` (`entry`) VALUES('115795'); +INSERT INTO `transmog_items` (`entry`) VALUES('115796'); +INSERT INTO `transmog_items` (`entry`) VALUES('115797'); +INSERT INTO `transmog_items` (`entry`) VALUES('115802'); +INSERT INTO `transmog_items` (`entry`) VALUES('115804'); +INSERT INTO `transmog_items` (`entry`) VALUES('115807'); +INSERT INTO `transmog_items` (`entry`) VALUES('115808'); +INSERT INTO `transmog_items` (`entry`) VALUES('115809'); +INSERT INTO `transmog_items` (`entry`) VALUES('115810'); +INSERT INTO `transmog_items` (`entry`) VALUES('115811'); +INSERT INTO `transmog_items` (`entry`) VALUES('115812'); +INSERT INTO `transmog_items` (`entry`) VALUES('115813'); +INSERT INTO `transmog_items` (`entry`) VALUES('115815'); +INSERT INTO `transmog_items` (`entry`) VALUES('115822'); +INSERT INTO `transmog_items` (`entry`) VALUES('115823'); +INSERT INTO `transmog_items` (`entry`) VALUES('115824'); +INSERT INTO `transmog_items` (`entry`) VALUES('115825'); +INSERT INTO `transmog_items` (`entry`) VALUES('115827'); +INSERT INTO `transmog_items` (`entry`) VALUES('115858'); +INSERT INTO `transmog_items` (`entry`) VALUES('115859'); +INSERT INTO `transmog_items` (`entry`) VALUES('115860'); +INSERT INTO `transmog_items` (`entry`) VALUES('115861'); +INSERT INTO `transmog_items` (`entry`) VALUES('115863'); +INSERT INTO `transmog_items` (`entry`) VALUES('115864'); +INSERT INTO `transmog_items` (`entry`) VALUES('115865'); +INSERT INTO `transmog_items` (`entry`) VALUES('115887'); +INSERT INTO `transmog_items` (`entry`) VALUES('115890'); +INSERT INTO `transmog_items` (`entry`) VALUES('115891'); +INSERT INTO `transmog_items` (`entry`) VALUES('115892'); +INSERT INTO `transmog_items` (`entry`) VALUES('115893'); +INSERT INTO `transmog_items` (`entry`) VALUES('115894'); +INSERT INTO `transmog_items` (`entry`) VALUES('115895'); +INSERT INTO `transmog_items` (`entry`) VALUES('115903'); +INSERT INTO `transmog_items` (`entry`) VALUES('115904'); +INSERT INTO `transmog_items` (`entry`) VALUES('115905'); +INSERT INTO `transmog_items` (`entry`) VALUES('115906'); +INSERT INTO `transmog_items` (`entry`) VALUES('115907'); +INSERT INTO `transmog_items` (`entry`) VALUES('115909'); +INSERT INTO `transmog_items` (`entry`) VALUES('115943'); +INSERT INTO `transmog_items` (`entry`) VALUES('115990'); +INSERT INTO `transmog_items` (`entry`) VALUES('115991'); +INSERT INTO `transmog_items` (`entry`) VALUES('115995'); +INSERT INTO `transmog_items` (`entry`) VALUES('115999'); +INSERT INTO `transmog_items` (`entry`) VALUES('116004'); +INSERT INTO `transmog_items` (`entry`) VALUES('116007'); +INSERT INTO `transmog_items` (`entry`) VALUES('116008'); +INSERT INTO `transmog_items` (`entry`) VALUES('116315'); +INSERT INTO `transmog_items` (`entry`) VALUES('116336'); +INSERT INTO `transmog_items` (`entry`) VALUES('116337'); +INSERT INTO `transmog_items` (`entry`) VALUES('116340'); +INSERT INTO `transmog_items` (`entry`) VALUES('116341'); +INSERT INTO `transmog_items` (`entry`) VALUES('116342'); +INSERT INTO `transmog_items` (`entry`) VALUES('116369'); +INSERT INTO `transmog_items` (`entry`) VALUES('116391'); +INSERT INTO `transmog_items` (`entry`) VALUES('116392'); +INSERT INTO `transmog_items` (`entry`) VALUES('116393'); +INSERT INTO `transmog_items` (`entry`) VALUES('116396'); +INSERT INTO `transmog_items` (`entry`) VALUES('116397'); +INSERT INTO `transmog_items` (`entry`) VALUES('116401'); +INSERT INTO `transmog_items` (`entry`) VALUES('116403'); +INSERT INTO `transmog_items` (`entry`) VALUES('116405'); +INSERT INTO `transmog_items` (`entry`) VALUES('116406'); +INSERT INTO `transmog_items` (`entry`) VALUES('116409'); +INSERT INTO `transmog_items` (`entry`) VALUES('116410'); +INSERT INTO `transmog_items` (`entry`) VALUES('116413'); +INSERT INTO `transmog_items` (`entry`) VALUES('116414'); +INSERT INTO `transmog_items` (`entry`) VALUES('116415'); +INSERT INTO `transmog_items` (`entry`) VALUES('116416'); +INSERT INTO `transmog_items` (`entry`) VALUES('116417'); +INSERT INTO `transmog_items` (`entry`) VALUES('116418'); +INSERT INTO `transmog_items` (`entry`) VALUES('116419'); +INSERT INTO `transmog_items` (`entry`) VALUES('116420'); +INSERT INTO `transmog_items` (`entry`) VALUES('116421'); +INSERT INTO `transmog_items` (`entry`) VALUES('116422'); +INSERT INTO `transmog_items` (`entry`) VALUES('116423'); +INSERT INTO `transmog_items` (`entry`) VALUES('116424'); +INSERT INTO `transmog_items` (`entry`) VALUES('116425'); +INSERT INTO `transmog_items` (`entry`) VALUES('116426'); +INSERT INTO `transmog_items` (`entry`) VALUES('116427'); +INSERT INTO `transmog_items` (`entry`) VALUES('116428'); +INSERT INTO `transmog_items` (`entry`) VALUES('116429'); +INSERT INTO `transmog_items` (`entry`) VALUES('116430'); +INSERT INTO `transmog_items` (`entry`) VALUES('116431'); +INSERT INTO `transmog_items` (`entry`) VALUES('116432'); +INSERT INTO `transmog_items` (`entry`) VALUES('116433'); +INSERT INTO `transmog_items` (`entry`) VALUES('116434'); +INSERT INTO `transmog_items` (`entry`) VALUES('116435'); +INSERT INTO `transmog_items` (`entry`) VALUES('116436'); +INSERT INTO `transmog_items` (`entry`) VALUES('116437'); +INSERT INTO `transmog_items` (`entry`) VALUES('116440'); +INSERT INTO `transmog_items` (`entry`) VALUES('116441'); +INSERT INTO `transmog_items` (`entry`) VALUES('116442'); +INSERT INTO `transmog_items` (`entry`) VALUES('116443'); +INSERT INTO `transmog_items` (`entry`) VALUES('116444'); +INSERT INTO `transmog_items` (`entry`) VALUES('116446'); +INSERT INTO `transmog_items` (`entry`) VALUES('116448'); +INSERT INTO `transmog_items` (`entry`) VALUES('116449'); +INSERT INTO `transmog_items` (`entry`) VALUES('116450'); +INSERT INTO `transmog_items` (`entry`) VALUES('116451'); +INSERT INTO `transmog_items` (`entry`) VALUES('116452'); +INSERT INTO `transmog_items` (`entry`) VALUES('116453'); +INSERT INTO `transmog_items` (`entry`) VALUES('116454'); +INSERT INTO `transmog_items` (`entry`) VALUES('116455'); +INSERT INTO `transmog_items` (`entry`) VALUES('116456'); +INSERT INTO `transmog_items` (`entry`) VALUES('116457'); +INSERT INTO `transmog_items` (`entry`) VALUES('116459'); +INSERT INTO `transmog_items` (`entry`) VALUES('116462'); +INSERT INTO `transmog_items` (`entry`) VALUES('116463'); +INSERT INTO `transmog_items` (`entry`) VALUES('116465'); +INSERT INTO `transmog_items` (`entry`) VALUES('116466'); +INSERT INTO `transmog_items` (`entry`) VALUES('116467'); +INSERT INTO `transmog_items` (`entry`) VALUES('116468'); +INSERT INTO `transmog_items` (`entry`) VALUES('116471'); +INSERT INTO `transmog_items` (`entry`) VALUES('116472'); +INSERT INTO `transmog_items` (`entry`) VALUES('116473'); +INSERT INTO `transmog_items` (`entry`) VALUES('116474'); +INSERT INTO `transmog_items` (`entry`) VALUES('116475'); +INSERT INTO `transmog_items` (`entry`) VALUES('116476'); +INSERT INTO `transmog_items` (`entry`) VALUES('116477'); +INSERT INTO `transmog_items` (`entry`) VALUES('116478'); +INSERT INTO `transmog_items` (`entry`) VALUES('116479'); +INSERT INTO `transmog_items` (`entry`) VALUES('116480'); +INSERT INTO `transmog_items` (`entry`) VALUES('116483'); +INSERT INTO `transmog_items` (`entry`) VALUES('116484'); +INSERT INTO `transmog_items` (`entry`) VALUES('116485'); +INSERT INTO `transmog_items` (`entry`) VALUES('116486'); +INSERT INTO `transmog_items` (`entry`) VALUES('116487'); +INSERT INTO `transmog_items` (`entry`) VALUES('116489'); +INSERT INTO `transmog_items` (`entry`) VALUES('116490'); +INSERT INTO `transmog_items` (`entry`) VALUES('116491'); +INSERT INTO `transmog_items` (`entry`) VALUES('116492'); +INSERT INTO `transmog_items` (`entry`) VALUES('116494'); +INSERT INTO `transmog_items` (`entry`) VALUES('116496'); +INSERT INTO `transmog_items` (`entry`) VALUES('116497'); +INSERT INTO `transmog_items` (`entry`) VALUES('116498'); +INSERT INTO `transmog_items` (`entry`) VALUES('116499'); +INSERT INTO `transmog_items` (`entry`) VALUES('116501'); +INSERT INTO `transmog_items` (`entry`) VALUES('116502'); +INSERT INTO `transmog_items` (`entry`) VALUES('116503'); +INSERT INTO `transmog_items` (`entry`) VALUES('116504'); +INSERT INTO `transmog_items` (`entry`) VALUES('116505'); +INSERT INTO `transmog_items` (`entry`) VALUES('116506'); +INSERT INTO `transmog_items` (`entry`) VALUES('116507'); +INSERT INTO `transmog_items` (`entry`) VALUES('116508'); +INSERT INTO `transmog_items` (`entry`) VALUES('116509'); +INSERT INTO `transmog_items` (`entry`) VALUES('116510'); +INSERT INTO `transmog_items` (`entry`) VALUES('116513'); +INSERT INTO `transmog_items` (`entry`) VALUES('116514'); +INSERT INTO `transmog_items` (`entry`) VALUES('116515'); +INSERT INTO `transmog_items` (`entry`) VALUES('116516'); +INSERT INTO `transmog_items` (`entry`) VALUES('116518'); +INSERT INTO `transmog_items` (`entry`) VALUES('116519'); +INSERT INTO `transmog_items` (`entry`) VALUES('116521'); +INSERT INTO `transmog_items` (`entry`) VALUES('116522'); +INSERT INTO `transmog_items` (`entry`) VALUES('116523'); +INSERT INTO `transmog_items` (`entry`) VALUES('116524'); +INSERT INTO `transmog_items` (`entry`) VALUES('116525'); +INSERT INTO `transmog_items` (`entry`) VALUES('116526'); +INSERT INTO `transmog_items` (`entry`) VALUES('116527'); +INSERT INTO `transmog_items` (`entry`) VALUES('116528'); +INSERT INTO `transmog_items` (`entry`) VALUES('116530'); +INSERT INTO `transmog_items` (`entry`) VALUES('116531'); +INSERT INTO `transmog_items` (`entry`) VALUES('116532'); +INSERT INTO `transmog_items` (`entry`) VALUES('116533'); +INSERT INTO `transmog_items` (`entry`) VALUES('116534'); +INSERT INTO `transmog_items` (`entry`) VALUES('116535'); +INSERT INTO `transmog_items` (`entry`) VALUES('116536'); +INSERT INTO `transmog_items` (`entry`) VALUES('116539'); +INSERT INTO `transmog_items` (`entry`) VALUES('116540'); +INSERT INTO `transmog_items` (`entry`) VALUES('116541'); +INSERT INTO `transmog_items` (`entry`) VALUES('116542'); +INSERT INTO `transmog_items` (`entry`) VALUES('116543'); +INSERT INTO `transmog_items` (`entry`) VALUES('116544'); +INSERT INTO `transmog_items` (`entry`) VALUES('116545'); +INSERT INTO `transmog_items` (`entry`) VALUES('116548'); +INSERT INTO `transmog_items` (`entry`) VALUES('116549'); +INSERT INTO `transmog_items` (`entry`) VALUES('116550'); +INSERT INTO `transmog_items` (`entry`) VALUES('116551'); +INSERT INTO `transmog_items` (`entry`) VALUES('116552'); +INSERT INTO `transmog_items` (`entry`) VALUES('116554'); +INSERT INTO `transmog_items` (`entry`) VALUES('116555'); +INSERT INTO `transmog_items` (`entry`) VALUES('116558'); +INSERT INTO `transmog_items` (`entry`) VALUES('116560'); +INSERT INTO `transmog_items` (`entry`) VALUES('116561'); +INSERT INTO `transmog_items` (`entry`) VALUES('116562'); +INSERT INTO `transmog_items` (`entry`) VALUES('116563'); +INSERT INTO `transmog_items` (`entry`) VALUES('116564'); +INSERT INTO `transmog_items` (`entry`) VALUES('116565'); +INSERT INTO `transmog_items` (`entry`) VALUES('116566'); +INSERT INTO `transmog_items` (`entry`) VALUES('116567'); +INSERT INTO `transmog_items` (`entry`) VALUES('116568'); +INSERT INTO `transmog_items` (`entry`) VALUES('116569'); +INSERT INTO `transmog_items` (`entry`) VALUES('116571'); +INSERT INTO `transmog_items` (`entry`) VALUES('116573'); +INSERT INTO `transmog_items` (`entry`) VALUES('116574'); +INSERT INTO `transmog_items` (`entry`) VALUES('116577'); +INSERT INTO `transmog_items` (`entry`) VALUES('116578'); +INSERT INTO `transmog_items` (`entry`) VALUES('116579'); +INSERT INTO `transmog_items` (`entry`) VALUES('116580'); +INSERT INTO `transmog_items` (`entry`) VALUES('116604'); +INSERT INTO `transmog_items` (`entry`) VALUES('116605'); +INSERT INTO `transmog_items` (`entry`) VALUES('116606'); +INSERT INTO `transmog_items` (`entry`) VALUES('116607'); +INSERT INTO `transmog_items` (`entry`) VALUES('116608'); +INSERT INTO `transmog_items` (`entry`) VALUES('116622'); +INSERT INTO `transmog_items` (`entry`) VALUES('116658'); +INSERT INTO `transmog_items` (`entry`) VALUES('116659'); +INSERT INTO `transmog_items` (`entry`) VALUES('116660'); +INSERT INTO `transmog_items` (`entry`) VALUES('116661'); +INSERT INTO `transmog_items` (`entry`) VALUES('116664'); +INSERT INTO `transmog_items` (`entry`) VALUES('116666'); +INSERT INTO `transmog_items` (`entry`) VALUES('116667'); +INSERT INTO `transmog_items` (`entry`) VALUES('116668'); +INSERT INTO `transmog_items` (`entry`) VALUES('116669'); +INSERT INTO `transmog_items` (`entry`) VALUES('116670'); +INSERT INTO `transmog_items` (`entry`) VALUES('116671'); +INSERT INTO `transmog_items` (`entry`) VALUES('116672'); +INSERT INTO `transmog_items` (`entry`) VALUES('116673'); +INSERT INTO `transmog_items` (`entry`) VALUES('116674'); +INSERT INTO `transmog_items` (`entry`) VALUES('116675'); +INSERT INTO `transmog_items` (`entry`) VALUES('116676'); +INSERT INTO `transmog_items` (`entry`) VALUES('116677'); +INSERT INTO `transmog_items` (`entry`) VALUES('116678'); +INSERT INTO `transmog_items` (`entry`) VALUES('116679'); +INSERT INTO `transmog_items` (`entry`) VALUES('116680'); +INSERT INTO `transmog_items` (`entry`) VALUES('116681'); +INSERT INTO `transmog_items` (`entry`) VALUES('116682'); +INSERT INTO `transmog_items` (`entry`) VALUES('116683'); +INSERT INTO `transmog_items` (`entry`) VALUES('116684'); +INSERT INTO `transmog_items` (`entry`) VALUES('116685'); +INSERT INTO `transmog_items` (`entry`) VALUES('116686'); +INSERT INTO `transmog_items` (`entry`) VALUES('116687'); +INSERT INTO `transmog_items` (`entry`) VALUES('116688'); +INSERT INTO `transmog_items` (`entry`) VALUES('116689'); +INSERT INTO `transmog_items` (`entry`) VALUES('116690'); +INSERT INTO `transmog_items` (`entry`) VALUES('116691'); +INSERT INTO `transmog_items` (`entry`) VALUES('116692'); +INSERT INTO `transmog_items` (`entry`) VALUES('116693'); +INSERT INTO `transmog_items` (`entry`) VALUES('116694'); +INSERT INTO `transmog_items` (`entry`) VALUES('116695'); +INSERT INTO `transmog_items` (`entry`) VALUES('116696'); +INSERT INTO `transmog_items` (`entry`) VALUES('116697'); +INSERT INTO `transmog_items` (`entry`) VALUES('116698'); +INSERT INTO `transmog_items` (`entry`) VALUES('116699'); +INSERT INTO `transmog_items` (`entry`) VALUES('116700'); +INSERT INTO `transmog_items` (`entry`) VALUES('116701'); +INSERT INTO `transmog_items` (`entry`) VALUES('116702'); +INSERT INTO `transmog_items` (`entry`) VALUES('116703'); +INSERT INTO `transmog_items` (`entry`) VALUES('116704'); +INSERT INTO `transmog_items` (`entry`) VALUES('116705'); +INSERT INTO `transmog_items` (`entry`) VALUES('116706'); +INSERT INTO `transmog_items` (`entry`) VALUES('116707'); +INSERT INTO `transmog_items` (`entry`) VALUES('116708'); +INSERT INTO `transmog_items` (`entry`) VALUES('116709'); +INSERT INTO `transmog_items` (`entry`) VALUES('116710'); +INSERT INTO `transmog_items` (`entry`) VALUES('116711'); +INSERT INTO `transmog_items` (`entry`) VALUES('116712'); +INSERT INTO `transmog_items` (`entry`) VALUES('116713'); +INSERT INTO `transmog_items` (`entry`) VALUES('116714'); +INSERT INTO `transmog_items` (`entry`) VALUES('116715'); +INSERT INTO `transmog_items` (`entry`) VALUES('116716'); +INSERT INTO `transmog_items` (`entry`) VALUES('116717'); +INSERT INTO `transmog_items` (`entry`) VALUES('116718'); +INSERT INTO `transmog_items` (`entry`) VALUES('116719'); +INSERT INTO `transmog_items` (`entry`) VALUES('116720'); +INSERT INTO `transmog_items` (`entry`) VALUES('116721'); +INSERT INTO `transmog_items` (`entry`) VALUES('116722'); +INSERT INTO `transmog_items` (`entry`) VALUES('116723'); +INSERT INTO `transmog_items` (`entry`) VALUES('116724'); +INSERT INTO `transmog_items` (`entry`) VALUES('116725'); +INSERT INTO `transmog_items` (`entry`) VALUES('116726'); +INSERT INTO `transmog_items` (`entry`) VALUES('116727'); +INSERT INTO `transmog_items` (`entry`) VALUES('116728'); +INSERT INTO `transmog_items` (`entry`) VALUES('116729'); +INSERT INTO `transmog_items` (`entry`) VALUES('116730'); +INSERT INTO `transmog_items` (`entry`) VALUES('116731'); +INSERT INTO `transmog_items` (`entry`) VALUES('116732'); +INSERT INTO `transmog_items` (`entry`) VALUES('116733'); +INSERT INTO `transmog_items` (`entry`) VALUES('116734'); +INSERT INTO `transmog_items` (`entry`) VALUES('116735'); +INSERT INTO `transmog_items` (`entry`) VALUES('116736'); +INSERT INTO `transmog_items` (`entry`) VALUES('116737'); +INSERT INTO `transmog_items` (`entry`) VALUES('116738'); +INSERT INTO `transmog_items` (`entry`) VALUES('116739'); +INSERT INTO `transmog_items` (`entry`) VALUES('116740'); +INSERT INTO `transmog_items` (`entry`) VALUES('116741'); +INSERT INTO `transmog_items` (`entry`) VALUES('116769'); +INSERT INTO `transmog_items` (`entry`) VALUES('116788'); +INSERT INTO `transmog_items` (`entry`) VALUES('116789'); +INSERT INTO `transmog_items` (`entry`) VALUES('116791'); +INSERT INTO `transmog_items` (`entry`) VALUES('116792'); +INSERT INTO `transmog_items` (`entry`) VALUES('116793'); +INSERT INTO `transmog_items` (`entry`) VALUES('116794'); +INSERT INTO `transmog_items` (`entry`) VALUES('116795'); +INSERT INTO `transmog_items` (`entry`) VALUES('116796'); +INSERT INTO `transmog_items` (`entry`) VALUES('116797'); +INSERT INTO `transmog_items` (`entry`) VALUES('116798'); +INSERT INTO `transmog_items` (`entry`) VALUES('116799'); +INSERT INTO `transmog_items` (`entry`) VALUES('116800'); +INSERT INTO `transmog_items` (`entry`) VALUES('116801'); +INSERT INTO `transmog_items` (`entry`) VALUES('116802'); +INSERT INTO `transmog_items` (`entry`) VALUES('116803'); +INSERT INTO `transmog_items` (`entry`) VALUES('116804'); +INSERT INTO `transmog_items` (`entry`) VALUES('116805'); +INSERT INTO `transmog_items` (`entry`) VALUES('116806'); +INSERT INTO `transmog_items` (`entry`) VALUES('116807'); +INSERT INTO `transmog_items` (`entry`) VALUES('116808'); +INSERT INTO `transmog_items` (`entry`) VALUES('116809'); +INSERT INTO `transmog_items` (`entry`) VALUES('116810'); +INSERT INTO `transmog_items` (`entry`) VALUES('116811'); +INSERT INTO `transmog_items` (`entry`) VALUES('116812'); +INSERT INTO `transmog_items` (`entry`) VALUES('116813'); +INSERT INTO `transmog_items` (`entry`) VALUES('116814'); +INSERT INTO `transmog_items` (`entry`) VALUES('116815'); +INSERT INTO `transmog_items` (`entry`) VALUES('116816'); +INSERT INTO `transmog_items` (`entry`) VALUES('116817'); +INSERT INTO `transmog_items` (`entry`) VALUES('116818'); +INSERT INTO `transmog_items` (`entry`) VALUES('116819'); +INSERT INTO `transmog_items` (`entry`) VALUES('116820'); +INSERT INTO `transmog_items` (`entry`) VALUES('116821'); +INSERT INTO `transmog_items` (`entry`) VALUES('116822'); +INSERT INTO `transmog_items` (`entry`) VALUES('116823'); +INSERT INTO `transmog_items` (`entry`) VALUES('116824'); +INSERT INTO `transmog_items` (`entry`) VALUES('116825'); +INSERT INTO `transmog_items` (`entry`) VALUES('116826'); +INSERT INTO `transmog_items` (`entry`) VALUES('116827'); +INSERT INTO `transmog_items` (`entry`) VALUES('116828'); +INSERT INTO `transmog_items` (`entry`) VALUES('116829'); +INSERT INTO `transmog_items` (`entry`) VALUES('116830'); +INSERT INTO `transmog_items` (`entry`) VALUES('116831'); +INSERT INTO `transmog_items` (`entry`) VALUES('116832'); +INSERT INTO `transmog_items` (`entry`) VALUES('116833'); +INSERT INTO `transmog_items` (`entry`) VALUES('116834'); +INSERT INTO `transmog_items` (`entry`) VALUES('116835'); +INSERT INTO `transmog_items` (`entry`) VALUES('116836'); +INSERT INTO `transmog_items` (`entry`) VALUES('116837'); +INSERT INTO `transmog_items` (`entry`) VALUES('116838'); +INSERT INTO `transmog_items` (`entry`) VALUES('116839'); +INSERT INTO `transmog_items` (`entry`) VALUES('116840'); +INSERT INTO `transmog_items` (`entry`) VALUES('116841'); +INSERT INTO `transmog_items` (`entry`) VALUES('116842'); +INSERT INTO `transmog_items` (`entry`) VALUES('116843'); +INSERT INTO `transmog_items` (`entry`) VALUES('116844'); +INSERT INTO `transmog_items` (`entry`) VALUES('116845'); +INSERT INTO `transmog_items` (`entry`) VALUES('116846'); +INSERT INTO `transmog_items` (`entry`) VALUES('116847'); +INSERT INTO `transmog_items` (`entry`) VALUES('116848'); +INSERT INTO `transmog_items` (`entry`) VALUES('116849'); +INSERT INTO `transmog_items` (`entry`) VALUES('116850'); +INSERT INTO `transmog_items` (`entry`) VALUES('116851'); +INSERT INTO `transmog_items` (`entry`) VALUES('116852'); +INSERT INTO `transmog_items` (`entry`) VALUES('116853'); +INSERT INTO `transmog_items` (`entry`) VALUES('116854'); +INSERT INTO `transmog_items` (`entry`) VALUES('116855'); +INSERT INTO `transmog_items` (`entry`) VALUES('116856'); +INSERT INTO `transmog_items` (`entry`) VALUES('116857'); +INSERT INTO `transmog_items` (`entry`) VALUES('116858'); +INSERT INTO `transmog_items` (`entry`) VALUES('116859'); +INSERT INTO `transmog_items` (`entry`) VALUES('116860'); +INSERT INTO `transmog_items` (`entry`) VALUES('116861'); +INSERT INTO `transmog_items` (`entry`) VALUES('116862'); +INSERT INTO `transmog_items` (`entry`) VALUES('116863'); +INSERT INTO `transmog_items` (`entry`) VALUES('116864'); +INSERT INTO `transmog_items` (`entry`) VALUES('116865'); +INSERT INTO `transmog_items` (`entry`) VALUES('116866'); +INSERT INTO `transmog_items` (`entry`) VALUES('116867'); +INSERT INTO `transmog_items` (`entry`) VALUES('116868'); +INSERT INTO `transmog_items` (`entry`) VALUES('116873'); +INSERT INTO `transmog_items` (`entry`) VALUES('116897'); +INSERT INTO `transmog_items` (`entry`) VALUES('116898'); +INSERT INTO `transmog_items` (`entry`) VALUES('116899'); +INSERT INTO `transmog_items` (`entry`) VALUES('116900'); +INSERT INTO `transmog_items` (`entry`) VALUES('116901'); +INSERT INTO `transmog_items` (`entry`) VALUES('116902'); +INSERT INTO `transmog_items` (`entry`) VALUES('116903'); +INSERT INTO `transmog_items` (`entry`) VALUES('116904'); +INSERT INTO `transmog_items` (`entry`) VALUES('116905'); +INSERT INTO `transmog_items` (`entry`) VALUES('116906'); +INSERT INTO `transmog_items` (`entry`) VALUES('116907'); +INSERT INTO `transmog_items` (`entry`) VALUES('116908'); +INSERT INTO `transmog_items` (`entry`) VALUES('116909'); +INSERT INTO `transmog_items` (`entry`) VALUES('116910'); +INSERT INTO `transmog_items` (`entry`) VALUES('116911'); +INSERT INTO `transmog_items` (`entry`) VALUES('116912'); +INSERT INTO `transmog_items` (`entry`) VALUES('116913'); +INSERT INTO `transmog_items` (`entry`) VALUES('116914'); +INSERT INTO `transmog_items` (`entry`) VALUES('116915'); +INSERT INTO `transmog_items` (`entry`) VALUES('116916'); +INSERT INTO `transmog_items` (`entry`) VALUES('116917'); +INSERT INTO `transmog_items` (`entry`) VALUES('116918'); +INSERT INTO `transmog_items` (`entry`) VALUES('116919'); +INSERT INTO `transmog_items` (`entry`) VALUES('116920'); +INSERT INTO `transmog_items` (`entry`) VALUES('116921'); +INSERT INTO `transmog_items` (`entry`) VALUES('116922'); +INSERT INTO `transmog_items` (`entry`) VALUES('116923'); +INSERT INTO `transmog_items` (`entry`) VALUES('116924'); +INSERT INTO `transmog_items` (`entry`) VALUES('116925'); +INSERT INTO `transmog_items` (`entry`) VALUES('116926'); +INSERT INTO `transmog_items` (`entry`) VALUES('116927'); +INSERT INTO `transmog_items` (`entry`) VALUES('116928'); +INSERT INTO `transmog_items` (`entry`) VALUES('116929'); +INSERT INTO `transmog_items` (`entry`) VALUES('116930'); +INSERT INTO `transmog_items` (`entry`) VALUES('116931'); +INSERT INTO `transmog_items` (`entry`) VALUES('116932'); +INSERT INTO `transmog_items` (`entry`) VALUES('116933'); +INSERT INTO `transmog_items` (`entry`) VALUES('116934'); +INSERT INTO `transmog_items` (`entry`) VALUES('116935'); +INSERT INTO `transmog_items` (`entry`) VALUES('116936'); +INSERT INTO `transmog_items` (`entry`) VALUES('116937'); +INSERT INTO `transmog_items` (`entry`) VALUES('116938'); +INSERT INTO `transmog_items` (`entry`) VALUES('116939'); +INSERT INTO `transmog_items` (`entry`) VALUES('116940'); +INSERT INTO `transmog_items` (`entry`) VALUES('116941'); +INSERT INTO `transmog_items` (`entry`) VALUES('116942'); +INSERT INTO `transmog_items` (`entry`) VALUES('116943'); +INSERT INTO `transmog_items` (`entry`) VALUES('116944'); +INSERT INTO `transmog_items` (`entry`) VALUES('116945'); +INSERT INTO `transmog_items` (`entry`) VALUES('116946'); +INSERT INTO `transmog_items` (`entry`) VALUES('116947'); +INSERT INTO `transmog_items` (`entry`) VALUES('116948'); +INSERT INTO `transmog_items` (`entry`) VALUES('116949'); +INSERT INTO `transmog_items` (`entry`) VALUES('116950'); +INSERT INTO `transmog_items` (`entry`) VALUES('116951'); +INSERT INTO `transmog_items` (`entry`) VALUES('116952'); +INSERT INTO `transmog_items` (`entry`) VALUES('116953'); +INSERT INTO `transmog_items` (`entry`) VALUES('116954'); +INSERT INTO `transmog_items` (`entry`) VALUES('116955'); +INSERT INTO `transmog_items` (`entry`) VALUES('116956'); +INSERT INTO `transmog_items` (`entry`) VALUES('116957'); +INSERT INTO `transmog_items` (`entry`) VALUES('116958'); +INSERT INTO `transmog_items` (`entry`) VALUES('116959'); +INSERT INTO `transmog_items` (`entry`) VALUES('116960'); +INSERT INTO `transmog_items` (`entry`) VALUES('116961'); +INSERT INTO `transmog_items` (`entry`) VALUES('116962'); +INSERT INTO `transmog_items` (`entry`) VALUES('116963'); +INSERT INTO `transmog_items` (`entry`) VALUES('116964'); +INSERT INTO `transmog_items` (`entry`) VALUES('116965'); +INSERT INTO `transmog_items` (`entry`) VALUES('116966'); +INSERT INTO `transmog_items` (`entry`) VALUES('116975'); +INSERT INTO `transmog_items` (`entry`) VALUES('116977'); +INSERT INTO `transmog_items` (`entry`) VALUES('116978'); +INSERT INTO `transmog_items` (`entry`) VALUES('116979'); +INSERT INTO `transmog_items` (`entry`) VALUES('116980'); +INSERT INTO `transmog_items` (`entry`) VALUES('116981'); +INSERT INTO `transmog_items` (`entry`) VALUES('116982'); +INSERT INTO `transmog_items` (`entry`) VALUES('116983'); +INSERT INTO `transmog_items` (`entry`) VALUES('116984'); +INSERT INTO `transmog_items` (`entry`) VALUES('116985'); +INSERT INTO `transmog_items` (`entry`) VALUES('116986'); +INSERT INTO `transmog_items` (`entry`) VALUES('116987'); +INSERT INTO `transmog_items` (`entry`) VALUES('116988'); +INSERT INTO `transmog_items` (`entry`) VALUES('116989'); +INSERT INTO `transmog_items` (`entry`) VALUES('116990'); +INSERT INTO `transmog_items` (`entry`) VALUES('116992'); +INSERT INTO `transmog_items` (`entry`) VALUES('116993'); +INSERT INTO `transmog_items` (`entry`) VALUES('116994'); +INSERT INTO `transmog_items` (`entry`) VALUES('116995'); +INSERT INTO `transmog_items` (`entry`) VALUES('116996'); +INSERT INTO `transmog_items` (`entry`) VALUES('116997'); +INSERT INTO `transmog_items` (`entry`) VALUES('116998'); +INSERT INTO `transmog_items` (`entry`) VALUES('117003'); +INSERT INTO `transmog_items` (`entry`) VALUES('117005'); +INSERT INTO `transmog_items` (`entry`) VALUES('117006'); +INSERT INTO `transmog_items` (`entry`) VALUES('117007'); +INSERT INTO `transmog_items` (`entry`) VALUES('117013'); +INSERT INTO `transmog_items` (`entry`) VALUES('117014'); +INSERT INTO `transmog_items` (`entry`) VALUES('117039'); +INSERT INTO `transmog_items` (`entry`) VALUES('117042'); +INSERT INTO `transmog_items` (`entry`) VALUES('117043'); +INSERT INTO `transmog_items` (`entry`) VALUES('117047'); +INSERT INTO `transmog_items` (`entry`) VALUES('117050'); +INSERT INTO `transmog_items` (`entry`) VALUES('117055'); +INSERT INTO `transmog_items` (`entry`) VALUES('117061'); +INSERT INTO `transmog_items` (`entry`) VALUES('117066'); +INSERT INTO `transmog_items` (`entry`) VALUES('117069'); +INSERT INTO `transmog_items` (`entry`) VALUES('117070'); +INSERT INTO `transmog_items` (`entry`) VALUES('117071'); +INSERT INTO `transmog_items` (`entry`) VALUES('117072'); +INSERT INTO `transmog_items` (`entry`) VALUES('117074'); +INSERT INTO `transmog_items` (`entry`) VALUES('117077'); +INSERT INTO `transmog_items` (`entry`) VALUES('117078'); +INSERT INTO `transmog_items` (`entry`) VALUES('117102'); +INSERT INTO `transmog_items` (`entry`) VALUES('117104'); +INSERT INTO `transmog_items` (`entry`) VALUES('117105'); +INSERT INTO `transmog_items` (`entry`) VALUES('117106'); +INSERT INTO `transmog_items` (`entry`) VALUES('117107'); +INSERT INTO `transmog_items` (`entry`) VALUES('117112'); +INSERT INTO `transmog_items` (`entry`) VALUES('117142'); +INSERT INTO `transmog_items` (`entry`) VALUES('117183'); +INSERT INTO `transmog_items` (`entry`) VALUES('117184'); +INSERT INTO `transmog_items` (`entry`) VALUES('117185'); +INSERT INTO `transmog_items` (`entry`) VALUES('117186'); +INSERT INTO `transmog_items` (`entry`) VALUES('117187'); +INSERT INTO `transmog_items` (`entry`) VALUES('117188'); +INSERT INTO `transmog_items` (`entry`) VALUES('117189'); +INSERT INTO `transmog_items` (`entry`) VALUES('117190'); +INSERT INTO `transmog_items` (`entry`) VALUES('117192'); +INSERT INTO `transmog_items` (`entry`) VALUES('117223'); +INSERT INTO `transmog_items` (`entry`) VALUES('117508'); +INSERT INTO `transmog_items` (`entry`) VALUES('117523'); +INSERT INTO `transmog_items` (`entry`) VALUES('117562'); +INSERT INTO `transmog_items` (`entry`) VALUES('117564'); +INSERT INTO `transmog_items` (`entry`) VALUES('117566'); +INSERT INTO `transmog_items` (`entry`) VALUES('117567'); +INSERT INTO `transmog_items` (`entry`) VALUES('117568'); +INSERT INTO `transmog_items` (`entry`) VALUES('117569'); +INSERT INTO `transmog_items` (`entry`) VALUES('117570'); +INSERT INTO `transmog_items` (`entry`) VALUES('117571'); +INSERT INTO `transmog_items` (`entry`) VALUES('117572'); +INSERT INTO `transmog_items` (`entry`) VALUES('117573'); +INSERT INTO `transmog_items` (`entry`) VALUES('117576'); +INSERT INTO `transmog_items` (`entry`) VALUES('117577'); +INSERT INTO `transmog_items` (`entry`) VALUES('117578'); +INSERT INTO `transmog_items` (`entry`) VALUES('117579'); +INSERT INTO `transmog_items` (`entry`) VALUES('117580'); +INSERT INTO `transmog_items` (`entry`) VALUES('117581'); +INSERT INTO `transmog_items` (`entry`) VALUES('117583'); +INSERT INTO `transmog_items` (`entry`) VALUES('117584'); +INSERT INTO `transmog_items` (`entry`) VALUES('117586'); +INSERT INTO `transmog_items` (`entry`) VALUES('117588'); +INSERT INTO `transmog_items` (`entry`) VALUES('117590'); +INSERT INTO `transmog_items` (`entry`) VALUES('117591'); +INSERT INTO `transmog_items` (`entry`) VALUES('117592'); +INSERT INTO `transmog_items` (`entry`) VALUES('117593'); +INSERT INTO `transmog_items` (`entry`) VALUES('117594'); +INSERT INTO `transmog_items` (`entry`) VALUES('117596'); +INSERT INTO `transmog_items` (`entry`) VALUES('117598'); +INSERT INTO `transmog_items` (`entry`) VALUES('117599'); +INSERT INTO `transmog_items` (`entry`) VALUES('117600'); +INSERT INTO `transmog_items` (`entry`) VALUES('117601'); +INSERT INTO `transmog_items` (`entry`) VALUES('117602'); +INSERT INTO `transmog_items` (`entry`) VALUES('117603'); +INSERT INTO `transmog_items` (`entry`) VALUES('117604'); +INSERT INTO `transmog_items` (`entry`) VALUES('117605'); +INSERT INTO `transmog_items` (`entry`) VALUES('117607'); +INSERT INTO `transmog_items` (`entry`) VALUES('117608'); +INSERT INTO `transmog_items` (`entry`) VALUES('117610'); +INSERT INTO `transmog_items` (`entry`) VALUES('117611'); +INSERT INTO `transmog_items` (`entry`) VALUES('117612'); +INSERT INTO `transmog_items` (`entry`) VALUES('117613'); +INSERT INTO `transmog_items` (`entry`) VALUES('117616'); +INSERT INTO `transmog_items` (`entry`) VALUES('117617'); +INSERT INTO `transmog_items` (`entry`) VALUES('117618'); +INSERT INTO `transmog_items` (`entry`) VALUES('117620'); +INSERT INTO `transmog_items` (`entry`) VALUES('117622'); +INSERT INTO `transmog_items` (`entry`) VALUES('117623'); +INSERT INTO `transmog_items` (`entry`) VALUES('117624'); +INSERT INTO `transmog_items` (`entry`) VALUES('117625'); +INSERT INTO `transmog_items` (`entry`) VALUES('117686'); +INSERT INTO `transmog_items` (`entry`) VALUES('117687'); +INSERT INTO `transmog_items` (`entry`) VALUES('117688'); +INSERT INTO `transmog_items` (`entry`) VALUES('117695'); +INSERT INTO `transmog_items` (`entry`) VALUES('117710'); +INSERT INTO `transmog_items` (`entry`) VALUES('117711'); +INSERT INTO `transmog_items` (`entry`) VALUES('117714'); +INSERT INTO `transmog_items` (`entry`) VALUES('117715'); +INSERT INTO `transmog_items` (`entry`) VALUES('117717'); +INSERT INTO `transmog_items` (`entry`) VALUES('117718'); +INSERT INTO `transmog_items` (`entry`) VALUES('117721'); +INSERT INTO `transmog_items` (`entry`) VALUES('117728'); +INSERT INTO `transmog_items` (`entry`) VALUES('117730'); +INSERT INTO `transmog_items` (`entry`) VALUES('117732'); +INSERT INTO `transmog_items` (`entry`) VALUES('117733'); +INSERT INTO `transmog_items` (`entry`) VALUES('117734'); +INSERT INTO `transmog_items` (`entry`) VALUES('117736'); +INSERT INTO `transmog_items` (`entry`) VALUES('117738'); +INSERT INTO `transmog_items` (`entry`) VALUES('117739'); +INSERT INTO `transmog_items` (`entry`) VALUES('117740'); +INSERT INTO `transmog_items` (`entry`) VALUES('117741'); +INSERT INTO `transmog_items` (`entry`) VALUES('117742'); +INSERT INTO `transmog_items` (`entry`) VALUES('117745'); +INSERT INTO `transmog_items` (`entry`) VALUES('117746'); +INSERT INTO `transmog_items` (`entry`) VALUES('117748'); +INSERT INTO `transmog_items` (`entry`) VALUES('117749'); +INSERT INTO `transmog_items` (`entry`) VALUES('117750'); +INSERT INTO `transmog_items` (`entry`) VALUES('117751'); +INSERT INTO `transmog_items` (`entry`) VALUES('117752'); +INSERT INTO `transmog_items` (`entry`) VALUES('117753'); +INSERT INTO `transmog_items` (`entry`) VALUES('117754'); +INSERT INTO `transmog_items` (`entry`) VALUES('117755'); +INSERT INTO `transmog_items` (`entry`) VALUES('117767'); +INSERT INTO `transmog_items` (`entry`) VALUES('117769'); +INSERT INTO `transmog_items` (`entry`) VALUES('117770'); +INSERT INTO `transmog_items` (`entry`) VALUES('117775'); +INSERT INTO `transmog_items` (`entry`) VALUES('117776'); +INSERT INTO `transmog_items` (`entry`) VALUES('117777'); +INSERT INTO `transmog_items` (`entry`) VALUES('117778'); +INSERT INTO `transmog_items` (`entry`) VALUES('117779'); +INSERT INTO `transmog_items` (`entry`) VALUES('117780'); +INSERT INTO `transmog_items` (`entry`) VALUES('117922'); +INSERT INTO `transmog_items` (`entry`) VALUES('117943'); +INSERT INTO `transmog_items` (`entry`) VALUES('118002'); +INSERT INTO `transmog_items` (`entry`) VALUES('118043'); +INSERT INTO `transmog_items` (`entry`) VALUES('118044'); +INSERT INTO `transmog_items` (`entry`) VALUES('118047'); +INSERT INTO `transmog_items` (`entry`) VALUES('118048'); +INSERT INTO `transmog_items` (`entry`) VALUES('118083'); +INSERT INTO `transmog_items` (`entry`) VALUES('118102'); +INSERT INTO `transmog_items` (`entry`) VALUES('118104'); +INSERT INTO `transmog_items` (`entry`) VALUES('118168'); +INSERT INTO `transmog_items` (`entry`) VALUES('118202'); +INSERT INTO `transmog_items` (`entry`) VALUES('118203'); +INSERT INTO `transmog_items` (`entry`) VALUES('118204'); +INSERT INTO `transmog_items` (`entry`) VALUES('118208'); +INSERT INTO `transmog_items` (`entry`) VALUES('118238'); +INSERT INTO `transmog_items` (`entry`) VALUES('118263'); +INSERT INTO `transmog_items` (`entry`) VALUES('118282'); +INSERT INTO `transmog_items` (`entry`) VALUES('118295'); +INSERT INTO `transmog_items` (`entry`) VALUES('118296'); +INSERT INTO `transmog_items` (`entry`) VALUES('118298'); +INSERT INTO `transmog_items` (`entry`) VALUES('118301'); +INSERT INTO `transmog_items` (`entry`) VALUES('118303'); +INSERT INTO `transmog_items` (`entry`) VALUES('118304'); +INSERT INTO `transmog_items` (`entry`) VALUES('118305'); +INSERT INTO `transmog_items` (`entry`) VALUES('118306'); +INSERT INTO `transmog_items` (`entry`) VALUES('118307'); +INSERT INTO `transmog_items` (`entry`) VALUES('118308'); +INSERT INTO `transmog_items` (`entry`) VALUES('118309'); +INSERT INTO `transmog_items` (`entry`) VALUES('118312'); +INSERT INTO `transmog_items` (`entry`) VALUES('118313'); +INSERT INTO `transmog_items` (`entry`) VALUES('118318'); +INSERT INTO `transmog_items` (`entry`) VALUES('118319'); +INSERT INTO `transmog_items` (`entry`) VALUES('118320'); +INSERT INTO `transmog_items` (`entry`) VALUES('118321'); +INSERT INTO `transmog_items` (`entry`) VALUES('118322'); +INSERT INTO `transmog_items` (`entry`) VALUES('118323'); +INSERT INTO `transmog_items` (`entry`) VALUES('118324'); +INSERT INTO `transmog_items` (`entry`) VALUES('118325'); +INSERT INTO `transmog_items` (`entry`) VALUES('118326'); +INSERT INTO `transmog_items` (`entry`) VALUES('118327'); +INSERT INTO `transmog_items` (`entry`) VALUES('118328'); +INSERT INTO `transmog_items` (`entry`) VALUES('118337'); +INSERT INTO `transmog_items` (`entry`) VALUES('118338'); +INSERT INTO `transmog_items` (`entry`) VALUES('118339'); +INSERT INTO `transmog_items` (`entry`) VALUES('118341'); +INSERT INTO `transmog_items` (`entry`) VALUES('118342'); +INSERT INTO `transmog_items` (`entry`) VALUES('118344'); +INSERT INTO `transmog_items` (`entry`) VALUES('118346'); +INSERT INTO `transmog_items` (`entry`) VALUES('118349'); +INSERT INTO `transmog_items` (`entry`) VALUES('118350'); +INSERT INTO `transmog_items` (`entry`) VALUES('118351'); +INSERT INTO `transmog_items` (`entry`) VALUES('118352'); +INSERT INTO `transmog_items` (`entry`) VALUES('118366'); +INSERT INTO `transmog_items` (`entry`) VALUES('118367'); +INSERT INTO `transmog_items` (`entry`) VALUES('118368'); +INSERT INTO `transmog_items` (`entry`) VALUES('118369'); +INSERT INTO `transmog_items` (`entry`) VALUES('118372'); +INSERT INTO `transmog_items` (`entry`) VALUES('118373'); +INSERT INTO `transmog_items` (`entry`) VALUES('118374'); +INSERT INTO `transmog_items` (`entry`) VALUES('118375'); +INSERT INTO `transmog_items` (`entry`) VALUES('118376'); +INSERT INTO `transmog_items` (`entry`) VALUES('118377'); +INSERT INTO `transmog_items` (`entry`) VALUES('118378'); +INSERT INTO `transmog_items` (`entry`) VALUES('118379'); +INSERT INTO `transmog_items` (`entry`) VALUES('118380'); +INSERT INTO `transmog_items` (`entry`) VALUES('118382'); +INSERT INTO `transmog_items` (`entry`) VALUES('118383'); +INSERT INTO `transmog_items` (`entry`) VALUES('118384'); +INSERT INTO `transmog_items` (`entry`) VALUES('118385'); +INSERT INTO `transmog_items` (`entry`) VALUES('118386'); +INSERT INTO `transmog_items` (`entry`) VALUES('118387'); +INSERT INTO `transmog_items` (`entry`) VALUES('118388'); +INSERT INTO `transmog_items` (`entry`) VALUES('118389'); +INSERT INTO `transmog_items` (`entry`) VALUES('118390'); +INSERT INTO `transmog_items` (`entry`) VALUES('118391'); +INSERT INTO `transmog_items` (`entry`) VALUES('118392'); +INSERT INTO `transmog_items` (`entry`) VALUES('118393'); +INSERT INTO `transmog_items` (`entry`) VALUES('118394'); +INSERT INTO `transmog_items` (`entry`) VALUES('118405'); +INSERT INTO `transmog_items` (`entry`) VALUES('118407'); +INSERT INTO `transmog_items` (`entry`) VALUES('118408'); +INSERT INTO `transmog_items` (`entry`) VALUES('118409'); +INSERT INTO `transmog_items` (`entry`) VALUES('118411'); +INSERT INTO `transmog_items` (`entry`) VALUES('118413'); +INSERT INTO `transmog_items` (`entry`) VALUES('118421'); +INSERT INTO `transmog_items` (`entry`) VALUES('118424'); +INSERT INTO `transmog_items` (`entry`) VALUES('118427'); +INSERT INTO `transmog_items` (`entry`) VALUES('118429'); +INSERT INTO `transmog_items` (`entry`) VALUES('118430'); +INSERT INTO `transmog_items` (`entry`) VALUES('118432'); +INSERT INTO `transmog_items` (`entry`) VALUES('118434'); +INSERT INTO `transmog_items` (`entry`) VALUES('118435'); +INSERT INTO `transmog_items` (`entry`) VALUES('118436'); +INSERT INTO `transmog_items` (`entry`) VALUES('118437'); +INSERT INTO `transmog_items` (`entry`) VALUES('118440'); +INSERT INTO `transmog_items` (`entry`) VALUES('118441'); +INSERT INTO `transmog_items` (`entry`) VALUES('118445'); +INSERT INTO `transmog_items` (`entry`) VALUES('118447'); +INSERT INTO `transmog_items` (`entry`) VALUES('118448'); +INSERT INTO `transmog_items` (`entry`) VALUES('118449'); +INSERT INTO `transmog_items` (`entry`) VALUES('118450'); +INSERT INTO `transmog_items` (`entry`) VALUES('118451'); +INSERT INTO `transmog_items` (`entry`) VALUES('118452'); +INSERT INTO `transmog_items` (`entry`) VALUES('118453'); +INSERT INTO `transmog_items` (`entry`) VALUES('118454'); +INSERT INTO `transmog_items` (`entry`) VALUES('118455'); +INSERT INTO `transmog_items` (`entry`) VALUES('118456'); +INSERT INTO `transmog_items` (`entry`) VALUES('118457'); +INSERT INTO `transmog_items` (`entry`) VALUES('118458'); +INSERT INTO `transmog_items` (`entry`) VALUES('118459'); +INSERT INTO `transmog_items` (`entry`) VALUES('118460'); +INSERT INTO `transmog_items` (`entry`) VALUES('118461'); +INSERT INTO `transmog_items` (`entry`) VALUES('118462'); +INSERT INTO `transmog_items` (`entry`) VALUES('118475'); +INSERT INTO `transmog_items` (`entry`) VALUES('118476'); +INSERT INTO `transmog_items` (`entry`) VALUES('118477'); +INSERT INTO `transmog_items` (`entry`) VALUES('118478'); +INSERT INTO `transmog_items` (`entry`) VALUES('118479'); +INSERT INTO `transmog_items` (`entry`) VALUES('118480'); +INSERT INTO `transmog_items` (`entry`) VALUES('118482'); +INSERT INTO `transmog_items` (`entry`) VALUES('118483'); +INSERT INTO `transmog_items` (`entry`) VALUES('118485'); +INSERT INTO `transmog_items` (`entry`) VALUES('118486'); +INSERT INTO `transmog_items` (`entry`) VALUES('118490'); +INSERT INTO `transmog_items` (`entry`) VALUES('118491'); +INSERT INTO `transmog_items` (`entry`) VALUES('118493'); +INSERT INTO `transmog_items` (`entry`) VALUES('118494'); +INSERT INTO `transmog_items` (`entry`) VALUES('118495'); +INSERT INTO `transmog_items` (`entry`) VALUES('118496'); +INSERT INTO `transmog_items` (`entry`) VALUES('118497'); +INSERT INTO `transmog_items` (`entry`) VALUES('118499'); +INSERT INTO `transmog_items` (`entry`) VALUES('118502'); +INSERT INTO `transmog_items` (`entry`) VALUES('118503'); +INSERT INTO `transmog_items` (`entry`) VALUES('118504'); +INSERT INTO `transmog_items` (`entry`) VALUES('118505'); +INSERT INTO `transmog_items` (`entry`) VALUES('118506'); +INSERT INTO `transmog_items` (`entry`) VALUES('118507'); +INSERT INTO `transmog_items` (`entry`) VALUES('118508'); +INSERT INTO `transmog_items` (`entry`) VALUES('118509'); +INSERT INTO `transmog_items` (`entry`) VALUES('118510'); +INSERT INTO `transmog_items` (`entry`) VALUES('118511'); +INSERT INTO `transmog_items` (`entry`) VALUES('118521'); +INSERT INTO `transmog_items` (`entry`) VALUES('118524'); +INSERT INTO `transmog_items` (`entry`) VALUES('118525'); +INSERT INTO `transmog_items` (`entry`) VALUES('118526'); +INSERT INTO `transmog_items` (`entry`) VALUES('118527'); +INSERT INTO `transmog_items` (`entry`) VALUES('118528'); +INSERT INTO `transmog_items` (`entry`) VALUES('118529'); +INSERT INTO `transmog_items` (`entry`) VALUES('118530'); +INSERT INTO `transmog_items` (`entry`) VALUES('118532'); +INSERT INTO `transmog_items` (`entry`) VALUES('118533'); +INSERT INTO `transmog_items` (`entry`) VALUES('118535'); +INSERT INTO `transmog_items` (`entry`) VALUES('118538'); +INSERT INTO `transmog_items` (`entry`) VALUES('118541'); +INSERT INTO `transmog_items` (`entry`) VALUES('118544'); +INSERT INTO `transmog_items` (`entry`) VALUES('118545'); +INSERT INTO `transmog_items` (`entry`) VALUES('118546'); +INSERT INTO `transmog_items` (`entry`) VALUES('118547'); +INSERT INTO `transmog_items` (`entry`) VALUES('118611'); +INSERT INTO `transmog_items` (`entry`) VALUES('118612'); +INSERT INTO `transmog_items` (`entry`) VALUES('118671'); +INSERT INTO `transmog_items` (`entry`) VALUES('118673'); +INSERT INTO `transmog_items` (`entry`) VALUES('118676'); +INSERT INTO `transmog_items` (`entry`) VALUES('118677'); +INSERT INTO `transmog_items` (`entry`) VALUES('118680'); +INSERT INTO `transmog_items` (`entry`) VALUES('118681'); +INSERT INTO `transmog_items` (`entry`) VALUES('118682'); +INSERT INTO `transmog_items` (`entry`) VALUES('118683'); +INSERT INTO `transmog_items` (`entry`) VALUES('118686'); +INSERT INTO `transmog_items` (`entry`) VALUES('118689'); +INSERT INTO `transmog_items` (`entry`) VALUES('118690'); +INSERT INTO `transmog_items` (`entry`) VALUES('118692'); +INSERT INTO `transmog_items` (`entry`) VALUES('118693'); +INSERT INTO `transmog_items` (`entry`) VALUES('118694'); +INSERT INTO `transmog_items` (`entry`) VALUES('118696'); +INSERT INTO `transmog_items` (`entry`) VALUES('118697'); +INSERT INTO `transmog_items` (`entry`) VALUES('118698'); +INSERT INTO `transmog_items` (`entry`) VALUES('118699'); +INSERT INTO `transmog_items` (`entry`) VALUES('118700'); +INSERT INTO `transmog_items` (`entry`) VALUES('118702'); +INSERT INTO `transmog_items` (`entry`) VALUES('118709'); +INSERT INTO `transmog_items` (`entry`) VALUES('118710'); +INSERT INTO `transmog_items` (`entry`) VALUES('118711'); +INSERT INTO `transmog_items` (`entry`) VALUES('118712'); +INSERT INTO `transmog_items` (`entry`) VALUES('118713'); +INSERT INTO `transmog_items` (`entry`) VALUES('118716'); +INSERT INTO `transmog_items` (`entry`) VALUES('118718'); +INSERT INTO `transmog_items` (`entry`) VALUES('118720'); +INSERT INTO `transmog_items` (`entry`) VALUES('118721'); +INSERT INTO `transmog_items` (`entry`) VALUES('118722'); +INSERT INTO `transmog_items` (`entry`) VALUES('118725'); +INSERT INTO `transmog_items` (`entry`) VALUES('118726'); +INSERT INTO `transmog_items` (`entry`) VALUES('118727'); +INSERT INTO `transmog_items` (`entry`) VALUES('118729'); +INSERT INTO `transmog_items` (`entry`) VALUES('118730'); +INSERT INTO `transmog_items` (`entry`) VALUES('118734'); +INSERT INTO `transmog_items` (`entry`) VALUES('118735'); +INSERT INTO `transmog_items` (`entry`) VALUES('118736'); +INSERT INTO `transmog_items` (`entry`) VALUES('118738'); +INSERT INTO `transmog_items` (`entry`) VALUES('118739'); +INSERT INTO `transmog_items` (`entry`) VALUES('118740'); +INSERT INTO `transmog_items` (`entry`) VALUES('118741'); +INSERT INTO `transmog_items` (`entry`) VALUES('118742'); +INSERT INTO `transmog_items` (`entry`) VALUES('118743'); +INSERT INTO `transmog_items` (`entry`) VALUES('118744'); +INSERT INTO `transmog_items` (`entry`) VALUES('118745'); +INSERT INTO `transmog_items` (`entry`) VALUES('118754'); +INSERT INTO `transmog_items` (`entry`) VALUES('118755'); +INSERT INTO `transmog_items` (`entry`) VALUES('118756'); +INSERT INTO `transmog_items` (`entry`) VALUES('118757'); +INSERT INTO `transmog_items` (`entry`) VALUES('118758'); +INSERT INTO `transmog_items` (`entry`) VALUES('118759'); +INSERT INTO `transmog_items` (`entry`) VALUES('118761'); +INSERT INTO `transmog_items` (`entry`) VALUES('118805'); +INSERT INTO `transmog_items` (`entry`) VALUES('118806'); +INSERT INTO `transmog_items` (`entry`) VALUES('118807'); +INSERT INTO `transmog_items` (`entry`) VALUES('118808'); +INSERT INTO `transmog_items` (`entry`) VALUES('118809'); +INSERT INTO `transmog_items` (`entry`) VALUES('118810'); +INSERT INTO `transmog_items` (`entry`) VALUES('118811'); +INSERT INTO `transmog_items` (`entry`) VALUES('118812'); +INSERT INTO `transmog_items` (`entry`) VALUES('118816'); +INSERT INTO `transmog_items` (`entry`) VALUES('118817'); +INSERT INTO `transmog_items` (`entry`) VALUES('118823'); +INSERT INTO `transmog_items` (`entry`) VALUES('118824'); +INSERT INTO `transmog_items` (`entry`) VALUES('118825'); +INSERT INTO `transmog_items` (`entry`) VALUES('118826'); +INSERT INTO `transmog_items` (`entry`) VALUES('118829'); +INSERT INTO `transmog_items` (`entry`) VALUES('118830'); +INSERT INTO `transmog_items` (`entry`) VALUES('118831'); +INSERT INTO `transmog_items` (`entry`) VALUES('118833'); +INSERT INTO `transmog_items` (`entry`) VALUES('118835'); +INSERT INTO `transmog_items` (`entry`) VALUES('118836'); +INSERT INTO `transmog_items` (`entry`) VALUES('118837'); +INSERT INTO `transmog_items` (`entry`) VALUES('118838'); +INSERT INTO `transmog_items` (`entry`) VALUES('118840'); +INSERT INTO `transmog_items` (`entry`) VALUES('118843'); +INSERT INTO `transmog_items` (`entry`) VALUES('118844'); +INSERT INTO `transmog_items` (`entry`) VALUES('118847'); +INSERT INTO `transmog_items` (`entry`) VALUES('118848'); +INSERT INTO `transmog_items` (`entry`) VALUES('118855'); +INSERT INTO `transmog_items` (`entry`) VALUES('118860'); +INSERT INTO `transmog_items` (`entry`) VALUES('118861'); +INSERT INTO `transmog_items` (`entry`) VALUES('118865'); +INSERT INTO `transmog_items` (`entry`) VALUES('118866'); +INSERT INTO `transmog_items` (`entry`) VALUES('118869'); +INSERT INTO `transmog_items` (`entry`) VALUES('118870'); +INSERT INTO `transmog_items` (`entry`) VALUES('118871'); +INSERT INTO `transmog_items` (`entry`) VALUES('118872'); +INSERT INTO `transmog_items` (`entry`) VALUES('118875'); +INSERT INTO `transmog_items` (`entry`) VALUES('118878'); +INSERT INTO `transmog_items` (`entry`) VALUES('118948'); +INSERT INTO `transmog_items` (`entry`) VALUES('119022'); +INSERT INTO `transmog_items` (`entry`) VALUES('119037'); +INSERT INTO `transmog_items` (`entry`) VALUES('119039'); +INSERT INTO `transmog_items` (`entry`) VALUES('119041'); +INSERT INTO `transmog_items` (`entry`) VALUES('119042'); +INSERT INTO `transmog_items` (`entry`) VALUES('119043'); +INSERT INTO `transmog_items` (`entry`) VALUES('119044'); +INSERT INTO `transmog_items` (`entry`) VALUES('119047'); +INSERT INTO `transmog_items` (`entry`) VALUES('119048'); +INSERT INTO `transmog_items` (`entry`) VALUES('119049'); +INSERT INTO `transmog_items` (`entry`) VALUES('119050'); +INSERT INTO `transmog_items` (`entry`) VALUES('119051'); +INSERT INTO `transmog_items` (`entry`) VALUES('119052'); +INSERT INTO `transmog_items` (`entry`) VALUES('119056'); +INSERT INTO `transmog_items` (`entry`) VALUES('119057'); +INSERT INTO `transmog_items` (`entry`) VALUES('119058'); +INSERT INTO `transmog_items` (`entry`) VALUES('119059'); +INSERT INTO `transmog_items` (`entry`) VALUES('119083'); +INSERT INTO `transmog_items` (`entry`) VALUES('119084'); +INSERT INTO `transmog_items` (`entry`) VALUES('119085'); +INSERT INTO `transmog_items` (`entry`) VALUES('119086'); +INSERT INTO `transmog_items` (`entry`) VALUES('119087'); +INSERT INTO `transmog_items` (`entry`) VALUES('119088'); +INSERT INTO `transmog_items` (`entry`) VALUES('119089'); +INSERT INTO `transmog_items` (`entry`) VALUES('119090'); +INSERT INTO `transmog_items` (`entry`) VALUES('119091'); +INSERT INTO `transmog_items` (`entry`) VALUES('119092'); +INSERT INTO `transmog_items` (`entry`) VALUES('119093'); +INSERT INTO `transmog_items` (`entry`) VALUES('119094'); +INSERT INTO `transmog_items` (`entry`) VALUES('119099'); +INSERT INTO `transmog_items` (`entry`) VALUES('119100'); +INSERT INTO `transmog_items` (`entry`) VALUES('119104'); +INSERT INTO `transmog_items` (`entry`) VALUES('119105'); +INSERT INTO `transmog_items` (`entry`) VALUES('119106'); +INSERT INTO `transmog_items` (`entry`) VALUES('119107'); +INSERT INTO `transmog_items` (`entry`) VALUES('119108'); +INSERT INTO `transmog_items` (`entry`) VALUES('119111'); +INSERT INTO `transmog_items` (`entry`) VALUES('119112'); +INSERT INTO `transmog_items` (`entry`) VALUES('119113'); +INSERT INTO `transmog_items` (`entry`) VALUES('119114'); +INSERT INTO `transmog_items` (`entry`) VALUES('119116'); +INSERT INTO `transmog_items` (`entry`) VALUES('119117'); +INSERT INTO `transmog_items` (`entry`) VALUES('119118'); +INSERT INTO `transmog_items` (`entry`) VALUES('119119'); +INSERT INTO `transmog_items` (`entry`) VALUES('119121'); +INSERT INTO `transmog_items` (`entry`) VALUES('119123'); +INSERT INTO `transmog_items` (`entry`) VALUES('119124'); +INSERT INTO `transmog_items` (`entry`) VALUES('119125'); +INSERT INTO `transmog_items` (`entry`) VALUES('119126'); +INSERT INTO `transmog_items` (`entry`) VALUES('119127'); +INSERT INTO `transmog_items` (`entry`) VALUES('119128'); +INSERT INTO `transmog_items` (`entry`) VALUES('119129'); +INSERT INTO `transmog_items` (`entry`) VALUES('119130'); +INSERT INTO `transmog_items` (`entry`) VALUES('119131'); +INSERT INTO `transmog_items` (`entry`) VALUES('119132'); +INSERT INTO `transmog_items` (`entry`) VALUES('119133'); +INSERT INTO `transmog_items` (`entry`) VALUES('119134'); +INSERT INTO `transmog_items` (`entry`) VALUES('119135'); +INSERT INTO `transmog_items` (`entry`) VALUES('119136'); +INSERT INTO `transmog_items` (`entry`) VALUES('119137'); +INSERT INTO `transmog_items` (`entry`) VALUES('119139'); +INSERT INTO `transmog_items` (`entry`) VALUES('119143'); +INSERT INTO `transmog_items` (`entry`) VALUES('119144'); +INSERT INTO `transmog_items` (`entry`) VALUES('119145'); +INSERT INTO `transmog_items` (`entry`) VALUES('119146'); +INSERT INTO `transmog_items` (`entry`) VALUES('119148'); +INSERT INTO `transmog_items` (`entry`) VALUES('119149'); +INSERT INTO `transmog_items` (`entry`) VALUES('119156'); +INSERT INTO `transmog_items` (`entry`) VALUES('119157'); +INSERT INTO `transmog_items` (`entry`) VALUES('119162'); +INSERT INTO `transmog_items` (`entry`) VALUES('119163'); +INSERT INTO `transmog_items` (`entry`) VALUES('119164'); +INSERT INTO `transmog_items` (`entry`) VALUES('119165'); +INSERT INTO `transmog_items` (`entry`) VALUES('119166'); +INSERT INTO `transmog_items` (`entry`) VALUES('119167'); +INSERT INTO `transmog_items` (`entry`) VALUES('119169'); +INSERT INTO `transmog_items` (`entry`) VALUES('119170'); +INSERT INTO `transmog_items` (`entry`) VALUES('119292'); +INSERT INTO `transmog_items` (`entry`) VALUES('119293'); +INSERT INTO `transmog_items` (`entry`) VALUES('119321'); +INSERT INTO `transmog_items` (`entry`) VALUES('119324'); +INSERT INTO `transmog_items` (`entry`) VALUES('119335'); +INSERT INTO `transmog_items` (`entry`) VALUES('119346'); +INSERT INTO `transmog_items` (`entry`) VALUES('119347'); +INSERT INTO `transmog_items` (`entry`) VALUES('119348'); +INSERT INTO `transmog_items` (`entry`) VALUES('119349'); +INSERT INTO `transmog_items` (`entry`) VALUES('119350'); +INSERT INTO `transmog_items` (`entry`) VALUES('119353'); +INSERT INTO `transmog_items` (`entry`) VALUES('119354'); +INSERT INTO `transmog_items` (`entry`) VALUES('119360'); +INSERT INTO `transmog_items` (`entry`) VALUES('119361'); +INSERT INTO `transmog_items` (`entry`) VALUES('119365'); +INSERT INTO `transmog_items` (`entry`) VALUES('119367'); +INSERT INTO `transmog_items` (`entry`) VALUES('119368'); +INSERT INTO `transmog_items` (`entry`) VALUES('119369'); +INSERT INTO `transmog_items` (`entry`) VALUES('119370'); +INSERT INTO `transmog_items` (`entry`) VALUES('119372'); +INSERT INTO `transmog_items` (`entry`) VALUES('119373'); +INSERT INTO `transmog_items` (`entry`) VALUES('119374'); +INSERT INTO `transmog_items` (`entry`) VALUES('119375'); +INSERT INTO `transmog_items` (`entry`) VALUES('119378'); +INSERT INTO `transmog_items` (`entry`) VALUES('119380'); +INSERT INTO `transmog_items` (`entry`) VALUES('119381'); +INSERT INTO `transmog_items` (`entry`) VALUES('119385'); +INSERT INTO `transmog_items` (`entry`) VALUES('119386'); +INSERT INTO `transmog_items` (`entry`) VALUES('119387'); +INSERT INTO `transmog_items` (`entry`) VALUES('119388'); +INSERT INTO `transmog_items` (`entry`) VALUES('119389'); +INSERT INTO `transmog_items` (`entry`) VALUES('119390'); +INSERT INTO `transmog_items` (`entry`) VALUES('119391'); +INSERT INTO `transmog_items` (`entry`) VALUES('119392'); +INSERT INTO `transmog_items` (`entry`) VALUES('119393'); +INSERT INTO `transmog_items` (`entry`) VALUES('119394'); +INSERT INTO `transmog_items` (`entry`) VALUES('119396'); +INSERT INTO `transmog_items` (`entry`) VALUES('119398'); +INSERT INTO `transmog_items` (`entry`) VALUES('119399'); +INSERT INTO `transmog_items` (`entry`) VALUES('119400'); +INSERT INTO `transmog_items` (`entry`) VALUES('119401'); +INSERT INTO `transmog_items` (`entry`) VALUES('119402'); +INSERT INTO `transmog_items` (`entry`) VALUES('119405'); +INSERT INTO `transmog_items` (`entry`) VALUES('119407'); +INSERT INTO `transmog_items` (`entry`) VALUES('119430'); +INSERT INTO `transmog_items` (`entry`) VALUES('119433'); +INSERT INTO `transmog_items` (`entry`) VALUES('119435'); +INSERT INTO `transmog_items` (`entry`) VALUES('119436'); +INSERT INTO `transmog_items` (`entry`) VALUES('119437'); +INSERT INTO `transmog_items` (`entry`) VALUES('119438'); +INSERT INTO `transmog_items` (`entry`) VALUES('119439'); +INSERT INTO `transmog_items` (`entry`) VALUES('119507'); +INSERT INTO `transmog_items` (`entry`) VALUES('119508'); +INSERT INTO `transmog_items` (`entry`) VALUES('119509'); +INSERT INTO `transmog_items` (`entry`) VALUES('119526'); +INSERT INTO `transmog_items` (`entry`) VALUES('119527'); +INSERT INTO `transmog_items` (`entry`) VALUES('119528'); +INSERT INTO `transmog_items` (`entry`) VALUES('119529'); +INSERT INTO `transmog_items` (`entry`) VALUES('119530'); +INSERT INTO `transmog_items` (`entry`) VALUES('119531'); +INSERT INTO `transmog_items` (`entry`) VALUES('119532'); +INSERT INTO `transmog_items` (`entry`) VALUES('119533'); +INSERT INTO `transmog_items` (`entry`) VALUES('119542'); +INSERT INTO `transmog_items` (`entry`) VALUES('119543'); +INSERT INTO `transmog_items` (`entry`) VALUES('119544'); +INSERT INTO `transmog_items` (`entry`) VALUES('119545'); +INSERT INTO `transmog_items` (`entry`) VALUES('119546'); +INSERT INTO `transmog_items` (`entry`) VALUES('119547'); +INSERT INTO `transmog_items` (`entry`) VALUES('119548'); +INSERT INTO `transmog_items` (`entry`) VALUES('119549'); +INSERT INTO `transmog_items` (`entry`) VALUES('119558'); +INSERT INTO `transmog_items` (`entry`) VALUES('119559'); +INSERT INTO `transmog_items` (`entry`) VALUES('119560'); +INSERT INTO `transmog_items` (`entry`) VALUES('119561'); +INSERT INTO `transmog_items` (`entry`) VALUES('119562'); +INSERT INTO `transmog_items` (`entry`) VALUES('119563'); +INSERT INTO `transmog_items` (`entry`) VALUES('119564'); +INSERT INTO `transmog_items` (`entry`) VALUES('119565'); +INSERT INTO `transmog_items` (`entry`) VALUES('119578'); +INSERT INTO `transmog_items` (`entry`) VALUES('119580'); +INSERT INTO `transmog_items` (`entry`) VALUES('119581'); +INSERT INTO `transmog_items` (`entry`) VALUES('119582'); +INSERT INTO `transmog_items` (`entry`) VALUES('119583'); +INSERT INTO `transmog_items` (`entry`) VALUES('119584'); +INSERT INTO `transmog_items` (`entry`) VALUES('119587'); +INSERT INTO `transmog_items` (`entry`) VALUES('119589'); +INSERT INTO `transmog_items` (`entry`) VALUES('119590'); +INSERT INTO `transmog_items` (`entry`) VALUES('119595'); +INSERT INTO `transmog_items` (`entry`) VALUES('119596'); +INSERT INTO `transmog_items` (`entry`) VALUES('119597'); +INSERT INTO `transmog_items` (`entry`) VALUES('119682'); +INSERT INTO `transmog_items` (`entry`) VALUES('119683'); +INSERT INTO `transmog_items` (`entry`) VALUES('119684'); +INSERT INTO `transmog_items` (`entry`) VALUES('119685'); +INSERT INTO `transmog_items` (`entry`) VALUES('119686'); +INSERT INTO `transmog_items` (`entry`) VALUES('119687'); +INSERT INTO `transmog_items` (`entry`) VALUES('119688'); +INSERT INTO `transmog_items` (`entry`) VALUES('119689'); +INSERT INTO `transmog_items` (`entry`) VALUES('119690'); +INSERT INTO `transmog_items` (`entry`) VALUES('119691'); +INSERT INTO `transmog_items` (`entry`) VALUES('119692'); +INSERT INTO `transmog_items` (`entry`) VALUES('119693'); +INSERT INTO `transmog_items` (`entry`) VALUES('119694'); +INSERT INTO `transmog_items` (`entry`) VALUES('119695'); +INSERT INTO `transmog_items` (`entry`) VALUES('119808'); +INSERT INTO `transmog_items` (`entry`) VALUES('119822'); +INSERT INTO `transmog_items` (`entry`) VALUES('119823'); +INSERT INTO `transmog_items` (`entry`) VALUES('119824'); +INSERT INTO `transmog_items` (`entry`) VALUES('119825'); +INSERT INTO `transmog_items` (`entry`) VALUES('119826'); +INSERT INTO `transmog_items` (`entry`) VALUES('119827'); +INSERT INTO `transmog_items` (`entry`) VALUES('119828'); +INSERT INTO `transmog_items` (`entry`) VALUES('119829'); +INSERT INTO `transmog_items` (`entry`) VALUES('119830'); +INSERT INTO `transmog_items` (`entry`) VALUES('119831'); +INSERT INTO `transmog_items` (`entry`) VALUES('119832'); +INSERT INTO `transmog_items` (`entry`) VALUES('119833'); +INSERT INTO `transmog_items` (`entry`) VALUES('119834'); +INSERT INTO `transmog_items` (`entry`) VALUES('119835'); +INSERT INTO `transmog_items` (`entry`) VALUES('119836'); +INSERT INTO `transmog_items` (`entry`) VALUES('119838'); +INSERT INTO `transmog_items` (`entry`) VALUES('119839'); +INSERT INTO `transmog_items` (`entry`) VALUES('119840'); +INSERT INTO `transmog_items` (`entry`) VALUES('119841'); +INSERT INTO `transmog_items` (`entry`) VALUES('119842'); +INSERT INTO `transmog_items` (`entry`) VALUES('119843'); +INSERT INTO `transmog_items` (`entry`) VALUES('119845'); +INSERT INTO `transmog_items` (`entry`) VALUES('119846'); +INSERT INTO `transmog_items` (`entry`) VALUES('119848'); +INSERT INTO `transmog_items` (`entry`) VALUES('119849'); +INSERT INTO `transmog_items` (`entry`) VALUES('119853'); +INSERT INTO `transmog_items` (`entry`) VALUES('119855'); +INSERT INTO `transmog_items` (`entry`) VALUES('119857'); +INSERT INTO `transmog_items` (`entry`) VALUES('119859'); +INSERT INTO `transmog_items` (`entry`) VALUES('119861'); +INSERT INTO `transmog_items` (`entry`) VALUES('119862'); +INSERT INTO `transmog_items` (`entry`) VALUES('119869'); +INSERT INTO `transmog_items` (`entry`) VALUES('119870'); +INSERT INTO `transmog_items` (`entry`) VALUES('119874'); +INSERT INTO `transmog_items` (`entry`) VALUES('119875'); +INSERT INTO `transmog_items` (`entry`) VALUES('119877'); +INSERT INTO `transmog_items` (`entry`) VALUES('119878'); +INSERT INTO `transmog_items` (`entry`) VALUES('119886'); +INSERT INTO `transmog_items` (`entry`) VALUES('119887'); +INSERT INTO `transmog_items` (`entry`) VALUES('119888'); +INSERT INTO `transmog_items` (`entry`) VALUES('119889'); +INSERT INTO `transmog_items` (`entry`) VALUES('119890'); +INSERT INTO `transmog_items` (`entry`) VALUES('119892'); +INSERT INTO `transmog_items` (`entry`) VALUES('119894'); +INSERT INTO `transmog_items` (`entry`) VALUES('119895'); +INSERT INTO `transmog_items` (`entry`) VALUES('119896'); +INSERT INTO `transmog_items` (`entry`) VALUES('119897'); +INSERT INTO `transmog_items` (`entry`) VALUES('119899'); +INSERT INTO `transmog_items` (`entry`) VALUES('119900'); +INSERT INTO `transmog_items` (`entry`) VALUES('119903'); +INSERT INTO `transmog_items` (`entry`) VALUES('119904'); +INSERT INTO `transmog_items` (`entry`) VALUES('119906'); +INSERT INTO `transmog_items` (`entry`) VALUES('119907'); +INSERT INTO `transmog_items` (`entry`) VALUES('119908'); +INSERT INTO `transmog_items` (`entry`) VALUES('119910'); +INSERT INTO `transmog_items` (`entry`) VALUES('119913'); +INSERT INTO `transmog_items` (`entry`) VALUES('119915'); +INSERT INTO `transmog_items` (`entry`) VALUES('119919'); +INSERT INTO `transmog_items` (`entry`) VALUES('119927'); +INSERT INTO `transmog_items` (`entry`) VALUES('119928'); +INSERT INTO `transmog_items` (`entry`) VALUES('119929'); +INSERT INTO `transmog_items` (`entry`) VALUES('119945'); +INSERT INTO `transmog_items` (`entry`) VALUES('119946'); +INSERT INTO `transmog_items` (`entry`) VALUES('119961'); +INSERT INTO `transmog_items` (`entry`) VALUES('119962'); +INSERT INTO `transmog_items` (`entry`) VALUES('119963'); +INSERT INTO `transmog_items` (`entry`) VALUES('119965'); +INSERT INTO `transmog_items` (`entry`) VALUES('119967'); +INSERT INTO `transmog_items` (`entry`) VALUES('119969'); +INSERT INTO `transmog_items` (`entry`) VALUES('119970'); +INSERT INTO `transmog_items` (`entry`) VALUES('119972'); +INSERT INTO `transmog_items` (`entry`) VALUES('119982'); +INSERT INTO `transmog_items` (`entry`) VALUES('119984'); +INSERT INTO `transmog_items` (`entry`) VALUES('119986'); +INSERT INTO `transmog_items` (`entry`) VALUES('119993'); +INSERT INTO `transmog_items` (`entry`) VALUES('119998'); +INSERT INTO `transmog_items` (`entry`) VALUES('119999'); +INSERT INTO `transmog_items` (`entry`) VALUES('120003'); +INSERT INTO `transmog_items` (`entry`) VALUES('120005'); +INSERT INTO `transmog_items` (`entry`) VALUES('120032'); +INSERT INTO `transmog_items` (`entry`) VALUES('120033'); +INSERT INTO `transmog_items` (`entry`) VALUES('120034'); +INSERT INTO `transmog_items` (`entry`) VALUES('120035'); +INSERT INTO `transmog_items` (`entry`) VALUES('120038'); +INSERT INTO `transmog_items` (`entry`) VALUES('120039'); +INSERT INTO `transmog_items` (`entry`) VALUES('120041'); +INSERT INTO `transmog_items` (`entry`) VALUES('120042'); +INSERT INTO `transmog_items` (`entry`) VALUES('120043'); +INSERT INTO `transmog_items` (`entry`) VALUES('120044'); +INSERT INTO `transmog_items` (`entry`) VALUES('120045'); +INSERT INTO `transmog_items` (`entry`) VALUES('120046'); +INSERT INTO `transmog_items` (`entry`) VALUES('120047'); +INSERT INTO `transmog_items` (`entry`) VALUES('120048'); +INSERT INTO `transmog_items` (`entry`) VALUES('120049'); +INSERT INTO `transmog_items` (`entry`) VALUES('120050'); +INSERT INTO `transmog_items` (`entry`) VALUES('120051'); +INSERT INTO `transmog_items` (`entry`) VALUES('120052'); +INSERT INTO `transmog_items` (`entry`) VALUES('120053'); +INSERT INTO `transmog_items` (`entry`) VALUES('120054'); +INSERT INTO `transmog_items` (`entry`) VALUES('120055'); +INSERT INTO `transmog_items` (`entry`) VALUES('120056'); +INSERT INTO `transmog_items` (`entry`) VALUES('120057'); +INSERT INTO `transmog_items` (`entry`) VALUES('120058'); +INSERT INTO `transmog_items` (`entry`) VALUES('120059'); +INSERT INTO `transmog_items` (`entry`) VALUES('120060'); +INSERT INTO `transmog_items` (`entry`) VALUES('120061'); +INSERT INTO `transmog_items` (`entry`) VALUES('120068'); +INSERT INTO `transmog_items` (`entry`) VALUES('120070'); +INSERT INTO `transmog_items` (`entry`) VALUES('120073'); +INSERT INTO `transmog_items` (`entry`) VALUES('120082'); +INSERT INTO `transmog_items` (`entry`) VALUES('120083'); +INSERT INTO `transmog_items` (`entry`) VALUES('120088'); +INSERT INTO `transmog_items` (`entry`) VALUES('120089'); +INSERT INTO `transmog_items` (`entry`) VALUES('120090'); +INSERT INTO `transmog_items` (`entry`) VALUES('120091'); +INSERT INTO `transmog_items` (`entry`) VALUES('120092'); +INSERT INTO `transmog_items` (`entry`) VALUES('120093'); +INSERT INTO `transmog_items` (`entry`) VALUES('120094'); +INSERT INTO `transmog_items` (`entry`) VALUES('120095'); +INSERT INTO `transmog_items` (`entry`) VALUES('120096'); +INSERT INTO `transmog_items` (`entry`) VALUES('120097'); +INSERT INTO `transmog_items` (`entry`) VALUES('120098'); +INSERT INTO `transmog_items` (`entry`) VALUES('120099'); +INSERT INTO `transmog_items` (`entry`) VALUES('120100'); +INSERT INTO `transmog_items` (`entry`) VALUES('120101'); +INSERT INTO `transmog_items` (`entry`) VALUES('120102'); +INSERT INTO `transmog_items` (`entry`) VALUES('120103'); +INSERT INTO `transmog_items` (`entry`) VALUES('120104'); +INSERT INTO `transmog_items` (`entry`) VALUES('120105'); +INSERT INTO `transmog_items` (`entry`) VALUES('120106'); +INSERT INTO `transmog_items` (`entry`) VALUES('120107'); +INSERT INTO `transmog_items` (`entry`) VALUES('120108'); +INSERT INTO `transmog_items` (`entry`) VALUES('120109'); +INSERT INTO `transmog_items` (`entry`) VALUES('120110'); +INSERT INTO `transmog_items` (`entry`) VALUES('120111'); +INSERT INTO `transmog_items` (`entry`) VALUES('120112'); +INSERT INTO `transmog_items` (`entry`) VALUES('120113'); +INSERT INTO `transmog_items` (`entry`) VALUES('120114'); +INSERT INTO `transmog_items` (`entry`) VALUES('120115'); +INSERT INTO `transmog_items` (`entry`) VALUES('120116'); +INSERT INTO `transmog_items` (`entry`) VALUES('120117'); +INSERT INTO `transmog_items` (`entry`) VALUES('120118'); +INSERT INTO `transmog_items` (`entry`) VALUES('120119'); +INSERT INTO `transmog_items` (`entry`) VALUES('120120'); +INSERT INTO `transmog_items` (`entry`) VALUES('120121'); +INSERT INTO `transmog_items` (`entry`) VALUES('120122'); +INSERT INTO `transmog_items` (`entry`) VALUES('120123'); +INSERT INTO `transmog_items` (`entry`) VALUES('120124'); +INSERT INTO `transmog_items` (`entry`) VALUES('120125'); +INSERT INTO `transmog_items` (`entry`) VALUES('120126'); +INSERT INTO `transmog_items` (`entry`) VALUES('120127'); +INSERT INTO `transmog_items` (`entry`) VALUES('120128'); +INSERT INTO `transmog_items` (`entry`) VALUES('120129'); +INSERT INTO `transmog_items` (`entry`) VALUES('120134'); +INSERT INTO `transmog_items` (`entry`) VALUES('120150'); +INSERT INTO `transmog_items` (`entry`) VALUES('120151'); +INSERT INTO `transmog_items` (`entry`) VALUES('120152'); +INSERT INTO `transmog_items` (`entry`) VALUES('120153'); +INSERT INTO `transmog_items` (`entry`) VALUES('120154'); +INSERT INTO `transmog_items` (`entry`) VALUES('120155'); +INSERT INTO `transmog_items` (`entry`) VALUES('120156'); +INSERT INTO `transmog_items` (`entry`) VALUES('120157'); +INSERT INTO `transmog_items` (`entry`) VALUES('120158'); +INSERT INTO `transmog_items` (`entry`) VALUES('120159'); +INSERT INTO `transmog_items` (`entry`) VALUES('120160'); +INSERT INTO `transmog_items` (`entry`) VALUES('120161'); +INSERT INTO `transmog_items` (`entry`) VALUES('120162'); +INSERT INTO `transmog_items` (`entry`) VALUES('120163'); +INSERT INTO `transmog_items` (`entry`) VALUES('120164'); +INSERT INTO `transmog_items` (`entry`) VALUES('120165'); +INSERT INTO `transmog_items` (`entry`) VALUES('120166'); +INSERT INTO `transmog_items` (`entry`) VALUES('120167'); +INSERT INTO `transmog_items` (`entry`) VALUES('120168'); +INSERT INTO `transmog_items` (`entry`) VALUES('120169'); +INSERT INTO `transmog_items` (`entry`) VALUES('120170'); +INSERT INTO `transmog_items` (`entry`) VALUES('120171'); +INSERT INTO `transmog_items` (`entry`) VALUES('120172'); +INSERT INTO `transmog_items` (`entry`) VALUES('120173'); +INSERT INTO `transmog_items` (`entry`) VALUES('120174'); +INSERT INTO `transmog_items` (`entry`) VALUES('120175'); +INSERT INTO `transmog_items` (`entry`) VALUES('120176'); +INSERT INTO `transmog_items` (`entry`) VALUES('120177'); +INSERT INTO `transmog_items` (`entry`) VALUES('120178'); +INSERT INTO `transmog_items` (`entry`) VALUES('120179'); +INSERT INTO `transmog_items` (`entry`) VALUES('120180'); +INSERT INTO `transmog_items` (`entry`) VALUES('120181'); +INSERT INTO `transmog_items` (`entry`) VALUES('120182'); +INSERT INTO `transmog_items` (`entry`) VALUES('120183'); +INSERT INTO `transmog_items` (`entry`) VALUES('120184'); +INSERT INTO `transmog_items` (`entry`) VALUES('120185'); +INSERT INTO `transmog_items` (`entry`) VALUES('120186'); +INSERT INTO `transmog_items` (`entry`) VALUES('120187'); +INSERT INTO `transmog_items` (`entry`) VALUES('120188'); +INSERT INTO `transmog_items` (`entry`) VALUES('120189'); +INSERT INTO `transmog_items` (`entry`) VALUES('120190'); +INSERT INTO `transmog_items` (`entry`) VALUES('120191'); +INSERT INTO `transmog_items` (`entry`) VALUES('120192'); +INSERT INTO `transmog_items` (`entry`) VALUES('120193'); +INSERT INTO `transmog_items` (`entry`) VALUES('120194'); +INSERT INTO `transmog_items` (`entry`) VALUES('120195'); +INSERT INTO `transmog_items` (`entry`) VALUES('120196'); +INSERT INTO `transmog_items` (`entry`) VALUES('120197'); +INSERT INTO `transmog_items` (`entry`) VALUES('120198'); +INSERT INTO `transmog_items` (`entry`) VALUES('120199'); +INSERT INTO `transmog_items` (`entry`) VALUES('120200'); +INSERT INTO `transmog_items` (`entry`) VALUES('120201'); +INSERT INTO `transmog_items` (`entry`) VALUES('120202'); +INSERT INTO `transmog_items` (`entry`) VALUES('120203'); +INSERT INTO `transmog_items` (`entry`) VALUES('120204'); +INSERT INTO `transmog_items` (`entry`) VALUES('120205'); +INSERT INTO `transmog_items` (`entry`) VALUES('120206'); +INSERT INTO `transmog_items` (`entry`) VALUES('120207'); +INSERT INTO `transmog_items` (`entry`) VALUES('120208'); +INSERT INTO `transmog_items` (`entry`) VALUES('120209'); +INSERT INTO `transmog_items` (`entry`) VALUES('120210'); +INSERT INTO `transmog_items` (`entry`) VALUES('120211'); +INSERT INTO `transmog_items` (`entry`) VALUES('120212'); +INSERT INTO `transmog_items` (`entry`) VALUES('120213'); +INSERT INTO `transmog_items` (`entry`) VALUES('120214'); +INSERT INTO `transmog_items` (`entry`) VALUES('120215'); +INSERT INTO `transmog_items` (`entry`) VALUES('120216'); +INSERT INTO `transmog_items` (`entry`) VALUES('120217'); +INSERT INTO `transmog_items` (`entry`) VALUES('120218'); +INSERT INTO `transmog_items` (`entry`) VALUES('120219'); +INSERT INTO `transmog_items` (`entry`) VALUES('120255'); +INSERT INTO `transmog_items` (`entry`) VALUES('120257'); +INSERT INTO `transmog_items` (`entry`) VALUES('120259'); +INSERT INTO `transmog_items` (`entry`) VALUES('120260'); +INSERT INTO `transmog_items` (`entry`) VALUES('120261'); +INSERT INTO `transmog_items` (`entry`) VALUES('120262'); +INSERT INTO `transmog_items` (`entry`) VALUES('120263'); +INSERT INTO `transmog_items` (`entry`) VALUES('120264'); +INSERT INTO `transmog_items` (`entry`) VALUES('120265'); +INSERT INTO `transmog_items` (`entry`) VALUES('120266'); +INSERT INTO `transmog_items` (`entry`) VALUES('120295'); +INSERT INTO `transmog_items` (`entry`) VALUES('120296'); +INSERT INTO `transmog_items` (`entry`) VALUES('120368'); +INSERT INTO `transmog_items` (`entry`) VALUES('120369'); +INSERT INTO `transmog_items` (`entry`) VALUES('120380'); +INSERT INTO `transmog_items` (`entry`) VALUES('120406'); +INSERT INTO `transmog_items` (`entry`) VALUES('120407'); +INSERT INTO `transmog_items` (`entry`) VALUES('120408'); +INSERT INTO `transmog_items` (`entry`) VALUES('120427'); +INSERT INTO `transmog_items` (`entry`) VALUES('120428'); +INSERT INTO `transmog_items` (`entry`) VALUES('120437'); +INSERT INTO `transmog_items` (`entry`) VALUES('120438'); +INSERT INTO `transmog_items` (`entry`) VALUES('120441'); +INSERT INTO `transmog_items` (`entry`) VALUES('120443'); +INSERT INTO `transmog_items` (`entry`) VALUES('120476'); +INSERT INTO `transmog_items` (`entry`) VALUES('120477'); +INSERT INTO `transmog_items` (`entry`) VALUES('120478'); +INSERT INTO `transmog_items` (`entry`) VALUES('120479'); +INSERT INTO `transmog_items` (`entry`) VALUES('120480'); +INSERT INTO `transmog_items` (`entry`) VALUES('120481'); +INSERT INTO `transmog_items` (`entry`) VALUES('120488'); +INSERT INTO `transmog_items` (`entry`) VALUES('120502'); +INSERT INTO `transmog_items` (`entry`) VALUES('120517'); +INSERT INTO `transmog_items` (`entry`) VALUES('120521'); +INSERT INTO `transmog_items` (`entry`) VALUES('120524'); +INSERT INTO `transmog_items` (`entry`) VALUES('120530'); +INSERT INTO `transmog_items` (`entry`) VALUES('120537'); +INSERT INTO `transmog_items` (`entry`) VALUES('120538'); +INSERT INTO `transmog_items` (`entry`) VALUES('120539'); +INSERT INTO `transmog_items` (`entry`) VALUES('120549'); +INSERT INTO `transmog_items` (`entry`) VALUES('120550'); +INSERT INTO `transmog_items` (`entry`) VALUES('120551'); +INSERT INTO `transmog_items` (`entry`) VALUES('120575'); +INSERT INTO `transmog_items` (`entry`) VALUES('120578'); +INSERT INTO `transmog_items` (`entry`) VALUES('120579'); +INSERT INTO `transmog_items` (`entry`) VALUES('120580'); +INSERT INTO `transmog_items` (`entry`) VALUES('120599'); +INSERT INTO `transmog_items` (`entry`) VALUES('120615'); +INSERT INTO `transmog_items` (`entry`) VALUES('120616'); +INSERT INTO `transmog_items` (`entry`) VALUES('120617'); +INSERT INTO `transmog_items` (`entry`) VALUES('120618'); +INSERT INTO `transmog_items` (`entry`) VALUES('120619'); +INSERT INTO `transmog_items` (`entry`) VALUES('120621'); +INSERT INTO `transmog_items` (`entry`) VALUES('120623'); +INSERT INTO `transmog_items` (`entry`) VALUES('120625'); +INSERT INTO `transmog_items` (`entry`) VALUES('120626'); +INSERT INTO `transmog_items` (`entry`) VALUES('120627'); +INSERT INTO `transmog_items` (`entry`) VALUES('120628'); +INSERT INTO `transmog_items` (`entry`) VALUES('120629'); +INSERT INTO `transmog_items` (`entry`) VALUES('120630'); +INSERT INTO `transmog_items` (`entry`) VALUES('120631'); +INSERT INTO `transmog_items` (`entry`) VALUES('120633'); +INSERT INTO `transmog_items` (`entry`) VALUES('120634'); +INSERT INTO `transmog_items` (`entry`) VALUES('120635'); +INSERT INTO `transmog_items` (`entry`) VALUES('120637'); +INSERT INTO `transmog_items` (`entry`) VALUES('120638'); +INSERT INTO `transmog_items` (`entry`) VALUES('120639'); +INSERT INTO `transmog_items` (`entry`) VALUES('120640'); +INSERT INTO `transmog_items` (`entry`) VALUES('120641'); +INSERT INTO `transmog_items` (`entry`) VALUES('120642'); +INSERT INTO `transmog_items` (`entry`) VALUES('120643'); +INSERT INTO `transmog_items` (`entry`) VALUES('120646'); +INSERT INTO `transmog_items` (`entry`) VALUES('120647'); +INSERT INTO `transmog_items` (`entry`) VALUES('120648'); +INSERT INTO `transmog_items` (`entry`) VALUES('120650'); +INSERT INTO `transmog_items` (`entry`) VALUES('120652'); +INSERT INTO `transmog_items` (`entry`) VALUES('120653'); +INSERT INTO `transmog_items` (`entry`) VALUES('120655'); +INSERT INTO `transmog_items` (`entry`) VALUES('120656'); +INSERT INTO `transmog_items` (`entry`) VALUES('120657'); +INSERT INTO `transmog_items` (`entry`) VALUES('120658'); +INSERT INTO `transmog_items` (`entry`) VALUES('120659'); +INSERT INTO `transmog_items` (`entry`) VALUES('120660'); +INSERT INTO `transmog_items` (`entry`) VALUES('120661'); +INSERT INTO `transmog_items` (`entry`) VALUES('120662'); +INSERT INTO `transmog_items` (`entry`) VALUES('120663'); +INSERT INTO `transmog_items` (`entry`) VALUES('120664'); +INSERT INTO `transmog_items` (`entry`) VALUES('120665'); +INSERT INTO `transmog_items` (`entry`) VALUES('120666'); +INSERT INTO `transmog_items` (`entry`) VALUES('120667'); +INSERT INTO `transmog_items` (`entry`) VALUES('120668'); +INSERT INTO `transmog_items` (`entry`) VALUES('120670'); +INSERT INTO `transmog_items` (`entry`) VALUES('120671'); +INSERT INTO `transmog_items` (`entry`) VALUES('120672'); +INSERT INTO `transmog_items` (`entry`) VALUES('120673'); +INSERT INTO `transmog_items` (`entry`) VALUES('120674'); +INSERT INTO `transmog_items` (`entry`) VALUES('120680'); +INSERT INTO `transmog_items` (`entry`) VALUES('120681'); +INSERT INTO `transmog_items` (`entry`) VALUES('120683'); +INSERT INTO `transmog_items` (`entry`) VALUES('120684'); +INSERT INTO `transmog_items` (`entry`) VALUES('120686'); +INSERT INTO `transmog_items` (`entry`) VALUES('120687'); +INSERT INTO `transmog_items` (`entry`) VALUES('120688'); +INSERT INTO `transmog_items` (`entry`) VALUES('120689'); +INSERT INTO `transmog_items` (`entry`) VALUES('120690'); +INSERT INTO `transmog_items` (`entry`) VALUES('120691'); +INSERT INTO `transmog_items` (`entry`) VALUES('120693'); +INSERT INTO `transmog_items` (`entry`) VALUES('120697'); +INSERT INTO `transmog_items` (`entry`) VALUES('120699'); +INSERT INTO `transmog_items` (`entry`) VALUES('120700'); +INSERT INTO `transmog_items` (`entry`) VALUES('120701'); +INSERT INTO `transmog_items` (`entry`) VALUES('120702'); +INSERT INTO `transmog_items` (`entry`) VALUES('120703'); +INSERT INTO `transmog_items` (`entry`) VALUES('120704'); +INSERT INTO `transmog_items` (`entry`) VALUES('120705'); +INSERT INTO `transmog_items` (`entry`) VALUES('120706'); +INSERT INTO `transmog_items` (`entry`) VALUES('120707'); +INSERT INTO `transmog_items` (`entry`) VALUES('120710'); +INSERT INTO `transmog_items` (`entry`) VALUES('120711'); +INSERT INTO `transmog_items` (`entry`) VALUES('120712'); +INSERT INTO `transmog_items` (`entry`) VALUES('120713'); +INSERT INTO `transmog_items` (`entry`) VALUES('120714'); +INSERT INTO `transmog_items` (`entry`) VALUES('120715'); +INSERT INTO `transmog_items` (`entry`) VALUES('120716'); +INSERT INTO `transmog_items` (`entry`) VALUES('120717'); +INSERT INTO `transmog_items` (`entry`) VALUES('120720'); +INSERT INTO `transmog_items` (`entry`) VALUES('120722'); +INSERT INTO `transmog_items` (`entry`) VALUES('120832'); +INSERT INTO `transmog_items` (`entry`) VALUES('120836'); +INSERT INTO `transmog_items` (`entry`) VALUES('120838'); +INSERT INTO `transmog_items` (`entry`) VALUES('120840'); +INSERT INTO `transmog_items` (`entry`) VALUES('120841'); +INSERT INTO `transmog_items` (`entry`) VALUES('120851'); +INSERT INTO `transmog_items` (`entry`) VALUES('120852'); +INSERT INTO `transmog_items` (`entry`) VALUES('120891'); +INSERT INTO `transmog_items` (`entry`) VALUES('120892'); +INSERT INTO `transmog_items` (`entry`) VALUES('120893'); +INSERT INTO `transmog_items` (`entry`) VALUES('120894'); +INSERT INTO `transmog_items` (`entry`) VALUES('120896'); +INSERT INTO `transmog_items` (`entry`) VALUES('120898'); +INSERT INTO `transmog_items` (`entry`) VALUES('120899'); +INSERT INTO `transmog_items` (`entry`) VALUES('120900'); +INSERT INTO `transmog_items` (`entry`) VALUES('120902'); +INSERT INTO `transmog_items` (`entry`) VALUES('120903'); +INSERT INTO `transmog_items` (`entry`) VALUES('120904'); +INSERT INTO `transmog_items` (`entry`) VALUES('120910'); +INSERT INTO `transmog_items` (`entry`) VALUES('120911'); +INSERT INTO `transmog_items` (`entry`) VALUES('120912'); +INSERT INTO `transmog_items` (`entry`) VALUES('120913'); +INSERT INTO `transmog_items` (`entry`) VALUES('120914'); +INSERT INTO `transmog_items` (`entry`) VALUES('120915'); +INSERT INTO `transmog_items` (`entry`) VALUES('120916'); +INSERT INTO `transmog_items` (`entry`) VALUES('120917'); +INSERT INTO `transmog_items` (`entry`) VALUES('120918'); +INSERT INTO `transmog_items` (`entry`) VALUES('120919'); +INSERT INTO `transmog_items` (`entry`) VALUES('120920'); +INSERT INTO `transmog_items` (`entry`) VALUES('120921'); +INSERT INTO `transmog_items` (`entry`) VALUES('120922'); +INSERT INTO `transmog_items` (`entry`) VALUES('120923'); +INSERT INTO `transmog_items` (`entry`) VALUES('120924'); +INSERT INTO `transmog_items` (`entry`) VALUES('120925'); +INSERT INTO `transmog_items` (`entry`) VALUES('120954'); +INSERT INTO `transmog_items` (`entry`) VALUES('120969'); +INSERT INTO `transmog_items` (`entry`) VALUES('120980'); +INSERT INTO `transmog_items` (`entry`) VALUES('120981'); +INSERT INTO `transmog_items` (`entry`) VALUES('120982'); +INSERT INTO `transmog_items` (`entry`) VALUES('120983'); +INSERT INTO `transmog_items` (`entry`) VALUES('120984'); +INSERT INTO `transmog_items` (`entry`) VALUES('120985'); +INSERT INTO `transmog_items` (`entry`) VALUES('120986'); +INSERT INTO `transmog_items` (`entry`) VALUES('120987'); +INSERT INTO `transmog_items` (`entry`) VALUES('120988'); +INSERT INTO `transmog_items` (`entry`) VALUES('120989'); +INSERT INTO `transmog_items` (`entry`) VALUES('120990'); +INSERT INTO `transmog_items` (`entry`) VALUES('120991'); +INSERT INTO `transmog_items` (`entry`) VALUES('120992'); +INSERT INTO `transmog_items` (`entry`) VALUES('120993'); +INSERT INTO `transmog_items` (`entry`) VALUES('120994'); +INSERT INTO `transmog_items` (`entry`) VALUES('120995'); +INSERT INTO `transmog_items` (`entry`) VALUES('120996'); +INSERT INTO `transmog_items` (`entry`) VALUES('120997'); +INSERT INTO `transmog_items` (`entry`) VALUES('120998'); +INSERT INTO `transmog_items` (`entry`) VALUES('120999'); +INSERT INTO `transmog_items` (`entry`) VALUES('121000'); +INSERT INTO `transmog_items` (`entry`) VALUES('121001'); +INSERT INTO `transmog_items` (`entry`) VALUES('121002'); +INSERT INTO `transmog_items` (`entry`) VALUES('121003'); +INSERT INTO `transmog_items` (`entry`) VALUES('121004'); +INSERT INTO `transmog_items` (`entry`) VALUES('121005'); +INSERT INTO `transmog_items` (`entry`) VALUES('121006'); +INSERT INTO `transmog_items` (`entry`) VALUES('121007'); +INSERT INTO `transmog_items` (`entry`) VALUES('121008'); +INSERT INTO `transmog_items` (`entry`) VALUES('121009'); +INSERT INTO `transmog_items` (`entry`) VALUES('121010'); +INSERT INTO `transmog_items` (`entry`) VALUES('121011'); +INSERT INTO `transmog_items` (`entry`) VALUES('121012'); +INSERT INTO `transmog_items` (`entry`) VALUES('121013'); +INSERT INTO `transmog_items` (`entry`) VALUES('121014'); +INSERT INTO `transmog_items` (`entry`) VALUES('121015'); +INSERT INTO `transmog_items` (`entry`) VALUES('121016'); +INSERT INTO `transmog_items` (`entry`) VALUES('121017'); +INSERT INTO `transmog_items` (`entry`) VALUES('121018'); +INSERT INTO `transmog_items` (`entry`) VALUES('121019'); +INSERT INTO `transmog_items` (`entry`) VALUES('121020'); +INSERT INTO `transmog_items` (`entry`) VALUES('121021'); +INSERT INTO `transmog_items` (`entry`) VALUES('121022'); +INSERT INTO `transmog_items` (`entry`) VALUES('121126'); +INSERT INTO `transmog_items` (`entry`) VALUES('121134'); +INSERT INTO `transmog_items` (`entry`) VALUES('121154'); +INSERT INTO `transmog_items` (`entry`) VALUES('121178'); +INSERT INTO `transmog_items` (`entry`) VALUES('121183'); +INSERT INTO `transmog_items` (`entry`) VALUES('121184'); +INSERT INTO `transmog_items` (`entry`) VALUES('121186'); +INSERT INTO `transmog_items` (`entry`) VALUES('121187'); +INSERT INTO `transmog_items` (`entry`) VALUES('121244'); +INSERT INTO `transmog_items` (`entry`) VALUES('121268'); +INSERT INTO `transmog_items` (`entry`) VALUES('121269'); +INSERT INTO `transmog_items` (`entry`) VALUES('121272'); +INSERT INTO `transmog_items` (`entry`) VALUES('121278'); +INSERT INTO `transmog_items` (`entry`) VALUES('121311'); +INSERT INTO `transmog_items` (`entry`) VALUES('121312'); +INSERT INTO `transmog_items` (`entry`) VALUES('121316'); +INSERT INTO `transmog_items` (`entry`) VALUES('121317'); +INSERT INTO `transmog_items` (`entry`) VALUES('121318'); +INSERT INTO `transmog_items` (`entry`) VALUES('121319'); +INSERT INTO `transmog_items` (`entry`) VALUES('121320'); +INSERT INTO `transmog_items` (`entry`) VALUES('121322'); +INSERT INTO `transmog_items` (`entry`) VALUES('121329'); +INSERT INTO `transmog_items` (`entry`) VALUES('121330'); +INSERT INTO `transmog_items` (`entry`) VALUES('121331'); +INSERT INTO `transmog_items` (`entry`) VALUES('121332'); +INSERT INTO `transmog_items` (`entry`) VALUES('121333'); +INSERT INTO `transmog_items` (`entry`) VALUES('121334'); +INSERT INTO `transmog_items` (`entry`) VALUES('121335'); +INSERT INTO `transmog_items` (`entry`) VALUES('121336'); +INSERT INTO `transmog_items` (`entry`) VALUES('121337'); +INSERT INTO `transmog_items` (`entry`) VALUES('121338'); +INSERT INTO `transmog_items` (`entry`) VALUES('121343'); +INSERT INTO `transmog_items` (`entry`) VALUES('121344'); +INSERT INTO `transmog_items` (`entry`) VALUES('121345'); +INSERT INTO `transmog_items` (`entry`) VALUES('121346'); +INSERT INTO `transmog_items` (`entry`) VALUES('121347'); +INSERT INTO `transmog_items` (`entry`) VALUES('121348'); +INSERT INTO `transmog_items` (`entry`) VALUES('121349'); +INSERT INTO `transmog_items` (`entry`) VALUES('121350'); +INSERT INTO `transmog_items` (`entry`) VALUES('121351'); +INSERT INTO `transmog_items` (`entry`) VALUES('121352'); +INSERT INTO `transmog_items` (`entry`) VALUES('121353'); +INSERT INTO `transmog_items` (`entry`) VALUES('121354'); +INSERT INTO `transmog_items` (`entry`) VALUES('121355'); +INSERT INTO `transmog_items` (`entry`) VALUES('121356'); +INSERT INTO `transmog_items` (`entry`) VALUES('121357'); +INSERT INTO `transmog_items` (`entry`) VALUES('121359'); +INSERT INTO `transmog_items` (`entry`) VALUES('121360'); +INSERT INTO `transmog_items` (`entry`) VALUES('121361'); +INSERT INTO `transmog_items` (`entry`) VALUES('121362'); +INSERT INTO `transmog_items` (`entry`) VALUES('121364'); +INSERT INTO `transmog_items` (`entry`) VALUES('121365'); +INSERT INTO `transmog_items` (`entry`) VALUES('121366'); +INSERT INTO `transmog_items` (`entry`) VALUES('121367'); +INSERT INTO `transmog_items` (`entry`) VALUES('121368'); +INSERT INTO `transmog_items` (`entry`) VALUES('121370'); +INSERT INTO `transmog_items` (`entry`) VALUES('121372'); +INSERT INTO `transmog_items` (`entry`) VALUES('121373'); +INSERT INTO `transmog_items` (`entry`) VALUES('121374'); +INSERT INTO `transmog_items` (`entry`) VALUES('121375'); +INSERT INTO `transmog_items` (`entry`) VALUES('121376'); +INSERT INTO `transmog_items` (`entry`) VALUES('121387'); +INSERT INTO `transmog_items` (`entry`) VALUES('121388'); +INSERT INTO `transmog_items` (`entry`) VALUES('121389'); +INSERT INTO `transmog_items` (`entry`) VALUES('121390'); +INSERT INTO `transmog_items` (`entry`) VALUES('121391'); +INSERT INTO `transmog_items` (`entry`) VALUES('121394'); +INSERT INTO `transmog_items` (`entry`) VALUES('121397'); +INSERT INTO `transmog_items` (`entry`) VALUES('121398'); +INSERT INTO `transmog_items` (`entry`) VALUES('121400'); +INSERT INTO `transmog_items` (`entry`) VALUES('121403'); +INSERT INTO `transmog_items` (`entry`) VALUES('121404'); +INSERT INTO `transmog_items` (`entry`) VALUES('121406'); +INSERT INTO `transmog_items` (`entry`) VALUES('121409'); +INSERT INTO `transmog_items` (`entry`) VALUES('121410'); +INSERT INTO `transmog_items` (`entry`) VALUES('121412'); +INSERT INTO `transmog_items` (`entry`) VALUES('121415'); +INSERT INTO `transmog_items` (`entry`) VALUES('121416'); +INSERT INTO `transmog_items` (`entry`) VALUES('121418'); +INSERT INTO `transmog_items` (`entry`) VALUES('121453'); +INSERT INTO `transmog_items` (`entry`) VALUES('121454'); +INSERT INTO `transmog_items` (`entry`) VALUES('121455'); +INSERT INTO `transmog_items` (`entry`) VALUES('121456'); +INSERT INTO `transmog_items` (`entry`) VALUES('121457'); +INSERT INTO `transmog_items` (`entry`) VALUES('121458'); +INSERT INTO `transmog_items` (`entry`) VALUES('121459'); +INSERT INTO `transmog_items` (`entry`) VALUES('121460'); +INSERT INTO `transmog_items` (`entry`) VALUES('121461'); +INSERT INTO `transmog_items` (`entry`) VALUES('121462'); +INSERT INTO `transmog_items` (`entry`) VALUES('121463'); +INSERT INTO `transmog_items` (`entry`) VALUES('121464'); +INSERT INTO `transmog_items` (`entry`) VALUES('121466'); +INSERT INTO `transmog_items` (`entry`) VALUES('121467'); +INSERT INTO `transmog_items` (`entry`) VALUES('121468'); +INSERT INTO `transmog_items` (`entry`) VALUES('121469'); +INSERT INTO `transmog_items` (`entry`) VALUES('121470'); +INSERT INTO `transmog_items` (`entry`) VALUES('121472'); +INSERT INTO `transmog_items` (`entry`) VALUES('121474'); +INSERT INTO `transmog_items` (`entry`) VALUES('121475'); +INSERT INTO `transmog_items` (`entry`) VALUES('121476'); +INSERT INTO `transmog_items` (`entry`) VALUES('121478'); +INSERT INTO `transmog_items` (`entry`) VALUES('121479'); +INSERT INTO `transmog_items` (`entry`) VALUES('121480'); +INSERT INTO `transmog_items` (`entry`) VALUES('121481'); +INSERT INTO `transmog_items` (`entry`) VALUES('121482'); +INSERT INTO `transmog_items` (`entry`) VALUES('121484'); +INSERT INTO `transmog_items` (`entry`) VALUES('121485'); +INSERT INTO `transmog_items` (`entry`) VALUES('121486'); +INSERT INTO `transmog_items` (`entry`) VALUES('121487'); +INSERT INTO `transmog_items` (`entry`) VALUES('121489'); +INSERT INTO `transmog_items` (`entry`) VALUES('121490'); +INSERT INTO `transmog_items` (`entry`) VALUES('121491'); +INSERT INTO `transmog_items` (`entry`) VALUES('121493'); +INSERT INTO `transmog_items` (`entry`) VALUES('121494'); +INSERT INTO `transmog_items` (`entry`) VALUES('121495'); +INSERT INTO `transmog_items` (`entry`) VALUES('121496'); +INSERT INTO `transmog_items` (`entry`) VALUES('121497'); +INSERT INTO `transmog_items` (`entry`) VALUES('121498'); +INSERT INTO `transmog_items` (`entry`) VALUES('121499'); +INSERT INTO `transmog_items` (`entry`) VALUES('121500'); +INSERT INTO `transmog_items` (`entry`) VALUES('121501'); +INSERT INTO `transmog_items` (`entry`) VALUES('121502'); +INSERT INTO `transmog_items` (`entry`) VALUES('121503'); +INSERT INTO `transmog_items` (`entry`) VALUES('121517'); +INSERT INTO `transmog_items` (`entry`) VALUES('121522'); +INSERT INTO `transmog_items` (`entry`) VALUES('121523'); +INSERT INTO `transmog_items` (`entry`) VALUES('121524'); +INSERT INTO `transmog_items` (`entry`) VALUES('121525'); +INSERT INTO `transmog_items` (`entry`) VALUES('121527'); +INSERT INTO `transmog_items` (`entry`) VALUES('121530'); +INSERT INTO `transmog_items` (`entry`) VALUES('121532'); +INSERT INTO `transmog_items` (`entry`) VALUES('121581'); +INSERT INTO `transmog_items` (`entry`) VALUES('121582'); +INSERT INTO `transmog_items` (`entry`) VALUES('121583'); +INSERT INTO `transmog_items` (`entry`) VALUES('121584'); +INSERT INTO `transmog_items` (`entry`) VALUES('121585'); +INSERT INTO `transmog_items` (`entry`) VALUES('121586'); +INSERT INTO `transmog_items` (`entry`) VALUES('121587'); +INSERT INTO `transmog_items` (`entry`) VALUES('121588'); +INSERT INTO `transmog_items` (`entry`) VALUES('121594'); +INSERT INTO `transmog_items` (`entry`) VALUES('121598'); +INSERT INTO `transmog_items` (`entry`) VALUES('121599'); +INSERT INTO `transmog_items` (`entry`) VALUES('121600'); +INSERT INTO `transmog_items` (`entry`) VALUES('121602'); +INSERT INTO `transmog_items` (`entry`) VALUES('121603'); +INSERT INTO `transmog_items` (`entry`) VALUES('121604'); +INSERT INTO `transmog_items` (`entry`) VALUES('121605'); +INSERT INTO `transmog_items` (`entry`) VALUES('121606'); +INSERT INTO `transmog_items` (`entry`) VALUES('121607'); +INSERT INTO `transmog_items` (`entry`) VALUES('121609'); +INSERT INTO `transmog_items` (`entry`) VALUES('121610'); +INSERT INTO `transmog_items` (`entry`) VALUES('121611'); +INSERT INTO `transmog_items` (`entry`) VALUES('121612'); +INSERT INTO `transmog_items` (`entry`) VALUES('121613'); +INSERT INTO `transmog_items` (`entry`) VALUES('121614'); +INSERT INTO `transmog_items` (`entry`) VALUES('121615'); +INSERT INTO `transmog_items` (`entry`) VALUES('121616'); +INSERT INTO `transmog_items` (`entry`) VALUES('121617'); +INSERT INTO `transmog_items` (`entry`) VALUES('121618'); +INSERT INTO `transmog_items` (`entry`) VALUES('121619'); +INSERT INTO `transmog_items` (`entry`) VALUES('121621'); +INSERT INTO `transmog_items` (`entry`) VALUES('121623'); +INSERT INTO `transmog_items` (`entry`) VALUES('121624'); +INSERT INTO `transmog_items` (`entry`) VALUES('121626'); +INSERT INTO `transmog_items` (`entry`) VALUES('121627'); +INSERT INTO `transmog_items` (`entry`) VALUES('121635'); +INSERT INTO `transmog_items` (`entry`) VALUES('121639'); +INSERT INTO `transmog_items` (`entry`) VALUES('121645'); +INSERT INTO `transmog_items` (`entry`) VALUES('121648'); +INSERT INTO `transmog_items` (`entry`) VALUES('121651'); +INSERT INTO `transmog_items` (`entry`) VALUES('121652'); +INSERT INTO `transmog_items` (`entry`) VALUES('121663'); +INSERT INTO `transmog_items` (`entry`) VALUES('121665'); +INSERT INTO `transmog_items` (`entry`) VALUES('121667'); +INSERT INTO `transmog_items` (`entry`) VALUES('121668'); +INSERT INTO `transmog_items` (`entry`) VALUES('121669'); +INSERT INTO `transmog_items` (`entry`) VALUES('121671'); +INSERT INTO `transmog_items` (`entry`) VALUES('121672'); +INSERT INTO `transmog_items` (`entry`) VALUES('121673'); +INSERT INTO `transmog_items` (`entry`) VALUES('121674'); +INSERT INTO `transmog_items` (`entry`) VALUES('121675'); +INSERT INTO `transmog_items` (`entry`) VALUES('121676'); +INSERT INTO `transmog_items` (`entry`) VALUES('121680'); +INSERT INTO `transmog_items` (`entry`) VALUES('121682'); +INSERT INTO `transmog_items` (`entry`) VALUES('121683'); +INSERT INTO `transmog_items` (`entry`) VALUES('121684'); +INSERT INTO `transmog_items` (`entry`) VALUES('121686'); +INSERT INTO `transmog_items` (`entry`) VALUES('121688'); +INSERT INTO `transmog_items` (`entry`) VALUES('121689'); +INSERT INTO `transmog_items` (`entry`) VALUES('121691'); +INSERT INTO `transmog_items` (`entry`) VALUES('121692'); +INSERT INTO `transmog_items` (`entry`) VALUES('121693'); +INSERT INTO `transmog_items` (`entry`) VALUES('121694'); +INSERT INTO `transmog_items` (`entry`) VALUES('121696'); +INSERT INTO `transmog_items` (`entry`) VALUES('121697'); +INSERT INTO `transmog_items` (`entry`) VALUES('121698'); +INSERT INTO `transmog_items` (`entry`) VALUES('121699'); +INSERT INTO `transmog_items` (`entry`) VALUES('121701'); +INSERT INTO `transmog_items` (`entry`) VALUES('121704'); +INSERT INTO `transmog_items` (`entry`) VALUES('121705'); +INSERT INTO `transmog_items` (`entry`) VALUES('121706'); +INSERT INTO `transmog_items` (`entry`) VALUES('121708'); +INSERT INTO `transmog_items` (`entry`) VALUES('121710'); +INSERT INTO `transmog_items` (`entry`) VALUES('121713'); +INSERT INTO `transmog_items` (`entry`) VALUES('121715'); +INSERT INTO `transmog_items` (`entry`) VALUES('121774'); +INSERT INTO `transmog_items` (`entry`) VALUES('121780'); +INSERT INTO `transmog_items` (`entry`) VALUES('121800'); +INSERT INTO `transmog_items` (`entry`) VALUES('121801'); +INSERT INTO `transmog_items` (`entry`) VALUES('121802'); +INSERT INTO `transmog_items` (`entry`) VALUES('121803'); +INSERT INTO `transmog_items` (`entry`) VALUES('121804'); +INSERT INTO `transmog_items` (`entry`) VALUES('121805'); +INSERT INTO `transmog_items` (`entry`) VALUES('121810'); +INSERT INTO `transmog_items` (`entry`) VALUES('121814'); +INSERT INTO `transmog_items` (`entry`) VALUES('121837'); +INSERT INTO `transmog_items` (`entry`) VALUES('121838'); +INSERT INTO `transmog_items` (`entry`) VALUES('121839'); +INSERT INTO `transmog_items` (`entry`) VALUES('121846'); +INSERT INTO `transmog_items` (`entry`) VALUES('121847'); +INSERT INTO `transmog_items` (`entry`) VALUES('121848'); +INSERT INTO `transmog_items` (`entry`) VALUES('121849'); +INSERT INTO `transmog_items` (`entry`) VALUES('121850'); +INSERT INTO `transmog_items` (`entry`) VALUES('121851'); +INSERT INTO `transmog_items` (`entry`) VALUES('121852'); +INSERT INTO `transmog_items` (`entry`) VALUES('121853'); +INSERT INTO `transmog_items` (`entry`) VALUES('121854'); +INSERT INTO `transmog_items` (`entry`) VALUES('121855'); +INSERT INTO `transmog_items` (`entry`) VALUES('121856'); +INSERT INTO `transmog_items` (`entry`) VALUES('121859'); +INSERT INTO `transmog_items` (`entry`) VALUES('121860'); +INSERT INTO `transmog_items` (`entry`) VALUES('121861'); +INSERT INTO `transmog_items` (`entry`) VALUES('121862'); +INSERT INTO `transmog_items` (`entry`) VALUES('121863'); +INSERT INTO `transmog_items` (`entry`) VALUES('121864'); +INSERT INTO `transmog_items` (`entry`) VALUES('121865'); +INSERT INTO `transmog_items` (`entry`) VALUES('121866'); +INSERT INTO `transmog_items` (`entry`) VALUES('121867'); +INSERT INTO `transmog_items` (`entry`) VALUES('121868'); +INSERT INTO `transmog_items` (`entry`) VALUES('121869'); +INSERT INTO `transmog_items` (`entry`) VALUES('121870'); +INSERT INTO `transmog_items` (`entry`) VALUES('121871'); +INSERT INTO `transmog_items` (`entry`) VALUES('121873'); +INSERT INTO `transmog_items` (`entry`) VALUES('121874'); +INSERT INTO `transmog_items` (`entry`) VALUES('121875'); +INSERT INTO `transmog_items` (`entry`) VALUES('121888'); +INSERT INTO `transmog_items` (`entry`) VALUES('121889'); +INSERT INTO `transmog_items` (`entry`) VALUES('121890'); +INSERT INTO `transmog_items` (`entry`) VALUES('121994'); +INSERT INTO `transmog_items` (`entry`) VALUES('121995'); +INSERT INTO `transmog_items` (`entry`) VALUES('121996'); +INSERT INTO `transmog_items` (`entry`) VALUES('121997'); +INSERT INTO `transmog_items` (`entry`) VALUES('121998'); +INSERT INTO `transmog_items` (`entry`) VALUES('121999'); +INSERT INTO `transmog_items` (`entry`) VALUES('122000'); +INSERT INTO `transmog_items` (`entry`) VALUES('122001'); +INSERT INTO `transmog_items` (`entry`) VALUES('122002'); +INSERT INTO `transmog_items` (`entry`) VALUES('122003'); +INSERT INTO `transmog_items` (`entry`) VALUES('122004'); +INSERT INTO `transmog_items` (`entry`) VALUES('122005'); +INSERT INTO `transmog_items` (`entry`) VALUES('122006'); +INSERT INTO `transmog_items` (`entry`) VALUES('122007'); +INSERT INTO `transmog_items` (`entry`) VALUES('122008'); +INSERT INTO `transmog_items` (`entry`) VALUES('122009'); +INSERT INTO `transmog_items` (`entry`) VALUES('122010'); +INSERT INTO `transmog_items` (`entry`) VALUES('122011'); +INSERT INTO `transmog_items` (`entry`) VALUES('122013'); +INSERT INTO `transmog_items` (`entry`) VALUES('122015'); +INSERT INTO `transmog_items` (`entry`) VALUES('122016'); +INSERT INTO `transmog_items` (`entry`) VALUES('122017'); +INSERT INTO `transmog_items` (`entry`) VALUES('122060'); +INSERT INTO `transmog_items` (`entry`) VALUES('122061'); +INSERT INTO `transmog_items` (`entry`) VALUES('122062'); +INSERT INTO `transmog_items` (`entry`) VALUES('122063'); +INSERT INTO `transmog_items` (`entry`) VALUES('122064'); +INSERT INTO `transmog_items` (`entry`) VALUES('122065'); +INSERT INTO `transmog_items` (`entry`) VALUES('122066'); +INSERT INTO `transmog_items` (`entry`) VALUES('122067'); +INSERT INTO `transmog_items` (`entry`) VALUES('122068'); +INSERT INTO `transmog_items` (`entry`) VALUES('122069'); +INSERT INTO `transmog_items` (`entry`) VALUES('122070'); +INSERT INTO `transmog_items` (`entry`) VALUES('122071'); +INSERT INTO `transmog_items` (`entry`) VALUES('122072'); +INSERT INTO `transmog_items` (`entry`) VALUES('122073'); +INSERT INTO `transmog_items` (`entry`) VALUES('122074'); +INSERT INTO `transmog_items` (`entry`) VALUES('122075'); +INSERT INTO `transmog_items` (`entry`) VALUES('122076'); +INSERT INTO `transmog_items` (`entry`) VALUES('122077'); +INSERT INTO `transmog_items` (`entry`) VALUES('122078'); +INSERT INTO `transmog_items` (`entry`) VALUES('122079'); +INSERT INTO `transmog_items` (`entry`) VALUES('122080'); +INSERT INTO `transmog_items` (`entry`) VALUES('122081'); +INSERT INTO `transmog_items` (`entry`) VALUES('122082'); +INSERT INTO `transmog_items` (`entry`) VALUES('122083'); +INSERT INTO `transmog_items` (`entry`) VALUES('122084'); +INSERT INTO `transmog_items` (`entry`) VALUES('122085'); +INSERT INTO `transmog_items` (`entry`) VALUES('122086'); +INSERT INTO `transmog_items` (`entry`) VALUES('122087'); +INSERT INTO `transmog_items` (`entry`) VALUES('122088'); +INSERT INTO `transmog_items` (`entry`) VALUES('122089'); +INSERT INTO `transmog_items` (`entry`) VALUES('122090'); +INSERT INTO `transmog_items` (`entry`) VALUES('122091'); +INSERT INTO `transmog_items` (`entry`) VALUES('122092'); +INSERT INTO `transmog_items` (`entry`) VALUES('122093'); +INSERT INTO `transmog_items` (`entry`) VALUES('122095'); +INSERT INTO `transmog_items` (`entry`) VALUES('122096'); +INSERT INTO `transmog_items` (`entry`) VALUES('122097'); +INSERT INTO `transmog_items` (`entry`) VALUES('122098'); +INSERT INTO `transmog_items` (`entry`) VALUES('122099'); +INSERT INTO `transmog_items` (`entry`) VALUES('122100'); +INSERT INTO `transmog_items` (`entry`) VALUES('122101'); +INSERT INTO `transmog_items` (`entry`) VALUES('122102'); +INSERT INTO `transmog_items` (`entry`) VALUES('122106'); +INSERT INTO `transmog_items` (`entry`) VALUES('122107'); +INSERT INTO `transmog_items` (`entry`) VALUES('122108'); +INSERT INTO `transmog_items` (`entry`) VALUES('122109'); +INSERT INTO `transmog_items` (`entry`) VALUES('122110'); +INSERT INTO `transmog_items` (`entry`) VALUES('122111'); +INSERT INTO `transmog_items` (`entry`) VALUES('122112'); +INSERT INTO `transmog_items` (`entry`) VALUES('122113'); +INSERT INTO `transmog_items` (`entry`) VALUES('122191'); +INSERT INTO `transmog_items` (`entry`) VALUES('122194'); +INSERT INTO `transmog_items` (`entry`) VALUES('122195'); +INSERT INTO `transmog_items` (`entry`) VALUES('122196'); +INSERT INTO `transmog_items` (`entry`) VALUES('122197'); +INSERT INTO `transmog_items` (`entry`) VALUES('122198'); +INSERT INTO `transmog_items` (`entry`) VALUES('122204'); +INSERT INTO `transmog_items` (`entry`) VALUES('122205'); +INSERT INTO `transmog_items` (`entry`) VALUES('122207'); +INSERT INTO `transmog_items` (`entry`) VALUES('122212'); +INSERT INTO `transmog_items` (`entry`) VALUES('122223'); +INSERT INTO `transmog_items` (`entry`) VALUES('122225'); +INSERT INTO `transmog_items` (`entry`) VALUES('122230'); +INSERT INTO `transmog_items` (`entry`) VALUES('122231'); +INSERT INTO `transmog_items` (`entry`) VALUES('122232'); +INSERT INTO `transmog_items` (`entry`) VALUES('122234'); +INSERT INTO `transmog_items` (`entry`) VALUES('122240'); +INSERT INTO `transmog_items` (`entry`) VALUES('122241'); +INSERT INTO `transmog_items` (`entry`) VALUES('122242'); +INSERT INTO `transmog_items` (`entry`) VALUES('122245'); +INSERT INTO `transmog_items` (`entry`) VALUES('122247'); +INSERT INTO `transmog_items` (`entry`) VALUES('122254'); +INSERT INTO `transmog_items` (`entry`) VALUES('122256'); +INSERT INTO `transmog_items` (`entry`) VALUES('122266'); +INSERT INTO `transmog_items` (`entry`) VALUES('122267'); +INSERT INTO `transmog_items` (`entry`) VALUES('122269'); +INSERT INTO `transmog_items` (`entry`) VALUES('122270'); +INSERT INTO `transmog_items` (`entry`) VALUES('122271'); +INSERT INTO `transmog_items` (`entry`) VALUES('122272'); +INSERT INTO `transmog_items` (`entry`) VALUES('122273'); +INSERT INTO `transmog_items` (`entry`) VALUES('122274'); +INSERT INTO `transmog_items` (`entry`) VALUES('122275'); +INSERT INTO `transmog_items` (`entry`) VALUES('122301'); +INSERT INTO `transmog_items` (`entry`) VALUES('122302'); +INSERT INTO `transmog_items` (`entry`) VALUES('122303'); +INSERT INTO `transmog_items` (`entry`) VALUES('122304'); +INSERT INTO `transmog_items` (`entry`) VALUES('122305'); +INSERT INTO `transmog_items` (`entry`) VALUES('122306'); +INSERT INTO `transmog_items` (`entry`) VALUES('122311'); +INSERT INTO `transmog_items` (`entry`) VALUES('122313'); +INSERT INTO `transmog_items` (`entry`) VALUES('122314'); +INSERT INTO `transmog_items` (`entry`) VALUES('122315'); +INSERT INTO `transmog_items` (`entry`) VALUES('122317'); +INSERT INTO `transmog_items` (`entry`) VALUES('122318'); +INSERT INTO `transmog_items` (`entry`) VALUES('122322'); +INSERT INTO `transmog_items` (`entry`) VALUES('122325'); +INSERT INTO `transmog_items` (`entry`) VALUES('122328'); +INSERT INTO `transmog_items` (`entry`) VALUES('122330'); +INSERT INTO `transmog_items` (`entry`) VALUES('122336'); +INSERT INTO `transmog_items` (`entry`) VALUES('122337'); +INSERT INTO `transmog_items` (`entry`) VALUES('122342'); +INSERT INTO `transmog_items` (`entry`) VALUES('122343'); +INSERT INTO `transmog_items` (`entry`) VALUES('122347'); +INSERT INTO `transmog_items` (`entry`) VALUES('122377'); +INSERT INTO `transmog_items` (`entry`) VALUES('122379'); +INSERT INTO `transmog_items` (`entry`) VALUES('122380'); +INSERT INTO `transmog_items` (`entry`) VALUES('122384'); +INSERT INTO `transmog_items` (`entry`) VALUES('122385'); +INSERT INTO `transmog_items` (`entry`) VALUES('122404'); +INSERT INTO `transmog_items` (`entry`) VALUES('122405'); +INSERT INTO `transmog_items` (`entry`) VALUES('122407'); +INSERT INTO `transmog_items` (`entry`) VALUES('122408'); +INSERT INTO `transmog_items` (`entry`) VALUES('122409'); +INSERT INTO `transmog_items` (`entry`) VALUES('122410'); +INSERT INTO `transmog_items` (`entry`) VALUES('122411'); +INSERT INTO `transmog_items` (`entry`) VALUES('122412'); +INSERT INTO `transmog_items` (`entry`) VALUES('122416'); +INSERT INTO `transmog_items` (`entry`) VALUES('122417'); +INSERT INTO `transmog_items` (`entry`) VALUES('122418'); +INSERT INTO `transmog_items` (`entry`) VALUES('122419'); +INSERT INTO `transmog_items` (`entry`) VALUES('122420'); +INSERT INTO `transmog_items` (`entry`) VALUES('122421'); +INSERT INTO `transmog_items` (`entry`) VALUES('122422'); +INSERT INTO `transmog_items` (`entry`) VALUES('122423'); +INSERT INTO `transmog_items` (`entry`) VALUES('122424'); +INSERT INTO `transmog_items` (`entry`) VALUES('122425'); +INSERT INTO `transmog_items` (`entry`) VALUES('122426'); +INSERT INTO `transmog_items` (`entry`) VALUES('122427'); +INSERT INTO `transmog_items` (`entry`) VALUES('122428'); +INSERT INTO `transmog_items` (`entry`) VALUES('122429'); +INSERT INTO `transmog_items` (`entry`) VALUES('122430'); +INSERT INTO `transmog_items` (`entry`) VALUES('122431'); +INSERT INTO `transmog_items` (`entry`) VALUES('122436'); +INSERT INTO `transmog_items` (`entry`) VALUES('122437'); +INSERT INTO `transmog_items` (`entry`) VALUES('122438'); +INSERT INTO `transmog_items` (`entry`) VALUES('122439'); +INSERT INTO `transmog_items` (`entry`) VALUES('122440'); +INSERT INTO `transmog_items` (`entry`) VALUES('122441'); +INSERT INTO `transmog_items` (`entry`) VALUES('122442'); +INSERT INTO `transmog_items` (`entry`) VALUES('122443'); +INSERT INTO `transmog_items` (`entry`) VALUES('122464'); +INSERT INTO `transmog_items` (`entry`) VALUES('122465'); +INSERT INTO `transmog_items` (`entry`) VALUES('122466'); +INSERT INTO `transmog_items` (`entry`) VALUES('122467'); +INSERT INTO `transmog_items` (`entry`) VALUES('122468'); +INSERT INTO `transmog_items` (`entry`) VALUES('122469'); +INSERT INTO `transmog_items` (`entry`) VALUES('122470'); +INSERT INTO `transmog_items` (`entry`) VALUES('122471'); +INSERT INTO `transmog_items` (`entry`) VALUES('122472'); +INSERT INTO `transmog_items` (`entry`) VALUES('122476'); +INSERT INTO `transmog_items` (`entry`) VALUES('122477'); +INSERT INTO `transmog_items` (`entry`) VALUES('122478'); +INSERT INTO `transmog_items` (`entry`) VALUES('122479'); +INSERT INTO `transmog_items` (`entry`) VALUES('122480'); +INSERT INTO `transmog_items` (`entry`) VALUES('122481'); +INSERT INTO `transmog_items` (`entry`) VALUES('122482'); +INSERT INTO `transmog_items` (`entry`) VALUES('122483'); +INSERT INTO `transmog_items` (`entry`) VALUES('122488'); +INSERT INTO `transmog_items` (`entry`) VALUES('122489'); +INSERT INTO `transmog_items` (`entry`) VALUES('122490'); +INSERT INTO `transmog_items` (`entry`) VALUES('122491'); +INSERT INTO `transmog_items` (`entry`) VALUES('122492'); +INSERT INTO `transmog_items` (`entry`) VALUES('122493'); +INSERT INTO `transmog_items` (`entry`) VALUES('122494'); +INSERT INTO `transmog_items` (`entry`) VALUES('122495'); +INSERT INTO `transmog_items` (`entry`) VALUES('122496'); +INSERT INTO `transmog_items` (`entry`) VALUES('122497'); +INSERT INTO `transmog_items` (`entry`) VALUES('122498'); +INSERT INTO `transmog_items` (`entry`) VALUES('122499'); +INSERT INTO `transmog_items` (`entry`) VALUES('122500'); +INSERT INTO `transmog_items` (`entry`) VALUES('122501'); +INSERT INTO `transmog_items` (`entry`) VALUES('122502'); +INSERT INTO `transmog_items` (`entry`) VALUES('122503'); +INSERT INTO `transmog_items` (`entry`) VALUES('122504'); +INSERT INTO `transmog_items` (`entry`) VALUES('122505'); +INSERT INTO `transmog_items` (`entry`) VALUES('122506'); +INSERT INTO `transmog_items` (`entry`) VALUES('122507'); +INSERT INTO `transmog_items` (`entry`) VALUES('122508'); +INSERT INTO `transmog_items` (`entry`) VALUES('122509'); +INSERT INTO `transmog_items` (`entry`) VALUES('122510'); +INSERT INTO `transmog_items` (`entry`) VALUES('122511'); +INSERT INTO `transmog_items` (`entry`) VALUES('122512'); +INSERT INTO `transmog_items` (`entry`) VALUES('122513'); +INSERT INTO `transmog_items` (`entry`) VALUES('122514'); +INSERT INTO `transmog_items` (`entry`) VALUES('122515'); +INSERT INTO `transmog_items` (`entry`) VALUES('122516'); +INSERT INTO `transmog_items` (`entry`) VALUES('122517'); +INSERT INTO `transmog_items` (`entry`) VALUES('122518'); +INSERT INTO `transmog_items` (`entry`) VALUES('122519'); +INSERT INTO `transmog_items` (`entry`) VALUES('122651'); +INSERT INTO `transmog_items` (`entry`) VALUES('122652'); +INSERT INTO `transmog_items` (`entry`) VALUES('122654'); +INSERT INTO `transmog_items` (`entry`) VALUES('122655'); +INSERT INTO `transmog_items` (`entry`) VALUES('122656'); +INSERT INTO `transmog_items` (`entry`) VALUES('122658'); +INSERT INTO `transmog_items` (`entry`) VALUES('122660'); +INSERT INTO `transmog_items` (`entry`) VALUES('122661'); +INSERT INTO `transmog_items` (`entry`) VALUES('122662'); +INSERT INTO `transmog_items` (`entry`) VALUES('122663'); +INSERT INTO `transmog_items` (`entry`) VALUES('122664'); +INSERT INTO `transmog_items` (`entry`) VALUES('122665'); +INSERT INTO `transmog_items` (`entry`) VALUES('122666'); +INSERT INTO `transmog_items` (`entry`) VALUES('122667'); +INSERT INTO `transmog_items` (`entry`) VALUES('122668'); +INSERT INTO `transmog_items` (`entry`) VALUES('122669'); +INSERT INTO `transmog_items` (`entry`) VALUES('122670'); +INSERT INTO `transmog_items` (`entry`) VALUES('122671'); +INSERT INTO `transmog_items` (`entry`) VALUES('122672'); +INSERT INTO `transmog_items` (`entry`) VALUES('122673'); +INSERT INTO `transmog_items` (`entry`) VALUES('122676'); +INSERT INTO `transmog_items` (`entry`) VALUES('122688'); +INSERT INTO `transmog_items` (`entry`) VALUES('122689'); +INSERT INTO `transmog_items` (`entry`) VALUES('122690'); +INSERT INTO `transmog_items` (`entry`) VALUES('122699'); +INSERT INTO `transmog_items` (`entry`) VALUES('122700'); +INSERT INTO `transmog_items` (`entry`) VALUES('122701'); +INSERT INTO `transmog_items` (`entry`) VALUES('122702'); +INSERT INTO `transmog_items` (`entry`) VALUES('122711'); +INSERT INTO `transmog_items` (`entry`) VALUES('122712'); +INSERT INTO `transmog_items` (`entry`) VALUES('122713'); +INSERT INTO `transmog_items` (`entry`) VALUES('122714'); +INSERT INTO `transmog_items` (`entry`) VALUES('122715'); +INSERT INTO `transmog_items` (`entry`) VALUES('122716'); +INSERT INTO `transmog_items` (`entry`) VALUES('122718'); +INSERT INTO `transmog_items` (`entry`) VALUES('122720'); +INSERT INTO `transmog_items` (`entry`) VALUES('122730'); +INSERT INTO `transmog_items` (`entry`) VALUES('122731'); +INSERT INTO `transmog_items` (`entry`) VALUES('122740'); +INSERT INTO `transmog_items` (`entry`) VALUES('122741'); +INSERT INTO `transmog_items` (`entry`) VALUES('122742'); +INSERT INTO `transmog_items` (`entry`) VALUES('122744'); +INSERT INTO `transmog_items` (`entry`) VALUES('122745'); +INSERT INTO `transmog_items` (`entry`) VALUES('122747'); +INSERT INTO `transmog_items` (`entry`) VALUES('122748'); +INSERT INTO `transmog_items` (`entry`) VALUES('122749'); +INSERT INTO `transmog_items` (`entry`) VALUES('122750'); +INSERT INTO `transmog_items` (`entry`) VALUES('122752'); +INSERT INTO `transmog_items` (`entry`) VALUES('122753'); +INSERT INTO `transmog_items` (`entry`) VALUES('122756'); +INSERT INTO `transmog_items` (`entry`) VALUES('122757'); +INSERT INTO `transmog_items` (`entry`) VALUES('122758'); +INSERT INTO `transmog_items` (`entry`) VALUES('122759'); +INSERT INTO `transmog_items` (`entry`) VALUES('122760'); +INSERT INTO `transmog_items` (`entry`) VALUES('122761'); +INSERT INTO `transmog_items` (`entry`) VALUES('122762'); +INSERT INTO `transmog_items` (`entry`) VALUES('122763'); +INSERT INTO `transmog_items` (`entry`) VALUES('122764'); +INSERT INTO `transmog_items` (`entry`) VALUES('122782'); +INSERT INTO `transmog_items` (`entry`) VALUES('122802'); +INSERT INTO `transmog_items` (`entry`) VALUES('122803'); +INSERT INTO `transmog_items` (`entry`) VALUES('122804'); +INSERT INTO `transmog_items` (`entry`) VALUES('122808'); +INSERT INTO `transmog_items` (`entry`) VALUES('122810'); +INSERT INTO `transmog_items` (`entry`) VALUES('122811'); +INSERT INTO `transmog_items` (`entry`) VALUES('122812'); +INSERT INTO `transmog_items` (`entry`) VALUES('122815'); +INSERT INTO `transmog_items` (`entry`) VALUES('122818'); +INSERT INTO `transmog_items` (`entry`) VALUES('122819'); +INSERT INTO `transmog_items` (`entry`) VALUES('122820'); +INSERT INTO `transmog_items` (`entry`) VALUES('122821'); +INSERT INTO `transmog_items` (`entry`) VALUES('122843'); +INSERT INTO `transmog_items` (`entry`) VALUES('122852'); +INSERT INTO `transmog_items` (`entry`) VALUES('122855'); +INSERT INTO `transmog_items` (`entry`) VALUES('122856'); +INSERT INTO `transmog_items` (`entry`) VALUES('122857'); +INSERT INTO `transmog_items` (`entry`) VALUES('122858'); +INSERT INTO `transmog_items` (`entry`) VALUES('122859'); +INSERT INTO `transmog_items` (`entry`) VALUES('122860'); +INSERT INTO `transmog_items` (`entry`) VALUES('122862'); +INSERT INTO `transmog_items` (`entry`) VALUES('122863'); +INSERT INTO `transmog_items` (`entry`) VALUES('122864'); +INSERT INTO `transmog_items` (`entry`) VALUES('122865'); +INSERT INTO `transmog_items` (`entry`) VALUES('122867'); +INSERT INTO `transmog_items` (`entry`) VALUES('122868'); +INSERT INTO `transmog_items` (`entry`) VALUES('122869'); +INSERT INTO `transmog_items` (`entry`) VALUES('122870'); +INSERT INTO `transmog_items` (`entry`) VALUES('122872'); +INSERT INTO `transmog_items` (`entry`) VALUES('122873'); +INSERT INTO `transmog_items` (`entry`) VALUES('122874'); +INSERT INTO `transmog_items` (`entry`) VALUES('122875'); +INSERT INTO `transmog_items` (`entry`) VALUES('122876'); +INSERT INTO `transmog_items` (`entry`) VALUES('122877'); +INSERT INTO `transmog_items` (`entry`) VALUES('122878'); +INSERT INTO `transmog_items` (`entry`) VALUES('122879'); +INSERT INTO `transmog_items` (`entry`) VALUES('122880'); +INSERT INTO `transmog_items` (`entry`) VALUES('122881'); +INSERT INTO `transmog_items` (`entry`) VALUES('122882'); +INSERT INTO `transmog_items` (`entry`) VALUES('122883'); +INSERT INTO `transmog_items` (`entry`) VALUES('122884'); +INSERT INTO `transmog_items` (`entry`) VALUES('122885'); +INSERT INTO `transmog_items` (`entry`) VALUES('122886'); +INSERT INTO `transmog_items` (`entry`) VALUES('122887'); +INSERT INTO `transmog_items` (`entry`) VALUES('122936'); +INSERT INTO `transmog_items` (`entry`) VALUES('122938'); +INSERT INTO `transmog_items` (`entry`) VALUES('122940'); +INSERT INTO `transmog_items` (`entry`) VALUES('122941'); +INSERT INTO `transmog_items` (`entry`) VALUES('122942'); +INSERT INTO `transmog_items` (`entry`) VALUES('122951'); +INSERT INTO `transmog_items` (`entry`) VALUES('122952'); +INSERT INTO `transmog_items` (`entry`) VALUES('122953'); +INSERT INTO `transmog_items` (`entry`) VALUES('122956'); +INSERT INTO `transmog_items` (`entry`) VALUES('122960'); +INSERT INTO `transmog_items` (`entry`) VALUES('122963'); +INSERT INTO `transmog_items` (`entry`) VALUES('122964'); +INSERT INTO `transmog_items` (`entry`) VALUES('122965'); +INSERT INTO `transmog_items` (`entry`) VALUES('122966'); +INSERT INTO `transmog_items` (`entry`) VALUES('122967'); +INSERT INTO `transmog_items` (`entry`) VALUES('122968'); +INSERT INTO `transmog_items` (`entry`) VALUES('122969'); +INSERT INTO `transmog_items` (`entry`) VALUES('122971'); +INSERT INTO `transmog_items` (`entry`) VALUES('122982'); +INSERT INTO `transmog_items` (`entry`) VALUES('122983'); +INSERT INTO `transmog_items` (`entry`) VALUES('122984'); +INSERT INTO `transmog_items` (`entry`) VALUES('122985'); +INSERT INTO `transmog_items` (`entry`) VALUES('122986'); +INSERT INTO `transmog_items` (`entry`) VALUES('122987'); +INSERT INTO `transmog_items` (`entry`) VALUES('122988'); +INSERT INTO `transmog_items` (`entry`) VALUES('122990'); +INSERT INTO `transmog_items` (`entry`) VALUES('122991'); +INSERT INTO `transmog_items` (`entry`) VALUES('122992'); +INSERT INTO `transmog_items` (`entry`) VALUES('122993'); +INSERT INTO `transmog_items` (`entry`) VALUES('122996'); +INSERT INTO `transmog_items` (`entry`) VALUES('122997'); +INSERT INTO `transmog_items` (`entry`) VALUES('122998'); +INSERT INTO `transmog_items` (`entry`) VALUES('123000'); +INSERT INTO `transmog_items` (`entry`) VALUES('123009'); +INSERT INTO `transmog_items` (`entry`) VALUES('123017'); +INSERT INTO `transmog_items` (`entry`) VALUES('123019'); +INSERT INTO `transmog_items` (`entry`) VALUES('123020'); +INSERT INTO `transmog_items` (`entry`) VALUES('123021'); +INSERT INTO `transmog_items` (`entry`) VALUES('123030'); +INSERT INTO `transmog_items` (`entry`) VALUES('123032'); +INSERT INTO `transmog_items` (`entry`) VALUES('123033'); +INSERT INTO `transmog_items` (`entry`) VALUES('123034'); +INSERT INTO `transmog_items` (`entry`) VALUES('123035'); +INSERT INTO `transmog_items` (`entry`) VALUES('123039'); +INSERT INTO `transmog_items` (`entry`) VALUES('123043'); +INSERT INTO `transmog_items` (`entry`) VALUES('123044'); +INSERT INTO `transmog_items` (`entry`) VALUES('123045'); +INSERT INTO `transmog_items` (`entry`) VALUES('123050'); +INSERT INTO `transmog_items` (`entry`) VALUES('123051'); +INSERT INTO `transmog_items` (`entry`) VALUES('123056'); +INSERT INTO `transmog_items` (`entry`) VALUES('123068'); +INSERT INTO `transmog_items` (`entry`) VALUES('123069'); +INSERT INTO `transmog_items` (`entry`) VALUES('123070'); +INSERT INTO `transmog_items` (`entry`) VALUES('123071'); +INSERT INTO `transmog_items` (`entry`) VALUES('123072'); +INSERT INTO `transmog_items` (`entry`) VALUES('123073'); +INSERT INTO `transmog_items` (`entry`) VALUES('123075'); +INSERT INTO `transmog_items` (`entry`) VALUES('123078'); +INSERT INTO `transmog_items` (`entry`) VALUES('123081'); +INSERT INTO `transmog_items` (`entry`) VALUES('123082'); +INSERT INTO `transmog_items` (`entry`) VALUES('123084'); +INSERT INTO `transmog_items` (`entry`) VALUES('123085'); +INSERT INTO `transmog_items` (`entry`) VALUES('123087'); +INSERT INTO `transmog_items` (`entry`) VALUES('123088'); +INSERT INTO `transmog_items` (`entry`) VALUES('123089'); +INSERT INTO `transmog_items` (`entry`) VALUES('123090'); +INSERT INTO `transmog_items` (`entry`) VALUES('123091'); +INSERT INTO `transmog_items` (`entry`) VALUES('123092'); +INSERT INTO `transmog_items` (`entry`) VALUES('123093'); +INSERT INTO `transmog_items` (`entry`) VALUES('123126'); +INSERT INTO `transmog_items` (`entry`) VALUES('123127'); +INSERT INTO `transmog_items` (`entry`) VALUES('123128'); +INSERT INTO `transmog_items` (`entry`) VALUES('123129'); +INSERT INTO `transmog_items` (`entry`) VALUES('123139'); +INSERT INTO `transmog_items` (`entry`) VALUES('123168'); +INSERT INTO `transmog_items` (`entry`) VALUES('123170'); +INSERT INTO `transmog_items` (`entry`) VALUES('123171'); +INSERT INTO `transmog_items` (`entry`) VALUES('123173'); +INSERT INTO `transmog_items` (`entry`) VALUES('123177'); +INSERT INTO `transmog_items` (`entry`) VALUES('123178'); +INSERT INTO `transmog_items` (`entry`) VALUES('123219'); +INSERT INTO `transmog_items` (`entry`) VALUES('123220'); +INSERT INTO `transmog_items` (`entry`) VALUES('123221'); +INSERT INTO `transmog_items` (`entry`) VALUES('123226'); +INSERT INTO `transmog_items` (`entry`) VALUES('123238'); +INSERT INTO `transmog_items` (`entry`) VALUES('123242'); +INSERT INTO `transmog_items` (`entry`) VALUES('123243'); +INSERT INTO `transmog_items` (`entry`) VALUES('123244'); +INSERT INTO `transmog_items` (`entry`) VALUES('123251'); +INSERT INTO `transmog_items` (`entry`) VALUES('123252'); +INSERT INTO `transmog_items` (`entry`) VALUES('123253'); +INSERT INTO `transmog_items` (`entry`) VALUES('123254'); +INSERT INTO `transmog_items` (`entry`) VALUES('123255'); +INSERT INTO `transmog_items` (`entry`) VALUES('123256'); +INSERT INTO `transmog_items` (`entry`) VALUES('123257'); +INSERT INTO `transmog_items` (`entry`) VALUES('123258'); +INSERT INTO `transmog_items` (`entry`) VALUES('123259'); +INSERT INTO `transmog_items` (`entry`) VALUES('123260'); +INSERT INTO `transmog_items` (`entry`) VALUES('123261'); +INSERT INTO `transmog_items` (`entry`) VALUES('123262'); +INSERT INTO `transmog_items` (`entry`) VALUES('123263'); +INSERT INTO `transmog_items` (`entry`) VALUES('123264'); +INSERT INTO `transmog_items` (`entry`) VALUES('123265'); +INSERT INTO `transmog_items` (`entry`) VALUES('123266'); +INSERT INTO `transmog_items` (`entry`) VALUES('123267'); +INSERT INTO `transmog_items` (`entry`) VALUES('123272'); +INSERT INTO `transmog_items` (`entry`) VALUES('123273'); +INSERT INTO `transmog_items` (`entry`) VALUES('123274'); +INSERT INTO `transmog_items` (`entry`) VALUES('123275'); +INSERT INTO `transmog_items` (`entry`) VALUES('123276'); +INSERT INTO `transmog_items` (`entry`) VALUES('123277'); +INSERT INTO `transmog_items` (`entry`) VALUES('123278'); +INSERT INTO `transmog_items` (`entry`) VALUES('123279'); +INSERT INTO `transmog_items` (`entry`) VALUES('123280'); +INSERT INTO `transmog_items` (`entry`) VALUES('123281'); +INSERT INTO `transmog_items` (`entry`) VALUES('123282'); +INSERT INTO `transmog_items` (`entry`) VALUES('123283'); +INSERT INTO `transmog_items` (`entry`) VALUES('123284'); +INSERT INTO `transmog_items` (`entry`) VALUES('123285'); +INSERT INTO `transmog_items` (`entry`) VALUES('123286'); +INSERT INTO `transmog_items` (`entry`) VALUES('123287'); +INSERT INTO `transmog_items` (`entry`) VALUES('123288'); +INSERT INTO `transmog_items` (`entry`) VALUES('123289'); +INSERT INTO `transmog_items` (`entry`) VALUES('123290'); +INSERT INTO `transmog_items` (`entry`) VALUES('123291'); +INSERT INTO `transmog_items` (`entry`) VALUES('123292'); +INSERT INTO `transmog_items` (`entry`) VALUES('123293'); +INSERT INTO `transmog_items` (`entry`) VALUES('123294'); +INSERT INTO `transmog_items` (`entry`) VALUES('123295'); +INSERT INTO `transmog_items` (`entry`) VALUES('123296'); +INSERT INTO `transmog_items` (`entry`) VALUES('123297'); +INSERT INTO `transmog_items` (`entry`) VALUES('123298'); +INSERT INTO `transmog_items` (`entry`) VALUES('123299'); +INSERT INTO `transmog_items` (`entry`) VALUES('123300'); +INSERT INTO `transmog_items` (`entry`) VALUES('123301'); +INSERT INTO `transmog_items` (`entry`) VALUES('123302'); +INSERT INTO `transmog_items` (`entry`) VALUES('123303'); +INSERT INTO `transmog_items` (`entry`) VALUES('123304'); +INSERT INTO `transmog_items` (`entry`) VALUES('123305'); +INSERT INTO `transmog_items` (`entry`) VALUES('123306'); +INSERT INTO `transmog_items` (`entry`) VALUES('123307'); +INSERT INTO `transmog_items` (`entry`) VALUES('123308'); +INSERT INTO `transmog_items` (`entry`) VALUES('123309'); +INSERT INTO `transmog_items` (`entry`) VALUES('123310'); +INSERT INTO `transmog_items` (`entry`) VALUES('123311'); +INSERT INTO `transmog_items` (`entry`) VALUES('123312'); +INSERT INTO `transmog_items` (`entry`) VALUES('123313'); +INSERT INTO `transmog_items` (`entry`) VALUES('123314'); +INSERT INTO `transmog_items` (`entry`) VALUES('123315'); +INSERT INTO `transmog_items` (`entry`) VALUES('123316'); +INSERT INTO `transmog_items` (`entry`) VALUES('123317'); +INSERT INTO `transmog_items` (`entry`) VALUES('123318'); +INSERT INTO `transmog_items` (`entry`) VALUES('123319'); +INSERT INTO `transmog_items` (`entry`) VALUES('123321'); +INSERT INTO `transmog_items` (`entry`) VALUES('123322'); +INSERT INTO `transmog_items` (`entry`) VALUES('123323'); +INSERT INTO `transmog_items` (`entry`) VALUES('123344'); +INSERT INTO `transmog_items` (`entry`) VALUES('123347'); +INSERT INTO `transmog_items` (`entry`) VALUES('123350'); +INSERT INTO `transmog_items` (`entry`) VALUES('123362'); +INSERT INTO `transmog_items` (`entry`) VALUES('123363'); +INSERT INTO `transmog_items` (`entry`) VALUES('123365'); +INSERT INTO `transmog_items` (`entry`) VALUES('123367'); +INSERT INTO `transmog_items` (`entry`) VALUES('123368'); +INSERT INTO `transmog_items` (`entry`) VALUES('123375'); +INSERT INTO `transmog_items` (`entry`) VALUES('123376'); +INSERT INTO `transmog_items` (`entry`) VALUES('123377'); +INSERT INTO `transmog_items` (`entry`) VALUES('123391'); +INSERT INTO `transmog_items` (`entry`) VALUES('123392'); +INSERT INTO `transmog_items` (`entry`) VALUES('123395'); +INSERT INTO `transmog_items` (`entry`) VALUES('123397'); +INSERT INTO `transmog_items` (`entry`) VALUES('123398'); +INSERT INTO `transmog_items` (`entry`) VALUES('123399'); +INSERT INTO `transmog_items` (`entry`) VALUES('123400'); +INSERT INTO `transmog_items` (`entry`) VALUES('123402'); +INSERT INTO `transmog_items` (`entry`) VALUES('123403'); +INSERT INTO `transmog_items` (`entry`) VALUES('123404'); +INSERT INTO `transmog_items` (`entry`) VALUES('123405'); +INSERT INTO `transmog_items` (`entry`) VALUES('123406'); +INSERT INTO `transmog_items` (`entry`) VALUES('123407'); +INSERT INTO `transmog_items` (`entry`) VALUES('123408'); +INSERT INTO `transmog_items` (`entry`) VALUES('123409'); +INSERT INTO `transmog_items` (`entry`) VALUES('123412'); +INSERT INTO `transmog_items` (`entry`) VALUES('123413'); +INSERT INTO `transmog_items` (`entry`) VALUES('123414'); +INSERT INTO `transmog_items` (`entry`) VALUES('123415'); +INSERT INTO `transmog_items` (`entry`) VALUES('123420'); +INSERT INTO `transmog_items` (`entry`) VALUES('123422'); +INSERT INTO `transmog_items` (`entry`) VALUES('123431'); +INSERT INTO `transmog_items` (`entry`) VALUES('123433'); +INSERT INTO `transmog_items` (`entry`) VALUES('123434'); +INSERT INTO `transmog_items` (`entry`) VALUES('123451'); +INSERT INTO `transmog_items` (`entry`) VALUES('123454'); +INSERT INTO `transmog_items` (`entry`) VALUES('123458'); +INSERT INTO `transmog_items` (`entry`) VALUES('123459'); +INSERT INTO `transmog_items` (`entry`) VALUES('123464'); +INSERT INTO `transmog_items` (`entry`) VALUES('123466'); +INSERT INTO `transmog_items` (`entry`) VALUES('123471'); +INSERT INTO `transmog_items` (`entry`) VALUES('123474'); +INSERT INTO `transmog_items` (`entry`) VALUES('123477'); +INSERT INTO `transmog_items` (`entry`) VALUES('123478'); +INSERT INTO `transmog_items` (`entry`) VALUES('123479'); +INSERT INTO `transmog_items` (`entry`) VALUES('123482'); +INSERT INTO `transmog_items` (`entry`) VALUES('123484'); +INSERT INTO `transmog_items` (`entry`) VALUES('123487'); +INSERT INTO `transmog_items` (`entry`) VALUES('123488'); +INSERT INTO `transmog_items` (`entry`) VALUES('123489'); +INSERT INTO `transmog_items` (`entry`) VALUES('123490'); +INSERT INTO `transmog_items` (`entry`) VALUES('123491'); +INSERT INTO `transmog_items` (`entry`) VALUES('123493'); +INSERT INTO `transmog_items` (`entry`) VALUES('123494'); +INSERT INTO `transmog_items` (`entry`) VALUES('123498'); +INSERT INTO `transmog_items` (`entry`) VALUES('123503'); +INSERT INTO `transmog_items` (`entry`) VALUES('123504'); +INSERT INTO `transmog_items` (`entry`) VALUES('123506'); +INSERT INTO `transmog_items` (`entry`) VALUES('123507'); +INSERT INTO `transmog_items` (`entry`) VALUES('123508'); +INSERT INTO `transmog_items` (`entry`) VALUES('123509'); +INSERT INTO `transmog_items` (`entry`) VALUES('123510'); +INSERT INTO `transmog_items` (`entry`) VALUES('123511'); +INSERT INTO `transmog_items` (`entry`) VALUES('123512'); +INSERT INTO `transmog_items` (`entry`) VALUES('123513'); +INSERT INTO `transmog_items` (`entry`) VALUES('123514'); +INSERT INTO `transmog_items` (`entry`) VALUES('123515'); +INSERT INTO `transmog_items` (`entry`) VALUES('123516'); +INSERT INTO `transmog_items` (`entry`) VALUES('123517'); +INSERT INTO `transmog_items` (`entry`) VALUES('123518'); +INSERT INTO `transmog_items` (`entry`) VALUES('123519'); +INSERT INTO `transmog_items` (`entry`) VALUES('123520'); +INSERT INTO `transmog_items` (`entry`) VALUES('123521'); +INSERT INTO `transmog_items` (`entry`) VALUES('123522'); +INSERT INTO `transmog_items` (`entry`) VALUES('123523'); +INSERT INTO `transmog_items` (`entry`) VALUES('123524'); +INSERT INTO `transmog_items` (`entry`) VALUES('123525'); +INSERT INTO `transmog_items` (`entry`) VALUES('123526'); +INSERT INTO `transmog_items` (`entry`) VALUES('123527'); +INSERT INTO `transmog_items` (`entry`) VALUES('123531'); +INSERT INTO `transmog_items` (`entry`) VALUES('123532'); +INSERT INTO `transmog_items` (`entry`) VALUES('123533'); +INSERT INTO `transmog_items` (`entry`) VALUES('123534'); +INSERT INTO `transmog_items` (`entry`) VALUES('123535'); +INSERT INTO `transmog_items` (`entry`) VALUES('123536'); +INSERT INTO `transmog_items` (`entry`) VALUES('123537'); +INSERT INTO `transmog_items` (`entry`) VALUES('123538'); +INSERT INTO `transmog_items` (`entry`) VALUES('123539'); +INSERT INTO `transmog_items` (`entry`) VALUES('123543'); +INSERT INTO `transmog_items` (`entry`) VALUES('123544'); +INSERT INTO `transmog_items` (`entry`) VALUES('123554'); +INSERT INTO `transmog_items` (`entry`) VALUES('123555'); +INSERT INTO `transmog_items` (`entry`) VALUES('123556'); +INSERT INTO `transmog_items` (`entry`) VALUES('123557'); +INSERT INTO `transmog_items` (`entry`) VALUES('123563'); +INSERT INTO `transmog_items` (`entry`) VALUES('123564'); +INSERT INTO `transmog_items` (`entry`) VALUES('123565'); +INSERT INTO `transmog_items` (`entry`) VALUES('123587'); +INSERT INTO `transmog_items` (`entry`) VALUES('123663'); +INSERT INTO `transmog_items` (`entry`) VALUES('123664'); +INSERT INTO `transmog_items` (`entry`) VALUES('123665'); +INSERT INTO `transmog_items` (`entry`) VALUES('123666'); +INSERT INTO `transmog_items` (`entry`) VALUES('123667'); +INSERT INTO `transmog_items` (`entry`) VALUES('123668'); +INSERT INTO `transmog_items` (`entry`) VALUES('123742'); +INSERT INTO `transmog_items` (`entry`) VALUES('123746'); +INSERT INTO `transmog_items` (`entry`) VALUES('123747'); +INSERT INTO `transmog_items` (`entry`) VALUES('123748'); +INSERT INTO `transmog_items` (`entry`) VALUES('123758'); +INSERT INTO `transmog_items` (`entry`) VALUES('123761'); +INSERT INTO `transmog_items` (`entry`) VALUES('123762'); +INSERT INTO `transmog_items` (`entry`) VALUES('123763'); +INSERT INTO `transmog_items` (`entry`) VALUES('123824'); +INSERT INTO `transmog_items` (`entry`) VALUES('123825'); +INSERT INTO `transmog_items` (`entry`) VALUES('123828'); +INSERT INTO `transmog_items` (`entry`) VALUES('123829'); +INSERT INTO `transmog_items` (`entry`) VALUES('123838'); +INSERT INTO `transmog_items` (`entry`) VALUES('123839'); +INSERT INTO `transmog_items` (`entry`) VALUES('123923'); +INSERT INTO `transmog_items` (`entry`) VALUES('123924'); +INSERT INTO `transmog_items` (`entry`) VALUES('123931'); +INSERT INTO `transmog_items` (`entry`) VALUES('124021'); +INSERT INTO `transmog_items` (`entry`) VALUES('124022'); +INSERT INTO `transmog_items` (`entry`) VALUES('124023'); +INSERT INTO `transmog_items` (`entry`) VALUES('124024'); +INSERT INTO `transmog_items` (`entry`) VALUES('124044'); +INSERT INTO `transmog_items` (`entry`) VALUES('124046'); +INSERT INTO `transmog_items` (`entry`) VALUES('124063'); +INSERT INTO `transmog_items` (`entry`) VALUES('124064'); +INSERT INTO `transmog_items` (`entry`) VALUES('124071'); +INSERT INTO `transmog_items` (`entry`) VALUES('124083'); +INSERT INTO `transmog_items` (`entry`) VALUES('124090'); +INSERT INTO `transmog_items` (`entry`) VALUES('124091'); +INSERT INTO `transmog_items` (`entry`) VALUES('124100'); +INSERT INTO `transmog_items` (`entry`) VALUES('124103'); +INSERT INTO `transmog_items` (`entry`) VALUES('124104'); +INSERT INTO `transmog_items` (`entry`) VALUES('124107'); +INSERT INTO `transmog_items` (`entry`) VALUES('124108'); +INSERT INTO `transmog_items` (`entry`) VALUES('124109'); +INSERT INTO `transmog_items` (`entry`) VALUES('124111'); +INSERT INTO `transmog_items` (`entry`) VALUES('124112'); +INSERT INTO `transmog_items` (`entry`) VALUES('124113'); +INSERT INTO `transmog_items` (`entry`) VALUES('124122'); +INSERT INTO `transmog_items` (`entry`) VALUES('124123'); +INSERT INTO `transmog_items` (`entry`) VALUES('124129'); +INSERT INTO `transmog_items` (`entry`) VALUES('124130'); +INSERT INTO `transmog_items` (`entry`) VALUES('124131'); +INSERT INTO `transmog_items` (`entry`) VALUES('124133'); +INSERT INTO `transmog_items` (`entry`) VALUES('124134'); +INSERT INTO `transmog_items` (`entry`) VALUES('124135'); +INSERT INTO `transmog_items` (`entry`) VALUES('124136'); +INSERT INTO `transmog_items` (`entry`) VALUES('124137'); +INSERT INTO `transmog_items` (`entry`) VALUES('124138'); +INSERT INTO `transmog_items` (`entry`) VALUES('124141'); +INSERT INTO `transmog_items` (`entry`) VALUES('124142'); +INSERT INTO `transmog_items` (`entry`) VALUES('124144'); +INSERT INTO `transmog_items` (`entry`) VALUES('124145'); +INSERT INTO `transmog_items` (`entry`) VALUES('124146'); +INSERT INTO `transmog_items` (`entry`) VALUES('124150'); +INSERT INTO `transmog_items` (`entry`) VALUES('124222'); +INSERT INTO `transmog_items` (`entry`) VALUES('124227'); +INSERT INTO `transmog_items` (`entry`) VALUES('124241'); +INSERT INTO `transmog_items` (`entry`) VALUES('124249'); +INSERT INTO `transmog_items` (`entry`) VALUES('124250'); +INSERT INTO `transmog_items` (`entry`) VALUES('124251'); +INSERT INTO `transmog_items` (`entry`) VALUES('124252'); +INSERT INTO `transmog_items` (`entry`) VALUES('124253'); +INSERT INTO `transmog_items` (`entry`) VALUES('124254'); +INSERT INTO `transmog_items` (`entry`) VALUES('124255'); +INSERT INTO `transmog_items` (`entry`) VALUES('124256'); +INSERT INTO `transmog_items` (`entry`) VALUES('124257'); +INSERT INTO `transmog_items` (`entry`) VALUES('124258'); +INSERT INTO `transmog_items` (`entry`) VALUES('124259'); +INSERT INTO `transmog_items` (`entry`) VALUES('124260'); +INSERT INTO `transmog_items` (`entry`) VALUES('124261'); +INSERT INTO `transmog_items` (`entry`) VALUES('124262'); +INSERT INTO `transmog_items` (`entry`) VALUES('124263'); +INSERT INTO `transmog_items` (`entry`) VALUES('124264'); +INSERT INTO `transmog_items` (`entry`) VALUES('124265'); +INSERT INTO `transmog_items` (`entry`) VALUES('124266'); +INSERT INTO `transmog_items` (`entry`) VALUES('124267'); +INSERT INTO `transmog_items` (`entry`) VALUES('124334'); +INSERT INTO `transmog_items` (`entry`) VALUES('124340'); +INSERT INTO `transmog_items` (`entry`) VALUES('124341'); +INSERT INTO `transmog_items` (`entry`) VALUES('124342'); +INSERT INTO `transmog_items` (`entry`) VALUES('124343'); +INSERT INTO `transmog_items` (`entry`) VALUES('124346'); +INSERT INTO `transmog_items` (`entry`) VALUES('124347'); +INSERT INTO `transmog_items` (`entry`) VALUES('124348'); +INSERT INTO `transmog_items` (`entry`) VALUES('124351'); +INSERT INTO `transmog_items` (`entry`) VALUES('124353'); +INSERT INTO `transmog_items` (`entry`) VALUES('124356'); +INSERT INTO `transmog_items` (`entry`) VALUES('124357'); +INSERT INTO `transmog_items` (`entry`) VALUES('124359'); +INSERT INTO `transmog_items` (`entry`) VALUES('124360'); +INSERT INTO `transmog_items` (`entry`) VALUES('124362'); +INSERT INTO `transmog_items` (`entry`) VALUES('124363'); +INSERT INTO `transmog_items` (`entry`) VALUES('124364'); +INSERT INTO `transmog_items` (`entry`) VALUES('124365'); +INSERT INTO `transmog_items` (`entry`) VALUES('124366'); +INSERT INTO `transmog_items` (`entry`) VALUES('124378'); +INSERT INTO `transmog_items` (`entry`) VALUES('124379'); +INSERT INTO `transmog_items` (`entry`) VALUES('124380'); +INSERT INTO `transmog_items` (`entry`) VALUES('124381'); +INSERT INTO `transmog_items` (`entry`) VALUES('124384'); +INSERT INTO `transmog_items` (`entry`) VALUES('124387'); +INSERT INTO `transmog_items` (`entry`) VALUES('124388'); +INSERT INTO `transmog_items` (`entry`) VALUES('124389'); +INSERT INTO `transmog_items` (`entry`) VALUES('124391'); +INSERT INTO `transmog_items` (`entry`) VALUES('124392'); +INSERT INTO `transmog_items` (`entry`) VALUES('124393'); +INSERT INTO `transmog_items` (`entry`) VALUES('124394'); +INSERT INTO `transmog_items` (`entry`) VALUES('124395'); +INSERT INTO `transmog_items` (`entry`) VALUES('124396'); +INSERT INTO `transmog_items` (`entry`) VALUES('124397'); +INSERT INTO `transmog_items` (`entry`) VALUES('124398'); +INSERT INTO `transmog_items` (`entry`) VALUES('124423'); +INSERT INTO `transmog_items` (`entry`) VALUES('124424'); +INSERT INTO `transmog_items` (`entry`) VALUES('124425'); +INSERT INTO `transmog_items` (`entry`) VALUES('124431'); +INSERT INTO `transmog_items` (`entry`) VALUES('124433'); +INSERT INTO `transmog_items` (`entry`) VALUES('124435'); +INSERT INTO `transmog_items` (`entry`) VALUES('124436'); +INSERT INTO `transmog_items` (`entry`) VALUES('124437'); +INSERT INTO `transmog_items` (`entry`) VALUES('124438'); +INSERT INTO `transmog_items` (`entry`) VALUES('124439'); +INSERT INTO `transmog_items` (`entry`) VALUES('124440'); +INSERT INTO `transmog_items` (`entry`) VALUES('124441'); +INSERT INTO `transmog_items` (`entry`) VALUES('124442'); +INSERT INTO `transmog_items` (`entry`) VALUES('124443'); +INSERT INTO `transmog_items` (`entry`) VALUES('124444'); +INSERT INTO `transmog_items` (`entry`) VALUES('124445'); +INSERT INTO `transmog_items` (`entry`) VALUES('124446'); +INSERT INTO `transmog_items` (`entry`) VALUES('124447'); +INSERT INTO `transmog_items` (`entry`) VALUES('124450'); +INSERT INTO `transmog_items` (`entry`) VALUES('124451'); +INSERT INTO `transmog_items` (`entry`) VALUES('124452'); +INSERT INTO `transmog_items` (`entry`) VALUES('124453'); +INSERT INTO `transmog_items` (`entry`) VALUES('124454'); +INSERT INTO `transmog_items` (`entry`) VALUES('124455'); +INSERT INTO `transmog_items` (`entry`) VALUES('124456'); +INSERT INTO `transmog_items` (`entry`) VALUES('124457'); +INSERT INTO `transmog_items` (`entry`) VALUES('124458'); +INSERT INTO `transmog_items` (`entry`) VALUES('124459'); +INSERT INTO `transmog_items` (`entry`) VALUES('124463'); +INSERT INTO `transmog_items` (`entry`) VALUES('124464'); +INSERT INTO `transmog_items` (`entry`) VALUES('124465'); +INSERT INTO `transmog_items` (`entry`) VALUES('124466'); +INSERT INTO `transmog_items` (`entry`) VALUES('124481'); +INSERT INTO `transmog_items` (`entry`) VALUES('124544'); +INSERT INTO `transmog_items` (`entry`) VALUES('124545'); +INSERT INTO `transmog_items` (`entry`) VALUES('124546'); +INSERT INTO `transmog_items` (`entry`) VALUES('124547'); +INSERT INTO `transmog_items` (`entry`) VALUES('124549'); +INSERT INTO `transmog_items` (`entry`) VALUES('124552'); +INSERT INTO `transmog_items` (`entry`) VALUES('124553'); +INSERT INTO `transmog_items` (`entry`) VALUES('124554'); +INSERT INTO `transmog_items` (`entry`) VALUES('124555'); +INSERT INTO `transmog_items` (`entry`) VALUES('124556'); +INSERT INTO `transmog_items` (`entry`) VALUES('124575'); +INSERT INTO `transmog_items` (`entry`) VALUES('124576'); +INSERT INTO `transmog_items` (`entry`) VALUES('124577'); +INSERT INTO `transmog_items` (`entry`) VALUES('124578'); +INSERT INTO `transmog_items` (`entry`) VALUES('124580'); +INSERT INTO `transmog_items` (`entry`) VALUES('124582'); +INSERT INTO `transmog_items` (`entry`) VALUES('124583'); +INSERT INTO `transmog_items` (`entry`) VALUES('124584'); +INSERT INTO `transmog_items` (`entry`) VALUES('124585'); +INSERT INTO `transmog_items` (`entry`) VALUES('124586'); +INSERT INTO `transmog_items` (`entry`) VALUES('124587'); +INSERT INTO `transmog_items` (`entry`) VALUES('124588'); +INSERT INTO `transmog_items` (`entry`) VALUES('124589'); +INSERT INTO `transmog_items` (`entry`) VALUES('124590'); +INSERT INTO `transmog_items` (`entry`) VALUES('124591'); +INSERT INTO `transmog_items` (`entry`) VALUES('124592'); +INSERT INTO `transmog_items` (`entry`) VALUES('124593'); +INSERT INTO `transmog_items` (`entry`) VALUES('124594'); +INSERT INTO `transmog_items` (`entry`) VALUES('124595'); +INSERT INTO `transmog_items` (`entry`) VALUES('124596'); +INSERT INTO `transmog_items` (`entry`) VALUES('124597'); +INSERT INTO `transmog_items` (`entry`) VALUES('124598'); +INSERT INTO `transmog_items` (`entry`) VALUES('124599'); +INSERT INTO `transmog_items` (`entry`) VALUES('124600'); +INSERT INTO `transmog_items` (`entry`) VALUES('124601'); +INSERT INTO `transmog_items` (`entry`) VALUES('124602'); +INSERT INTO `transmog_items` (`entry`) VALUES('124603'); +INSERT INTO `transmog_items` (`entry`) VALUES('124604'); +INSERT INTO `transmog_items` (`entry`) VALUES('124605'); +INSERT INTO `transmog_items` (`entry`) VALUES('124606'); +INSERT INTO `transmog_items` (`entry`) VALUES('124607'); +INSERT INTO `transmog_items` (`entry`) VALUES('124608'); +INSERT INTO `transmog_items` (`entry`) VALUES('124609'); +INSERT INTO `transmog_items` (`entry`) VALUES('124610'); +INSERT INTO `transmog_items` (`entry`) VALUES('124611'); +INSERT INTO `transmog_items` (`entry`) VALUES('124612'); +INSERT INTO `transmog_items` (`entry`) VALUES('124613'); +INSERT INTO `transmog_items` (`entry`) VALUES('124614'); +INSERT INTO `transmog_items` (`entry`) VALUES('124615'); +INSERT INTO `transmog_items` (`entry`) VALUES('124616'); +INSERT INTO `transmog_items` (`entry`) VALUES('124617'); +INSERT INTO `transmog_items` (`entry`) VALUES('124618'); +INSERT INTO `transmog_items` (`entry`) VALUES('124619'); +INSERT INTO `transmog_items` (`entry`) VALUES('124620'); +INSERT INTO `transmog_items` (`entry`) VALUES('124621'); +INSERT INTO `transmog_items` (`entry`) VALUES('124622'); +INSERT INTO `transmog_items` (`entry`) VALUES('124623'); +INSERT INTO `transmog_items` (`entry`) VALUES('124624'); +INSERT INTO `transmog_items` (`entry`) VALUES('124625'); +INSERT INTO `transmog_items` (`entry`) VALUES('124626'); +INSERT INTO `transmog_items` (`entry`) VALUES('124627'); +INSERT INTO `transmog_items` (`entry`) VALUES('124628'); +INSERT INTO `transmog_items` (`entry`) VALUES('124629'); +INSERT INTO `transmog_items` (`entry`) VALUES('124630'); +INSERT INTO `transmog_items` (`entry`) VALUES('124631'); +INSERT INTO `transmog_items` (`entry`) VALUES('124632'); +INSERT INTO `transmog_items` (`entry`) VALUES('124633'); +INSERT INTO `transmog_items` (`entry`) VALUES('124634'); +INSERT INTO `transmog_items` (`entry`) VALUES('124635'); +INSERT INTO `transmog_items` (`entry`) VALUES('124636'); +INSERT INTO `transmog_items` (`entry`) VALUES('124637'); +INSERT INTO `transmog_items` (`entry`) VALUES('124638'); +INSERT INTO `transmog_items` (`entry`) VALUES('124639'); +INSERT INTO `transmog_items` (`entry`) VALUES('124640'); +INSERT INTO `transmog_items` (`entry`) VALUES('124641'); +INSERT INTO `transmog_items` (`entry`) VALUES('124642'); +INSERT INTO `transmog_items` (`entry`) VALUES('124643'); +INSERT INTO `transmog_items` (`entry`) VALUES('124644'); +INSERT INTO `transmog_items` (`entry`) VALUES('124645'); +INSERT INTO `transmog_items` (`entry`) VALUES('124646'); +INSERT INTO `transmog_items` (`entry`) VALUES('124647'); +INSERT INTO `transmog_items` (`entry`) VALUES('124648'); +INSERT INTO `transmog_items` (`entry`) VALUES('124649'); +INSERT INTO `transmog_items` (`entry`) VALUES('124650'); +INSERT INTO `transmog_items` (`entry`) VALUES('124651'); +INSERT INTO `transmog_items` (`entry`) VALUES('124652'); +INSERT INTO `transmog_items` (`entry`) VALUES('124653'); +INSERT INTO `transmog_items` (`entry`) VALUES('124654'); +INSERT INTO `transmog_items` (`entry`) VALUES('124655'); +INSERT INTO `transmog_items` (`entry`) VALUES('124656'); +INSERT INTO `transmog_items` (`entry`) VALUES('124657'); +INSERT INTO `transmog_items` (`entry`) VALUES('124658'); +INSERT INTO `transmog_items` (`entry`) VALUES('124659'); +INSERT INTO `transmog_items` (`entry`) VALUES('124660'); +INSERT INTO `transmog_items` (`entry`) VALUES('124661'); +INSERT INTO `transmog_items` (`entry`) VALUES('124662'); +INSERT INTO `transmog_items` (`entry`) VALUES('124663'); +INSERT INTO `transmog_items` (`entry`) VALUES('124664'); +INSERT INTO `transmog_items` (`entry`) VALUES('124665'); +INSERT INTO `transmog_items` (`entry`) VALUES('124666'); +INSERT INTO `transmog_items` (`entry`) VALUES('124667'); +INSERT INTO `transmog_items` (`entry`) VALUES('124668'); +INSERT INTO `transmog_items` (`entry`) VALUES('124669'); +INSERT INTO `transmog_items` (`entry`) VALUES('124670'); +INSERT INTO `transmog_items` (`entry`) VALUES('124671'); +INSERT INTO `transmog_items` (`entry`) VALUES('124672'); +INSERT INTO `transmog_items` (`entry`) VALUES('124673'); +INSERT INTO `transmog_items` (`entry`) VALUES('124674'); +INSERT INTO `transmog_items` (`entry`) VALUES('124675'); +INSERT INTO `transmog_items` (`entry`) VALUES('124676'); +INSERT INTO `transmog_items` (`entry`) VALUES('124677'); +INSERT INTO `transmog_items` (`entry`) VALUES('124678'); +INSERT INTO `transmog_items` (`entry`) VALUES('124679'); +INSERT INTO `transmog_items` (`entry`) VALUES('124680'); +INSERT INTO `transmog_items` (`entry`) VALUES('124681'); +INSERT INTO `transmog_items` (`entry`) VALUES('124682'); +INSERT INTO `transmog_items` (`entry`) VALUES('124683'); +INSERT INTO `transmog_items` (`entry`) VALUES('124684'); +INSERT INTO `transmog_items` (`entry`) VALUES('124685'); +INSERT INTO `transmog_items` (`entry`) VALUES('124686'); +INSERT INTO `transmog_items` (`entry`) VALUES('124687'); +INSERT INTO `transmog_items` (`entry`) VALUES('124688'); +INSERT INTO `transmog_items` (`entry`) VALUES('124689'); +INSERT INTO `transmog_items` (`entry`) VALUES('124690'); +INSERT INTO `transmog_items` (`entry`) VALUES('124691'); +INSERT INTO `transmog_items` (`entry`) VALUES('124692'); +INSERT INTO `transmog_items` (`entry`) VALUES('124693'); +INSERT INTO `transmog_items` (`entry`) VALUES('124694'); +INSERT INTO `transmog_items` (`entry`) VALUES('124695'); +INSERT INTO `transmog_items` (`entry`) VALUES('124696'); +INSERT INTO `transmog_items` (`entry`) VALUES('124697'); +INSERT INTO `transmog_items` (`entry`) VALUES('124698'); +INSERT INTO `transmog_items` (`entry`) VALUES('124699'); +INSERT INTO `transmog_items` (`entry`) VALUES('124700'); +INSERT INTO `transmog_items` (`entry`) VALUES('124701'); +INSERT INTO `transmog_items` (`entry`) VALUES('124702'); +INSERT INTO `transmog_items` (`entry`) VALUES('124703'); +INSERT INTO `transmog_items` (`entry`) VALUES('124704'); +INSERT INTO `transmog_items` (`entry`) VALUES('124705'); +INSERT INTO `transmog_items` (`entry`) VALUES('124706'); +INSERT INTO `transmog_items` (`entry`) VALUES('124707'); +INSERT INTO `transmog_items` (`entry`) VALUES('124708'); +INSERT INTO `transmog_items` (`entry`) VALUES('124709'); +INSERT INTO `transmog_items` (`entry`) VALUES('124710'); +INSERT INTO `transmog_items` (`entry`) VALUES('124711'); +INSERT INTO `transmog_items` (`entry`) VALUES('124712'); +INSERT INTO `transmog_items` (`entry`) VALUES('124713'); +INSERT INTO `transmog_items` (`entry`) VALUES('124714'); +INSERT INTO `transmog_items` (`entry`) VALUES('124715'); +INSERT INTO `transmog_items` (`entry`) VALUES('124716'); +INSERT INTO `transmog_items` (`entry`) VALUES('124717'); +INSERT INTO `transmog_items` (`entry`) VALUES('124718'); +INSERT INTO `transmog_items` (`entry`) VALUES('124719'); +INSERT INTO `transmog_items` (`entry`) VALUES('124720'); +INSERT INTO `transmog_items` (`entry`) VALUES('124721'); +INSERT INTO `transmog_items` (`entry`) VALUES('124722'); +INSERT INTO `transmog_items` (`entry`) VALUES('124723'); +INSERT INTO `transmog_items` (`entry`) VALUES('124724'); +INSERT INTO `transmog_items` (`entry`) VALUES('124725'); +INSERT INTO `transmog_items` (`entry`) VALUES('124726'); +INSERT INTO `transmog_items` (`entry`) VALUES('124727'); +INSERT INTO `transmog_items` (`entry`) VALUES('124728'); +INSERT INTO `transmog_items` (`entry`) VALUES('124729'); +INSERT INTO `transmog_items` (`entry`) VALUES('124730'); +INSERT INTO `transmog_items` (`entry`) VALUES('124731'); +INSERT INTO `transmog_items` (`entry`) VALUES('124732'); +INSERT INTO `transmog_items` (`entry`) VALUES('124733'); +INSERT INTO `transmog_items` (`entry`) VALUES('124734'); +INSERT INTO `transmog_items` (`entry`) VALUES('124735'); +INSERT INTO `transmog_items` (`entry`) VALUES('124736'); +INSERT INTO `transmog_items` (`entry`) VALUES('124737'); +INSERT INTO `transmog_items` (`entry`) VALUES('124738'); +INSERT INTO `transmog_items` (`entry`) VALUES('124739'); +INSERT INTO `transmog_items` (`entry`) VALUES('124740'); +INSERT INTO `transmog_items` (`entry`) VALUES('124741'); +INSERT INTO `transmog_items` (`entry`) VALUES('124742'); +INSERT INTO `transmog_items` (`entry`) VALUES('124743'); +INSERT INTO `transmog_items` (`entry`) VALUES('124744'); +INSERT INTO `transmog_items` (`entry`) VALUES('124745'); +INSERT INTO `transmog_items` (`entry`) VALUES('124746'); +INSERT INTO `transmog_items` (`entry`) VALUES('124747'); +INSERT INTO `transmog_items` (`entry`) VALUES('124748'); +INSERT INTO `transmog_items` (`entry`) VALUES('124749'); +INSERT INTO `transmog_items` (`entry`) VALUES('124750'); +INSERT INTO `transmog_items` (`entry`) VALUES('124751'); +INSERT INTO `transmog_items` (`entry`) VALUES('124752'); +INSERT INTO `transmog_items` (`entry`) VALUES('124753'); +INSERT INTO `transmog_items` (`entry`) VALUES('124754'); +INSERT INTO `transmog_items` (`entry`) VALUES('124755'); +INSERT INTO `transmog_items` (`entry`) VALUES('124756'); +INSERT INTO `transmog_items` (`entry`) VALUES('124757'); +INSERT INTO `transmog_items` (`entry`) VALUES('124758'); +INSERT INTO `transmog_items` (`entry`) VALUES('124759'); +INSERT INTO `transmog_items` (`entry`) VALUES('124760'); +INSERT INTO `transmog_items` (`entry`) VALUES('124761'); +INSERT INTO `transmog_items` (`entry`) VALUES('124762'); +INSERT INTO `transmog_items` (`entry`) VALUES('124763'); +INSERT INTO `transmog_items` (`entry`) VALUES('124764'); +INSERT INTO `transmog_items` (`entry`) VALUES('124765'); +INSERT INTO `transmog_items` (`entry`) VALUES('124766'); +INSERT INTO `transmog_items` (`entry`) VALUES('124767'); +INSERT INTO `transmog_items` (`entry`) VALUES('124768'); +INSERT INTO `transmog_items` (`entry`) VALUES('124769'); +INSERT INTO `transmog_items` (`entry`) VALUES('124770'); +INSERT INTO `transmog_items` (`entry`) VALUES('124771'); +INSERT INTO `transmog_items` (`entry`) VALUES('124772'); +INSERT INTO `transmog_items` (`entry`) VALUES('124773'); +INSERT INTO `transmog_items` (`entry`) VALUES('124774'); +INSERT INTO `transmog_items` (`entry`) VALUES('124775'); +INSERT INTO `transmog_items` (`entry`) VALUES('124776'); +INSERT INTO `transmog_items` (`entry`) VALUES('124777'); +INSERT INTO `transmog_items` (`entry`) VALUES('124778'); +INSERT INTO `transmog_items` (`entry`) VALUES('124779'); +INSERT INTO `transmog_items` (`entry`) VALUES('124780'); +INSERT INTO `transmog_items` (`entry`) VALUES('124781'); +INSERT INTO `transmog_items` (`entry`) VALUES('124782'); +INSERT INTO `transmog_items` (`entry`) VALUES('124783'); +INSERT INTO `transmog_items` (`entry`) VALUES('124784'); +INSERT INTO `transmog_items` (`entry`) VALUES('124785'); +INSERT INTO `transmog_items` (`entry`) VALUES('124786'); +INSERT INTO `transmog_items` (`entry`) VALUES('124787'); +INSERT INTO `transmog_items` (`entry`) VALUES('124788'); +INSERT INTO `transmog_items` (`entry`) VALUES('124789'); +INSERT INTO `transmog_items` (`entry`) VALUES('124790'); +INSERT INTO `transmog_items` (`entry`) VALUES('124791'); +INSERT INTO `transmog_items` (`entry`) VALUES('124792'); +INSERT INTO `transmog_items` (`entry`) VALUES('124793'); +INSERT INTO `transmog_items` (`entry`) VALUES('124794'); +INSERT INTO `transmog_items` (`entry`) VALUES('124795'); +INSERT INTO `transmog_items` (`entry`) VALUES('124796'); +INSERT INTO `transmog_items` (`entry`) VALUES('124797'); +INSERT INTO `transmog_items` (`entry`) VALUES('124798'); +INSERT INTO `transmog_items` (`entry`) VALUES('124799'); +INSERT INTO `transmog_items` (`entry`) VALUES('124800'); +INSERT INTO `transmog_items` (`entry`) VALUES('124801'); +INSERT INTO `transmog_items` (`entry`) VALUES('124802'); +INSERT INTO `transmog_items` (`entry`) VALUES('124803'); +INSERT INTO `transmog_items` (`entry`) VALUES('124804'); +INSERT INTO `transmog_items` (`entry`) VALUES('124805'); +INSERT INTO `transmog_items` (`entry`) VALUES('124806'); +INSERT INTO `transmog_items` (`entry`) VALUES('124807'); +INSERT INTO `transmog_items` (`entry`) VALUES('124808'); +INSERT INTO `transmog_items` (`entry`) VALUES('124809'); +INSERT INTO `transmog_items` (`entry`) VALUES('124810'); +INSERT INTO `transmog_items` (`entry`) VALUES('124811'); +INSERT INTO `transmog_items` (`entry`) VALUES('124812'); +INSERT INTO `transmog_items` (`entry`) VALUES('124813'); +INSERT INTO `transmog_items` (`entry`) VALUES('124814'); +INSERT INTO `transmog_items` (`entry`) VALUES('124815'); +INSERT INTO `transmog_items` (`entry`) VALUES('124816'); +INSERT INTO `transmog_items` (`entry`) VALUES('124817'); +INSERT INTO `transmog_items` (`entry`) VALUES('124818'); +INSERT INTO `transmog_items` (`entry`) VALUES('124819'); +INSERT INTO `transmog_items` (`entry`) VALUES('124820'); +INSERT INTO `transmog_items` (`entry`) VALUES('124821'); +INSERT INTO `transmog_items` (`entry`) VALUES('124822'); +INSERT INTO `transmog_items` (`entry`) VALUES('124823'); +INSERT INTO `transmog_items` (`entry`) VALUES('124824'); +INSERT INTO `transmog_items` (`entry`) VALUES('124825'); +INSERT INTO `transmog_items` (`entry`) VALUES('124826'); +INSERT INTO `transmog_items` (`entry`) VALUES('124827'); +INSERT INTO `transmog_items` (`entry`) VALUES('124828'); +INSERT INTO `transmog_items` (`entry`) VALUES('124829'); +INSERT INTO `transmog_items` (`entry`) VALUES('124830'); +INSERT INTO `transmog_items` (`entry`) VALUES('124831'); +INSERT INTO `transmog_items` (`entry`) VALUES('124832'); +INSERT INTO `transmog_items` (`entry`) VALUES('124833'); +INSERT INTO `transmog_items` (`entry`) VALUES('124834'); +INSERT INTO `transmog_items` (`entry`) VALUES('124835'); +INSERT INTO `transmog_items` (`entry`) VALUES('124836'); +INSERT INTO `transmog_items` (`entry`) VALUES('124837'); +INSERT INTO `transmog_items` (`entry`) VALUES('124838'); +INSERT INTO `transmog_items` (`entry`) VALUES('124839'); +INSERT INTO `transmog_items` (`entry`) VALUES('124840'); +INSERT INTO `transmog_items` (`entry`) VALUES('124841'); +INSERT INTO `transmog_items` (`entry`) VALUES('124842'); +INSERT INTO `transmog_items` (`entry`) VALUES('124843'); +INSERT INTO `transmog_items` (`entry`) VALUES('124844'); +INSERT INTO `transmog_items` (`entry`) VALUES('124845'); +INSERT INTO `transmog_items` (`entry`) VALUES('124846'); +INSERT INTO `transmog_items` (`entry`) VALUES('124847'); +INSERT INTO `transmog_items` (`entry`) VALUES('124848'); +INSERT INTO `transmog_items` (`entry`) VALUES('124849'); +INSERT INTO `transmog_items` (`entry`) VALUES('124850'); +INSERT INTO `transmog_items` (`entry`) VALUES('124851'); +INSERT INTO `transmog_items` (`entry`) VALUES('124852'); +INSERT INTO `transmog_items` (`entry`) VALUES('124853'); +INSERT INTO `transmog_items` (`entry`) VALUES('124854'); +INSERT INTO `transmog_items` (`entry`) VALUES('124855'); +INSERT INTO `transmog_items` (`entry`) VALUES('124856'); +INSERT INTO `transmog_items` (`entry`) VALUES('124857'); +INSERT INTO `transmog_items` (`entry`) VALUES('124858'); +INSERT INTO `transmog_items` (`entry`) VALUES('124859'); +INSERT INTO `transmog_items` (`entry`) VALUES('124860'); +INSERT INTO `transmog_items` (`entry`) VALUES('124861'); +INSERT INTO `transmog_items` (`entry`) VALUES('124862'); +INSERT INTO `transmog_items` (`entry`) VALUES('124863'); +INSERT INTO `transmog_items` (`entry`) VALUES('124864'); +INSERT INTO `transmog_items` (`entry`) VALUES('124865'); +INSERT INTO `transmog_items` (`entry`) VALUES('124866'); +INSERT INTO `transmog_items` (`entry`) VALUES('124867'); +INSERT INTO `transmog_items` (`entry`) VALUES('124868'); +INSERT INTO `transmog_items` (`entry`) VALUES('124869'); +INSERT INTO `transmog_items` (`entry`) VALUES('124870'); +INSERT INTO `transmog_items` (`entry`) VALUES('124871'); +INSERT INTO `transmog_items` (`entry`) VALUES('124872'); +INSERT INTO `transmog_items` (`entry`) VALUES('124873'); +INSERT INTO `transmog_items` (`entry`) VALUES('124874'); +INSERT INTO `transmog_items` (`entry`) VALUES('124875'); +INSERT INTO `transmog_items` (`entry`) VALUES('124876'); +INSERT INTO `transmog_items` (`entry`) VALUES('124877'); +INSERT INTO `transmog_items` (`entry`) VALUES('124878'); +INSERT INTO `transmog_items` (`entry`) VALUES('124879'); +INSERT INTO `transmog_items` (`entry`) VALUES('124880'); +INSERT INTO `transmog_items` (`entry`) VALUES('124881'); +INSERT INTO `transmog_items` (`entry`) VALUES('124882'); +INSERT INTO `transmog_items` (`entry`) VALUES('124883'); +INSERT INTO `transmog_items` (`entry`) VALUES('124884'); +INSERT INTO `transmog_items` (`entry`) VALUES('124885'); +INSERT INTO `transmog_items` (`entry`) VALUES('124886'); +INSERT INTO `transmog_items` (`entry`) VALUES('124887'); +INSERT INTO `transmog_items` (`entry`) VALUES('124888'); +INSERT INTO `transmog_items` (`entry`) VALUES('124889'); +INSERT INTO `transmog_items` (`entry`) VALUES('124890'); +INSERT INTO `transmog_items` (`entry`) VALUES('124891'); +INSERT INTO `transmog_items` (`entry`) VALUES('124892'); +INSERT INTO `transmog_items` (`entry`) VALUES('124893'); +INSERT INTO `transmog_items` (`entry`) VALUES('124894'); +INSERT INTO `transmog_items` (`entry`) VALUES('124895'); +INSERT INTO `transmog_items` (`entry`) VALUES('124896'); +INSERT INTO `transmog_items` (`entry`) VALUES('124897'); +INSERT INTO `transmog_items` (`entry`) VALUES('124898'); +INSERT INTO `transmog_items` (`entry`) VALUES('124899'); +INSERT INTO `transmog_items` (`entry`) VALUES('124900'); +INSERT INTO `transmog_items` (`entry`) VALUES('124901'); +INSERT INTO `transmog_items` (`entry`) VALUES('124902'); +INSERT INTO `transmog_items` (`entry`) VALUES('124903'); +INSERT INTO `transmog_items` (`entry`) VALUES('124904'); +INSERT INTO `transmog_items` (`entry`) VALUES('124905'); +INSERT INTO `transmog_items` (`entry`) VALUES('124906'); +INSERT INTO `transmog_items` (`entry`) VALUES('124907'); +INSERT INTO `transmog_items` (`entry`) VALUES('124908'); +INSERT INTO `transmog_items` (`entry`) VALUES('124909'); +INSERT INTO `transmog_items` (`entry`) VALUES('124910'); +INSERT INTO `transmog_items` (`entry`) VALUES('124911'); +INSERT INTO `transmog_items` (`entry`) VALUES('124912'); +INSERT INTO `transmog_items` (`entry`) VALUES('124913'); +INSERT INTO `transmog_items` (`entry`) VALUES('124914'); +INSERT INTO `transmog_items` (`entry`) VALUES('124915'); +INSERT INTO `transmog_items` (`entry`) VALUES('124916'); +INSERT INTO `transmog_items` (`entry`) VALUES('124917'); +INSERT INTO `transmog_items` (`entry`) VALUES('124918'); +INSERT INTO `transmog_items` (`entry`) VALUES('124919'); +INSERT INTO `transmog_items` (`entry`) VALUES('124920'); +INSERT INTO `transmog_items` (`entry`) VALUES('124921'); +INSERT INTO `transmog_items` (`entry`) VALUES('124922'); +INSERT INTO `transmog_items` (`entry`) VALUES('124923'); +INSERT INTO `transmog_items` (`entry`) VALUES('124924'); +INSERT INTO `transmog_items` (`entry`) VALUES('124925'); +INSERT INTO `transmog_items` (`entry`) VALUES('124926'); +INSERT INTO `transmog_items` (`entry`) VALUES('124927'); +INSERT INTO `transmog_items` (`entry`) VALUES('124928'); +INSERT INTO `transmog_items` (`entry`) VALUES('124929'); +INSERT INTO `transmog_items` (`entry`) VALUES('124930'); +INSERT INTO `transmog_items` (`entry`) VALUES('124931'); +INSERT INTO `transmog_items` (`entry`) VALUES('124932'); +INSERT INTO `transmog_items` (`entry`) VALUES('124933'); +INSERT INTO `transmog_items` (`entry`) VALUES('124934'); +INSERT INTO `transmog_items` (`entry`) VALUES('124935'); +INSERT INTO `transmog_items` (`entry`) VALUES('124936'); +INSERT INTO `transmog_items` (`entry`) VALUES('124937'); +INSERT INTO `transmog_items` (`entry`) VALUES('124938'); +INSERT INTO `transmog_items` (`entry`) VALUES('124939'); +INSERT INTO `transmog_items` (`entry`) VALUES('124940'); +INSERT INTO `transmog_items` (`entry`) VALUES('124941'); +INSERT INTO `transmog_items` (`entry`) VALUES('124942'); +INSERT INTO `transmog_items` (`entry`) VALUES('124943'); +INSERT INTO `transmog_items` (`entry`) VALUES('124944'); +INSERT INTO `transmog_items` (`entry`) VALUES('124945'); +INSERT INTO `transmog_items` (`entry`) VALUES('124946'); +INSERT INTO `transmog_items` (`entry`) VALUES('124947'); +INSERT INTO `transmog_items` (`entry`) VALUES('124948'); +INSERT INTO `transmog_items` (`entry`) VALUES('124949'); +INSERT INTO `transmog_items` (`entry`) VALUES('124950'); +INSERT INTO `transmog_items` (`entry`) VALUES('124951'); +INSERT INTO `transmog_items` (`entry`) VALUES('124952'); +INSERT INTO `transmog_items` (`entry`) VALUES('124953'); +INSERT INTO `transmog_items` (`entry`) VALUES('124954'); +INSERT INTO `transmog_items` (`entry`) VALUES('124955'); +INSERT INTO `transmog_items` (`entry`) VALUES('124956'); +INSERT INTO `transmog_items` (`entry`) VALUES('124957'); +INSERT INTO `transmog_items` (`entry`) VALUES('124958'); +INSERT INTO `transmog_items` (`entry`) VALUES('124959'); +INSERT INTO `transmog_items` (`entry`) VALUES('124960'); +INSERT INTO `transmog_items` (`entry`) VALUES('124961'); +INSERT INTO `transmog_items` (`entry`) VALUES('124962'); +INSERT INTO `transmog_items` (`entry`) VALUES('124963'); +INSERT INTO `transmog_items` (`entry`) VALUES('124964'); +INSERT INTO `transmog_items` (`entry`) VALUES('124965'); +INSERT INTO `transmog_items` (`entry`) VALUES('124966'); +INSERT INTO `transmog_items` (`entry`) VALUES('124967'); +INSERT INTO `transmog_items` (`entry`) VALUES('124968'); +INSERT INTO `transmog_items` (`entry`) VALUES('124969'); +INSERT INTO `transmog_items` (`entry`) VALUES('124970'); +INSERT INTO `transmog_items` (`entry`) VALUES('124971'); +INSERT INTO `transmog_items` (`entry`) VALUES('124972'); +INSERT INTO `transmog_items` (`entry`) VALUES('124973'); +INSERT INTO `transmog_items` (`entry`) VALUES('124974'); +INSERT INTO `transmog_items` (`entry`) VALUES('124975'); +INSERT INTO `transmog_items` (`entry`) VALUES('124976'); +INSERT INTO `transmog_items` (`entry`) VALUES('124977'); +INSERT INTO `transmog_items` (`entry`) VALUES('124978'); +INSERT INTO `transmog_items` (`entry`) VALUES('124979'); +INSERT INTO `transmog_items` (`entry`) VALUES('124980'); +INSERT INTO `transmog_items` (`entry`) VALUES('124981'); +INSERT INTO `transmog_items` (`entry`) VALUES('124982'); +INSERT INTO `transmog_items` (`entry`) VALUES('124983'); +INSERT INTO `transmog_items` (`entry`) VALUES('124984'); +INSERT INTO `transmog_items` (`entry`) VALUES('124985'); +INSERT INTO `transmog_items` (`entry`) VALUES('124986'); +INSERT INTO `transmog_items` (`entry`) VALUES('124987'); +INSERT INTO `transmog_items` (`entry`) VALUES('124988'); +INSERT INTO `transmog_items` (`entry`) VALUES('124989'); +INSERT INTO `transmog_items` (`entry`) VALUES('124990'); +INSERT INTO `transmog_items` (`entry`) VALUES('124991'); +INSERT INTO `transmog_items` (`entry`) VALUES('124992'); +INSERT INTO `transmog_items` (`entry`) VALUES('124993'); +INSERT INTO `transmog_items` (`entry`) VALUES('124994'); +INSERT INTO `transmog_items` (`entry`) VALUES('124995'); +INSERT INTO `transmog_items` (`entry`) VALUES('124996'); +INSERT INTO `transmog_items` (`entry`) VALUES('124997'); +INSERT INTO `transmog_items` (`entry`) VALUES('124998'); +INSERT INTO `transmog_items` (`entry`) VALUES('124999'); +INSERT INTO `transmog_items` (`entry`) VALUES('125000'); +INSERT INTO `transmog_items` (`entry`) VALUES('125001'); +INSERT INTO `transmog_items` (`entry`) VALUES('125002'); +INSERT INTO `transmog_items` (`entry`) VALUES('125003'); +INSERT INTO `transmog_items` (`entry`) VALUES('125004'); +INSERT INTO `transmog_items` (`entry`) VALUES('125005'); +INSERT INTO `transmog_items` (`entry`) VALUES('125006'); +INSERT INTO `transmog_items` (`entry`) VALUES('125007'); +INSERT INTO `transmog_items` (`entry`) VALUES('125008'); +INSERT INTO `transmog_items` (`entry`) VALUES('125009'); +INSERT INTO `transmog_items` (`entry`) VALUES('125010'); +INSERT INTO `transmog_items` (`entry`) VALUES('125011'); +INSERT INTO `transmog_items` (`entry`) VALUES('125012'); +INSERT INTO `transmog_items` (`entry`) VALUES('125013'); +INSERT INTO `transmog_items` (`entry`) VALUES('125014'); +INSERT INTO `transmog_items` (`entry`) VALUES('125015'); +INSERT INTO `transmog_items` (`entry`) VALUES('125016'); +INSERT INTO `transmog_items` (`entry`) VALUES('125017'); +INSERT INTO `transmog_items` (`entry`) VALUES('125018'); +INSERT INTO `transmog_items` (`entry`) VALUES('125019'); +INSERT INTO `transmog_items` (`entry`) VALUES('125020'); +INSERT INTO `transmog_items` (`entry`) VALUES('125021'); +INSERT INTO `transmog_items` (`entry`) VALUES('125022'); +INSERT INTO `transmog_items` (`entry`) VALUES('125023'); +INSERT INTO `transmog_items` (`entry`) VALUES('125024'); +INSERT INTO `transmog_items` (`entry`) VALUES('125025'); +INSERT INTO `transmog_items` (`entry`) VALUES('125026'); +INSERT INTO `transmog_items` (`entry`) VALUES('125027'); +INSERT INTO `transmog_items` (`entry`) VALUES('125028'); +INSERT INTO `transmog_items` (`entry`) VALUES('125029'); +INSERT INTO `transmog_items` (`entry`) VALUES('125030'); +INSERT INTO `transmog_items` (`entry`) VALUES('125031'); +INSERT INTO `transmog_items` (`entry`) VALUES('125032'); +INSERT INTO `transmog_items` (`entry`) VALUES('125033'); +INSERT INTO `transmog_items` (`entry`) VALUES('125034'); +INSERT INTO `transmog_items` (`entry`) VALUES('125035'); +INSERT INTO `transmog_items` (`entry`) VALUES('125036'); +INSERT INTO `transmog_items` (`entry`) VALUES('125037'); +INSERT INTO `transmog_items` (`entry`) VALUES('125038'); +INSERT INTO `transmog_items` (`entry`) VALUES('125039'); +INSERT INTO `transmog_items` (`entry`) VALUES('125040'); +INSERT INTO `transmog_items` (`entry`) VALUES('125041'); +INSERT INTO `transmog_items` (`entry`) VALUES('125042'); +INSERT INTO `transmog_items` (`entry`) VALUES('125043'); +INSERT INTO `transmog_items` (`entry`) VALUES('125072'); +INSERT INTO `transmog_items` (`entry`) VALUES('125073'); +INSERT INTO `transmog_items` (`entry`) VALUES('125074'); +INSERT INTO `transmog_items` (`entry`) VALUES('125075'); +INSERT INTO `transmog_items` (`entry`) VALUES('125076'); +INSERT INTO `transmog_items` (`entry`) VALUES('125077'); +INSERT INTO `transmog_items` (`entry`) VALUES('125078'); +INSERT INTO `transmog_items` (`entry`) VALUES('125079'); +INSERT INTO `transmog_items` (`entry`) VALUES('125080'); +INSERT INTO `transmog_items` (`entry`) VALUES('125081'); +INSERT INTO `transmog_items` (`entry`) VALUES('125082'); +INSERT INTO `transmog_items` (`entry`) VALUES('125083'); +INSERT INTO `transmog_items` (`entry`) VALUES('125084'); +INSERT INTO `transmog_items` (`entry`) VALUES('125085'); +INSERT INTO `transmog_items` (`entry`) VALUES('125100'); +INSERT INTO `transmog_items` (`entry`) VALUES('125101'); +INSERT INTO `transmog_items` (`entry`) VALUES('125102'); +INSERT INTO `transmog_items` (`entry`) VALUES('125103'); +INSERT INTO `transmog_items` (`entry`) VALUES('125104'); +INSERT INTO `transmog_items` (`entry`) VALUES('125105'); +INSERT INTO `transmog_items` (`entry`) VALUES('125106'); +INSERT INTO `transmog_items` (`entry`) VALUES('125107'); +INSERT INTO `transmog_items` (`entry`) VALUES('125108'); +INSERT INTO `transmog_items` (`entry`) VALUES('125109'); +INSERT INTO `transmog_items` (`entry`) VALUES('125110'); +INSERT INTO `transmog_items` (`entry`) VALUES('125111'); +INSERT INTO `transmog_items` (`entry`) VALUES('125112'); +INSERT INTO `transmog_items` (`entry`) VALUES('125113'); +INSERT INTO `transmog_items` (`entry`) VALUES('125114'); +INSERT INTO `transmog_items` (`entry`) VALUES('125115'); +INSERT INTO `transmog_items` (`entry`) VALUES('125116'); +INSERT INTO `transmog_items` (`entry`) VALUES('125117'); +INSERT INTO `transmog_items` (`entry`) VALUES('125118'); +INSERT INTO `transmog_items` (`entry`) VALUES('125119'); +INSERT INTO `transmog_items` (`entry`) VALUES('125120'); +INSERT INTO `transmog_items` (`entry`) VALUES('125121'); +INSERT INTO `transmog_items` (`entry`) VALUES('125122'); +INSERT INTO `transmog_items` (`entry`) VALUES('125123'); +INSERT INTO `transmog_items` (`entry`) VALUES('125124'); +INSERT INTO `transmog_items` (`entry`) VALUES('125125'); +INSERT INTO `transmog_items` (`entry`) VALUES('125126'); +INSERT INTO `transmog_items` (`entry`) VALUES('125127'); +INSERT INTO `transmog_items` (`entry`) VALUES('125184'); +INSERT INTO `transmog_items` (`entry`) VALUES('125185'); +INSERT INTO `transmog_items` (`entry`) VALUES('125186'); +INSERT INTO `transmog_items` (`entry`) VALUES('125187'); +INSERT INTO `transmog_items` (`entry`) VALUES('125188'); +INSERT INTO `transmog_items` (`entry`) VALUES('125189'); +INSERT INTO `transmog_items` (`entry`) VALUES('125190'); +INSERT INTO `transmog_items` (`entry`) VALUES('125191'); +INSERT INTO `transmog_items` (`entry`) VALUES('125192'); +INSERT INTO `transmog_items` (`entry`) VALUES('125193'); +INSERT INTO `transmog_items` (`entry`) VALUES('125194'); +INSERT INTO `transmog_items` (`entry`) VALUES('125195'); +INSERT INTO `transmog_items` (`entry`) VALUES('125196'); +INSERT INTO `transmog_items` (`entry`) VALUES('125197'); +INSERT INTO `transmog_items` (`entry`) VALUES('125212'); +INSERT INTO `transmog_items` (`entry`) VALUES('125213'); +INSERT INTO `transmog_items` (`entry`) VALUES('125214'); +INSERT INTO `transmog_items` (`entry`) VALUES('125215'); +INSERT INTO `transmog_items` (`entry`) VALUES('125216'); +INSERT INTO `transmog_items` (`entry`) VALUES('125217'); +INSERT INTO `transmog_items` (`entry`) VALUES('125218'); +INSERT INTO `transmog_items` (`entry`) VALUES('125219'); +INSERT INTO `transmog_items` (`entry`) VALUES('125220'); +INSERT INTO `transmog_items` (`entry`) VALUES('125221'); +INSERT INTO `transmog_items` (`entry`) VALUES('125222'); +INSERT INTO `transmog_items` (`entry`) VALUES('125223'); +INSERT INTO `transmog_items` (`entry`) VALUES('125224'); +INSERT INTO `transmog_items` (`entry`) VALUES('125225'); +INSERT INTO `transmog_items` (`entry`) VALUES('125226'); +INSERT INTO `transmog_items` (`entry`) VALUES('125227'); +INSERT INTO `transmog_items` (`entry`) VALUES('125228'); +INSERT INTO `transmog_items` (`entry`) VALUES('125229'); +INSERT INTO `transmog_items` (`entry`) VALUES('125230'); +INSERT INTO `transmog_items` (`entry`) VALUES('125231'); +INSERT INTO `transmog_items` (`entry`) VALUES('125232'); +INSERT INTO `transmog_items` (`entry`) VALUES('125233'); +INSERT INTO `transmog_items` (`entry`) VALUES('125234'); +INSERT INTO `transmog_items` (`entry`) VALUES('125235'); +INSERT INTO `transmog_items` (`entry`) VALUES('125236'); +INSERT INTO `transmog_items` (`entry`) VALUES('125237'); +INSERT INTO `transmog_items` (`entry`) VALUES('125238'); +INSERT INTO `transmog_items` (`entry`) VALUES('125239'); +INSERT INTO `transmog_items` (`entry`) VALUES('125240'); +INSERT INTO `transmog_items` (`entry`) VALUES('125241'); +INSERT INTO `transmog_items` (`entry`) VALUES('125242'); +INSERT INTO `transmog_items` (`entry`) VALUES('125243'); +INSERT INTO `transmog_items` (`entry`) VALUES('125244'); +INSERT INTO `transmog_items` (`entry`) VALUES('125245'); +INSERT INTO `transmog_items` (`entry`) VALUES('125246'); +INSERT INTO `transmog_items` (`entry`) VALUES('125247'); +INSERT INTO `transmog_items` (`entry`) VALUES('125248'); +INSERT INTO `transmog_items` (`entry`) VALUES('125249'); +INSERT INTO `transmog_items` (`entry`) VALUES('125250'); +INSERT INTO `transmog_items` (`entry`) VALUES('125251'); +INSERT INTO `transmog_items` (`entry`) VALUES('125252'); +INSERT INTO `transmog_items` (`entry`) VALUES('125253'); +INSERT INTO `transmog_items` (`entry`) VALUES('125254'); +INSERT INTO `transmog_items` (`entry`) VALUES('125255'); +INSERT INTO `transmog_items` (`entry`) VALUES('125256'); +INSERT INTO `transmog_items` (`entry`) VALUES('125257'); +INSERT INTO `transmog_items` (`entry`) VALUES('125258'); +INSERT INTO `transmog_items` (`entry`) VALUES('125259'); +INSERT INTO `transmog_items` (`entry`) VALUES('125260'); +INSERT INTO `transmog_items` (`entry`) VALUES('125261'); +INSERT INTO `transmog_items` (`entry`) VALUES('125262'); +INSERT INTO `transmog_items` (`entry`) VALUES('125263'); +INSERT INTO `transmog_items` (`entry`) VALUES('125264'); +INSERT INTO `transmog_items` (`entry`) VALUES('125265'); +INSERT INTO `transmog_items` (`entry`) VALUES('125266'); +INSERT INTO `transmog_items` (`entry`) VALUES('125267'); +INSERT INTO `transmog_items` (`entry`) VALUES('125268'); +INSERT INTO `transmog_items` (`entry`) VALUES('125269'); +INSERT INTO `transmog_items` (`entry`) VALUES('125270'); +INSERT INTO `transmog_items` (`entry`) VALUES('125271'); +INSERT INTO `transmog_items` (`entry`) VALUES('125272'); +INSERT INTO `transmog_items` (`entry`) VALUES('125273'); +INSERT INTO `transmog_items` (`entry`) VALUES('125274'); +INSERT INTO `transmog_items` (`entry`) VALUES('125275'); +INSERT INTO `transmog_items` (`entry`) VALUES('125276'); +INSERT INTO `transmog_items` (`entry`) VALUES('125277'); +INSERT INTO `transmog_items` (`entry`) VALUES('125278'); +INSERT INTO `transmog_items` (`entry`) VALUES('125279'); +INSERT INTO `transmog_items` (`entry`) VALUES('125280'); +INSERT INTO `transmog_items` (`entry`) VALUES('125281'); +INSERT INTO `transmog_items` (`entry`) VALUES('125282'); +INSERT INTO `transmog_items` (`entry`) VALUES('125283'); +INSERT INTO `transmog_items` (`entry`) VALUES('125284'); +INSERT INTO `transmog_items` (`entry`) VALUES('125285'); +INSERT INTO `transmog_items` (`entry`) VALUES('125286'); +INSERT INTO `transmog_items` (`entry`) VALUES('125287'); +INSERT INTO `transmog_items` (`entry`) VALUES('125288'); +INSERT INTO `transmog_items` (`entry`) VALUES('125289'); +INSERT INTO `transmog_items` (`entry`) VALUES('125290'); +INSERT INTO `transmog_items` (`entry`) VALUES('125291'); +INSERT INTO `transmog_items` (`entry`) VALUES('125292'); +INSERT INTO `transmog_items` (`entry`) VALUES('125293'); +INSERT INTO `transmog_items` (`entry`) VALUES('125294'); +INSERT INTO `transmog_items` (`entry`) VALUES('125295'); +INSERT INTO `transmog_items` (`entry`) VALUES('125296'); +INSERT INTO `transmog_items` (`entry`) VALUES('125297'); +INSERT INTO `transmog_items` (`entry`) VALUES('125298'); +INSERT INTO `transmog_items` (`entry`) VALUES('125299'); +INSERT INTO `transmog_items` (`entry`) VALUES('125300'); +INSERT INTO `transmog_items` (`entry`) VALUES('125301'); +INSERT INTO `transmog_items` (`entry`) VALUES('125302'); +INSERT INTO `transmog_items` (`entry`) VALUES('125303'); +INSERT INTO `transmog_items` (`entry`) VALUES('125304'); +INSERT INTO `transmog_items` (`entry`) VALUES('125305'); +INSERT INTO `transmog_items` (`entry`) VALUES('125306'); +INSERT INTO `transmog_items` (`entry`) VALUES('125307'); +INSERT INTO `transmog_items` (`entry`) VALUES('125308'); +INSERT INTO `transmog_items` (`entry`) VALUES('125309'); +INSERT INTO `transmog_items` (`entry`) VALUES('125310'); +INSERT INTO `transmog_items` (`entry`) VALUES('125311'); +INSERT INTO `transmog_items` (`entry`) VALUES('125312'); +INSERT INTO `transmog_items` (`entry`) VALUES('125313'); +INSERT INTO `transmog_items` (`entry`) VALUES('125314'); +INSERT INTO `transmog_items` (`entry`) VALUES('125315'); +INSERT INTO `transmog_items` (`entry`) VALUES('125316'); +INSERT INTO `transmog_items` (`entry`) VALUES('125317'); +INSERT INTO `transmog_items` (`entry`) VALUES('125318'); +INSERT INTO `transmog_items` (`entry`) VALUES('125319'); +INSERT INTO `transmog_items` (`entry`) VALUES('125320'); +INSERT INTO `transmog_items` (`entry`) VALUES('125321'); +INSERT INTO `transmog_items` (`entry`) VALUES('125322'); +INSERT INTO `transmog_items` (`entry`) VALUES('125323'); +INSERT INTO `transmog_items` (`entry`) VALUES('125338'); +INSERT INTO `transmog_items` (`entry`) VALUES('125339'); +INSERT INTO `transmog_items` (`entry`) VALUES('125340'); +INSERT INTO `transmog_items` (`entry`) VALUES('125341'); +INSERT INTO `transmog_items` (`entry`) VALUES('125342'); +INSERT INTO `transmog_items` (`entry`) VALUES('125343'); +INSERT INTO `transmog_items` (`entry`) VALUES('125344'); +INSERT INTO `transmog_items` (`entry`) VALUES('125345'); +INSERT INTO `transmog_items` (`entry`) VALUES('125346'); +INSERT INTO `transmog_items` (`entry`) VALUES('125347'); +INSERT INTO `transmog_items` (`entry`) VALUES('125348'); +INSERT INTO `transmog_items` (`entry`) VALUES('125349'); +INSERT INTO `transmog_items` (`entry`) VALUES('125350'); +INSERT INTO `transmog_items` (`entry`) VALUES('125351'); +INSERT INTO `transmog_items` (`entry`) VALUES('125352'); +INSERT INTO `transmog_items` (`entry`) VALUES('125353'); +INSERT INTO `transmog_items` (`entry`) VALUES('125354'); +INSERT INTO `transmog_items` (`entry`) VALUES('125355'); +INSERT INTO `transmog_items` (`entry`) VALUES('125356'); +INSERT INTO `transmog_items` (`entry`) VALUES('125357'); +INSERT INTO `transmog_items` (`entry`) VALUES('125358'); +INSERT INTO `transmog_items` (`entry`) VALUES('125359'); +INSERT INTO `transmog_items` (`entry`) VALUES('125360'); +INSERT INTO `transmog_items` (`entry`) VALUES('125361'); +INSERT INTO `transmog_items` (`entry`) VALUES('125362'); +INSERT INTO `transmog_items` (`entry`) VALUES('125363'); +INSERT INTO `transmog_items` (`entry`) VALUES('125364'); +INSERT INTO `transmog_items` (`entry`) VALUES('125365'); +INSERT INTO `transmog_items` (`entry`) VALUES('125366'); +INSERT INTO `transmog_items` (`entry`) VALUES('125367'); +INSERT INTO `transmog_items` (`entry`) VALUES('125368'); +INSERT INTO `transmog_items` (`entry`) VALUES('125369'); +INSERT INTO `transmog_items` (`entry`) VALUES('125370'); +INSERT INTO `transmog_items` (`entry`) VALUES('125371'); +INSERT INTO `transmog_items` (`entry`) VALUES('125372'); +INSERT INTO `transmog_items` (`entry`) VALUES('125373'); +INSERT INTO `transmog_items` (`entry`) VALUES('125374'); +INSERT INTO `transmog_items` (`entry`) VALUES('125375'); +INSERT INTO `transmog_items` (`entry`) VALUES('125376'); +INSERT INTO `transmog_items` (`entry`) VALUES('125377'); +INSERT INTO `transmog_items` (`entry`) VALUES('125378'); +INSERT INTO `transmog_items` (`entry`) VALUES('125379'); +INSERT INTO `transmog_items` (`entry`) VALUES('125380'); +INSERT INTO `transmog_items` (`entry`) VALUES('125381'); +INSERT INTO `transmog_items` (`entry`) VALUES('125382'); +INSERT INTO `transmog_items` (`entry`) VALUES('125383'); +INSERT INTO `transmog_items` (`entry`) VALUES('125384'); +INSERT INTO `transmog_items` (`entry`) VALUES('125385'); +INSERT INTO `transmog_items` (`entry`) VALUES('125386'); +INSERT INTO `transmog_items` (`entry`) VALUES('125387'); +INSERT INTO `transmog_items` (`entry`) VALUES('125388'); +INSERT INTO `transmog_items` (`entry`) VALUES('125389'); +INSERT INTO `transmog_items` (`entry`) VALUES('125390'); +INSERT INTO `transmog_items` (`entry`) VALUES('125391'); +INSERT INTO `transmog_items` (`entry`) VALUES('125392'); +INSERT INTO `transmog_items` (`entry`) VALUES('125393'); +INSERT INTO `transmog_items` (`entry`) VALUES('125394'); +INSERT INTO `transmog_items` (`entry`) VALUES('125395'); +INSERT INTO `transmog_items` (`entry`) VALUES('125396'); +INSERT INTO `transmog_items` (`entry`) VALUES('125398'); +INSERT INTO `transmog_items` (`entry`) VALUES('125401'); +INSERT INTO `transmog_items` (`entry`) VALUES('125403'); +INSERT INTO `transmog_items` (`entry`) VALUES('125405'); +INSERT INTO `transmog_items` (`entry`) VALUES('125406'); +INSERT INTO `transmog_items` (`entry`) VALUES('125407'); +INSERT INTO `transmog_items` (`entry`) VALUES('125464'); +INSERT INTO `transmog_items` (`entry`) VALUES('125478'); +INSERT INTO `transmog_items` (`entry`) VALUES('125479'); +INSERT INTO `transmog_items` (`entry`) VALUES('125480'); +INSERT INTO `transmog_items` (`entry`) VALUES('125481'); +INSERT INTO `transmog_items` (`entry`) VALUES('125482'); +INSERT INTO `transmog_items` (`entry`) VALUES('125483'); +INSERT INTO `transmog_items` (`entry`) VALUES('125486'); +INSERT INTO `transmog_items` (`entry`) VALUES('125489'); +INSERT INTO `transmog_items` (`entry`) VALUES('125492'); +INSERT INTO `transmog_items` (`entry`) VALUES('125495'); +INSERT INTO `transmog_items` (`entry`) VALUES('125496'); +INSERT INTO `transmog_items` (`entry`) VALUES('125501'); +INSERT INTO `transmog_items` (`entry`) VALUES('125502'); +INSERT INTO `transmog_items` (`entry`) VALUES('125503'); +INSERT INTO `transmog_items` (`entry`) VALUES('125504'); +INSERT INTO `transmog_items` (`entry`) VALUES('125506'); +INSERT INTO `transmog_items` (`entry`) VALUES('125507'); +INSERT INTO `transmog_items` (`entry`) VALUES('125508'); +INSERT INTO `transmog_items` (`entry`) VALUES('125510'); +INSERT INTO `transmog_items` (`entry`) VALUES('125511'); +INSERT INTO `transmog_items` (`entry`) VALUES('125512'); +INSERT INTO `transmog_items` (`entry`) VALUES('125513'); +INSERT INTO `transmog_items` (`entry`) VALUES('125514'); +INSERT INTO `transmog_items` (`entry`) VALUES('125515'); +INSERT INTO `transmog_items` (`entry`) VALUES('125516'); +INSERT INTO `transmog_items` (`entry`) VALUES('125518'); +INSERT INTO `transmog_items` (`entry`) VALUES('125519'); +INSERT INTO `transmog_items` (`entry`) VALUES('125522'); +INSERT INTO `transmog_items` (`entry`) VALUES('125523'); +INSERT INTO `transmog_items` (`entry`) VALUES('125524'); +INSERT INTO `transmog_items` (`entry`) VALUES('125525'); +INSERT INTO `transmog_items` (`entry`) VALUES('125530'); +INSERT INTO `transmog_items` (`entry`) VALUES('125534'); +INSERT INTO `transmog_items` (`entry`) VALUES('125536'); +INSERT INTO `transmog_items` (`entry`) VALUES('125537'); +INSERT INTO `transmog_items` (`entry`) VALUES('125538'); +INSERT INTO `transmog_items` (`entry`) VALUES('125540'); +INSERT INTO `transmog_items` (`entry`) VALUES('125543'); +INSERT INTO `transmog_items` (`entry`) VALUES('125544'); +INSERT INTO `transmog_items` (`entry`) VALUES('125545'); +INSERT INTO `transmog_items` (`entry`) VALUES('125556'); +INSERT INTO `transmog_items` (`entry`) VALUES('125557'); +INSERT INTO `transmog_items` (`entry`) VALUES('125558'); +INSERT INTO `transmog_items` (`entry`) VALUES('125559'); +INSERT INTO `transmog_items` (`entry`) VALUES('125560'); +INSERT INTO `transmog_items` (`entry`) VALUES('125561'); +INSERT INTO `transmog_items` (`entry`) VALUES('125565'); +INSERT INTO `transmog_items` (`entry`) VALUES('125566'); +INSERT INTO `transmog_items` (`entry`) VALUES('125567'); +INSERT INTO `transmog_items` (`entry`) VALUES('125568'); +INSERT INTO `transmog_items` (`entry`) VALUES('125569'); +INSERT INTO `transmog_items` (`entry`) VALUES('125570'); +INSERT INTO `transmog_items` (`entry`) VALUES('125574'); +INSERT INTO `transmog_items` (`entry`) VALUES('125575'); +INSERT INTO `transmog_items` (`entry`) VALUES('125576'); +INSERT INTO `transmog_items` (`entry`) VALUES('125577'); +INSERT INTO `transmog_items` (`entry`) VALUES('125578'); +INSERT INTO `transmog_items` (`entry`) VALUES('125579'); +INSERT INTO `transmog_items` (`entry`) VALUES('125583'); +INSERT INTO `transmog_items` (`entry`) VALUES('125584'); +INSERT INTO `transmog_items` (`entry`) VALUES('125585'); +INSERT INTO `transmog_items` (`entry`) VALUES('125589'); +INSERT INTO `transmog_items` (`entry`) VALUES('125591'); +INSERT INTO `transmog_items` (`entry`) VALUES('125592'); +INSERT INTO `transmog_items` (`entry`) VALUES('125593'); +INSERT INTO `transmog_items` (`entry`) VALUES('125594'); +INSERT INTO `transmog_items` (`entry`) VALUES('125595'); +INSERT INTO `transmog_items` (`entry`) VALUES('125597'); +INSERT INTO `transmog_items` (`entry`) VALUES('125598'); +INSERT INTO `transmog_items` (`entry`) VALUES('125599'); +INSERT INTO `transmog_items` (`entry`) VALUES('125600'); +INSERT INTO `transmog_items` (`entry`) VALUES('125601'); +INSERT INTO `transmog_items` (`entry`) VALUES('125602'); +INSERT INTO `transmog_items` (`entry`) VALUES('125603'); +INSERT INTO `transmog_items` (`entry`) VALUES('125605'); +INSERT INTO `transmog_items` (`entry`) VALUES('125608'); +INSERT INTO `transmog_items` (`entry`) VALUES('125609'); +INSERT INTO `transmog_items` (`entry`) VALUES('125610'); +INSERT INTO `transmog_items` (`entry`) VALUES('125611'); +INSERT INTO `transmog_items` (`entry`) VALUES('125612'); +INSERT INTO `transmog_items` (`entry`) VALUES('125613'); +INSERT INTO `transmog_items` (`entry`) VALUES('125614'); +INSERT INTO `transmog_items` (`entry`) VALUES('125615'); +INSERT INTO `transmog_items` (`entry`) VALUES('125616'); +INSERT INTO `transmog_items` (`entry`) VALUES('125617'); +INSERT INTO `transmog_items` (`entry`) VALUES('125618'); +INSERT INTO `transmog_items` (`entry`) VALUES('125621'); +INSERT INTO `transmog_items` (`entry`) VALUES('125623'); +INSERT INTO `transmog_items` (`entry`) VALUES('125624'); +INSERT INTO `transmog_items` (`entry`) VALUES('125629'); +INSERT INTO `transmog_items` (`entry`) VALUES('125630'); +INSERT INTO `transmog_items` (`entry`) VALUES('125631'); +INSERT INTO `transmog_items` (`entry`) VALUES('125632'); +INSERT INTO `transmog_items` (`entry`) VALUES('125636'); +INSERT INTO `transmog_items` (`entry`) VALUES('125637'); +INSERT INTO `transmog_items` (`entry`) VALUES('125639'); +INSERT INTO `transmog_items` (`entry`) VALUES('125640'); +INSERT INTO `transmog_items` (`entry`) VALUES('125654'); +INSERT INTO `transmog_items` (`entry`) VALUES('125655'); +INSERT INTO `transmog_items` (`entry`) VALUES('125656'); +INSERT INTO `transmog_items` (`entry`) VALUES('125657'); +INSERT INTO `transmog_items` (`entry`) VALUES('125659'); +INSERT INTO `transmog_items` (`entry`) VALUES('125660'); +INSERT INTO `transmog_items` (`entry`) VALUES('125661'); +INSERT INTO `transmog_items` (`entry`) VALUES('125662'); +INSERT INTO `transmog_items` (`entry`) VALUES('125668'); +INSERT INTO `transmog_items` (`entry`) VALUES('125669'); +INSERT INTO `transmog_items` (`entry`) VALUES('125670'); +INSERT INTO `transmog_items` (`entry`) VALUES('125671'); +INSERT INTO `transmog_items` (`entry`) VALUES('125673'); +INSERT INTO `transmog_items` (`entry`) VALUES('125674'); +INSERT INTO `transmog_items` (`entry`) VALUES('125675'); +INSERT INTO `transmog_items` (`entry`) VALUES('125676'); +INSERT INTO `transmog_items` (`entry`) VALUES('125680'); +INSERT INTO `transmog_items` (`entry`) VALUES('125681'); +INSERT INTO `transmog_items` (`entry`) VALUES('125682'); +INSERT INTO `transmog_items` (`entry`) VALUES('125683'); +INSERT INTO `transmog_items` (`entry`) VALUES('125685'); +INSERT INTO `transmog_items` (`entry`) VALUES('125686'); +INSERT INTO `transmog_items` (`entry`) VALUES('125687'); +INSERT INTO `transmog_items` (`entry`) VALUES('125689'); +INSERT INTO `transmog_items` (`entry`) VALUES('125690'); +INSERT INTO `transmog_items` (`entry`) VALUES('125691'); +INSERT INTO `transmog_items` (`entry`) VALUES('125692'); +INSERT INTO `transmog_items` (`entry`) VALUES('125693'); +INSERT INTO `transmog_items` (`entry`) VALUES('125694'); +INSERT INTO `transmog_items` (`entry`) VALUES('125695'); +INSERT INTO `transmog_items` (`entry`) VALUES('125696'); +INSERT INTO `transmog_items` (`entry`) VALUES('125697'); +INSERT INTO `transmog_items` (`entry`) VALUES('125701'); +INSERT INTO `transmog_items` (`entry`) VALUES('125702'); +INSERT INTO `transmog_items` (`entry`) VALUES('125710'); +INSERT INTO `transmog_items` (`entry`) VALUES('125711'); +INSERT INTO `transmog_items` (`entry`) VALUES('125712'); +INSERT INTO `transmog_items` (`entry`) VALUES('125715'); +INSERT INTO `transmog_items` (`entry`) VALUES('125716'); +INSERT INTO `transmog_items` (`entry`) VALUES('125717'); +INSERT INTO `transmog_items` (`entry`) VALUES('125718'); +INSERT INTO `transmog_items` (`entry`) VALUES('125759'); +INSERT INTO `transmog_items` (`entry`) VALUES('125762'); +INSERT INTO `transmog_items` (`entry`) VALUES('125763'); +INSERT INTO `transmog_items` (`entry`) VALUES('125764'); +INSERT INTO `transmog_items` (`entry`) VALUES('125773'); +INSERT INTO `transmog_items` (`entry`) VALUES('125774'); +INSERT INTO `transmog_items` (`entry`) VALUES('125777'); +INSERT INTO `transmog_items` (`entry`) VALUES('125778'); +INSERT INTO `transmog_items` (`entry`) VALUES('125780'); +INSERT INTO `transmog_items` (`entry`) VALUES('125781'); +INSERT INTO `transmog_items` (`entry`) VALUES('125782'); +INSERT INTO `transmog_items` (`entry`) VALUES('125783'); +INSERT INTO `transmog_items` (`entry`) VALUES('125788'); +INSERT INTO `transmog_items` (`entry`) VALUES('125789'); +INSERT INTO `transmog_items` (`entry`) VALUES('125790'); +INSERT INTO `transmog_items` (`entry`) VALUES('125791'); +INSERT INTO `transmog_items` (`entry`) VALUES('125792'); +INSERT INTO `transmog_items` (`entry`) VALUES('125793'); +INSERT INTO `transmog_items` (`entry`) VALUES('125794'); +INSERT INTO `transmog_items` (`entry`) VALUES('125795'); +INSERT INTO `transmog_items` (`entry`) VALUES('125796'); +INSERT INTO `transmog_items` (`entry`) VALUES('125797'); +INSERT INTO `transmog_items` (`entry`) VALUES('125805'); +INSERT INTO `transmog_items` (`entry`) VALUES('125806'); +INSERT INTO `transmog_items` (`entry`) VALUES('125808'); +INSERT INTO `transmog_items` (`entry`) VALUES('125810'); +INSERT INTO `transmog_items` (`entry`) VALUES('125819'); +INSERT INTO `transmog_items` (`entry`) VALUES('125820'); +INSERT INTO `transmog_items` (`entry`) VALUES('125821'); +INSERT INTO `transmog_items` (`entry`) VALUES('125822'); +INSERT INTO `transmog_items` (`entry`) VALUES('125827'); +INSERT INTO `transmog_items` (`entry`) VALUES('125828'); +INSERT INTO `transmog_items` (`entry`) VALUES('125830'); +INSERT INTO `transmog_items` (`entry`) VALUES('125831'); +INSERT INTO `transmog_items` (`entry`) VALUES('125832'); +INSERT INTO `transmog_items` (`entry`) VALUES('125833'); +INSERT INTO `transmog_items` (`entry`) VALUES('125834'); +INSERT INTO `transmog_items` (`entry`) VALUES('125836'); +INSERT INTO `transmog_items` (`entry`) VALUES('125838'); +INSERT INTO `transmog_items` (`entry`) VALUES('125854'); +INSERT INTO `transmog_items` (`entry`) VALUES('125855'); +INSERT INTO `transmog_items` (`entry`) VALUES('125856'); +INSERT INTO `transmog_items` (`entry`) VALUES('125857'); +INSERT INTO `transmog_items` (`entry`) VALUES('125858'); +INSERT INTO `transmog_items` (`entry`) VALUES('125861'); +INSERT INTO `transmog_items` (`entry`) VALUES('125872'); +INSERT INTO `transmog_items` (`entry`) VALUES('125873'); +INSERT INTO `transmog_items` (`entry`) VALUES('125874'); +INSERT INTO `transmog_items` (`entry`) VALUES('125875'); +INSERT INTO `transmog_items` (`entry`) VALUES('125876'); +INSERT INTO `transmog_items` (`entry`) VALUES('125877'); +INSERT INTO `transmog_items` (`entry`) VALUES('125878'); +INSERT INTO `transmog_items` (`entry`) VALUES('125918'); +INSERT INTO `transmog_items` (`entry`) VALUES('125922'); +INSERT INTO `transmog_items` (`entry`) VALUES('125923'); +INSERT INTO `transmog_items` (`entry`) VALUES('125924'); +INSERT INTO `transmog_items` (`entry`) VALUES('125925'); +INSERT INTO `transmog_items` (`entry`) VALUES('125927'); +INSERT INTO `transmog_items` (`entry`) VALUES('125929'); +INSERT INTO `transmog_items` (`entry`) VALUES('125930'); +INSERT INTO `transmog_items` (`entry`) VALUES('125931'); +INSERT INTO `transmog_items` (`entry`) VALUES('125932'); +INSERT INTO `transmog_items` (`entry`) VALUES('125939'); +INSERT INTO `transmog_items` (`entry`) VALUES('125941'); +INSERT INTO `transmog_items` (`entry`) VALUES('125942'); +INSERT INTO `transmog_items` (`entry`) VALUES('125943'); +INSERT INTO `transmog_items` (`entry`) VALUES('125945'); +INSERT INTO `transmog_items` (`entry`) VALUES('125946'); +INSERT INTO `transmog_items` (`entry`) VALUES('125947'); +INSERT INTO `transmog_items` (`entry`) VALUES('125948'); +INSERT INTO `transmog_items` (`entry`) VALUES('125949'); +INSERT INTO `transmog_items` (`entry`) VALUES('125951'); +INSERT INTO `transmog_items` (`entry`) VALUES('125953'); +INSERT INTO `transmog_items` (`entry`) VALUES('125955'); +INSERT INTO `transmog_items` (`entry`) VALUES('125956'); +INSERT INTO `transmog_items` (`entry`) VALUES('125957'); +INSERT INTO `transmog_items` (`entry`) VALUES('125958'); +INSERT INTO `transmog_items` (`entry`) VALUES('125959'); +INSERT INTO `transmog_items` (`entry`) VALUES('125960'); +INSERT INTO `transmog_items` (`entry`) VALUES('125961'); +INSERT INTO `transmog_items` (`entry`) VALUES('125965'); +INSERT INTO `transmog_items` (`entry`) VALUES('125966'); +INSERT INTO `transmog_items` (`entry`) VALUES('125967'); +INSERT INTO `transmog_items` (`entry`) VALUES('125968'); +INSERT INTO `transmog_items` (`entry`) VALUES('125969'); +INSERT INTO `transmog_items` (`entry`) VALUES('125970'); +INSERT INTO `transmog_items` (`entry`) VALUES('125971'); +INSERT INTO `transmog_items` (`entry`) VALUES('125972'); +INSERT INTO `transmog_items` (`entry`) VALUES('125973'); +INSERT INTO `transmog_items` (`entry`) VALUES('125974'); +INSERT INTO `transmog_items` (`entry`) VALUES('125975'); +INSERT INTO `transmog_items` (`entry`) VALUES('125976'); +INSERT INTO `transmog_items` (`entry`) VALUES('125977'); +INSERT INTO `transmog_items` (`entry`) VALUES('125978'); +INSERT INTO `transmog_items` (`entry`) VALUES('125979'); +INSERT INTO `transmog_items` (`entry`) VALUES('125980'); +INSERT INTO `transmog_items` (`entry`) VALUES('125981'); +INSERT INTO `transmog_items` (`entry`) VALUES('125982'); +INSERT INTO `transmog_items` (`entry`) VALUES('125983'); +INSERT INTO `transmog_items` (`entry`) VALUES('125984'); +INSERT INTO `transmog_items` (`entry`) VALUES('125997'); +INSERT INTO `transmog_items` (`entry`) VALUES('125998'); +INSERT INTO `transmog_items` (`entry`) VALUES('125999'); +INSERT INTO `transmog_items` (`entry`) VALUES('126000'); +INSERT INTO `transmog_items` (`entry`) VALUES('126001'); +INSERT INTO `transmog_items` (`entry`) VALUES('126004'); +INSERT INTO `transmog_items` (`entry`) VALUES('126005'); +INSERT INTO `transmog_items` (`entry`) VALUES('126006'); +INSERT INTO `transmog_items` (`entry`) VALUES('126007'); +INSERT INTO `transmog_items` (`entry`) VALUES('126008'); +INSERT INTO `transmog_items` (`entry`) VALUES('126009'); +INSERT INTO `transmog_items` (`entry`) VALUES('126010'); +INSERT INTO `transmog_items` (`entry`) VALUES('126011'); +INSERT INTO `transmog_items` (`entry`) VALUES('126012'); +INSERT INTO `transmog_items` (`entry`) VALUES('126013'); +INSERT INTO `transmog_items` (`entry`) VALUES('126014'); +INSERT INTO `transmog_items` (`entry`) VALUES('126015'); +INSERT INTO `transmog_items` (`entry`) VALUES('126016'); +INSERT INTO `transmog_items` (`entry`) VALUES('126017'); +INSERT INTO `transmog_items` (`entry`) VALUES('126018'); +INSERT INTO `transmog_items` (`entry`) VALUES('126019'); +INSERT INTO `transmog_items` (`entry`) VALUES('126020'); +INSERT INTO `transmog_items` (`entry`) VALUES('126021'); +INSERT INTO `transmog_items` (`entry`) VALUES('126022'); +INSERT INTO `transmog_items` (`entry`) VALUES('126023'); +INSERT INTO `transmog_items` (`entry`) VALUES('126024'); +INSERT INTO `transmog_items` (`entry`) VALUES('126025'); +INSERT INTO `transmog_items` (`entry`) VALUES('126026'); +INSERT INTO `transmog_items` (`entry`) VALUES('126027'); +INSERT INTO `transmog_items` (`entry`) VALUES('126028'); +INSERT INTO `transmog_items` (`entry`) VALUES('126029'); +INSERT INTO `transmog_items` (`entry`) VALUES('126030'); +INSERT INTO `transmog_items` (`entry`) VALUES('126031'); +INSERT INTO `transmog_items` (`entry`) VALUES('126032'); +INSERT INTO `transmog_items` (`entry`) VALUES('126033'); +INSERT INTO `transmog_items` (`entry`) VALUES('126034'); +INSERT INTO `transmog_items` (`entry`) VALUES('126035'); +INSERT INTO `transmog_items` (`entry`) VALUES('126036'); +INSERT INTO `transmog_items` (`entry`) VALUES('126037'); +INSERT INTO `transmog_items` (`entry`) VALUES('126038'); +INSERT INTO `transmog_items` (`entry`) VALUES('126039'); +INSERT INTO `transmog_items` (`entry`) VALUES('126040'); +INSERT INTO `transmog_items` (`entry`) VALUES('126041'); +INSERT INTO `transmog_items` (`entry`) VALUES('126049'); +INSERT INTO `transmog_items` (`entry`) VALUES('126050'); +INSERT INTO `transmog_items` (`entry`) VALUES('127002'); +INSERT INTO `transmog_items` (`entry`) VALUES('127007'); +INSERT INTO `transmog_items` (`entry`) VALUES('127399'); +INSERT INTO `transmog_items` (`entry`) VALUES('127400'); +INSERT INTO `transmog_items` (`entry`) VALUES('127401'); +INSERT INTO `transmog_items` (`entry`) VALUES('127402'); +INSERT INTO `transmog_items` (`entry`) VALUES('127403'); +INSERT INTO `transmog_items` (`entry`) VALUES('127404'); +INSERT INTO `transmog_items` (`entry`) VALUES('127408'); +INSERT INTO `transmog_items` (`entry`) VALUES('127409'); +INSERT INTO `transmog_items` (`entry`) VALUES('127410'); +INSERT INTO `transmog_items` (`entry`) VALUES('127411'); +INSERT INTO `transmog_items` (`entry`) VALUES('127414'); +INSERT INTO `transmog_items` (`entry`) VALUES('127415'); +INSERT INTO `transmog_items` (`entry`) VALUES('127417'); +INSERT INTO `transmog_items` (`entry`) VALUES('127418'); +INSERT INTO `transmog_items` (`entry`) VALUES('127420'); +INSERT INTO `transmog_items` (`entry`) VALUES('127423'); +INSERT INTO `transmog_items` (`entry`) VALUES('127426'); +INSERT INTO `transmog_items` (`entry`) VALUES('127427'); +INSERT INTO `transmog_items` (`entry`) VALUES('127428'); +INSERT INTO `transmog_items` (`entry`) VALUES('127430'); +INSERT INTO `transmog_items` (`entry`) VALUES('127431'); +INSERT INTO `transmog_items` (`entry`) VALUES('127433'); +INSERT INTO `transmog_items` (`entry`) VALUES('127434'); +INSERT INTO `transmog_items` (`entry`) VALUES('127447'); +INSERT INTO `transmog_items` (`entry`) VALUES('127448'); +INSERT INTO `transmog_items` (`entry`) VALUES('127449'); +INSERT INTO `transmog_items` (`entry`) VALUES('127450'); +INSERT INTO `transmog_items` (`entry`) VALUES('127451'); +INSERT INTO `transmog_items` (`entry`) VALUES('127452'); +INSERT INTO `transmog_items` (`entry`) VALUES('127454'); +INSERT INTO `transmog_items` (`entry`) VALUES('127455'); +INSERT INTO `transmog_items` (`entry`) VALUES('127456'); +INSERT INTO `transmog_items` (`entry`) VALUES('127457'); +INSERT INTO `transmog_items` (`entry`) VALUES('127458'); +INSERT INTO `transmog_items` (`entry`) VALUES('127459'); +INSERT INTO `transmog_items` (`entry`) VALUES('127461'); +INSERT INTO `transmog_items` (`entry`) VALUES('127462'); +INSERT INTO `transmog_items` (`entry`) VALUES('127463'); +INSERT INTO `transmog_items` (`entry`) VALUES('127465'); +INSERT INTO `transmog_items` (`entry`) VALUES('127466'); +INSERT INTO `transmog_items` (`entry`) VALUES('127467'); +INSERT INTO `transmog_items` (`entry`) VALUES('127468'); +INSERT INTO `transmog_items` (`entry`) VALUES('127469'); +INSERT INTO `transmog_items` (`entry`) VALUES('127470'); +INSERT INTO `transmog_items` (`entry`) VALUES('127471'); +INSERT INTO `transmog_items` (`entry`) VALUES('127472'); +INSERT INTO `transmog_items` (`entry`) VALUES('127473'); +INSERT INTO `transmog_items` (`entry`) VALUES('127474'); +INSERT INTO `transmog_items` (`entry`) VALUES('127475'); +INSERT INTO `transmog_items` (`entry`) VALUES('127476'); +INSERT INTO `transmog_items` (`entry`) VALUES('127478'); +INSERT INTO `transmog_items` (`entry`) VALUES('127483'); +INSERT INTO `transmog_items` (`entry`) VALUES('127485'); +INSERT INTO `transmog_items` (`entry`) VALUES('127487'); +INSERT INTO `transmog_items` (`entry`) VALUES('127488'); +INSERT INTO `transmog_items` (`entry`) VALUES('127489'); +INSERT INTO `transmog_items` (`entry`) VALUES('127492'); +INSERT INTO `transmog_items` (`entry`) VALUES('127493'); +INSERT INTO `transmog_items` (`entry`) VALUES('127494'); +INSERT INTO `transmog_items` (`entry`) VALUES('127497'); +INSERT INTO `transmog_items` (`entry`) VALUES('127505'); +INSERT INTO `transmog_items` (`entry`) VALUES('127506'); +INSERT INTO `transmog_items` (`entry`) VALUES('127507'); +INSERT INTO `transmog_items` (`entry`) VALUES('127508'); +INSERT INTO `transmog_items` (`entry`) VALUES('127509'); +INSERT INTO `transmog_items` (`entry`) VALUES('127510'); +INSERT INTO `transmog_items` (`entry`) VALUES('127514'); +INSERT INTO `transmog_items` (`entry`) VALUES('127517'); +INSERT INTO `transmog_items` (`entry`) VALUES('127519'); +INSERT INTO `transmog_items` (`entry`) VALUES('127520'); +INSERT INTO `transmog_items` (`entry`) VALUES('127521'); +INSERT INTO `transmog_items` (`entry`) VALUES('127522'); +INSERT INTO `transmog_items` (`entry`) VALUES('127525'); +INSERT INTO `transmog_items` (`entry`) VALUES('127526'); +INSERT INTO `transmog_items` (`entry`) VALUES('127527'); +INSERT INTO `transmog_items` (`entry`) VALUES('127528'); +INSERT INTO `transmog_items` (`entry`) VALUES('127531'); +INSERT INTO `transmog_items` (`entry`) VALUES('127533'); +INSERT INTO `transmog_items` (`entry`) VALUES('127535'); +INSERT INTO `transmog_items` (`entry`) VALUES('127536'); +INSERT INTO `transmog_items` (`entry`) VALUES('127537'); +INSERT INTO `transmog_items` (`entry`) VALUES('127538'); +INSERT INTO `transmog_items` (`entry`) VALUES('127539'); +INSERT INTO `transmog_items` (`entry`) VALUES('127540'); +INSERT INTO `transmog_items` (`entry`) VALUES('127541'); +INSERT INTO `transmog_items` (`entry`) VALUES('127542'); +INSERT INTO `transmog_items` (`entry`) VALUES('127543'); +INSERT INTO `transmog_items` (`entry`) VALUES('127545'); +INSERT INTO `transmog_items` (`entry`) VALUES('127547'); +INSERT INTO `transmog_items` (`entry`) VALUES('127548'); +INSERT INTO `transmog_items` (`entry`) VALUES('127549'); +INSERT INTO `transmog_items` (`entry`) VALUES('127550'); +INSERT INTO `transmog_items` (`entry`) VALUES('127552'); +INSERT INTO `transmog_items` (`entry`) VALUES('127631'); +INSERT INTO `transmog_items` (`entry`) VALUES('127637'); +INSERT INTO `transmog_items` (`entry`) VALUES('127638'); +INSERT INTO `transmog_items` (`entry`) VALUES('127639'); +INSERT INTO `transmog_items` (`entry`) VALUES('127640'); +INSERT INTO `transmog_items` (`entry`) VALUES('127643'); +INSERT INTO `transmog_items` (`entry`) VALUES('127644'); +INSERT INTO `transmog_items` (`entry`) VALUES('127645'); +INSERT INTO `transmog_items` (`entry`) VALUES('127646'); +INSERT INTO `transmog_items` (`entry`) VALUES('127647'); +INSERT INTO `transmog_items` (`entry`) VALUES('127648'); +INSERT INTO `transmog_items` (`entry`) VALUES('127649'); +INSERT INTO `transmog_items` (`entry`) VALUES('127650'); +INSERT INTO `transmog_items` (`entry`) VALUES('127652'); +INSERT INTO `transmog_items` (`entry`) VALUES('127653'); +INSERT INTO `transmog_items` (`entry`) VALUES('127654'); +INSERT INTO `transmog_items` (`entry`) VALUES('127672'); +INSERT INTO `transmog_items` (`entry`) VALUES('127702'); +INSERT INTO `transmog_items` (`entry`) VALUES('127703'); +INSERT INTO `transmog_items` (`entry`) VALUES('127704'); +INSERT INTO `transmog_items` (`entry`) VALUES('127705'); +INSERT INTO `transmog_items` (`entry`) VALUES('127706'); +INSERT INTO `transmog_items` (`entry`) VALUES('127707'); +INSERT INTO `transmog_items` (`entry`) VALUES('127708'); +INSERT INTO `transmog_items` (`entry`) VALUES('127709'); +INSERT INTO `transmog_items` (`entry`) VALUES('127710'); +INSERT INTO `transmog_items` (`entry`) VALUES('127711'); +INSERT INTO `transmog_items` (`entry`) VALUES('127712'); +INSERT INTO `transmog_items` (`entry`) VALUES('127713'); +INSERT INTO `transmog_items` (`entry`) VALUES('127715'); +INSERT INTO `transmog_items` (`entry`) VALUES('127716'); +INSERT INTO `transmog_items` (`entry`) VALUES('127717'); +INSERT INTO `transmog_items` (`entry`) VALUES('127718'); +INSERT INTO `transmog_items` (`entry`) VALUES('127719'); +INSERT INTO `transmog_items` (`entry`) VALUES('127720'); +INSERT INTO `transmog_items` (`entry`) VALUES('127721'); +INSERT INTO `transmog_items` (`entry`) VALUES('127722'); +INSERT INTO `transmog_items` (`entry`) VALUES('127723'); +INSERT INTO `transmog_items` (`entry`) VALUES('127724'); +INSERT INTO `transmog_items` (`entry`) VALUES('127725'); +INSERT INTO `transmog_items` (`entry`) VALUES('127726'); +INSERT INTO `transmog_items` (`entry`) VALUES('127727'); +INSERT INTO `transmog_items` (`entry`) VALUES('127728'); +INSERT INTO `transmog_items` (`entry`) VALUES('127730'); +INSERT INTO `transmog_items` (`entry`) VALUES('127731'); +INSERT INTO `transmog_items` (`entry`) VALUES('127732'); +INSERT INTO `transmog_items` (`entry`) VALUES('127737'); +INSERT INTO `transmog_items` (`entry`) VALUES('127738'); +INSERT INTO `transmog_items` (`entry`) VALUES('127739'); +INSERT INTO `transmog_items` (`entry`) VALUES('127741'); +INSERT INTO `transmog_items` (`entry`) VALUES('127742'); +INSERT INTO `transmog_items` (`entry`) VALUES('127743'); +INSERT INTO `transmog_items` (`entry`) VALUES('127745'); +INSERT INTO `transmog_items` (`entry`) VALUES('127746'); +INSERT INTO `transmog_items` (`entry`) VALUES('127747'); +INSERT INTO `transmog_items` (`entry`) VALUES('127748'); +INSERT INTO `transmog_items` (`entry`) VALUES('127751'); +INSERT INTO `transmog_items` (`entry`) VALUES('127753'); +INSERT INTO `transmog_items` (`entry`) VALUES('127755'); +INSERT INTO `transmog_items` (`entry`) VALUES('127759'); +INSERT INTO `transmog_items` (`entry`) VALUES('127760'); +INSERT INTO `transmog_items` (`entry`) VALUES('127763'); +INSERT INTO `transmog_items` (`entry`) VALUES('127764'); +INSERT INTO `transmog_items` (`entry`) VALUES('127765'); +INSERT INTO `transmog_items` (`entry`) VALUES('127768'); +INSERT INTO `transmog_items` (`entry`) VALUES('127771'); +INSERT INTO `transmog_items` (`entry`) VALUES('127772'); +INSERT INTO `transmog_items` (`entry`) VALUES('127773'); +INSERT INTO `transmog_items` (`entry`) VALUES('127775'); +INSERT INTO `transmog_items` (`entry`) VALUES('127776'); +INSERT INTO `transmog_items` (`entry`) VALUES('127778'); +INSERT INTO `transmog_items` (`entry`) VALUES('127781'); +INSERT INTO `transmog_items` (`entry`) VALUES('127783'); +INSERT INTO `transmog_items` (`entry`) VALUES('127787'); +INSERT INTO `transmog_items` (`entry`) VALUES('127788'); +INSERT INTO `transmog_items` (`entry`) VALUES('127789'); +INSERT INTO `transmog_items` (`entry`) VALUES('127790'); +INSERT INTO `transmog_items` (`entry`) VALUES('127793'); +INSERT INTO `transmog_items` (`entry`) VALUES('127794'); +INSERT INTO `transmog_items` (`entry`) VALUES('127795'); +INSERT INTO `transmog_items` (`entry`) VALUES('127796'); +INSERT INTO `transmog_items` (`entry`) VALUES('127797'); +INSERT INTO `transmog_items` (`entry`) VALUES('127798'); +INSERT INTO `transmog_items` (`entry`) VALUES('127799'); +INSERT INTO `transmog_items` (`entry`) VALUES('127800'); +INSERT INTO `transmog_items` (`entry`) VALUES('127801'); +INSERT INTO `transmog_items` (`entry`) VALUES('127802'); +INSERT INTO `transmog_items` (`entry`) VALUES('127803'); +INSERT INTO `transmog_items` (`entry`) VALUES('127804'); +INSERT INTO `transmog_items` (`entry`) VALUES('127806'); +INSERT INTO `transmog_items` (`entry`) VALUES('127813'); +INSERT INTO `transmog_items` (`entry`) VALUES('127814'); +INSERT INTO `transmog_items` (`entry`) VALUES('127816'); +INSERT INTO `transmog_items` (`entry`) VALUES('127817'); +INSERT INTO `transmog_items` (`entry`) VALUES('127818'); +INSERT INTO `transmog_items` (`entry`) VALUES('127821'); +INSERT INTO `transmog_items` (`entry`) VALUES('127823'); +INSERT INTO `transmog_items` (`entry`) VALUES('127824'); +INSERT INTO `transmog_items` (`entry`) VALUES('127825'); +INSERT INTO `transmog_items` (`entry`) VALUES('127826'); +INSERT INTO `transmog_items` (`entry`) VALUES('127827'); +INSERT INTO `transmog_items` (`entry`) VALUES('127829'); +INSERT INTO `transmog_items` (`entry`) VALUES('127831'); +INSERT INTO `transmog_items` (`entry`) VALUES('127835'); +INSERT INTO `transmog_items` (`entry`) VALUES('127837'); +INSERT INTO `transmog_items` (`entry`) VALUES('127838'); +INSERT INTO `transmog_items` (`entry`) VALUES('127839'); +INSERT INTO `transmog_items` (`entry`) VALUES('127843'); +INSERT INTO `transmog_items` (`entry`) VALUES('127844'); +INSERT INTO `transmog_items` (`entry`) VALUES('127845'); +INSERT INTO `transmog_items` (`entry`) VALUES('127846'); +INSERT INTO `transmog_items` (`entry`) VALUES('127847'); +INSERT INTO `transmog_items` (`entry`) VALUES('127848'); +INSERT INTO `transmog_items` (`entry`) VALUES('127865'); +INSERT INTO `transmog_items` (`entry`) VALUES('127866'); +INSERT INTO `transmog_items` (`entry`) VALUES('127867'); +INSERT INTO `transmog_items` (`entry`) VALUES('127868'); +INSERT INTO `transmog_items` (`entry`) VALUES('127870'); +INSERT INTO `transmog_items` (`entry`) VALUES('127873'); +INSERT INTO `transmog_items` (`entry`) VALUES('127874'); +INSERT INTO `transmog_items` (`entry`) VALUES('127875'); +INSERT INTO `transmog_items` (`entry`) VALUES('127876'); +INSERT INTO `transmog_items` (`entry`) VALUES('127878'); +INSERT INTO `transmog_items` (`entry`) VALUES('127879'); +INSERT INTO `transmog_items` (`entry`) VALUES('127880'); +INSERT INTO `transmog_items` (`entry`) VALUES('127881'); +INSERT INTO `transmog_items` (`entry`) VALUES('127882'); +INSERT INTO `transmog_items` (`entry`) VALUES('127883'); +INSERT INTO `transmog_items` (`entry`) VALUES('127884'); +INSERT INTO `transmog_items` (`entry`) VALUES('127885'); +INSERT INTO `transmog_items` (`entry`) VALUES('127887'); +INSERT INTO `transmog_items` (`entry`) VALUES('127888'); +INSERT INTO `transmog_items` (`entry`) VALUES('127889'); +INSERT INTO `transmog_items` (`entry`) VALUES('127890'); +INSERT INTO `transmog_items` (`entry`) VALUES('127892'); +INSERT INTO `transmog_items` (`entry`) VALUES('127893'); +INSERT INTO `transmog_items` (`entry`) VALUES('127897'); +INSERT INTO `transmog_items` (`entry`) VALUES('127898'); +INSERT INTO `transmog_items` (`entry`) VALUES('127901'); +INSERT INTO `transmog_items` (`entry`) VALUES('127902'); +INSERT INTO `transmog_items` (`entry`) VALUES('127903'); +INSERT INTO `transmog_items` (`entry`) VALUES('127906'); +INSERT INTO `transmog_items` (`entry`) VALUES('127907'); +INSERT INTO `transmog_items` (`entry`) VALUES('127908'); +INSERT INTO `transmog_items` (`entry`) VALUES('127909'); +INSERT INTO `transmog_items` (`entry`) VALUES('127910'); +INSERT INTO `transmog_items` (`entry`) VALUES('127911'); +INSERT INTO `transmog_items` (`entry`) VALUES('127912'); +INSERT INTO `transmog_items` (`entry`) VALUES('127913'); +INSERT INTO `transmog_items` (`entry`) VALUES('127914'); +INSERT INTO `transmog_items` (`entry`) VALUES('127915'); +INSERT INTO `transmog_items` (`entry`) VALUES('127916'); +INSERT INTO `transmog_items` (`entry`) VALUES('127918'); +INSERT INTO `transmog_items` (`entry`) VALUES('127919'); +INSERT INTO `transmog_items` (`entry`) VALUES('127928'); +INSERT INTO `transmog_items` (`entry`) VALUES('127929'); +INSERT INTO `transmog_items` (`entry`) VALUES('127930'); +INSERT INTO `transmog_items` (`entry`) VALUES('127931'); +INSERT INTO `transmog_items` (`entry`) VALUES('127936'); +INSERT INTO `transmog_items` (`entry`) VALUES('127937'); +INSERT INTO `transmog_items` (`entry`) VALUES('127938'); +INSERT INTO `transmog_items` (`entry`) VALUES('127939'); +INSERT INTO `transmog_items` (`entry`) VALUES('127942'); +INSERT INTO `transmog_items` (`entry`) VALUES('127946'); +INSERT INTO `transmog_items` (`entry`) VALUES('127948'); +INSERT INTO `transmog_items` (`entry`) VALUES('127977'); +INSERT INTO `transmog_items` (`entry`) VALUES('127980'); +INSERT INTO `transmog_items` (`entry`) VALUES('127981'); +INSERT INTO `transmog_items` (`entry`) VALUES('127985'); +INSERT INTO `transmog_items` (`entry`) VALUES('127986'); +INSERT INTO `transmog_items` (`entry`) VALUES('127987'); +INSERT INTO `transmog_items` (`entry`) VALUES('127988'); +INSERT INTO `transmog_items` (`entry`) VALUES('127993'); +INSERT INTO `transmog_items` (`entry`) VALUES('127994'); +INSERT INTO `transmog_items` (`entry`) VALUES('127995'); +INSERT INTO `transmog_items` (`entry`) VALUES('128026'); +INSERT INTO `transmog_items` (`entry`) VALUES('128028'); +INSERT INTO `transmog_items` (`entry`) VALUES('128029'); +INSERT INTO `transmog_items` (`entry`) VALUES('128030'); +INSERT INTO `transmog_items` (`entry`) VALUES('128031'); +INSERT INTO `transmog_items` (`entry`) VALUES('128032'); +INSERT INTO `transmog_items` (`entry`) VALUES('128045'); +INSERT INTO `transmog_items` (`entry`) VALUES('128050'); +INSERT INTO `transmog_items` (`entry`) VALUES('128051'); +INSERT INTO `transmog_items` (`entry`) VALUES('128052'); +INSERT INTO `transmog_items` (`entry`) VALUES('128054'); +INSERT INTO `transmog_items` (`entry`) VALUES('128055'); +INSERT INTO `transmog_items` (`entry`) VALUES('128057'); +INSERT INTO `transmog_items` (`entry`) VALUES('128062'); +INSERT INTO `transmog_items` (`entry`) VALUES('128063'); +INSERT INTO `transmog_items` (`entry`) VALUES('128069'); +INSERT INTO `transmog_items` (`entry`) VALUES('128070'); +INSERT INTO `transmog_items` (`entry`) VALUES('128074'); +INSERT INTO `transmog_items` (`entry`) VALUES('128075'); +INSERT INTO `transmog_items` (`entry`) VALUES('128124'); +INSERT INTO `transmog_items` (`entry`) VALUES('128126'); +INSERT INTO `transmog_items` (`entry`) VALUES('128127'); +INSERT INTO `transmog_items` (`entry`) VALUES('128128'); +INSERT INTO `transmog_items` (`entry`) VALUES('128129'); +INSERT INTO `transmog_items` (`entry`) VALUES('128130'); +INSERT INTO `transmog_items` (`entry`) VALUES('128136'); +INSERT INTO `transmog_items` (`entry`) VALUES('128137'); +INSERT INTO `transmog_items` (`entry`) VALUES('128138'); +INSERT INTO `transmog_items` (`entry`) VALUES('128139'); +INSERT INTO `transmog_items` (`entry`) VALUES('128140'); +INSERT INTO `transmog_items` (`entry`) VALUES('128141'); +INSERT INTO `transmog_items` (`entry`) VALUES('128142'); +INSERT INTO `transmog_items` (`entry`) VALUES('128143'); +INSERT INTO `transmog_items` (`entry`) VALUES('128144'); +INSERT INTO `transmog_items` (`entry`) VALUES('128145'); +INSERT INTO `transmog_items` (`entry`) VALUES('128146'); +INSERT INTO `transmog_items` (`entry`) VALUES('128147'); +INSERT INTO `transmog_items` (`entry`) VALUES('128148'); +INSERT INTO `transmog_items` (`entry`) VALUES('128149'); +INSERT INTO `transmog_items` (`entry`) VALUES('128150'); +INSERT INTO `transmog_items` (`entry`) VALUES('128151'); +INSERT INTO `transmog_items` (`entry`) VALUES('128152'); +INSERT INTO `transmog_items` (`entry`) VALUES('128153'); +INSERT INTO `transmog_items` (`entry`) VALUES('128154'); +INSERT INTO `transmog_items` (`entry`) VALUES('128155'); +INSERT INTO `transmog_items` (`entry`) VALUES('128156'); +INSERT INTO `transmog_items` (`entry`) VALUES('128157'); +INSERT INTO `transmog_items` (`entry`) VALUES('128158'); +INSERT INTO `transmog_items` (`entry`) VALUES('128159'); +INSERT INTO `transmog_items` (`entry`) VALUES('128160'); +INSERT INTO `transmog_items` (`entry`) VALUES('128161'); +INSERT INTO `transmog_items` (`entry`) VALUES('128162'); +INSERT INTO `transmog_items` (`entry`) VALUES('128163'); +INSERT INTO `transmog_items` (`entry`) VALUES('128166'); +INSERT INTO `transmog_items` (`entry`) VALUES('128167'); +INSERT INTO `transmog_items` (`entry`) VALUES('128169'); +INSERT INTO `transmog_items` (`entry`) VALUES('128170'); +INSERT INTO `transmog_items` (`entry`) VALUES('128171'); +INSERT INTO `transmog_items` (`entry`) VALUES('128172'); +INSERT INTO `transmog_items` (`entry`) VALUES('128173'); +INSERT INTO `transmog_items` (`entry`) VALUES('128174'); +INSERT INTO `transmog_items` (`entry`) VALUES('128175'); +INSERT INTO `transmog_items` (`entry`) VALUES('128176'); +INSERT INTO `transmog_items` (`entry`) VALUES('128177'); +INSERT INTO `transmog_items` (`entry`) VALUES('128178'); +INSERT INTO `transmog_items` (`entry`) VALUES('128179'); +INSERT INTO `transmog_items` (`entry`) VALUES('128180'); +INSERT INTO `transmog_items` (`entry`) VALUES('128181'); +INSERT INTO `transmog_items` (`entry`) VALUES('128182'); +INSERT INTO `transmog_items` (`entry`) VALUES('128183'); +INSERT INTO `transmog_items` (`entry`) VALUES('128185'); +INSERT INTO `transmog_items` (`entry`) VALUES('128186'); +INSERT INTO `transmog_items` (`entry`) VALUES('128191'); +INSERT INTO `transmog_items` (`entry`) VALUES('128192'); +INSERT INTO `transmog_items` (`entry`) VALUES('128193'); +INSERT INTO `transmog_items` (`entry`) VALUES('128194'); +INSERT INTO `transmog_items` (`entry`) VALUES('128202'); +INSERT INTO `transmog_items` (`entry`) VALUES('128203'); +INSERT INTO `transmog_items` (`entry`) VALUES('128204'); +INSERT INTO `transmog_items` (`entry`) VALUES('128205'); +INSERT INTO `transmog_items` (`entry`) VALUES('128206'); +INSERT INTO `transmog_items` (`entry`) VALUES('128207'); +INSERT INTO `transmog_items` (`entry`) VALUES('128210'); +INSERT INTO `transmog_items` (`entry`) VALUES('128212'); +INSERT INTO `transmog_items` (`entry`) VALUES('128214'); +INSERT INTO `transmog_items` (`entry`) VALUES('128215'); +INSERT INTO `transmog_items` (`entry`) VALUES('128216'); +INSERT INTO `transmog_items` (`entry`) VALUES('128218'); +INSERT INTO `transmog_items` (`entry`) VALUES('128219'); +INSERT INTO `transmog_items` (`entry`) VALUES('128220'); +INSERT INTO `transmog_items` (`entry`) VALUES('128221'); +INSERT INTO `transmog_items` (`entry`) VALUES('128222'); +INSERT INTO `transmog_items` (`entry`) VALUES('128224'); +INSERT INTO `transmog_items` (`entry`) VALUES('128225'); +INSERT INTO `transmog_items` (`entry`) VALUES('128226'); +INSERT INTO `transmog_items` (`entry`) VALUES('128228'); +INSERT INTO `transmog_items` (`entry`) VALUES('128229'); +INSERT INTO `transmog_items` (`entry`) VALUES('128230'); +INSERT INTO `transmog_items` (`entry`) VALUES('128231'); +INSERT INTO `transmog_items` (`entry`) VALUES('128232'); +INSERT INTO `transmog_items` (`entry`) VALUES('128249'); +INSERT INTO `transmog_items` (`entry`) VALUES('128250'); +INSERT INTO `transmog_items` (`entry`) VALUES('128251'); +INSERT INTO `transmog_items` (`entry`) VALUES('128252'); +INSERT INTO `transmog_items` (`entry`) VALUES('128253'); +INSERT INTO `transmog_items` (`entry`) VALUES('128255'); +INSERT INTO `transmog_items` (`entry`) VALUES('128256'); +INSERT INTO `transmog_items` (`entry`) VALUES('128257'); +INSERT INTO `transmog_items` (`entry`) VALUES('128258'); +INSERT INTO `transmog_items` (`entry`) VALUES('128262'); +INSERT INTO `transmog_items` (`entry`) VALUES('128264'); +INSERT INTO `transmog_items` (`entry`) VALUES('128266'); +INSERT INTO `transmog_items` (`entry`) VALUES('128268'); +INSERT INTO `transmog_items` (`entry`) VALUES('128269'); +INSERT INTO `transmog_items` (`entry`) VALUES('128275'); +INSERT INTO `transmog_items` (`entry`) VALUES('128278'); +INSERT INTO `transmog_items` (`entry`) VALUES('128285'); +INSERT INTO `transmog_items` (`entry`) VALUES('128286'); +INSERT INTO `transmog_items` (`entry`) VALUES('128294'); +INSERT INTO `transmog_items` (`entry`) VALUES('128297'); +INSERT INTO `transmog_items` (`entry`) VALUES('128298'); +INSERT INTO `transmog_items` (`entry`) VALUES('128300'); +INSERT INTO `transmog_items` (`entry`) VALUES('128301'); +INSERT INTO `transmog_items` (`entry`) VALUES('128302'); +INSERT INTO `transmog_items` (`entry`) VALUES('128304'); +INSERT INTO `transmog_items` (`entry`) VALUES('128305'); +INSERT INTO `transmog_items` (`entry`) VALUES('128306'); +INSERT INTO `transmog_items` (`entry`) VALUES('128310'); +INSERT INTO `transmog_items` (`entry`) VALUES('128312'); +INSERT INTO `transmog_items` (`entry`) VALUES('128313'); +INSERT INTO `transmog_items` (`entry`) VALUES('128314'); +INSERT INTO `transmog_items` (`entry`) VALUES('128315'); +INSERT INTO `transmog_items` (`entry`) VALUES('128316'); +INSERT INTO `transmog_items` (`entry`) VALUES('128317'); +INSERT INTO `transmog_items` (`entry`) VALUES('128318'); +INSERT INTO `transmog_items` (`entry`) VALUES('128319'); +INSERT INTO `transmog_items` (`entry`) VALUES('128320'); +INSERT INTO `transmog_items` (`entry`) VALUES('128322'); +INSERT INTO `transmog_items` (`entry`) VALUES('128324'); +INSERT INTO `transmog_items` (`entry`) VALUES('128328'); +INSERT INTO `transmog_items` (`entry`) VALUES('128331'); +INSERT INTO `transmog_items` (`entry`) VALUES('128332'); +INSERT INTO `transmog_items` (`entry`) VALUES('128333'); +INSERT INTO `transmog_items` (`entry`) VALUES('128334'); +INSERT INTO `transmog_items` (`entry`) VALUES('128335'); +INSERT INTO `transmog_items` (`entry`) VALUES('128337'); +INSERT INTO `transmog_items` (`entry`) VALUES('128338'); +INSERT INTO `transmog_items` (`entry`) VALUES('128339'); +INSERT INTO `transmog_items` (`entry`) VALUES('128340'); +INSERT INTO `transmog_items` (`entry`) VALUES('128342'); +INSERT INTO `transmog_items` (`entry`) VALUES('128344'); +INSERT INTO `transmog_items` (`entry`) VALUES('128345'); +INSERT INTO `transmog_items` (`entry`) VALUES('128347'); +INSERT INTO `transmog_items` (`entry`) VALUES('128348'); +INSERT INTO `transmog_items` (`entry`) VALUES('128349'); +INSERT INTO `transmog_items` (`entry`) VALUES('128350'); +INSERT INTO `transmog_items` (`entry`) VALUES('128358'); +INSERT INTO `transmog_items` (`entry`) VALUES('128371'); +INSERT INTO `transmog_items` (`entry`) VALUES('128373'); +INSERT INTO `transmog_items` (`entry`) VALUES('128374'); +INSERT INTO `transmog_items` (`entry`) VALUES('128375'); +INSERT INTO `transmog_items` (`entry`) VALUES('128377'); +INSERT INTO `transmog_items` (`entry`) VALUES('128378'); +INSERT INTO `transmog_items` (`entry`) VALUES('128379'); +INSERT INTO `transmog_items` (`entry`) VALUES('128380'); +INSERT INTO `transmog_items` (`entry`) VALUES('128381'); +INSERT INTO `transmog_items` (`entry`) VALUES('128383'); +INSERT INTO `transmog_items` (`entry`) VALUES('128384'); +INSERT INTO `transmog_items` (`entry`) VALUES('128385'); +INSERT INTO `transmog_items` (`entry`) VALUES('128386'); +INSERT INTO `transmog_items` (`entry`) VALUES('128390'); +INSERT INTO `transmog_items` (`entry`) VALUES('128391'); +INSERT INTO `transmog_items` (`entry`) VALUES('128392'); +INSERT INTO `transmog_items` (`entry`) VALUES('128396'); +INSERT INTO `transmog_items` (`entry`) VALUES('128397'); +INSERT INTO `transmog_items` (`entry`) VALUES('128398'); +INSERT INTO `transmog_items` (`entry`) VALUES('128401'); +INSERT INTO `transmog_items` (`entry`) VALUES('128402'); +INSERT INTO `transmog_items` (`entry`) VALUES('128403'); +INSERT INTO `transmog_items` (`entry`) VALUES('128404'); +INSERT INTO `transmog_items` (`entry`) VALUES('128405'); +INSERT INTO `transmog_items` (`entry`) VALUES('128406'); +INSERT INTO `transmog_items` (`entry`) VALUES('128408'); +INSERT INTO `transmog_items` (`entry`) VALUES('128409'); +INSERT INTO `transmog_items` (`entry`) VALUES('128410'); +INSERT INTO `transmog_items` (`entry`) VALUES('128411'); +INSERT INTO `transmog_items` (`entry`) VALUES('128413'); +INSERT INTO `transmog_items` (`entry`) VALUES('128414'); +INSERT INTO `transmog_items` (`entry`) VALUES('128415'); +INSERT INTO `transmog_items` (`entry`) VALUES('128416'); +INSERT INTO `transmog_items` (`entry`) VALUES('128422'); +INSERT INTO `transmog_items` (`entry`) VALUES('128423'); +INSERT INTO `transmog_items` (`entry`) VALUES('128424'); +INSERT INTO `transmog_items` (`entry`) VALUES('128434'); +INSERT INTO `transmog_items` (`entry`) VALUES('128435'); +INSERT INTO `transmog_items` (`entry`) VALUES('128436'); +INSERT INTO `transmog_items` (`entry`) VALUES('128437'); +INSERT INTO `transmog_items` (`entry`) VALUES('128438'); +INSERT INTO `transmog_items` (`entry`) VALUES('128439'); +INSERT INTO `transmog_items` (`entry`) VALUES('128443'); +INSERT INTO `transmog_items` (`entry`) VALUES('128444'); +INSERT INTO `transmog_items` (`entry`) VALUES('128445'); +INSERT INTO `transmog_items` (`entry`) VALUES('128446'); +INSERT INTO `transmog_items` (`entry`) VALUES('128447'); +INSERT INTO `transmog_items` (`entry`) VALUES('128448'); +INSERT INTO `transmog_items` (`entry`) VALUES('128449'); +INSERT INTO `transmog_items` (`entry`) VALUES('128450'); +INSERT INTO `transmog_items` (`entry`) VALUES('128451'); +INSERT INTO `transmog_items` (`entry`) VALUES('128453'); +INSERT INTO `transmog_items` (`entry`) VALUES('128454'); +INSERT INTO `transmog_items` (`entry`) VALUES('128477'); +INSERT INTO `transmog_items` (`entry`) VALUES('128483'); +INSERT INTO `transmog_items` (`entry`) VALUES('128484'); +INSERT INTO `transmog_items` (`entry`) VALUES('128485'); +INSERT INTO `transmog_items` (`entry`) VALUES('128491'); +INSERT INTO `transmog_items` (`entry`) VALUES('128492'); +INSERT INTO `transmog_items` (`entry`) VALUES('128493'); +INSERT INTO `transmog_items` (`entry`) VALUES('128494'); +INSERT INTO `transmog_items` (`entry`) VALUES('128495'); +INSERT INTO `transmog_items` (`entry`) VALUES('128496'); +INSERT INTO `transmog_items` (`entry`) VALUES('128497'); +INSERT INTO `transmog_items` (`entry`) VALUES('128498'); +INSERT INTO `transmog_items` (`entry`) VALUES('128502'); +INSERT INTO `transmog_items` (`entry`) VALUES('128503'); +INSERT INTO `transmog_items` (`entry`) VALUES('128504'); +INSERT INTO `transmog_items` (`entry`) VALUES('128505'); +INSERT INTO `transmog_items` (`entry`) VALUES('128506'); +INSERT INTO `transmog_items` (`entry`) VALUES('128507'); +INSERT INTO `transmog_items` (`entry`) VALUES('128508'); +INSERT INTO `transmog_items` (`entry`) VALUES('128511'); +INSERT INTO `transmog_items` (`entry`) VALUES('128512'); +INSERT INTO `transmog_items` (`entry`) VALUES('128514'); +INSERT INTO `transmog_items` (`entry`) VALUES('128515'); +INSERT INTO `transmog_items` (`entry`) VALUES('128517'); +INSERT INTO `transmog_items` (`entry`) VALUES('128518'); +INSERT INTO `transmog_items` (`entry`) VALUES('128519'); +INSERT INTO `transmog_items` (`entry`) VALUES('128520'); +INSERT INTO `transmog_items` (`entry`) VALUES('128521'); +INSERT INTO `transmog_items` (`entry`) VALUES('128522'); +INSERT INTO `transmog_items` (`entry`) VALUES('128524'); +INSERT INTO `transmog_items` (`entry`) VALUES('128529'); +INSERT INTO `transmog_items` (`entry`) VALUES('128531'); +INSERT INTO `transmog_items` (`entry`) VALUES('128532'); +INSERT INTO `transmog_items` (`entry`) VALUES('128533'); +INSERT INTO `transmog_items` (`entry`) VALUES('128534'); +INSERT INTO `transmog_items` (`entry`) VALUES('128535'); +INSERT INTO `transmog_items` (`entry`) VALUES('128536'); +INSERT INTO `transmog_items` (`entry`) VALUES('128537'); +INSERT INTO `transmog_items` (`entry`) VALUES('128538'); +INSERT INTO `transmog_items` (`entry`) VALUES('128539'); +INSERT INTO `transmog_items` (`entry`) VALUES('128540'); +INSERT INTO `transmog_items` (`entry`) VALUES('128541'); +INSERT INTO `transmog_items` (`entry`) VALUES('128542'); +INSERT INTO `transmog_items` (`entry`) VALUES('128543'); +INSERT INTO `transmog_items` (`entry`) VALUES('128544'); +INSERT INTO `transmog_items` (`entry`) VALUES('128545'); +INSERT INTO `transmog_items` (`entry`) VALUES('128559'); +INSERT INTO `transmog_items` (`entry`) VALUES('128560'); +INSERT INTO `transmog_items` (`entry`) VALUES('128561'); +INSERT INTO `transmog_items` (`entry`) VALUES('128565'); +INSERT INTO `transmog_items` (`entry`) VALUES('128566'); +INSERT INTO `transmog_items` (`entry`) VALUES('128567'); +INSERT INTO `transmog_items` (`entry`) VALUES('128569'); +INSERT INTO `transmog_items` (`entry`) VALUES('128570'); +INSERT INTO `transmog_items` (`entry`) VALUES('128572'); +INSERT INTO `transmog_items` (`entry`) VALUES('128574'); +INSERT INTO `transmog_items` (`entry`) VALUES('128575'); +INSERT INTO `transmog_items` (`entry`) VALUES('128576'); +INSERT INTO `transmog_items` (`entry`) VALUES('128577'); +INSERT INTO `transmog_items` (`entry`) VALUES('128578'); +INSERT INTO `transmog_items` (`entry`) VALUES('128581'); +INSERT INTO `transmog_items` (`entry`) VALUES('128582'); +INSERT INTO `transmog_items` (`entry`) VALUES('128583'); +INSERT INTO `transmog_items` (`entry`) VALUES('128584'); +INSERT INTO `transmog_items` (`entry`) VALUES('128585'); +INSERT INTO `transmog_items` (`entry`) VALUES('128586'); +INSERT INTO `transmog_items` (`entry`) VALUES('128587'); +INSERT INTO `transmog_items` (`entry`) VALUES('128588'); +INSERT INTO `transmog_items` (`entry`) VALUES('128589'); +INSERT INTO `transmog_items` (`entry`) VALUES('128591'); +INSERT INTO `transmog_items` (`entry`) VALUES('128593'); +INSERT INTO `transmog_items` (`entry`) VALUES('128594'); +INSERT INTO `transmog_items` (`entry`) VALUES('128597'); +INSERT INTO `transmog_items` (`entry`) VALUES('128599'); +INSERT INTO `transmog_items` (`entry`) VALUES('128600'); +INSERT INTO `transmog_items` (`entry`) VALUES('128601'); +INSERT INTO `transmog_items` (`entry`) VALUES('128602'); +INSERT INTO `transmog_items` (`entry`) VALUES('128605'); +INSERT INTO `transmog_items` (`entry`) VALUES('128606'); +INSERT INTO `transmog_items` (`entry`) VALUES('128608'); +INSERT INTO `transmog_items` (`entry`) VALUES('128610'); +INSERT INTO `transmog_items` (`entry`) VALUES('128611'); +INSERT INTO `transmog_items` (`entry`) VALUES('128612'); +INSERT INTO `transmog_items` (`entry`) VALUES('128613'); +INSERT INTO `transmog_items` (`entry`) VALUES('128614'); +INSERT INTO `transmog_items` (`entry`) VALUES('128615'); +INSERT INTO `transmog_items` (`entry`) VALUES('128616'); +INSERT INTO `transmog_items` (`entry`) VALUES('128617'); +INSERT INTO `transmog_items` (`entry`) VALUES('128618'); +INSERT INTO `transmog_items` (`entry`) VALUES('128619'); +INSERT INTO `transmog_items` (`entry`) VALUES('128620'); +INSERT INTO `transmog_items` (`entry`) VALUES('128621'); +INSERT INTO `transmog_items` (`entry`) VALUES('128622'); +INSERT INTO `transmog_items` (`entry`) VALUES('128623'); +INSERT INTO `transmog_items` (`entry`) VALUES('128624'); +INSERT INTO `transmog_items` (`entry`) VALUES('128625'); +INSERT INTO `transmog_items` (`entry`) VALUES('128626'); +INSERT INTO `transmog_items` (`entry`) VALUES('128627'); +INSERT INTO `transmog_items` (`entry`) VALUES('128628'); +INSERT INTO `transmog_items` (`entry`) VALUES('128629'); +INSERT INTO `transmog_items` (`entry`) VALUES('128630'); +INSERT INTO `transmog_items` (`entry`) VALUES('128631'); +INSERT INTO `transmog_items` (`entry`) VALUES('128638'); +INSERT INTO `transmog_items` (`entry`) VALUES('128639'); +INSERT INTO `transmog_items` (`entry`) VALUES('128640'); +INSERT INTO `transmog_items` (`entry`) VALUES('128641'); +INSERT INTO `transmog_items` (`entry`) VALUES('128642'); +INSERT INTO `transmog_items` (`entry`) VALUES('128643'); +INSERT INTO `transmog_items` (`entry`) VALUES('128644'); +INSERT INTO `transmog_items` (`entry`) VALUES('128645'); +INSERT INTO `transmog_items` (`entry`) VALUES('128646'); +INSERT INTO `transmog_items` (`entry`) VALUES('128647'); +INSERT INTO `transmog_items` (`entry`) VALUES('128652'); +INSERT INTO `transmog_items` (`entry`) VALUES('128653'); +INSERT INTO `transmog_items` (`entry`) VALUES('128654'); +INSERT INTO `transmog_items` (`entry`) VALUES('128655'); +INSERT INTO `transmog_items` (`entry`) VALUES('128656'); +INSERT INTO `transmog_items` (`entry`) VALUES('128657'); +INSERT INTO `transmog_items` (`entry`) VALUES('128659'); +INSERT INTO `transmog_items` (`entry`) VALUES('128660'); +INSERT INTO `transmog_items` (`entry`) VALUES('128662'); +INSERT INTO `transmog_items` (`entry`) VALUES('128663'); +INSERT INTO `transmog_items` (`entry`) VALUES('128666'); +INSERT INTO `transmog_items` (`entry`) VALUES('128669'); +INSERT INTO `transmog_items` (`entry`) VALUES('128670'); +INSERT INTO `transmog_items` (`entry`) VALUES('128671'); +INSERT INTO `transmog_items` (`entry`) VALUES('128672'); +INSERT INTO `transmog_items` (`entry`) VALUES('128673'); +INSERT INTO `transmog_items` (`entry`) VALUES('128679'); +INSERT INTO `transmog_items` (`entry`) VALUES('128680'); +INSERT INTO `transmog_items` (`entry`) VALUES('128681'); +INSERT INTO `transmog_items` (`entry`) VALUES('128683'); +INSERT INTO `transmog_items` (`entry`) VALUES('128684'); +INSERT INTO `transmog_items` (`entry`) VALUES('128685'); +INSERT INTO `transmog_items` (`entry`) VALUES('128686'); +INSERT INTO `transmog_items` (`entry`) VALUES('128687'); +INSERT INTO `transmog_items` (`entry`) VALUES('128688'); +INSERT INTO `transmog_items` (`entry`) VALUES('128689'); +INSERT INTO `transmog_items` (`entry`) VALUES('128690'); +INSERT INTO `transmog_items` (`entry`) VALUES('128691'); +INSERT INTO `transmog_items` (`entry`) VALUES('128692'); +INSERT INTO `transmog_items` (`entry`) VALUES('128693'); +INSERT INTO `transmog_items` (`entry`) VALUES('128694'); +INSERT INTO `transmog_items` (`entry`) VALUES('128695'); +INSERT INTO `transmog_items` (`entry`) VALUES('128696'); +INSERT INTO `transmog_items` (`entry`) VALUES('128697'); +INSERT INTO `transmog_items` (`entry`) VALUES('128698'); +INSERT INTO `transmog_items` (`entry`) VALUES('128699'); +INSERT INTO `transmog_items` (`entry`) VALUES('128700'); +INSERT INTO `transmog_items` (`entry`) VALUES('128701'); +INSERT INTO `transmog_items` (`entry`) VALUES('128702'); +INSERT INTO `transmog_items` (`entry`) VALUES('128703'); +INSERT INTO `transmog_items` (`entry`) VALUES('128704'); +INSERT INTO `transmog_items` (`entry`) VALUES('128705'); +INSERT INTO `transmog_items` (`entry`) VALUES('128706'); +INSERT INTO `transmog_items` (`entry`) VALUES('128707'); +INSERT INTO `transmog_items` (`entry`) VALUES('128708'); +INSERT INTO `transmog_items` (`entry`) VALUES('128709'); +INSERT INTO `transmog_items` (`entry`) VALUES('128710'); +INSERT INTO `transmog_items` (`entry`) VALUES('128711'); +INSERT INTO `transmog_items` (`entry`) VALUES('128712'); +INSERT INTO `transmog_items` (`entry`) VALUES('128713'); +INSERT INTO `transmog_items` (`entry`) VALUES('128714'); +INSERT INTO `transmog_items` (`entry`) VALUES('128715'); +INSERT INTO `transmog_items` (`entry`) VALUES('128716'); +INSERT INTO `transmog_items` (`entry`) VALUES('128717'); +INSERT INTO `transmog_items` (`entry`) VALUES('128718'); +INSERT INTO `transmog_items` (`entry`) VALUES('128719'); +INSERT INTO `transmog_items` (`entry`) VALUES('128720'); +INSERT INTO `transmog_items` (`entry`) VALUES('128721'); +INSERT INTO `transmog_items` (`entry`) VALUES('128722'); +INSERT INTO `transmog_items` (`entry`) VALUES('128723'); +INSERT INTO `transmog_items` (`entry`) VALUES('128724'); +INSERT INTO `transmog_items` (`entry`) VALUES('128726'); +INSERT INTO `transmog_items` (`entry`) VALUES('128732'); +INSERT INTO `transmog_items` (`entry`) VALUES('128733'); +INSERT INTO `transmog_items` (`entry`) VALUES('128735'); +INSERT INTO `transmog_items` (`entry`) VALUES('128740'); +INSERT INTO `transmog_items` (`entry`) VALUES('128741'); +INSERT INTO `transmog_items` (`entry`) VALUES('128742'); +INSERT INTO `transmog_items` (`entry`) VALUES('128743'); +INSERT INTO `transmog_items` (`entry`) VALUES('128744'); +INSERT INTO `transmog_items` (`entry`) VALUES('128746'); +INSERT INTO `transmog_items` (`entry`) VALUES('128747'); +INSERT INTO `transmog_items` (`entry`) VALUES('128748'); +INSERT INTO `transmog_items` (`entry`) VALUES('128750'); +INSERT INTO `transmog_items` (`entry`) VALUES('128751'); +INSERT INTO `transmog_items` (`entry`) VALUES('128752'); +INSERT INTO `transmog_items` (`entry`) VALUES('128754'); +INSERT INTO `transmog_items` (`entry`) VALUES('128755'); +INSERT INTO `transmog_items` (`entry`) VALUES('128756'); +INSERT INTO `transmog_items` (`entry`) VALUES('128758'); +INSERT INTO `transmog_items` (`entry`) VALUES('128759'); +INSERT INTO `transmog_items` (`entry`) VALUES('128760'); +INSERT INTO `transmog_items` (`entry`) VALUES('128761'); +INSERT INTO `transmog_items` (`entry`) VALUES('128764'); +INSERT INTO `transmog_items` (`entry`) VALUES('128765'); +INSERT INTO `transmog_items` (`entry`) VALUES('128766'); +INSERT INTO `transmog_items` (`entry`) VALUES('128768'); +INSERT INTO `transmog_items` (`entry`) VALUES('128770'); +INSERT INTO `transmog_items` (`entry`) VALUES('128771'); +INSERT INTO `transmog_items` (`entry`) VALUES('128772'); +INSERT INTO `transmog_items` (`entry`) VALUES('128773'); +INSERT INTO `transmog_items` (`entry`) VALUES('128774'); +INSERT INTO `transmog_items` (`entry`) VALUES('128775'); +INSERT INTO `transmog_items` (`entry`) VALUES('128776'); +INSERT INTO `transmog_items` (`entry`) VALUES('128777'); +INSERT INTO `transmog_items` (`entry`) VALUES('128778'); +INSERT INTO `transmog_items` (`entry`) VALUES('128779'); +INSERT INTO `transmog_items` (`entry`) VALUES('128780'); +INSERT INTO `transmog_items` (`entry`) VALUES('128783'); +INSERT INTO `transmog_items` (`entry`) VALUES('128794'); +INSERT INTO `transmog_items` (`entry`) VALUES('128795'); +INSERT INTO `transmog_items` (`entry`) VALUES('128796'); +INSERT INTO `transmog_items` (`entry`) VALUES('128797'); +INSERT INTO `transmog_items` (`entry`) VALUES('128799'); +INSERT INTO `transmog_items` (`entry`) VALUES('128801'); +INSERT INTO `transmog_items` (`entry`) VALUES('128803'); +INSERT INTO `transmog_items` (`entry`) VALUES('128804'); +INSERT INTO `transmog_items` (`entry`) VALUES('128805'); +INSERT INTO `transmog_items` (`entry`) VALUES('128806'); +INSERT INTO `transmog_items` (`entry`) VALUES('128807'); +INSERT INTO `transmog_items` (`entry`) VALUES('128808'); +INSERT INTO `transmog_items` (`entry`) VALUES('128809'); +INSERT INTO `transmog_items` (`entry`) VALUES('128810'); +INSERT INTO `transmog_items` (`entry`) VALUES('128811'); +INSERT INTO `transmog_items` (`entry`) VALUES('128812'); +INSERT INTO `transmog_items` (`entry`) VALUES('128813'); +INSERT INTO `transmog_items` (`entry`) VALUES('128814'); +INSERT INTO `transmog_items` (`entry`) VALUES('128815'); +INSERT INTO `transmog_items` (`entry`) VALUES('128817'); +INSERT INTO `transmog_items` (`entry`) VALUES('128818'); +INSERT INTO `transmog_items` (`entry`) VALUES('128819'); +INSERT INTO `transmog_items` (`entry`) VALUES('128820'); +INSERT INTO `transmog_items` (`entry`) VALUES('128821'); +INSERT INTO `transmog_items` (`entry`) VALUES('128824'); +INSERT INTO `transmog_items` (`entry`) VALUES('128825'); +INSERT INTO `transmog_items` (`entry`) VALUES('128826'); +INSERT INTO `transmog_items` (`entry`) VALUES('128827'); +INSERT INTO `transmog_items` (`entry`) VALUES('128828'); +INSERT INTO `transmog_items` (`entry`) VALUES('128831'); +INSERT INTO `transmog_items` (`entry`) VALUES('128832'); +INSERT INTO `transmog_items` (`entry`) VALUES('128833'); +INSERT INTO `transmog_items` (`entry`) VALUES('128834'); +INSERT INTO `transmog_items` (`entry`) VALUES('128835'); +INSERT INTO `transmog_items` (`entry`) VALUES('128836'); +INSERT INTO `transmog_items` (`entry`) VALUES('128837'); +INSERT INTO `transmog_items` (`entry`) VALUES('128838'); +INSERT INTO `transmog_items` (`entry`) VALUES('128839'); +INSERT INTO `transmog_items` (`entry`) VALUES('128840'); +INSERT INTO `transmog_items` (`entry`) VALUES('128841'); +INSERT INTO `transmog_items` (`entry`) VALUES('128842'); +INSERT INTO `transmog_items` (`entry`) VALUES('128843'); +INSERT INTO `transmog_items` (`entry`) VALUES('128844'); +INSERT INTO `transmog_items` (`entry`) VALUES('128845'); +INSERT INTO `transmog_items` (`entry`) VALUES('128846'); +INSERT INTO `transmog_items` (`entry`) VALUES('128847'); +INSERT INTO `transmog_items` (`entry`) VALUES('128848'); +INSERT INTO `transmog_items` (`entry`) VALUES('128849'); +INSERT INTO `transmog_items` (`entry`) VALUES('128850'); +INSERT INTO `transmog_items` (`entry`) VALUES('128851'); +INSERT INTO `transmog_items` (`entry`) VALUES('128852'); +INSERT INTO `transmog_items` (`entry`) VALUES('128853'); +INSERT INTO `transmog_items` (`entry`) VALUES('128854'); +INSERT INTO `transmog_items` (`entry`) VALUES('128855'); +INSERT INTO `transmog_items` (`entry`) VALUES('128856'); +INSERT INTO `transmog_items` (`entry`) VALUES('128857'); +INSERT INTO `transmog_items` (`entry`) VALUES('128858'); +INSERT INTO `transmog_items` (`entry`) VALUES('128859'); +INSERT INTO `transmog_items` (`entry`) VALUES('128860'); +INSERT INTO `transmog_items` (`entry`) VALUES('128861'); +INSERT INTO `transmog_items` (`entry`) VALUES('128862'); +INSERT INTO `transmog_items` (`entry`) VALUES('128863'); +INSERT INTO `transmog_items` (`entry`) VALUES('128864'); +INSERT INTO `transmog_items` (`entry`) VALUES('128865'); +INSERT INTO `transmog_items` (`entry`) VALUES('128866'); +INSERT INTO `transmog_items` (`entry`) VALUES('128867'); +INSERT INTO `transmog_items` (`entry`) VALUES('128868'); +INSERT INTO `transmog_items` (`entry`) VALUES('128869'); +INSERT INTO `transmog_items` (`entry`) VALUES('128870'); +INSERT INTO `transmog_items` (`entry`) VALUES('128871'); +INSERT INTO `transmog_items` (`entry`) VALUES('128872'); +INSERT INTO `transmog_items` (`entry`) VALUES('128873'); +INSERT INTO `transmog_items` (`entry`) VALUES('128874'); +INSERT INTO `transmog_items` (`entry`) VALUES('128875'); +INSERT INTO `transmog_items` (`entry`) VALUES('128918'); +INSERT INTO `transmog_items` (`entry`) VALUES('128922'); +INSERT INTO `transmog_items` (`entry`) VALUES('128923'); +INSERT INTO `transmog_items` (`entry`) VALUES('128924'); +INSERT INTO `transmog_items` (`entry`) VALUES('128925'); +INSERT INTO `transmog_items` (`entry`) VALUES('128928'); +INSERT INTO `transmog_items` (`entry`) VALUES('128929'); +INSERT INTO `transmog_items` (`entry`) VALUES('128930'); +INSERT INTO `transmog_items` (`entry`) VALUES('128931'); +INSERT INTO `transmog_items` (`entry`) VALUES('128933'); +INSERT INTO `transmog_items` (`entry`) VALUES('128939'); +INSERT INTO `transmog_items` (`entry`) VALUES('128940'); +INSERT INTO `transmog_items` (`entry`) VALUES('128945'); +INSERT INTO `transmog_items` (`entry`) VALUES('128947'); +INSERT INTO `transmog_items` (`entry`) VALUES('128949'); +INSERT INTO `transmog_items` (`entry`) VALUES('128950'); +INSERT INTO `transmog_items` (`entry`) VALUES('128951'); +INSERT INTO `transmog_items` (`entry`) VALUES('128953'); +INSERT INTO `transmog_items` (`entry`) VALUES('128954'); +INSERT INTO `transmog_items` (`entry`) VALUES('128955'); +INSERT INTO `transmog_items` (`entry`) VALUES('128957'); +INSERT INTO `transmog_items` (`entry`) VALUES('128960'); +INSERT INTO `transmog_items` (`entry`) VALUES('128963'); +INSERT INTO `transmog_items` (`entry`) VALUES('128964'); +INSERT INTO `transmog_items` (`entry`) VALUES('128966'); +INSERT INTO `transmog_items` (`entry`) VALUES('128967'); +INSERT INTO `transmog_items` (`entry`) VALUES('128968'); +INSERT INTO `transmog_items` (`entry`) VALUES('128972'); +INSERT INTO `transmog_items` (`entry`) VALUES('128973'); +INSERT INTO `transmog_items` (`entry`) VALUES('128974'); +INSERT INTO `transmog_items` (`entry`) VALUES('128975'); +INSERT INTO `transmog_items` (`entry`) VALUES('128976'); +INSERT INTO `transmog_items` (`entry`) VALUES('128977'); +INSERT INTO `transmog_items` (`entry`) VALUES('128978'); +INSERT INTO `transmog_items` (`entry`) VALUES('128979'); +INSERT INTO `transmog_items` (`entry`) VALUES('128980'); +INSERT INTO `transmog_items` (`entry`) VALUES('128981'); +INSERT INTO `transmog_items` (`entry`) VALUES('128982'); +INSERT INTO `transmog_items` (`entry`) VALUES('128983'); +INSERT INTO `transmog_items` (`entry`) VALUES('128984'); +INSERT INTO `transmog_items` (`entry`) VALUES('128985'); +INSERT INTO `transmog_items` (`entry`) VALUES('128986'); +INSERT INTO `transmog_items` (`entry`) VALUES('128987'); +INSERT INTO `transmog_items` (`entry`) VALUES('128988'); +INSERT INTO `transmog_items` (`entry`) VALUES('128989'); +INSERT INTO `transmog_items` (`entry`) VALUES('128990'); +INSERT INTO `transmog_items` (`entry`) VALUES('128991'); +INSERT INTO `transmog_items` (`entry`) VALUES('128992'); +INSERT INTO `transmog_items` (`entry`) VALUES('128993'); +INSERT INTO `transmog_items` (`entry`) VALUES('128994'); +INSERT INTO `transmog_items` (`entry`) VALUES('128995'); +INSERT INTO `transmog_items` (`entry`) VALUES('128996'); +INSERT INTO `transmog_items` (`entry`) VALUES('128997'); +INSERT INTO `transmog_items` (`entry`) VALUES('128998'); +INSERT INTO `transmog_items` (`entry`) VALUES('128999'); +INSERT INTO `transmog_items` (`entry`) VALUES('129000'); +INSERT INTO `transmog_items` (`entry`) VALUES('129001'); +INSERT INTO `transmog_items` (`entry`) VALUES('129002'); +INSERT INTO `transmog_items` (`entry`) VALUES('129003'); +INSERT INTO `transmog_items` (`entry`) VALUES('129004'); +INSERT INTO `transmog_items` (`entry`) VALUES('129005'); +INSERT INTO `transmog_items` (`entry`) VALUES('129006'); +INSERT INTO `transmog_items` (`entry`) VALUES('129007'); +INSERT INTO `transmog_items` (`entry`) VALUES('129008'); +INSERT INTO `transmog_items` (`entry`) VALUES('129009'); +INSERT INTO `transmog_items` (`entry`) VALUES('129010'); +INSERT INTO `transmog_items` (`entry`) VALUES('129011'); +INSERT INTO `transmog_items` (`entry`) VALUES('129012'); +INSERT INTO `transmog_items` (`entry`) VALUES('129013'); +INSERT INTO `transmog_items` (`entry`) VALUES('129014'); +INSERT INTO `transmog_items` (`entry`) VALUES('129015'); +INSERT INTO `transmog_items` (`entry`) VALUES('129016'); +INSERT INTO `transmog_items` (`entry`) VALUES('129017'); +INSERT INTO `transmog_items` (`entry`) VALUES('129019'); +INSERT INTO `transmog_items` (`entry`) VALUES('129020'); +INSERT INTO `transmog_items` (`entry`) VALUES('129021'); +INSERT INTO `transmog_items` (`entry`) VALUES('129022'); +INSERT INTO `transmog_items` (`entry`) VALUES('129023'); +INSERT INTO `transmog_items` (`entry`) VALUES('129028'); +INSERT INTO `transmog_items` (`entry`) VALUES('129029'); +INSERT INTO `transmog_items` (`entry`) VALUES('129030'); +INSERT INTO `transmog_items` (`entry`) VALUES('129031'); +INSERT INTO `transmog_items` (`entry`) VALUES('129032'); +INSERT INTO `transmog_items` (`entry`) VALUES('129033'); +INSERT INTO `transmog_items` (`entry`) VALUES('129034'); +INSERT INTO `transmog_items` (`entry`) VALUES('129035'); +INSERT INTO `transmog_items` (`entry`) VALUES('129036'); +INSERT INTO `transmog_items` (`entry`) VALUES('129037'); +INSERT INTO `transmog_items` (`entry`) VALUES('129038'); +INSERT INTO `transmog_items` (`entry`) VALUES('129039'); +INSERT INTO `transmog_items` (`entry`) VALUES('129040'); +INSERT INTO `transmog_items` (`entry`) VALUES('129042'); +INSERT INTO `transmog_items` (`entry`) VALUES('129043'); +INSERT INTO `transmog_items` (`entry`) VALUES('129044'); +INSERT INTO `transmog_items` (`entry`) VALUES('129045'); +INSERT INTO `transmog_items` (`entry`) VALUES('129046'); +INSERT INTO `transmog_items` (`entry`) VALUES('129047'); +INSERT INTO `transmog_items` (`entry`) VALUES('129048'); +INSERT INTO `transmog_items` (`entry`) VALUES('129049'); +INSERT INTO `transmog_items` (`entry`) VALUES('129050'); +INSERT INTO `transmog_items` (`entry`) VALUES('129053'); +INSERT INTO `transmog_items` (`entry`) VALUES('129054'); +INSERT INTO `transmog_items` (`entry`) VALUES('129055'); +INSERT INTO `transmog_items` (`entry`) VALUES('129056'); +INSERT INTO `transmog_items` (`entry`) VALUES('129057'); +INSERT INTO `transmog_items` (`entry`) VALUES('129058'); +INSERT INTO `transmog_items` (`entry`) VALUES('129059'); +INSERT INTO `transmog_items` (`entry`) VALUES('129060'); +INSERT INTO `transmog_items` (`entry`) VALUES('129061'); +INSERT INTO `transmog_items` (`entry`) VALUES('129062'); +INSERT INTO `transmog_items` (`entry`) VALUES('129063'); +INSERT INTO `transmog_items` (`entry`) VALUES('129064'); +INSERT INTO `transmog_items` (`entry`) VALUES('129065'); +INSERT INTO `transmog_items` (`entry`) VALUES('129066'); +INSERT INTO `transmog_items` (`entry`) VALUES('129067'); +INSERT INTO `transmog_items` (`entry`) VALUES('129068'); +INSERT INTO `transmog_items` (`entry`) VALUES('129069'); +INSERT INTO `transmog_items` (`entry`) VALUES('129070'); +INSERT INTO `transmog_items` (`entry`) VALUES('129071'); +INSERT INTO `transmog_items` (`entry`) VALUES('129072'); +INSERT INTO `transmog_items` (`entry`) VALUES('129073'); +INSERT INTO `transmog_items` (`entry`) VALUES('129074'); +INSERT INTO `transmog_items` (`entry`) VALUES('129075'); +INSERT INTO `transmog_items` (`entry`) VALUES('129076'); +INSERT INTO `transmog_items` (`entry`) VALUES('129077'); +INSERT INTO `transmog_items` (`entry`) VALUES('129078'); +INSERT INTO `transmog_items` (`entry`) VALUES('129079'); +INSERT INTO `transmog_items` (`entry`) VALUES('129080'); +INSERT INTO `transmog_items` (`entry`) VALUES('129081'); +INSERT INTO `transmog_items` (`entry`) VALUES('129082'); +INSERT INTO `transmog_items` (`entry`) VALUES('129083'); +INSERT INTO `transmog_items` (`entry`) VALUES('129084'); +INSERT INTO `transmog_items` (`entry`) VALUES('129085'); +INSERT INTO `transmog_items` (`entry`) VALUES('129086'); +INSERT INTO `transmog_items` (`entry`) VALUES('129087'); +INSERT INTO `transmog_items` (`entry`) VALUES('129088'); +INSERT INTO `transmog_items` (`entry`) VALUES('129089'); +INSERT INTO `transmog_items` (`entry`) VALUES('129090'); +INSERT INTO `transmog_items` (`entry`) VALUES('129091'); +INSERT INTO `transmog_items` (`entry`) VALUES('129092'); +INSERT INTO `transmog_items` (`entry`) VALUES('129093'); +INSERT INTO `transmog_items` (`entry`) VALUES('129094'); +INSERT INTO `transmog_items` (`entry`) VALUES('129095'); +INSERT INTO `transmog_items` (`entry`) VALUES('129096'); +INSERT INTO `transmog_items` (`entry`) VALUES('129097'); +INSERT INTO `transmog_items` (`entry`) VALUES('129098'); +INSERT INTO `transmog_items` (`entry`) VALUES('129099'); +INSERT INTO `transmog_items` (`entry`) VALUES('129100'); +INSERT INTO `transmog_items` (`entry`) VALUES('129115'); +INSERT INTO `transmog_items` (`entry`) VALUES('129116'); +INSERT INTO `transmog_items` (`entry`) VALUES('129117'); +INSERT INTO `transmog_items` (`entry`) VALUES('129121'); +INSERT INTO `transmog_items` (`entry`) VALUES('129122'); +INSERT INTO `transmog_items` (`entry`) VALUES('129125'); +INSERT INTO `transmog_items` (`entry`) VALUES('129127'); +INSERT INTO `transmog_items` (`entry`) VALUES('129129'); +INSERT INTO `transmog_items` (`entry`) VALUES('129131'); +INSERT INTO `transmog_items` (`entry`) VALUES('129134'); +INSERT INTO `transmog_items` (`entry`) VALUES('129135'); +INSERT INTO `transmog_items` (`entry`) VALUES('129136'); +INSERT INTO `transmog_items` (`entry`) VALUES('129137'); +INSERT INTO `transmog_items` (`entry`) VALUES('129139'); +INSERT INTO `transmog_items` (`entry`) VALUES('129140'); +INSERT INTO `transmog_items` (`entry`) VALUES('129141'); +INSERT INTO `transmog_items` (`entry`) VALUES('129142'); +INSERT INTO `transmog_items` (`entry`) VALUES('129147'); +INSERT INTO `transmog_items` (`entry`) VALUES('129148'); +INSERT INTO `transmog_items` (`entry`) VALUES('129149'); +INSERT INTO `transmog_items` (`entry`) VALUES('129150'); +INSERT INTO `transmog_items` (`entry`) VALUES('129151'); +INSERT INTO `transmog_items` (`entry`) VALUES('129152'); +INSERT INTO `transmog_items` (`entry`) VALUES('129166'); +INSERT INTO `transmog_items` (`entry`) VALUES('129167'); +INSERT INTO `transmog_items` (`entry`) VALUES('129174'); +INSERT INTO `transmog_items` (`entry`) VALUES('129175'); +INSERT INTO `transmog_items` (`entry`) VALUES('129176'); +INSERT INTO `transmog_items` (`entry`) VALUES('129180'); +INSERT INTO `transmog_items` (`entry`) VALUES('129182'); +INSERT INTO `transmog_items` (`entry`) VALUES('129183'); +INSERT INTO `transmog_items` (`entry`) VALUES('129184'); +INSERT INTO `transmog_items` (`entry`) VALUES('129200'); +INSERT INTO `transmog_items` (`entry`) VALUES('129201'); +INSERT INTO `transmog_items` (`entry`) VALUES('129202'); +INSERT INTO `transmog_items` (`entry`) VALUES('129203'); +INSERT INTO `transmog_items` (`entry`) VALUES('129204'); +INSERT INTO `transmog_items` (`entry`) VALUES('129210'); +INSERT INTO `transmog_items` (`entry`) VALUES('129211'); +INSERT INTO `transmog_items` (`entry`) VALUES('129212'); +INSERT INTO `transmog_items` (`entry`) VALUES('129237'); +INSERT INTO `transmog_items` (`entry`) VALUES('129238'); +INSERT INTO `transmog_items` (`entry`) VALUES('129239'); +INSERT INTO `transmog_items` (`entry`) VALUES('129240'); +INSERT INTO `transmog_items` (`entry`) VALUES('129241'); +INSERT INTO `transmog_items` (`entry`) VALUES('129242'); +INSERT INTO `transmog_items` (`entry`) VALUES('129243'); +INSERT INTO `transmog_items` (`entry`) VALUES('129244'); +INSERT INTO `transmog_items` (`entry`) VALUES('129245'); +INSERT INTO `transmog_items` (`entry`) VALUES('129246'); +INSERT INTO `transmog_items` (`entry`) VALUES('129247'); +INSERT INTO `transmog_items` (`entry`) VALUES('129248'); +INSERT INTO `transmog_items` (`entry`) VALUES('129249'); +INSERT INTO `transmog_items` (`entry`) VALUES('129250'); +INSERT INTO `transmog_items` (`entry`) VALUES('129251'); +INSERT INTO `transmog_items` (`entry`) VALUES('129252'); +INSERT INTO `transmog_items` (`entry`) VALUES('129253'); +INSERT INTO `transmog_items` (`entry`) VALUES('129254'); +INSERT INTO `transmog_items` (`entry`) VALUES('129255'); +INSERT INTO `transmog_items` (`entry`) VALUES('129257'); +INSERT INTO `transmog_items` (`entry`) VALUES('129258'); +INSERT INTO `transmog_items` (`entry`) VALUES('129259'); +INSERT INTO `transmog_items` (`entry`) VALUES('129261'); +INSERT INTO `transmog_items` (`entry`) VALUES('129262'); +INSERT INTO `transmog_items` (`entry`) VALUES('129263'); +INSERT INTO `transmog_items` (`entry`) VALUES('129264'); +INSERT INTO `transmog_items` (`entry`) VALUES('129265'); +INSERT INTO `transmog_items` (`entry`) VALUES('129266'); +INSERT INTO `transmog_items` (`entry`) VALUES('129267'); +INSERT INTO `transmog_items` (`entry`) VALUES('129268'); +INSERT INTO `transmog_items` (`entry`) VALUES('129275'); +INSERT INTO `transmog_items` (`entry`) VALUES('129312'); +INSERT INTO `transmog_items` (`entry`) VALUES('129313'); +INSERT INTO `transmog_items` (`entry`) VALUES('129314'); +INSERT INTO `transmog_items` (`entry`) VALUES('129315'); +INSERT INTO `transmog_items` (`entry`) VALUES('129316'); +INSERT INTO `transmog_items` (`entry`) VALUES('129317'); +INSERT INTO `transmog_items` (`entry`) VALUES('129318'); +INSERT INTO `transmog_items` (`entry`) VALUES('129319'); +INSERT INTO `transmog_items` (`entry`) VALUES('129325'); +INSERT INTO `transmog_items` (`entry`) VALUES('129326'); +INSERT INTO `transmog_items` (`entry`) VALUES('129327'); +INSERT INTO `transmog_items` (`entry`) VALUES('129328'); +INSERT INTO `transmog_items` (`entry`) VALUES('129329'); +INSERT INTO `transmog_items` (`entry`) VALUES('129332'); +INSERT INTO `transmog_items` (`entry`) VALUES('129337'); +INSERT INTO `transmog_items` (`entry`) VALUES('129339'); +INSERT INTO `transmog_items` (`entry`) VALUES('129340'); +INSERT INTO `transmog_items` (`entry`) VALUES('129341'); +INSERT INTO `transmog_items` (`entry`) VALUES('129342'); +INSERT INTO `transmog_items` (`entry`) VALUES('129343'); +INSERT INTO `transmog_items` (`entry`) VALUES('129344'); +INSERT INTO `transmog_items` (`entry`) VALUES('129345'); +INSERT INTO `transmog_items` (`entry`) VALUES('129346'); +INSERT INTO `transmog_items` (`entry`) VALUES('129348'); +INSERT INTO `transmog_items` (`entry`) VALUES('129350'); +INSERT INTO `transmog_items` (`entry`) VALUES('129351'); +INSERT INTO `transmog_items` (`entry`) VALUES('129353'); +INSERT INTO `transmog_items` (`entry`) VALUES('129354'); +INSERT INTO `transmog_items` (`entry`) VALUES('129357'); +INSERT INTO `transmog_items` (`entry`) VALUES('129360'); +INSERT INTO `transmog_items` (`entry`) VALUES('129369'); +INSERT INTO `transmog_items` (`entry`) VALUES('129371'); +INSERT INTO `transmog_items` (`entry`) VALUES('129372'); +INSERT INTO `transmog_items` (`entry`) VALUES('129375'); +INSERT INTO `transmog_items` (`entry`) VALUES('129377'); +INSERT INTO `transmog_items` (`entry`) VALUES('129378'); +INSERT INTO `transmog_items` (`entry`) VALUES('129382'); +INSERT INTO `transmog_items` (`entry`) VALUES('129385'); +INSERT INTO `transmog_items` (`entry`) VALUES('129391'); +INSERT INTO `transmog_items` (`entry`) VALUES('129400'); +INSERT INTO `transmog_items` (`entry`) VALUES('129457'); +INSERT INTO `transmog_items` (`entry`) VALUES('129458'); +INSERT INTO `transmog_items` (`entry`) VALUES('129463'); +INSERT INTO `transmog_items` (`entry`) VALUES('129489'); +INSERT INTO `transmog_items` (`entry`) VALUES('129490'); +INSERT INTO `transmog_items` (`entry`) VALUES('129491'); +INSERT INTO `transmog_items` (`entry`) VALUES('129492'); +INSERT INTO `transmog_items` (`entry`) VALUES('129493'); +INSERT INTO `transmog_items` (`entry`) VALUES('129494'); +INSERT INTO `transmog_items` (`entry`) VALUES('129495'); +INSERT INTO `transmog_items` (`entry`) VALUES('129496'); +INSERT INTO `transmog_items` (`entry`) VALUES('129497'); +INSERT INTO `transmog_items` (`entry`) VALUES('129498'); +INSERT INTO `transmog_items` (`entry`) VALUES('129499'); +INSERT INTO `transmog_items` (`entry`) VALUES('129500'); +INSERT INTO `transmog_items` (`entry`) VALUES('129502'); +INSERT INTO `transmog_items` (`entry`) VALUES('129503'); +INSERT INTO `transmog_items` (`entry`) VALUES('129504'); +INSERT INTO `transmog_items` (`entry`) VALUES('129505'); +INSERT INTO `transmog_items` (`entry`) VALUES('129506'); +INSERT INTO `transmog_items` (`entry`) VALUES('129507'); +INSERT INTO `transmog_items` (`entry`) VALUES('129508'); +INSERT INTO `transmog_items` (`entry`) VALUES('129509'); +INSERT INTO `transmog_items` (`entry`) VALUES('129510'); +INSERT INTO `transmog_items` (`entry`) VALUES('129511'); +INSERT INTO `transmog_items` (`entry`) VALUES('129512'); +INSERT INTO `transmog_items` (`entry`) VALUES('129514'); +INSERT INTO `transmog_items` (`entry`) VALUES('129515'); +INSERT INTO `transmog_items` (`entry`) VALUES('129516'); +INSERT INTO `transmog_items` (`entry`) VALUES('129517'); +INSERT INTO `transmog_items` (`entry`) VALUES('129519'); +INSERT INTO `transmog_items` (`entry`) VALUES('129520'); +INSERT INTO `transmog_items` (`entry`) VALUES('129521'); +INSERT INTO `transmog_items` (`entry`) VALUES('129522'); +INSERT INTO `transmog_items` (`entry`) VALUES('129523'); +INSERT INTO `transmog_items` (`entry`) VALUES('129524'); +INSERT INTO `transmog_items` (`entry`) VALUES('129525'); +INSERT INTO `transmog_items` (`entry`) VALUES('129526'); +INSERT INTO `transmog_items` (`entry`) VALUES('129527'); +INSERT INTO `transmog_items` (`entry`) VALUES('129584'); +INSERT INTO `transmog_items` (`entry`) VALUES('129594'); +INSERT INTO `transmog_items` (`entry`) VALUES('129595'); +INSERT INTO `transmog_items` (`entry`) VALUES('129596'); +INSERT INTO `transmog_items` (`entry`) VALUES('129597'); +INSERT INTO `transmog_items` (`entry`) VALUES('129598'); +INSERT INTO `transmog_items` (`entry`) VALUES('129599'); +INSERT INTO `transmog_items` (`entry`) VALUES('129600'); +INSERT INTO `transmog_items` (`entry`) VALUES('129601'); +INSERT INTO `transmog_items` (`entry`) VALUES('129602'); +INSERT INTO `transmog_items` (`entry`) VALUES('129603'); +INSERT INTO `transmog_items` (`entry`) VALUES('129604'); +INSERT INTO `transmog_items` (`entry`) VALUES('129605'); +INSERT INTO `transmog_items` (`entry`) VALUES('129606'); +INSERT INTO `transmog_items` (`entry`) VALUES('129607'); +INSERT INTO `transmog_items` (`entry`) VALUES('129608'); +INSERT INTO `transmog_items` (`entry`) VALUES('129609'); +INSERT INTO `transmog_items` (`entry`) VALUES('129610'); +INSERT INTO `transmog_items` (`entry`) VALUES('129611'); +INSERT INTO `transmog_items` (`entry`) VALUES('129612'); +INSERT INTO `transmog_items` (`entry`) VALUES('129613'); +INSERT INTO `transmog_items` (`entry`) VALUES('129614'); +INSERT INTO `transmog_items` (`entry`) VALUES('129615'); +INSERT INTO `transmog_items` (`entry`) VALUES('129616'); +INSERT INTO `transmog_items` (`entry`) VALUES('129617'); +INSERT INTO `transmog_items` (`entry`) VALUES('129771'); +INSERT INTO `transmog_items` (`entry`) VALUES('129772'); +INSERT INTO `transmog_items` (`entry`) VALUES('129773'); +INSERT INTO `transmog_items` (`entry`) VALUES('129774'); +INSERT INTO `transmog_items` (`entry`) VALUES('129777'); +INSERT INTO `transmog_items` (`entry`) VALUES('129779'); +INSERT INTO `transmog_items` (`entry`) VALUES('129780'); +INSERT INTO `transmog_items` (`entry`) VALUES('129781'); +INSERT INTO `transmog_items` (`entry`) VALUES('129782'); +INSERT INTO `transmog_items` (`entry`) VALUES('129783'); +INSERT INTO `transmog_items` (`entry`) VALUES('129784'); +INSERT INTO `transmog_items` (`entry`) VALUES('129785'); +INSERT INTO `transmog_items` (`entry`) VALUES('129786'); +INSERT INTO `transmog_items` (`entry`) VALUES('129787'); +INSERT INTO `transmog_items` (`entry`) VALUES('129788'); +INSERT INTO `transmog_items` (`entry`) VALUES('129789'); +INSERT INTO `transmog_items` (`entry`) VALUES('129791'); +INSERT INTO `transmog_items` (`entry`) VALUES('129792'); +INSERT INTO `transmog_items` (`entry`) VALUES('129804'); +INSERT INTO `transmog_items` (`entry`) VALUES('129806'); +INSERT INTO `transmog_items` (`entry`) VALUES('129807'); +INSERT INTO `transmog_items` (`entry`) VALUES('129808'); +INSERT INTO `transmog_items` (`entry`) VALUES('129810'); +INSERT INTO `transmog_items` (`entry`) VALUES('129811'); +INSERT INTO `transmog_items` (`entry`) VALUES('129812'); +INSERT INTO `transmog_items` (`entry`) VALUES('129813'); +INSERT INTO `transmog_items` (`entry`) VALUES('129908'); +INSERT INTO `transmog_items` (`entry`) VALUES('129909'); +INSERT INTO `transmog_items` (`entry`) VALUES('129914'); +INSERT INTO `transmog_items` (`entry`) VALUES('129915'); +INSERT INTO `transmog_items` (`entry`) VALUES('129916'); +INSERT INTO `transmog_items` (`entry`) VALUES('129917'); +INSERT INTO `transmog_items` (`entry`) VALUES('129918'); +INSERT INTO `transmog_items` (`entry`) VALUES('129919'); +INSERT INTO `transmog_items` (`entry`) VALUES('129921'); +INSERT INTO `transmog_items` (`entry`) VALUES('129925'); +INSERT INTO `transmog_items` (`entry`) VALUES('129926'); +INSERT INTO `transmog_items` (`entry`) VALUES('129927'); +INSERT INTO `transmog_items` (`entry`) VALUES('129928'); +INSERT INTO `transmog_items` (`entry`) VALUES('129929'); +INSERT INTO `transmog_items` (`entry`) VALUES('129930'); +INSERT INTO `transmog_items` (`entry`) VALUES('129931'); +INSERT INTO `transmog_items` (`entry`) VALUES('129932'); +INSERT INTO `transmog_items` (`entry`) VALUES('129933'); +INSERT INTO `transmog_items` (`entry`) VALUES('129934'); +INSERT INTO `transmog_items` (`entry`) VALUES('129935'); +INSERT INTO `transmog_items` (`entry`) VALUES('129936'); +INSERT INTO `transmog_items` (`entry`) VALUES('129937'); +INSERT INTO `transmog_items` (`entry`) VALUES('129938'); +INSERT INTO `transmog_items` (`entry`) VALUES('129939'); +INSERT INTO `transmog_items` (`entry`) VALUES('129940'); +INSERT INTO `transmog_items` (`entry`) VALUES('129941'); +INSERT INTO `transmog_items` (`entry`) VALUES('129942'); +INSERT INTO `transmog_items` (`entry`) VALUES('129943'); +INSERT INTO `transmog_items` (`entry`) VALUES('129944'); +INSERT INTO `transmog_items` (`entry`) VALUES('129945'); +INSERT INTO `transmog_items` (`entry`) VALUES('129946'); +INSERT INTO `transmog_items` (`entry`) VALUES('129947'); +INSERT INTO `transmog_items` (`entry`) VALUES('129948'); +INSERT INTO `transmog_items` (`entry`) VALUES('129949'); +INSERT INTO `transmog_items` (`entry`) VALUES('129950'); +INSERT INTO `transmog_items` (`entry`) VALUES('129951'); +INSERT INTO `transmog_items` (`entry`) VALUES('129954'); +INSERT INTO `transmog_items` (`entry`) VALUES('129955'); +INSERT INTO `transmog_items` (`entry`) VALUES('129959'); +INSERT INTO `transmog_items` (`entry`) VALUES('129962'); +INSERT INTO `transmog_items` (`entry`) VALUES('129964'); +INSERT INTO `transmog_items` (`entry`) VALUES('129965'); +INSERT INTO `transmog_items` (`entry`) VALUES('129966'); +INSERT INTO `transmog_items` (`entry`) VALUES('129967'); +INSERT INTO `transmog_items` (`entry`) VALUES('129968'); +INSERT INTO `transmog_items` (`entry`) VALUES('129969'); +INSERT INTO `transmog_items` (`entry`) VALUES('129970'); +INSERT INTO `transmog_items` (`entry`) VALUES('129971'); +INSERT INTO `transmog_items` (`entry`) VALUES('129972'); +INSERT INTO `transmog_items` (`entry`) VALUES('129973'); +INSERT INTO `transmog_items` (`entry`) VALUES('129974'); +INSERT INTO `transmog_items` (`entry`) VALUES('129975'); +INSERT INTO `transmog_items` (`entry`) VALUES('129976'); +INSERT INTO `transmog_items` (`entry`) VALUES('129977'); +INSERT INTO `transmog_items` (`entry`) VALUES('129978'); +INSERT INTO `transmog_items` (`entry`) VALUES('129979'); +INSERT INTO `transmog_items` (`entry`) VALUES('129980'); +INSERT INTO `transmog_items` (`entry`) VALUES('129982'); +INSERT INTO `transmog_items` (`entry`) VALUES('129983'); +INSERT INTO `transmog_items` (`entry`) VALUES('129984'); +INSERT INTO `transmog_items` (`entry`) VALUES('129985'); +INSERT INTO `transmog_items` (`entry`) VALUES('129986'); +INSERT INTO `transmog_items` (`entry`) VALUES('129987'); +INSERT INTO `transmog_items` (`entry`) VALUES('129989'); +INSERT INTO `transmog_items` (`entry`) VALUES('129990'); +INSERT INTO `transmog_items` (`entry`) VALUES('129991'); +INSERT INTO `transmog_items` (`entry`) VALUES('129992'); +INSERT INTO `transmog_items` (`entry`) VALUES('129994'); +INSERT INTO `transmog_items` (`entry`) VALUES('129995'); +INSERT INTO `transmog_items` (`entry`) VALUES('129996'); +INSERT INTO `transmog_items` (`entry`) VALUES('129998'); +INSERT INTO `transmog_items` (`entry`) VALUES('129999'); +INSERT INTO `transmog_items` (`entry`) VALUES('130000'); +INSERT INTO `transmog_items` (`entry`) VALUES('130001'); +INSERT INTO `transmog_items` (`entry`) VALUES('130002'); +INSERT INTO `transmog_items` (`entry`) VALUES('130003'); +INSERT INTO `transmog_items` (`entry`) VALUES('130004'); +INSERT INTO `transmog_items` (`entry`) VALUES('130005'); +INSERT INTO `transmog_items` (`entry`) VALUES('130009'); +INSERT INTO `transmog_items` (`entry`) VALUES('130013'); +INSERT INTO `transmog_items` (`entry`) VALUES('130014'); +INSERT INTO `transmog_items` (`entry`) VALUES('130016'); +INSERT INTO `transmog_items` (`entry`) VALUES('130019'); +INSERT INTO `transmog_items` (`entry`) VALUES('130020'); +INSERT INTO `transmog_items` (`entry`) VALUES('130024'); +INSERT INTO `transmog_items` (`entry`) VALUES('130025'); +INSERT INTO `transmog_items` (`entry`) VALUES('130026'); +INSERT INTO `transmog_items` (`entry`) VALUES('130027'); +INSERT INTO `transmog_items` (`entry`) VALUES('130029'); +INSERT INTO `transmog_items` (`entry`) VALUES('130030'); +INSERT INTO `transmog_items` (`entry`) VALUES('130031'); +INSERT INTO `transmog_items` (`entry`) VALUES('130032'); +INSERT INTO `transmog_items` (`entry`) VALUES('130033'); +INSERT INTO `transmog_items` (`entry`) VALUES('130034'); +INSERT INTO `transmog_items` (`entry`) VALUES('130035'); +INSERT INTO `transmog_items` (`entry`) VALUES('130036'); +INSERT INTO `transmog_items` (`entry`) VALUES('130037'); +INSERT INTO `transmog_items` (`entry`) VALUES('130038'); +INSERT INTO `transmog_items` (`entry`) VALUES('130039'); +INSERT INTO `transmog_items` (`entry`) VALUES('130040'); +INSERT INTO `transmog_items` (`entry`) VALUES('130041'); +INSERT INTO `transmog_items` (`entry`) VALUES('130042'); +INSERT INTO `transmog_items` (`entry`) VALUES('130043'); +INSERT INTO `transmog_items` (`entry`) VALUES('130044'); +INSERT INTO `transmog_items` (`entry`) VALUES('130045'); +INSERT INTO `transmog_items` (`entry`) VALUES('130046'); +INSERT INTO `transmog_items` (`entry`) VALUES('130047'); +INSERT INTO `transmog_items` (`entry`) VALUES('130048'); +INSERT INTO `transmog_items` (`entry`) VALUES('130050'); +INSERT INTO `transmog_items` (`entry`) VALUES('130053'); +INSERT INTO `transmog_items` (`entry`) VALUES('130054'); +INSERT INTO `transmog_items` (`entry`) VALUES('130055'); +INSERT INTO `transmog_items` (`entry`) VALUES('130056'); +INSERT INTO `transmog_items` (`entry`) VALUES('130057'); +INSERT INTO `transmog_items` (`entry`) VALUES('130058'); +INSERT INTO `transmog_items` (`entry`) VALUES('130060'); +INSERT INTO `transmog_items` (`entry`) VALUES('130062'); +INSERT INTO `transmog_items` (`entry`) VALUES('130064'); +INSERT INTO `transmog_items` (`entry`) VALUES('130065'); +INSERT INTO `transmog_items` (`entry`) VALUES('130066'); +INSERT INTO `transmog_items` (`entry`) VALUES('130067'); +INSERT INTO `transmog_items` (`entry`) VALUES('130068'); +INSERT INTO `transmog_items` (`entry`) VALUES('130069'); +INSERT INTO `transmog_items` (`entry`) VALUES('130070'); +INSERT INTO `transmog_items` (`entry`) VALUES('130073'); +INSERT INTO `transmog_items` (`entry`) VALUES('130074'); +INSERT INTO `transmog_items` (`entry`) VALUES('130075'); +INSERT INTO `transmog_items` (`entry`) VALUES('130076'); +INSERT INTO `transmog_items` (`entry`) VALUES('130079'); +INSERT INTO `transmog_items` (`entry`) VALUES('130080'); +INSERT INTO `transmog_items` (`entry`) VALUES('130081'); +INSERT INTO `transmog_items` (`entry`) VALUES('130084'); +INSERT INTO `transmog_items` (`entry`) VALUES('130085'); +INSERT INTO `transmog_items` (`entry`) VALUES('130088'); +INSERT INTO `transmog_items` (`entry`) VALUES('130089'); +INSERT INTO `transmog_items` (`entry`) VALUES('130091'); +INSERT INTO `transmog_items` (`entry`) VALUES('130092'); +INSERT INTO `transmog_items` (`entry`) VALUES('130096'); +INSERT INTO `transmog_items` (`entry`) VALUES('130097'); +INSERT INTO `transmog_items` (`entry`) VALUES('130098'); +INSERT INTO `transmog_items` (`entry`) VALUES('130100'); +INSERT INTO `transmog_items` (`entry`) VALUES('130101'); +INSERT INTO `transmog_items` (`entry`) VALUES('130102'); +INSERT INTO `transmog_items` (`entry`) VALUES('130103'); +INSERT INTO `transmog_items` (`entry`) VALUES('130104'); +INSERT INTO `transmog_items` (`entry`) VALUES('130105'); +INSERT INTO `transmog_items` (`entry`) VALUES('130106'); +INSERT INTO `transmog_items` (`entry`) VALUES('130107'); +INSERT INTO `transmog_items` (`entry`) VALUES('130108'); +INSERT INTO `transmog_items` (`entry`) VALUES('130111'); +INSERT INTO `transmog_items` (`entry`) VALUES('130112'); +INSERT INTO `transmog_items` (`entry`) VALUES('130113'); +INSERT INTO `transmog_items` (`entry`) VALUES('130114'); +INSERT INTO `transmog_items` (`entry`) VALUES('130115'); +INSERT INTO `transmog_items` (`entry`) VALUES('130116'); +INSERT INTO `transmog_items` (`entry`) VALUES('130117'); +INSERT INTO `transmog_items` (`entry`) VALUES('130118'); +INSERT INTO `transmog_items` (`entry`) VALUES('130119'); +INSERT INTO `transmog_items` (`entry`) VALUES('130120'); +INSERT INTO `transmog_items` (`entry`) VALUES('130121'); +INSERT INTO `transmog_items` (`entry`) VALUES('130122'); +INSERT INTO `transmog_items` (`entry`) VALUES('130123'); +INSERT INTO `transmog_items` (`entry`) VALUES('130124'); +INSERT INTO `transmog_items` (`entry`) VALUES('130125'); +INSERT INTO `transmog_items` (`entry`) VALUES('130126'); +INSERT INTO `transmog_items` (`entry`) VALUES('130127'); +INSERT INTO `transmog_items` (`entry`) VALUES('130129'); +INSERT INTO `transmog_items` (`entry`) VALUES('130130'); +INSERT INTO `transmog_items` (`entry`) VALUES('130131'); +INSERT INTO `transmog_items` (`entry`) VALUES('130132'); +INSERT INTO `transmog_items` (`entry`) VALUES('130133'); +INSERT INTO `transmog_items` (`entry`) VALUES('130134'); +INSERT INTO `transmog_items` (`entry`) VALUES('130135'); +INSERT INTO `transmog_items` (`entry`) VALUES('130136'); +INSERT INTO `transmog_items` (`entry`) VALUES('130137'); +INSERT INTO `transmog_items` (`entry`) VALUES('130138'); +INSERT INTO `transmog_items` (`entry`) VALUES('130139'); +INSERT INTO `transmog_items` (`entry`) VALUES('130140'); +INSERT INTO `transmog_items` (`entry`) VALUES('130141'); +INSERT INTO `transmog_items` (`entry`) VALUES('130142'); +INSERT INTO `transmog_items` (`entry`) VALUES('130143'); +INSERT INTO `transmog_items` (`entry`) VALUES('130144'); +INSERT INTO `transmog_items` (`entry`) VALUES('130145'); +INSERT INTO `transmog_items` (`entry`) VALUES('130146'); +INSERT INTO `transmog_items` (`entry`) VALUES('130148'); +INSERT INTO `transmog_items` (`entry`) VALUES('130149'); +INSERT INTO `transmog_items` (`entry`) VALUES('130150'); +INSERT INTO `transmog_items` (`entry`) VALUES('130151'); +INSERT INTO `transmog_items` (`entry`) VALUES('130152'); +INSERT INTO `transmog_items` (`entry`) VALUES('130153'); +INSERT INTO `transmog_items` (`entry`) VALUES('130154'); +INSERT INTO `transmog_items` (`entry`) VALUES('130159'); +INSERT INTO `transmog_items` (`entry`) VALUES('130160'); +INSERT INTO `transmog_items` (`entry`) VALUES('130161'); +INSERT INTO `transmog_items` (`entry`) VALUES('130162'); +INSERT INTO `transmog_items` (`entry`) VALUES('130163'); +INSERT INTO `transmog_items` (`entry`) VALUES('130164'); +INSERT INTO `transmog_items` (`entry`) VALUES('130165'); +INSERT INTO `transmog_items` (`entry`) VALUES('130166'); +INSERT INTO `transmog_items` (`entry`) VALUES('130167'); +INSERT INTO `transmog_items` (`entry`) VALUES('130168'); +INSERT INTO `transmog_items` (`entry`) VALUES('130169'); +INSERT INTO `transmog_items` (`entry`) VALUES('130170'); +INSERT INTO `transmog_items` (`entry`) VALUES('130171'); +INSERT INTO `transmog_items` (`entry`) VALUES('130172'); +INSERT INTO `transmog_items` (`entry`) VALUES('130173'); +INSERT INTO `transmog_items` (`entry`) VALUES('130185'); +INSERT INTO `transmog_items` (`entry`) VALUES('130186'); +INSERT INTO `transmog_items` (`entry`) VALUES('130187'); +INSERT INTO `transmog_items` (`entry`) VALUES('130188'); +INSERT INTO `transmog_items` (`entry`) VALUES('130189'); +INSERT INTO `transmog_items` (`entry`) VALUES('130190'); +INSERT INTO `transmog_items` (`entry`) VALUES('130192'); +INSERT INTO `transmog_items` (`entry`) VALUES('130194'); +INSERT INTO `transmog_items` (`entry`) VALUES('130196'); +INSERT INTO `transmog_items` (`entry`) VALUES('130200'); +INSERT INTO `transmog_items` (`entry`) VALUES('130201'); +INSERT INTO `transmog_items` (`entry`) VALUES('130205'); +INSERT INTO `transmog_items` (`entry`) VALUES('130206'); +INSERT INTO `transmog_items` (`entry`) VALUES('130207'); +INSERT INTO `transmog_items` (`entry`) VALUES('130210'); +INSERT INTO `transmog_items` (`entry`) VALUES('130211'); +INSERT INTO `transmog_items` (`entry`) VALUES('130212'); +INSERT INTO `transmog_items` (`entry`) VALUES('130213'); +INSERT INTO `transmog_items` (`entry`) VALUES('130214'); +INSERT INTO `transmog_items` (`entry`) VALUES('130215'); +INSERT INTO `transmog_items` (`entry`) VALUES('130216'); +INSERT INTO `transmog_items` (`entry`) VALUES('130217'); +INSERT INTO `transmog_items` (`entry`) VALUES('130218'); +INSERT INTO `transmog_items` (`entry`) VALUES('130219'); +INSERT INTO `transmog_items` (`entry`) VALUES('130220'); +INSERT INTO `transmog_items` (`entry`) VALUES('130221'); +INSERT INTO `transmog_items` (`entry`) VALUES('130222'); +INSERT INTO `transmog_items` (`entry`) VALUES('130223'); +INSERT INTO `transmog_items` (`entry`) VALUES('130224'); +INSERT INTO `transmog_items` (`entry`) VALUES('130225'); +INSERT INTO `transmog_items` (`entry`) VALUES('130226'); +INSERT INTO `transmog_items` (`entry`) VALUES('130227'); +INSERT INTO `transmog_items` (`entry`) VALUES('130228'); +INSERT INTO `transmog_items` (`entry`) VALUES('130229'); +INSERT INTO `transmog_items` (`entry`) VALUES('130230'); +INSERT INTO `transmog_items` (`entry`) VALUES('130231'); +INSERT INTO `transmog_items` (`entry`) VALUES('130232'); +INSERT INTO `transmog_items` (`entry`) VALUES('130233'); +INSERT INTO `transmog_items` (`entry`) VALUES('130234'); +INSERT INTO `transmog_items` (`entry`) VALUES('130235'); +INSERT INTO `transmog_items` (`entry`) VALUES('130252'); +INSERT INTO `transmog_items` (`entry`) VALUES('130253'); +INSERT INTO `transmog_items` (`entry`) VALUES('130254'); +INSERT INTO `transmog_items` (`entry`) VALUES('130255'); +INSERT INTO `transmog_items` (`entry`) VALUES('130256'); +INSERT INTO `transmog_items` (`entry`) VALUES('130257'); +INSERT INTO `transmog_items` (`entry`) VALUES('130258'); +INSERT INTO `transmog_items` (`entry`) VALUES('130262'); +INSERT INTO `transmog_items` (`entry`) VALUES('130263'); +INSERT INTO `transmog_items` (`entry`) VALUES('130264'); +INSERT INTO `transmog_items` (`entry`) VALUES('130265'); +INSERT INTO `transmog_items` (`entry`) VALUES('130266'); +INSERT INTO `transmog_items` (`entry`) VALUES('130267'); +INSERT INTO `transmog_items` (`entry`) VALUES('130268'); +INSERT INTO `transmog_items` (`entry`) VALUES('130269'); +INSERT INTO `transmog_items` (`entry`) VALUES('130270'); +INSERT INTO `transmog_items` (`entry`) VALUES('130271'); +INSERT INTO `transmog_items` (`entry`) VALUES('130272'); +INSERT INTO `transmog_items` (`entry`) VALUES('130273'); +INSERT INTO `transmog_items` (`entry`) VALUES('130274'); +INSERT INTO `transmog_items` (`entry`) VALUES('130275'); +INSERT INTO `transmog_items` (`entry`) VALUES('130277'); +INSERT INTO `transmog_items` (`entry`) VALUES('130279'); +INSERT INTO `transmog_items` (`entry`) VALUES('130284'); +INSERT INTO `transmog_items` (`entry`) VALUES('130285'); +INSERT INTO `transmog_items` (`entry`) VALUES('130286'); +INSERT INTO `transmog_items` (`entry`) VALUES('130287'); +INSERT INTO `transmog_items` (`entry`) VALUES('130288'); +INSERT INTO `transmog_items` (`entry`) VALUES('130289'); +INSERT INTO `transmog_items` (`entry`) VALUES('130290'); +INSERT INTO `transmog_items` (`entry`) VALUES('130291'); +INSERT INTO `transmog_items` (`entry`) VALUES('130294'); +INSERT INTO `transmog_items` (`entry`) VALUES('130295'); +INSERT INTO `transmog_items` (`entry`) VALUES('130296'); +INSERT INTO `transmog_items` (`entry`) VALUES('130297'); +INSERT INTO `transmog_items` (`entry`) VALUES('130298'); +INSERT INTO `transmog_items` (`entry`) VALUES('130299'); +INSERT INTO `transmog_items` (`entry`) VALUES('130312'); +INSERT INTO `transmog_items` (`entry`) VALUES('130314'); +INSERT INTO `transmog_items` (`entry`) VALUES('130316'); +INSERT INTO `transmog_items` (`entry`) VALUES('130317'); +INSERT INTO `transmog_items` (`entry`) VALUES('130318'); +INSERT INTO `transmog_items` (`entry`) VALUES('130328'); +INSERT INTO `transmog_items` (`entry`) VALUES('130329'); +INSERT INTO `transmog_items` (`entry`) VALUES('130330'); +INSERT INTO `transmog_items` (`entry`) VALUES('130331'); +INSERT INTO `transmog_items` (`entry`) VALUES('130332'); +INSERT INTO `transmog_items` (`entry`) VALUES('130333'); +INSERT INTO `transmog_items` (`entry`) VALUES('130334'); +INSERT INTO `transmog_items` (`entry`) VALUES('130335'); +INSERT INTO `transmog_items` (`entry`) VALUES('130336'); +INSERT INTO `transmog_items` (`entry`) VALUES('130337'); +INSERT INTO `transmog_items` (`entry`) VALUES('130338'); +INSERT INTO `transmog_items` (`entry`) VALUES('130341'); +INSERT INTO `transmog_items` (`entry`) VALUES('130342'); +INSERT INTO `transmog_items` (`entry`) VALUES('130352'); +INSERT INTO `transmog_items` (`entry`) VALUES('130362'); +INSERT INTO `transmog_items` (`entry`) VALUES('130363'); +INSERT INTO `transmog_items` (`entry`) VALUES('130368'); +INSERT INTO `transmog_items` (`entry`) VALUES('130369'); +INSERT INTO `transmog_items` (`entry`) VALUES('130370'); +INSERT INTO `transmog_items` (`entry`) VALUES('130371'); +INSERT INTO `transmog_items` (`entry`) VALUES('130372'); +INSERT INTO `transmog_items` (`entry`) VALUES('130373'); +INSERT INTO `transmog_items` (`entry`) VALUES('130374'); +INSERT INTO `transmog_items` (`entry`) VALUES('130375'); +INSERT INTO `transmog_items` (`entry`) VALUES('130379'); +INSERT INTO `transmog_items` (`entry`) VALUES('130380'); +INSERT INTO `transmog_items` (`entry`) VALUES('130381'); +INSERT INTO `transmog_items` (`entry`) VALUES('130382'); +INSERT INTO `transmog_items` (`entry`) VALUES('130383'); +INSERT INTO `transmog_items` (`entry`) VALUES('130384'); +INSERT INTO `transmog_items` (`entry`) VALUES('130386'); +INSERT INTO `transmog_items` (`entry`) VALUES('130396'); +INSERT INTO `transmog_items` (`entry`) VALUES('130397'); +INSERT INTO `transmog_items` (`entry`) VALUES('130398'); +INSERT INTO `transmog_items` (`entry`) VALUES('130399'); +INSERT INTO `transmog_items` (`entry`) VALUES('130400'); +INSERT INTO `transmog_items` (`entry`) VALUES('130401'); +INSERT INTO `transmog_items` (`entry`) VALUES('130402'); +INSERT INTO `transmog_items` (`entry`) VALUES('130418'); +INSERT INTO `transmog_items` (`entry`) VALUES('130459'); +INSERT INTO `transmog_items` (`entry`) VALUES('130460'); +INSERT INTO `transmog_items` (`entry`) VALUES('130461'); +INSERT INTO `transmog_items` (`entry`) VALUES('130463'); +INSERT INTO `transmog_items` (`entry`) VALUES('130464'); +INSERT INTO `transmog_items` (`entry`) VALUES('130465'); +INSERT INTO `transmog_items` (`entry`) VALUES('130486'); +INSERT INTO `transmog_items` (`entry`) VALUES('130487'); +INSERT INTO `transmog_items` (`entry`) VALUES('130488'); +INSERT INTO `transmog_items` (`entry`) VALUES('130489'); +INSERT INTO `transmog_items` (`entry`) VALUES('130490'); +INSERT INTO `transmog_items` (`entry`) VALUES('130491'); +INSERT INTO `transmog_items` (`entry`) VALUES('130497'); +INSERT INTO `transmog_items` (`entry`) VALUES('130498'); +INSERT INTO `transmog_items` (`entry`) VALUES('130504'); +INSERT INTO `transmog_items` (`entry`) VALUES('130505'); +INSERT INTO `transmog_items` (`entry`) VALUES('130514'); +INSERT INTO `transmog_items` (`entry`) VALUES('130515'); +INSERT INTO `transmog_items` (`entry`) VALUES('130516'); +INSERT INTO `transmog_items` (`entry`) VALUES('130517'); +INSERT INTO `transmog_items` (`entry`) VALUES('130518'); +INSERT INTO `transmog_items` (`entry`) VALUES('130519'); +INSERT INTO `transmog_items` (`entry`) VALUES('130520'); +INSERT INTO `transmog_items` (`entry`) VALUES('130521'); +INSERT INTO `transmog_items` (`entry`) VALUES('130523'); +INSERT INTO `transmog_items` (`entry`) VALUES('130531'); +INSERT INTO `transmog_items` (`entry`) VALUES('130532'); +INSERT INTO `transmog_items` (`entry`) VALUES('130533'); +INSERT INTO `transmog_items` (`entry`) VALUES('130534'); +INSERT INTO `transmog_items` (`entry`) VALUES('130535'); +INSERT INTO `transmog_items` (`entry`) VALUES('130536'); +INSERT INTO `transmog_items` (`entry`) VALUES('130538'); +INSERT INTO `transmog_items` (`entry`) VALUES('130541'); +INSERT INTO `transmog_items` (`entry`) VALUES('130543'); +INSERT INTO `transmog_items` (`entry`) VALUES('130568'); +INSERT INTO `transmog_items` (`entry`) VALUES('130599'); +INSERT INTO `transmog_items` (`entry`) VALUES('130641'); +INSERT INTO `transmog_items` (`entry`) VALUES('130642'); +INSERT INTO `transmog_items` (`entry`) VALUES('130643'); +INSERT INTO `transmog_items` (`entry`) VALUES('130644'); +INSERT INTO `transmog_items` (`entry`) VALUES('130668'); +INSERT INTO `transmog_items` (`entry`) VALUES('130673'); +INSERT INTO `transmog_items` (`entry`) VALUES('130674'); +INSERT INTO `transmog_items` (`entry`) VALUES('130675'); +INSERT INTO `transmog_items` (`entry`) VALUES('130676'); +INSERT INTO `transmog_items` (`entry`) VALUES('130677'); +INSERT INTO `transmog_items` (`entry`) VALUES('130678'); +INSERT INTO `transmog_items` (`entry`) VALUES('130680'); +INSERT INTO `transmog_items` (`entry`) VALUES('130681'); +INSERT INTO `transmog_items` (`entry`) VALUES('130682'); +INSERT INTO `transmog_items` (`entry`) VALUES('130683'); +INSERT INTO `transmog_items` (`entry`) VALUES('130684'); +INSERT INTO `transmog_items` (`entry`) VALUES('130685'); +INSERT INTO `transmog_items` (`entry`) VALUES('130686'); +INSERT INTO `transmog_items` (`entry`) VALUES('130687'); +INSERT INTO `transmog_items` (`entry`) VALUES('130705'); +INSERT INTO `transmog_items` (`entry`) VALUES('130707'); +INSERT INTO `transmog_items` (`entry`) VALUES('130708'); +INSERT INTO `transmog_items` (`entry`) VALUES('130709'); +INSERT INTO `transmog_items` (`entry`) VALUES('130722'); +INSERT INTO `transmog_items` (`entry`) VALUES('130723'); +INSERT INTO `transmog_items` (`entry`) VALUES('130724'); +INSERT INTO `transmog_items` (`entry`) VALUES('130725'); +INSERT INTO `transmog_items` (`entry`) VALUES('130727'); +INSERT INTO `transmog_items` (`entry`) VALUES('130728'); +INSERT INTO `transmog_items` (`entry`) VALUES('130729'); +INSERT INTO `transmog_items` (`entry`) VALUES('130730'); +INSERT INTO `transmog_items` (`entry`) VALUES('130731'); +INSERT INTO `transmog_items` (`entry`) VALUES('130734'); +INSERT INTO `transmog_items` (`entry`) VALUES('130735'); +INSERT INTO `transmog_items` (`entry`) VALUES('130737'); +INSERT INTO `transmog_items` (`entry`) VALUES('130739'); +INSERT INTO `transmog_items` (`entry`) VALUES('130740'); +INSERT INTO `transmog_items` (`entry`) VALUES('130741'); +INSERT INTO `transmog_items` (`entry`) VALUES('130752'); +INSERT INTO `transmog_items` (`entry`) VALUES('130753'); +INSERT INTO `transmog_items` (`entry`) VALUES('130754'); +INSERT INTO `transmog_items` (`entry`) VALUES('130755'); +INSERT INTO `transmog_items` (`entry`) VALUES('130757'); +INSERT INTO `transmog_items` (`entry`) VALUES('130758'); +INSERT INTO `transmog_items` (`entry`) VALUES('130759'); +INSERT INTO `transmog_items` (`entry`) VALUES('130760'); +INSERT INTO `transmog_items` (`entry`) VALUES('130761'); +INSERT INTO `transmog_items` (`entry`) VALUES('130762'); +INSERT INTO `transmog_items` (`entry`) VALUES('130763'); +INSERT INTO `transmog_items` (`entry`) VALUES('130764'); +INSERT INTO `transmog_items` (`entry`) VALUES('130765'); +INSERT INTO `transmog_items` (`entry`) VALUES('130766'); +INSERT INTO `transmog_items` (`entry`) VALUES('130767'); +INSERT INTO `transmog_items` (`entry`) VALUES('130768'); +INSERT INTO `transmog_items` (`entry`) VALUES('130769'); +INSERT INTO `transmog_items` (`entry`) VALUES('130770'); +INSERT INTO `transmog_items` (`entry`) VALUES('130771'); +INSERT INTO `transmog_items` (`entry`) VALUES('130772'); +INSERT INTO `transmog_items` (`entry`) VALUES('130773'); +INSERT INTO `transmog_items` (`entry`) VALUES('130774'); +INSERT INTO `transmog_items` (`entry`) VALUES('130775'); +INSERT INTO `transmog_items` (`entry`) VALUES('130776'); +INSERT INTO `transmog_items` (`entry`) VALUES('130777'); +INSERT INTO `transmog_items` (`entry`) VALUES('130778'); +INSERT INTO `transmog_items` (`entry`) VALUES('130779'); +INSERT INTO `transmog_items` (`entry`) VALUES('130780'); +INSERT INTO `transmog_items` (`entry`) VALUES('130781'); +INSERT INTO `transmog_items` (`entry`) VALUES('130784'); +INSERT INTO `transmog_items` (`entry`) VALUES('130787'); +INSERT INTO `transmog_items` (`entry`) VALUES('130830'); +INSERT INTO `transmog_items` (`entry`) VALUES('130831'); +INSERT INTO `transmog_items` (`entry`) VALUES('130832'); +INSERT INTO `transmog_items` (`entry`) VALUES('130835'); +INSERT INTO `transmog_items` (`entry`) VALUES('130836'); +INSERT INTO `transmog_items` (`entry`) VALUES('130837'); +INSERT INTO `transmog_items` (`entry`) VALUES('130838'); +INSERT INTO `transmog_items` (`entry`) VALUES('130839'); +INSERT INTO `transmog_items` (`entry`) VALUES('130847'); +INSERT INTO `transmog_items` (`entry`) VALUES('130856'); +INSERT INTO `transmog_items` (`entry`) VALUES('130859'); +INSERT INTO `transmog_items` (`entry`) VALUES('130861'); +INSERT INTO `transmog_items` (`entry`) VALUES('130862'); +INSERT INTO `transmog_items` (`entry`) VALUES('130863'); +INSERT INTO `transmog_items` (`entry`) VALUES('130864'); +INSERT INTO `transmog_items` (`entry`) VALUES('130865'); +INSERT INTO `transmog_items` (`entry`) VALUES('130866'); +INSERT INTO `transmog_items` (`entry`) VALUES('130868'); +INSERT INTO `transmog_items` (`entry`) VALUES('130869'); +INSERT INTO `transmog_items` (`entry`) VALUES('130870'); +INSERT INTO `transmog_items` (`entry`) VALUES('130871'); +INSERT INTO `transmog_items` (`entry`) VALUES('130873'); +INSERT INTO `transmog_items` (`entry`) VALUES('130878'); +INSERT INTO `transmog_items` (`entry`) VALUES('130879'); +INSERT INTO `transmog_items` (`entry`) VALUES('130880'); +INSERT INTO `transmog_items` (`entry`) VALUES('130882'); +INSERT INTO `transmog_items` (`entry`) VALUES('130884'); +INSERT INTO `transmog_items` (`entry`) VALUES('130885'); +INSERT INTO `transmog_items` (`entry`) VALUES('130886'); +INSERT INTO `transmog_items` (`entry`) VALUES('130887'); +INSERT INTO `transmog_items` (`entry`) VALUES('130888'); +INSERT INTO `transmog_items` (`entry`) VALUES('130889'); +INSERT INTO `transmog_items` (`entry`) VALUES('130891'); +INSERT INTO `transmog_items` (`entry`) VALUES('130892'); +INSERT INTO `transmog_items` (`entry`) VALUES('130893'); +INSERT INTO `transmog_items` (`entry`) VALUES('130894'); +INSERT INTO `transmog_items` (`entry`) VALUES('130895'); +INSERT INTO `transmog_items` (`entry`) VALUES('130896'); +INSERT INTO `transmog_items` (`entry`) VALUES('130897'); +INSERT INTO `transmog_items` (`entry`) VALUES('130898'); +INSERT INTO `transmog_items` (`entry`) VALUES('130899'); +INSERT INTO `transmog_items` (`entry`) VALUES('130900'); +INSERT INTO `transmog_items` (`entry`) VALUES('130901'); +INSERT INTO `transmog_items` (`entry`) VALUES('130903'); +INSERT INTO `transmog_items` (`entry`) VALUES('130904'); +INSERT INTO `transmog_items` (`entry`) VALUES('130905'); +INSERT INTO `transmog_items` (`entry`) VALUES('130906'); +INSERT INTO `transmog_items` (`entry`) VALUES('130907'); +INSERT INTO `transmog_items` (`entry`) VALUES('130909'); +INSERT INTO `transmog_items` (`entry`) VALUES('130912'); +INSERT INTO `transmog_items` (`entry`) VALUES('130913'); +INSERT INTO `transmog_items` (`entry`) VALUES('130914'); +INSERT INTO `transmog_items` (`entry`) VALUES('130915'); +INSERT INTO `transmog_items` (`entry`) VALUES('130916'); +INSERT INTO `transmog_items` (`entry`) VALUES('130917'); +INSERT INTO `transmog_items` (`entry`) VALUES('130918'); +INSERT INTO `transmog_items` (`entry`) VALUES('130919'); +INSERT INTO `transmog_items` (`entry`) VALUES('130922'); +INSERT INTO `transmog_items` (`entry`) VALUES('130923'); +INSERT INTO `transmog_items` (`entry`) VALUES('130924'); +INSERT INTO `transmog_items` (`entry`) VALUES('130925'); +INSERT INTO `transmog_items` (`entry`) VALUES('130926'); +INSERT INTO `transmog_items` (`entry`) VALUES('130927'); +INSERT INTO `transmog_items` (`entry`) VALUES('130928'); +INSERT INTO `transmog_items` (`entry`) VALUES('130929'); +INSERT INTO `transmog_items` (`entry`) VALUES('130930'); +INSERT INTO `transmog_items` (`entry`) VALUES('130931'); +INSERT INTO `transmog_items` (`entry`) VALUES('130932'); +INSERT INTO `transmog_items` (`entry`) VALUES('130933'); +INSERT INTO `transmog_items` (`entry`) VALUES('130936'); +INSERT INTO `transmog_items` (`entry`) VALUES('130937'); +INSERT INTO `transmog_items` (`entry`) VALUES('130938'); +INSERT INTO `transmog_items` (`entry`) VALUES('130939'); +INSERT INTO `transmog_items` (`entry`) VALUES('130940'); +INSERT INTO `transmog_items` (`entry`) VALUES('130941'); +INSERT INTO `transmog_items` (`entry`) VALUES('130942'); +INSERT INTO `transmog_items` (`entry`) VALUES('130943'); +INSERT INTO `transmog_items` (`entry`) VALUES('130944'); +INSERT INTO `transmog_items` (`entry`) VALUES('130945'); +INSERT INTO `transmog_items` (`entry`) VALUES('130946'); +INSERT INTO `transmog_items` (`entry`) VALUES('130947'); +INSERT INTO `transmog_items` (`entry`) VALUES('130948'); +INSERT INTO `transmog_items` (`entry`) VALUES('130950'); +INSERT INTO `transmog_items` (`entry`) VALUES('130951'); +INSERT INTO `transmog_items` (`entry`) VALUES('130952'); +INSERT INTO `transmog_items` (`entry`) VALUES('130953'); +INSERT INTO `transmog_items` (`entry`) VALUES('130955'); +INSERT INTO `transmog_items` (`entry`) VALUES('130956'); +INSERT INTO `transmog_items` (`entry`) VALUES('130957'); +INSERT INTO `transmog_items` (`entry`) VALUES('130958'); +INSERT INTO `transmog_items` (`entry`) VALUES('130959'); +INSERT INTO `transmog_items` (`entry`) VALUES('130960'); +INSERT INTO `transmog_items` (`entry`) VALUES('130961'); +INSERT INTO `transmog_items` (`entry`) VALUES('130962'); +INSERT INTO `transmog_items` (`entry`) VALUES('130964'); +INSERT INTO `transmog_items` (`entry`) VALUES('130966'); +INSERT INTO `transmog_items` (`entry`) VALUES('130967'); +INSERT INTO `transmog_items` (`entry`) VALUES('130968'); +INSERT INTO `transmog_items` (`entry`) VALUES('130969'); +INSERT INTO `transmog_items` (`entry`) VALUES('130970'); +INSERT INTO `transmog_items` (`entry`) VALUES('130971'); +INSERT INTO `transmog_items` (`entry`) VALUES('130972'); +INSERT INTO `transmog_items` (`entry`) VALUES('130974'); +INSERT INTO `transmog_items` (`entry`) VALUES('130975'); +INSERT INTO `transmog_items` (`entry`) VALUES('130976'); +INSERT INTO `transmog_items` (`entry`) VALUES('130977'); +INSERT INTO `transmog_items` (`entry`) VALUES('130978'); +INSERT INTO `transmog_items` (`entry`) VALUES('130979'); +INSERT INTO `transmog_items` (`entry`) VALUES('130980'); +INSERT INTO `transmog_items` (`entry`) VALUES('130982'); +INSERT INTO `transmog_items` (`entry`) VALUES('130983'); +INSERT INTO `transmog_items` (`entry`) VALUES('130984'); +INSERT INTO `transmog_items` (`entry`) VALUES('130985'); +INSERT INTO `transmog_items` (`entry`) VALUES('130986'); +INSERT INTO `transmog_items` (`entry`) VALUES('130987'); +INSERT INTO `transmog_items` (`entry`) VALUES('130988'); +INSERT INTO `transmog_items` (`entry`) VALUES('130989'); +INSERT INTO `transmog_items` (`entry`) VALUES('130990'); +INSERT INTO `transmog_items` (`entry`) VALUES('130991'); +INSERT INTO `transmog_items` (`entry`) VALUES('130992'); +INSERT INTO `transmog_items` (`entry`) VALUES('130993'); +INSERT INTO `transmog_items` (`entry`) VALUES('130994'); +INSERT INTO `transmog_items` (`entry`) VALUES('130995'); +INSERT INTO `transmog_items` (`entry`) VALUES('130996'); +INSERT INTO `transmog_items` (`entry`) VALUES('130997'); +INSERT INTO `transmog_items` (`entry`) VALUES('130998'); +INSERT INTO `transmog_items` (`entry`) VALUES('130999'); +INSERT INTO `transmog_items` (`entry`) VALUES('131000'); +INSERT INTO `transmog_items` (`entry`) VALUES('131001'); +INSERT INTO `transmog_items` (`entry`) VALUES('131003'); +INSERT INTO `transmog_items` (`entry`) VALUES('131004'); +INSERT INTO `transmog_items` (`entry`) VALUES('131005'); +INSERT INTO `transmog_items` (`entry`) VALUES('131006'); +INSERT INTO `transmog_items` (`entry`) VALUES('131007'); +INSERT INTO `transmog_items` (`entry`) VALUES('131008'); +INSERT INTO `transmog_items` (`entry`) VALUES('131010'); +INSERT INTO `transmog_items` (`entry`) VALUES('131011'); +INSERT INTO `transmog_items` (`entry`) VALUES('131012'); +INSERT INTO `transmog_items` (`entry`) VALUES('131013'); +INSERT INTO `transmog_items` (`entry`) VALUES('131014'); +INSERT INTO `transmog_items` (`entry`) VALUES('131015'); +INSERT INTO `transmog_items` (`entry`) VALUES('131016'); +INSERT INTO `transmog_items` (`entry`) VALUES('131017'); +INSERT INTO `transmog_items` (`entry`) VALUES('131018'); +INSERT INTO `transmog_items` (`entry`) VALUES('131019'); +INSERT INTO `transmog_items` (`entry`) VALUES('131020'); +INSERT INTO `transmog_items` (`entry`) VALUES('131021'); +INSERT INTO `transmog_items` (`entry`) VALUES('131022'); +INSERT INTO `transmog_items` (`entry`) VALUES('131023'); +INSERT INTO `transmog_items` (`entry`) VALUES('131024'); +INSERT INTO `transmog_items` (`entry`) VALUES('131026'); +INSERT INTO `transmog_items` (`entry`) VALUES('131027'); +INSERT INTO `transmog_items` (`entry`) VALUES('131028'); +INSERT INTO `transmog_items` (`entry`) VALUES('131029'); +INSERT INTO `transmog_items` (`entry`) VALUES('131030'); +INSERT INTO `transmog_items` (`entry`) VALUES('131032'); +INSERT INTO `transmog_items` (`entry`) VALUES('131034'); +INSERT INTO `transmog_items` (`entry`) VALUES('131035'); +INSERT INTO `transmog_items` (`entry`) VALUES('131037'); +INSERT INTO `transmog_items` (`entry`) VALUES('131039'); +INSERT INTO `transmog_items` (`entry`) VALUES('131040'); +INSERT INTO `transmog_items` (`entry`) VALUES('131041'); +INSERT INTO `transmog_items` (`entry`) VALUES('131042'); +INSERT INTO `transmog_items` (`entry`) VALUES('131043'); +INSERT INTO `transmog_items` (`entry`) VALUES('131044'); +INSERT INTO `transmog_items` (`entry`) VALUES('131045'); +INSERT INTO `transmog_items` (`entry`) VALUES('131046'); +INSERT INTO `transmog_items` (`entry`) VALUES('131047'); +INSERT INTO `transmog_items` (`entry`) VALUES('131048'); +INSERT INTO `transmog_items` (`entry`) VALUES('131049'); +INSERT INTO `transmog_items` (`entry`) VALUES('131050'); +INSERT INTO `transmog_items` (`entry`) VALUES('131051'); +INSERT INTO `transmog_items` (`entry`) VALUES('131052'); +INSERT INTO `transmog_items` (`entry`) VALUES('131053'); +INSERT INTO `transmog_items` (`entry`) VALUES('131054'); +INSERT INTO `transmog_items` (`entry`) VALUES('131055'); +INSERT INTO `transmog_items` (`entry`) VALUES('131056'); +INSERT INTO `transmog_items` (`entry`) VALUES('131057'); +INSERT INTO `transmog_items` (`entry`) VALUES('131058'); +INSERT INTO `transmog_items` (`entry`) VALUES('131059'); +INSERT INTO `transmog_items` (`entry`) VALUES('131060'); +INSERT INTO `transmog_items` (`entry`) VALUES('131061'); +INSERT INTO `transmog_items` (`entry`) VALUES('131062'); +INSERT INTO `transmog_items` (`entry`) VALUES('131063'); +INSERT INTO `transmog_items` (`entry`) VALUES('131064'); +INSERT INTO `transmog_items` (`entry`) VALUES('131065'); +INSERT INTO `transmog_items` (`entry`) VALUES('131066'); +INSERT INTO `transmog_items` (`entry`) VALUES('131067'); +INSERT INTO `transmog_items` (`entry`) VALUES('131068'); +INSERT INTO `transmog_items` (`entry`) VALUES('131069'); +INSERT INTO `transmog_items` (`entry`) VALUES('131070'); +INSERT INTO `transmog_items` (`entry`) VALUES('131072'); +INSERT INTO `transmog_items` (`entry`) VALUES('131073'); +INSERT INTO `transmog_items` (`entry`) VALUES('131104'); +INSERT INTO `transmog_items` (`entry`) VALUES('131105'); +INSERT INTO `transmog_items` (`entry`) VALUES('131106'); +INSERT INTO `transmog_items` (`entry`) VALUES('131107'); +INSERT INTO `transmog_items` (`entry`) VALUES('131109'); +INSERT INTO `transmog_items` (`entry`) VALUES('131110'); +INSERT INTO `transmog_items` (`entry`) VALUES('131111'); +INSERT INTO `transmog_items` (`entry`) VALUES('131112'); +INSERT INTO `transmog_items` (`entry`) VALUES('131114'); +INSERT INTO `transmog_items` (`entry`) VALUES('131115'); +INSERT INTO `transmog_items` (`entry`) VALUES('131125'); +INSERT INTO `transmog_items` (`entry`) VALUES('131126'); +INSERT INTO `transmog_items` (`entry`) VALUES('131127'); +INSERT INTO `transmog_items` (`entry`) VALUES('131131'); +INSERT INTO `transmog_items` (`entry`) VALUES('131133'); +INSERT INTO `transmog_items` (`entry`) VALUES('131136'); +INSERT INTO `transmog_items` (`entry`) VALUES('131137'); +INSERT INTO `transmog_items` (`entry`) VALUES('131138'); +INSERT INTO `transmog_items` (`entry`) VALUES('131139'); +INSERT INTO `transmog_items` (`entry`) VALUES('131140'); +INSERT INTO `transmog_items` (`entry`) VALUES('131142'); +INSERT INTO `transmog_items` (`entry`) VALUES('131143'); +INSERT INTO `transmog_items` (`entry`) VALUES('131145'); +INSERT INTO `transmog_items` (`entry`) VALUES('131148'); +INSERT INTO `transmog_items` (`entry`) VALUES('131149'); +INSERT INTO `transmog_items` (`entry`) VALUES('131150'); +INSERT INTO `transmog_items` (`entry`) VALUES('131151'); +INSERT INTO `transmog_items` (`entry`) VALUES('131152'); +INSERT INTO `transmog_items` (`entry`) VALUES('131155'); +INSERT INTO `transmog_items` (`entry`) VALUES('131156'); +INSERT INTO `transmog_items` (`entry`) VALUES('131157'); +INSERT INTO `transmog_items` (`entry`) VALUES('131158'); +INSERT INTO `transmog_items` (`entry`) VALUES('131159'); +INSERT INTO `transmog_items` (`entry`) VALUES('131160'); +INSERT INTO `transmog_items` (`entry`) VALUES('131161'); +INSERT INTO `transmog_items` (`entry`) VALUES('131162'); +INSERT INTO `transmog_items` (`entry`) VALUES('131163'); +INSERT INTO `transmog_items` (`entry`) VALUES('131164'); +INSERT INTO `transmog_items` (`entry`) VALUES('131165'); +INSERT INTO `transmog_items` (`entry`) VALUES('131166'); +INSERT INTO `transmog_items` (`entry`) VALUES('131168'); +INSERT INTO `transmog_items` (`entry`) VALUES('131170'); +INSERT INTO `transmog_items` (`entry`) VALUES('131172'); +INSERT INTO `transmog_items` (`entry`) VALUES('131173'); +INSERT INTO `transmog_items` (`entry`) VALUES('131174'); +INSERT INTO `transmog_items` (`entry`) VALUES('131175'); +INSERT INTO `transmog_items` (`entry`) VALUES('131176'); +INSERT INTO `transmog_items` (`entry`) VALUES('131177'); +INSERT INTO `transmog_items` (`entry`) VALUES('131179'); +INSERT INTO `transmog_items` (`entry`) VALUES('131180'); +INSERT INTO `transmog_items` (`entry`) VALUES('131181'); +INSERT INTO `transmog_items` (`entry`) VALUES('131182'); +INSERT INTO `transmog_items` (`entry`) VALUES('131183'); +INSERT INTO `transmog_items` (`entry`) VALUES('131184'); +INSERT INTO `transmog_items` (`entry`) VALUES('131185'); +INSERT INTO `transmog_items` (`entry`) VALUES('131187'); +INSERT INTO `transmog_items` (`entry`) VALUES('131188'); +INSERT INTO `transmog_items` (`entry`) VALUES('131189'); +INSERT INTO `transmog_items` (`entry`) VALUES('131190'); +INSERT INTO `transmog_items` (`entry`) VALUES('131191'); +INSERT INTO `transmog_items` (`entry`) VALUES('131192'); +INSERT INTO `transmog_items` (`entry`) VALUES('131193'); +INSERT INTO `transmog_items` (`entry`) VALUES('131195'); +INSERT INTO `transmog_items` (`entry`) VALUES('131197'); +INSERT INTO `transmog_items` (`entry`) VALUES('131198'); +INSERT INTO `transmog_items` (`entry`) VALUES('131199'); +INSERT INTO `transmog_items` (`entry`) VALUES('131200'); +INSERT INTO `transmog_items` (`entry`) VALUES('131201'); +INSERT INTO `transmog_items` (`entry`) VALUES('131202'); +INSERT INTO `transmog_items` (`entry`) VALUES('131204'); +INSERT INTO `transmog_items` (`entry`) VALUES('131209'); +INSERT INTO `transmog_items` (`entry`) VALUES('131210'); +INSERT INTO `transmog_items` (`entry`) VALUES('131211'); +INSERT INTO `transmog_items` (`entry`) VALUES('131212'); +INSERT INTO `transmog_items` (`entry`) VALUES('131213'); +INSERT INTO `transmog_items` (`entry`) VALUES('131214'); +INSERT INTO `transmog_items` (`entry`) VALUES('131215'); +INSERT INTO `transmog_items` (`entry`) VALUES('131216'); +INSERT INTO `transmog_items` (`entry`) VALUES('131217'); +INSERT INTO `transmog_items` (`entry`) VALUES('131218'); +INSERT INTO `transmog_items` (`entry`) VALUES('131219'); +INSERT INTO `transmog_items` (`entry`) VALUES('131220'); +INSERT INTO `transmog_items` (`entry`) VALUES('131221'); +INSERT INTO `transmog_items` (`entry`) VALUES('131222'); +INSERT INTO `transmog_items` (`entry`) VALUES('131223'); +INSERT INTO `transmog_items` (`entry`) VALUES('131224'); +INSERT INTO `transmog_items` (`entry`) VALUES('131225'); +INSERT INTO `transmog_items` (`entry`) VALUES('131226'); +INSERT INTO `transmog_items` (`entry`) VALUES('131227'); +INSERT INTO `transmog_items` (`entry`) VALUES('131228'); +INSERT INTO `transmog_items` (`entry`) VALUES('131229'); +INSERT INTO `transmog_items` (`entry`) VALUES('131230'); +INSERT INTO `transmog_items` (`entry`) VALUES('131231'); +INSERT INTO `transmog_items` (`entry`) VALUES('131232'); +INSERT INTO `transmog_items` (`entry`) VALUES('131233'); +INSERT INTO `transmog_items` (`entry`) VALUES('131235'); +INSERT INTO `transmog_items` (`entry`) VALUES('131236'); +INSERT INTO `transmog_items` (`entry`) VALUES('131237'); +INSERT INTO `transmog_items` (`entry`) VALUES('131240'); +INSERT INTO `transmog_items` (`entry`) VALUES('131242'); +INSERT INTO `transmog_items` (`entry`) VALUES('131243'); +INSERT INTO `transmog_items` (`entry`) VALUES('131244'); +INSERT INTO `transmog_items` (`entry`) VALUES('131246'); +INSERT INTO `transmog_items` (`entry`) VALUES('131247'); +INSERT INTO `transmog_items` (`entry`) VALUES('131248'); +INSERT INTO `transmog_items` (`entry`) VALUES('131249'); +INSERT INTO `transmog_items` (`entry`) VALUES('131250'); +INSERT INTO `transmog_items` (`entry`) VALUES('131254'); +INSERT INTO `transmog_items` (`entry`) VALUES('131255'); +INSERT INTO `transmog_items` (`entry`) VALUES('131256'); +INSERT INTO `transmog_items` (`entry`) VALUES('131263'); +INSERT INTO `transmog_items` (`entry`) VALUES('131264'); +INSERT INTO `transmog_items` (`entry`) VALUES('131269'); +INSERT INTO `transmog_items` (`entry`) VALUES('131270'); +INSERT INTO `transmog_items` (`entry`) VALUES('131272'); +INSERT INTO `transmog_items` (`entry`) VALUES('131276'); +INSERT INTO `transmog_items` (`entry`) VALUES('131280'); +INSERT INTO `transmog_items` (`entry`) VALUES('131281'); +INSERT INTO `transmog_items` (`entry`) VALUES('131282'); +INSERT INTO `transmog_items` (`entry`) VALUES('131283'); +INSERT INTO `transmog_items` (`entry`) VALUES('131284'); +INSERT INTO `transmog_items` (`entry`) VALUES('131285'); +INSERT INTO `transmog_items` (`entry`) VALUES('131286'); +INSERT INTO `transmog_items` (`entry`) VALUES('131287'); +INSERT INTO `transmog_items` (`entry`) VALUES('131288'); +INSERT INTO `transmog_items` (`entry`) VALUES('131291'); +INSERT INTO `transmog_items` (`entry`) VALUES('131292'); +INSERT INTO `transmog_items` (`entry`) VALUES('131293'); +INSERT INTO `transmog_items` (`entry`) VALUES('131294'); +INSERT INTO `transmog_items` (`entry`) VALUES('131295'); +INSERT INTO `transmog_items` (`entry`) VALUES('131297'); +INSERT INTO `transmog_items` (`entry`) VALUES('131298'); +INSERT INTO `transmog_items` (`entry`) VALUES('131303'); +INSERT INTO `transmog_items` (`entry`) VALUES('131304'); +INSERT INTO `transmog_items` (`entry`) VALUES('131305'); +INSERT INTO `transmog_items` (`entry`) VALUES('131306'); +INSERT INTO `transmog_items` (`entry`) VALUES('131312'); +INSERT INTO `transmog_items` (`entry`) VALUES('131313'); +INSERT INTO `transmog_items` (`entry`) VALUES('131314'); +INSERT INTO `transmog_items` (`entry`) VALUES('131315'); +INSERT INTO `transmog_items` (`entry`) VALUES('131318'); +INSERT INTO `transmog_items` (`entry`) VALUES('131320'); +INSERT INTO `transmog_items` (`entry`) VALUES('131323'); +INSERT INTO `transmog_items` (`entry`) VALUES('131328'); +INSERT INTO `transmog_items` (`entry`) VALUES('131329'); +INSERT INTO `transmog_items` (`entry`) VALUES('131330'); +INSERT INTO `transmog_items` (`entry`) VALUES('131331'); +INSERT INTO `transmog_items` (`entry`) VALUES('131333'); +INSERT INTO `transmog_items` (`entry`) VALUES('131335'); +INSERT INTO `transmog_items` (`entry`) VALUES('131340'); +INSERT INTO `transmog_items` (`entry`) VALUES('131341'); +INSERT INTO `transmog_items` (`entry`) VALUES('131342'); +INSERT INTO `transmog_items` (`entry`) VALUES('131343'); +INSERT INTO `transmog_items` (`entry`) VALUES('131364'); +INSERT INTO `transmog_items` (`entry`) VALUES('131367'); +INSERT INTO `transmog_items` (`entry`) VALUES('131368'); +INSERT INTO `transmog_items` (`entry`) VALUES('131369'); +INSERT INTO `transmog_items` (`entry`) VALUES('131370'); +INSERT INTO `transmog_items` (`entry`) VALUES('131371'); +INSERT INTO `transmog_items` (`entry`) VALUES('131375'); +INSERT INTO `transmog_items` (`entry`) VALUES('131376'); +INSERT INTO `transmog_items` (`entry`) VALUES('131377'); +INSERT INTO `transmog_items` (`entry`) VALUES('131378'); +INSERT INTO `transmog_items` (`entry`) VALUES('131379'); +INSERT INTO `transmog_items` (`entry`) VALUES('131396'); +INSERT INTO `transmog_items` (`entry`) VALUES('131397'); +INSERT INTO `transmog_items` (`entry`) VALUES('131400'); +INSERT INTO `transmog_items` (`entry`) VALUES('131406'); +INSERT INTO `transmog_items` (`entry`) VALUES('131407'); +INSERT INTO `transmog_items` (`entry`) VALUES('131409'); +INSERT INTO `transmog_items` (`entry`) VALUES('131410'); +INSERT INTO `transmog_items` (`entry`) VALUES('131411'); +INSERT INTO `transmog_items` (`entry`) VALUES('131412'); +INSERT INTO `transmog_items` (`entry`) VALUES('131413'); +INSERT INTO `transmog_items` (`entry`) VALUES('131415'); +INSERT INTO `transmog_items` (`entry`) VALUES('131416'); +INSERT INTO `transmog_items` (`entry`) VALUES('131418'); +INSERT INTO `transmog_items` (`entry`) VALUES('131419'); +INSERT INTO `transmog_items` (`entry`) VALUES('131420'); +INSERT INTO `transmog_items` (`entry`) VALUES('131421'); +INSERT INTO `transmog_items` (`entry`) VALUES('131422'); +INSERT INTO `transmog_items` (`entry`) VALUES('131424'); +INSERT INTO `transmog_items` (`entry`) VALUES('131425'); +INSERT INTO `transmog_items` (`entry`) VALUES('131426'); +INSERT INTO `transmog_items` (`entry`) VALUES('131427'); +INSERT INTO `transmog_items` (`entry`) VALUES('131428'); +INSERT INTO `transmog_items` (`entry`) VALUES('131429'); +INSERT INTO `transmog_items` (`entry`) VALUES('131430'); +INSERT INTO `transmog_items` (`entry`) VALUES('131431'); +INSERT INTO `transmog_items` (`entry`) VALUES('131432'); +INSERT INTO `transmog_items` (`entry`) VALUES('131433'); +INSERT INTO `transmog_items` (`entry`) VALUES('131434'); +INSERT INTO `transmog_items` (`entry`) VALUES('131435'); +INSERT INTO `transmog_items` (`entry`) VALUES('131436'); +INSERT INTO `transmog_items` (`entry`) VALUES('131438'); +INSERT INTO `transmog_items` (`entry`) VALUES('131439'); +INSERT INTO `transmog_items` (`entry`) VALUES('131440'); +INSERT INTO `transmog_items` (`entry`) VALUES('131441'); +INSERT INTO `transmog_items` (`entry`) VALUES('131442'); +INSERT INTO `transmog_items` (`entry`) VALUES('131443'); +INSERT INTO `transmog_items` (`entry`) VALUES('131444'); +INSERT INTO `transmog_items` (`entry`) VALUES('131445'); +INSERT INTO `transmog_items` (`entry`) VALUES('131446'); +INSERT INTO `transmog_items` (`entry`) VALUES('131447'); +INSERT INTO `transmog_items` (`entry`) VALUES('131452'); +INSERT INTO `transmog_items` (`entry`) VALUES('131453'); +INSERT INTO `transmog_items` (`entry`) VALUES('131454'); +INSERT INTO `transmog_items` (`entry`) VALUES('131455'); +INSERT INTO `transmog_items` (`entry`) VALUES('131456'); +INSERT INTO `transmog_items` (`entry`) VALUES('131457'); +INSERT INTO `transmog_items` (`entry`) VALUES('131458'); +INSERT INTO `transmog_items` (`entry`) VALUES('131459'); +INSERT INTO `transmog_items` (`entry`) VALUES('131460'); +INSERT INTO `transmog_items` (`entry`) VALUES('131461'); +INSERT INTO `transmog_items` (`entry`) VALUES('131462'); +INSERT INTO `transmog_items` (`entry`) VALUES('131464'); +INSERT INTO `transmog_items` (`entry`) VALUES('131465'); +INSERT INTO `transmog_items` (`entry`) VALUES('131470'); +INSERT INTO `transmog_items` (`entry`) VALUES('131471'); +INSERT INTO `transmog_items` (`entry`) VALUES('131472'); +INSERT INTO `transmog_items` (`entry`) VALUES('131473'); +INSERT INTO `transmog_items` (`entry`) VALUES('131474'); +INSERT INTO `transmog_items` (`entry`) VALUES('131475'); +INSERT INTO `transmog_items` (`entry`) VALUES('131476'); +INSERT INTO `transmog_items` (`entry`) VALUES('131477'); +INSERT INTO `transmog_items` (`entry`) VALUES('131478'); +INSERT INTO `transmog_items` (`entry`) VALUES('131479'); +INSERT INTO `transmog_items` (`entry`) VALUES('131480'); +INSERT INTO `transmog_items` (`entry`) VALUES('131481'); +INSERT INTO `transmog_items` (`entry`) VALUES('131482'); +INSERT INTO `transmog_items` (`entry`) VALUES('131483'); +INSERT INTO `transmog_items` (`entry`) VALUES('131484'); +INSERT INTO `transmog_items` (`entry`) VALUES('131485'); +INSERT INTO `transmog_items` (`entry`) VALUES('131486'); +INSERT INTO `transmog_items` (`entry`) VALUES('131487'); +INSERT INTO `transmog_items` (`entry`) VALUES('131488'); +INSERT INTO `transmog_items` (`entry`) VALUES('131490'); +INSERT INTO `transmog_items` (`entry`) VALUES('131491'); +INSERT INTO `transmog_items` (`entry`) VALUES('131492'); +INSERT INTO `transmog_items` (`entry`) VALUES('131508'); +INSERT INTO `transmog_items` (`entry`) VALUES('131509'); +INSERT INTO `transmog_items` (`entry`) VALUES('131510'); +INSERT INTO `transmog_items` (`entry`) VALUES('131511'); +INSERT INTO `transmog_items` (`entry`) VALUES('131512'); +INSERT INTO `transmog_items` (`entry`) VALUES('131513'); +INSERT INTO `transmog_items` (`entry`) VALUES('131514'); +INSERT INTO `transmog_items` (`entry`) VALUES('131515'); +INSERT INTO `transmog_items` (`entry`) VALUES('131516'); +INSERT INTO `transmog_items` (`entry`) VALUES('131519'); +INSERT INTO `transmog_items` (`entry`) VALUES('131520'); +INSERT INTO `transmog_items` (`entry`) VALUES('131521'); +INSERT INTO `transmog_items` (`entry`) VALUES('131531'); +INSERT INTO `transmog_items` (`entry`) VALUES('131532'); +INSERT INTO `transmog_items` (`entry`) VALUES('131533'); +INSERT INTO `transmog_items` (`entry`) VALUES('131534'); +INSERT INTO `transmog_items` (`entry`) VALUES('131537'); +INSERT INTO `transmog_items` (`entry`) VALUES('131538'); +INSERT INTO `transmog_items` (`entry`) VALUES('131539'); +INSERT INTO `transmog_items` (`entry`) VALUES('131540'); +INSERT INTO `transmog_items` (`entry`) VALUES('131542'); +INSERT INTO `transmog_items` (`entry`) VALUES('131544'); +INSERT INTO `transmog_items` (`entry`) VALUES('131545'); +INSERT INTO `transmog_items` (`entry`) VALUES('131546'); +INSERT INTO `transmog_items` (`entry`) VALUES('131547'); +INSERT INTO `transmog_items` (`entry`) VALUES('131548'); +INSERT INTO `transmog_items` (`entry`) VALUES('131549'); +INSERT INTO `transmog_items` (`entry`) VALUES('131552'); +INSERT INTO `transmog_items` (`entry`) VALUES('131553'); +INSERT INTO `transmog_items` (`entry`) VALUES('131554'); +INSERT INTO `transmog_items` (`entry`) VALUES('131555'); +INSERT INTO `transmog_items` (`entry`) VALUES('131556'); +INSERT INTO `transmog_items` (`entry`) VALUES('131557'); +INSERT INTO `transmog_items` (`entry`) VALUES('131558'); +INSERT INTO `transmog_items` (`entry`) VALUES('131559'); +INSERT INTO `transmog_items` (`entry`) VALUES('131560'); +INSERT INTO `transmog_items` (`entry`) VALUES('131561'); +INSERT INTO `transmog_items` (`entry`) VALUES('131562'); +INSERT INTO `transmog_items` (`entry`) VALUES('131563'); +INSERT INTO `transmog_items` (`entry`) VALUES('131564'); +INSERT INTO `transmog_items` (`entry`) VALUES('131565'); +INSERT INTO `transmog_items` (`entry`) VALUES('131566'); +INSERT INTO `transmog_items` (`entry`) VALUES('131567'); +INSERT INTO `transmog_items` (`entry`) VALUES('131568'); +INSERT INTO `transmog_items` (`entry`) VALUES('131569'); +INSERT INTO `transmog_items` (`entry`) VALUES('131570'); +INSERT INTO `transmog_items` (`entry`) VALUES('131571'); +INSERT INTO `transmog_items` (`entry`) VALUES('131572'); +INSERT INTO `transmog_items` (`entry`) VALUES('131573'); +INSERT INTO `transmog_items` (`entry`) VALUES('131574'); +INSERT INTO `transmog_items` (`entry`) VALUES('131575'); +INSERT INTO `transmog_items` (`entry`) VALUES('131584'); +INSERT INTO `transmog_items` (`entry`) VALUES('131585'); +INSERT INTO `transmog_items` (`entry`) VALUES('131586'); +INSERT INTO `transmog_items` (`entry`) VALUES('131587'); +INSERT INTO `transmog_items` (`entry`) VALUES('131588'); +INSERT INTO `transmog_items` (`entry`) VALUES('131589'); +INSERT INTO `transmog_items` (`entry`) VALUES('131590'); +INSERT INTO `transmog_items` (`entry`) VALUES('131591'); +INSERT INTO `transmog_items` (`entry`) VALUES('131592'); +INSERT INTO `transmog_items` (`entry`) VALUES('131593'); +INSERT INTO `transmog_items` (`entry`) VALUES('131594'); +INSERT INTO `transmog_items` (`entry`) VALUES('131595'); +INSERT INTO `transmog_items` (`entry`) VALUES('131596'); +INSERT INTO `transmog_items` (`entry`) VALUES('131597'); +INSERT INTO `transmog_items` (`entry`) VALUES('131598'); +INSERT INTO `transmog_items` (`entry`) VALUES('131599'); +INSERT INTO `transmog_items` (`entry`) VALUES('131613'); +INSERT INTO `transmog_items` (`entry`) VALUES('131614'); +INSERT INTO `transmog_items` (`entry`) VALUES('131616'); +INSERT INTO `transmog_items` (`entry`) VALUES('131618'); +INSERT INTO `transmog_items` (`entry`) VALUES('131619'); +INSERT INTO `transmog_items` (`entry`) VALUES('131620'); +INSERT INTO `transmog_items` (`entry`) VALUES('131621'); +INSERT INTO `transmog_items` (`entry`) VALUES('131622'); +INSERT INTO `transmog_items` (`entry`) VALUES('131623'); +INSERT INTO `transmog_items` (`entry`) VALUES('131624'); +INSERT INTO `transmog_items` (`entry`) VALUES('131625'); +INSERT INTO `transmog_items` (`entry`) VALUES('131626'); +INSERT INTO `transmog_items` (`entry`) VALUES('131627'); +INSERT INTO `transmog_items` (`entry`) VALUES('131628'); +INSERT INTO `transmog_items` (`entry`) VALUES('131629'); +INSERT INTO `transmog_items` (`entry`) VALUES('131630'); +INSERT INTO `transmog_items` (`entry`) VALUES('131631'); +INSERT INTO `transmog_items` (`entry`) VALUES('131632'); +INSERT INTO `transmog_items` (`entry`) VALUES('131633'); +INSERT INTO `transmog_items` (`entry`) VALUES('131634'); +INSERT INTO `transmog_items` (`entry`) VALUES('131635'); +INSERT INTO `transmog_items` (`entry`) VALUES('131636'); +INSERT INTO `transmog_items` (`entry`) VALUES('131637'); +INSERT INTO `transmog_items` (`entry`) VALUES('131638'); +INSERT INTO `transmog_items` (`entry`) VALUES('131639'); +INSERT INTO `transmog_items` (`entry`) VALUES('131640'); +INSERT INTO `transmog_items` (`entry`) VALUES('131641'); +INSERT INTO `transmog_items` (`entry`) VALUES('131642'); +INSERT INTO `transmog_items` (`entry`) VALUES('131643'); +INSERT INTO `transmog_items` (`entry`) VALUES('131644'); +INSERT INTO `transmog_items` (`entry`) VALUES('131646'); +INSERT INTO `transmog_items` (`entry`) VALUES('131647'); +INSERT INTO `transmog_items` (`entry`) VALUES('131648'); +INSERT INTO `transmog_items` (`entry`) VALUES('131649'); +INSERT INTO `transmog_items` (`entry`) VALUES('131650'); +INSERT INTO `transmog_items` (`entry`) VALUES('131657'); +INSERT INTO `transmog_items` (`entry`) VALUES('131658'); +INSERT INTO `transmog_items` (`entry`) VALUES('131659'); +INSERT INTO `transmog_items` (`entry`) VALUES('131660'); +INSERT INTO `transmog_items` (`entry`) VALUES('131661'); +INSERT INTO `transmog_items` (`entry`) VALUES('131683'); +INSERT INTO `transmog_items` (`entry`) VALUES('131684'); +INSERT INTO `transmog_items` (`entry`) VALUES('131685'); +INSERT INTO `transmog_items` (`entry`) VALUES('131686'); +INSERT INTO `transmog_items` (`entry`) VALUES('131687'); +INSERT INTO `transmog_items` (`entry`) VALUES('131688'); +INSERT INTO `transmog_items` (`entry`) VALUES('131689'); +INSERT INTO `transmog_items` (`entry`) VALUES('131690'); +INSERT INTO `transmog_items` (`entry`) VALUES('131701'); +INSERT INTO `transmog_items` (`entry`) VALUES('131703'); +INSERT INTO `transmog_items` (`entry`) VALUES('131711'); +INSERT INTO `transmog_items` (`entry`) VALUES('131712'); +INSERT INTO `transmog_items` (`entry`) VALUES('131713'); +INSERT INTO `transmog_items` (`entry`) VALUES('131714'); +INSERT INTO `transmog_items` (`entry`) VALUES('131717'); +INSERT INTO `transmog_items` (`entry`) VALUES('131718'); +INSERT INTO `transmog_items` (`entry`) VALUES('131719'); +INSERT INTO `transmog_items` (`entry`) VALUES('131720'); +INSERT INTO `transmog_items` (`entry`) VALUES('131723'); +INSERT INTO `transmog_items` (`entry`) VALUES('131724'); +INSERT INTO `transmog_items` (`entry`) VALUES('131725'); +INSERT INTO `transmog_items` (`entry`) VALUES('131733'); +INSERT INTO `transmog_items` (`entry`) VALUES('131734'); +INSERT INTO `transmog_items` (`entry`) VALUES('131745'); +INSERT INTO `transmog_items` (`entry`) VALUES('131756'); +INSERT INTO `transmog_items` (`entry`) VALUES('131758'); +INSERT INTO `transmog_items` (`entry`) VALUES('131759'); +INSERT INTO `transmog_items` (`entry`) VALUES('131761'); +INSERT INTO `transmog_items` (`entry`) VALUES('131762'); +INSERT INTO `transmog_items` (`entry`) VALUES('131764'); +INSERT INTO `transmog_items` (`entry`) VALUES('131765'); +INSERT INTO `transmog_items` (`entry`) VALUES('131766'); +INSERT INTO `transmog_items` (`entry`) VALUES('131768'); +INSERT INTO `transmog_items` (`entry`) VALUES('131770'); +INSERT INTO `transmog_items` (`entry`) VALUES('131782'); +INSERT INTO `transmog_items` (`entry`) VALUES('131783'); +INSERT INTO `transmog_items` (`entry`) VALUES('131784'); +INSERT INTO `transmog_items` (`entry`) VALUES('131785'); +INSERT INTO `transmog_items` (`entry`) VALUES('131786'); +INSERT INTO `transmog_items` (`entry`) VALUES('131787'); +INSERT INTO `transmog_items` (`entry`) VALUES('131788'); +INSERT INTO `transmog_items` (`entry`) VALUES('131789'); +INSERT INTO `transmog_items` (`entry`) VALUES('131792'); +INSERT INTO `transmog_items` (`entry`) VALUES('131793'); +INSERT INTO `transmog_items` (`entry`) VALUES('131794'); +INSERT INTO `transmog_items` (`entry`) VALUES('131796'); +INSERT INTO `transmog_items` (`entry`) VALUES('131797'); +INSERT INTO `transmog_items` (`entry`) VALUES('131798'); +INSERT INTO `transmog_items` (`entry`) VALUES('131817'); +INSERT INTO `transmog_items` (`entry`) VALUES('131819'); +INSERT INTO `transmog_items` (`entry`) VALUES('131935'); +INSERT INTO `transmog_items` (`entry`) VALUES('131936'); +INSERT INTO `transmog_items` (`entry`) VALUES('131937'); +INSERT INTO `transmog_items` (`entry`) VALUES('131938'); +INSERT INTO `transmog_items` (`entry`) VALUES('131939'); +INSERT INTO `transmog_items` (`entry`) VALUES('131942'); +INSERT INTO `transmog_items` (`entry`) VALUES('131958'); +INSERT INTO `transmog_items` (`entry`) VALUES('131960'); +INSERT INTO `transmog_items` (`entry`) VALUES('131961'); +INSERT INTO `transmog_items` (`entry`) VALUES('131962'); +INSERT INTO `transmog_items` (`entry`) VALUES('131963'); +INSERT INTO `transmog_items` (`entry`) VALUES('131964'); +INSERT INTO `transmog_items` (`entry`) VALUES('131966'); +INSERT INTO `transmog_items` (`entry`) VALUES('131967'); +INSERT INTO `transmog_items` (`entry`) VALUES('131968'); +INSERT INTO `transmog_items` (`entry`) VALUES('131969'); +INSERT INTO `transmog_items` (`entry`) VALUES('131971'); +INSERT INTO `transmog_items` (`entry`) VALUES('131972'); +INSERT INTO `transmog_items` (`entry`) VALUES('131973'); +INSERT INTO `transmog_items` (`entry`) VALUES('131974'); +INSERT INTO `transmog_items` (`entry`) VALUES('131975'); +INSERT INTO `transmog_items` (`entry`) VALUES('131976'); +INSERT INTO `transmog_items` (`entry`) VALUES('131977'); +INSERT INTO `transmog_items` (`entry`) VALUES('131979'); +INSERT INTO `transmog_items` (`entry`) VALUES('131980'); +INSERT INTO `transmog_items` (`entry`) VALUES('131981'); +INSERT INTO `transmog_items` (`entry`) VALUES('131982'); +INSERT INTO `transmog_items` (`entry`) VALUES('131983'); +INSERT INTO `transmog_items` (`entry`) VALUES('131986'); +INSERT INTO `transmog_items` (`entry`) VALUES('131987'); +INSERT INTO `transmog_items` (`entry`) VALUES('131988'); +INSERT INTO `transmog_items` (`entry`) VALUES('131989'); +INSERT INTO `transmog_items` (`entry`) VALUES('131990'); +INSERT INTO `transmog_items` (`entry`) VALUES('131991'); +INSERT INTO `transmog_items` (`entry`) VALUES('131992'); +INSERT INTO `transmog_items` (`entry`) VALUES('131993'); +INSERT INTO `transmog_items` (`entry`) VALUES('131995'); +INSERT INTO `transmog_items` (`entry`) VALUES('131996'); +INSERT INTO `transmog_items` (`entry`) VALUES('131997'); +INSERT INTO `transmog_items` (`entry`) VALUES('131998'); +INSERT INTO `transmog_items` (`entry`) VALUES('131999'); +INSERT INTO `transmog_items` (`entry`) VALUES('132000'); +INSERT INTO `transmog_items` (`entry`) VALUES('132001'); +INSERT INTO `transmog_items` (`entry`) VALUES('132002'); +INSERT INTO `transmog_items` (`entry`) VALUES('132003'); +INSERT INTO `transmog_items` (`entry`) VALUES('132004'); +INSERT INTO `transmog_items` (`entry`) VALUES('132005'); +INSERT INTO `transmog_items` (`entry`) VALUES('132006'); +INSERT INTO `transmog_items` (`entry`) VALUES('132007'); +INSERT INTO `transmog_items` (`entry`) VALUES('132008'); +INSERT INTO `transmog_items` (`entry`) VALUES('132009'); +INSERT INTO `transmog_items` (`entry`) VALUES('132010'); +INSERT INTO `transmog_items` (`entry`) VALUES('132011'); +INSERT INTO `transmog_items` (`entry`) VALUES('132012'); +INSERT INTO `transmog_items` (`entry`) VALUES('132013'); +INSERT INTO `transmog_items` (`entry`) VALUES('132015'); +INSERT INTO `transmog_items` (`entry`) VALUES('132016'); +INSERT INTO `transmog_items` (`entry`) VALUES('132017'); +INSERT INTO `transmog_items` (`entry`) VALUES('132018'); +INSERT INTO `transmog_items` (`entry`) VALUES('132019'); +INSERT INTO `transmog_items` (`entry`) VALUES('132020'); +INSERT INTO `transmog_items` (`entry`) VALUES('132021'); +INSERT INTO `transmog_items` (`entry`) VALUES('132022'); +INSERT INTO `transmog_items` (`entry`) VALUES('132023'); +INSERT INTO `transmog_items` (`entry`) VALUES('132024'); +INSERT INTO `transmog_items` (`entry`) VALUES('132025'); +INSERT INTO `transmog_items` (`entry`) VALUES('132026'); +INSERT INTO `transmog_items` (`entry`) VALUES('132028'); +INSERT INTO `transmog_items` (`entry`) VALUES('132029'); +INSERT INTO `transmog_items` (`entry`) VALUES('132030'); +INSERT INTO `transmog_items` (`entry`) VALUES('132031'); +INSERT INTO `transmog_items` (`entry`) VALUES('132032'); +INSERT INTO `transmog_items` (`entry`) VALUES('132033'); +INSERT INTO `transmog_items` (`entry`) VALUES('132034'); +INSERT INTO `transmog_items` (`entry`) VALUES('132035'); +INSERT INTO `transmog_items` (`entry`) VALUES('132036'); +INSERT INTO `transmog_items` (`entry`) VALUES('132037'); +INSERT INTO `transmog_items` (`entry`) VALUES('132038'); +INSERT INTO `transmog_items` (`entry`) VALUES('132039'); +INSERT INTO `transmog_items` (`entry`) VALUES('132040'); +INSERT INTO `transmog_items` (`entry`) VALUES('132041'); +INSERT INTO `transmog_items` (`entry`) VALUES('132042'); +INSERT INTO `transmog_items` (`entry`) VALUES('132043'); +INSERT INTO `transmog_items` (`entry`) VALUES('132044'); +INSERT INTO `transmog_items` (`entry`) VALUES('132045'); +INSERT INTO `transmog_items` (`entry`) VALUES('132046'); +INSERT INTO `transmog_items` (`entry`) VALUES('132047'); +INSERT INTO `transmog_items` (`entry`) VALUES('132048'); +INSERT INTO `transmog_items` (`entry`) VALUES('132049'); +INSERT INTO `transmog_items` (`entry`) VALUES('132050'); +INSERT INTO `transmog_items` (`entry`) VALUES('132051'); +INSERT INTO `transmog_items` (`entry`) VALUES('132053'); +INSERT INTO `transmog_items` (`entry`) VALUES('132054'); +INSERT INTO `transmog_items` (`entry`) VALUES('132056'); +INSERT INTO `transmog_items` (`entry`) VALUES('132057'); +INSERT INTO `transmog_items` (`entry`) VALUES('132058'); +INSERT INTO `transmog_items` (`entry`) VALUES('132059'); +INSERT INTO `transmog_items` (`entry`) VALUES('132060'); +INSERT INTO `transmog_items` (`entry`) VALUES('132072'); +INSERT INTO `transmog_items` (`entry`) VALUES('132073'); +INSERT INTO `transmog_items` (`entry`) VALUES('132076'); +INSERT INTO `transmog_items` (`entry`) VALUES('132077'); +INSERT INTO `transmog_items` (`entry`) VALUES('132078'); +INSERT INTO `transmog_items` (`entry`) VALUES('132080'); +INSERT INTO `transmog_items` (`entry`) VALUES('132082'); +INSERT INTO `transmog_items` (`entry`) VALUES('132083'); +INSERT INTO `transmog_items` (`entry`) VALUES('132084'); +INSERT INTO `transmog_items` (`entry`) VALUES('132085'); +INSERT INTO `transmog_items` (`entry`) VALUES('132086'); +INSERT INTO `transmog_items` (`entry`) VALUES('132087'); +INSERT INTO `transmog_items` (`entry`) VALUES('132088'); +INSERT INTO `transmog_items` (`entry`) VALUES('132089'); +INSERT INTO `transmog_items` (`entry`) VALUES('132090'); +INSERT INTO `transmog_items` (`entry`) VALUES('132093'); +INSERT INTO `transmog_items` (`entry`) VALUES('132094'); +INSERT INTO `transmog_items` (`entry`) VALUES('132095'); +INSERT INTO `transmog_items` (`entry`) VALUES('132096'); +INSERT INTO `transmog_items` (`entry`) VALUES('132097'); +INSERT INTO `transmog_items` (`entry`) VALUES('132098'); +INSERT INTO `transmog_items` (`entry`) VALUES('132099'); +INSERT INTO `transmog_items` (`entry`) VALUES('132100'); +INSERT INTO `transmog_items` (`entry`) VALUES('132101'); +INSERT INTO `transmog_items` (`entry`) VALUES('132102'); +INSERT INTO `transmog_items` (`entry`) VALUES('132103'); +INSERT INTO `transmog_items` (`entry`) VALUES('132104'); +INSERT INTO `transmog_items` (`entry`) VALUES('132105'); +INSERT INTO `transmog_items` (`entry`) VALUES('132106'); +INSERT INTO `transmog_items` (`entry`) VALUES('132107'); +INSERT INTO `transmog_items` (`entry`) VALUES('132108'); +INSERT INTO `transmog_items` (`entry`) VALUES('132109'); +INSERT INTO `transmog_items` (`entry`) VALUES('132110'); +INSERT INTO `transmog_items` (`entry`) VALUES('132111'); +INSERT INTO `transmog_items` (`entry`) VALUES('132112'); +INSERT INTO `transmog_items` (`entry`) VALUES('132113'); +INSERT INTO `transmog_items` (`entry`) VALUES('132114'); +INSERT INTO `transmog_items` (`entry`) VALUES('132115'); +INSERT INTO `transmog_items` (`entry`) VALUES('132116'); +INSERT INTO `transmog_items` (`entry`) VALUES('132117'); +INSERT INTO `transmog_items` (`entry`) VALUES('132118'); +INSERT INTO `transmog_items` (`entry`) VALUES('132119'); +INSERT INTO `transmog_items` (`entry`) VALUES('132120'); +INSERT INTO `transmog_items` (`entry`) VALUES('132121'); +INSERT INTO `transmog_items` (`entry`) VALUES('132122'); +INSERT INTO `transmog_items` (`entry`) VALUES('132123'); +INSERT INTO `transmog_items` (`entry`) VALUES('132124'); +INSERT INTO `transmog_items` (`entry`) VALUES('132125'); +INSERT INTO `transmog_items` (`entry`) VALUES('132126'); +INSERT INTO `transmog_items` (`entry`) VALUES('132127'); +INSERT INTO `transmog_items` (`entry`) VALUES('132128'); +INSERT INTO `transmog_items` (`entry`) VALUES('132129'); +INSERT INTO `transmog_items` (`entry`) VALUES('132130'); +INSERT INTO `transmog_items` (`entry`) VALUES('132131'); +INSERT INTO `transmog_items` (`entry`) VALUES('132132'); +INSERT INTO `transmog_items` (`entry`) VALUES('132133'); +INSERT INTO `transmog_items` (`entry`) VALUES('132134'); +INSERT INTO `transmog_items` (`entry`) VALUES('132135'); +INSERT INTO `transmog_items` (`entry`) VALUES('132136'); +INSERT INTO `transmog_items` (`entry`) VALUES('132137'); +INSERT INTO `transmog_items` (`entry`) VALUES('132138'); +INSERT INTO `transmog_items` (`entry`) VALUES('132139'); +INSERT INTO `transmog_items` (`entry`) VALUES('132140'); +INSERT INTO `transmog_items` (`entry`) VALUES('132141'); +INSERT INTO `transmog_items` (`entry`) VALUES('132142'); +INSERT INTO `transmog_items` (`entry`) VALUES('132143'); +INSERT INTO `transmog_items` (`entry`) VALUES('132144'); +INSERT INTO `transmog_items` (`entry`) VALUES('132145'); +INSERT INTO `transmog_items` (`entry`) VALUES('132146'); +INSERT INTO `transmog_items` (`entry`) VALUES('132147'); +INSERT INTO `transmog_items` (`entry`) VALUES('132148'); +INSERT INTO `transmog_items` (`entry`) VALUES('132149'); +INSERT INTO `transmog_items` (`entry`) VALUES('132150'); +INSERT INTO `transmog_items` (`entry`) VALUES('132151'); +INSERT INTO `transmog_items` (`entry`) VALUES('132152'); +INSERT INTO `transmog_items` (`entry`) VALUES('132153'); +INSERT INTO `transmog_items` (`entry`) VALUES('132154'); +INSERT INTO `transmog_items` (`entry`) VALUES('132155'); +INSERT INTO `transmog_items` (`entry`) VALUES('132156'); +INSERT INTO `transmog_items` (`entry`) VALUES('132157'); +INSERT INTO `transmog_items` (`entry`) VALUES('132158'); +INSERT INTO `transmog_items` (`entry`) VALUES('132159'); +INSERT INTO `transmog_items` (`entry`) VALUES('132160'); +INSERT INTO `transmog_items` (`entry`) VALUES('132161'); +INSERT INTO `transmog_items` (`entry`) VALUES('132162'); +INSERT INTO `transmog_items` (`entry`) VALUES('132163'); +INSERT INTO `transmog_items` (`entry`) VALUES('132164'); +INSERT INTO `transmog_items` (`entry`) VALUES('132165'); +INSERT INTO `transmog_items` (`entry`) VALUES('132166'); +INSERT INTO `transmog_items` (`entry`) VALUES('132167'); +INSERT INTO `transmog_items` (`entry`) VALUES('132168'); +INSERT INTO `transmog_items` (`entry`) VALUES('132169'); +INSERT INTO `transmog_items` (`entry`) VALUES('132170'); +INSERT INTO `transmog_items` (`entry`) VALUES('132171'); +INSERT INTO `transmog_items` (`entry`) VALUES('132172'); +INSERT INTO `transmog_items` (`entry`) VALUES('132173'); +INSERT INTO `transmog_items` (`entry`) VALUES('132176'); +INSERT INTO `transmog_items` (`entry`) VALUES('132178'); +INSERT INTO `transmog_items` (`entry`) VALUES('132179'); +INSERT INTO `transmog_items` (`entry`) VALUES('132182'); +INSERT INTO `transmog_items` (`entry`) VALUES('132184'); +INSERT INTO `transmog_items` (`entry`) VALUES('132187'); +INSERT INTO `transmog_items` (`entry`) VALUES('132188'); +INSERT INTO `transmog_items` (`entry`) VALUES('132189'); +INSERT INTO `transmog_items` (`entry`) VALUES('132190'); +INSERT INTO `transmog_items` (`entry`) VALUES('132192'); +INSERT INTO `transmog_items` (`entry`) VALUES('132232'); +INSERT INTO `transmog_items` (`entry`) VALUES('132234'); +INSERT INTO `transmog_items` (`entry`) VALUES('132235'); +INSERT INTO `transmog_items` (`entry`) VALUES('132237'); +INSERT INTO `transmog_items` (`entry`) VALUES('132239'); +INSERT INTO `transmog_items` (`entry`) VALUES('132240'); +INSERT INTO `transmog_items` (`entry`) VALUES('132241'); +INSERT INTO `transmog_items` (`entry`) VALUES('132242'); +INSERT INTO `transmog_items` (`entry`) VALUES('132243'); +INSERT INTO `transmog_items` (`entry`) VALUES('132245'); +INSERT INTO `transmog_items` (`entry`) VALUES('132248'); +INSERT INTO `transmog_items` (`entry`) VALUES('132250'); +INSERT INTO `transmog_items` (`entry`) VALUES('132251'); +INSERT INTO `transmog_items` (`entry`) VALUES('132252'); +INSERT INTO `transmog_items` (`entry`) VALUES('132253'); +INSERT INTO `transmog_items` (`entry`) VALUES('132255'); +INSERT INTO `transmog_items` (`entry`) VALUES('132256'); +INSERT INTO `transmog_items` (`entry`) VALUES('132258'); +INSERT INTO `transmog_items` (`entry`) VALUES('132259'); +INSERT INTO `transmog_items` (`entry`) VALUES('132262'); +INSERT INTO `transmog_items` (`entry`) VALUES('132263'); +INSERT INTO `transmog_items` (`entry`) VALUES('132264'); +INSERT INTO `transmog_items` (`entry`) VALUES('132265'); +INSERT INTO `transmog_items` (`entry`) VALUES('132267'); +INSERT INTO `transmog_items` (`entry`) VALUES('132268'); +INSERT INTO `transmog_items` (`entry`) VALUES('132269'); +INSERT INTO `transmog_items` (`entry`) VALUES('132270'); +INSERT INTO `transmog_items` (`entry`) VALUES('132271'); +INSERT INTO `transmog_items` (`entry`) VALUES('132273'); +INSERT INTO `transmog_items` (`entry`) VALUES('132275'); +INSERT INTO `transmog_items` (`entry`) VALUES('132276'); +INSERT INTO `transmog_items` (`entry`) VALUES('132278'); +INSERT INTO `transmog_items` (`entry`) VALUES('132279'); +INSERT INTO `transmog_items` (`entry`) VALUES('132280'); +INSERT INTO `transmog_items` (`entry`) VALUES('132323'); +INSERT INTO `transmog_items` (`entry`) VALUES('132324'); +INSERT INTO `transmog_items` (`entry`) VALUES('132325'); +INSERT INTO `transmog_items` (`entry`) VALUES('132326'); +INSERT INTO `transmog_items` (`entry`) VALUES('132327'); +INSERT INTO `transmog_items` (`entry`) VALUES('132328'); +INSERT INTO `transmog_items` (`entry`) VALUES('132329'); +INSERT INTO `transmog_items` (`entry`) VALUES('132331'); +INSERT INTO `transmog_items` (`entry`) VALUES('132333'); +INSERT INTO `transmog_items` (`entry`) VALUES('132334'); +INSERT INTO `transmog_items` (`entry`) VALUES('132336'); +INSERT INTO `transmog_items` (`entry`) VALUES('132337'); +INSERT INTO `transmog_items` (`entry`) VALUES('132338'); +INSERT INTO `transmog_items` (`entry`) VALUES('132339'); +INSERT INTO `transmog_items` (`entry`) VALUES('132340'); +INSERT INTO `transmog_items` (`entry`) VALUES('132341'); +INSERT INTO `transmog_items` (`entry`) VALUES('132342'); +INSERT INTO `transmog_items` (`entry`) VALUES('132343'); +INSERT INTO `transmog_items` (`entry`) VALUES('132345'); +INSERT INTO `transmog_items` (`entry`) VALUES('132346'); +INSERT INTO `transmog_items` (`entry`) VALUES('132347'); +INSERT INTO `transmog_items` (`entry`) VALUES('132348'); +INSERT INTO `transmog_items` (`entry`) VALUES('132351'); +INSERT INTO `transmog_items` (`entry`) VALUES('132352'); +INSERT INTO `transmog_items` (`entry`) VALUES('132353'); +INSERT INTO `transmog_items` (`entry`) VALUES('132354'); +INSERT INTO `transmog_items` (`entry`) VALUES('132363'); +INSERT INTO `transmog_items` (`entry`) VALUES('132365'); +INSERT INTO `transmog_items` (`entry`) VALUES('132366'); +INSERT INTO `transmog_items` (`entry`) VALUES('132367'); +INSERT INTO `transmog_items` (`entry`) VALUES('132373'); +INSERT INTO `transmog_items` (`entry`) VALUES('132375'); +INSERT INTO `transmog_items` (`entry`) VALUES('132376'); +INSERT INTO `transmog_items` (`entry`) VALUES('132377'); +INSERT INTO `transmog_items` (`entry`) VALUES('132378'); +INSERT INTO `transmog_items` (`entry`) VALUES('132389'); +INSERT INTO `transmog_items` (`entry`) VALUES('132390'); +INSERT INTO `transmog_items` (`entry`) VALUES('132391'); +INSERT INTO `transmog_items` (`entry`) VALUES('132392'); +INSERT INTO `transmog_items` (`entry`) VALUES('132393'); +INSERT INTO `transmog_items` (`entry`) VALUES('132394'); +INSERT INTO `transmog_items` (`entry`) VALUES('132395'); +INSERT INTO `transmog_items` (`entry`) VALUES('132396'); +INSERT INTO `transmog_items` (`entry`) VALUES('132397'); +INSERT INTO `transmog_items` (`entry`) VALUES('132398'); +INSERT INTO `transmog_items` (`entry`) VALUES('132399'); +INSERT INTO `transmog_items` (`entry`) VALUES('132400'); +INSERT INTO `transmog_items` (`entry`) VALUES('132401'); +INSERT INTO `transmog_items` (`entry`) VALUES('132402'); +INSERT INTO `transmog_items` (`entry`) VALUES('132403'); +INSERT INTO `transmog_items` (`entry`) VALUES('132404'); +INSERT INTO `transmog_items` (`entry`) VALUES('132407'); +INSERT INTO `transmog_items` (`entry`) VALUES('132420'); +INSERT INTO `transmog_items` (`entry`) VALUES('132450'); +INSERT INTO `transmog_items` (`entry`) VALUES('132451'); +INSERT INTO `transmog_items` (`entry`) VALUES('132461'); +INSERT INTO `transmog_items` (`entry`) VALUES('132471'); +INSERT INTO `transmog_items` (`entry`) VALUES('132472'); +INSERT INTO `transmog_items` (`entry`) VALUES('132473'); +INSERT INTO `transmog_items` (`entry`) VALUES('132474'); +INSERT INTO `transmog_items` (`entry`) VALUES('132475'); +INSERT INTO `transmog_items` (`entry`) VALUES('132476'); +INSERT INTO `transmog_items` (`entry`) VALUES('132478'); +INSERT INTO `transmog_items` (`entry`) VALUES('132479'); +INSERT INTO `transmog_items` (`entry`) VALUES('132480'); +INSERT INTO `transmog_items` (`entry`) VALUES('132482'); +INSERT INTO `transmog_items` (`entry`) VALUES('132494'); +INSERT INTO `transmog_items` (`entry`) VALUES('132495'); +INSERT INTO `transmog_items` (`entry`) VALUES('132500'); +INSERT INTO `transmog_items` (`entry`) VALUES('132510'); +INSERT INTO `transmog_items` (`entry`) VALUES('132512'); +INSERT INTO `transmog_items` (`entry`) VALUES('132513'); +INSERT INTO `transmog_items` (`entry`) VALUES('132515'); +INSERT INTO `transmog_items` (`entry`) VALUES('132516'); +INSERT INTO `transmog_items` (`entry`) VALUES('132517'); +INSERT INTO `transmog_items` (`entry`) VALUES('132518'); +INSERT INTO `transmog_items` (`entry`) VALUES('132519'); +INSERT INTO `transmog_items` (`entry`) VALUES('132521'); +INSERT INTO `transmog_items` (`entry`) VALUES('132522'); +INSERT INTO `transmog_items` (`entry`) VALUES('132524'); +INSERT INTO `transmog_items` (`entry`) VALUES('132525'); +INSERT INTO `transmog_items` (`entry`) VALUES('132529'); +INSERT INTO `transmog_items` (`entry`) VALUES('132532'); +INSERT INTO `transmog_items` (`entry`) VALUES('132536'); +INSERT INTO `transmog_items` (`entry`) VALUES('132537'); +INSERT INTO `transmog_items` (`entry`) VALUES('132538'); +INSERT INTO `transmog_items` (`entry`) VALUES('132539'); +INSERT INTO `transmog_items` (`entry`) VALUES('132540'); +INSERT INTO `transmog_items` (`entry`) VALUES('132541'); +INSERT INTO `transmog_items` (`entry`) VALUES('132568'); +INSERT INTO `transmog_items` (`entry`) VALUES('132570'); +INSERT INTO `transmog_items` (`entry`) VALUES('132571'); +INSERT INTO `transmog_items` (`entry`) VALUES('132573'); +INSERT INTO `transmog_items` (`entry`) VALUES('132574'); +INSERT INTO `transmog_items` (`entry`) VALUES('132575'); +INSERT INTO `transmog_items` (`entry`) VALUES('132577'); +INSERT INTO `transmog_items` (`entry`) VALUES('132579'); +INSERT INTO `transmog_items` (`entry`) VALUES('132580'); +INSERT INTO `transmog_items` (`entry`) VALUES('132581'); +INSERT INTO `transmog_items` (`entry`) VALUES('132582'); +INSERT INTO `transmog_items` (`entry`) VALUES('132583'); +INSERT INTO `transmog_items` (`entry`) VALUES('132584'); +INSERT INTO `transmog_items` (`entry`) VALUES('132585'); +INSERT INTO `transmog_items` (`entry`) VALUES('132586'); +INSERT INTO `transmog_items` (`entry`) VALUES('132587'); +INSERT INTO `transmog_items` (`entry`) VALUES('132590'); +INSERT INTO `transmog_items` (`entry`) VALUES('132592'); +INSERT INTO `transmog_items` (`entry`) VALUES('132593'); +INSERT INTO `transmog_items` (`entry`) VALUES('132606'); +INSERT INTO `transmog_items` (`entry`) VALUES('132608'); +INSERT INTO `transmog_items` (`entry`) VALUES('132609'); +INSERT INTO `transmog_items` (`entry`) VALUES('132645'); +INSERT INTO `transmog_items` (`entry`) VALUES('132647'); +INSERT INTO `transmog_items` (`entry`) VALUES('132648'); +INSERT INTO `transmog_items` (`entry`) VALUES('132650'); +INSERT INTO `transmog_items` (`entry`) VALUES('132652'); +INSERT INTO `transmog_items` (`entry`) VALUES('132653'); +INSERT INTO `transmog_items` (`entry`) VALUES('132655'); +INSERT INTO `transmog_items` (`entry`) VALUES('132656'); +INSERT INTO `transmog_items` (`entry`) VALUES('132659'); +INSERT INTO `transmog_items` (`entry`) VALUES('132661'); +INSERT INTO `transmog_items` (`entry`) VALUES('132663'); +INSERT INTO `transmog_items` (`entry`) VALUES('132665'); +INSERT INTO `transmog_items` (`entry`) VALUES('132756'); +INSERT INTO `transmog_items` (`entry`) VALUES('132769'); +INSERT INTO `transmog_items` (`entry`) VALUES('132776'); +INSERT INTO `transmog_items` (`entry`) VALUES('132778'); +INSERT INTO `transmog_items` (`entry`) VALUES('132780'); +INSERT INTO `transmog_items` (`entry`) VALUES('132781'); +INSERT INTO `transmog_items` (`entry`) VALUES('132785'); +INSERT INTO `transmog_items` (`entry`) VALUES('132786'); +INSERT INTO `transmog_items` (`entry`) VALUES('132787'); +INSERT INTO `transmog_items` (`entry`) VALUES('132788'); +INSERT INTO `transmog_items` (`entry`) VALUES('132789'); +INSERT INTO `transmog_items` (`entry`) VALUES('132790'); +INSERT INTO `transmog_items` (`entry`) VALUES('132791'); +INSERT INTO `transmog_items` (`entry`) VALUES('132792'); +INSERT INTO `transmog_items` (`entry`) VALUES('132793'); +INSERT INTO `transmog_items` (`entry`) VALUES('132794'); +INSERT INTO `transmog_items` (`entry`) VALUES('132795'); +INSERT INTO `transmog_items` (`entry`) VALUES('132796'); +INSERT INTO `transmog_items` (`entry`) VALUES('132797'); +INSERT INTO `transmog_items` (`entry`) VALUES('132798'); +INSERT INTO `transmog_items` (`entry`) VALUES('132799'); +INSERT INTO `transmog_items` (`entry`) VALUES('132800'); +INSERT INTO `transmog_items` (`entry`) VALUES('132801'); +INSERT INTO `transmog_items` (`entry`) VALUES('132802'); +INSERT INTO `transmog_items` (`entry`) VALUES('132803'); +INSERT INTO `transmog_items` (`entry`) VALUES('132804'); +INSERT INTO `transmog_items` (`entry`) VALUES('132805'); +INSERT INTO `transmog_items` (`entry`) VALUES('132806'); +INSERT INTO `transmog_items` (`entry`) VALUES('132807'); +INSERT INTO `transmog_items` (`entry`) VALUES('132808'); +INSERT INTO `transmog_items` (`entry`) VALUES('132809'); +INSERT INTO `transmog_items` (`entry`) VALUES('132810'); +INSERT INTO `transmog_items` (`entry`) VALUES('132811'); +INSERT INTO `transmog_items` (`entry`) VALUES('132812'); +INSERT INTO `transmog_items` (`entry`) VALUES('132813'); +INSERT INTO `transmog_items` (`entry`) VALUES('132814'); +INSERT INTO `transmog_items` (`entry`) VALUES('132816'); +INSERT INTO `transmog_items` (`entry`) VALUES('132817'); +INSERT INTO `transmog_items` (`entry`) VALUES('132818'); +INSERT INTO `transmog_items` (`entry`) VALUES('132819'); +INSERT INTO `transmog_items` (`entry`) VALUES('132820'); +INSERT INTO `transmog_items` (`entry`) VALUES('132821'); +INSERT INTO `transmog_items` (`entry`) VALUES('132829'); +INSERT INTO `transmog_items` (`entry`) VALUES('132831'); +INSERT INTO `transmog_items` (`entry`) VALUES('132832'); +INSERT INTO `transmog_items` (`entry`) VALUES('132865'); +INSERT INTO `transmog_items` (`entry`) VALUES('132866'); +INSERT INTO `transmog_items` (`entry`) VALUES('132867'); +INSERT INTO `transmog_items` (`entry`) VALUES('132868'); +INSERT INTO `transmog_items` (`entry`) VALUES('132869'); +INSERT INTO `transmog_items` (`entry`) VALUES('132870'); +INSERT INTO `transmog_items` (`entry`) VALUES('132871'); +INSERT INTO `transmog_items` (`entry`) VALUES('132872'); +INSERT INTO `transmog_items` (`entry`) VALUES('132912'); +INSERT INTO `transmog_items` (`entry`) VALUES('132914'); +INSERT INTO `transmog_items` (`entry`) VALUES('132915'); +INSERT INTO `transmog_items` (`entry`) VALUES('132917'); +INSERT INTO `transmog_items` (`entry`) VALUES('132918'); +INSERT INTO `transmog_items` (`entry`) VALUES('132919'); +INSERT INTO `transmog_items` (`entry`) VALUES('132920'); +INSERT INTO `transmog_items` (`entry`) VALUES('132943'); +INSERT INTO `transmog_items` (`entry`) VALUES('132944'); +INSERT INTO `transmog_items` (`entry`) VALUES('132945'); +INSERT INTO `transmog_items` (`entry`) VALUES('132946'); +INSERT INTO `transmog_items` (`entry`) VALUES('132950'); +INSERT INTO `transmog_items` (`entry`) VALUES('132962'); +INSERT INTO `transmog_items` (`entry`) VALUES('132963'); +INSERT INTO `transmog_items` (`entry`) VALUES('132964'); +INSERT INTO `transmog_items` (`entry`) VALUES('132973'); +INSERT INTO `transmog_items` (`entry`) VALUES('132974'); +INSERT INTO `transmog_items` (`entry`) VALUES('132975'); +INSERT INTO `transmog_items` (`entry`) VALUES('132976'); +INSERT INTO `transmog_items` (`entry`) VALUES('132977'); +INSERT INTO `transmog_items` (`entry`) VALUES('132978'); +INSERT INTO `transmog_items` (`entry`) VALUES('132979'); +INSERT INTO `transmog_items` (`entry`) VALUES('132980'); +INSERT INTO `transmog_items` (`entry`) VALUES('132981'); +INSERT INTO `transmog_items` (`entry`) VALUES('132982'); +INSERT INTO `transmog_items` (`entry`) VALUES('132983'); +INSERT INTO `transmog_items` (`entry`) VALUES('132984'); +INSERT INTO `transmog_items` (`entry`) VALUES('132985'); +INSERT INTO `transmog_items` (`entry`) VALUES('132986'); +INSERT INTO `transmog_items` (`entry`) VALUES('132987'); +INSERT INTO `transmog_items` (`entry`) VALUES('132988'); +INSERT INTO `transmog_items` (`entry`) VALUES('132989'); +INSERT INTO `transmog_items` (`entry`) VALUES('132990'); +INSERT INTO `transmog_items` (`entry`) VALUES('132991'); +INSERT INTO `transmog_items` (`entry`) VALUES('132992'); +INSERT INTO `transmog_items` (`entry`) VALUES('132993'); +INSERT INTO `transmog_items` (`entry`) VALUES('132994'); +INSERT INTO `transmog_items` (`entry`) VALUES('132995'); +INSERT INTO `transmog_items` (`entry`) VALUES('132996'); +INSERT INTO `transmog_items` (`entry`) VALUES('132997'); +INSERT INTO `transmog_items` (`entry`) VALUES('132998'); +INSERT INTO `transmog_items` (`entry`) VALUES('132999'); +INSERT INTO `transmog_items` (`entry`) VALUES('133006'); +INSERT INTO `transmog_items` (`entry`) VALUES('133016'); +INSERT INTO `transmog_items` (`entry`) VALUES('133017'); +INSERT INTO `transmog_items` (`entry`) VALUES('133018'); +INSERT INTO `transmog_items` (`entry`) VALUES('133019'); +INSERT INTO `transmog_items` (`entry`) VALUES('133020'); +INSERT INTO `transmog_items` (`entry`) VALUES('133021'); +INSERT INTO `transmog_items` (`entry`) VALUES('133122'); +INSERT INTO `transmog_items` (`entry`) VALUES('133173'); +INSERT INTO `transmog_items` (`entry`) VALUES('133191'); +INSERT INTO `transmog_items` (`entry`) VALUES('133192'); +INSERT INTO `transmog_items` (`entry`) VALUES('133203'); +INSERT INTO `transmog_items` (`entry`) VALUES('133204'); +INSERT INTO `transmog_items` (`entry`) VALUES('133206'); +INSERT INTO `transmog_items` (`entry`) VALUES('133207'); +INSERT INTO `transmog_items` (`entry`) VALUES('133211'); +INSERT INTO `transmog_items` (`entry`) VALUES('133215'); +INSERT INTO `transmog_items` (`entry`) VALUES('133216'); +INSERT INTO `transmog_items` (`entry`) VALUES('133222'); +INSERT INTO `transmog_items` (`entry`) VALUES('133228'); +INSERT INTO `transmog_items` (`entry`) VALUES('133229'); +INSERT INTO `transmog_items` (`entry`) VALUES('133230'); +INSERT INTO `transmog_items` (`entry`) VALUES('133231'); +INSERT INTO `transmog_items` (`entry`) VALUES('133232'); +INSERT INTO `transmog_items` (`entry`) VALUES('133233'); +INSERT INTO `transmog_items` (`entry`) VALUES('133235'); +INSERT INTO `transmog_items` (`entry`) VALUES('133237'); +INSERT INTO `transmog_items` (`entry`) VALUES('133239'); +INSERT INTO `transmog_items` (`entry`) VALUES('133240'); +INSERT INTO `transmog_items` (`entry`) VALUES('133241'); +INSERT INTO `transmog_items` (`entry`) VALUES('133242'); +INSERT INTO `transmog_items` (`entry`) VALUES('133243'); +INSERT INTO `transmog_items` (`entry`) VALUES('133244'); +INSERT INTO `transmog_items` (`entry`) VALUES('133245'); +INSERT INTO `transmog_items` (`entry`) VALUES('133247'); +INSERT INTO `transmog_items` (`entry`) VALUES('133248'); +INSERT INTO `transmog_items` (`entry`) VALUES('133249'); +INSERT INTO `transmog_items` (`entry`) VALUES('133250'); +INSERT INTO `transmog_items` (`entry`) VALUES('133251'); +INSERT INTO `transmog_items` (`entry`) VALUES('133252'); +INSERT INTO `transmog_items` (`entry`) VALUES('133253'); +INSERT INTO `transmog_items` (`entry`) VALUES('133255'); +INSERT INTO `transmog_items` (`entry`) VALUES('133256'); +INSERT INTO `transmog_items` (`entry`) VALUES('133257'); +INSERT INTO `transmog_items` (`entry`) VALUES('133258'); +INSERT INTO `transmog_items` (`entry`) VALUES('133259'); +INSERT INTO `transmog_items` (`entry`) VALUES('133260'); +INSERT INTO `transmog_items` (`entry`) VALUES('133261'); +INSERT INTO `transmog_items` (`entry`) VALUES('133267'); +INSERT INTO `transmog_items` (`entry`) VALUES('133268'); +INSERT INTO `transmog_items` (`entry`) VALUES('133269'); +INSERT INTO `transmog_items` (`entry`) VALUES('133273'); +INSERT INTO `transmog_items` (`entry`) VALUES('133274'); +INSERT INTO `transmog_items` (`entry`) VALUES('133279'); +INSERT INTO `transmog_items` (`entry`) VALUES('133280'); +INSERT INTO `transmog_items` (`entry`) VALUES('133283'); +INSERT INTO `transmog_items` (`entry`) VALUES('133285'); +INSERT INTO `transmog_items` (`entry`) VALUES('133286'); +INSERT INTO `transmog_items` (`entry`) VALUES('133287'); +INSERT INTO `transmog_items` (`entry`) VALUES('133291'); +INSERT INTO `transmog_items` (`entry`) VALUES('133292'); +INSERT INTO `transmog_items` (`entry`) VALUES('133298'); +INSERT INTO `transmog_items` (`entry`) VALUES('133299'); +INSERT INTO `transmog_items` (`entry`) VALUES('133300'); +INSERT INTO `transmog_items` (`entry`) VALUES('133303'); +INSERT INTO `transmog_items` (`entry`) VALUES('133304'); +INSERT INTO `transmog_items` (`entry`) VALUES('133309'); +INSERT INTO `transmog_items` (`entry`) VALUES('133313'); +INSERT INTO `transmog_items` (`entry`) VALUES('133317'); +INSERT INTO `transmog_items` (`entry`) VALUES('133322'); +INSERT INTO `transmog_items` (`entry`) VALUES('133324'); +INSERT INTO `transmog_items` (`entry`) VALUES('133326'); +INSERT INTO `transmog_items` (`entry`) VALUES('133327'); +INSERT INTO `transmog_items` (`entry`) VALUES('133328'); +INSERT INTO `transmog_items` (`entry`) VALUES('133329'); +INSERT INTO `transmog_items` (`entry`) VALUES('133331'); +INSERT INTO `transmog_items` (`entry`) VALUES('133332'); +INSERT INTO `transmog_items` (`entry`) VALUES('133333'); +INSERT INTO `transmog_items` (`entry`) VALUES('133354'); +INSERT INTO `transmog_items` (`entry`) VALUES('133356'); +INSERT INTO `transmog_items` (`entry`) VALUES('133357'); +INSERT INTO `transmog_items` (`entry`) VALUES('133358'); +INSERT INTO `transmog_items` (`entry`) VALUES('133359'); +INSERT INTO `transmog_items` (`entry`) VALUES('133360'); +INSERT INTO `transmog_items` (`entry`) VALUES('133361'); +INSERT INTO `transmog_items` (`entry`) VALUES('133362'); +INSERT INTO `transmog_items` (`entry`) VALUES('133363'); +INSERT INTO `transmog_items` (`entry`) VALUES('133364'); +INSERT INTO `transmog_items` (`entry`) VALUES('133365'); +INSERT INTO `transmog_items` (`entry`) VALUES('133366'); +INSERT INTO `transmog_items` (`entry`) VALUES('133367'); +INSERT INTO `transmog_items` (`entry`) VALUES('133368'); +INSERT INTO `transmog_items` (`entry`) VALUES('133369'); +INSERT INTO `transmog_items` (`entry`) VALUES('133370'); +INSERT INTO `transmog_items` (`entry`) VALUES('133371'); +INSERT INTO `transmog_items` (`entry`) VALUES('133372'); +INSERT INTO `transmog_items` (`entry`) VALUES('133373'); +INSERT INTO `transmog_items` (`entry`) VALUES('133374'); +INSERT INTO `transmog_items` (`entry`) VALUES('133375'); +INSERT INTO `transmog_items` (`entry`) VALUES('133376'); +INSERT INTO `transmog_items` (`entry`) VALUES('133377'); +INSERT INTO `transmog_items` (`entry`) VALUES('133378'); +INSERT INTO `transmog_items` (`entry`) VALUES('133379'); +INSERT INTO `transmog_items` (`entry`) VALUES('133380'); +INSERT INTO `transmog_items` (`entry`) VALUES('133381'); +INSERT INTO `transmog_items` (`entry`) VALUES('133382'); +INSERT INTO `transmog_items` (`entry`) VALUES('133383'); +INSERT INTO `transmog_items` (`entry`) VALUES('133384'); +INSERT INTO `transmog_items` (`entry`) VALUES('133385'); +INSERT INTO `transmog_items` (`entry`) VALUES('133386'); +INSERT INTO `transmog_items` (`entry`) VALUES('133389'); +INSERT INTO `transmog_items` (`entry`) VALUES('133390'); +INSERT INTO `transmog_items` (`entry`) VALUES('133391'); +INSERT INTO `transmog_items` (`entry`) VALUES('133392'); +INSERT INTO `transmog_items` (`entry`) VALUES('133393'); +INSERT INTO `transmog_items` (`entry`) VALUES('133394'); +INSERT INTO `transmog_items` (`entry`) VALUES('133395'); +INSERT INTO `transmog_items` (`entry`) VALUES('133396'); +INSERT INTO `transmog_items` (`entry`) VALUES('133397'); +INSERT INTO `transmog_items` (`entry`) VALUES('133398'); +INSERT INTO `transmog_items` (`entry`) VALUES('133399'); +INSERT INTO `transmog_items` (`entry`) VALUES('133400'); +INSERT INTO `transmog_items` (`entry`) VALUES('133401'); +INSERT INTO `transmog_items` (`entry`) VALUES('133402'); +INSERT INTO `transmog_items` (`entry`) VALUES('133403'); +INSERT INTO `transmog_items` (`entry`) VALUES('133404'); +INSERT INTO `transmog_items` (`entry`) VALUES('133405'); +INSERT INTO `transmog_items` (`entry`) VALUES('133406'); +INSERT INTO `transmog_items` (`entry`) VALUES('133407'); +INSERT INTO `transmog_items` (`entry`) VALUES('133408'); +INSERT INTO `transmog_items` (`entry`) VALUES('133409'); +INSERT INTO `transmog_items` (`entry`) VALUES('133410'); +INSERT INTO `transmog_items` (`entry`) VALUES('133412'); +INSERT INTO `transmog_items` (`entry`) VALUES('133413'); +INSERT INTO `transmog_items` (`entry`) VALUES('133414'); +INSERT INTO `transmog_items` (`entry`) VALUES('133415'); +INSERT INTO `transmog_items` (`entry`) VALUES('133416'); +INSERT INTO `transmog_items` (`entry`) VALUES('133417'); +INSERT INTO `transmog_items` (`entry`) VALUES('133419'); +INSERT INTO `transmog_items` (`entry`) VALUES('133421'); +INSERT INTO `transmog_items` (`entry`) VALUES('133422'); +INSERT INTO `transmog_items` (`entry`) VALUES('133423'); +INSERT INTO `transmog_items` (`entry`) VALUES('133427'); +INSERT INTO `transmog_items` (`entry`) VALUES('133428'); +INSERT INTO `transmog_items` (`entry`) VALUES('133429'); +INSERT INTO `transmog_items` (`entry`) VALUES('133432'); +INSERT INTO `transmog_items` (`entry`) VALUES('133433'); +INSERT INTO `transmog_items` (`entry`) VALUES('133434'); +INSERT INTO `transmog_items` (`entry`) VALUES('133435'); +INSERT INTO `transmog_items` (`entry`) VALUES('133436'); +INSERT INTO `transmog_items` (`entry`) VALUES('133437'); +INSERT INTO `transmog_items` (`entry`) VALUES('133438'); +INSERT INTO `transmog_items` (`entry`) VALUES('133439'); +INSERT INTO `transmog_items` (`entry`) VALUES('133440'); +INSERT INTO `transmog_items` (`entry`) VALUES('133446'); +INSERT INTO `transmog_items` (`entry`) VALUES('133453'); +INSERT INTO `transmog_items` (`entry`) VALUES('133463'); +INSERT INTO `transmog_items` (`entry`) VALUES('133464'); +INSERT INTO `transmog_items` (`entry`) VALUES('133468'); +INSERT INTO `transmog_items` (`entry`) VALUES('133469'); +INSERT INTO `transmog_items` (`entry`) VALUES('133471'); +INSERT INTO `transmog_items` (`entry`) VALUES('133473'); +INSERT INTO `transmog_items` (`entry`) VALUES('133474'); +INSERT INTO `transmog_items` (`entry`) VALUES('133479'); +INSERT INTO `transmog_items` (`entry`) VALUES('133480'); +INSERT INTO `transmog_items` (`entry`) VALUES('133481'); +INSERT INTO `transmog_items` (`entry`) VALUES('133482'); +INSERT INTO `transmog_items` (`entry`) VALUES('133483'); +INSERT INTO `transmog_items` (`entry`) VALUES('133484'); +INSERT INTO `transmog_items` (`entry`) VALUES('133489'); +INSERT INTO `transmog_items` (`entry`) VALUES('133491'); +INSERT INTO `transmog_items` (`entry`) VALUES('133492'); +INSERT INTO `transmog_items` (`entry`) VALUES('133493'); +INSERT INTO `transmog_items` (`entry`) VALUES('133495'); +INSERT INTO `transmog_items` (`entry`) VALUES('133501'); +INSERT INTO `transmog_items` (`entry`) VALUES('133512'); +INSERT INTO `transmog_items` (`entry`) VALUES('133513'); +INSERT INTO `transmog_items` (`entry`) VALUES('133514'); +INSERT INTO `transmog_items` (`entry`) VALUES('133515'); +INSERT INTO `transmog_items` (`entry`) VALUES('133516'); +INSERT INTO `transmog_items` (`entry`) VALUES('133517'); +INSERT INTO `transmog_items` (`entry`) VALUES('133518'); +INSERT INTO `transmog_items` (`entry`) VALUES('133519'); +INSERT INTO `transmog_items` (`entry`) VALUES('133520'); +INSERT INTO `transmog_items` (`entry`) VALUES('133522'); +INSERT INTO `transmog_items` (`entry`) VALUES('133523'); +INSERT INTO `transmog_items` (`entry`) VALUES('133524'); +INSERT INTO `transmog_items` (`entry`) VALUES('133527'); +INSERT INTO `transmog_items` (`entry`) VALUES('133528'); +INSERT INTO `transmog_items` (`entry`) VALUES('133529'); +INSERT INTO `transmog_items` (`entry`) VALUES('133530'); +INSERT INTO `transmog_items` (`entry`) VALUES('133531'); +INSERT INTO `transmog_items` (`entry`) VALUES('133532'); +INSERT INTO `transmog_items` (`entry`) VALUES('133533'); +INSERT INTO `transmog_items` (`entry`) VALUES('133534'); +INSERT INTO `transmog_items` (`entry`) VALUES('133535'); +INSERT INTO `transmog_items` (`entry`) VALUES('133536'); +INSERT INTO `transmog_items` (`entry`) VALUES('133537'); +INSERT INTO `transmog_items` (`entry`) VALUES('133538'); +INSERT INTO `transmog_items` (`entry`) VALUES('133539'); +INSERT INTO `transmog_items` (`entry`) VALUES('133540'); +INSERT INTO `transmog_items` (`entry`) VALUES('133552'); +INSERT INTO `transmog_items` (`entry`) VALUES('133557'); +INSERT INTO `transmog_items` (`entry`) VALUES('133559'); +INSERT INTO `transmog_items` (`entry`) VALUES('133566'); +INSERT INTO `transmog_items` (`entry`) VALUES('133577'); +INSERT INTO `transmog_items` (`entry`) VALUES('133578'); +INSERT INTO `transmog_items` (`entry`) VALUES('133579'); +INSERT INTO `transmog_items` (`entry`) VALUES('133580'); +INSERT INTO `transmog_items` (`entry`) VALUES('133582'); +INSERT INTO `transmog_items` (`entry`) VALUES('133583'); +INSERT INTO `transmog_items` (`entry`) VALUES('133584'); +INSERT INTO `transmog_items` (`entry`) VALUES('133585'); +INSERT INTO `transmog_items` (`entry`) VALUES('133586'); +INSERT INTO `transmog_items` (`entry`) VALUES('133587'); +INSERT INTO `transmog_items` (`entry`) VALUES('133588'); +INSERT INTO `transmog_items` (`entry`) VALUES('133589'); +INSERT INTO `transmog_items` (`entry`) VALUES('133590'); +INSERT INTO `transmog_items` (`entry`) VALUES('133591'); +INSERT INTO `transmog_items` (`entry`) VALUES('133592'); +INSERT INTO `transmog_items` (`entry`) VALUES('133593'); +INSERT INTO `transmog_items` (`entry`) VALUES('133640'); +INSERT INTO `transmog_items` (`entry`) VALUES('133661'); +INSERT INTO `transmog_items` (`entry`) VALUES('133662'); +INSERT INTO `transmog_items` (`entry`) VALUES('133664'); +INSERT INTO `transmog_items` (`entry`) VALUES('133665'); +INSERT INTO `transmog_items` (`entry`) VALUES('133666'); +INSERT INTO `transmog_items` (`entry`) VALUES('133667'); +INSERT INTO `transmog_items` (`entry`) VALUES('133668'); +INSERT INTO `transmog_items` (`entry`) VALUES('133670'); +INSERT INTO `transmog_items` (`entry`) VALUES('133671'); +INSERT INTO `transmog_items` (`entry`) VALUES('133672'); +INSERT INTO `transmog_items` (`entry`) VALUES('133673'); +INSERT INTO `transmog_items` (`entry`) VALUES('133674'); +INSERT INTO `transmog_items` (`entry`) VALUES('133675'); +INSERT INTO `transmog_items` (`entry`) VALUES('133676'); +INSERT INTO `transmog_items` (`entry`) VALUES('133677'); +INSERT INTO `transmog_items` (`entry`) VALUES('133678'); +INSERT INTO `transmog_items` (`entry`) VALUES('133679'); +INSERT INTO `transmog_items` (`entry`) VALUES('133680'); +INSERT INTO `transmog_items` (`entry`) VALUES('133682'); +INSERT INTO `transmog_items` (`entry`) VALUES('133683'); +INSERT INTO `transmog_items` (`entry`) VALUES('133684'); +INSERT INTO `transmog_items` (`entry`) VALUES('133685'); +INSERT INTO `transmog_items` (`entry`) VALUES('133686'); +INSERT INTO `transmog_items` (`entry`) VALUES('133687'); +INSERT INTO `transmog_items` (`entry`) VALUES('133690'); +INSERT INTO `transmog_items` (`entry`) VALUES('133691'); +INSERT INTO `transmog_items` (`entry`) VALUES('133692'); +INSERT INTO `transmog_items` (`entry`) VALUES('133693'); +INSERT INTO `transmog_items` (`entry`) VALUES('133694'); +INSERT INTO `transmog_items` (`entry`) VALUES('133695'); +INSERT INTO `transmog_items` (`entry`) VALUES('133696'); +INSERT INTO `transmog_items` (`entry`) VALUES('133697'); +INSERT INTO `transmog_items` (`entry`) VALUES('133698'); +INSERT INTO `transmog_items` (`entry`) VALUES('133699'); +INSERT INTO `transmog_items` (`entry`) VALUES('133700'); +INSERT INTO `transmog_items` (`entry`) VALUES('133701'); +INSERT INTO `transmog_items` (`entry`) VALUES('133702'); +INSERT INTO `transmog_items` (`entry`) VALUES('133703'); +INSERT INTO `transmog_items` (`entry`) VALUES('133704'); +INSERT INTO `transmog_items` (`entry`) VALUES('133705'); +INSERT INTO `transmog_items` (`entry`) VALUES('133706'); +INSERT INTO `transmog_items` (`entry`) VALUES('133707'); +INSERT INTO `transmog_items` (`entry`) VALUES('133708'); +INSERT INTO `transmog_items` (`entry`) VALUES('133709'); +INSERT INTO `transmog_items` (`entry`) VALUES('133710'); +INSERT INTO `transmog_items` (`entry`) VALUES('133711'); +INSERT INTO `transmog_items` (`entry`) VALUES('133712'); +INSERT INTO `transmog_items` (`entry`) VALUES('133713'); +INSERT INTO `transmog_items` (`entry`) VALUES('133714'); +INSERT INTO `transmog_items` (`entry`) VALUES('133715'); +INSERT INTO `transmog_items` (`entry`) VALUES('133717'); +INSERT INTO `transmog_items` (`entry`) VALUES('133718'); +INSERT INTO `transmog_items` (`entry`) VALUES('133719'); +INSERT INTO `transmog_items` (`entry`) VALUES('133720'); +INSERT INTO `transmog_items` (`entry`) VALUES('133721'); +INSERT INTO `transmog_items` (`entry`) VALUES('133722'); +INSERT INTO `transmog_items` (`entry`) VALUES('133723'); +INSERT INTO `transmog_items` (`entry`) VALUES('133724'); +INSERT INTO `transmog_items` (`entry`) VALUES('133725'); +INSERT INTO `transmog_items` (`entry`) VALUES('133726'); +INSERT INTO `transmog_items` (`entry`) VALUES('133727'); +INSERT INTO `transmog_items` (`entry`) VALUES('133728'); +INSERT INTO `transmog_items` (`entry`) VALUES('133729'); +INSERT INTO `transmog_items` (`entry`) VALUES('133730'); +INSERT INTO `transmog_items` (`entry`) VALUES('133731'); +INSERT INTO `transmog_items` (`entry`) VALUES('133732'); +INSERT INTO `transmog_items` (`entry`) VALUES('133733'); +INSERT INTO `transmog_items` (`entry`) VALUES('133735'); +INSERT INTO `transmog_items` (`entry`) VALUES('133737'); +INSERT INTO `transmog_items` (`entry`) VALUES('133738'); +INSERT INTO `transmog_items` (`entry`) VALUES('133739'); +INSERT INTO `transmog_items` (`entry`) VALUES('133740'); +INSERT INTO `transmog_items` (`entry`) VALUES('133741'); +INSERT INTO `transmog_items` (`entry`) VALUES('133742'); +INSERT INTO `transmog_items` (`entry`) VALUES('133743'); +INSERT INTO `transmog_items` (`entry`) VALUES('133744'); +INSERT INTO `transmog_items` (`entry`) VALUES('133745'); +INSERT INTO `transmog_items` (`entry`) VALUES('133746'); +INSERT INTO `transmog_items` (`entry`) VALUES('133747'); +INSERT INTO `transmog_items` (`entry`) VALUES('133748'); +INSERT INTO `transmog_items` (`entry`) VALUES('133749'); +INSERT INTO `transmog_items` (`entry`) VALUES('133750'); +INSERT INTO `transmog_items` (`entry`) VALUES('133751'); +INSERT INTO `transmog_items` (`entry`) VALUES('133752'); +INSERT INTO `transmog_items` (`entry`) VALUES('133753'); +INSERT INTO `transmog_items` (`entry`) VALUES('133754'); +INSERT INTO `transmog_items` (`entry`) VALUES('133755'); +INSERT INTO `transmog_items` (`entry`) VALUES('133756'); +INSERT INTO `transmog_items` (`entry`) VALUES('133757'); +INSERT INTO `transmog_items` (`entry`) VALUES('133758'); +INSERT INTO `transmog_items` (`entry`) VALUES('133759'); +INSERT INTO `transmog_items` (`entry`) VALUES('133760'); +INSERT INTO `transmog_items` (`entry`) VALUES('133761'); +INSERT INTO `transmog_items` (`entry`) VALUES('133763'); +INSERT INTO `transmog_items` (`entry`) VALUES('133764'); +INSERT INTO `transmog_items` (`entry`) VALUES('133765'); +INSERT INTO `transmog_items` (`entry`) VALUES('133767'); +INSERT INTO `transmog_items` (`entry`) VALUES('133768'); +INSERT INTO `transmog_items` (`entry`) VALUES('133769'); +INSERT INTO `transmog_items` (`entry`) VALUES('133770'); +INSERT INTO `transmog_items` (`entry`) VALUES('133771'); +INSERT INTO `transmog_items` (`entry`) VALUES('133801'); +INSERT INTO `transmog_items` (`entry`) VALUES('133805'); +INSERT INTO `transmog_items` (`entry`) VALUES('133808'); +INSERT INTO `transmog_items` (`entry`) VALUES('133810'); +INSERT INTO `transmog_items` (`entry`) VALUES('133811'); +INSERT INTO `transmog_items` (`entry`) VALUES('133812'); +INSERT INTO `transmog_items` (`entry`) VALUES('133813'); +INSERT INTO `transmog_items` (`entry`) VALUES('133820'); +INSERT INTO `transmog_items` (`entry`) VALUES('133876'); +INSERT INTO `transmog_items` (`entry`) VALUES('133877'); +INSERT INTO `transmog_items` (`entry`) VALUES('133878'); +INSERT INTO `transmog_items` (`entry`) VALUES('133879'); +INSERT INTO `transmog_items` (`entry`) VALUES('133880'); +INSERT INTO `transmog_items` (`entry`) VALUES('133881'); +INSERT INTO `transmog_items` (`entry`) VALUES('133882'); +INSERT INTO `transmog_items` (`entry`) VALUES('133883'); +INSERT INTO `transmog_items` (`entry`) VALUES('133884'); +INSERT INTO `transmog_items` (`entry`) VALUES('133885'); +INSERT INTO `transmog_items` (`entry`) VALUES('133886'); +INSERT INTO `transmog_items` (`entry`) VALUES('133887'); +INSERT INTO `transmog_items` (`entry`) VALUES('133888'); +INSERT INTO `transmog_items` (`entry`) VALUES('133889'); +INSERT INTO `transmog_items` (`entry`) VALUES('133890'); +INSERT INTO `transmog_items` (`entry`) VALUES('133891'); +INSERT INTO `transmog_items` (`entry`) VALUES('133892'); +INSERT INTO `transmog_items` (`entry`) VALUES('133893'); +INSERT INTO `transmog_items` (`entry`) VALUES('133894'); +INSERT INTO `transmog_items` (`entry`) VALUES('133895'); +INSERT INTO `transmog_items` (`entry`) VALUES('133896'); +INSERT INTO `transmog_items` (`entry`) VALUES('133897'); +INSERT INTO `transmog_items` (`entry`) VALUES('133898'); +INSERT INTO `transmog_items` (`entry`) VALUES('133899'); +INSERT INTO `transmog_items` (`entry`) VALUES('133900'); +INSERT INTO `transmog_items` (`entry`) VALUES('133901'); +INSERT INTO `transmog_items` (`entry`) VALUES('133902'); +INSERT INTO `transmog_items` (`entry`) VALUES('133903'); +INSERT INTO `transmog_items` (`entry`) VALUES('133904'); +INSERT INTO `transmog_items` (`entry`) VALUES('133905'); +INSERT INTO `transmog_items` (`entry`) VALUES('133906'); +INSERT INTO `transmog_items` (`entry`) VALUES('133907'); +INSERT INTO `transmog_items` (`entry`) VALUES('133908'); +INSERT INTO `transmog_items` (`entry`) VALUES('133909'); +INSERT INTO `transmog_items` (`entry`) VALUES('133910'); +INSERT INTO `transmog_items` (`entry`) VALUES('133911'); +INSERT INTO `transmog_items` (`entry`) VALUES('133912'); +INSERT INTO `transmog_items` (`entry`) VALUES('133913'); +INSERT INTO `transmog_items` (`entry`) VALUES('133914'); +INSERT INTO `transmog_items` (`entry`) VALUES('133915'); +INSERT INTO `transmog_items` (`entry`) VALUES('133916'); +INSERT INTO `transmog_items` (`entry`) VALUES('133917'); +INSERT INTO `transmog_items` (`entry`) VALUES('133964'); +INSERT INTO `transmog_items` (`entry`) VALUES('133965'); +INSERT INTO `transmog_items` (`entry`) VALUES('133970'); +INSERT INTO `transmog_items` (`entry`) VALUES('133971'); +INSERT INTO `transmog_items` (`entry`) VALUES('133972'); +INSERT INTO `transmog_items` (`entry`) VALUES('133973'); +INSERT INTO `transmog_items` (`entry`) VALUES('133974'); +INSERT INTO `transmog_items` (`entry`) VALUES('134009'); +INSERT INTO `transmog_items` (`entry`) VALUES('134010'); +INSERT INTO `transmog_items` (`entry`) VALUES('134011'); +INSERT INTO `transmog_items` (`entry`) VALUES('134012'); +INSERT INTO `transmog_items` (`entry`) VALUES('134014'); +INSERT INTO `transmog_items` (`entry`) VALUES('134016'); +INSERT INTO `transmog_items` (`entry`) VALUES('134059'); +INSERT INTO `transmog_items` (`entry`) VALUES('134066'); +INSERT INTO `transmog_items` (`entry`) VALUES('134085'); +INSERT INTO `transmog_items` (`entry`) VALUES('134086'); +INSERT INTO `transmog_items` (`entry`) VALUES('134087'); +INSERT INTO `transmog_items` (`entry`) VALUES('134107'); +INSERT INTO `transmog_items` (`entry`) VALUES('134138'); +INSERT INTO `transmog_items` (`entry`) VALUES('134139'); +INSERT INTO `transmog_items` (`entry`) VALUES('134144'); +INSERT INTO `transmog_items` (`entry`) VALUES('134145'); +INSERT INTO `transmog_items` (`entry`) VALUES('134146'); +INSERT INTO `transmog_items` (`entry`) VALUES('134147'); +INSERT INTO `transmog_items` (`entry`) VALUES('134148'); +INSERT INTO `transmog_items` (`entry`) VALUES('134149'); +INSERT INTO `transmog_items` (`entry`) VALUES('134165'); +INSERT INTO `transmog_items` (`entry`) VALUES('134167'); +INSERT INTO `transmog_items` (`entry`) VALUES('134168'); +INSERT INTO `transmog_items` (`entry`) VALUES('134169'); +INSERT INTO `transmog_items` (`entry`) VALUES('134170'); +INSERT INTO `transmog_items` (`entry`) VALUES('134176'); +INSERT INTO `transmog_items` (`entry`) VALUES('134180'); +INSERT INTO `transmog_items` (`entry`) VALUES('134181'); +INSERT INTO `transmog_items` (`entry`) VALUES('134183'); +INSERT INTO `transmog_items` (`entry`) VALUES('134185'); +INSERT INTO `transmog_items` (`entry`) VALUES('134186'); +INSERT INTO `transmog_items` (`entry`) VALUES('134188'); +INSERT INTO `transmog_items` (`entry`) VALUES('134190'); +INSERT INTO `transmog_items` (`entry`) VALUES('134192'); +INSERT INTO `transmog_items` (`entry`) VALUES('134193'); +INSERT INTO `transmog_items` (`entry`) VALUES('134194'); +INSERT INTO `transmog_items` (`entry`) VALUES('134195'); +INSERT INTO `transmog_items` (`entry`) VALUES('134196'); +INSERT INTO `transmog_items` (`entry`) VALUES('134197'); +INSERT INTO `transmog_items` (`entry`) VALUES('134199'); +INSERT INTO `transmog_items` (`entry`) VALUES('134202'); +INSERT INTO `transmog_items` (`entry`) VALUES('134203'); +INSERT INTO `transmog_items` (`entry`) VALUES('134205'); +INSERT INTO `transmog_items` (`entry`) VALUES('134208'); +INSERT INTO `transmog_items` (`entry`) VALUES('134209'); +INSERT INTO `transmog_items` (`entry`) VALUES('134210'); +INSERT INTO `transmog_items` (`entry`) VALUES('134211'); +INSERT INTO `transmog_items` (`entry`) VALUES('134212'); +INSERT INTO `transmog_items` (`entry`) VALUES('134215'); +INSERT INTO `transmog_items` (`entry`) VALUES('134216'); +INSERT INTO `transmog_items` (`entry`) VALUES('134228'); +INSERT INTO `transmog_items` (`entry`) VALUES('134229'); +INSERT INTO `transmog_items` (`entry`) VALUES('134231'); +INSERT INTO `transmog_items` (`entry`) VALUES('134232'); +INSERT INTO `transmog_items` (`entry`) VALUES('134233'); +INSERT INTO `transmog_items` (`entry`) VALUES('134234'); +INSERT INTO `transmog_items` (`entry`) VALUES('134240'); +INSERT INTO `transmog_items` (`entry`) VALUES('134241'); +INSERT INTO `transmog_items` (`entry`) VALUES('134242'); +INSERT INTO `transmog_items` (`entry`) VALUES('134243'); +INSERT INTO `transmog_items` (`entry`) VALUES('134244'); +INSERT INTO `transmog_items` (`entry`) VALUES('134245'); +INSERT INTO `transmog_items` (`entry`) VALUES('134329'); +INSERT INTO `transmog_items` (`entry`) VALUES('134331'); +INSERT INTO `transmog_items` (`entry`) VALUES('134332'); +INSERT INTO `transmog_items` (`entry`) VALUES('134333'); +INSERT INTO `transmog_items` (`entry`) VALUES('134334'); +INSERT INTO `transmog_items` (`entry`) VALUES('134335'); +INSERT INTO `transmog_items` (`entry`) VALUES('134336'); +INSERT INTO `transmog_items` (`entry`) VALUES('134339'); +INSERT INTO `transmog_items` (`entry`) VALUES('134340'); +INSERT INTO `transmog_items` (`entry`) VALUES('134341'); +INSERT INTO `transmog_items` (`entry`) VALUES('134342'); +INSERT INTO `transmog_items` (`entry`) VALUES('134343'); +INSERT INTO `transmog_items` (`entry`) VALUES('134344'); +INSERT INTO `transmog_items` (`entry`) VALUES('134345'); +INSERT INTO `transmog_items` (`entry`) VALUES('134346'); +INSERT INTO `transmog_items` (`entry`) VALUES('134347'); +INSERT INTO `transmog_items` (`entry`) VALUES('134348'); +INSERT INTO `transmog_items` (`entry`) VALUES('134349'); +INSERT INTO `transmog_items` (`entry`) VALUES('134350'); +INSERT INTO `transmog_items` (`entry`) VALUES('134351'); +INSERT INTO `transmog_items` (`entry`) VALUES('134352'); +INSERT INTO `transmog_items` (`entry`) VALUES('134353'); +INSERT INTO `transmog_items` (`entry`) VALUES('134354'); +INSERT INTO `transmog_items` (`entry`) VALUES('134355'); +INSERT INTO `transmog_items` (`entry`) VALUES('134356'); +INSERT INTO `transmog_items` (`entry`) VALUES('134357'); +INSERT INTO `transmog_items` (`entry`) VALUES('134364'); +INSERT INTO `transmog_items` (`entry`) VALUES('134365'); +INSERT INTO `transmog_items` (`entry`) VALUES('134366'); +INSERT INTO `transmog_items` (`entry`) VALUES('134367'); +INSERT INTO `transmog_items` (`entry`) VALUES('134369'); +INSERT INTO `transmog_items` (`entry`) VALUES('134370'); +INSERT INTO `transmog_items` (`entry`) VALUES('134371'); +INSERT INTO `transmog_items` (`entry`) VALUES('134372'); +INSERT INTO `transmog_items` (`entry`) VALUES('134373'); +INSERT INTO `transmog_items` (`entry`) VALUES('134374'); +INSERT INTO `transmog_items` (`entry`) VALUES('134375'); +INSERT INTO `transmog_items` (`entry`) VALUES('134376'); +INSERT INTO `transmog_items` (`entry`) VALUES('134377'); +INSERT INTO `transmog_items` (`entry`) VALUES('134378'); +INSERT INTO `transmog_items` (`entry`) VALUES('134379'); +INSERT INTO `transmog_items` (`entry`) VALUES('134380'); +INSERT INTO `transmog_items` (`entry`) VALUES('134381'); +INSERT INTO `transmog_items` (`entry`) VALUES('134382'); +INSERT INTO `transmog_items` (`entry`) VALUES('134383'); +INSERT INTO `transmog_items` (`entry`) VALUES('134384'); +INSERT INTO `transmog_items` (`entry`) VALUES('134385'); +INSERT INTO `transmog_items` (`entry`) VALUES('134386'); +INSERT INTO `transmog_items` (`entry`) VALUES('134388'); +INSERT INTO `transmog_items` (`entry`) VALUES('134389'); +INSERT INTO `transmog_items` (`entry`) VALUES('134390'); +INSERT INTO `transmog_items` (`entry`) VALUES('134391'); +INSERT INTO `transmog_items` (`entry`) VALUES('134392'); +INSERT INTO `transmog_items` (`entry`) VALUES('134393'); +INSERT INTO `transmog_items` (`entry`) VALUES('134394'); +INSERT INTO `transmog_items` (`entry`) VALUES('134395'); +INSERT INTO `transmog_items` (`entry`) VALUES('134396'); +INSERT INTO `transmog_items` (`entry`) VALUES('134397'); +INSERT INTO `transmog_items` (`entry`) VALUES('134398'); +INSERT INTO `transmog_items` (`entry`) VALUES('134399'); +INSERT INTO `transmog_items` (`entry`) VALUES('134400'); +INSERT INTO `transmog_items` (`entry`) VALUES('134401'); +INSERT INTO `transmog_items` (`entry`) VALUES('134402'); +INSERT INTO `transmog_items` (`entry`) VALUES('134403'); +INSERT INTO `transmog_items` (`entry`) VALUES('134404'); +INSERT INTO `transmog_items` (`entry`) VALUES('134405'); +INSERT INTO `transmog_items` (`entry`) VALUES('134406'); +INSERT INTO `transmog_items` (`entry`) VALUES('134407'); +INSERT INTO `transmog_items` (`entry`) VALUES('134408'); +INSERT INTO `transmog_items` (`entry`) VALUES('134409'); +INSERT INTO `transmog_items` (`entry`) VALUES('134415'); +INSERT INTO `transmog_items` (`entry`) VALUES('134416'); +INSERT INTO `transmog_items` (`entry`) VALUES('134417'); +INSERT INTO `transmog_items` (`entry`) VALUES('134418'); +INSERT INTO `transmog_items` (`entry`) VALUES('134419'); +INSERT INTO `transmog_items` (`entry`) VALUES('134421'); +INSERT INTO `transmog_items` (`entry`) VALUES('134422'); +INSERT INTO `transmog_items` (`entry`) VALUES('134431'); +INSERT INTO `transmog_items` (`entry`) VALUES('134432'); +INSERT INTO `transmog_items` (`entry`) VALUES('134433'); +INSERT INTO `transmog_items` (`entry`) VALUES('134434'); +INSERT INTO `transmog_items` (`entry`) VALUES('134435'); +INSERT INTO `transmog_items` (`entry`) VALUES('134436'); +INSERT INTO `transmog_items` (`entry`) VALUES('134437'); +INSERT INTO `transmog_items` (`entry`) VALUES('134438'); +INSERT INTO `transmog_items` (`entry`) VALUES('134439'); +INSERT INTO `transmog_items` (`entry`) VALUES('134441'); +INSERT INTO `transmog_items` (`entry`) VALUES('134442'); +INSERT INTO `transmog_items` (`entry`) VALUES('134443'); +INSERT INTO `transmog_items` (`entry`) VALUES('134444'); +INSERT INTO `transmog_items` (`entry`) VALUES('134445'); +INSERT INTO `transmog_items` (`entry`) VALUES('134446'); +INSERT INTO `transmog_items` (`entry`) VALUES('134447'); +INSERT INTO `transmog_items` (`entry`) VALUES('134448'); +INSERT INTO `transmog_items` (`entry`) VALUES('134485'); +INSERT INTO `transmog_items` (`entry`) VALUES('134487'); +INSERT INTO `transmog_items` (`entry`) VALUES('134488'); +INSERT INTO `transmog_items` (`entry`) VALUES('134527'); +INSERT INTO `transmog_items` (`entry`) VALUES('134528'); +INSERT INTO `transmog_items` (`entry`) VALUES('134529'); +INSERT INTO `transmog_items` (`entry`) VALUES('134530'); +INSERT INTO `transmog_items` (`entry`) VALUES('134541'); +INSERT INTO `transmog_items` (`entry`) VALUES('134542'); +INSERT INTO `transmog_items` (`entry`) VALUES('134543'); +INSERT INTO `transmog_items` (`entry`) VALUES('134545'); +INSERT INTO `transmog_items` (`entry`) VALUES('134546'); +INSERT INTO `transmog_items` (`entry`) VALUES('134547'); +INSERT INTO `transmog_items` (`entry`) VALUES('134549'); +INSERT INTO `transmog_items` (`entry`) VALUES('134554'); +INSERT INTO `transmog_items` (`entry`) VALUES('134555'); +INSERT INTO `transmog_items` (`entry`) VALUES('134556'); +INSERT INTO `transmog_items` (`entry`) VALUES('134557'); +INSERT INTO `transmog_items` (`entry`) VALUES('134558'); +INSERT INTO `transmog_items` (`entry`) VALUES('134559'); +INSERT INTO `transmog_items` (`entry`) VALUES('134560'); +INSERT INTO `transmog_items` (`entry`) VALUES('134561'); +INSERT INTO `transmog_items` (`entry`) VALUES('134562'); +INSERT INTO `transmog_items` (`entry`) VALUES('134563'); +INSERT INTO `transmog_items` (`entry`) VALUES('134564'); +INSERT INTO `transmog_items` (`entry`) VALUES('134565'); +INSERT INTO `transmog_items` (`entry`) VALUES('134566'); +INSERT INTO `transmog_items` (`entry`) VALUES('134567'); +INSERT INTO `transmog_items` (`entry`) VALUES('134568'); +INSERT INTO `transmog_items` (`entry`) VALUES('134569'); +INSERT INTO `transmog_items` (`entry`) VALUES('134570'); +INSERT INTO `transmog_items` (`entry`) VALUES('134571'); +INSERT INTO `transmog_items` (`entry`) VALUES('134572'); +INSERT INTO `transmog_items` (`entry`) VALUES('134573'); +INSERT INTO `transmog_items` (`entry`) VALUES('134574'); +INSERT INTO `transmog_items` (`entry`) VALUES('134575'); +INSERT INTO `transmog_items` (`entry`) VALUES('134601'); +INSERT INTO `transmog_items` (`entry`) VALUES('134602'); +INSERT INTO `transmog_items` (`entry`) VALUES('134603'); +INSERT INTO `transmog_items` (`entry`) VALUES('134604'); +INSERT INTO `transmog_items` (`entry`) VALUES('134605'); +INSERT INTO `transmog_items` (`entry`) VALUES('134606'); +INSERT INTO `transmog_items` (`entry`) VALUES('134607'); +INSERT INTO `transmog_items` (`entry`) VALUES('134610'); +INSERT INTO `transmog_items` (`entry`) VALUES('134611'); +INSERT INTO `transmog_items` (`entry`) VALUES('134612'); +INSERT INTO `transmog_items` (`entry`) VALUES('134613'); +INSERT INTO `transmog_items` (`entry`) VALUES('134614'); +INSERT INTO `transmog_items` (`entry`) VALUES('134615'); +INSERT INTO `transmog_items` (`entry`) VALUES('134622'); +INSERT INTO `transmog_items` (`entry`) VALUES('134648'); +INSERT INTO `transmog_items` (`entry`) VALUES('134649'); +INSERT INTO `transmog_items` (`entry`) VALUES('134650'); +INSERT INTO `transmog_items` (`entry`) VALUES('134651'); +INSERT INTO `transmog_items` (`entry`) VALUES('134652'); +INSERT INTO `transmog_items` (`entry`) VALUES('134653'); +INSERT INTO `transmog_items` (`entry`) VALUES('134655'); +INSERT INTO `transmog_items` (`entry`) VALUES('134656'); +INSERT INTO `transmog_items` (`entry`) VALUES('134659'); +INSERT INTO `transmog_items` (`entry`) VALUES('134665'); +INSERT INTO `transmog_items` (`entry`) VALUES('134670'); +INSERT INTO `transmog_items` (`entry`) VALUES('134671'); +INSERT INTO `transmog_items` (`entry`) VALUES('134673'); +INSERT INTO `transmog_items` (`entry`) VALUES('134674'); +INSERT INTO `transmog_items` (`entry`) VALUES('134675'); +INSERT INTO `transmog_items` (`entry`) VALUES('134676'); +INSERT INTO `transmog_items` (`entry`) VALUES('134697'); +INSERT INTO `transmog_items` (`entry`) VALUES('134698'); +INSERT INTO `transmog_items` (`entry`) VALUES('134700'); +INSERT INTO `transmog_items` (`entry`) VALUES('134701'); +INSERT INTO `transmog_items` (`entry`) VALUES('134702'); +INSERT INTO `transmog_items` (`entry`) VALUES('134705'); +INSERT INTO `transmog_items` (`entry`) VALUES('134707'); +INSERT INTO `transmog_items` (`entry`) VALUES('134708'); +INSERT INTO `transmog_items` (`entry`) VALUES('134716'); +INSERT INTO `transmog_items` (`entry`) VALUES('134783'); +INSERT INTO `transmog_items` (`entry`) VALUES('134788'); +INSERT INTO `transmog_items` (`entry`) VALUES('134789'); +INSERT INTO `transmog_items` (`entry`) VALUES('134790'); +INSERT INTO `transmog_items` (`entry`) VALUES('134791'); +INSERT INTO `transmog_items` (`entry`) VALUES('134792'); +INSERT INTO `transmog_items` (`entry`) VALUES('134793'); +INSERT INTO `transmog_items` (`entry`) VALUES('134794'); +INSERT INTO `transmog_items` (`entry`) VALUES('134795'); +INSERT INTO `transmog_items` (`entry`) VALUES('134796'); +INSERT INTO `transmog_items` (`entry`) VALUES('134799'); +INSERT INTO `transmog_items` (`entry`) VALUES('134807'); +INSERT INTO `transmog_items` (`entry`) VALUES('134808'); +INSERT INTO `transmog_items` (`entry`) VALUES('134809'); +INSERT INTO `transmog_items` (`entry`) VALUES('134810'); +INSERT INTO `transmog_items` (`entry`) VALUES('134847'); +INSERT INTO `transmog_items` (`entry`) VALUES('134859'); +INSERT INTO `transmog_items` (`entry`) VALUES('134891'); +INSERT INTO `transmog_items` (`entry`) VALUES('134892'); +INSERT INTO `transmog_items` (`entry`) VALUES('134893'); +INSERT INTO `transmog_items` (`entry`) VALUES('134894'); +INSERT INTO `transmog_items` (`entry`) VALUES('134895'); +INSERT INTO `transmog_items` (`entry`) VALUES('134896'); +INSERT INTO `transmog_items` (`entry`) VALUES('134900'); +INSERT INTO `transmog_items` (`entry`) VALUES('134901'); +INSERT INTO `transmog_items` (`entry`) VALUES('134902'); +INSERT INTO `transmog_items` (`entry`) VALUES('134903'); +INSERT INTO `transmog_items` (`entry`) VALUES('134904'); +INSERT INTO `transmog_items` (`entry`) VALUES('134905'); +INSERT INTO `transmog_items` (`entry`) VALUES('134906'); +INSERT INTO `transmog_items` (`entry`) VALUES('134910'); +INSERT INTO `transmog_items` (`entry`) VALUES('134911'); +INSERT INTO `transmog_items` (`entry`) VALUES('134912'); +INSERT INTO `transmog_items` (`entry`) VALUES('134914'); +INSERT INTO `transmog_items` (`entry`) VALUES('134916'); +INSERT INTO `transmog_items` (`entry`) VALUES('134917'); +INSERT INTO `transmog_items` (`entry`) VALUES('134918'); +INSERT INTO `transmog_items` (`entry`) VALUES('134919'); +INSERT INTO `transmog_items` (`entry`) VALUES('134921'); +INSERT INTO `transmog_items` (`entry`) VALUES('134922'); +INSERT INTO `transmog_items` (`entry`) VALUES('134923'); +INSERT INTO `transmog_items` (`entry`) VALUES('134924'); +INSERT INTO `transmog_items` (`entry`) VALUES('134925'); +INSERT INTO `transmog_items` (`entry`) VALUES('134926'); +INSERT INTO `transmog_items` (`entry`) VALUES('134927'); +INSERT INTO `transmog_items` (`entry`) VALUES('134928'); +INSERT INTO `transmog_items` (`entry`) VALUES('134929'); +INSERT INTO `transmog_items` (`entry`) VALUES('134930'); +INSERT INTO `transmog_items` (`entry`) VALUES('134931'); +INSERT INTO `transmog_items` (`entry`) VALUES('134932'); +INSERT INTO `transmog_items` (`entry`) VALUES('134933'); +INSERT INTO `transmog_items` (`entry`) VALUES('134934'); +INSERT INTO `transmog_items` (`entry`) VALUES('134935'); +INSERT INTO `transmog_items` (`entry`) VALUES('134936'); +INSERT INTO `transmog_items` (`entry`) VALUES('134937'); +INSERT INTO `transmog_items` (`entry`) VALUES('134938'); +INSERT INTO `transmog_items` (`entry`) VALUES('134939'); +INSERT INTO `transmog_items` (`entry`) VALUES('134940'); +INSERT INTO `transmog_items` (`entry`) VALUES('134941'); +INSERT INTO `transmog_items` (`entry`) VALUES('134942'); +INSERT INTO `transmog_items` (`entry`) VALUES('134943'); +INSERT INTO `transmog_items` (`entry`) VALUES('134944'); +INSERT INTO `transmog_items` (`entry`) VALUES('134945'); +INSERT INTO `transmog_items` (`entry`) VALUES('134946'); +INSERT INTO `transmog_items` (`entry`) VALUES('134947'); +INSERT INTO `transmog_items` (`entry`) VALUES('134949'); +INSERT INTO `transmog_items` (`entry`) VALUES('134950'); +INSERT INTO `transmog_items` (`entry`) VALUES('134951'); +INSERT INTO `transmog_items` (`entry`) VALUES('134952'); +INSERT INTO `transmog_items` (`entry`) VALUES('134985'); +INSERT INTO `transmog_items` (`entry`) VALUES('134986'); +INSERT INTO `transmog_items` (`entry`) VALUES('134988'); +INSERT INTO `transmog_items` (`entry`) VALUES('134990'); +INSERT INTO `transmog_items` (`entry`) VALUES('134991'); +INSERT INTO `transmog_items` (`entry`) VALUES('134992'); +INSERT INTO `transmog_items` (`entry`) VALUES('134993'); +INSERT INTO `transmog_items` (`entry`) VALUES('134994'); +INSERT INTO `transmog_items` (`entry`) VALUES('134997'); +INSERT INTO `transmog_items` (`entry`) VALUES('134998'); +INSERT INTO `transmog_items` (`entry`) VALUES('134999'); +INSERT INTO `transmog_items` (`entry`) VALUES('135000'); +INSERT INTO `transmog_items` (`entry`) VALUES('135001'); +INSERT INTO `transmog_items` (`entry`) VALUES('135002'); +INSERT INTO `transmog_items` (`entry`) VALUES('135003'); +INSERT INTO `transmog_items` (`entry`) VALUES('135004'); +INSERT INTO `transmog_items` (`entry`) VALUES('135005'); +INSERT INTO `transmog_items` (`entry`) VALUES('135006'); +INSERT INTO `transmog_items` (`entry`) VALUES('135007'); +INSERT INTO `transmog_items` (`entry`) VALUES('135009'); +INSERT INTO `transmog_items` (`entry`) VALUES('135010'); +INSERT INTO `transmog_items` (`entry`) VALUES('135011'); +INSERT INTO `transmog_items` (`entry`) VALUES('135012'); +INSERT INTO `transmog_items` (`entry`) VALUES('135013'); +INSERT INTO `transmog_items` (`entry`) VALUES('135014'); +INSERT INTO `transmog_items` (`entry`) VALUES('135018'); +INSERT INTO `transmog_items` (`entry`) VALUES('135022'); +INSERT INTO `transmog_items` (`entry`) VALUES('135023'); +INSERT INTO `transmog_items` (`entry`) VALUES('135024'); +INSERT INTO `transmog_items` (`entry`) VALUES('135025'); +INSERT INTO `transmog_items` (`entry`) VALUES('135026'); +INSERT INTO `transmog_items` (`entry`) VALUES('135027'); +INSERT INTO `transmog_items` (`entry`) VALUES('135028'); +INSERT INTO `transmog_items` (`entry`) VALUES('135029'); +INSERT INTO `transmog_items` (`entry`) VALUES('135030'); +INSERT INTO `transmog_items` (`entry`) VALUES('135031'); +INSERT INTO `transmog_items` (`entry`) VALUES('135032'); +INSERT INTO `transmog_items` (`entry`) VALUES('135033'); +INSERT INTO `transmog_items` (`entry`) VALUES('135034'); +INSERT INTO `transmog_items` (`entry`) VALUES('135035'); +INSERT INTO `transmog_items` (`entry`) VALUES('135036'); +INSERT INTO `transmog_items` (`entry`) VALUES('135037'); +INSERT INTO `transmog_items` (`entry`) VALUES('135038'); +INSERT INTO `transmog_items` (`entry`) VALUES('135042'); +INSERT INTO `transmog_items` (`entry`) VALUES('135043'); +INSERT INTO `transmog_items` (`entry`) VALUES('135044'); +INSERT INTO `transmog_items` (`entry`) VALUES('135045'); +INSERT INTO `transmog_items` (`entry`) VALUES('135046'); +INSERT INTO `transmog_items` (`entry`) VALUES('135047'); +INSERT INTO `transmog_items` (`entry`) VALUES('135048'); +INSERT INTO `transmog_items` (`entry`) VALUES('135049'); +INSERT INTO `transmog_items` (`entry`) VALUES('135050'); +INSERT INTO `transmog_items` (`entry`) VALUES('135051'); +INSERT INTO `transmog_items` (`entry`) VALUES('135052'); +INSERT INTO `transmog_items` (`entry`) VALUES('135053'); +INSERT INTO `transmog_items` (`entry`) VALUES('135054'); +INSERT INTO `transmog_items` (`entry`) VALUES('135055'); +INSERT INTO `transmog_items` (`entry`) VALUES('135056'); +INSERT INTO `transmog_items` (`entry`) VALUES('135057'); +INSERT INTO `transmog_items` (`entry`) VALUES('135058'); +INSERT INTO `transmog_items` (`entry`) VALUES('135059'); +INSERT INTO `transmog_items` (`entry`) VALUES('135060'); +INSERT INTO `transmog_items` (`entry`) VALUES('135061'); +INSERT INTO `transmog_items` (`entry`) VALUES('135062'); +INSERT INTO `transmog_items` (`entry`) VALUES('135063'); +INSERT INTO `transmog_items` (`entry`) VALUES('135064'); +INSERT INTO `transmog_items` (`entry`) VALUES('135065'); +INSERT INTO `transmog_items` (`entry`) VALUES('135066'); +INSERT INTO `transmog_items` (`entry`) VALUES('135067'); +INSERT INTO `transmog_items` (`entry`) VALUES('135068'); +INSERT INTO `transmog_items` (`entry`) VALUES('135069'); +INSERT INTO `transmog_items` (`entry`) VALUES('135070'); +INSERT INTO `transmog_items` (`entry`) VALUES('135071'); +INSERT INTO `transmog_items` (`entry`) VALUES('135073'); +INSERT INTO `transmog_items` (`entry`) VALUES('135075'); +INSERT INTO `transmog_items` (`entry`) VALUES('135076'); +INSERT INTO `transmog_items` (`entry`) VALUES('135077'); +INSERT INTO `transmog_items` (`entry`) VALUES('135078'); +INSERT INTO `transmog_items` (`entry`) VALUES('135079'); +INSERT INTO `transmog_items` (`entry`) VALUES('135080'); +INSERT INTO `transmog_items` (`entry`) VALUES('135081'); +INSERT INTO `transmog_items` (`entry`) VALUES('135082'); +INSERT INTO `transmog_items` (`entry`) VALUES('135083'); +INSERT INTO `transmog_items` (`entry`) VALUES('135084'); +INSERT INTO `transmog_items` (`entry`) VALUES('135085'); +INSERT INTO `transmog_items` (`entry`) VALUES('135086'); +INSERT INTO `transmog_items` (`entry`) VALUES('135087'); +INSERT INTO `transmog_items` (`entry`) VALUES('135088'); +INSERT INTO `transmog_items` (`entry`) VALUES('135089'); +INSERT INTO `transmog_items` (`entry`) VALUES('135090'); +INSERT INTO `transmog_items` (`entry`) VALUES('135091'); +INSERT INTO `transmog_items` (`entry`) VALUES('135092'); +INSERT INTO `transmog_items` (`entry`) VALUES('135093'); +INSERT INTO `transmog_items` (`entry`) VALUES('135094'); +INSERT INTO `transmog_items` (`entry`) VALUES('135095'); +INSERT INTO `transmog_items` (`entry`) VALUES('135096'); +INSERT INTO `transmog_items` (`entry`) VALUES('135097'); +INSERT INTO `transmog_items` (`entry`) VALUES('135098'); +INSERT INTO `transmog_items` (`entry`) VALUES('135099'); +INSERT INTO `transmog_items` (`entry`) VALUES('135100'); +INSERT INTO `transmog_items` (`entry`) VALUES('135102'); +INSERT INTO `transmog_items` (`entry`) VALUES('135107'); +INSERT INTO `transmog_items` (`entry`) VALUES('135108'); +INSERT INTO `transmog_items` (`entry`) VALUES('135111'); +INSERT INTO `transmog_items` (`entry`) VALUES('135112'); +INSERT INTO `transmog_items` (`entry`) VALUES('135113'); +INSERT INTO `transmog_items` (`entry`) VALUES('135114'); +INSERT INTO `transmog_items` (`entry`) VALUES('135115'); +INSERT INTO `transmog_items` (`entry`) VALUES('135136'); +INSERT INTO `transmog_items` (`entry`) VALUES('135137'); +INSERT INTO `transmog_items` (`entry`) VALUES('135138'); +INSERT INTO `transmog_items` (`entry`) VALUES('135139'); +INSERT INTO `transmog_items` (`entry`) VALUES('135140'); +INSERT INTO `transmog_items` (`entry`) VALUES('135141'); +INSERT INTO `transmog_items` (`entry`) VALUES('135142'); +INSERT INTO `transmog_items` (`entry`) VALUES('135143'); +INSERT INTO `transmog_items` (`entry`) VALUES('135144'); +INSERT INTO `transmog_items` (`entry`) VALUES('135145'); +INSERT INTO `transmog_items` (`entry`) VALUES('135146'); +INSERT INTO `transmog_items` (`entry`) VALUES('135147'); +INSERT INTO `transmog_items` (`entry`) VALUES('135148'); +INSERT INTO `transmog_items` (`entry`) VALUES('135149'); +INSERT INTO `transmog_items` (`entry`) VALUES('135150'); +INSERT INTO `transmog_items` (`entry`) VALUES('135151'); +INSERT INTO `transmog_items` (`entry`) VALUES('135152'); +INSERT INTO `transmog_items` (`entry`) VALUES('135153'); +INSERT INTO `transmog_items` (`entry`) VALUES('135154'); +INSERT INTO `transmog_items` (`entry`) VALUES('135155'); +INSERT INTO `transmog_items` (`entry`) VALUES('135156'); +INSERT INTO `transmog_items` (`entry`) VALUES('135157'); +INSERT INTO `transmog_items` (`entry`) VALUES('135158'); +INSERT INTO `transmog_items` (`entry`) VALUES('135159'); +INSERT INTO `transmog_items` (`entry`) VALUES('135160'); +INSERT INTO `transmog_items` (`entry`) VALUES('135161'); +INSERT INTO `transmog_items` (`entry`) VALUES('135162'); +INSERT INTO `transmog_items` (`entry`) VALUES('135163'); +INSERT INTO `transmog_items` (`entry`) VALUES('135164'); +INSERT INTO `transmog_items` (`entry`) VALUES('135165'); +INSERT INTO `transmog_items` (`entry`) VALUES('135166'); +INSERT INTO `transmog_items` (`entry`) VALUES('135167'); +INSERT INTO `transmog_items` (`entry`) VALUES('135168'); +INSERT INTO `transmog_items` (`entry`) VALUES('135169'); +INSERT INTO `transmog_items` (`entry`) VALUES('135170'); +INSERT INTO `transmog_items` (`entry`) VALUES('135171'); +INSERT INTO `transmog_items` (`entry`) VALUES('135172'); +INSERT INTO `transmog_items` (`entry`) VALUES('135173'); +INSERT INTO `transmog_items` (`entry`) VALUES('135174'); +INSERT INTO `transmog_items` (`entry`) VALUES('135175'); +INSERT INTO `transmog_items` (`entry`) VALUES('135176'); +INSERT INTO `transmog_items` (`entry`) VALUES('135177'); +INSERT INTO `transmog_items` (`entry`) VALUES('135178'); +INSERT INTO `transmog_items` (`entry`) VALUES('135179'); +INSERT INTO `transmog_items` (`entry`) VALUES('135180'); +INSERT INTO `transmog_items` (`entry`) VALUES('135181'); +INSERT INTO `transmog_items` (`entry`) VALUES('135182'); +INSERT INTO `transmog_items` (`entry`) VALUES('135183'); +INSERT INTO `transmog_items` (`entry`) VALUES('135184'); +INSERT INTO `transmog_items` (`entry`) VALUES('135185'); +INSERT INTO `transmog_items` (`entry`) VALUES('135321'); +INSERT INTO `transmog_items` (`entry`) VALUES('135324'); +INSERT INTO `transmog_items` (`entry`) VALUES('135328'); +INSERT INTO `transmog_items` (`entry`) VALUES('135329'); +INSERT INTO `transmog_items` (`entry`) VALUES('135330'); +INSERT INTO `transmog_items` (`entry`) VALUES('135331'); +INSERT INTO `transmog_items` (`entry`) VALUES('135332'); +INSERT INTO `transmog_items` (`entry`) VALUES('135333'); +INSERT INTO `transmog_items` (`entry`) VALUES('135334'); +INSERT INTO `transmog_items` (`entry`) VALUES('135335'); +INSERT INTO `transmog_items` (`entry`) VALUES('135336'); +INSERT INTO `transmog_items` (`entry`) VALUES('135337'); +INSERT INTO `transmog_items` (`entry`) VALUES('135338'); +INSERT INTO `transmog_items` (`entry`) VALUES('135339'); +INSERT INTO `transmog_items` (`entry`) VALUES('135340'); +INSERT INTO `transmog_items` (`entry`) VALUES('135341'); +INSERT INTO `transmog_items` (`entry`) VALUES('135342'); +INSERT INTO `transmog_items` (`entry`) VALUES('135343'); +INSERT INTO `transmog_items` (`entry`) VALUES('135344'); +INSERT INTO `transmog_items` (`entry`) VALUES('135345'); +INSERT INTO `transmog_items` (`entry`) VALUES('135346'); +INSERT INTO `transmog_items` (`entry`) VALUES('135347'); +INSERT INTO `transmog_items` (`entry`) VALUES('135356'); +INSERT INTO `transmog_items` (`entry`) VALUES('135357'); +INSERT INTO `transmog_items` (`entry`) VALUES('135358'); +INSERT INTO `transmog_items` (`entry`) VALUES('135359'); +INSERT INTO `transmog_items` (`entry`) VALUES('135360'); +INSERT INTO `transmog_items` (`entry`) VALUES('135361'); +INSERT INTO `transmog_items` (`entry`) VALUES('135362'); +INSERT INTO `transmog_items` (`entry`) VALUES('135363'); +INSERT INTO `transmog_items` (`entry`) VALUES('135364'); +INSERT INTO `transmog_items` (`entry`) VALUES('135365'); +INSERT INTO `transmog_items` (`entry`) VALUES('135366'); +INSERT INTO `transmog_items` (`entry`) VALUES('135367'); +INSERT INTO `transmog_items` (`entry`) VALUES('135368'); +INSERT INTO `transmog_items` (`entry`) VALUES('135369'); +INSERT INTO `transmog_items` (`entry`) VALUES('135370'); +INSERT INTO `transmog_items` (`entry`) VALUES('135371'); +INSERT INTO `transmog_items` (`entry`) VALUES('135372'); +INSERT INTO `transmog_items` (`entry`) VALUES('135373'); +INSERT INTO `transmog_items` (`entry`) VALUES('135374'); +INSERT INTO `transmog_items` (`entry`) VALUES('135375'); +INSERT INTO `transmog_items` (`entry`) VALUES('135376'); +INSERT INTO `transmog_items` (`entry`) VALUES('135377'); +INSERT INTO `transmog_items` (`entry`) VALUES('135378'); +INSERT INTO `transmog_items` (`entry`) VALUES('135379'); +INSERT INTO `transmog_items` (`entry`) VALUES('135380'); +INSERT INTO `transmog_items` (`entry`) VALUES('135381'); +INSERT INTO `transmog_items` (`entry`) VALUES('135382'); +INSERT INTO `transmog_items` (`entry`) VALUES('135383'); +INSERT INTO `transmog_items` (`entry`) VALUES('135384'); +INSERT INTO `transmog_items` (`entry`) VALUES('135385'); +INSERT INTO `transmog_items` (`entry`) VALUES('135386'); +INSERT INTO `transmog_items` (`entry`) VALUES('135387'); +INSERT INTO `transmog_items` (`entry`) VALUES('135388'); +INSERT INTO `transmog_items` (`entry`) VALUES('135389'); +INSERT INTO `transmog_items` (`entry`) VALUES('135390'); +INSERT INTO `transmog_items` (`entry`) VALUES('135391'); +INSERT INTO `transmog_items` (`entry`) VALUES('135392'); +INSERT INTO `transmog_items` (`entry`) VALUES('135393'); +INSERT INTO `transmog_items` (`entry`) VALUES('135394'); +INSERT INTO `transmog_items` (`entry`) VALUES('135395'); +INSERT INTO `transmog_items` (`entry`) VALUES('135402'); +INSERT INTO `transmog_items` (`entry`) VALUES('135403'); +INSERT INTO `transmog_items` (`entry`) VALUES('135404'); +INSERT INTO `transmog_items` (`entry`) VALUES('135405'); +INSERT INTO `transmog_items` (`entry`) VALUES('135406'); +INSERT INTO `transmog_items` (`entry`) VALUES('135407'); +INSERT INTO `transmog_items` (`entry`) VALUES('135408'); +INSERT INTO `transmog_items` (`entry`) VALUES('135409'); +INSERT INTO `transmog_items` (`entry`) VALUES('135410'); +INSERT INTO `transmog_items` (`entry`) VALUES('135411'); +INSERT INTO `transmog_items` (`entry`) VALUES('135412'); +INSERT INTO `transmog_items` (`entry`) VALUES('135413'); +INSERT INTO `transmog_items` (`entry`) VALUES('135414'); +INSERT INTO `transmog_items` (`entry`) VALUES('135415'); +INSERT INTO `transmog_items` (`entry`) VALUES('135416'); +INSERT INTO `transmog_items` (`entry`) VALUES('135464'); +INSERT INTO `transmog_items` (`entry`) VALUES('135465'); +INSERT INTO `transmog_items` (`entry`) VALUES('135466'); +INSERT INTO `transmog_items` (`entry`) VALUES('135467'); +INSERT INTO `transmog_items` (`entry`) VALUES('135468'); +INSERT INTO `transmog_items` (`entry`) VALUES('135469'); +INSERT INTO `transmog_items` (`entry`) VALUES('135470'); +INSERT INTO `transmog_items` (`entry`) VALUES('135471'); +INSERT INTO `transmog_items` (`entry`) VALUES('135472'); +INSERT INTO `transmog_items` (`entry`) VALUES('135473'); +INSERT INTO `transmog_items` (`entry`) VALUES('135474'); +INSERT INTO `transmog_items` (`entry`) VALUES('135475'); +INSERT INTO `transmog_items` (`entry`) VALUES('135476'); +INSERT INTO `transmog_items` (`entry`) VALUES('135477'); +INSERT INTO `transmog_items` (`entry`) VALUES('135478'); +INSERT INTO `transmog_items` (`entry`) VALUES('135494'); +INSERT INTO `transmog_items` (`entry`) VALUES('135495'); +INSERT INTO `transmog_items` (`entry`) VALUES('135496'); +INSERT INTO `transmog_items` (`entry`) VALUES('135497'); +INSERT INTO `transmog_items` (`entry`) VALUES('135570'); +INSERT INTO `transmog_items` (`entry`) VALUES('135571'); +INSERT INTO `transmog_items` (`entry`) VALUES('135572'); +INSERT INTO `transmog_items` (`entry`) VALUES('135573'); +INSERT INTO `transmog_items` (`entry`) VALUES('135574'); +INSERT INTO `transmog_items` (`entry`) VALUES('135575'); +INSERT INTO `transmog_items` (`entry`) VALUES('135576'); +INSERT INTO `transmog_items` (`entry`) VALUES('135577'); +INSERT INTO `transmog_items` (`entry`) VALUES('135578'); +INSERT INTO `transmog_items` (`entry`) VALUES('135579'); +INSERT INTO `transmog_items` (`entry`) VALUES('135580'); +INSERT INTO `transmog_items` (`entry`) VALUES('135581'); +INSERT INTO `transmog_items` (`entry`) VALUES('135584'); +INSERT INTO `transmog_items` (`entry`) VALUES('135585'); +INSERT INTO `transmog_items` (`entry`) VALUES('135587'); +INSERT INTO `transmog_items` (`entry`) VALUES('135588'); +INSERT INTO `transmog_items` (`entry`) VALUES('135590'); +INSERT INTO `transmog_items` (`entry`) VALUES('135591'); +INSERT INTO `transmog_items` (`entry`) VALUES('135592'); +INSERT INTO `transmog_items` (`entry`) VALUES('135593'); +INSERT INTO `transmog_items` (`entry`) VALUES('135594'); +INSERT INTO `transmog_items` (`entry`) VALUES('135595'); +INSERT INTO `transmog_items` (`entry`) VALUES('135596'); +INSERT INTO `transmog_items` (`entry`) VALUES('135599'); +INSERT INTO `transmog_items` (`entry`) VALUES('135600'); +INSERT INTO `transmog_items` (`entry`) VALUES('135601'); +INSERT INTO `transmog_items` (`entry`) VALUES('135602'); +INSERT INTO `transmog_items` (`entry`) VALUES('135603'); +INSERT INTO `transmog_items` (`entry`) VALUES('135604'); +INSERT INTO `transmog_items` (`entry`) VALUES('135605'); +INSERT INTO `transmog_items` (`entry`) VALUES('135606'); +INSERT INTO `transmog_items` (`entry`) VALUES('135607'); +INSERT INTO `transmog_items` (`entry`) VALUES('135608'); +INSERT INTO `transmog_items` (`entry`) VALUES('135611'); +INSERT INTO `transmog_items` (`entry`) VALUES('135612'); +INSERT INTO `transmog_items` (`entry`) VALUES('135613'); +INSERT INTO `transmog_items` (`entry`) VALUES('135614'); +INSERT INTO `transmog_items` (`entry`) VALUES('135615'); +INSERT INTO `transmog_items` (`entry`) VALUES('135616'); +INSERT INTO `transmog_items` (`entry`) VALUES('135617'); +INSERT INTO `transmog_items` (`entry`) VALUES('135619'); +INSERT INTO `transmog_items` (`entry`) VALUES('135620'); +INSERT INTO `transmog_items` (`entry`) VALUES('135630'); +INSERT INTO `transmog_items` (`entry`) VALUES('135632'); +INSERT INTO `transmog_items` (`entry`) VALUES('135634'); +INSERT INTO `transmog_items` (`entry`) VALUES('135635'); +INSERT INTO `transmog_items` (`entry`) VALUES('135636'); +INSERT INTO `transmog_items` (`entry`) VALUES('135637'); +INSERT INTO `transmog_items` (`entry`) VALUES('135638'); +INSERT INTO `transmog_items` (`entry`) VALUES('135639'); +INSERT INTO `transmog_items` (`entry`) VALUES('135640'); +INSERT INTO `transmog_items` (`entry`) VALUES('135641'); +INSERT INTO `transmog_items` (`entry`) VALUES('135642'); +INSERT INTO `transmog_items` (`entry`) VALUES('135643'); +INSERT INTO `transmog_items` (`entry`) VALUES('135644'); +INSERT INTO `transmog_items` (`entry`) VALUES('135645'); +INSERT INTO `transmog_items` (`entry`) VALUES('135646'); +INSERT INTO `transmog_items` (`entry`) VALUES('135647'); +INSERT INTO `transmog_items` (`entry`) VALUES('135650'); +INSERT INTO `transmog_items` (`entry`) VALUES('135651'); +INSERT INTO `transmog_items` (`entry`) VALUES('135652'); +INSERT INTO `transmog_items` (`entry`) VALUES('135653'); +INSERT INTO `transmog_items` (`entry`) VALUES('135654'); +INSERT INTO `transmog_items` (`entry`) VALUES('135655'); +INSERT INTO `transmog_items` (`entry`) VALUES('135656'); +INSERT INTO `transmog_items` (`entry`) VALUES('135657'); +INSERT INTO `transmog_items` (`entry`) VALUES('135659'); +INSERT INTO `transmog_items` (`entry`) VALUES('135660'); +INSERT INTO `transmog_items` (`entry`) VALUES('135662'); +INSERT INTO `transmog_items` (`entry`) VALUES('135663'); +INSERT INTO `transmog_items` (`entry`) VALUES('135664'); +INSERT INTO `transmog_items` (`entry`) VALUES('135665'); +INSERT INTO `transmog_items` (`entry`) VALUES('135670'); +INSERT INTO `transmog_items` (`entry`) VALUES('135672'); +INSERT INTO `transmog_items` (`entry`) VALUES('135673'); +INSERT INTO `transmog_items` (`entry`) VALUES('135675'); +INSERT INTO `transmog_items` (`entry`) VALUES('135676'); +INSERT INTO `transmog_items` (`entry`) VALUES('135677'); +INSERT INTO `transmog_items` (`entry`) VALUES('135678'); +INSERT INTO `transmog_items` (`entry`) VALUES('135679'); +INSERT INTO `transmog_items` (`entry`) VALUES('135681'); +INSERT INTO `transmog_items` (`entry`) VALUES('135682'); +INSERT INTO `transmog_items` (`entry`) VALUES('135809'); +INSERT INTO `transmog_items` (`entry`) VALUES('135810'); +INSERT INTO `transmog_items` (`entry`) VALUES('135811'); +INSERT INTO `transmog_items` (`entry`) VALUES('135814'); +INSERT INTO `transmog_items` (`entry`) VALUES('135815'); +INSERT INTO `transmog_items` (`entry`) VALUES('135816'); +INSERT INTO `transmog_items` (`entry`) VALUES('135817'); +INSERT INTO `transmog_items` (`entry`) VALUES('135818'); +INSERT INTO `transmog_items` (`entry`) VALUES('135820'); +INSERT INTO `transmog_items` (`entry`) VALUES('135821'); +INSERT INTO `transmog_items` (`entry`) VALUES('135822'); +INSERT INTO `transmog_items` (`entry`) VALUES('135823'); +INSERT INTO `transmog_items` (`entry`) VALUES('135826'); +INSERT INTO `transmog_items` (`entry`) VALUES('135827'); +INSERT INTO `transmog_items` (`entry`) VALUES('135829'); +INSERT INTO `transmog_items` (`entry`) VALUES('135830'); +INSERT INTO `transmog_items` (`entry`) VALUES('135832'); +INSERT INTO `transmog_items` (`entry`) VALUES('135833'); +INSERT INTO `transmog_items` (`entry`) VALUES('135834'); +INSERT INTO `transmog_items` (`entry`) VALUES('135835'); +INSERT INTO `transmog_items` (`entry`) VALUES('135841'); +INSERT INTO `transmog_items` (`entry`) VALUES('135842'); +INSERT INTO `transmog_items` (`entry`) VALUES('135843'); +INSERT INTO `transmog_items` (`entry`) VALUES('135844'); +INSERT INTO `transmog_items` (`entry`) VALUES('135845'); +INSERT INTO `transmog_items` (`entry`) VALUES('135846'); +INSERT INTO `transmog_items` (`entry`) VALUES('135848'); +INSERT INTO `transmog_items` (`entry`) VALUES('135851'); +INSERT INTO `transmog_items` (`entry`) VALUES('135852'); +INSERT INTO `transmog_items` (`entry`) VALUES('135856'); +INSERT INTO `transmog_items` (`entry`) VALUES('135857'); +INSERT INTO `transmog_items` (`entry`) VALUES('135859'); +INSERT INTO `transmog_items` (`entry`) VALUES('135860'); +INSERT INTO `transmog_items` (`entry`) VALUES('135861'); +INSERT INTO `transmog_items` (`entry`) VALUES('135862'); +INSERT INTO `transmog_items` (`entry`) VALUES('135863'); +INSERT INTO `transmog_items` (`entry`) VALUES('135864'); +INSERT INTO `transmog_items` (`entry`) VALUES('135865'); +INSERT INTO `transmog_items` (`entry`) VALUES('135866'); +INSERT INTO `transmog_items` (`entry`) VALUES('135868'); +INSERT INTO `transmog_items` (`entry`) VALUES('135869'); +INSERT INTO `transmog_items` (`entry`) VALUES('135870'); +INSERT INTO `transmog_items` (`entry`) VALUES('135871'); +INSERT INTO `transmog_items` (`entry`) VALUES('135872'); +INSERT INTO `transmog_items` (`entry`) VALUES('135873'); +INSERT INTO `transmog_items` (`entry`) VALUES('135875'); +INSERT INTO `transmog_items` (`entry`) VALUES('135876'); +INSERT INTO `transmog_items` (`entry`) VALUES('135877'); +INSERT INTO `transmog_items` (`entry`) VALUES('135878'); +INSERT INTO `transmog_items` (`entry`) VALUES('135879'); +INSERT INTO `transmog_items` (`entry`) VALUES('135880'); +INSERT INTO `transmog_items` (`entry`) VALUES('135882'); +INSERT INTO `transmog_items` (`entry`) VALUES('135883'); +INSERT INTO `transmog_items` (`entry`) VALUES('135884'); +INSERT INTO `transmog_items` (`entry`) VALUES('135885'); +INSERT INTO `transmog_items` (`entry`) VALUES('135887'); +INSERT INTO `transmog_items` (`entry`) VALUES('135888'); +INSERT INTO `transmog_items` (`entry`) VALUES('135889'); +INSERT INTO `transmog_items` (`entry`) VALUES('135890'); +INSERT INTO `transmog_items` (`entry`) VALUES('135891'); +INSERT INTO `transmog_items` (`entry`) VALUES('135892'); +INSERT INTO `transmog_items` (`entry`) VALUES('135893'); +INSERT INTO `transmog_items` (`entry`) VALUES('135894'); +INSERT INTO `transmog_items` (`entry`) VALUES('135895'); +INSERT INTO `transmog_items` (`entry`) VALUES('135896'); +INSERT INTO `transmog_items` (`entry`) VALUES('135897'); +INSERT INTO `transmog_items` (`entry`) VALUES('135898'); +INSERT INTO `transmog_items` (`entry`) VALUES('135899'); +INSERT INTO `transmog_items` (`entry`) VALUES('135900'); +INSERT INTO `transmog_items` (`entry`) VALUES('135901'); +INSERT INTO `transmog_items` (`entry`) VALUES('135902'); +INSERT INTO `transmog_items` (`entry`) VALUES('135903'); +INSERT INTO `transmog_items` (`entry`) VALUES('135905'); +INSERT INTO `transmog_items` (`entry`) VALUES('135909'); +INSERT INTO `transmog_items` (`entry`) VALUES('135910'); +INSERT INTO `transmog_items` (`entry`) VALUES('135912'); +INSERT INTO `transmog_items` (`entry`) VALUES('135913'); +INSERT INTO `transmog_items` (`entry`) VALUES('135914'); +INSERT INTO `transmog_items` (`entry`) VALUES('135915'); +INSERT INTO `transmog_items` (`entry`) VALUES('135916'); +INSERT INTO `transmog_items` (`entry`) VALUES('135917'); +INSERT INTO `transmog_items` (`entry`) VALUES('135918'); +INSERT INTO `transmog_items` (`entry`) VALUES('135919'); +INSERT INTO `transmog_items` (`entry`) VALUES('135920'); +INSERT INTO `transmog_items` (`entry`) VALUES('135921'); +INSERT INTO `transmog_items` (`entry`) VALUES('135923'); +INSERT INTO `transmog_items` (`entry`) VALUES('135924'); +INSERT INTO `transmog_items` (`entry`) VALUES('135926'); +INSERT INTO `transmog_items` (`entry`) VALUES('135927'); +INSERT INTO `transmog_items` (`entry`) VALUES('135928'); +INSERT INTO `transmog_items` (`entry`) VALUES('135929'); +INSERT INTO `transmog_items` (`entry`) VALUES('135930'); +INSERT INTO `transmog_items` (`entry`) VALUES('135931'); +INSERT INTO `transmog_items` (`entry`) VALUES('135933'); +INSERT INTO `transmog_items` (`entry`) VALUES('135934'); +INSERT INTO `transmog_items` (`entry`) VALUES('135938'); +INSERT INTO `transmog_items` (`entry`) VALUES('135955'); +INSERT INTO `transmog_items` (`entry`) VALUES('135956'); +INSERT INTO `transmog_items` (`entry`) VALUES('135957'); +INSERT INTO `transmog_items` (`entry`) VALUES('135958'); +INSERT INTO `transmog_items` (`entry`) VALUES('135959'); +INSERT INTO `transmog_items` (`entry`) VALUES('135960'); +INSERT INTO `transmog_items` (`entry`) VALUES('135961'); +INSERT INTO `transmog_items` (`entry`) VALUES('135962'); +INSERT INTO `transmog_items` (`entry`) VALUES('135963'); +INSERT INTO `transmog_items` (`entry`) VALUES('135964'); +INSERT INTO `transmog_items` (`entry`) VALUES('135965'); +INSERT INTO `transmog_items` (`entry`) VALUES('135966'); +INSERT INTO `transmog_items` (`entry`) VALUES('135967'); +INSERT INTO `transmog_items` (`entry`) VALUES('135968'); +INSERT INTO `transmog_items` (`entry`) VALUES('135969'); +INSERT INTO `transmog_items` (`entry`) VALUES('135970'); +INSERT INTO `transmog_items` (`entry`) VALUES('135971'); +INSERT INTO `transmog_items` (`entry`) VALUES('135972'); +INSERT INTO `transmog_items` (`entry`) VALUES('135973'); +INSERT INTO `transmog_items` (`entry`) VALUES('135974'); +INSERT INTO `transmog_items` (`entry`) VALUES('135975'); +INSERT INTO `transmog_items` (`entry`) VALUES('135976'); +INSERT INTO `transmog_items` (`entry`) VALUES('135977'); +INSERT INTO `transmog_items` (`entry`) VALUES('135978'); +INSERT INTO `transmog_items` (`entry`) VALUES('135979'); +INSERT INTO `transmog_items` (`entry`) VALUES('135980'); +INSERT INTO `transmog_items` (`entry`) VALUES('135981'); +INSERT INTO `transmog_items` (`entry`) VALUES('135982'); +INSERT INTO `transmog_items` (`entry`) VALUES('135983'); +INSERT INTO `transmog_items` (`entry`) VALUES('135984'); +INSERT INTO `transmog_items` (`entry`) VALUES('135985'); +INSERT INTO `transmog_items` (`entry`) VALUES('135986'); +INSERT INTO `transmog_items` (`entry`) VALUES('135987'); +INSERT INTO `transmog_items` (`entry`) VALUES('135988'); +INSERT INTO `transmog_items` (`entry`) VALUES('135989'); +INSERT INTO `transmog_items` (`entry`) VALUES('135990'); +INSERT INTO `transmog_items` (`entry`) VALUES('135991'); +INSERT INTO `transmog_items` (`entry`) VALUES('135992'); +INSERT INTO `transmog_items` (`entry`) VALUES('135993'); +INSERT INTO `transmog_items` (`entry`) VALUES('135994'); +INSERT INTO `transmog_items` (`entry`) VALUES('135995'); +INSERT INTO `transmog_items` (`entry`) VALUES('135996'); +INSERT INTO `transmog_items` (`entry`) VALUES('135997'); +INSERT INTO `transmog_items` (`entry`) VALUES('135998'); +INSERT INTO `transmog_items` (`entry`) VALUES('135999'); +INSERT INTO `transmog_items` (`entry`) VALUES('136000'); +INSERT INTO `transmog_items` (`entry`) VALUES('136001'); +INSERT INTO `transmog_items` (`entry`) VALUES('136002'); +INSERT INTO `transmog_items` (`entry`) VALUES('136003'); +INSERT INTO `transmog_items` (`entry`) VALUES('136004'); +INSERT INTO `transmog_items` (`entry`) VALUES('136005'); +INSERT INTO `transmog_items` (`entry`) VALUES('136006'); +INSERT INTO `transmog_items` (`entry`) VALUES('136007'); +INSERT INTO `transmog_items` (`entry`) VALUES('136008'); +INSERT INTO `transmog_items` (`entry`) VALUES('136009'); +INSERT INTO `transmog_items` (`entry`) VALUES('136010'); +INSERT INTO `transmog_items` (`entry`) VALUES('136011'); +INSERT INTO `transmog_items` (`entry`) VALUES('136012'); +INSERT INTO `transmog_items` (`entry`) VALUES('136013'); +INSERT INTO `transmog_items` (`entry`) VALUES('136014'); +INSERT INTO `transmog_items` (`entry`) VALUES('136015'); +INSERT INTO `transmog_items` (`entry`) VALUES('136016'); +INSERT INTO `transmog_items` (`entry`) VALUES('136017'); +INSERT INTO `transmog_items` (`entry`) VALUES('136018'); +INSERT INTO `transmog_items` (`entry`) VALUES('136019'); +INSERT INTO `transmog_items` (`entry`) VALUES('136020'); +INSERT INTO `transmog_items` (`entry`) VALUES('136021'); +INSERT INTO `transmog_items` (`entry`) VALUES('136022'); +INSERT INTO `transmog_items` (`entry`) VALUES('136023'); +INSERT INTO `transmog_items` (`entry`) VALUES('136024'); +INSERT INTO `transmog_items` (`entry`) VALUES('136025'); +INSERT INTO `transmog_items` (`entry`) VALUES('136026'); +INSERT INTO `transmog_items` (`entry`) VALUES('136027'); +INSERT INTO `transmog_items` (`entry`) VALUES('136028'); +INSERT INTO `transmog_items` (`entry`) VALUES('136029'); +INSERT INTO `transmog_items` (`entry`) VALUES('136030'); +INSERT INTO `transmog_items` (`entry`) VALUES('136031'); +INSERT INTO `transmog_items` (`entry`) VALUES('136032'); +INSERT INTO `transmog_items` (`entry`) VALUES('136033'); +INSERT INTO `transmog_items` (`entry`) VALUES('136034'); +INSERT INTO `transmog_items` (`entry`) VALUES('136035'); +INSERT INTO `transmog_items` (`entry`) VALUES('136036'); +INSERT INTO `transmog_items` (`entry`) VALUES('136037'); +INSERT INTO `transmog_items` (`entry`) VALUES('136038'); +INSERT INTO `transmog_items` (`entry`) VALUES('136039'); +INSERT INTO `transmog_items` (`entry`) VALUES('136040'); +INSERT INTO `transmog_items` (`entry`) VALUES('136041'); +INSERT INTO `transmog_items` (`entry`) VALUES('136042'); +INSERT INTO `transmog_items` (`entry`) VALUES('136043'); +INSERT INTO `transmog_items` (`entry`) VALUES('136044'); +INSERT INTO `transmog_items` (`entry`) VALUES('136045'); +INSERT INTO `transmog_items` (`entry`) VALUES('136046'); +INSERT INTO `transmog_items` (`entry`) VALUES('136047'); +INSERT INTO `transmog_items` (`entry`) VALUES('136048'); +INSERT INTO `transmog_items` (`entry`) VALUES('136049'); +INSERT INTO `transmog_items` (`entry`) VALUES('136050'); +INSERT INTO `transmog_items` (`entry`) VALUES('136051'); +INSERT INTO `transmog_items` (`entry`) VALUES('136052'); +INSERT INTO `transmog_items` (`entry`) VALUES('136053'); +INSERT INTO `transmog_items` (`entry`) VALUES('136054'); +INSERT INTO `transmog_items` (`entry`) VALUES('136055'); +INSERT INTO `transmog_items` (`entry`) VALUES('136056'); +INSERT INTO `transmog_items` (`entry`) VALUES('136057'); +INSERT INTO `transmog_items` (`entry`) VALUES('136058'); +INSERT INTO `transmog_items` (`entry`) VALUES('136059'); +INSERT INTO `transmog_items` (`entry`) VALUES('136060'); +INSERT INTO `transmog_items` (`entry`) VALUES('136061'); +INSERT INTO `transmog_items` (`entry`) VALUES('136062'); +INSERT INTO `transmog_items` (`entry`) VALUES('136063'); +INSERT INTO `transmog_items` (`entry`) VALUES('136064'); +INSERT INTO `transmog_items` (`entry`) VALUES('136065'); +INSERT INTO `transmog_items` (`entry`) VALUES('136066'); +INSERT INTO `transmog_items` (`entry`) VALUES('136067'); +INSERT INTO `transmog_items` (`entry`) VALUES('136068'); +INSERT INTO `transmog_items` (`entry`) VALUES('136069'); +INSERT INTO `transmog_items` (`entry`) VALUES('136070'); +INSERT INTO `transmog_items` (`entry`) VALUES('136071'); +INSERT INTO `transmog_items` (`entry`) VALUES('136072'); +INSERT INTO `transmog_items` (`entry`) VALUES('136073'); +INSERT INTO `transmog_items` (`entry`) VALUES('136074'); +INSERT INTO `transmog_items` (`entry`) VALUES('136075'); +INSERT INTO `transmog_items` (`entry`) VALUES('136076'); +INSERT INTO `transmog_items` (`entry`) VALUES('136077'); +INSERT INTO `transmog_items` (`entry`) VALUES('136078'); +INSERT INTO `transmog_items` (`entry`) VALUES('136079'); +INSERT INTO `transmog_items` (`entry`) VALUES('136080'); +INSERT INTO `transmog_items` (`entry`) VALUES('136081'); +INSERT INTO `transmog_items` (`entry`) VALUES('136082'); +INSERT INTO `transmog_items` (`entry`) VALUES('136083'); +INSERT INTO `transmog_items` (`entry`) VALUES('136084'); +INSERT INTO `transmog_items` (`entry`) VALUES('136085'); +INSERT INTO `transmog_items` (`entry`) VALUES('136086'); +INSERT INTO `transmog_items` (`entry`) VALUES('136087'); +INSERT INTO `transmog_items` (`entry`) VALUES('136088'); +INSERT INTO `transmog_items` (`entry`) VALUES('136089'); +INSERT INTO `transmog_items` (`entry`) VALUES('136090'); +INSERT INTO `transmog_items` (`entry`) VALUES('136091'); +INSERT INTO `transmog_items` (`entry`) VALUES('136092'); +INSERT INTO `transmog_items` (`entry`) VALUES('136093'); +INSERT INTO `transmog_items` (`entry`) VALUES('136094'); +INSERT INTO `transmog_items` (`entry`) VALUES('136095'); +INSERT INTO `transmog_items` (`entry`) VALUES('136096'); +INSERT INTO `transmog_items` (`entry`) VALUES('136097'); +INSERT INTO `transmog_items` (`entry`) VALUES('136098'); +INSERT INTO `transmog_items` (`entry`) VALUES('136099'); +INSERT INTO `transmog_items` (`entry`) VALUES('136100'); +INSERT INTO `transmog_items` (`entry`) VALUES('136101'); +INSERT INTO `transmog_items` (`entry`) VALUES('136102'); +INSERT INTO `transmog_items` (`entry`) VALUES('136103'); +INSERT INTO `transmog_items` (`entry`) VALUES('136104'); +INSERT INTO `transmog_items` (`entry`) VALUES('136105'); +INSERT INTO `transmog_items` (`entry`) VALUES('136106'); +INSERT INTO `transmog_items` (`entry`) VALUES('136107'); +INSERT INTO `transmog_items` (`entry`) VALUES('136108'); +INSERT INTO `transmog_items` (`entry`) VALUES('136109'); +INSERT INTO `transmog_items` (`entry`) VALUES('136110'); +INSERT INTO `transmog_items` (`entry`) VALUES('136111'); +INSERT INTO `transmog_items` (`entry`) VALUES('136112'); +INSERT INTO `transmog_items` (`entry`) VALUES('136113'); +INSERT INTO `transmog_items` (`entry`) VALUES('136114'); +INSERT INTO `transmog_items` (`entry`) VALUES('136115'); +INSERT INTO `transmog_items` (`entry`) VALUES('136116'); +INSERT INTO `transmog_items` (`entry`) VALUES('136117'); +INSERT INTO `transmog_items` (`entry`) VALUES('136118'); +INSERT INTO `transmog_items` (`entry`) VALUES('136119'); +INSERT INTO `transmog_items` (`entry`) VALUES('136120'); +INSERT INTO `transmog_items` (`entry`) VALUES('136121'); +INSERT INTO `transmog_items` (`entry`) VALUES('136122'); +INSERT INTO `transmog_items` (`entry`) VALUES('136123'); +INSERT INTO `transmog_items` (`entry`) VALUES('136124'); +INSERT INTO `transmog_items` (`entry`) VALUES('136125'); +INSERT INTO `transmog_items` (`entry`) VALUES('136126'); +INSERT INTO `transmog_items` (`entry`) VALUES('136127'); +INSERT INTO `transmog_items` (`entry`) VALUES('136128'); +INSERT INTO `transmog_items` (`entry`) VALUES('136129'); +INSERT INTO `transmog_items` (`entry`) VALUES('136130'); +INSERT INTO `transmog_items` (`entry`) VALUES('136131'); +INSERT INTO `transmog_items` (`entry`) VALUES('136132'); +INSERT INTO `transmog_items` (`entry`) VALUES('136133'); +INSERT INTO `transmog_items` (`entry`) VALUES('136134'); +INSERT INTO `transmog_items` (`entry`) VALUES('136135'); +INSERT INTO `transmog_items` (`entry`) VALUES('136136'); +INSERT INTO `transmog_items` (`entry`) VALUES('136137'); +INSERT INTO `transmog_items` (`entry`) VALUES('136138'); +INSERT INTO `transmog_items` (`entry`) VALUES('136139'); +INSERT INTO `transmog_items` (`entry`) VALUES('136140'); +INSERT INTO `transmog_items` (`entry`) VALUES('136141'); +INSERT INTO `transmog_items` (`entry`) VALUES('136142'); +INSERT INTO `transmog_items` (`entry`) VALUES('136143'); +INSERT INTO `transmog_items` (`entry`) VALUES('136144'); +INSERT INTO `transmog_items` (`entry`) VALUES('136145'); +INSERT INTO `transmog_items` (`entry`) VALUES('136146'); +INSERT INTO `transmog_items` (`entry`) VALUES('136147'); +INSERT INTO `transmog_items` (`entry`) VALUES('136148'); +INSERT INTO `transmog_items` (`entry`) VALUES('136149'); +INSERT INTO `transmog_items` (`entry`) VALUES('136150'); +INSERT INTO `transmog_items` (`entry`) VALUES('136151'); +INSERT INTO `transmog_items` (`entry`) VALUES('136152'); +INSERT INTO `transmog_items` (`entry`) VALUES('136153'); +INSERT INTO `transmog_items` (`entry`) VALUES('136154'); +INSERT INTO `transmog_items` (`entry`) VALUES('136155'); +INSERT INTO `transmog_items` (`entry`) VALUES('136156'); +INSERT INTO `transmog_items` (`entry`) VALUES('136157'); +INSERT INTO `transmog_items` (`entry`) VALUES('136158'); +INSERT INTO `transmog_items` (`entry`) VALUES('136159'); +INSERT INTO `transmog_items` (`entry`) VALUES('136160'); +INSERT INTO `transmog_items` (`entry`) VALUES('136161'); +INSERT INTO `transmog_items` (`entry`) VALUES('136162'); +INSERT INTO `transmog_items` (`entry`) VALUES('136163'); +INSERT INTO `transmog_items` (`entry`) VALUES('136164'); +INSERT INTO `transmog_items` (`entry`) VALUES('136165'); +INSERT INTO `transmog_items` (`entry`) VALUES('136166'); +INSERT INTO `transmog_items` (`entry`) VALUES('136167'); +INSERT INTO `transmog_items` (`entry`) VALUES('136168'); +INSERT INTO `transmog_items` (`entry`) VALUES('136169'); +INSERT INTO `transmog_items` (`entry`) VALUES('136170'); +INSERT INTO `transmog_items` (`entry`) VALUES('136171'); +INSERT INTO `transmog_items` (`entry`) VALUES('136172'); +INSERT INTO `transmog_items` (`entry`) VALUES('136173'); +INSERT INTO `transmog_items` (`entry`) VALUES('136174'); +INSERT INTO `transmog_items` (`entry`) VALUES('136175'); +INSERT INTO `transmog_items` (`entry`) VALUES('136176'); +INSERT INTO `transmog_items` (`entry`) VALUES('136177'); +INSERT INTO `transmog_items` (`entry`) VALUES('136178'); +INSERT INTO `transmog_items` (`entry`) VALUES('136179'); +INSERT INTO `transmog_items` (`entry`) VALUES('136180'); +INSERT INTO `transmog_items` (`entry`) VALUES('136181'); +INSERT INTO `transmog_items` (`entry`) VALUES('136182'); +INSERT INTO `transmog_items` (`entry`) VALUES('136183'); +INSERT INTO `transmog_items` (`entry`) VALUES('136184'); +INSERT INTO `transmog_items` (`entry`) VALUES('136185'); +INSERT INTO `transmog_items` (`entry`) VALUES('136186'); +INSERT INTO `transmog_items` (`entry`) VALUES('136187'); +INSERT INTO `transmog_items` (`entry`) VALUES('136188'); +INSERT INTO `transmog_items` (`entry`) VALUES('136189'); +INSERT INTO `transmog_items` (`entry`) VALUES('136190'); +INSERT INTO `transmog_items` (`entry`) VALUES('136191'); +INSERT INTO `transmog_items` (`entry`) VALUES('136192'); +INSERT INTO `transmog_items` (`entry`) VALUES('136193'); +INSERT INTO `transmog_items` (`entry`) VALUES('136194'); +INSERT INTO `transmog_items` (`entry`) VALUES('136195'); +INSERT INTO `transmog_items` (`entry`) VALUES('136196'); +INSERT INTO `transmog_items` (`entry`) VALUES('136197'); +INSERT INTO `transmog_items` (`entry`) VALUES('136198'); +INSERT INTO `transmog_items` (`entry`) VALUES('136199'); +INSERT INTO `transmog_items` (`entry`) VALUES('136200'); +INSERT INTO `transmog_items` (`entry`) VALUES('136201'); +INSERT INTO `transmog_items` (`entry`) VALUES('136202'); +INSERT INTO `transmog_items` (`entry`) VALUES('136203'); +INSERT INTO `transmog_items` (`entry`) VALUES('136204'); +INSERT INTO `transmog_items` (`entry`) VALUES('136205'); +INSERT INTO `transmog_items` (`entry`) VALUES('136206'); +INSERT INTO `transmog_items` (`entry`) VALUES('136207'); +INSERT INTO `transmog_items` (`entry`) VALUES('136208'); +INSERT INTO `transmog_items` (`entry`) VALUES('136209'); +INSERT INTO `transmog_items` (`entry`) VALUES('136210'); +INSERT INTO `transmog_items` (`entry`) VALUES('136211'); +INSERT INTO `transmog_items` (`entry`) VALUES('136212'); +INSERT INTO `transmog_items` (`entry`) VALUES('136213'); +INSERT INTO `transmog_items` (`entry`) VALUES('136214'); +INSERT INTO `transmog_items` (`entry`) VALUES('136215'); +INSERT INTO `transmog_items` (`entry`) VALUES('136216'); +INSERT INTO `transmog_items` (`entry`) VALUES('136217'); +INSERT INTO `transmog_items` (`entry`) VALUES('136218'); +INSERT INTO `transmog_items` (`entry`) VALUES('136219'); +INSERT INTO `transmog_items` (`entry`) VALUES('136220'); +INSERT INTO `transmog_items` (`entry`) VALUES('136221'); +INSERT INTO `transmog_items` (`entry`) VALUES('136222'); +INSERT INTO `transmog_items` (`entry`) VALUES('136223'); +INSERT INTO `transmog_items` (`entry`) VALUES('136224'); +INSERT INTO `transmog_items` (`entry`) VALUES('136225'); +INSERT INTO `transmog_items` (`entry`) VALUES('136226'); +INSERT INTO `transmog_items` (`entry`) VALUES('136227'); +INSERT INTO `transmog_items` (`entry`) VALUES('136228'); +INSERT INTO `transmog_items` (`entry`) VALUES('136229'); +INSERT INTO `transmog_items` (`entry`) VALUES('136230'); +INSERT INTO `transmog_items` (`entry`) VALUES('136231'); +INSERT INTO `transmog_items` (`entry`) VALUES('136232'); +INSERT INTO `transmog_items` (`entry`) VALUES('136233'); +INSERT INTO `transmog_items` (`entry`) VALUES('136234'); +INSERT INTO `transmog_items` (`entry`) VALUES('136235'); +INSERT INTO `transmog_items` (`entry`) VALUES('136236'); +INSERT INTO `transmog_items` (`entry`) VALUES('136237'); +INSERT INTO `transmog_items` (`entry`) VALUES('136238'); +INSERT INTO `transmog_items` (`entry`) VALUES('136239'); +INSERT INTO `transmog_items` (`entry`) VALUES('136240'); +INSERT INTO `transmog_items` (`entry`) VALUES('136241'); +INSERT INTO `transmog_items` (`entry`) VALUES('136242'); +INSERT INTO `transmog_items` (`entry`) VALUES('136243'); +INSERT INTO `transmog_items` (`entry`) VALUES('136244'); +INSERT INTO `transmog_items` (`entry`) VALUES('136245'); +INSERT INTO `transmog_items` (`entry`) VALUES('136246'); +INSERT INTO `transmog_items` (`entry`) VALUES('136247'); +INSERT INTO `transmog_items` (`entry`) VALUES('136248'); +INSERT INTO `transmog_items` (`entry`) VALUES('136249'); +INSERT INTO `transmog_items` (`entry`) VALUES('136250'); +INSERT INTO `transmog_items` (`entry`) VALUES('136251'); +INSERT INTO `transmog_items` (`entry`) VALUES('136252'); +INSERT INTO `transmog_items` (`entry`) VALUES('136253'); +INSERT INTO `transmog_items` (`entry`) VALUES('136254'); +INSERT INTO `transmog_items` (`entry`) VALUES('136255'); +INSERT INTO `transmog_items` (`entry`) VALUES('136256'); +INSERT INTO `transmog_items` (`entry`) VALUES('136257'); +INSERT INTO `transmog_items` (`entry`) VALUES('136258'); +INSERT INTO `transmog_items` (`entry`) VALUES('136259'); +INSERT INTO `transmog_items` (`entry`) VALUES('136260'); +INSERT INTO `transmog_items` (`entry`) VALUES('136261'); +INSERT INTO `transmog_items` (`entry`) VALUES('136262'); +INSERT INTO `transmog_items` (`entry`) VALUES('136263'); +INSERT INTO `transmog_items` (`entry`) VALUES('136264'); +INSERT INTO `transmog_items` (`entry`) VALUES('136265'); +INSERT INTO `transmog_items` (`entry`) VALUES('136266'); +INSERT INTO `transmog_items` (`entry`) VALUES('136267'); +INSERT INTO `transmog_items` (`entry`) VALUES('136268'); +INSERT INTO `transmog_items` (`entry`) VALUES('136269'); +INSERT INTO `transmog_items` (`entry`) VALUES('136270'); +INSERT INTO `transmog_items` (`entry`) VALUES('136271'); +INSERT INTO `transmog_items` (`entry`) VALUES('136272'); +INSERT INTO `transmog_items` (`entry`) VALUES('136273'); +INSERT INTO `transmog_items` (`entry`) VALUES('136274'); +INSERT INTO `transmog_items` (`entry`) VALUES('136275'); +INSERT INTO `transmog_items` (`entry`) VALUES('136276'); +INSERT INTO `transmog_items` (`entry`) VALUES('136277'); +INSERT INTO `transmog_items` (`entry`) VALUES('136278'); +INSERT INTO `transmog_items` (`entry`) VALUES('136279'); +INSERT INTO `transmog_items` (`entry`) VALUES('136280'); +INSERT INTO `transmog_items` (`entry`) VALUES('136281'); +INSERT INTO `transmog_items` (`entry`) VALUES('136282'); +INSERT INTO `transmog_items` (`entry`) VALUES('136283'); +INSERT INTO `transmog_items` (`entry`) VALUES('136284'); +INSERT INTO `transmog_items` (`entry`) VALUES('136285'); +INSERT INTO `transmog_items` (`entry`) VALUES('136286'); +INSERT INTO `transmog_items` (`entry`) VALUES('136287'); +INSERT INTO `transmog_items` (`entry`) VALUES('136288'); +INSERT INTO `transmog_items` (`entry`) VALUES('136289'); +INSERT INTO `transmog_items` (`entry`) VALUES('136290'); +INSERT INTO `transmog_items` (`entry`) VALUES('136291'); +INSERT INTO `transmog_items` (`entry`) VALUES('136292'); +INSERT INTO `transmog_items` (`entry`) VALUES('136293'); +INSERT INTO `transmog_items` (`entry`) VALUES('136294'); +INSERT INTO `transmog_items` (`entry`) VALUES('136295'); +INSERT INTO `transmog_items` (`entry`) VALUES('136296'); +INSERT INTO `transmog_items` (`entry`) VALUES('136297'); +INSERT INTO `transmog_items` (`entry`) VALUES('136298'); +INSERT INTO `transmog_items` (`entry`) VALUES('136299'); +INSERT INTO `transmog_items` (`entry`) VALUES('136300'); +INSERT INTO `transmog_items` (`entry`) VALUES('136301'); +INSERT INTO `transmog_items` (`entry`) VALUES('136302'); +INSERT INTO `transmog_items` (`entry`) VALUES('136303'); +INSERT INTO `transmog_items` (`entry`) VALUES('136304'); +INSERT INTO `transmog_items` (`entry`) VALUES('136305'); +INSERT INTO `transmog_items` (`entry`) VALUES('136306'); +INSERT INTO `transmog_items` (`entry`) VALUES('136307'); +INSERT INTO `transmog_items` (`entry`) VALUES('136308'); +INSERT INTO `transmog_items` (`entry`) VALUES('136309'); +INSERT INTO `transmog_items` (`entry`) VALUES('136310'); +INSERT INTO `transmog_items` (`entry`) VALUES('136311'); +INSERT INTO `transmog_items` (`entry`) VALUES('136312'); +INSERT INTO `transmog_items` (`entry`) VALUES('136313'); +INSERT INTO `transmog_items` (`entry`) VALUES('136314'); +INSERT INTO `transmog_items` (`entry`) VALUES('136315'); +INSERT INTO `transmog_items` (`entry`) VALUES('136316'); +INSERT INTO `transmog_items` (`entry`) VALUES('136317'); +INSERT INTO `transmog_items` (`entry`) VALUES('136318'); +INSERT INTO `transmog_items` (`entry`) VALUES('136319'); +INSERT INTO `transmog_items` (`entry`) VALUES('136320'); +INSERT INTO `transmog_items` (`entry`) VALUES('136321'); +INSERT INTO `transmog_items` (`entry`) VALUES('136322'); +INSERT INTO `transmog_items` (`entry`) VALUES('136323'); +INSERT INTO `transmog_items` (`entry`) VALUES('136324'); +INSERT INTO `transmog_items` (`entry`) VALUES('136325'); +INSERT INTO `transmog_items` (`entry`) VALUES('136326'); +INSERT INTO `transmog_items` (`entry`) VALUES('136327'); +INSERT INTO `transmog_items` (`entry`) VALUES('136328'); +INSERT INTO `transmog_items` (`entry`) VALUES('136329'); +INSERT INTO `transmog_items` (`entry`) VALUES('136330'); +INSERT INTO `transmog_items` (`entry`) VALUES('136331'); +INSERT INTO `transmog_items` (`entry`) VALUES('136332'); +INSERT INTO `transmog_items` (`entry`) VALUES('136333'); +INSERT INTO `transmog_items` (`entry`) VALUES('136334'); +INSERT INTO `transmog_items` (`entry`) VALUES('136335'); +INSERT INTO `transmog_items` (`entry`) VALUES('136336'); +INSERT INTO `transmog_items` (`entry`) VALUES('136337'); +INSERT INTO `transmog_items` (`entry`) VALUES('136338'); +INSERT INTO `transmog_items` (`entry`) VALUES('136339'); +INSERT INTO `transmog_items` (`entry`) VALUES('136340'); +INSERT INTO `transmog_items` (`entry`) VALUES('136341'); +INSERT INTO `transmog_items` (`entry`) VALUES('136342'); +INSERT INTO `transmog_items` (`entry`) VALUES('136343'); +INSERT INTO `transmog_items` (`entry`) VALUES('136344'); +INSERT INTO `transmog_items` (`entry`) VALUES('136345'); +INSERT INTO `transmog_items` (`entry`) VALUES('136346'); +INSERT INTO `transmog_items` (`entry`) VALUES('136347'); +INSERT INTO `transmog_items` (`entry`) VALUES('136348'); +INSERT INTO `transmog_items` (`entry`) VALUES('136349'); +INSERT INTO `transmog_items` (`entry`) VALUES('136350'); +INSERT INTO `transmog_items` (`entry`) VALUES('136351'); +INSERT INTO `transmog_items` (`entry`) VALUES('136352'); +INSERT INTO `transmog_items` (`entry`) VALUES('136353'); +INSERT INTO `transmog_items` (`entry`) VALUES('136354'); +INSERT INTO `transmog_items` (`entry`) VALUES('136355'); +INSERT INTO `transmog_items` (`entry`) VALUES('136356'); +INSERT INTO `transmog_items` (`entry`) VALUES('136357'); +INSERT INTO `transmog_items` (`entry`) VALUES('136358'); +INSERT INTO `transmog_items` (`entry`) VALUES('136359'); +INSERT INTO `transmog_items` (`entry`) VALUES('136360'); +INSERT INTO `transmog_items` (`entry`) VALUES('136361'); +INSERT INTO `transmog_items` (`entry`) VALUES('136362'); +INSERT INTO `transmog_items` (`entry`) VALUES('136363'); +INSERT INTO `transmog_items` (`entry`) VALUES('136364'); +INSERT INTO `transmog_items` (`entry`) VALUES('136365'); +INSERT INTO `transmog_items` (`entry`) VALUES('136366'); +INSERT INTO `transmog_items` (`entry`) VALUES('136367'); +INSERT INTO `transmog_items` (`entry`) VALUES('136368'); +INSERT INTO `transmog_items` (`entry`) VALUES('136369'); +INSERT INTO `transmog_items` (`entry`) VALUES('136370'); +INSERT INTO `transmog_items` (`entry`) VALUES('136371'); +INSERT INTO `transmog_items` (`entry`) VALUES('136372'); +INSERT INTO `transmog_items` (`entry`) VALUES('136373'); +INSERT INTO `transmog_items` (`entry`) VALUES('136374'); +INSERT INTO `transmog_items` (`entry`) VALUES('136375'); +INSERT INTO `transmog_items` (`entry`) VALUES('136376'); +INSERT INTO `transmog_items` (`entry`) VALUES('136377'); +INSERT INTO `transmog_items` (`entry`) VALUES('136378'); +INSERT INTO `transmog_items` (`entry`) VALUES('136379'); +INSERT INTO `transmog_items` (`entry`) VALUES('136380'); +INSERT INTO `transmog_items` (`entry`) VALUES('136381'); +INSERT INTO `transmog_items` (`entry`) VALUES('136382'); +INSERT INTO `transmog_items` (`entry`) VALUES('136383'); +INSERT INTO `transmog_items` (`entry`) VALUES('136384'); +INSERT INTO `transmog_items` (`entry`) VALUES('136385'); +INSERT INTO `transmog_items` (`entry`) VALUES('136386'); +INSERT INTO `transmog_items` (`entry`) VALUES('136387'); +INSERT INTO `transmog_items` (`entry`) VALUES('136388'); +INSERT INTO `transmog_items` (`entry`) VALUES('136389'); +INSERT INTO `transmog_items` (`entry`) VALUES('136390'); +INSERT INTO `transmog_items` (`entry`) VALUES('136391'); +INSERT INTO `transmog_items` (`entry`) VALUES('136392'); +INSERT INTO `transmog_items` (`entry`) VALUES('136393'); +INSERT INTO `transmog_items` (`entry`) VALUES('136394'); +INSERT INTO `transmog_items` (`entry`) VALUES('136395'); +INSERT INTO `transmog_items` (`entry`) VALUES('136396'); +INSERT INTO `transmog_items` (`entry`) VALUES('136397'); +INSERT INTO `transmog_items` (`entry`) VALUES('136398'); +INSERT INTO `transmog_items` (`entry`) VALUES('136399'); +INSERT INTO `transmog_items` (`entry`) VALUES('136400'); +INSERT INTO `transmog_items` (`entry`) VALUES('136401'); +INSERT INTO `transmog_items` (`entry`) VALUES('136402'); +INSERT INTO `transmog_items` (`entry`) VALUES('136403'); +INSERT INTO `transmog_items` (`entry`) VALUES('136404'); +INSERT INTO `transmog_items` (`entry`) VALUES('136405'); +INSERT INTO `transmog_items` (`entry`) VALUES('136406'); +INSERT INTO `transmog_items` (`entry`) VALUES('136407'); +INSERT INTO `transmog_items` (`entry`) VALUES('136408'); +INSERT INTO `transmog_items` (`entry`) VALUES('136409'); +INSERT INTO `transmog_items` (`entry`) VALUES('136410'); +INSERT INTO `transmog_items` (`entry`) VALUES('136411'); +INSERT INTO `transmog_items` (`entry`) VALUES('136412'); +INSERT INTO `transmog_items` (`entry`) VALUES('136413'); +INSERT INTO `transmog_items` (`entry`) VALUES('136414'); +INSERT INTO `transmog_items` (`entry`) VALUES('136415'); +INSERT INTO `transmog_items` (`entry`) VALUES('136416'); +INSERT INTO `transmog_items` (`entry`) VALUES('136445'); +INSERT INTO `transmog_items` (`entry`) VALUES('136446'); +INSERT INTO `transmog_items` (`entry`) VALUES('136447'); +INSERT INTO `transmog_items` (`entry`) VALUES('136448'); +INSERT INTO `transmog_items` (`entry`) VALUES('136449'); +INSERT INTO `transmog_items` (`entry`) VALUES('136450'); +INSERT INTO `transmog_items` (`entry`) VALUES('136451'); +INSERT INTO `transmog_items` (`entry`) VALUES('136452'); +INSERT INTO `transmog_items` (`entry`) VALUES('136453'); +INSERT INTO `transmog_items` (`entry`) VALUES('136454'); +INSERT INTO `transmog_items` (`entry`) VALUES('136455'); +INSERT INTO `transmog_items` (`entry`) VALUES('136456'); +INSERT INTO `transmog_items` (`entry`) VALUES('136457'); +INSERT INTO `transmog_items` (`entry`) VALUES('136458'); +INSERT INTO `transmog_items` (`entry`) VALUES('136473'); +INSERT INTO `transmog_items` (`entry`) VALUES('136474'); +INSERT INTO `transmog_items` (`entry`) VALUES('136475'); +INSERT INTO `transmog_items` (`entry`) VALUES('136476'); +INSERT INTO `transmog_items` (`entry`) VALUES('136477'); +INSERT INTO `transmog_items` (`entry`) VALUES('136478'); +INSERT INTO `transmog_items` (`entry`) VALUES('136479'); +INSERT INTO `transmog_items` (`entry`) VALUES('136480'); +INSERT INTO `transmog_items` (`entry`) VALUES('136481'); +INSERT INTO `transmog_items` (`entry`) VALUES('136482'); +INSERT INTO `transmog_items` (`entry`) VALUES('136483'); +INSERT INTO `transmog_items` (`entry`) VALUES('136484'); +INSERT INTO `transmog_items` (`entry`) VALUES('136485'); +INSERT INTO `transmog_items` (`entry`) VALUES('136486'); +INSERT INTO `transmog_items` (`entry`) VALUES('136487'); +INSERT INTO `transmog_items` (`entry`) VALUES('136488'); +INSERT INTO `transmog_items` (`entry`) VALUES('136489'); +INSERT INTO `transmog_items` (`entry`) VALUES('136490'); +INSERT INTO `transmog_items` (`entry`) VALUES('136491'); +INSERT INTO `transmog_items` (`entry`) VALUES('136492'); +INSERT INTO `transmog_items` (`entry`) VALUES('136493'); +INSERT INTO `transmog_items` (`entry`) VALUES('136494'); +INSERT INTO `transmog_items` (`entry`) VALUES('136495'); +INSERT INTO `transmog_items` (`entry`) VALUES('136496'); +INSERT INTO `transmog_items` (`entry`) VALUES('136497'); +INSERT INTO `transmog_items` (`entry`) VALUES('136498'); +INSERT INTO `transmog_items` (`entry`) VALUES('136499'); +INSERT INTO `transmog_items` (`entry`) VALUES('136500'); +INSERT INTO `transmog_items` (`entry`) VALUES('136557'); +INSERT INTO `transmog_items` (`entry`) VALUES('136558'); +INSERT INTO `transmog_items` (`entry`) VALUES('136559'); +INSERT INTO `transmog_items` (`entry`) VALUES('136560'); +INSERT INTO `transmog_items` (`entry`) VALUES('136561'); +INSERT INTO `transmog_items` (`entry`) VALUES('136562'); +INSERT INTO `transmog_items` (`entry`) VALUES('136563'); +INSERT INTO `transmog_items` (`entry`) VALUES('136564'); +INSERT INTO `transmog_items` (`entry`) VALUES('136565'); +INSERT INTO `transmog_items` (`entry`) VALUES('136566'); +INSERT INTO `transmog_items` (`entry`) VALUES('136567'); +INSERT INTO `transmog_items` (`entry`) VALUES('136568'); +INSERT INTO `transmog_items` (`entry`) VALUES('136569'); +INSERT INTO `transmog_items` (`entry`) VALUES('136570'); +INSERT INTO `transmog_items` (`entry`) VALUES('136585'); +INSERT INTO `transmog_items` (`entry`) VALUES('136586'); +INSERT INTO `transmog_items` (`entry`) VALUES('136587'); +INSERT INTO `transmog_items` (`entry`) VALUES('136588'); +INSERT INTO `transmog_items` (`entry`) VALUES('136589'); +INSERT INTO `transmog_items` (`entry`) VALUES('136590'); +INSERT INTO `transmog_items` (`entry`) VALUES('136591'); +INSERT INTO `transmog_items` (`entry`) VALUES('136592'); +INSERT INTO `transmog_items` (`entry`) VALUES('136593'); +INSERT INTO `transmog_items` (`entry`) VALUES('136594'); +INSERT INTO `transmog_items` (`entry`) VALUES('136595'); +INSERT INTO `transmog_items` (`entry`) VALUES('136596'); +INSERT INTO `transmog_items` (`entry`) VALUES('136597'); +INSERT INTO `transmog_items` (`entry`) VALUES('136598'); +INSERT INTO `transmog_items` (`entry`) VALUES('136599'); +INSERT INTO `transmog_items` (`entry`) VALUES('136600'); +INSERT INTO `transmog_items` (`entry`) VALUES('136601'); +INSERT INTO `transmog_items` (`entry`) VALUES('136602'); +INSERT INTO `transmog_items` (`entry`) VALUES('136603'); +INSERT INTO `transmog_items` (`entry`) VALUES('136604'); +INSERT INTO `transmog_items` (`entry`) VALUES('136605'); +INSERT INTO `transmog_items` (`entry`) VALUES('136606'); +INSERT INTO `transmog_items` (`entry`) VALUES('136607'); +INSERT INTO `transmog_items` (`entry`) VALUES('136608'); +INSERT INTO `transmog_items` (`entry`) VALUES('136609'); +INSERT INTO `transmog_items` (`entry`) VALUES('136610'); +INSERT INTO `transmog_items` (`entry`) VALUES('136611'); +INSERT INTO `transmog_items` (`entry`) VALUES('136612'); +INSERT INTO `transmog_items` (`entry`) VALUES('136613'); +INSERT INTO `transmog_items` (`entry`) VALUES('136614'); +INSERT INTO `transmog_items` (`entry`) VALUES('136615'); +INSERT INTO `transmog_items` (`entry`) VALUES('136616'); +INSERT INTO `transmog_items` (`entry`) VALUES('136617'); +INSERT INTO `transmog_items` (`entry`) VALUES('136618'); +INSERT INTO `transmog_items` (`entry`) VALUES('136619'); +INSERT INTO `transmog_items` (`entry`) VALUES('136620'); +INSERT INTO `transmog_items` (`entry`) VALUES('136621'); +INSERT INTO `transmog_items` (`entry`) VALUES('136622'); +INSERT INTO `transmog_items` (`entry`) VALUES('136623'); +INSERT INTO `transmog_items` (`entry`) VALUES('136624'); +INSERT INTO `transmog_items` (`entry`) VALUES('136625'); +INSERT INTO `transmog_items` (`entry`) VALUES('136626'); +INSERT INTO `transmog_items` (`entry`) VALUES('136627'); +INSERT INTO `transmog_items` (`entry`) VALUES('136628'); +INSERT INTO `transmog_items` (`entry`) VALUES('136629'); +INSERT INTO `transmog_items` (`entry`) VALUES('136630'); +INSERT INTO `transmog_items` (`entry`) VALUES('136631'); +INSERT INTO `transmog_items` (`entry`) VALUES('136632'); +INSERT INTO `transmog_items` (`entry`) VALUES('136633'); +INSERT INTO `transmog_items` (`entry`) VALUES('136634'); +INSERT INTO `transmog_items` (`entry`) VALUES('136635'); +INSERT INTO `transmog_items` (`entry`) VALUES('136636'); +INSERT INTO `transmog_items` (`entry`) VALUES('136637'); +INSERT INTO `transmog_items` (`entry`) VALUES('136638'); +INSERT INTO `transmog_items` (`entry`) VALUES('136639'); +INSERT INTO `transmog_items` (`entry`) VALUES('136640'); +INSERT INTO `transmog_items` (`entry`) VALUES('136641'); +INSERT INTO `transmog_items` (`entry`) VALUES('136642'); +INSERT INTO `transmog_items` (`entry`) VALUES('136643'); +INSERT INTO `transmog_items` (`entry`) VALUES('136644'); +INSERT INTO `transmog_items` (`entry`) VALUES('136645'); +INSERT INTO `transmog_items` (`entry`) VALUES('136646'); +INSERT INTO `transmog_items` (`entry`) VALUES('136647'); +INSERT INTO `transmog_items` (`entry`) VALUES('136648'); +INSERT INTO `transmog_items` (`entry`) VALUES('136649'); +INSERT INTO `transmog_items` (`entry`) VALUES('136650'); +INSERT INTO `transmog_items` (`entry`) VALUES('136651'); +INSERT INTO `transmog_items` (`entry`) VALUES('136652'); +INSERT INTO `transmog_items` (`entry`) VALUES('136653'); +INSERT INTO `transmog_items` (`entry`) VALUES('136654'); +INSERT INTO `transmog_items` (`entry`) VALUES('136655'); +INSERT INTO `transmog_items` (`entry`) VALUES('136656'); +INSERT INTO `transmog_items` (`entry`) VALUES('136657'); +INSERT INTO `transmog_items` (`entry`) VALUES('136658'); +INSERT INTO `transmog_items` (`entry`) VALUES('136659'); +INSERT INTO `transmog_items` (`entry`) VALUES('136660'); +INSERT INTO `transmog_items` (`entry`) VALUES('136661'); +INSERT INTO `transmog_items` (`entry`) VALUES('136662'); +INSERT INTO `transmog_items` (`entry`) VALUES('136663'); +INSERT INTO `transmog_items` (`entry`) VALUES('136664'); +INSERT INTO `transmog_items` (`entry`) VALUES('136665'); +INSERT INTO `transmog_items` (`entry`) VALUES('136666'); +INSERT INTO `transmog_items` (`entry`) VALUES('136667'); +INSERT INTO `transmog_items` (`entry`) VALUES('136668'); +INSERT INTO `transmog_items` (`entry`) VALUES('136669'); +INSERT INTO `transmog_items` (`entry`) VALUES('136670'); +INSERT INTO `transmog_items` (`entry`) VALUES('136671'); +INSERT INTO `transmog_items` (`entry`) VALUES('136672'); +INSERT INTO `transmog_items` (`entry`) VALUES('136673'); +INSERT INTO `transmog_items` (`entry`) VALUES('136674'); +INSERT INTO `transmog_items` (`entry`) VALUES('136675'); +INSERT INTO `transmog_items` (`entry`) VALUES('136676'); +INSERT INTO `transmog_items` (`entry`) VALUES('136677'); +INSERT INTO `transmog_items` (`entry`) VALUES('136678'); +INSERT INTO `transmog_items` (`entry`) VALUES('136679'); +INSERT INTO `transmog_items` (`entry`) VALUES('136680'); +INSERT INTO `transmog_items` (`entry`) VALUES('136681'); +INSERT INTO `transmog_items` (`entry`) VALUES('136682'); +INSERT INTO `transmog_items` (`entry`) VALUES('136683'); +INSERT INTO `transmog_items` (`entry`) VALUES('136684'); +INSERT INTO `transmog_items` (`entry`) VALUES('136685'); +INSERT INTO `transmog_items` (`entry`) VALUES('136686'); +INSERT INTO `transmog_items` (`entry`) VALUES('136687'); +INSERT INTO `transmog_items` (`entry`) VALUES('136688'); +INSERT INTO `transmog_items` (`entry`) VALUES('136689'); +INSERT INTO `transmog_items` (`entry`) VALUES('136690'); +INSERT INTO `transmog_items` (`entry`) VALUES('136691'); +INSERT INTO `transmog_items` (`entry`) VALUES('136692'); +INSERT INTO `transmog_items` (`entry`) VALUES('136693'); +INSERT INTO `transmog_items` (`entry`) VALUES('136694'); +INSERT INTO `transmog_items` (`entry`) VALUES('136695'); +INSERT INTO `transmog_items` (`entry`) VALUES('136696'); +INSERT INTO `transmog_items` (`entry`) VALUES('136711'); +INSERT INTO `transmog_items` (`entry`) VALUES('136712'); +INSERT INTO `transmog_items` (`entry`) VALUES('136713'); +INSERT INTO `transmog_items` (`entry`) VALUES('136714'); +INSERT INTO `transmog_items` (`entry`) VALUES('136715'); +INSERT INTO `transmog_items` (`entry`) VALUES('136716'); +INSERT INTO `transmog_items` (`entry`) VALUES('136717'); +INSERT INTO `transmog_items` (`entry`) VALUES('136718'); +INSERT INTO `transmog_items` (`entry`) VALUES('136719'); +INSERT INTO `transmog_items` (`entry`) VALUES('136720'); +INSERT INTO `transmog_items` (`entry`) VALUES('136721'); +INSERT INTO `transmog_items` (`entry`) VALUES('136722'); +INSERT INTO `transmog_items` (`entry`) VALUES('136723'); +INSERT INTO `transmog_items` (`entry`) VALUES('136724'); +INSERT INTO `transmog_items` (`entry`) VALUES('136879'); +INSERT INTO `transmog_items` (`entry`) VALUES('136880'); +INSERT INTO `transmog_items` (`entry`) VALUES('136881'); +INSERT INTO `transmog_items` (`entry`) VALUES('136882'); +INSERT INTO `transmog_items` (`entry`) VALUES('136884'); +INSERT INTO `transmog_items` (`entry`) VALUES('136885'); +INSERT INTO `transmog_items` (`entry`) VALUES('136886'); +INSERT INTO `transmog_items` (`entry`) VALUES('136887'); +INSERT INTO `transmog_items` (`entry`) VALUES('136888'); +INSERT INTO `transmog_items` (`entry`) VALUES('136937'); +INSERT INTO `transmog_items` (`entry`) VALUES('136938'); +INSERT INTO `transmog_items` (`entry`) VALUES('136939'); +INSERT INTO `transmog_items` (`entry`) VALUES('136944'); +INSERT INTO `transmog_items` (`entry`) VALUES('136945'); +INSERT INTO `transmog_items` (`entry`) VALUES('136946'); +INSERT INTO `transmog_items` (`entry`) VALUES('136947'); +INSERT INTO `transmog_items` (`entry`) VALUES('136948'); +INSERT INTO `transmog_items` (`entry`) VALUES('136949'); +INSERT INTO `transmog_items` (`entry`) VALUES('136950'); +INSERT INTO `transmog_items` (`entry`) VALUES('136951'); +INSERT INTO `transmog_items` (`entry`) VALUES('136952'); +INSERT INTO `transmog_items` (`entry`) VALUES('136953'); +INSERT INTO `transmog_items` (`entry`) VALUES('136954'); +INSERT INTO `transmog_items` (`entry`) VALUES('136962'); +INSERT INTO `transmog_items` (`entry`) VALUES('136969'); +INSERT INTO `transmog_items` (`entry`) VALUES('136971'); +INSERT INTO `transmog_items` (`entry`) VALUES('136973'); +INSERT INTO `transmog_items` (`entry`) VALUES('136974'); +INSERT INTO `transmog_items` (`entry`) VALUES('136976'); +INSERT INTO `transmog_items` (`entry`) VALUES('136977'); +INSERT INTO `transmog_items` (`entry`) VALUES('136978'); +INSERT INTO `transmog_items` (`entry`) VALUES('136981'); +INSERT INTO `transmog_items` (`entry`) VALUES('136982'); +INSERT INTO `transmog_items` (`entry`) VALUES('136983'); +INSERT INTO `transmog_items` (`entry`) VALUES('136985'); +INSERT INTO `transmog_items` (`entry`) VALUES('136986'); +INSERT INTO `transmog_items` (`entry`) VALUES('136989'); +INSERT INTO `transmog_items` (`entry`) VALUES('136991'); +INSERT INTO `transmog_items` (`entry`) VALUES('136992'); +INSERT INTO `transmog_items` (`entry`) VALUES('136994'); +INSERT INTO `transmog_items` (`entry`) VALUES('136995'); +INSERT INTO `transmog_items` (`entry`) VALUES('136996'); +INSERT INTO `transmog_items` (`entry`) VALUES('136997'); +INSERT INTO `transmog_items` (`entry`) VALUES('136998'); +INSERT INTO `transmog_items` (`entry`) VALUES('136999'); +INSERT INTO `transmog_items` (`entry`) VALUES('137000'); +INSERT INTO `transmog_items` (`entry`) VALUES('137002'); +INSERT INTO `transmog_items` (`entry`) VALUES('137004'); +INSERT INTO `transmog_items` (`entry`) VALUES('137005'); +INSERT INTO `transmog_items` (`entry`) VALUES('137007'); +INSERT INTO `transmog_items` (`entry`) VALUES('137008'); +INSERT INTO `transmog_items` (`entry`) VALUES('137009'); +INSERT INTO `transmog_items` (`entry`) VALUES('137014'); +INSERT INTO `transmog_items` (`entry`) VALUES('137015'); +INSERT INTO `transmog_items` (`entry`) VALUES('137016'); +INSERT INTO `transmog_items` (`entry`) VALUES('137017'); +INSERT INTO `transmog_items` (`entry`) VALUES('137018'); +INSERT INTO `transmog_items` (`entry`) VALUES('137019'); +INSERT INTO `transmog_items` (`entry`) VALUES('137021'); +INSERT INTO `transmog_items` (`entry`) VALUES('137022'); +INSERT INTO `transmog_items` (`entry`) VALUES('137023'); +INSERT INTO `transmog_items` (`entry`) VALUES('137025'); +INSERT INTO `transmog_items` (`entry`) VALUES('137028'); +INSERT INTO `transmog_items` (`entry`) VALUES('137029'); +INSERT INTO `transmog_items` (`entry`) VALUES('137036'); +INSERT INTO `transmog_items` (`entry`) VALUES('137037'); +INSERT INTO `transmog_items` (`entry`) VALUES('137038'); +INSERT INTO `transmog_items` (`entry`) VALUES('137040'); +INSERT INTO `transmog_items` (`entry`) VALUES('137041'); +INSERT INTO `transmog_items` (`entry`) VALUES('137042'); +INSERT INTO `transmog_items` (`entry`) VALUES('137043'); +INSERT INTO `transmog_items` (`entry`) VALUES('137044'); +INSERT INTO `transmog_items` (`entry`) VALUES('137047'); +INSERT INTO `transmog_items` (`entry`) VALUES('137048'); +INSERT INTO `transmog_items` (`entry`) VALUES('137049'); +INSERT INTO `transmog_items` (`entry`) VALUES('137050'); +INSERT INTO `transmog_items` (`entry`) VALUES('137052'); +INSERT INTO `transmog_items` (`entry`) VALUES('137054'); +INSERT INTO `transmog_items` (`entry`) VALUES('137055'); +INSERT INTO `transmog_items` (`entry`) VALUES('137056'); +INSERT INTO `transmog_items` (`entry`) VALUES('137057'); +INSERT INTO `transmog_items` (`entry`) VALUES('137061'); +INSERT INTO `transmog_items` (`entry`) VALUES('137062'); +INSERT INTO `transmog_items` (`entry`) VALUES('137066'); +INSERT INTO `transmog_items` (`entry`) VALUES('137067'); +INSERT INTO `transmog_items` (`entry`) VALUES('137068'); +INSERT INTO `transmog_items` (`entry`) VALUES('137069'); +INSERT INTO `transmog_items` (`entry`) VALUES('137070'); +INSERT INTO `transmog_items` (`entry`) VALUES('137072'); +INSERT INTO `transmog_items` (`entry`) VALUES('137075'); +INSERT INTO `transmog_items` (`entry`) VALUES('137077'); +INSERT INTO `transmog_items` (`entry`) VALUES('137078'); +INSERT INTO `transmog_items` (`entry`) VALUES('137082'); +INSERT INTO `transmog_items` (`entry`) VALUES('137083'); +INSERT INTO `transmog_items` (`entry`) VALUES('137084'); +INSERT INTO `transmog_items` (`entry`) VALUES('137088'); +INSERT INTO `transmog_items` (`entry`) VALUES('137095'); +INSERT INTO `transmog_items` (`entry`) VALUES('137105'); +INSERT INTO `transmog_items` (`entry`) VALUES('137106'); +INSERT INTO `transmog_items` (`entry`) VALUES('137107'); +INSERT INTO `transmog_items` (`entry`) VALUES('137109'); +INSERT INTO `transmog_items` (`entry`) VALUES('137110'); +INSERT INTO `transmog_items` (`entry`) VALUES('137112'); +INSERT INTO `transmog_items` (`entry`) VALUES('137113'); +INSERT INTO `transmog_items` (`entry`) VALUES('137114'); +INSERT INTO `transmog_items` (`entry`) VALUES('137115'); +INSERT INTO `transmog_items` (`entry`) VALUES('137116'); +INSERT INTO `transmog_items` (`entry`) VALUES('137117'); +INSERT INTO `transmog_items` (`entry`) VALUES('137122'); +INSERT INTO `transmog_items` (`entry`) VALUES('137135'); +INSERT INTO `transmog_items` (`entry`) VALUES('137138'); +INSERT INTO `transmog_items` (`entry`) VALUES('137139'); +INSERT INTO `transmog_items` (`entry`) VALUES('137144'); +INSERT INTO `transmog_items` (`entry`) VALUES('137149'); +INSERT INTO `transmog_items` (`entry`) VALUES('137150'); +INSERT INTO `transmog_items` (`entry`) VALUES('137152'); +INSERT INTO `transmog_items` (`entry`) VALUES('137153'); +INSERT INTO `transmog_items` (`entry`) VALUES('137154'); +INSERT INTO `transmog_items` (`entry`) VALUES('137155'); +INSERT INTO `transmog_items` (`entry`) VALUES('137162'); +INSERT INTO `transmog_items` (`entry`) VALUES('137165'); +INSERT INTO `transmog_items` (`entry`) VALUES('137167'); +INSERT INTO `transmog_items` (`entry`) VALUES('137169'); +INSERT INTO `transmog_items` (`entry`) VALUES('137170'); +INSERT INTO `transmog_items` (`entry`) VALUES('137171'); +INSERT INTO `transmog_items` (`entry`) VALUES('137172'); +INSERT INTO `transmog_items` (`entry`) VALUES('137174'); +INSERT INTO `transmog_items` (`entry`) VALUES('137175'); +INSERT INTO `transmog_items` (`entry`) VALUES('137176'); +INSERT INTO `transmog_items` (`entry`) VALUES('137177'); +INSERT INTO `transmog_items` (`entry`) VALUES('137178'); +INSERT INTO `transmog_items` (`entry`) VALUES('137180'); +INSERT INTO `transmog_items` (`entry`) VALUES('137181'); +INSERT INTO `transmog_items` (`entry`) VALUES('137182'); +INSERT INTO `transmog_items` (`entry`) VALUES('137183'); +INSERT INTO `transmog_items` (`entry`) VALUES('137184'); +INSERT INTO `transmog_items` (`entry`) VALUES('137188'); +INSERT INTO `transmog_items` (`entry`) VALUES('137189'); +INSERT INTO `transmog_items` (`entry`) VALUES('137191'); +INSERT INTO `transmog_items` (`entry`) VALUES('137193'); +INSERT INTO `transmog_items` (`entry`) VALUES('137194'); +INSERT INTO `transmog_items` (`entry`) VALUES('137196'); +INSERT INTO `transmog_items` (`entry`) VALUES('137197'); +INSERT INTO `transmog_items` (`entry`) VALUES('137203'); +INSERT INTO `transmog_items` (`entry`) VALUES('137204'); +INSERT INTO `transmog_items` (`entry`) VALUES('137205'); +INSERT INTO `transmog_items` (`entry`) VALUES('137206'); +INSERT INTO `transmog_items` (`entry`) VALUES('137207'); +INSERT INTO `transmog_items` (`entry`) VALUES('137208'); +INSERT INTO `transmog_items` (`entry`) VALUES('137209'); +INSERT INTO `transmog_items` (`entry`) VALUES('137210'); +INSERT INTO `transmog_items` (`entry`) VALUES('137211'); +INSERT INTO `transmog_items` (`entry`) VALUES('137212'); +INSERT INTO `transmog_items` (`entry`) VALUES('137213'); +INSERT INTO `transmog_items` (`entry`) VALUES('137214'); +INSERT INTO `transmog_items` (`entry`) VALUES('137215'); +INSERT INTO `transmog_items` (`entry`) VALUES('137216'); +INSERT INTO `transmog_items` (`entry`) VALUES('137217'); +INSERT INTO `transmog_items` (`entry`) VALUES('137218'); +INSERT INTO `transmog_items` (`entry`) VALUES('137219'); +INSERT INTO `transmog_items` (`entry`) VALUES('137221'); +INSERT INTO `transmog_items` (`entry`) VALUES('137222'); +INSERT INTO `transmog_items` (`entry`) VALUES('137223'); +INSERT INTO `transmog_items` (`entry`) VALUES('137224'); +INSERT INTO `transmog_items` (`entry`) VALUES('137225'); +INSERT INTO `transmog_items` (`entry`) VALUES('137226'); +INSERT INTO `transmog_items` (`entry`) VALUES('137227'); +INSERT INTO `transmog_items` (`entry`) VALUES('137228'); +INSERT INTO `transmog_items` (`entry`) VALUES('137230'); +INSERT INTO `transmog_items` (`entry`) VALUES('137234'); +INSERT INTO `transmog_items` (`entry`) VALUES('137236'); +INSERT INTO `transmog_items` (`entry`) VALUES('137237'); +INSERT INTO `transmog_items` (`entry`) VALUES('137238'); +INSERT INTO `transmog_items` (`entry`) VALUES('137239'); +INSERT INTO `transmog_items` (`entry`) VALUES('137240'); +INSERT INTO `transmog_items` (`entry`) VALUES('137241'); +INSERT INTO `transmog_items` (`entry`) VALUES('137242'); +INSERT INTO `transmog_items` (`entry`) VALUES('137243'); +INSERT INTO `transmog_items` (`entry`) VALUES('137244'); +INSERT INTO `transmog_items` (`entry`) VALUES('137245'); +INSERT INTO `transmog_items` (`entry`) VALUES('137256'); +INSERT INTO `transmog_items` (`entry`) VALUES('137258'); +INSERT INTO `transmog_items` (`entry`) VALUES('137261'); +INSERT INTO `transmog_items` (`entry`) VALUES('137262'); +INSERT INTO `transmog_items` (`entry`) VALUES('137263'); +INSERT INTO `transmog_items` (`entry`) VALUES('137270'); +INSERT INTO `transmog_items` (`entry`) VALUES('137271'); +INSERT INTO `transmog_items` (`entry`) VALUES('137272'); +INSERT INTO `transmog_items` (`entry`) VALUES('137273'); +INSERT INTO `transmog_items` (`entry`) VALUES('137274'); +INSERT INTO `transmog_items` (`entry`) VALUES('137275'); +INSERT INTO `transmog_items` (`entry`) VALUES('137276'); +INSERT INTO `transmog_items` (`entry`) VALUES('137277'); +INSERT INTO `transmog_items` (`entry`) VALUES('137280'); +INSERT INTO `transmog_items` (`entry`) VALUES('137282'); +INSERT INTO `transmog_items` (`entry`) VALUES('137283'); +INSERT INTO `transmog_items` (`entry`) VALUES('137288'); +INSERT INTO `transmog_items` (`entry`) VALUES('137289'); +INSERT INTO `transmog_items` (`entry`) VALUES('137291'); +INSERT INTO `transmog_items` (`entry`) VALUES('137292'); +INSERT INTO `transmog_items` (`entry`) VALUES('137293'); +INSERT INTO `transmog_items` (`entry`) VALUES('137294'); +INSERT INTO `transmog_items` (`entry`) VALUES('137319'); +INSERT INTO `transmog_items` (`entry`) VALUES('137320'); +INSERT INTO `transmog_items` (`entry`) VALUES('137322'); +INSERT INTO `transmog_items` (`entry`) VALUES('137325'); +INSERT INTO `transmog_items` (`entry`) VALUES('137351'); +INSERT INTO `transmog_items` (`entry`) VALUES('137352'); +INSERT INTO `transmog_items` (`entry`) VALUES('137353'); +INSERT INTO `transmog_items` (`entry`) VALUES('137354'); +INSERT INTO `transmog_items` (`entry`) VALUES('137355'); +INSERT INTO `transmog_items` (`entry`) VALUES('137356'); +INSERT INTO `transmog_items` (`entry`) VALUES('137357'); +INSERT INTO `transmog_items` (`entry`) VALUES('137361'); +INSERT INTO `transmog_items` (`entry`) VALUES('137362'); +INSERT INTO `transmog_items` (`entry`) VALUES('137363'); +INSERT INTO `transmog_items` (`entry`) VALUES('137365'); +INSERT INTO `transmog_items` (`entry`) VALUES('137366'); +INSERT INTO `transmog_items` (`entry`) VALUES('137367'); +INSERT INTO `transmog_items` (`entry`) VALUES('137368'); +INSERT INTO `transmog_items` (`entry`) VALUES('137369'); +INSERT INTO `transmog_items` (`entry`) VALUES('137370'); +INSERT INTO `transmog_items` (`entry`) VALUES('137373'); +INSERT INTO `transmog_items` (`entry`) VALUES('137374'); +INSERT INTO `transmog_items` (`entry`) VALUES('137375'); +INSERT INTO `transmog_items` (`entry`) VALUES('137376'); +INSERT INTO `transmog_items` (`entry`) VALUES('137377'); +INSERT INTO `transmog_items` (`entry`) VALUES('137378'); +INSERT INTO `transmog_items` (`entry`) VALUES('137379'); +INSERT INTO `transmog_items` (`entry`) VALUES('137380'); +INSERT INTO `transmog_items` (`entry`) VALUES('137382'); +INSERT INTO `transmog_items` (`entry`) VALUES('137383'); +INSERT INTO `transmog_items` (`entry`) VALUES('137385'); +INSERT INTO `transmog_items` (`entry`) VALUES('137386'); +INSERT INTO `transmog_items` (`entry`) VALUES('137387'); +INSERT INTO `transmog_items` (`entry`) VALUES('137388'); +INSERT INTO `transmog_items` (`entry`) VALUES('137389'); +INSERT INTO `transmog_items` (`entry`) VALUES('137391'); +INSERT INTO `transmog_items` (`entry`) VALUES('137392'); +INSERT INTO `transmog_items` (`entry`) VALUES('137393'); +INSERT INTO `transmog_items` (`entry`) VALUES('137394'); +INSERT INTO `transmog_items` (`entry`) VALUES('137395'); +INSERT INTO `transmog_items` (`entry`) VALUES('137396'); +INSERT INTO `transmog_items` (`entry`) VALUES('137398'); +INSERT INTO `transmog_items` (`entry`) VALUES('137399'); +INSERT INTO `transmog_items` (`entry`) VALUES('137400'); +INSERT INTO `transmog_items` (`entry`) VALUES('137402'); +INSERT INTO `transmog_items` (`entry`) VALUES('137403'); +INSERT INTO `transmog_items` (`entry`) VALUES('137404'); +INSERT INTO `transmog_items` (`entry`) VALUES('137405'); +INSERT INTO `transmog_items` (`entry`) VALUES('137406'); +INSERT INTO `transmog_items` (`entry`) VALUES('137407'); +INSERT INTO `transmog_items` (`entry`) VALUES('137408'); +INSERT INTO `transmog_items` (`entry`) VALUES('137409'); +INSERT INTO `transmog_items` (`entry`) VALUES('137410'); +INSERT INTO `transmog_items` (`entry`) VALUES('137414'); +INSERT INTO `transmog_items` (`entry`) VALUES('137415'); +INSERT INTO `transmog_items` (`entry`) VALUES('137417'); +INSERT INTO `transmog_items` (`entry`) VALUES('137418'); +INSERT INTO `transmog_items` (`entry`) VALUES('137419'); +INSERT INTO `transmog_items` (`entry`) VALUES('137420'); +INSERT INTO `transmog_items` (`entry`) VALUES('137421'); +INSERT INTO `transmog_items` (`entry`) VALUES('137422'); +INSERT INTO `transmog_items` (`entry`) VALUES('137423'); +INSERT INTO `transmog_items` (`entry`) VALUES('137424'); +INSERT INTO `transmog_items` (`entry`) VALUES('137425'); +INSERT INTO `transmog_items` (`entry`) VALUES('137426'); +INSERT INTO `transmog_items` (`entry`) VALUES('137427'); +INSERT INTO `transmog_items` (`entry`) VALUES('137428'); +INSERT INTO `transmog_items` (`entry`) VALUES('137429'); +INSERT INTO `transmog_items` (`entry`) VALUES('137433'); +INSERT INTO `transmog_items` (`entry`) VALUES('137434'); +INSERT INTO `transmog_items` (`entry`) VALUES('137435'); +INSERT INTO `transmog_items` (`entry`) VALUES('137436'); +INSERT INTO `transmog_items` (`entry`) VALUES('137437'); +INSERT INTO `transmog_items` (`entry`) VALUES('137439'); +INSERT INTO `transmog_items` (`entry`) VALUES('137440'); +INSERT INTO `transmog_items` (`entry`) VALUES('137441'); +INSERT INTO `transmog_items` (`entry`) VALUES('137442'); +INSERT INTO `transmog_items` (`entry`) VALUES('137443'); +INSERT INTO `transmog_items` (`entry`) VALUES('137444'); +INSERT INTO `transmog_items` (`entry`) VALUES('137446'); +INSERT INTO `transmog_items` (`entry`) VALUES('137447'); +INSERT INTO `transmog_items` (`entry`) VALUES('137456'); +INSERT INTO `transmog_items` (`entry`) VALUES('137458'); +INSERT INTO `transmog_items` (`entry`) VALUES('137461'); +INSERT INTO `transmog_items` (`entry`) VALUES('137462'); +INSERT INTO `transmog_items` (`entry`) VALUES('137463'); +INSERT INTO `transmog_items` (`entry`) VALUES('137471'); +INSERT INTO `transmog_items` (`entry`) VALUES('137475'); +INSERT INTO `transmog_items` (`entry`) VALUES('137476'); +INSERT INTO `transmog_items` (`entry`) VALUES('137477'); +INSERT INTO `transmog_items` (`entry`) VALUES('137478'); +INSERT INTO `transmog_items` (`entry`) VALUES('137479'); +INSERT INTO `transmog_items` (`entry`) VALUES('137480'); +INSERT INTO `transmog_items` (`entry`) VALUES('137481'); +INSERT INTO `transmog_items` (`entry`) VALUES('137482'); +INSERT INTO `transmog_items` (`entry`) VALUES('137483'); +INSERT INTO `transmog_items` (`entry`) VALUES('137484'); +INSERT INTO `transmog_items` (`entry`) VALUES('137485'); +INSERT INTO `transmog_items` (`entry`) VALUES('137486'); +INSERT INTO `transmog_items` (`entry`) VALUES('137487'); +INSERT INTO `transmog_items` (`entry`) VALUES('137505'); +INSERT INTO `transmog_items` (`entry`) VALUES('137506'); +INSERT INTO `transmog_items` (`entry`) VALUES('137507'); +INSERT INTO `transmog_items` (`entry`) VALUES('137508'); +INSERT INTO `transmog_items` (`entry`) VALUES('137509'); +INSERT INTO `transmog_items` (`entry`) VALUES('137510'); +INSERT INTO `transmog_items` (`entry`) VALUES('137511'); +INSERT INTO `transmog_items` (`entry`) VALUES('137512'); +INSERT INTO `transmog_items` (`entry`) VALUES('137513'); +INSERT INTO `transmog_items` (`entry`) VALUES('137514'); +INSERT INTO `transmog_items` (`entry`) VALUES('137515'); +INSERT INTO `transmog_items` (`entry`) VALUES('137516'); +INSERT INTO `transmog_items` (`entry`) VALUES('137517'); +INSERT INTO `transmog_items` (`entry`) VALUES('137518'); +INSERT INTO `transmog_items` (`entry`) VALUES('137519'); +INSERT INTO `transmog_items` (`entry`) VALUES('137520'); +INSERT INTO `transmog_items` (`entry`) VALUES('137521'); +INSERT INTO `transmog_items` (`entry`) VALUES('137522'); +INSERT INTO `transmog_items` (`entry`) VALUES('137547'); +INSERT INTO `transmog_items` (`entry`) VALUES('137564'); +INSERT INTO `transmog_items` (`entry`) VALUES('137566'); +INSERT INTO `transmog_items` (`entry`) VALUES('137587'); +INSERT INTO `transmog_items` (`entry`) VALUES('137590'); +INSERT INTO `transmog_items` (`entry`) VALUES('137592'); +INSERT INTO `transmog_items` (`entry`) VALUES('137593'); +INSERT INTO `transmog_items` (`entry`) VALUES('137594'); +INSERT INTO `transmog_items` (`entry`) VALUES('137597'); +INSERT INTO `transmog_items` (`entry`) VALUES('137611'); +INSERT INTO `transmog_items` (`entry`) VALUES('137612'); +INSERT INTO `transmog_items` (`entry`) VALUES('137613'); +INSERT INTO `transmog_items` (`entry`) VALUES('137614'); +INSERT INTO `transmog_items` (`entry`) VALUES('137615'); +INSERT INTO `transmog_items` (`entry`) VALUES('137616'); +INSERT INTO `transmog_items` (`entry`) VALUES('137618'); +INSERT INTO `transmog_items` (`entry`) VALUES('137619'); +INSERT INTO `transmog_items` (`entry`) VALUES('137620'); +INSERT INTO `transmog_items` (`entry`) VALUES('137622'); +INSERT INTO `transmog_items` (`entry`) VALUES('137623'); +INSERT INTO `transmog_items` (`entry`) VALUES('137625'); +INSERT INTO `transmog_items` (`entry`) VALUES('137626'); +INSERT INTO `transmog_items` (`entry`) VALUES('137627'); +INSERT INTO `transmog_items` (`entry`) VALUES('137628'); +INSERT INTO `transmog_items` (`entry`) VALUES('137629'); +INSERT INTO `transmog_items` (`entry`) VALUES('137630'); +INSERT INTO `transmog_items` (`entry`) VALUES('137631'); +INSERT INTO `transmog_items` (`entry`) VALUES('137632'); +INSERT INTO `transmog_items` (`entry`) VALUES('137633'); +INSERT INTO `transmog_items` (`entry`) VALUES('137634'); +INSERT INTO `transmog_items` (`entry`) VALUES('137635'); +INSERT INTO `transmog_items` (`entry`) VALUES('137636'); +INSERT INTO `transmog_items` (`entry`) VALUES('137637'); +INSERT INTO `transmog_items` (`entry`) VALUES('137639'); +INSERT INTO `transmog_items` (`entry`) VALUES('137640'); +INSERT INTO `transmog_items` (`entry`) VALUES('137641'); +INSERT INTO `transmog_items` (`entry`) VALUES('137643'); +INSERT INTO `transmog_items` (`entry`) VALUES('137644'); +INSERT INTO `transmog_items` (`entry`) VALUES('137645'); +INSERT INTO `transmog_items` (`entry`) VALUES('137647'); +INSERT INTO `transmog_items` (`entry`) VALUES('137648'); +INSERT INTO `transmog_items` (`entry`) VALUES('137649'); +INSERT INTO `transmog_items` (`entry`) VALUES('137650'); +INSERT INTO `transmog_items` (`entry`) VALUES('137652'); +INSERT INTO `transmog_items` (`entry`) VALUES('137654'); +INSERT INTO `transmog_items` (`entry`) VALUES('137655'); +INSERT INTO `transmog_items` (`entry`) VALUES('137656'); +INSERT INTO `transmog_items` (`entry`) VALUES('137658'); +INSERT INTO `transmog_items` (`entry`) VALUES('137666'); +INSERT INTO `transmog_items` (`entry`) VALUES('137667'); +INSERT INTO `transmog_items` (`entry`) VALUES('137668'); +INSERT INTO `transmog_items` (`entry`) VALUES('137669'); +INSERT INTO `transmog_items` (`entry`) VALUES('137670'); +INSERT INTO `transmog_items` (`entry`) VALUES('137671'); +INSERT INTO `transmog_items` (`entry`) VALUES('137672'); +INSERT INTO `transmog_items` (`entry`) VALUES('137673'); +INSERT INTO `transmog_items` (`entry`) VALUES('137675'); +INSERT INTO `transmog_items` (`entry`) VALUES('137678'); +INSERT INTO `transmog_items` (`entry`) VALUES('137679'); +INSERT INTO `transmog_items` (`entry`) VALUES('137680'); +INSERT INTO `transmog_items` (`entry`) VALUES('137681'); +INSERT INTO `transmog_items` (`entry`) VALUES('137682'); +INSERT INTO `transmog_items` (`entry`) VALUES('137684'); +INSERT INTO `transmog_items` (`entry`) VALUES('137686'); +INSERT INTO `transmog_items` (`entry`) VALUES('137687'); +INSERT INTO `transmog_items` (`entry`) VALUES('137688'); +INSERT INTO `transmog_items` (`entry`) VALUES('137690'); +INSERT INTO `transmog_items` (`entry`) VALUES('137691'); +INSERT INTO `transmog_items` (`entry`) VALUES('137692'); +INSERT INTO `transmog_items` (`entry`) VALUES('137693'); +INSERT INTO `transmog_items` (`entry`) VALUES('137695'); +INSERT INTO `transmog_items` (`entry`) VALUES('137696'); +INSERT INTO `transmog_items` (`entry`) VALUES('137697'); +INSERT INTO `transmog_items` (`entry`) VALUES('137698'); +INSERT INTO `transmog_items` (`entry`) VALUES('137699'); +INSERT INTO `transmog_items` (`entry`) VALUES('137708'); +INSERT INTO `transmog_items` (`entry`) VALUES('137712'); +INSERT INTO `transmog_items` (`entry`) VALUES('137714'); +INSERT INTO `transmog_items` (`entry`) VALUES('137715'); +INSERT INTO `transmog_items` (`entry`) VALUES('137717'); +INSERT INTO `transmog_items` (`entry`) VALUES('137722'); +INSERT INTO `transmog_items` (`entry`) VALUES('137724'); +INSERT INTO `transmog_items` (`entry`) VALUES('137725'); +INSERT INTO `transmog_items` (`entry`) VALUES('137726'); +INSERT INTO `transmog_items` (`entry`) VALUES('137728'); +INSERT INTO `transmog_items` (`entry`) VALUES('137729'); +INSERT INTO `transmog_items` (`entry`) VALUES('137730'); +INSERT INTO `transmog_items` (`entry`) VALUES('137731'); +INSERT INTO `transmog_items` (`entry`) VALUES('137735'); +INSERT INTO `transmog_items` (`entry`) VALUES('137739'); +INSERT INTO `transmog_items` (`entry`) VALUES('137740'); +INSERT INTO `transmog_items` (`entry`) VALUES('137743'); +INSERT INTO `transmog_items` (`entry`) VALUES('137744'); +INSERT INTO `transmog_items` (`entry`) VALUES('137745'); +INSERT INTO `transmog_items` (`entry`) VALUES('137746'); +INSERT INTO `transmog_items` (`entry`) VALUES('137747'); +INSERT INTO `transmog_items` (`entry`) VALUES('137749'); +INSERT INTO `transmog_items` (`entry`) VALUES('137752'); +INSERT INTO `transmog_items` (`entry`) VALUES('137753'); +INSERT INTO `transmog_items` (`entry`) VALUES('137754'); +INSERT INTO `transmog_items` (`entry`) VALUES('137755'); +INSERT INTO `transmog_items` (`entry`) VALUES('137756'); +INSERT INTO `transmog_items` (`entry`) VALUES('137757'); +INSERT INTO `transmog_items` (`entry`) VALUES('137759'); +INSERT INTO `transmog_items` (`entry`) VALUES('137760'); +INSERT INTO `transmog_items` (`entry`) VALUES('137761'); +INSERT INTO `transmog_items` (`entry`) VALUES('137762'); +INSERT INTO `transmog_items` (`entry`) VALUES('137763'); +INSERT INTO `transmog_items` (`entry`) VALUES('137764'); +INSERT INTO `transmog_items` (`entry`) VALUES('137765'); +INSERT INTO `transmog_items` (`entry`) VALUES('137766'); +INSERT INTO `transmog_items` (`entry`) VALUES('137767'); +INSERT INTO `transmog_items` (`entry`) VALUES('137768'); +INSERT INTO `transmog_items` (`entry`) VALUES('137769'); +INSERT INTO `transmog_items` (`entry`) VALUES('137770'); +INSERT INTO `transmog_items` (`entry`) VALUES('137771'); +INSERT INTO `transmog_items` (`entry`) VALUES('137772'); +INSERT INTO `transmog_items` (`entry`) VALUES('137773'); +INSERT INTO `transmog_items` (`entry`) VALUES('137774'); +INSERT INTO `transmog_items` (`entry`) VALUES('137775'); +INSERT INTO `transmog_items` (`entry`) VALUES('137776'); +INSERT INTO `transmog_items` (`entry`) VALUES('137777'); +INSERT INTO `transmog_items` (`entry`) VALUES('137778'); +INSERT INTO `transmog_items` (`entry`) VALUES('137779'); +INSERT INTO `transmog_items` (`entry`) VALUES('137780'); +INSERT INTO `transmog_items` (`entry`) VALUES('137781'); +INSERT INTO `transmog_items` (`entry`) VALUES('137782'); +INSERT INTO `transmog_items` (`entry`) VALUES('137783'); +INSERT INTO `transmog_items` (`entry`) VALUES('137785'); +INSERT INTO `transmog_items` (`entry`) VALUES('137786'); +INSERT INTO `transmog_items` (`entry`) VALUES('137787'); +INSERT INTO `transmog_items` (`entry`) VALUES('137788'); +INSERT INTO `transmog_items` (`entry`) VALUES('137789'); +INSERT INTO `transmog_items` (`entry`) VALUES('137790'); +INSERT INTO `transmog_items` (`entry`) VALUES('137791'); +INSERT INTO `transmog_items` (`entry`) VALUES('137792'); +INSERT INTO `transmog_items` (`entry`) VALUES('137793'); +INSERT INTO `transmog_items` (`entry`) VALUES('137795'); +INSERT INTO `transmog_items` (`entry`) VALUES('137796'); +INSERT INTO `transmog_items` (`entry`) VALUES('137797'); +INSERT INTO `transmog_items` (`entry`) VALUES('137798'); +INSERT INTO `transmog_items` (`entry`) VALUES('137799'); +INSERT INTO `transmog_items` (`entry`) VALUES('137800'); +INSERT INTO `transmog_items` (`entry`) VALUES('137801'); +INSERT INTO `transmog_items` (`entry`) VALUES('137802'); +INSERT INTO `transmog_items` (`entry`) VALUES('137805'); +INSERT INTO `transmog_items` (`entry`) VALUES('137808'); +INSERT INTO `transmog_items` (`entry`) VALUES('137809'); +INSERT INTO `transmog_items` (`entry`) VALUES('137810'); +INSERT INTO `transmog_items` (`entry`) VALUES('137811'); +INSERT INTO `transmog_items` (`entry`) VALUES('137813'); +INSERT INTO `transmog_items` (`entry`) VALUES('137814'); +INSERT INTO `transmog_items` (`entry`) VALUES('137818'); +INSERT INTO `transmog_items` (`entry`) VALUES('137824'); +INSERT INTO `transmog_items` (`entry`) VALUES('137825'); +INSERT INTO `transmog_items` (`entry`) VALUES('137826'); +INSERT INTO `transmog_items` (`entry`) VALUES('137840'); +INSERT INTO `transmog_items` (`entry`) VALUES('137841'); +INSERT INTO `transmog_items` (`entry`) VALUES('137842'); +INSERT INTO `transmog_items` (`entry`) VALUES('137843'); +INSERT INTO `transmog_items` (`entry`) VALUES('137845'); +INSERT INTO `transmog_items` (`entry`) VALUES('137846'); +INSERT INTO `transmog_items` (`entry`) VALUES('137847'); +INSERT INTO `transmog_items` (`entry`) VALUES('137849'); +INSERT INTO `transmog_items` (`entry`) VALUES('137850'); +INSERT INTO `transmog_items` (`entry`) VALUES('137851'); +INSERT INTO `transmog_items` (`entry`) VALUES('137852'); +INSERT INTO `transmog_items` (`entry`) VALUES('137853'); +INSERT INTO `transmog_items` (`entry`) VALUES('137854'); +INSERT INTO `transmog_items` (`entry`) VALUES('137855'); +INSERT INTO `transmog_items` (`entry`) VALUES('137856'); +INSERT INTO `transmog_items` (`entry`) VALUES('137857'); +INSERT INTO `transmog_items` (`entry`) VALUES('137858'); +INSERT INTO `transmog_items` (`entry`) VALUES('137862'); +INSERT INTO `transmog_items` (`entry`) VALUES('137867'); +INSERT INTO `transmog_items` (`entry`) VALUES('137868'); +INSERT INTO `transmog_items` (`entry`) VALUES('137870'); +INSERT INTO `transmog_items` (`entry`) VALUES('137874'); +INSERT INTO `transmog_items` (`entry`) VALUES('137875'); +INSERT INTO `transmog_items` (`entry`) VALUES('137876'); +INSERT INTO `transmog_items` (`entry`) VALUES('137884'); +INSERT INTO `transmog_items` (`entry`) VALUES('137886'); +INSERT INTO `transmog_items` (`entry`) VALUES('137890'); +INSERT INTO `transmog_items` (`entry`) VALUES('137891'); +INSERT INTO `transmog_items` (`entry`) VALUES('137892'); +INSERT INTO `transmog_items` (`entry`) VALUES('137893'); +INSERT INTO `transmog_items` (`entry`) VALUES('137894'); +INSERT INTO `transmog_items` (`entry`) VALUES('137895'); +INSERT INTO `transmog_items` (`entry`) VALUES('137896'); +INSERT INTO `transmog_items` (`entry`) VALUES('137897'); +INSERT INTO `transmog_items` (`entry`) VALUES('137936'); +INSERT INTO `transmog_items` (`entry`) VALUES('137937'); +INSERT INTO `transmog_items` (`entry`) VALUES('137938'); +INSERT INTO `transmog_items` (`entry`) VALUES('137940'); +INSERT INTO `transmog_items` (`entry`) VALUES('137941'); +INSERT INTO `transmog_items` (`entry`) VALUES('137942'); +INSERT INTO `transmog_items` (`entry`) VALUES('137943'); +INSERT INTO `transmog_items` (`entry`) VALUES('137944'); +INSERT INTO `transmog_items` (`entry`) VALUES('137945'); +INSERT INTO `transmog_items` (`entry`) VALUES('137947'); +INSERT INTO `transmog_items` (`entry`) VALUES('137948'); +INSERT INTO `transmog_items` (`entry`) VALUES('137949'); +INSERT INTO `transmog_items` (`entry`) VALUES('137950'); +INSERT INTO `transmog_items` (`entry`) VALUES('137953'); +INSERT INTO `transmog_items` (`entry`) VALUES('137954'); +INSERT INTO `transmog_items` (`entry`) VALUES('137956'); +INSERT INTO `transmog_items` (`entry`) VALUES('137957'); +INSERT INTO `transmog_items` (`entry`) VALUES('137958'); +INSERT INTO `transmog_items` (`entry`) VALUES('137959'); +INSERT INTO `transmog_items` (`entry`) VALUES('137961'); +INSERT INTO `transmog_items` (`entry`) VALUES('137962'); +INSERT INTO `transmog_items` (`entry`) VALUES('137963'); +INSERT INTO `transmog_items` (`entry`) VALUES('137964'); +INSERT INTO `transmog_items` (`entry`) VALUES('137965'); +INSERT INTO `transmog_items` (`entry`) VALUES('137966'); +INSERT INTO `transmog_items` (`entry`) VALUES('137968'); +INSERT INTO `transmog_items` (`entry`) VALUES('137969'); +INSERT INTO `transmog_items` (`entry`) VALUES('137970'); +INSERT INTO `transmog_items` (`entry`) VALUES('137971'); +INSERT INTO `transmog_items` (`entry`) VALUES('137980'); +INSERT INTO `transmog_items` (`entry`) VALUES('137981'); +INSERT INTO `transmog_items` (`entry`) VALUES('137983'); +INSERT INTO `transmog_items` (`entry`) VALUES('137984'); +INSERT INTO `transmog_items` (`entry`) VALUES('137985'); +INSERT INTO `transmog_items` (`entry`) VALUES('137986'); +INSERT INTO `transmog_items` (`entry`) VALUES('137987'); +INSERT INTO `transmog_items` (`entry`) VALUES('137988'); +INSERT INTO `transmog_items` (`entry`) VALUES('137989'); +INSERT INTO `transmog_items` (`entry`) VALUES('137990'); +INSERT INTO `transmog_items` (`entry`) VALUES('137991'); +INSERT INTO `transmog_items` (`entry`) VALUES('137993'); +INSERT INTO `transmog_items` (`entry`) VALUES('137995'); +INSERT INTO `transmog_items` (`entry`) VALUES('137996'); +INSERT INTO `transmog_items` (`entry`) VALUES('137998'); +INSERT INTO `transmog_items` (`entry`) VALUES('137999'); +INSERT INTO `transmog_items` (`entry`) VALUES('138000'); +INSERT INTO `transmog_items` (`entry`) VALUES('138001'); +INSERT INTO `transmog_items` (`entry`) VALUES('138002'); +INSERT INTO `transmog_items` (`entry`) VALUES('138003'); +INSERT INTO `transmog_items` (`entry`) VALUES('138004'); +INSERT INTO `transmog_items` (`entry`) VALUES('138005'); +INSERT INTO `transmog_items` (`entry`) VALUES('138006'); +INSERT INTO `transmog_items` (`entry`) VALUES('138007'); +INSERT INTO `transmog_items` (`entry`) VALUES('138008'); +INSERT INTO `transmog_items` (`entry`) VALUES('138010'); +INSERT INTO `transmog_items` (`entry`) VALUES('138011'); +INSERT INTO `transmog_items` (`entry`) VALUES('138012'); +INSERT INTO `transmog_items` (`entry`) VALUES('138013'); +INSERT INTO `transmog_items` (`entry`) VALUES('138014'); +INSERT INTO `transmog_items` (`entry`) VALUES('138023'); +INSERT INTO `transmog_items` (`entry`) VALUES('138024'); +INSERT INTO `transmog_items` (`entry`) VALUES('138025'); +INSERT INTO `transmog_items` (`entry`) VALUES('138026'); +INSERT INTO `transmog_items` (`entry`) VALUES('138027'); +INSERT INTO `transmog_items` (`entry`) VALUES('138029'); +INSERT INTO `transmog_items` (`entry`) VALUES('138030'); +INSERT INTO `transmog_items` (`entry`) VALUES('138031'); +INSERT INTO `transmog_items` (`entry`) VALUES('138033'); +INSERT INTO `transmog_items` (`entry`) VALUES('138034'); +INSERT INTO `transmog_items` (`entry`) VALUES('138035'); +INSERT INTO `transmog_items` (`entry`) VALUES('138037'); +INSERT INTO `transmog_items` (`entry`) VALUES('138039'); +INSERT INTO `transmog_items` (`entry`) VALUES('138040'); +INSERT INTO `transmog_items` (`entry`) VALUES('138041'); +INSERT INTO `transmog_items` (`entry`) VALUES('138043'); +INSERT INTO `transmog_items` (`entry`) VALUES('138044'); +INSERT INTO `transmog_items` (`entry`) VALUES('138045'); +INSERT INTO `transmog_items` (`entry`) VALUES('138046'); +INSERT INTO `transmog_items` (`entry`) VALUES('138047'); +INSERT INTO `transmog_items` (`entry`) VALUES('138048'); +INSERT INTO `transmog_items` (`entry`) VALUES('138049'); +INSERT INTO `transmog_items` (`entry`) VALUES('138051'); +INSERT INTO `transmog_items` (`entry`) VALUES('138053'); +INSERT INTO `transmog_items` (`entry`) VALUES('138054'); +INSERT INTO `transmog_items` (`entry`) VALUES('138055'); +INSERT INTO `transmog_items` (`entry`) VALUES('138056'); +INSERT INTO `transmog_items` (`entry`) VALUES('138057'); +INSERT INTO `transmog_items` (`entry`) VALUES('138084'); +INSERT INTO `transmog_items` (`entry`) VALUES('138085'); +INSERT INTO `transmog_items` (`entry`) VALUES('138086'); +INSERT INTO `transmog_items` (`entry`) VALUES('138087'); +INSERT INTO `transmog_items` (`entry`) VALUES('138088'); +INSERT INTO `transmog_items` (`entry`) VALUES('138089'); +INSERT INTO `transmog_items` (`entry`) VALUES('138092'); +INSERT INTO `transmog_items` (`entry`) VALUES('138093'); +INSERT INTO `transmog_items` (`entry`) VALUES('138094'); +INSERT INTO `transmog_items` (`entry`) VALUES('138095'); +INSERT INTO `transmog_items` (`entry`) VALUES('138096'); +INSERT INTO `transmog_items` (`entry`) VALUES('138097'); +INSERT INTO `transmog_items` (`entry`) VALUES('138100'); +INSERT INTO `transmog_items` (`entry`) VALUES('138101'); +INSERT INTO `transmog_items` (`entry`) VALUES('138102'); +INSERT INTO `transmog_items` (`entry`) VALUES('138103'); +INSERT INTO `transmog_items` (`entry`) VALUES('138104'); +INSERT INTO `transmog_items` (`entry`) VALUES('138105'); +INSERT INTO `transmog_items` (`entry`) VALUES('138106'); +INSERT INTO `transmog_items` (`entry`) VALUES('138107'); +INSERT INTO `transmog_items` (`entry`) VALUES('138108'); +INSERT INTO `transmog_items` (`entry`) VALUES('138109'); +INSERT INTO `transmog_items` (`entry`) VALUES('138110'); +INSERT INTO `transmog_items` (`entry`) VALUES('138111'); +INSERT INTO `transmog_items` (`entry`) VALUES('138112'); +INSERT INTO `transmog_items` (`entry`) VALUES('138114'); +INSERT INTO `transmog_items` (`entry`) VALUES('138115'); +INSERT INTO `transmog_items` (`entry`) VALUES('138116'); +INSERT INTO `transmog_items` (`entry`) VALUES('138117'); +INSERT INTO `transmog_items` (`entry`) VALUES('138118'); +INSERT INTO `transmog_items` (`entry`) VALUES('138127'); +INSERT INTO `transmog_items` (`entry`) VALUES('138130'); +INSERT INTO `transmog_items` (`entry`) VALUES('138134'); +INSERT INTO `transmog_items` (`entry`) VALUES('138135'); +INSERT INTO `transmog_items` (`entry`) VALUES('138138'); +INSERT INTO `transmog_items` (`entry`) VALUES('138142'); +INSERT INTO `transmog_items` (`entry`) VALUES('138150'); +INSERT INTO `transmog_items` (`entry`) VALUES('138151'); +INSERT INTO `transmog_items` (`entry`) VALUES('138152'); +INSERT INTO `transmog_items` (`entry`) VALUES('138153'); +INSERT INTO `transmog_items` (`entry`) VALUES('138155'); +INSERT INTO `transmog_items` (`entry`) VALUES('138156'); +INSERT INTO `transmog_items` (`entry`) VALUES('138157'); +INSERT INTO `transmog_items` (`entry`) VALUES('138169'); +INSERT INTO `transmog_items` (`entry`) VALUES('138170'); +INSERT INTO `transmog_items` (`entry`) VALUES('138172'); +INSERT INTO `transmog_items` (`entry`) VALUES('138173'); +INSERT INTO `transmog_items` (`entry`) VALUES('138174'); +INSERT INTO `transmog_items` (`entry`) VALUES('138176'); +INSERT INTO `transmog_items` (`entry`) VALUES('138177'); +INSERT INTO `transmog_items` (`entry`) VALUES('138178'); +INSERT INTO `transmog_items` (`entry`) VALUES('138188'); +INSERT INTO `transmog_items` (`entry`) VALUES('138189'); +INSERT INTO `transmog_items` (`entry`) VALUES('138190'); +INSERT INTO `transmog_items` (`entry`) VALUES('138191'); +INSERT INTO `transmog_items` (`entry`) VALUES('138194'); +INSERT INTO `transmog_items` (`entry`) VALUES('138197'); +INSERT INTO `transmog_items` (`entry`) VALUES('138202'); +INSERT INTO `transmog_items` (`entry`) VALUES('138206'); +INSERT INTO `transmog_items` (`entry`) VALUES('138207'); +INSERT INTO `transmog_items` (`entry`) VALUES('138208'); +INSERT INTO `transmog_items` (`entry`) VALUES('138221'); +INSERT INTO `transmog_items` (`entry`) VALUES('138222'); +INSERT INTO `transmog_items` (`entry`) VALUES('138223'); +INSERT INTO `transmog_items` (`entry`) VALUES('138237'); +INSERT INTO `transmog_items` (`entry`) VALUES('138238'); +INSERT INTO `transmog_items` (`entry`) VALUES('138241'); +INSERT INTO `transmog_items` (`entry`) VALUES('138242'); +INSERT INTO `transmog_items` (`entry`) VALUES('138243'); +INSERT INTO `transmog_items` (`entry`) VALUES('138244'); +INSERT INTO `transmog_items` (`entry`) VALUES('138246'); +INSERT INTO `transmog_items` (`entry`) VALUES('138247'); +INSERT INTO `transmog_items` (`entry`) VALUES('138268'); +INSERT INTO `transmog_items` (`entry`) VALUES('138276'); +INSERT INTO `transmog_items` (`entry`) VALUES('138277'); +INSERT INTO `transmog_items` (`entry`) VALUES('138278'); +INSERT INTO `transmog_items` (`entry`) VALUES('138318'); +INSERT INTO `transmog_items` (`entry`) VALUES('138353'); +INSERT INTO `transmog_items` (`entry`) VALUES('138354'); +INSERT INTO `transmog_items` (`entry`) VALUES('138355'); +INSERT INTO `transmog_items` (`entry`) VALUES('138356'); +INSERT INTO `transmog_items` (`entry`) VALUES('138357'); +INSERT INTO `transmog_items` (`entry`) VALUES('138387'); +INSERT INTO `transmog_items` (`entry`) VALUES('138388'); +INSERT INTO `transmog_items` (`entry`) VALUES('138389'); +INSERT INTO `transmog_items` (`entry`) VALUES('138390'); +INSERT INTO `transmog_items` (`entry`) VALUES('138400'); +INSERT INTO `transmog_items` (`entry`) VALUES('138401'); +INSERT INTO `transmog_items` (`entry`) VALUES('138402'); +INSERT INTO `transmog_items` (`entry`) VALUES('138403'); +INSERT INTO `transmog_items` (`entry`) VALUES('138404'); +INSERT INTO `transmog_items` (`entry`) VALUES('138405'); +INSERT INTO `transmog_items` (`entry`) VALUES('138406'); +INSERT INTO `transmog_items` (`entry`) VALUES('138407'); +INSERT INTO `transmog_items` (`entry`) VALUES('138408'); +INSERT INTO `transmog_items` (`entry`) VALUES('138409'); +INSERT INTO `transmog_items` (`entry`) VALUES('138410'); +INSERT INTO `transmog_items` (`entry`) VALUES('138411'); +INSERT INTO `transmog_items` (`entry`) VALUES('138412'); +INSERT INTO `transmog_items` (`entry`) VALUES('138413'); +INSERT INTO `transmog_items` (`entry`) VALUES('138414'); +INSERT INTO `transmog_items` (`entry`) VALUES('138415'); +INSERT INTO `transmog_items` (`entry`) VALUES('138416'); +INSERT INTO `transmog_items` (`entry`) VALUES('138417'); +INSERT INTO `transmog_items` (`entry`) VALUES('138418'); +INSERT INTO `transmog_items` (`entry`) VALUES('138419'); +INSERT INTO `transmog_items` (`entry`) VALUES('138420'); +INSERT INTO `transmog_items` (`entry`) VALUES('138421'); +INSERT INTO `transmog_items` (`entry`) VALUES('138422'); +INSERT INTO `transmog_items` (`entry`) VALUES('138424'); +INSERT INTO `transmog_items` (`entry`) VALUES('138433'); +INSERT INTO `transmog_items` (`entry`) VALUES('138434'); +INSERT INTO `transmog_items` (`entry`) VALUES('138435'); +INSERT INTO `transmog_items` (`entry`) VALUES('138436'); +INSERT INTO `transmog_items` (`entry`) VALUES('138437'); +INSERT INTO `transmog_items` (`entry`) VALUES('138438'); +INSERT INTO `transmog_items` (`entry`) VALUES('138439'); +INSERT INTO `transmog_items` (`entry`) VALUES('138440'); +INSERT INTO `transmog_items` (`entry`) VALUES('138441'); +INSERT INTO `transmog_items` (`entry`) VALUES('138442'); +INSERT INTO `transmog_items` (`entry`) VALUES('138443'); +INSERT INTO `transmog_items` (`entry`) VALUES('138444'); +INSERT INTO `transmog_items` (`entry`) VALUES('138445'); +INSERT INTO `transmog_items` (`entry`) VALUES('138448'); +INSERT INTO `transmog_items` (`entry`) VALUES('138452'); +INSERT INTO `transmog_items` (`entry`) VALUES('138453'); +INSERT INTO `transmog_items` (`entry`) VALUES('138454'); +INSERT INTO `transmog_items` (`entry`) VALUES('138455'); +INSERT INTO `transmog_items` (`entry`) VALUES('138456'); +INSERT INTO `transmog_items` (`entry`) VALUES('138457'); +INSERT INTO `transmog_items` (`entry`) VALUES('138460'); +INSERT INTO `transmog_items` (`entry`) VALUES('138461'); +INSERT INTO `transmog_items` (`entry`) VALUES('138462'); +INSERT INTO `transmog_items` (`entry`) VALUES('138463'); +INSERT INTO `transmog_items` (`entry`) VALUES('138464'); +INSERT INTO `transmog_items` (`entry`) VALUES('138465'); +INSERT INTO `transmog_items` (`entry`) VALUES('138468'); +INSERT INTO `transmog_items` (`entry`) VALUES('138506'); +INSERT INTO `transmog_items` (`entry`) VALUES('138513'); +INSERT INTO `transmog_items` (`entry`) VALUES('138524'); +INSERT INTO `transmog_items` (`entry`) VALUES('138525'); +INSERT INTO `transmog_items` (`entry`) VALUES('138527'); +INSERT INTO `transmog_items` (`entry`) VALUES('138528'); +INSERT INTO `transmog_items` (`entry`) VALUES('138529'); +INSERT INTO `transmog_items` (`entry`) VALUES('138530'); +INSERT INTO `transmog_items` (`entry`) VALUES('138531'); +INSERT INTO `transmog_items` (`entry`) VALUES('138532'); +INSERT INTO `transmog_items` (`entry`) VALUES('138533'); +INSERT INTO `transmog_items` (`entry`) VALUES('138534'); +INSERT INTO `transmog_items` (`entry`) VALUES('138535'); +INSERT INTO `transmog_items` (`entry`) VALUES('138536'); +INSERT INTO `transmog_items` (`entry`) VALUES('138537'); +INSERT INTO `transmog_items` (`entry`) VALUES('138540'); +INSERT INTO `transmog_items` (`entry`) VALUES('138541'); +INSERT INTO `transmog_items` (`entry`) VALUES('138542'); +INSERT INTO `transmog_items` (`entry`) VALUES('138543'); +INSERT INTO `transmog_items` (`entry`) VALUES('138590'); +INSERT INTO `transmog_items` (`entry`) VALUES('138591'); +INSERT INTO `transmog_items` (`entry`) VALUES('138592'); +INSERT INTO `transmog_items` (`entry`) VALUES('138614'); +INSERT INTO `transmog_items` (`entry`) VALUES('138615'); +INSERT INTO `transmog_items` (`entry`) VALUES('138616'); +INSERT INTO `transmog_items` (`entry`) VALUES('138633'); +INSERT INTO `transmog_items` (`entry`) VALUES('138645'); +INSERT INTO `transmog_items` (`entry`) VALUES('138646'); +INSERT INTO `transmog_items` (`entry`) VALUES('138647'); +INSERT INTO `transmog_items` (`entry`) VALUES('138648'); +INSERT INTO `transmog_items` (`entry`) VALUES('138649'); +INSERT INTO `transmog_items` (`entry`) VALUES('138650'); +INSERT INTO `transmog_items` (`entry`) VALUES('138651'); +INSERT INTO `transmog_items` (`entry`) VALUES('138661'); +INSERT INTO `transmog_items` (`entry`) VALUES('138663'); +INSERT INTO `transmog_items` (`entry`) VALUES('138664'); +INSERT INTO `transmog_items` (`entry`) VALUES('138665'); +INSERT INTO `transmog_items` (`entry`) VALUES('138666'); +INSERT INTO `transmog_items` (`entry`) VALUES('138667'); +INSERT INTO `transmog_items` (`entry`) VALUES('138668'); +INSERT INTO `transmog_items` (`entry`) VALUES('138669'); +INSERT INTO `transmog_items` (`entry`) VALUES('138670'); +INSERT INTO `transmog_items` (`entry`) VALUES('138710'); +INSERT INTO `transmog_items` (`entry`) VALUES('138711'); +INSERT INTO `transmog_items` (`entry`) VALUES('138712'); +INSERT INTO `transmog_items` (`entry`) VALUES('138713'); +INSERT INTO `transmog_items` (`entry`) VALUES('138714'); +INSERT INTO `transmog_items` (`entry`) VALUES('138715'); +INSERT INTO `transmog_items` (`entry`) VALUES('138716'); +INSERT INTO `transmog_items` (`entry`) VALUES('138717'); +INSERT INTO `transmog_items` (`entry`) VALUES('138718'); +INSERT INTO `transmog_items` (`entry`) VALUES('138719'); +INSERT INTO `transmog_items` (`entry`) VALUES('138726'); +INSERT INTO `transmog_items` (`entry`) VALUES('138727'); +INSERT INTO `transmog_items` (`entry`) VALUES('138728'); +INSERT INTO `transmog_items` (`entry`) VALUES('138729'); +INSERT INTO `transmog_items` (`entry`) VALUES('138730'); +INSERT INTO `transmog_items` (`entry`) VALUES('138732'); +INSERT INTO `transmog_items` (`entry`) VALUES('138733'); +INSERT INTO `transmog_items` (`entry`) VALUES('138734'); +INSERT INTO `transmog_items` (`entry`) VALUES('138735'); +INSERT INTO `transmog_items` (`entry`) VALUES('138736'); +INSERT INTO `transmog_items` (`entry`) VALUES('138737'); +INSERT INTO `transmog_items` (`entry`) VALUES('138739'); +INSERT INTO `transmog_items` (`entry`) VALUES('138741'); +INSERT INTO `transmog_items` (`entry`) VALUES('138756'); +INSERT INTO `transmog_items` (`entry`) VALUES('138757'); +INSERT INTO `transmog_items` (`entry`) VALUES('138758'); +INSERT INTO `transmog_items` (`entry`) VALUES('138759'); +INSERT INTO `transmog_items` (`entry`) VALUES('139010'); +INSERT INTO `transmog_items` (`entry`) VALUES('139011'); +INSERT INTO `transmog_items` (`entry`) VALUES('139013'); +INSERT INTO `transmog_items` (`entry`) VALUES('139015'); +INSERT INTO `transmog_items` (`entry`) VALUES('139016'); +INSERT INTO `transmog_items` (`entry`) VALUES('139017'); +INSERT INTO `transmog_items` (`entry`) VALUES('139018'); +INSERT INTO `transmog_items` (`entry`) VALUES('139019'); +INSERT INTO `transmog_items` (`entry`) VALUES('139020'); +INSERT INTO `transmog_items` (`entry`) VALUES('139021'); +INSERT INTO `transmog_items` (`entry`) VALUES('139022'); +INSERT INTO `transmog_items` (`entry`) VALUES('139023'); +INSERT INTO `transmog_items` (`entry`) VALUES('139025'); +INSERT INTO `transmog_items` (`entry`) VALUES('139026'); +INSERT INTO `transmog_items` (`entry`) VALUES('139027'); +INSERT INTO `transmog_items` (`entry`) VALUES('139028'); +INSERT INTO `transmog_items` (`entry`) VALUES('139029'); +INSERT INTO `transmog_items` (`entry`) VALUES('139030'); +INSERT INTO `transmog_items` (`entry`) VALUES('139031'); +INSERT INTO `transmog_items` (`entry`) VALUES('139033'); +INSERT INTO `transmog_items` (`entry`) VALUES('139034'); +INSERT INTO `transmog_items` (`entry`) VALUES('139035'); +INSERT INTO `transmog_items` (`entry`) VALUES('139036'); +INSERT INTO `transmog_items` (`entry`) VALUES('139038'); +INSERT INTO `transmog_items` (`entry`) VALUES('139040'); +INSERT INTO `transmog_items` (`entry`) VALUES('139043'); +INSERT INTO `transmog_items` (`entry`) VALUES('139044'); +INSERT INTO `transmog_items` (`entry`) VALUES('139045'); +INSERT INTO `transmog_items` (`entry`) VALUES('139046'); +INSERT INTO `transmog_items` (`entry`) VALUES('139047'); +INSERT INTO `transmog_items` (`entry`) VALUES('139049'); +INSERT INTO `transmog_items` (`entry`) VALUES('139050'); +INSERT INTO `transmog_items` (`entry`) VALUES('139051'); +INSERT INTO `transmog_items` (`entry`) VALUES('139052'); +INSERT INTO `transmog_items` (`entry`) VALUES('139053'); +INSERT INTO `transmog_items` (`entry`) VALUES('139054'); +INSERT INTO `transmog_items` (`entry`) VALUES('139055'); +INSERT INTO `transmog_items` (`entry`) VALUES('139056'); +INSERT INTO `transmog_items` (`entry`) VALUES('139057'); +INSERT INTO `transmog_items` (`entry`) VALUES('139058'); +INSERT INTO `transmog_items` (`entry`) VALUES('139059'); +INSERT INTO `transmog_items` (`entry`) VALUES('139060'); +INSERT INTO `transmog_items` (`entry`) VALUES('139062'); +INSERT INTO `transmog_items` (`entry`) VALUES('139064'); +INSERT INTO `transmog_items` (`entry`) VALUES('139065'); +INSERT INTO `transmog_items` (`entry`) VALUES('139066'); +INSERT INTO `transmog_items` (`entry`) VALUES('139068'); +INSERT INTO `transmog_items` (`entry`) VALUES('139070'); +INSERT INTO `transmog_items` (`entry`) VALUES('139072'); +INSERT INTO `transmog_items` (`entry`) VALUES('139073'); +INSERT INTO `transmog_items` (`entry`) VALUES('139074'); +INSERT INTO `transmog_items` (`entry`) VALUES('139075'); +INSERT INTO `transmog_items` (`entry`) VALUES('139076'); +INSERT INTO `transmog_items` (`entry`) VALUES('139077'); +INSERT INTO `transmog_items` (`entry`) VALUES('139078'); +INSERT INTO `transmog_items` (`entry`) VALUES('139079'); +INSERT INTO `transmog_items` (`entry`) VALUES('139080'); +INSERT INTO `transmog_items` (`entry`) VALUES('139081'); +INSERT INTO `transmog_items` (`entry`) VALUES('139082'); +INSERT INTO `transmog_items` (`entry`) VALUES('139083'); +INSERT INTO `transmog_items` (`entry`) VALUES('139084'); +INSERT INTO `transmog_items` (`entry`) VALUES('139085'); +INSERT INTO `transmog_items` (`entry`) VALUES('139086'); +INSERT INTO `transmog_items` (`entry`) VALUES('139087'); +INSERT INTO `transmog_items` (`entry`) VALUES('139088'); +INSERT INTO `transmog_items` (`entry`) VALUES('139089'); +INSERT INTO `transmog_items` (`entry`) VALUES('139090'); +INSERT INTO `transmog_items` (`entry`) VALUES('139091'); +INSERT INTO `transmog_items` (`entry`) VALUES('139092'); +INSERT INTO `transmog_items` (`entry`) VALUES('139093'); +INSERT INTO `transmog_items` (`entry`) VALUES('139094'); +INSERT INTO `transmog_items` (`entry`) VALUES('139095'); +INSERT INTO `transmog_items` (`entry`) VALUES('139096'); +INSERT INTO `transmog_items` (`entry`) VALUES('139097'); +INSERT INTO `transmog_items` (`entry`) VALUES('139098'); +INSERT INTO `transmog_items` (`entry`) VALUES('139099'); +INSERT INTO `transmog_items` (`entry`) VALUES('139100'); +INSERT INTO `transmog_items` (`entry`) VALUES('139102'); +INSERT INTO `transmog_items` (`entry`) VALUES('139104'); +INSERT INTO `transmog_items` (`entry`) VALUES('139105'); +INSERT INTO `transmog_items` (`entry`) VALUES('139108'); +INSERT INTO `transmog_items` (`entry`) VALUES('139112'); +INSERT INTO `transmog_items` (`entry`) VALUES('139113'); +INSERT INTO `transmog_items` (`entry`) VALUES('139114'); +INSERT INTO `transmog_items` (`entry`) VALUES('139115'); +INSERT INTO `transmog_items` (`entry`) VALUES('139119'); +INSERT INTO `transmog_items` (`entry`) VALUES('139125'); +INSERT INTO `transmog_items` (`entry`) VALUES('139129'); +INSERT INTO `transmog_items` (`entry`) VALUES('139130'); +INSERT INTO `transmog_items` (`entry`) VALUES('139131'); +INSERT INTO `transmog_items` (`entry`) VALUES('139133'); +INSERT INTO `transmog_items` (`entry`) VALUES('139134'); +INSERT INTO `transmog_items` (`entry`) VALUES('139135'); +INSERT INTO `transmog_items` (`entry`) VALUES('139138'); +INSERT INTO `transmog_items` (`entry`) VALUES('139139'); +INSERT INTO `transmog_items` (`entry`) VALUES('139140'); +INSERT INTO `transmog_items` (`entry`) VALUES('139142'); +INSERT INTO `transmog_items` (`entry`) VALUES('139143'); +INSERT INTO `transmog_items` (`entry`) VALUES('139144'); +INSERT INTO `transmog_items` (`entry`) VALUES('139168'); +INSERT INTO `transmog_items` (`entry`) VALUES('139169'); +INSERT INTO `transmog_items` (`entry`) VALUES('139170'); +INSERT INTO `transmog_items` (`entry`) VALUES('139171'); +INSERT INTO `transmog_items` (`entry`) VALUES('139172'); +INSERT INTO `transmog_items` (`entry`) VALUES('139173'); +INSERT INTO `transmog_items` (`entry`) VALUES('139174'); +INSERT INTO `transmog_items` (`entry`) VALUES('139175'); +INSERT INTO `transmog_items` (`entry`) VALUES('139176'); +INSERT INTO `transmog_items` (`entry`) VALUES('139177'); +INSERT INTO `transmog_items` (`entry`) VALUES('139178'); +INSERT INTO `transmog_items` (`entry`) VALUES('139179'); +INSERT INTO `transmog_items` (`entry`) VALUES('139180'); +INSERT INTO `transmog_items` (`entry`) VALUES('139181'); +INSERT INTO `transmog_items` (`entry`) VALUES('139182'); +INSERT INTO `transmog_items` (`entry`) VALUES('139183'); +INSERT INTO `transmog_items` (`entry`) VALUES('139188'); +INSERT INTO `transmog_items` (`entry`) VALUES('139189'); +INSERT INTO `transmog_items` (`entry`) VALUES('139190'); +INSERT INTO `transmog_items` (`entry`) VALUES('139191'); +INSERT INTO `transmog_items` (`entry`) VALUES('139192'); +INSERT INTO `transmog_items` (`entry`) VALUES('139194'); +INSERT INTO `transmog_items` (`entry`) VALUES('139195'); +INSERT INTO `transmog_items` (`entry`) VALUES('139196'); +INSERT INTO `transmog_items` (`entry`) VALUES('139197'); +INSERT INTO `transmog_items` (`entry`) VALUES('139198'); +INSERT INTO `transmog_items` (`entry`) VALUES('139202'); +INSERT INTO `transmog_items` (`entry`) VALUES('139205'); +INSERT INTO `transmog_items` (`entry`) VALUES('139215'); +INSERT INTO `transmog_items` (`entry`) VALUES('139216'); +INSERT INTO `transmog_items` (`entry`) VALUES('139217'); +INSERT INTO `transmog_items` (`entry`) VALUES('139221'); +INSERT INTO `transmog_items` (`entry`) VALUES('139224'); +INSERT INTO `transmog_items` (`entry`) VALUES('139225'); +INSERT INTO `transmog_items` (`entry`) VALUES('139226'); +INSERT INTO `transmog_items` (`entry`) VALUES('139228'); +INSERT INTO `transmog_items` (`entry`) VALUES('139230'); +INSERT INTO `transmog_items` (`entry`) VALUES('139233'); +INSERT INTO `transmog_items` (`entry`) VALUES('139234'); +INSERT INTO `transmog_items` (`entry`) VALUES('139235'); +INSERT INTO `transmog_items` (`entry`) VALUES('139236'); +INSERT INTO `transmog_items` (`entry`) VALUES('139237'); +INSERT INTO `transmog_items` (`entry`) VALUES('139239'); +INSERT INTO `transmog_items` (`entry`) VALUES('139240'); +INSERT INTO `transmog_items` (`entry`) VALUES('139241'); +INSERT INTO `transmog_items` (`entry`) VALUES('139242'); +INSERT INTO `transmog_items` (`entry`) VALUES('139243'); +INSERT INTO `transmog_items` (`entry`) VALUES('139247'); +INSERT INTO `transmog_items` (`entry`) VALUES('139248'); +INSERT INTO `transmog_items` (`entry`) VALUES('139249'); +INSERT INTO `transmog_items` (`entry`) VALUES('139251'); +INSERT INTO `transmog_items` (`entry`) VALUES('139252'); +INSERT INTO `transmog_items` (`entry`) VALUES('139254'); +INSERT INTO `transmog_items` (`entry`) VALUES('139258'); +INSERT INTO `transmog_items` (`entry`) VALUES('139259'); +INSERT INTO `transmog_items` (`entry`) VALUES('139260'); +INSERT INTO `transmog_items` (`entry`) VALUES('139261'); +INSERT INTO `transmog_items` (`entry`) VALUES('139262'); +INSERT INTO `transmog_items` (`entry`) VALUES('139263'); +INSERT INTO `transmog_items` (`entry`) VALUES('139267'); +INSERT INTO `transmog_items` (`entry`) VALUES('139271'); +INSERT INTO `transmog_items` (`entry`) VALUES('139272'); +INSERT INTO `transmog_items` (`entry`) VALUES('139273'); +INSERT INTO `transmog_items` (`entry`) VALUES('139274'); +INSERT INTO `transmog_items` (`entry`) VALUES('139275'); +INSERT INTO `transmog_items` (`entry`) VALUES('139276'); +INSERT INTO `transmog_items` (`entry`) VALUES('139278'); +INSERT INTO `transmog_items` (`entry`) VALUES('139279'); +INSERT INTO `transmog_items` (`entry`) VALUES('139280'); +INSERT INTO `transmog_items` (`entry`) VALUES('139281'); +INSERT INTO `transmog_items` (`entry`) VALUES('139283'); +INSERT INTO `transmog_items` (`entry`) VALUES('139284'); +INSERT INTO `transmog_items` (`entry`) VALUES('139285'); +INSERT INTO `transmog_items` (`entry`) VALUES('139293'); +INSERT INTO `transmog_items` (`entry`) VALUES('139294'); +INSERT INTO `transmog_items` (`entry`) VALUES('139295'); +INSERT INTO `transmog_items` (`entry`) VALUES('139296'); +INSERT INTO `transmog_items` (`entry`) VALUES('139297'); +INSERT INTO `transmog_items` (`entry`) VALUES('139298'); +INSERT INTO `transmog_items` (`entry`) VALUES('139299'); +INSERT INTO `transmog_items` (`entry`) VALUES('139306'); +INSERT INTO `transmog_items` (`entry`) VALUES('139307'); +INSERT INTO `transmog_items` (`entry`) VALUES('139308'); +INSERT INTO `transmog_items` (`entry`) VALUES('139309'); +INSERT INTO `transmog_items` (`entry`) VALUES('139310'); +INSERT INTO `transmog_items` (`entry`) VALUES('139320'); +INSERT INTO `transmog_items` (`entry`) VALUES('139322'); +INSERT INTO `transmog_items` (`entry`) VALUES('139323'); +INSERT INTO `transmog_items` (`entry`) VALUES('139330'); +INSERT INTO `transmog_items` (`entry`) VALUES('139331'); +INSERT INTO `transmog_items` (`entry`) VALUES('139332'); +INSERT INTO `transmog_items` (`entry`) VALUES('139333'); +INSERT INTO `transmog_items` (`entry`) VALUES('139335'); +INSERT INTO `transmog_items` (`entry`) VALUES('139336'); +INSERT INTO `transmog_items` (`entry`) VALUES('139337'); +INSERT INTO `transmog_items` (`entry`) VALUES('139345'); +INSERT INTO `transmog_items` (`entry`) VALUES('139346'); +INSERT INTO `transmog_items` (`entry`) VALUES('139347'); +INSERT INTO `transmog_items` (`entry`) VALUES('139348'); +INSERT INTO `transmog_items` (`entry`) VALUES('139363'); +INSERT INTO `transmog_items` (`entry`) VALUES('139364'); +INSERT INTO `transmog_items` (`entry`) VALUES('139365'); +INSERT INTO `transmog_items` (`entry`) VALUES('139366'); +INSERT INTO `transmog_items` (`entry`) VALUES('139367'); +INSERT INTO `transmog_items` (`entry`) VALUES('139368'); +INSERT INTO `transmog_items` (`entry`) VALUES('139369'); +INSERT INTO `transmog_items` (`entry`) VALUES('139372'); +INSERT INTO `transmog_items` (`entry`) VALUES('139373'); +INSERT INTO `transmog_items` (`entry`) VALUES('139374'); +INSERT INTO `transmog_items` (`entry`) VALUES('139375'); +INSERT INTO `transmog_items` (`entry`) VALUES('139376'); +INSERT INTO `transmog_items` (`entry`) VALUES('139377'); +INSERT INTO `transmog_items` (`entry`) VALUES('139378'); +INSERT INTO `transmog_items` (`entry`) VALUES('139379'); +INSERT INTO `transmog_items` (`entry`) VALUES('139380'); +INSERT INTO `transmog_items` (`entry`) VALUES('139383'); +INSERT INTO `transmog_items` (`entry`) VALUES('139385'); +INSERT INTO `transmog_items` (`entry`) VALUES('139386'); +INSERT INTO `transmog_items` (`entry`) VALUES('139387'); +INSERT INTO `transmog_items` (`entry`) VALUES('139390'); +INSERT INTO `transmog_items` (`entry`) VALUES('139391'); +INSERT INTO `transmog_items` (`entry`) VALUES('139395'); +INSERT INTO `transmog_items` (`entry`) VALUES('139396'); +INSERT INTO `transmog_items` (`entry`) VALUES('139397'); +INSERT INTO `transmog_items` (`entry`) VALUES('139398'); +INSERT INTO `transmog_items` (`entry`) VALUES('139399'); +INSERT INTO `transmog_items` (`entry`) VALUES('139400'); +INSERT INTO `transmog_items` (`entry`) VALUES('139402'); +INSERT INTO `transmog_items` (`entry`) VALUES('139403'); +INSERT INTO `transmog_items` (`entry`) VALUES('139404'); +INSERT INTO `transmog_items` (`entry`) VALUES('139405'); +INSERT INTO `transmog_items` (`entry`) VALUES('139406'); +INSERT INTO `transmog_items` (`entry`) VALUES('139408'); +INSERT INTO `transmog_items` (`entry`) VALUES('139409'); +INSERT INTO `transmog_items` (`entry`) VALUES('139410'); +INSERT INTO `transmog_items` (`entry`) VALUES('139411'); +INSERT INTO `transmog_items` (`entry`) VALUES('139412'); +INSERT INTO `transmog_items` (`entry`) VALUES('139413'); +INSERT INTO `transmog_items` (`entry`) VALUES('139414'); +INSERT INTO `transmog_items` (`entry`) VALUES('139415'); +INSERT INTO `transmog_items` (`entry`) VALUES('139416'); +INSERT INTO `transmog_items` (`entry`) VALUES('139417'); +INSERT INTO `transmog_items` (`entry`) VALUES('139419'); +INSERT INTO `transmog_items` (`entry`) VALUES('139420'); +INSERT INTO `transmog_items` (`entry`) VALUES('139423'); +INSERT INTO `transmog_items` (`entry`) VALUES('139424'); +INSERT INTO `transmog_items` (`entry`) VALUES('139425'); +INSERT INTO `transmog_items` (`entry`) VALUES('139426'); +INSERT INTO `transmog_items` (`entry`) VALUES('139427'); +INSERT INTO `transmog_items` (`entry`) VALUES('139428'); +INSERT INTO `transmog_items` (`entry`) VALUES('139429'); +INSERT INTO `transmog_items` (`entry`) VALUES('139430'); +INSERT INTO `transmog_items` (`entry`) VALUES('139431'); +INSERT INTO `transmog_items` (`entry`) VALUES('139432'); +INSERT INTO `transmog_items` (`entry`) VALUES('139433'); +INSERT INTO `transmog_items` (`entry`) VALUES('139435'); +INSERT INTO `transmog_items` (`entry`) VALUES('139436'); +INSERT INTO `transmog_items` (`entry`) VALUES('139437'); +INSERT INTO `transmog_items` (`entry`) VALUES('139438'); +INSERT INTO `transmog_items` (`entry`) VALUES('139439'); +INSERT INTO `transmog_items` (`entry`) VALUES('139440'); +INSERT INTO `transmog_items` (`entry`) VALUES('139441'); +INSERT INTO `transmog_items` (`entry`) VALUES('139442'); +INSERT INTO `transmog_items` (`entry`) VALUES('139443'); +INSERT INTO `transmog_items` (`entry`) VALUES('139444'); +INSERT INTO `transmog_items` (`entry`) VALUES('139445'); +INSERT INTO `transmog_items` (`entry`) VALUES('139446'); +INSERT INTO `transmog_items` (`entry`) VALUES('139448'); +INSERT INTO `transmog_items` (`entry`) VALUES('139449'); +INSERT INTO `transmog_items` (`entry`) VALUES('139450'); +INSERT INTO `transmog_items` (`entry`) VALUES('139451'); +INSERT INTO `transmog_items` (`entry`) VALUES('139452'); +INSERT INTO `transmog_items` (`entry`) VALUES('139453'); +INSERT INTO `transmog_items` (`entry`) VALUES('139454'); +INSERT INTO `transmog_items` (`entry`) VALUES('139455'); +INSERT INTO `transmog_items` (`entry`) VALUES('139457'); +INSERT INTO `transmog_items` (`entry`) VALUES('139458'); +INSERT INTO `transmog_items` (`entry`) VALUES('139459'); +INSERT INTO `transmog_items` (`entry`) VALUES('139460'); +INSERT INTO `transmog_items` (`entry`) VALUES('139461'); +INSERT INTO `transmog_items` (`entry`) VALUES('139462'); +INSERT INTO `transmog_items` (`entry`) VALUES('139463'); +INSERT INTO `transmog_items` (`entry`) VALUES('139464'); +INSERT INTO `transmog_items` (`entry`) VALUES('139465'); +INSERT INTO `transmog_items` (`entry`) VALUES('139466'); +INSERT INTO `transmog_items` (`entry`) VALUES('139467'); +INSERT INTO `transmog_items` (`entry`) VALUES('139468'); +INSERT INTO `transmog_items` (`entry`) VALUES('139471'); +INSERT INTO `transmog_items` (`entry`) VALUES('139473'); +INSERT INTO `transmog_items` (`entry`) VALUES('139478'); +INSERT INTO `transmog_items` (`entry`) VALUES('139479'); +INSERT INTO `transmog_items` (`entry`) VALUES('139486'); +INSERT INTO `transmog_items` (`entry`) VALUES('139487'); +INSERT INTO `transmog_items` (`entry`) VALUES('139488'); +INSERT INTO `transmog_items` (`entry`) VALUES('139490'); +INSERT INTO `transmog_items` (`entry`) VALUES('139491'); +INSERT INTO `transmog_items` (`entry`) VALUES('139492'); +INSERT INTO `transmog_items` (`entry`) VALUES('139493'); +INSERT INTO `transmog_items` (`entry`) VALUES('139494'); +INSERT INTO `transmog_items` (`entry`) VALUES('139495'); +INSERT INTO `transmog_items` (`entry`) VALUES('139496'); +INSERT INTO `transmog_items` (`entry`) VALUES('139497'); +INSERT INTO `transmog_items` (`entry`) VALUES('139498'); +INSERT INTO `transmog_items` (`entry`) VALUES('139499'); +INSERT INTO `transmog_items` (`entry`) VALUES('139500'); +INSERT INTO `transmog_items` (`entry`) VALUES('139503'); +INSERT INTO `transmog_items` (`entry`) VALUES('139507'); +INSERT INTO `transmog_items` (`entry`) VALUES('139508'); +INSERT INTO `transmog_items` (`entry`) VALUES('139509'); +INSERT INTO `transmog_items` (`entry`) VALUES('139514'); +INSERT INTO `transmog_items` (`entry`) VALUES('139515'); +INSERT INTO `transmog_items` (`entry`) VALUES('139517'); +INSERT INTO `transmog_items` (`entry`) VALUES('139518'); +INSERT INTO `transmog_items` (`entry`) VALUES('139519'); +INSERT INTO `transmog_items` (`entry`) VALUES('139521'); +INSERT INTO `transmog_items` (`entry`) VALUES('139522'); +INSERT INTO `transmog_items` (`entry`) VALUES('139523'); +INSERT INTO `transmog_items` (`entry`) VALUES('139528'); +INSERT INTO `transmog_items` (`entry`) VALUES('139529'); +INSERT INTO `transmog_items` (`entry`) VALUES('139530'); +INSERT INTO `transmog_items` (`entry`) VALUES('139531'); +INSERT INTO `transmog_items` (`entry`) VALUES('139534'); +INSERT INTO `transmog_items` (`entry`) VALUES('139535'); +INSERT INTO `transmog_items` (`entry`) VALUES('139536'); +INSERT INTO `transmog_items` (`entry`) VALUES('139538'); +INSERT INTO `transmog_items` (`entry`) VALUES('139539'); +INSERT INTO `transmog_items` (`entry`) VALUES('139542'); +INSERT INTO `transmog_items` (`entry`) VALUES('139543'); +INSERT INTO `transmog_items` (`entry`) VALUES('139544'); +INSERT INTO `transmog_items` (`entry`) VALUES('139545'); +INSERT INTO `transmog_items` (`entry`) VALUES('139546'); +INSERT INTO `transmog_items` (`entry`) VALUES('139547'); +INSERT INTO `transmog_items` (`entry`) VALUES('139548'); +INSERT INTO `transmog_items` (`entry`) VALUES('139553'); +INSERT INTO `transmog_items` (`entry`) VALUES('139554'); +INSERT INTO `transmog_items` (`entry`) VALUES('139555'); +INSERT INTO `transmog_items` (`entry`) VALUES('139556'); +INSERT INTO `transmog_items` (`entry`) VALUES('139557'); +INSERT INTO `transmog_items` (`entry`) VALUES('139558'); +INSERT INTO `transmog_items` (`entry`) VALUES('139560'); +INSERT INTO `transmog_items` (`entry`) VALUES('139561'); +INSERT INTO `transmog_items` (`entry`) VALUES('139564'); +INSERT INTO `transmog_items` (`entry`) VALUES('139565'); +INSERT INTO `transmog_items` (`entry`) VALUES('139578'); +INSERT INTO `transmog_items` (`entry`) VALUES('139579'); +INSERT INTO `transmog_items` (`entry`) VALUES('139580'); +INSERT INTO `transmog_items` (`entry`) VALUES('139581'); +INSERT INTO `transmog_items` (`entry`) VALUES('139582'); +INSERT INTO `transmog_items` (`entry`) VALUES('139583'); +INSERT INTO `transmog_items` (`entry`) VALUES('139588'); +INSERT INTO `transmog_items` (`entry`) VALUES('139589'); +INSERT INTO `transmog_items` (`entry`) VALUES('139590'); +INSERT INTO `transmog_items` (`entry`) VALUES('139591'); +INSERT INTO `transmog_items` (`entry`) VALUES('139592'); +INSERT INTO `transmog_items` (`entry`) VALUES('139593'); +INSERT INTO `transmog_items` (`entry`) VALUES('139594'); +INSERT INTO `transmog_items` (`entry`) VALUES('139595'); +INSERT INTO `transmog_items` (`entry`) VALUES('139596'); +INSERT INTO `transmog_items` (`entry`) VALUES('139597'); +INSERT INTO `transmog_items` (`entry`) VALUES('139601'); +INSERT INTO `transmog_items` (`entry`) VALUES('139602'); +INSERT INTO `transmog_items` (`entry`) VALUES('139603'); +INSERT INTO `transmog_items` (`entry`) VALUES('139604'); +INSERT INTO `transmog_items` (`entry`) VALUES('139605'); +INSERT INTO `transmog_items` (`entry`) VALUES('139606'); +INSERT INTO `transmog_items` (`entry`) VALUES('139607'); +INSERT INTO `transmog_items` (`entry`) VALUES('139608'); +INSERT INTO `transmog_items` (`entry`) VALUES('139609'); +INSERT INTO `transmog_items` (`entry`) VALUES('139610'); +INSERT INTO `transmog_items` (`entry`) VALUES('139611'); +INSERT INTO `transmog_items` (`entry`) VALUES('139612'); +INSERT INTO `transmog_items` (`entry`) VALUES('139613'); +INSERT INTO `transmog_items` (`entry`) VALUES('139617'); +INSERT INTO `transmog_items` (`entry`) VALUES('139618'); +INSERT INTO `transmog_items` (`entry`) VALUES('139619'); +INSERT INTO `transmog_items` (`entry`) VALUES('139620'); +INSERT INTO `transmog_items` (`entry`) VALUES('139621'); +INSERT INTO `transmog_items` (`entry`) VALUES('139622'); +INSERT INTO `transmog_items` (`entry`) VALUES('139623'); +INSERT INTO `transmog_items` (`entry`) VALUES('139624'); +INSERT INTO `transmog_items` (`entry`) VALUES('139625'); +INSERT INTO `transmog_items` (`entry`) VALUES('139626'); +INSERT INTO `transmog_items` (`entry`) VALUES('139627'); +INSERT INTO `transmog_items` (`entry`) VALUES('139628'); +INSERT INTO `transmog_items` (`entry`) VALUES('139629'); +INSERT INTO `transmog_items` (`entry`) VALUES('139630'); +INSERT INTO `transmog_items` (`entry`) VALUES('139631'); +INSERT INTO `transmog_items` (`entry`) VALUES('139632'); +INSERT INTO `transmog_items` (`entry`) VALUES('139633'); +INSERT INTO `transmog_items` (`entry`) VALUES('139634'); +INSERT INTO `transmog_items` (`entry`) VALUES('139635'); +INSERT INTO `transmog_items` (`entry`) VALUES('139636'); +INSERT INTO `transmog_items` (`entry`) VALUES('139637'); +INSERT INTO `transmog_items` (`entry`) VALUES('139638'); +INSERT INTO `transmog_items` (`entry`) VALUES('139639'); +INSERT INTO `transmog_items` (`entry`) VALUES('139640'); +INSERT INTO `transmog_items` (`entry`) VALUES('139641'); +INSERT INTO `transmog_items` (`entry`) VALUES('139642'); +INSERT INTO `transmog_items` (`entry`) VALUES('139657'); +INSERT INTO `transmog_items` (`entry`) VALUES('139672'); +INSERT INTO `transmog_items` (`entry`) VALUES('139673'); +INSERT INTO `transmog_items` (`entry`) VALUES('139674'); +INSERT INTO `transmog_items` (`entry`) VALUES('139675'); +INSERT INTO `transmog_items` (`entry`) VALUES('139676'); +INSERT INTO `transmog_items` (`entry`) VALUES('139678'); +INSERT INTO `transmog_items` (`entry`) VALUES('139679'); +INSERT INTO `transmog_items` (`entry`) VALUES('139680'); +INSERT INTO `transmog_items` (`entry`) VALUES('139688'); +INSERT INTO `transmog_items` (`entry`) VALUES('139701'); +INSERT INTO `transmog_items` (`entry`) VALUES('139702'); +INSERT INTO `transmog_items` (`entry`) VALUES('139703'); +INSERT INTO `transmog_items` (`entry`) VALUES('139704'); +INSERT INTO `transmog_items` (`entry`) VALUES('139706'); +INSERT INTO `transmog_items` (`entry`) VALUES('139707'); +INSERT INTO `transmog_items` (`entry`) VALUES('139708'); +INSERT INTO `transmog_items` (`entry`) VALUES('139709'); +INSERT INTO `transmog_items` (`entry`) VALUES('139710'); +INSERT INTO `transmog_items` (`entry`) VALUES('139711'); +INSERT INTO `transmog_items` (`entry`) VALUES('139712'); +INSERT INTO `transmog_items` (`entry`) VALUES('139714'); +INSERT INTO `transmog_items` (`entry`) VALUES('139716'); +INSERT INTO `transmog_items` (`entry`) VALUES('139717'); +INSERT INTO `transmog_items` (`entry`) VALUES('139718'); +INSERT INTO `transmog_items` (`entry`) VALUES('139719'); +INSERT INTO `transmog_items` (`entry`) VALUES('139720'); +INSERT INTO `transmog_items` (`entry`) VALUES('139721'); +INSERT INTO `transmog_items` (`entry`) VALUES('139722'); +INSERT INTO `transmog_items` (`entry`) VALUES('139723'); +INSERT INTO `transmog_items` (`entry`) VALUES('139724'); +INSERT INTO `transmog_items` (`entry`) VALUES('139725'); +INSERT INTO `transmog_items` (`entry`) VALUES('139726'); +INSERT INTO `transmog_items` (`entry`) VALUES('139727'); +INSERT INTO `transmog_items` (`entry`) VALUES('139729'); +INSERT INTO `transmog_items` (`entry`) VALUES('139731'); +INSERT INTO `transmog_items` (`entry`) VALUES('139732'); +INSERT INTO `transmog_items` (`entry`) VALUES('139733'); +INSERT INTO `transmog_items` (`entry`) VALUES('139734'); +INSERT INTO `transmog_items` (`entry`) VALUES('139735'); +INSERT INTO `transmog_items` (`entry`) VALUES('139756'); +INSERT INTO `transmog_items` (`entry`) VALUES('139759'); +INSERT INTO `transmog_items` (`entry`) VALUES('139760'); +INSERT INTO `transmog_items` (`entry`) VALUES('139761'); +INSERT INTO `transmog_items` (`entry`) VALUES('139762'); +INSERT INTO `transmog_items` (`entry`) VALUES('139763'); +INSERT INTO `transmog_items` (`entry`) VALUES('139764'); +INSERT INTO `transmog_items` (`entry`) VALUES('139765'); +INSERT INTO `transmog_items` (`entry`) VALUES('139767'); +INSERT INTO `transmog_items` (`entry`) VALUES('139768'); +INSERT INTO `transmog_items` (`entry`) VALUES('139769'); +INSERT INTO `transmog_items` (`entry`) VALUES('139770'); +INSERT INTO `transmog_items` (`entry`) VALUES('139771'); +INSERT INTO `transmog_items` (`entry`) VALUES('139772'); +INSERT INTO `transmog_items` (`entry`) VALUES('139773'); +INSERT INTO `transmog_items` (`entry`) VALUES('139775'); +INSERT INTO `transmog_items` (`entry`) VALUES('139776'); +INSERT INTO `transmog_items` (`entry`) VALUES('139778'); +INSERT INTO `transmog_items` (`entry`) VALUES('139779'); +INSERT INTO `transmog_items` (`entry`) VALUES('139780'); +INSERT INTO `transmog_items` (`entry`) VALUES('139781'); +INSERT INTO `transmog_items` (`entry`) VALUES('139782'); +INSERT INTO `transmog_items` (`entry`) VALUES('139783'); +INSERT INTO `transmog_items` (`entry`) VALUES('139785'); +INSERT INTO `transmog_items` (`entry`) VALUES('139787'); +INSERT INTO `transmog_items` (`entry`) VALUES('139788'); +INSERT INTO `transmog_items` (`entry`) VALUES('139789'); +INSERT INTO `transmog_items` (`entry`) VALUES('139790'); +INSERT INTO `transmog_items` (`entry`) VALUES('139791'); +INSERT INTO `transmog_items` (`entry`) VALUES('139794'); +INSERT INTO `transmog_items` (`entry`) VALUES('139795'); +INSERT INTO `transmog_items` (`entry`) VALUES('139796'); +INSERT INTO `transmog_items` (`entry`) VALUES('139797'); +INSERT INTO `transmog_items` (`entry`) VALUES('139799'); +INSERT INTO `transmog_items` (`entry`) VALUES('139800'); +INSERT INTO `transmog_items` (`entry`) VALUES('139801'); +INSERT INTO `transmog_items` (`entry`) VALUES('139803'); +INSERT INTO `transmog_items` (`entry`) VALUES('139804'); +INSERT INTO `transmog_items` (`entry`) VALUES('139805'); +INSERT INTO `transmog_items` (`entry`) VALUES('139807'); +INSERT INTO `transmog_items` (`entry`) VALUES('139809'); +INSERT INTO `transmog_items` (`entry`) VALUES('139810'); +INSERT INTO `transmog_items` (`entry`) VALUES('139812'); +INSERT INTO `transmog_items` (`entry`) VALUES('139814'); +INSERT INTO `transmog_items` (`entry`) VALUES('139815'); +INSERT INTO `transmog_items` (`entry`) VALUES('139816'); +INSERT INTO `transmog_items` (`entry`) VALUES('139817'); +INSERT INTO `transmog_items` (`entry`) VALUES('139818'); +INSERT INTO `transmog_items` (`entry`) VALUES('139820'); +INSERT INTO `transmog_items` (`entry`) VALUES('139822'); +INSERT INTO `transmog_items` (`entry`) VALUES('139823'); +INSERT INTO `transmog_items` (`entry`) VALUES('139824'); +INSERT INTO `transmog_items` (`entry`) VALUES('139825'); +INSERT INTO `transmog_items` (`entry`) VALUES('139828'); +INSERT INTO `transmog_items` (`entry`) VALUES('139829'); +INSERT INTO `transmog_items` (`entry`) VALUES('139830'); +INSERT INTO `transmog_items` (`entry`) VALUES('139833'); +INSERT INTO `transmog_items` (`entry`) VALUES('139834'); +INSERT INTO `transmog_items` (`entry`) VALUES('139835'); +INSERT INTO `transmog_items` (`entry`) VALUES('139836'); +INSERT INTO `transmog_items` (`entry`) VALUES('139837'); +INSERT INTO `transmog_items` (`entry`) VALUES('139838'); +INSERT INTO `transmog_items` (`entry`) VALUES('139839'); +INSERT INTO `transmog_items` (`entry`) VALUES('139841'); +INSERT INTO `transmog_items` (`entry`) VALUES('139842'); +INSERT INTO `transmog_items` (`entry`) VALUES('139843'); +INSERT INTO `transmog_items` (`entry`) VALUES('139844'); +INSERT INTO `transmog_items` (`entry`) VALUES('139845'); +INSERT INTO `transmog_items` (`entry`) VALUES('139846'); +INSERT INTO `transmog_items` (`entry`) VALUES('139847'); +INSERT INTO `transmog_items` (`entry`) VALUES('139849'); +INSERT INTO `transmog_items` (`entry`) VALUES('139850'); +INSERT INTO `transmog_items` (`entry`) VALUES('139851'); +INSERT INTO `transmog_items` (`entry`) VALUES('139852'); +INSERT INTO `transmog_items` (`entry`) VALUES('139854'); +INSERT INTO `transmog_items` (`entry`) VALUES('139855'); +INSERT INTO `transmog_items` (`entry`) VALUES('139856'); +INSERT INTO `transmog_items` (`entry`) VALUES('139857'); +INSERT INTO `transmog_items` (`entry`) VALUES('139858'); +INSERT INTO `transmog_items` (`entry`) VALUES('139859'); +INSERT INTO `transmog_items` (`entry`) VALUES('139860'); +INSERT INTO `transmog_items` (`entry`) VALUES('139861'); +INSERT INTO `transmog_items` (`entry`) VALUES('139862'); +INSERT INTO `transmog_items` (`entry`) VALUES('139863'); +INSERT INTO `transmog_items` (`entry`) VALUES('139864'); +INSERT INTO `transmog_items` (`entry`) VALUES('139865'); +INSERT INTO `transmog_items` (`entry`) VALUES('139866'); +INSERT INTO `transmog_items` (`entry`) VALUES('139867'); +INSERT INTO `transmog_items` (`entry`) VALUES('139868'); +INSERT INTO `transmog_items` (`entry`) VALUES('139869'); +INSERT INTO `transmog_items` (`entry`) VALUES('139870'); +INSERT INTO `transmog_items` (`entry`) VALUES('139871'); +INSERT INTO `transmog_items` (`entry`) VALUES('139872'); +INSERT INTO `transmog_items` (`entry`) VALUES('139873'); +INSERT INTO `transmog_items` (`entry`) VALUES('139874'); +INSERT INTO `transmog_items` (`entry`) VALUES('139875'); +INSERT INTO `transmog_items` (`entry`) VALUES('139876'); +INSERT INTO `transmog_items` (`entry`) VALUES('139877'); +INSERT INTO `transmog_items` (`entry`) VALUES('139880'); +INSERT INTO `transmog_items` (`entry`) VALUES('139881'); +INSERT INTO `transmog_items` (`entry`) VALUES('139882'); +INSERT INTO `transmog_items` (`entry`) VALUES('139886'); +INSERT INTO `transmog_items` (`entry`) VALUES('139887'); +INSERT INTO `transmog_items` (`entry`) VALUES('139888'); +INSERT INTO `transmog_items` (`entry`) VALUES('139890'); +INSERT INTO `transmog_items` (`entry`) VALUES('139891'); +INSERT INTO `transmog_items` (`entry`) VALUES('139893'); +INSERT INTO `transmog_items` (`entry`) VALUES('139894'); +INSERT INTO `transmog_items` (`entry`) VALUES('139895'); +INSERT INTO `transmog_items` (`entry`) VALUES('139897'); +INSERT INTO `transmog_items` (`entry`) VALUES('139987'); +INSERT INTO `transmog_items` (`entry`) VALUES('139995'); +INSERT INTO `transmog_items` (`entry`) VALUES('140005'); +INSERT INTO `transmog_items` (`entry`) VALUES('140007'); +INSERT INTO `transmog_items` (`entry`) VALUES('140018'); +INSERT INTO `transmog_items` (`entry`) VALUES('140019'); +INSERT INTO `transmog_items` (`entry`) VALUES('140020'); +INSERT INTO `transmog_items` (`entry`) VALUES('140021'); +INSERT INTO `transmog_items` (`entry`) VALUES('140060'); +INSERT INTO `transmog_items` (`entry`) VALUES('140061'); +INSERT INTO `transmog_items` (`entry`) VALUES('140062'); +INSERT INTO `transmog_items` (`entry`) VALUES('140063'); +INSERT INTO `transmog_items` (`entry`) VALUES('140184'); +INSERT INTO `transmog_items` (`entry`) VALUES('140185'); +INSERT INTO `transmog_items` (`entry`) VALUES('140186'); +INSERT INTO `transmog_items` (`entry`) VALUES('140187'); +INSERT INTO `transmog_items` (`entry`) VALUES('140188'); +INSERT INTO `transmog_items` (`entry`) VALUES('140189'); +INSERT INTO `transmog_items` (`entry`) VALUES('140190'); +INSERT INTO `transmog_items` (`entry`) VALUES('140193'); +INSERT INTO `transmog_items` (`entry`) VALUES('140194'); +INSERT INTO `transmog_items` (`entry`) VALUES('140196'); +INSERT INTO `transmog_items` (`entry`) VALUES('140197'); +INSERT INTO `transmog_items` (`entry`) VALUES('140198'); +INSERT INTO `transmog_items` (`entry`) VALUES('140200'); +INSERT INTO `transmog_items` (`entry`) VALUES('140201'); +INSERT INTO `transmog_items` (`entry`) VALUES('140203'); +INSERT INTO `transmog_items` (`entry`) VALUES('140204'); +INSERT INTO `transmog_items` (`entry`) VALUES('140205'); +INSERT INTO `transmog_items` (`entry`) VALUES('140206'); +INSERT INTO `transmog_items` (`entry`) VALUES('140208'); +INSERT INTO `transmog_items` (`entry`) VALUES('140209'); +INSERT INTO `transmog_items` (`entry`) VALUES('140210'); +INSERT INTO `transmog_items` (`entry`) VALUES('140234'); +INSERT INTO `transmog_items` (`entry`) VALUES('140235'); +INSERT INTO `transmog_items` (`entry`) VALUES('140236'); +INSERT INTO `transmog_items` (`entry`) VALUES('140237'); +INSERT INTO `transmog_items` (`entry`) VALUES('140238'); +INSERT INTO `transmog_items` (`entry`) VALUES('140239'); +INSERT INTO `transmog_items` (`entry`) VALUES('140240'); +INSERT INTO `transmog_items` (`entry`) VALUES('140241'); +INSERT INTO `transmog_items` (`entry`) VALUES('140242'); +INSERT INTO `transmog_items` (`entry`) VALUES('140243'); +INSERT INTO `transmog_items` (`entry`) VALUES('140244'); +INSERT INTO `transmog_items` (`entry`) VALUES('140245'); +INSERT INTO `transmog_items` (`entry`) VALUES('140246'); +INSERT INTO `transmog_items` (`entry`) VALUES('140247'); +INSERT INTO `transmog_items` (`entry`) VALUES('140249'); +INSERT INTO `transmog_items` (`entry`) VALUES('140250'); +INSERT INTO `transmog_items` (`entry`) VALUES('140251'); +INSERT INTO `transmog_items` (`entry`) VALUES('140252'); +INSERT INTO `transmog_items` (`entry`) VALUES('140253'); +INSERT INTO `transmog_items` (`entry`) VALUES('140254'); +INSERT INTO `transmog_items` (`entry`) VALUES('140259'); +INSERT INTO `transmog_items` (`entry`) VALUES('140260'); +INSERT INTO `transmog_items` (`entry`) VALUES('140261'); +INSERT INTO `transmog_items` (`entry`) VALUES('140262'); +INSERT INTO `transmog_items` (`entry`) VALUES('140263'); +INSERT INTO `transmog_items` (`entry`) VALUES('140264'); +INSERT INTO `transmog_items` (`entry`) VALUES('140265'); +INSERT INTO `transmog_items` (`entry`) VALUES('140266'); +INSERT INTO `transmog_items` (`entry`) VALUES('140269'); +INSERT INTO `transmog_items` (`entry`) VALUES('140270'); +INSERT INTO `transmog_items` (`entry`) VALUES('140271'); +INSERT INTO `transmog_items` (`entry`) VALUES('140272'); +INSERT INTO `transmog_items` (`entry`) VALUES('140274'); +INSERT INTO `transmog_items` (`entry`) VALUES('140275'); +INSERT INTO `transmog_items` (`entry`) VALUES('140277'); +INSERT INTO `transmog_items` (`entry`) VALUES('140278'); +INSERT INTO `transmog_items` (`entry`) VALUES('140279'); +INSERT INTO `transmog_items` (`entry`) VALUES('140281'); +INSERT INTO `transmog_items` (`entry`) VALUES('140282'); +INSERT INTO `transmog_items` (`entry`) VALUES('140283'); +INSERT INTO `transmog_items` (`entry`) VALUES('140284'); +INSERT INTO `transmog_items` (`entry`) VALUES('140285'); +INSERT INTO `transmog_items` (`entry`) VALUES('140286'); +INSERT INTO `transmog_items` (`entry`) VALUES('140287'); +INSERT INTO `transmog_items` (`entry`) VALUES('140288'); +INSERT INTO `transmog_items` (`entry`) VALUES('140289'); +INSERT INTO `transmog_items` (`entry`) VALUES('140290'); +INSERT INTO `transmog_items` (`entry`) VALUES('140291'); +INSERT INTO `transmog_items` (`entry`) VALUES('140292'); +INSERT INTO `transmog_items` (`entry`) VALUES('140293'); +INSERT INTO `transmog_items` (`entry`) VALUES('140294'); +INSERT INTO `transmog_items` (`entry`) VALUES('140295'); +INSERT INTO `transmog_items` (`entry`) VALUES('140296'); +INSERT INTO `transmog_items` (`entry`) VALUES('140297'); +INSERT INTO `transmog_items` (`entry`) VALUES('140298'); +INSERT INTO `transmog_items` (`entry`) VALUES('140299'); +INSERT INTO `transmog_items` (`entry`) VALUES('140301'); +INSERT INTO `transmog_items` (`entry`) VALUES('140302'); +INSERT INTO `transmog_items` (`entry`) VALUES('140303'); +INSERT INTO `transmog_items` (`entry`) VALUES('140304'); +INSERT INTO `transmog_items` (`entry`) VALUES('140305'); +INSERT INTO `transmog_items` (`entry`) VALUES('140306'); +INSERT INTO `transmog_items` (`entry`) VALUES('140315'); +INSERT INTO `transmog_items` (`entry`) VALUES('140316'); +INSERT INTO `transmog_items` (`entry`) VALUES('140317'); +INSERT INTO `transmog_items` (`entry`) VALUES('140318'); +INSERT INTO `transmog_items` (`entry`) VALUES('140319'); +INSERT INTO `transmog_items` (`entry`) VALUES('140320'); +INSERT INTO `transmog_items` (`entry`) VALUES('140323'); +INSERT INTO `transmog_items` (`entry`) VALUES('140324'); +INSERT INTO `transmog_items` (`entry`) VALUES('140325'); +INSERT INTO `transmog_items` (`entry`) VALUES('140326'); +INSERT INTO `transmog_items` (`entry`) VALUES('140327'); +INSERT INTO `transmog_items` (`entry`) VALUES('140328'); +INSERT INTO `transmog_items` (`entry`) VALUES('140329'); +INSERT INTO `transmog_items` (`entry`) VALUES('140330'); +INSERT INTO `transmog_items` (`entry`) VALUES('140331'); +INSERT INTO `transmog_items` (`entry`) VALUES('140332'); +INSERT INTO `transmog_items` (`entry`) VALUES('140333'); +INSERT INTO `transmog_items` (`entry`) VALUES('140334'); +INSERT INTO `transmog_items` (`entry`) VALUES('140335'); +INSERT INTO `transmog_items` (`entry`) VALUES('140338'); +INSERT INTO `transmog_items` (`entry`) VALUES('140339'); +INSERT INTO `transmog_items` (`entry`) VALUES('140340'); +INSERT INTO `transmog_items` (`entry`) VALUES('140341'); +INSERT INTO `transmog_items` (`entry`) VALUES('140344'); +INSERT INTO `transmog_items` (`entry`) VALUES('140346'); +INSERT INTO `transmog_items` (`entry`) VALUES('140347'); +INSERT INTO `transmog_items` (`entry`) VALUES('140349'); +INSERT INTO `transmog_items` (`entry`) VALUES('140351'); +INSERT INTO `transmog_items` (`entry`) VALUES('140352'); +INSERT INTO `transmog_items` (`entry`) VALUES('140353'); +INSERT INTO `transmog_items` (`entry`) VALUES('140362'); +INSERT INTO `transmog_items` (`entry`) VALUES('140363'); +INSERT INTO `transmog_items` (`entry`) VALUES('140365'); +INSERT INTO `transmog_items` (`entry`) VALUES('140366'); +INSERT INTO `transmog_items` (`entry`) VALUES('140367'); +INSERT INTO `transmog_items` (`entry`) VALUES('140368'); +INSERT INTO `transmog_items` (`entry`) VALUES('140376'); +INSERT INTO `transmog_items` (`entry`) VALUES('140377'); +INSERT INTO `transmog_items` (`entry`) VALUES('140379'); +INSERT INTO `transmog_items` (`entry`) VALUES('140380'); +INSERT INTO `transmog_items` (`entry`) VALUES('140381'); +INSERT INTO `transmog_items` (`entry`) VALUES('140383'); +INSERT INTO `transmog_items` (`entry`) VALUES('140384'); +INSERT INTO `transmog_items` (`entry`) VALUES('140385'); +INSERT INTO `transmog_items` (`entry`) VALUES('140386'); +INSERT INTO `transmog_items` (`entry`) VALUES('140395'); +INSERT INTO `transmog_items` (`entry`) VALUES('140398'); +INSERT INTO `transmog_items` (`entry`) VALUES('140400'); +INSERT INTO `transmog_items` (`entry`) VALUES('140401'); +INSERT INTO `transmog_items` (`entry`) VALUES('140403'); +INSERT INTO `transmog_items` (`entry`) VALUES('140405'); +INSERT INTO `transmog_items` (`entry`) VALUES('140408'); +INSERT INTO `transmog_items` (`entry`) VALUES('140409'); +INSERT INTO `transmog_items` (`entry`) VALUES('140410'); +INSERT INTO `transmog_items` (`entry`) VALUES('140414'); +INSERT INTO `transmog_items` (`entry`) VALUES('140415'); +INSERT INTO `transmog_items` (`entry`) VALUES('140416'); +INSERT INTO `transmog_items` (`entry`) VALUES('140417'); +INSERT INTO `transmog_items` (`entry`) VALUES('140418'); +INSERT INTO `transmog_items` (`entry`) VALUES('140419'); +INSERT INTO `transmog_items` (`entry`) VALUES('140420'); +INSERT INTO `transmog_items` (`entry`) VALUES('140421'); +INSERT INTO `transmog_items` (`entry`) VALUES('140422'); +INSERT INTO `transmog_items` (`entry`) VALUES('140423'); +INSERT INTO `transmog_items` (`entry`) VALUES('140424'); +INSERT INTO `transmog_items` (`entry`) VALUES('140428'); +INSERT INTO `transmog_items` (`entry`) VALUES('140429'); +INSERT INTO `transmog_items` (`entry`) VALUES('140437'); +INSERT INTO `transmog_items` (`entry`) VALUES('140438'); +INSERT INTO `transmog_items` (`entry`) VALUES('140439'); +INSERT INTO `transmog_items` (`entry`) VALUES('140440'); +INSERT INTO `transmog_items` (`entry`) VALUES('140441'); +INSERT INTO `transmog_items` (`entry`) VALUES('140442'); +INSERT INTO `transmog_items` (`entry`) VALUES('140443'); +INSERT INTO `transmog_items` (`entry`) VALUES('140444'); +INSERT INTO `transmog_items` (`entry`) VALUES('140445'); +INSERT INTO `transmog_items` (`entry`) VALUES('140446'); +INSERT INTO `transmog_items` (`entry`) VALUES('140447'); +INSERT INTO `transmog_items` (`entry`) VALUES('140448'); +INSERT INTO `transmog_items` (`entry`) VALUES('140449'); +INSERT INTO `transmog_items` (`entry`) VALUES('140450'); +INSERT INTO `transmog_items` (`entry`) VALUES('140451'); +INSERT INTO `transmog_items` (`entry`) VALUES('140453'); +INSERT INTO `transmog_items` (`entry`) VALUES('140454'); +INSERT INTO `transmog_items` (`entry`) VALUES('140456'); +INSERT INTO `transmog_items` (`entry`) VALUES('140457'); +INSERT INTO `transmog_items` (`entry`) VALUES('140458'); +INSERT INTO `transmog_items` (`entry`) VALUES('140459'); +INSERT INTO `transmog_items` (`entry`) VALUES('140460'); +INSERT INTO `transmog_items` (`entry`) VALUES('140461'); +INSERT INTO `transmog_items` (`entry`) VALUES('140462'); +INSERT INTO `transmog_items` (`entry`) VALUES('140463'); +INSERT INTO `transmog_items` (`entry`) VALUES('140465'); +INSERT INTO `transmog_items` (`entry`) VALUES('140466'); +INSERT INTO `transmog_items` (`entry`) VALUES('140467'); +INSERT INTO `transmog_items` (`entry`) VALUES('140468'); +INSERT INTO `transmog_items` (`entry`) VALUES('140469'); +INSERT INTO `transmog_items` (`entry`) VALUES('140470'); +INSERT INTO `transmog_items` (`entry`) VALUES('140471'); +INSERT INTO `transmog_items` (`entry`) VALUES('140472'); +INSERT INTO `transmog_items` (`entry`) VALUES('140473'); +INSERT INTO `transmog_items` (`entry`) VALUES('140475'); +INSERT INTO `transmog_items` (`entry`) VALUES('140488'); +INSERT INTO `transmog_items` (`entry`) VALUES('140490'); +INSERT INTO `transmog_items` (`entry`) VALUES('140493'); +INSERT INTO `transmog_items` (`entry`) VALUES('140494'); +INSERT INTO `transmog_items` (`entry`) VALUES('140495'); +INSERT INTO `transmog_items` (`entry`) VALUES('140496'); +INSERT INTO `transmog_items` (`entry`) VALUES('140497'); +INSERT INTO `transmog_items` (`entry`) VALUES('140499'); +INSERT INTO `transmog_items` (`entry`) VALUES('140500'); +INSERT INTO `transmog_items` (`entry`) VALUES('140502'); +INSERT INTO `transmog_items` (`entry`) VALUES('140503'); +INSERT INTO `transmog_items` (`entry`) VALUES('140504'); +INSERT INTO `transmog_items` (`entry`) VALUES('140505'); +INSERT INTO `transmog_items` (`entry`) VALUES('140506'); +INSERT INTO `transmog_items` (`entry`) VALUES('140507'); +INSERT INTO `transmog_items` (`entry`) VALUES('140508'); +INSERT INTO `transmog_items` (`entry`) VALUES('140509'); +INSERT INTO `transmog_items` (`entry`) VALUES('140510'); +INSERT INTO `transmog_items` (`entry`) VALUES('140511'); +INSERT INTO `transmog_items` (`entry`) VALUES('140512'); +INSERT INTO `transmog_items` (`entry`) VALUES('140513'); +INSERT INTO `transmog_items` (`entry`) VALUES('140514'); +INSERT INTO `transmog_items` (`entry`) VALUES('140515'); +INSERT INTO `transmog_items` (`entry`) VALUES('140516'); +INSERT INTO `transmog_items` (`entry`) VALUES('140517'); +INSERT INTO `transmog_items` (`entry`) VALUES('140518'); +INSERT INTO `transmog_items` (`entry`) VALUES('140519'); +INSERT INTO `transmog_items` (`entry`) VALUES('140520'); +INSERT INTO `transmog_items` (`entry`) VALUES('140521'); +INSERT INTO `transmog_items` (`entry`) VALUES('140522'); +INSERT INTO `transmog_items` (`entry`) VALUES('140523'); +INSERT INTO `transmog_items` (`entry`) VALUES('140524'); +INSERT INTO `transmog_items` (`entry`) VALUES('140525'); +INSERT INTO `transmog_items` (`entry`) VALUES('140526'); +INSERT INTO `transmog_items` (`entry`) VALUES('140527'); +INSERT INTO `transmog_items` (`entry`) VALUES('140528'); +INSERT INTO `transmog_items` (`entry`) VALUES('140529'); +INSERT INTO `transmog_items` (`entry`) VALUES('140530'); +INSERT INTO `transmog_items` (`entry`) VALUES('140539'); +INSERT INTO `transmog_items` (`entry`) VALUES('140541'); +INSERT INTO `transmog_items` (`entry`) VALUES('140543'); +INSERT INTO `transmog_items` (`entry`) VALUES('140544'); +INSERT INTO `transmog_items` (`entry`) VALUES('140545'); +INSERT INTO `transmog_items` (`entry`) VALUES('140546'); +INSERT INTO `transmog_items` (`entry`) VALUES('140547'); +INSERT INTO `transmog_items` (`entry`) VALUES('140548'); +INSERT INTO `transmog_items` (`entry`) VALUES('140549'); +INSERT INTO `transmog_items` (`entry`) VALUES('140550'); +INSERT INTO `transmog_items` (`entry`) VALUES('140552'); +INSERT INTO `transmog_items` (`entry`) VALUES('140554'); +INSERT INTO `transmog_items` (`entry`) VALUES('140555'); +INSERT INTO `transmog_items` (`entry`) VALUES('140556'); +INSERT INTO `transmog_items` (`entry`) VALUES('140557'); +INSERT INTO `transmog_items` (`entry`) VALUES('140558'); +INSERT INTO `transmog_items` (`entry`) VALUES('140559'); +INSERT INTO `transmog_items` (`entry`) VALUES('140560'); +INSERT INTO `transmog_items` (`entry`) VALUES('140561'); +INSERT INTO `transmog_items` (`entry`) VALUES('140562'); +INSERT INTO `transmog_items` (`entry`) VALUES('140563'); +INSERT INTO `transmog_items` (`entry`) VALUES('140564'); +INSERT INTO `transmog_items` (`entry`) VALUES('140565'); +INSERT INTO `transmog_items` (`entry`) VALUES('140566'); +INSERT INTO `transmog_items` (`entry`) VALUES('140567'); +INSERT INTO `transmog_items` (`entry`) VALUES('140568'); +INSERT INTO `transmog_items` (`entry`) VALUES('140569'); +INSERT INTO `transmog_items` (`entry`) VALUES('140570'); +INSERT INTO `transmog_items` (`entry`) VALUES('140571'); +INSERT INTO `transmog_items` (`entry`) VALUES('140572'); +INSERT INTO `transmog_items` (`entry`) VALUES('140573'); +INSERT INTO `transmog_items` (`entry`) VALUES('140574'); +INSERT INTO `transmog_items` (`entry`) VALUES('140575'); +INSERT INTO `transmog_items` (`entry`) VALUES('140576'); +INSERT INTO `transmog_items` (`entry`) VALUES('140577'); +INSERT INTO `transmog_items` (`entry`) VALUES('140578'); +INSERT INTO `transmog_items` (`entry`) VALUES('140579'); +INSERT INTO `transmog_items` (`entry`) VALUES('140580'); +INSERT INTO `transmog_items` (`entry`) VALUES('140581'); +INSERT INTO `transmog_items` (`entry`) VALUES('140583'); +INSERT INTO `transmog_items` (`entry`) VALUES('140584'); +INSERT INTO `transmog_items` (`entry`) VALUES('140588'); +INSERT INTO `transmog_items` (`entry`) VALUES('140589'); +INSERT INTO `transmog_items` (`entry`) VALUES('140590'); +INSERT INTO `transmog_items` (`entry`) VALUES('140591'); +INSERT INTO `transmog_items` (`entry`) VALUES('140592'); +INSERT INTO `transmog_items` (`entry`) VALUES('140594'); +INSERT INTO `transmog_items` (`entry`) VALUES('140602'); +INSERT INTO `transmog_items` (`entry`) VALUES('140668'); +INSERT INTO `transmog_items` (`entry`) VALUES('140669'); +INSERT INTO `transmog_items` (`entry`) VALUES('140670'); +INSERT INTO `transmog_items` (`entry`) VALUES('140671'); +INSERT INTO `transmog_items` (`entry`) VALUES('140672'); +INSERT INTO `transmog_items` (`entry`) VALUES('140673'); +INSERT INTO `transmog_items` (`entry`) VALUES('140674'); +INSERT INTO `transmog_items` (`entry`) VALUES('140675'); +INSERT INTO `transmog_items` (`entry`) VALUES('140688'); +INSERT INTO `transmog_items` (`entry`) VALUES('140689'); +INSERT INTO `transmog_items` (`entry`) VALUES('140691'); +INSERT INTO `transmog_items` (`entry`) VALUES('140692'); +INSERT INTO `transmog_items` (`entry`) VALUES('140693'); +INSERT INTO `transmog_items` (`entry`) VALUES('140694'); +INSERT INTO `transmog_items` (`entry`) VALUES('140695'); +INSERT INTO `transmog_items` (`entry`) VALUES('140696'); +INSERT INTO `transmog_items` (`entry`) VALUES('140697'); +INSERT INTO `transmog_items` (`entry`) VALUES('140700'); +INSERT INTO `transmog_items` (`entry`) VALUES('140701'); +INSERT INTO `transmog_items` (`entry`) VALUES('140702'); +INSERT INTO `transmog_items` (`entry`) VALUES('140704'); +INSERT INTO `transmog_items` (`entry`) VALUES('140716'); +INSERT INTO `transmog_items` (`entry`) VALUES('140721'); +INSERT INTO `transmog_items` (`entry`) VALUES('140722'); +INSERT INTO `transmog_items` (`entry`) VALUES('140723'); +INSERT INTO `transmog_items` (`entry`) VALUES('140724'); +INSERT INTO `transmog_items` (`entry`) VALUES('140733'); +INSERT INTO `transmog_items` (`entry`) VALUES('140734'); +INSERT INTO `transmog_items` (`entry`) VALUES('140735'); +INSERT INTO `transmog_items` (`entry`) VALUES('140736'); +INSERT INTO `transmog_items` (`entry`) VALUES('140737'); +INSERT INTO `transmog_items` (`entry`) VALUES('140738'); +INSERT INTO `transmog_items` (`entry`) VALUES('140739'); +INSERT INTO `transmog_items` (`entry`) VALUES('140740'); +INSERT INTO `transmog_items` (`entry`) VALUES('140741'); +INSERT INTO `transmog_items` (`entry`) VALUES('140742'); +INSERT INTO `transmog_items` (`entry`) VALUES('140743'); +INSERT INTO `transmog_items` (`entry`) VALUES('140745'); +INSERT INTO `transmog_items` (`entry`) VALUES('140746'); +INSERT INTO `transmog_items` (`entry`) VALUES('140747'); +INSERT INTO `transmog_items` (`entry`) VALUES('140748'); +INSERT INTO `transmog_items` (`entry`) VALUES('140749'); +INSERT INTO `transmog_items` (`entry`) VALUES('140750'); +INSERT INTO `transmog_items` (`entry`) VALUES('140751'); +INSERT INTO `transmog_items` (`entry`) VALUES('140755'); +INSERT INTO `transmog_items` (`entry`) VALUES('140756'); +INSERT INTO `transmog_items` (`entry`) VALUES('140757'); +INSERT INTO `transmog_items` (`entry`) VALUES('140758'); +INSERT INTO `transmog_items` (`entry`) VALUES('140778'); +INSERT INTO `transmog_items` (`entry`) VALUES('140779'); +INSERT INTO `transmog_items` (`entry`) VALUES('140780'); +INSERT INTO `transmog_items` (`entry`) VALUES('140781'); +INSERT INTO `transmog_items` (`entry`) VALUES('140782'); +INSERT INTO `transmog_items` (`entry`) VALUES('140783'); +INSERT INTO `transmog_items` (`entry`) VALUES('140784'); +INSERT INTO `transmog_items` (`entry`) VALUES('140785'); +INSERT INTO `transmog_items` (`entry`) VALUES('140786'); +INSERT INTO `transmog_items` (`entry`) VALUES('140787'); +INSERT INTO `transmog_items` (`entry`) VALUES('140788'); +INSERT INTO `transmog_items` (`entry`) VALUES('140789'); +INSERT INTO `transmog_items` (`entry`) VALUES('140790'); +INSERT INTO `transmog_items` (`entry`) VALUES('140791'); +INSERT INTO `transmog_items` (`entry`) VALUES('140792'); +INSERT INTO `transmog_items` (`entry`) VALUES('140797'); +INSERT INTO `transmog_items` (`entry`) VALUES('140798'); +INSERT INTO `transmog_items` (`entry`) VALUES('140799'); +INSERT INTO `transmog_items` (`entry`) VALUES('140801'); +INSERT INTO `transmog_items` (`entry`) VALUES('140802'); +INSERT INTO `transmog_items` (`entry`) VALUES('140803'); +INSERT INTO `transmog_items` (`entry`) VALUES('140804'); +INSERT INTO `transmog_items` (`entry`) VALUES('140805'); +INSERT INTO `transmog_items` (`entry`) VALUES('140806'); +INSERT INTO `transmog_items` (`entry`) VALUES('140807'); +INSERT INTO `transmog_items` (`entry`) VALUES('140808'); +INSERT INTO `transmog_items` (`entry`) VALUES('140809'); +INSERT INTO `transmog_items` (`entry`) VALUES('140810'); +INSERT INTO `transmog_items` (`entry`) VALUES('140811'); +INSERT INTO `transmog_items` (`entry`) VALUES('140812'); +INSERT INTO `transmog_items` (`entry`) VALUES('140816'); +INSERT INTO `transmog_items` (`entry`) VALUES('140817'); +INSERT INTO `transmog_items` (`entry`) VALUES('140818'); +INSERT INTO `transmog_items` (`entry`) VALUES('140819'); +INSERT INTO `transmog_items` (`entry`) VALUES('140820'); +INSERT INTO `transmog_items` (`entry`) VALUES('140821'); +INSERT INTO `transmog_items` (`entry`) VALUES('140823'); +INSERT INTO `transmog_items` (`entry`) VALUES('140824'); +INSERT INTO `transmog_items` (`entry`) VALUES('140825'); +INSERT INTO `transmog_items` (`entry`) VALUES('140826'); +INSERT INTO `transmog_items` (`entry`) VALUES('140827'); +INSERT INTO `transmog_items` (`entry`) VALUES('140828'); +INSERT INTO `transmog_items` (`entry`) VALUES('140829'); +INSERT INTO `transmog_items` (`entry`) VALUES('140830'); +INSERT INTO `transmog_items` (`entry`) VALUES('140831'); +INSERT INTO `transmog_items` (`entry`) VALUES('140836'); +INSERT INTO `transmog_items` (`entry`) VALUES('140837'); +INSERT INTO `transmog_items` (`entry`) VALUES('140838'); +INSERT INTO `transmog_items` (`entry`) VALUES('140840'); +INSERT INTO `transmog_items` (`entry`) VALUES('140841'); +INSERT INTO `transmog_items` (`entry`) VALUES('140842'); +INSERT INTO `transmog_items` (`entry`) VALUES('140844'); +INSERT INTO `transmog_items` (`entry`) VALUES('140845'); +INSERT INTO `transmog_items` (`entry`) VALUES('140846'); +INSERT INTO `transmog_items` (`entry`) VALUES('140847'); +INSERT INTO `transmog_items` (`entry`) VALUES('140848'); +INSERT INTO `transmog_items` (`entry`) VALUES('140849'); +INSERT INTO `transmog_items` (`entry`) VALUES('140850'); +INSERT INTO `transmog_items` (`entry`) VALUES('140851'); +INSERT INTO `transmog_items` (`entry`) VALUES('140852'); +INSERT INTO `transmog_items` (`entry`) VALUES('140856'); +INSERT INTO `transmog_items` (`entry`) VALUES('140857'); +INSERT INTO `transmog_items` (`entry`) VALUES('140858'); +INSERT INTO `transmog_items` (`entry`) VALUES('140859'); +INSERT INTO `transmog_items` (`entry`) VALUES('140860'); +INSERT INTO `transmog_items` (`entry`) VALUES('140861'); +INSERT INTO `transmog_items` (`entry`) VALUES('140862'); +INSERT INTO `transmog_items` (`entry`) VALUES('140863'); +INSERT INTO `transmog_items` (`entry`) VALUES('140864'); +INSERT INTO `transmog_items` (`entry`) VALUES('140866'); +INSERT INTO `transmog_items` (`entry`) VALUES('140868'); +INSERT INTO `transmog_items` (`entry`) VALUES('140869'); +INSERT INTO `transmog_items` (`entry`) VALUES('140870'); +INSERT INTO `transmog_items` (`entry`) VALUES('140871'); +INSERT INTO `transmog_items` (`entry`) VALUES('140872'); +INSERT INTO `transmog_items` (`entry`) VALUES('140877'); +INSERT INTO `transmog_items` (`entry`) VALUES('140878'); +INSERT INTO `transmog_items` (`entry`) VALUES('140879'); +INSERT INTO `transmog_items` (`entry`) VALUES('140880'); +INSERT INTO `transmog_items` (`entry`) VALUES('140881'); +INSERT INTO `transmog_items` (`entry`) VALUES('140882'); +INSERT INTO `transmog_items` (`entry`) VALUES('140883'); +INSERT INTO `transmog_items` (`entry`) VALUES('140884'); +INSERT INTO `transmog_items` (`entry`) VALUES('140887'); +INSERT INTO `transmog_items` (`entry`) VALUES('140888'); +INSERT INTO `transmog_items` (`entry`) VALUES('140889'); +INSERT INTO `transmog_items` (`entry`) VALUES('140890'); +INSERT INTO `transmog_items` (`entry`) VALUES('140898'); +INSERT INTO `transmog_items` (`entry`) VALUES('140904'); +INSERT INTO `transmog_items` (`entry`) VALUES('140905'); +INSERT INTO `transmog_items` (`entry`) VALUES('140907'); +INSERT INTO `transmog_items` (`entry`) VALUES('140910'); +INSERT INTO `transmog_items` (`entry`) VALUES('140918'); +INSERT INTO `transmog_items` (`entry`) VALUES('140925'); +INSERT INTO `transmog_items` (`entry`) VALUES('140926'); +INSERT INTO `transmog_items` (`entry`) VALUES('140927'); +INSERT INTO `transmog_items` (`entry`) VALUES('140928'); +INSERT INTO `transmog_items` (`entry`) VALUES('140930'); +INSERT INTO `transmog_items` (`entry`) VALUES('140931'); +INSERT INTO `transmog_items` (`entry`) VALUES('140932'); +INSERT INTO `transmog_items` (`entry`) VALUES('140933'); +INSERT INTO `transmog_items` (`entry`) VALUES('140934'); +INSERT INTO `transmog_items` (`entry`) VALUES('140936'); +INSERT INTO `transmog_items` (`entry`) VALUES('140937'); +INSERT INTO `transmog_items` (`entry`) VALUES('140938'); +INSERT INTO `transmog_items` (`entry`) VALUES('140939'); +INSERT INTO `transmog_items` (`entry`) VALUES('140940'); +INSERT INTO `transmog_items` (`entry`) VALUES('140942'); +INSERT INTO `transmog_items` (`entry`) VALUES('140943'); +INSERT INTO `transmog_items` (`entry`) VALUES('140949'); +INSERT INTO `transmog_items` (`entry`) VALUES('140950'); +INSERT INTO `transmog_items` (`entry`) VALUES('140951'); +INSERT INTO `transmog_items` (`entry`) VALUES('140952'); +INSERT INTO `transmog_items` (`entry`) VALUES('140953'); +INSERT INTO `transmog_items` (`entry`) VALUES('140954'); +INSERT INTO `transmog_items` (`entry`) VALUES('140955'); +INSERT INTO `transmog_items` (`entry`) VALUES('140956'); +INSERT INTO `transmog_items` (`entry`) VALUES('140957'); +INSERT INTO `transmog_items` (`entry`) VALUES('140958'); +INSERT INTO `transmog_items` (`entry`) VALUES('140959'); +INSERT INTO `transmog_items` (`entry`) VALUES('140960'); +INSERT INTO `transmog_items` (`entry`) VALUES('140961'); +INSERT INTO `transmog_items` (`entry`) VALUES('140962'); +INSERT INTO `transmog_items` (`entry`) VALUES('140963'); +INSERT INTO `transmog_items` (`entry`) VALUES('140964'); +INSERT INTO `transmog_items` (`entry`) VALUES('140966'); +INSERT INTO `transmog_items` (`entry`) VALUES('140972'); +INSERT INTO `transmog_items` (`entry`) VALUES('140973'); +INSERT INTO `transmog_items` (`entry`) VALUES('140974'); +INSERT INTO `transmog_items` (`entry`) VALUES('140975'); +INSERT INTO `transmog_items` (`entry`) VALUES('140976'); +INSERT INTO `transmog_items` (`entry`) VALUES('140977'); +INSERT INTO `transmog_items` (`entry`) VALUES('140978'); +INSERT INTO `transmog_items` (`entry`) VALUES('140979'); +INSERT INTO `transmog_items` (`entry`) VALUES('140982'); +INSERT INTO `transmog_items` (`entry`) VALUES('140983'); +INSERT INTO `transmog_items` (`entry`) VALUES('140984'); +INSERT INTO `transmog_items` (`entry`) VALUES('140986'); +INSERT INTO `transmog_items` (`entry`) VALUES('140987'); +INSERT INTO `transmog_items` (`entry`) VALUES('140988'); +INSERT INTO `transmog_items` (`entry`) VALUES('140989'); +INSERT INTO `transmog_items` (`entry`) VALUES('140990'); +INSERT INTO `transmog_items` (`entry`) VALUES('140991'); +INSERT INTO `transmog_items` (`entry`) VALUES('140992'); +INSERT INTO `transmog_items` (`entry`) VALUES('140993'); +INSERT INTO `transmog_items` (`entry`) VALUES('140994'); +INSERT INTO `transmog_items` (`entry`) VALUES('140995'); +INSERT INTO `transmog_items` (`entry`) VALUES('140998'); +INSERT INTO `transmog_items` (`entry`) VALUES('140999'); +INSERT INTO `transmog_items` (`entry`) VALUES('141000'); +INSERT INTO `transmog_items` (`entry`) VALUES('141001'); +INSERT INTO `transmog_items` (`entry`) VALUES('141002'); +INSERT INTO `transmog_items` (`entry`) VALUES('141004'); +INSERT INTO `transmog_items` (`entry`) VALUES('141005'); +INSERT INTO `transmog_items` (`entry`) VALUES('141006'); +INSERT INTO `transmog_items` (`entry`) VALUES('141007'); +INSERT INTO `transmog_items` (`entry`) VALUES('141008'); +INSERT INTO `transmog_items` (`entry`) VALUES('141010'); +INSERT INTO `transmog_items` (`entry`) VALUES('141011'); +INSERT INTO `transmog_items` (`entry`) VALUES('141012'); +INSERT INTO `transmog_items` (`entry`) VALUES('141013'); +INSERT INTO `transmog_items` (`entry`) VALUES('141014'); +INSERT INTO `transmog_items` (`entry`) VALUES('141016'); +INSERT INTO `transmog_items` (`entry`) VALUES('141017'); +INSERT INTO `transmog_items` (`entry`) VALUES('141018'); +INSERT INTO `transmog_items` (`entry`) VALUES('141019'); +INSERT INTO `transmog_items` (`entry`) VALUES('141020'); +INSERT INTO `transmog_items` (`entry`) VALUES('141023'); +INSERT INTO `transmog_items` (`entry`) VALUES('141024'); +INSERT INTO `transmog_items` (`entry`) VALUES('141025'); +INSERT INTO `transmog_items` (`entry`) VALUES('141026'); +INSERT INTO `transmog_items` (`entry`) VALUES('141027'); +INSERT INTO `transmog_items` (`entry`) VALUES('141028'); +INSERT INTO `transmog_items` (`entry`) VALUES('141030'); +INSERT INTO `transmog_items` (`entry`) VALUES('141031'); +INSERT INTO `transmog_items` (`entry`) VALUES('141032'); +INSERT INTO `transmog_items` (`entry`) VALUES('141033'); +INSERT INTO `transmog_items` (`entry`) VALUES('141034'); +INSERT INTO `transmog_items` (`entry`) VALUES('141036'); +INSERT INTO `transmog_items` (`entry`) VALUES('141037'); +INSERT INTO `transmog_items` (`entry`) VALUES('141038'); +INSERT INTO `transmog_items` (`entry`) VALUES('141039'); +INSERT INTO `transmog_items` (`entry`) VALUES('141041'); +INSERT INTO `transmog_items` (`entry`) VALUES('141042'); +INSERT INTO `transmog_items` (`entry`) VALUES('141043'); +INSERT INTO `transmog_items` (`entry`) VALUES('141044'); +INSERT INTO `transmog_items` (`entry`) VALUES('141045'); +INSERT INTO `transmog_items` (`entry`) VALUES('141047'); +INSERT INTO `transmog_items` (`entry`) VALUES('141048'); +INSERT INTO `transmog_items` (`entry`) VALUES('141049'); +INSERT INTO `transmog_items` (`entry`) VALUES('141050'); +INSERT INTO `transmog_items` (`entry`) VALUES('141051'); +INSERT INTO `transmog_items` (`entry`) VALUES('141052'); +INSERT INTO `transmog_items` (`entry`) VALUES('141054'); +INSERT INTO `transmog_items` (`entry`) VALUES('141055'); +INSERT INTO `transmog_items` (`entry`) VALUES('141056'); +INSERT INTO `transmog_items` (`entry`) VALUES('141059'); +INSERT INTO `transmog_items` (`entry`) VALUES('141060'); +INSERT INTO `transmog_items` (`entry`) VALUES('141061'); +INSERT INTO `transmog_items` (`entry`) VALUES('141063'); +INSERT INTO `transmog_items` (`entry`) VALUES('141064'); +INSERT INTO `transmog_items` (`entry`) VALUES('141065'); +INSERT INTO `transmog_items` (`entry`) VALUES('141066'); +INSERT INTO `transmog_items` (`entry`) VALUES('141068'); +INSERT INTO `transmog_items` (`entry`) VALUES('141069'); +INSERT INTO `transmog_items` (`entry`) VALUES('141070'); +INSERT INTO `transmog_items` (`entry`) VALUES('141071'); +INSERT INTO `transmog_items` (`entry`) VALUES('141073'); +INSERT INTO `transmog_items` (`entry`) VALUES('141074'); +INSERT INTO `transmog_items` (`entry`) VALUES('141075'); +INSERT INTO `transmog_items` (`entry`) VALUES('141076'); +INSERT INTO `transmog_items` (`entry`) VALUES('141078'); +INSERT INTO `transmog_items` (`entry`) VALUES('141079'); +INSERT INTO `transmog_items` (`entry`) VALUES('141080'); +INSERT INTO `transmog_items` (`entry`) VALUES('141081'); +INSERT INTO `transmog_items` (`entry`) VALUES('141082'); +INSERT INTO `transmog_items` (`entry`) VALUES('141084'); +INSERT INTO `transmog_items` (`entry`) VALUES('141085'); +INSERT INTO `transmog_items` (`entry`) VALUES('141086'); +INSERT INTO `transmog_items` (`entry`) VALUES('141087'); +INSERT INTO `transmog_items` (`entry`) VALUES('141088'); +INSERT INTO `transmog_items` (`entry`) VALUES('141112'); +INSERT INTO `transmog_items` (`entry`) VALUES('141113'); +INSERT INTO `transmog_items` (`entry`) VALUES('141114'); +INSERT INTO `transmog_items` (`entry`) VALUES('141116'); +INSERT INTO `transmog_items` (`entry`) VALUES('141117'); +INSERT INTO `transmog_items` (`entry`) VALUES('141126'); +INSERT INTO `transmog_items` (`entry`) VALUES('141127'); +INSERT INTO `transmog_items` (`entry`) VALUES('141128'); +INSERT INTO `transmog_items` (`entry`) VALUES('141129'); +INSERT INTO `transmog_items` (`entry`) VALUES('141134'); +INSERT INTO `transmog_items` (`entry`) VALUES('141135'); +INSERT INTO `transmog_items` (`entry`) VALUES('141136'); +INSERT INTO `transmog_items` (`entry`) VALUES('141137'); +INSERT INTO `transmog_items` (`entry`) VALUES('141138'); +INSERT INTO `transmog_items` (`entry`) VALUES('141140'); +INSERT INTO `transmog_items` (`entry`) VALUES('141141'); +INSERT INTO `transmog_items` (`entry`) VALUES('141142'); +INSERT INTO `transmog_items` (`entry`) VALUES('141143'); +INSERT INTO `transmog_items` (`entry`) VALUES('141144'); +INSERT INTO `transmog_items` (`entry`) VALUES('141148'); +INSERT INTO `transmog_items` (`entry`) VALUES('141149'); +INSERT INTO `transmog_items` (`entry`) VALUES('141150'); +INSERT INTO `transmog_items` (`entry`) VALUES('141151'); +INSERT INTO `transmog_items` (`entry`) VALUES('141152'); +INSERT INTO `transmog_items` (`entry`) VALUES('141154'); +INSERT INTO `transmog_items` (`entry`) VALUES('141155'); +INSERT INTO `transmog_items` (`entry`) VALUES('141156'); +INSERT INTO `transmog_items` (`entry`) VALUES('141157'); +INSERT INTO `transmog_items` (`entry`) VALUES('141158'); +INSERT INTO `transmog_items` (`entry`) VALUES('141160'); +INSERT INTO `transmog_items` (`entry`) VALUES('141162'); +INSERT INTO `transmog_items` (`entry`) VALUES('141168'); +INSERT INTO `transmog_items` (`entry`) VALUES('141181'); +INSERT INTO `transmog_items` (`entry`) VALUES('141183'); +INSERT INTO `transmog_items` (`entry`) VALUES('141184'); +INSERT INTO `transmog_items` (`entry`) VALUES('141185'); +INSERT INTO `transmog_items` (`entry`) VALUES('141189'); +INSERT INTO `transmog_items` (`entry`) VALUES('141190'); +INSERT INTO `transmog_items` (`entry`) VALUES('141198'); +INSERT INTO `transmog_items` (`entry`) VALUES('141199'); +INSERT INTO `transmog_items` (`entry`) VALUES('141200'); +INSERT INTO `transmog_items` (`entry`) VALUES('141202'); +INSERT INTO `transmog_items` (`entry`) VALUES('141203'); +INSERT INTO `transmog_items` (`entry`) VALUES('141204'); +INSERT INTO `transmog_items` (`entry`) VALUES('141205'); +INSERT INTO `transmog_items` (`entry`) VALUES('141206'); +INSERT INTO `transmog_items` (`entry`) VALUES('141208'); +INSERT INTO `transmog_items` (`entry`) VALUES('141209'); +INSERT INTO `transmog_items` (`entry`) VALUES('141210'); +INSERT INTO `transmog_items` (`entry`) VALUES('141211'); +INSERT INTO `transmog_items` (`entry`) VALUES('141212'); +INSERT INTO `transmog_items` (`entry`) VALUES('141214'); +INSERT INTO `transmog_items` (`entry`) VALUES('141215'); +INSERT INTO `transmog_items` (`entry`) VALUES('141216'); +INSERT INTO `transmog_items` (`entry`) VALUES('141217'); +INSERT INTO `transmog_items` (`entry`) VALUES('141218'); +INSERT INTO `transmog_items` (`entry`) VALUES('141223'); +INSERT INTO `transmog_items` (`entry`) VALUES('141224'); +INSERT INTO `transmog_items` (`entry`) VALUES('141225'); +INSERT INTO `transmog_items` (`entry`) VALUES('141226'); +INSERT INTO `transmog_items` (`entry`) VALUES('141228'); +INSERT INTO `transmog_items` (`entry`) VALUES('141229'); +INSERT INTO `transmog_items` (`entry`) VALUES('141230'); +INSERT INTO `transmog_items` (`entry`) VALUES('141231'); +INSERT INTO `transmog_items` (`entry`) VALUES('141233'); +INSERT INTO `transmog_items` (`entry`) VALUES('141234'); +INSERT INTO `transmog_items` (`entry`) VALUES('141235'); +INSERT INTO `transmog_items` (`entry`) VALUES('141236'); +INSERT INTO `transmog_items` (`entry`) VALUES('141238'); +INSERT INTO `transmog_items` (`entry`) VALUES('141240'); +INSERT INTO `transmog_items` (`entry`) VALUES('141241'); +INSERT INTO `transmog_items` (`entry`) VALUES('141245'); +INSERT INTO `transmog_items` (`entry`) VALUES('141264'); +INSERT INTO `transmog_items` (`entry`) VALUES('141268'); +INSERT INTO `transmog_items` (`entry`) VALUES('141269'); +INSERT INTO `transmog_items` (`entry`) VALUES('141270'); +INSERT INTO `transmog_items` (`entry`) VALUES('141271'); +INSERT INTO `transmog_items` (`entry`) VALUES('141272'); +INSERT INTO `transmog_items` (`entry`) VALUES('141273'); +INSERT INTO `transmog_items` (`entry`) VALUES('141274'); +INSERT INTO `transmog_items` (`entry`) VALUES('141275'); +INSERT INTO `transmog_items` (`entry`) VALUES('141276'); +INSERT INTO `transmog_items` (`entry`) VALUES('141278'); +INSERT INTO `transmog_items` (`entry`) VALUES('141279'); +INSERT INTO `transmog_items` (`entry`) VALUES('141280'); +INSERT INTO `transmog_items` (`entry`) VALUES('141281'); +INSERT INTO `transmog_items` (`entry`) VALUES('141282'); +INSERT INTO `transmog_items` (`entry`) VALUES('141284'); +INSERT INTO `transmog_items` (`entry`) VALUES('141286'); +INSERT INTO `transmog_items` (`entry`) VALUES('141287'); +INSERT INTO `transmog_items` (`entry`) VALUES('141288'); +INSERT INTO `transmog_items` (`entry`) VALUES('141290'); +INSERT INTO `transmog_items` (`entry`) VALUES('141291'); +INSERT INTO `transmog_items` (`entry`) VALUES('141292'); +INSERT INTO `transmog_items` (`entry`) VALUES('141293'); +INSERT INTO `transmog_items` (`entry`) VALUES('141294'); +INSERT INTO `transmog_items` (`entry`) VALUES('141296'); +INSERT INTO `transmog_items` (`entry`) VALUES('141297'); +INSERT INTO `transmog_items` (`entry`) VALUES('141298'); +INSERT INTO `transmog_items` (`entry`) VALUES('141299'); +INSERT INTO `transmog_items` (`entry`) VALUES('141301'); +INSERT INTO `transmog_items` (`entry`) VALUES('141302'); +INSERT INTO `transmog_items` (`entry`) VALUES('141303'); +INSERT INTO `transmog_items` (`entry`) VALUES('141304'); +INSERT INTO `transmog_items` (`entry`) VALUES('141305'); +INSERT INTO `transmog_items` (`entry`) VALUES('141308'); +INSERT INTO `transmog_items` (`entry`) VALUES('141309'); +INSERT INTO `transmog_items` (`entry`) VALUES('141310'); +INSERT INTO `transmog_items` (`entry`) VALUES('141311'); +INSERT INTO `transmog_items` (`entry`) VALUES('141313'); +INSERT INTO `transmog_items` (`entry`) VALUES('141314'); +INSERT INTO `transmog_items` (`entry`) VALUES('141315'); +INSERT INTO `transmog_items` (`entry`) VALUES('141316'); +INSERT INTO `transmog_items` (`entry`) VALUES('141317'); +INSERT INTO `transmog_items` (`entry`) VALUES('141319'); +INSERT INTO `transmog_items` (`entry`) VALUES('141320'); +INSERT INTO `transmog_items` (`entry`) VALUES('141321'); +INSERT INTO `transmog_items` (`entry`) VALUES('141322'); +INSERT INTO `transmog_items` (`entry`) VALUES('141324'); +INSERT INTO `transmog_items` (`entry`) VALUES('141325'); +INSERT INTO `transmog_items` (`entry`) VALUES('141326'); +INSERT INTO `transmog_items` (`entry`) VALUES('141327'); +INSERT INTO `transmog_items` (`entry`) VALUES('141328'); +INSERT INTO `transmog_items` (`entry`) VALUES('141330'); +INSERT INTO `transmog_items` (`entry`) VALUES('141331'); +INSERT INTO `transmog_items` (`entry`) VALUES('141332'); +INSERT INTO `transmog_items` (`entry`) VALUES('141344'); +INSERT INTO `transmog_items` (`entry`) VALUES('141345'); +INSERT INTO `transmog_items` (`entry`) VALUES('141346'); +INSERT INTO `transmog_items` (`entry`) VALUES('141347'); +INSERT INTO `transmog_items` (`entry`) VALUES('141348'); +INSERT INTO `transmog_items` (`entry`) VALUES('141349'); +INSERT INTO `transmog_items` (`entry`) VALUES('141350'); +INSERT INTO `transmog_items` (`entry`) VALUES('141351'); +INSERT INTO `transmog_items` (`entry`) VALUES('141352'); +INSERT INTO `transmog_items` (`entry`) VALUES('141353'); +INSERT INTO `transmog_items` (`entry`) VALUES('141354'); +INSERT INTO `transmog_items` (`entry`) VALUES('141355'); +INSERT INTO `transmog_items` (`entry`) VALUES('141356'); +INSERT INTO `transmog_items` (`entry`) VALUES('141357'); +INSERT INTO `transmog_items` (`entry`) VALUES('141383'); +INSERT INTO `transmog_items` (`entry`) VALUES('141384'); +INSERT INTO `transmog_items` (`entry`) VALUES('141386'); +INSERT INTO `transmog_items` (`entry`) VALUES('141387'); +INSERT INTO `transmog_items` (`entry`) VALUES('141388'); +INSERT INTO `transmog_items` (`entry`) VALUES('141391'); +INSERT INTO `transmog_items` (`entry`) VALUES('141392'); +INSERT INTO `transmog_items` (`entry`) VALUES('141394'); +INSERT INTO `transmog_items` (`entry`) VALUES('141512'); +INSERT INTO `transmog_items` (`entry`) VALUES('141513'); +INSERT INTO `transmog_items` (`entry`) VALUES('141515'); +INSERT INTO `transmog_items` (`entry`) VALUES('141516'); +INSERT INTO `transmog_items` (`entry`) VALUES('141519'); +INSERT INTO `transmog_items` (`entry`) VALUES('141520'); +INSERT INTO `transmog_items` (`entry`) VALUES('141521'); +INSERT INTO `transmog_items` (`entry`) VALUES('141522'); +INSERT INTO `transmog_items` (`entry`) VALUES('141523'); +INSERT INTO `transmog_items` (`entry`) VALUES('141525'); +INSERT INTO `transmog_items` (`entry`) VALUES('141528'); +INSERT INTO `transmog_items` (`entry`) VALUES('141543'); +INSERT INTO `transmog_items` (`entry`) VALUES('141544'); +INSERT INTO `transmog_items` (`entry`) VALUES('141545'); +INSERT INTO `transmog_items` (`entry`) VALUES('141546'); +INSERT INTO `transmog_items` (`entry`) VALUES('141548'); +INSERT INTO `transmog_items` (`entry`) VALUES('141549'); +INSERT INTO `transmog_items` (`entry`) VALUES('141550'); +INSERT INTO `transmog_items` (`entry`) VALUES('141551'); +INSERT INTO `transmog_items` (`entry`) VALUES('141553'); +INSERT INTO `transmog_items` (`entry`) VALUES('141554'); +INSERT INTO `transmog_items` (`entry`) VALUES('141555'); +INSERT INTO `transmog_items` (`entry`) VALUES('141591'); +INSERT INTO `transmog_items` (`entry`) VALUES('141592'); +INSERT INTO `transmog_items` (`entry`) VALUES('141607'); +INSERT INTO `transmog_items` (`entry`) VALUES('141608'); +INSERT INTO `transmog_items` (`entry`) VALUES('141609'); +INSERT INTO `transmog_items` (`entry`) VALUES('141610'); +INSERT INTO `transmog_items` (`entry`) VALUES('141616'); +INSERT INTO `transmog_items` (`entry`) VALUES('141617'); +INSERT INTO `transmog_items` (`entry`) VALUES('141618'); +INSERT INTO `transmog_items` (`entry`) VALUES('141620'); +INSERT INTO `transmog_items` (`entry`) VALUES('141621'); +INSERT INTO `transmog_items` (`entry`) VALUES('141622'); +INSERT INTO `transmog_items` (`entry`) VALUES('141624'); +INSERT INTO `transmog_items` (`entry`) VALUES('141625'); +INSERT INTO `transmog_items` (`entry`) VALUES('141626'); +INSERT INTO `transmog_items` (`entry`) VALUES('141628'); +INSERT INTO `transmog_items` (`entry`) VALUES('141629'); +INSERT INTO `transmog_items` (`entry`) VALUES('141630'); +INSERT INTO `transmog_items` (`entry`) VALUES('141631'); +INSERT INTO `transmog_items` (`entry`) VALUES('141633'); +INSERT INTO `transmog_items` (`entry`) VALUES('141634'); +INSERT INTO `transmog_items` (`entry`) VALUES('141635'); +INSERT INTO `transmog_items` (`entry`) VALUES('141636'); +INSERT INTO `transmog_items` (`entry`) VALUES('141638'); +INSERT INTO `transmog_items` (`entry`) VALUES('141639'); +INSERT INTO `transmog_items` (`entry`) VALUES('141640'); +INSERT INTO `transmog_items` (`entry`) VALUES('141641'); +INSERT INTO `transmog_items` (`entry`) VALUES('141643'); +INSERT INTO `transmog_items` (`entry`) VALUES('141644'); +INSERT INTO `transmog_items` (`entry`) VALUES('141645'); +INSERT INTO `transmog_items` (`entry`) VALUES('141646'); +INSERT INTO `transmog_items` (`entry`) VALUES('141647'); +INSERT INTO `transmog_items` (`entry`) VALUES('141648'); +INSERT INTO `transmog_items` (`entry`) VALUES('141649'); +INSERT INTO `transmog_items` (`entry`) VALUES('141650'); +INSERT INTO `transmog_items` (`entry`) VALUES('141651'); +INSERT INTO `transmog_items` (`entry`) VALUES('141653'); +INSERT INTO `transmog_items` (`entry`) VALUES('141654'); +INSERT INTO `transmog_items` (`entry`) VALUES('141655'); +INSERT INTO `transmog_items` (`entry`) VALUES('141656'); +INSERT INTO `transmog_items` (`entry`) VALUES('141658'); +INSERT INTO `transmog_items` (`entry`) VALUES('141659'); +INSERT INTO `transmog_items` (`entry`) VALUES('141660'); +INSERT INTO `transmog_items` (`entry`) VALUES('141661'); +INSERT INTO `transmog_items` (`entry`) VALUES('141662'); +INSERT INTO `transmog_items` (`entry`) VALUES('141664'); +INSERT INTO `transmog_items` (`entry`) VALUES('141665'); +INSERT INTO `transmog_items` (`entry`) VALUES('141666'); +INSERT INTO `transmog_items` (`entry`) VALUES('141667'); +INSERT INTO `transmog_items` (`entry`) VALUES('141668'); +INSERT INTO `transmog_items` (`entry`) VALUES('141670'); +INSERT INTO `transmog_items` (`entry`) VALUES('141671'); +INSERT INTO `transmog_items` (`entry`) VALUES('141672'); +INSERT INTO `transmog_items` (`entry`) VALUES('141673'); +INSERT INTO `transmog_items` (`entry`) VALUES('141675'); +INSERT INTO `transmog_items` (`entry`) VALUES('141676'); +INSERT INTO `transmog_items` (`entry`) VALUES('141677'); +INSERT INTO `transmog_items` (`entry`) VALUES('141678'); +INSERT INTO `transmog_items` (`entry`) VALUES('141679'); +INSERT INTO `transmog_items` (`entry`) VALUES('141681'); +INSERT INTO `transmog_items` (`entry`) VALUES('141682'); +INSERT INTO `transmog_items` (`entry`) VALUES('141683'); +INSERT INTO `transmog_items` (`entry`) VALUES('141684'); +INSERT INTO `transmog_items` (`entry`) VALUES('141712'); +INSERT INTO `transmog_items` (`entry`) VALUES('141713'); +INSERT INTO `transmog_items` (`entry`) VALUES('141714'); +INSERT INTO `transmog_items` (`entry`) VALUES('141715'); +INSERT INTO `transmog_items` (`entry`) VALUES('141716'); +INSERT INTO `transmog_items` (`entry`) VALUES('141746'); +INSERT INTO `transmog_items` (`entry`) VALUES('141750'); +INSERT INTO `transmog_items` (`entry`) VALUES('141753'); +INSERT INTO `transmog_items` (`entry`) VALUES('141754'); +INSERT INTO `transmog_items` (`entry`) VALUES('141755'); +INSERT INTO `transmog_items` (`entry`) VALUES('141757'); +INSERT INTO `transmog_items` (`entry`) VALUES('141758'); +INSERT INTO `transmog_items` (`entry`) VALUES('141759'); +INSERT INTO `transmog_items` (`entry`) VALUES('141760'); +INSERT INTO `transmog_items` (`entry`) VALUES('141761'); +INSERT INTO `transmog_items` (`entry`) VALUES('141762'); +INSERT INTO `transmog_items` (`entry`) VALUES('141763'); +INSERT INTO `transmog_items` (`entry`) VALUES('141765'); +INSERT INTO `transmog_items` (`entry`) VALUES('141766'); +INSERT INTO `transmog_items` (`entry`) VALUES('141767'); +INSERT INTO `transmog_items` (`entry`) VALUES('141768'); +INSERT INTO `transmog_items` (`entry`) VALUES('141770'); +INSERT INTO `transmog_items` (`entry`) VALUES('141771'); +INSERT INTO `transmog_items` (`entry`) VALUES('141772'); +INSERT INTO `transmog_items` (`entry`) VALUES('141773'); +INSERT INTO `transmog_items` (`entry`) VALUES('141774'); +INSERT INTO `transmog_items` (`entry`) VALUES('141815'); +INSERT INTO `transmog_items` (`entry`) VALUES('141816'); +INSERT INTO `transmog_items` (`entry`) VALUES('141822'); +INSERT INTO `transmog_items` (`entry`) VALUES('141824'); +INSERT INTO `transmog_items` (`entry`) VALUES('141825'); +INSERT INTO `transmog_items` (`entry`) VALUES('141826'); +INSERT INTO `transmog_items` (`entry`) VALUES('141827'); +INSERT INTO `transmog_items` (`entry`) VALUES('141828'); +INSERT INTO `transmog_items` (`entry`) VALUES('141829'); +INSERT INTO `transmog_items` (`entry`) VALUES('141830'); +INSERT INTO `transmog_items` (`entry`) VALUES('141831'); +INSERT INTO `transmog_items` (`entry`) VALUES('141832'); +INSERT INTO `transmog_items` (`entry`) VALUES('141833'); +INSERT INTO `transmog_items` (`entry`) VALUES('141835'); +INSERT INTO `transmog_items` (`entry`) VALUES('141836'); +INSERT INTO `transmog_items` (`entry`) VALUES('141837'); +INSERT INTO `transmog_items` (`entry`) VALUES('141839'); +INSERT INTO `transmog_items` (`entry`) VALUES('141840'); +INSERT INTO `transmog_items` (`entry`) VALUES('141841'); +INSERT INTO `transmog_items` (`entry`) VALUES('141844'); +INSERT INTO `transmog_items` (`entry`) VALUES('141845'); +INSERT INTO `transmog_items` (`entry`) VALUES('141846'); +INSERT INTO `transmog_items` (`entry`) VALUES('141847'); +INSERT INTO `transmog_items` (`entry`) VALUES('141848'); +INSERT INTO `transmog_items` (`entry`) VALUES('141849'); +INSERT INTO `transmog_items` (`entry`) VALUES('141850'); +INSERT INTO `transmog_items` (`entry`) VALUES('141851'); +INSERT INTO `transmog_items` (`entry`) VALUES('141852'); +INSERT INTO `transmog_items` (`entry`) VALUES('141853'); +INSERT INTO `transmog_items` (`entry`) VALUES('141854'); +INSERT INTO `transmog_items` (`entry`) VALUES('141855'); +INSERT INTO `transmog_items` (`entry`) VALUES('141857'); +INSERT INTO `transmog_items` (`entry`) VALUES('141858'); +INSERT INTO `transmog_items` (`entry`) VALUES('141859'); +INSERT INTO `transmog_items` (`entry`) VALUES('141860'); +INSERT INTO `transmog_items` (`entry`) VALUES('141862'); +INSERT INTO `transmog_items` (`entry`) VALUES('141863'); +INSERT INTO `transmog_items` (`entry`) VALUES('141864'); +INSERT INTO `transmog_items` (`entry`) VALUES('141865'); +INSERT INTO `transmog_items` (`entry`) VALUES('141867'); +INSERT INTO `transmog_items` (`entry`) VALUES('141868'); +INSERT INTO `transmog_items` (`entry`) VALUES('141869'); +INSERT INTO `transmog_items` (`entry`) VALUES('141870'); +INSERT INTO `transmog_items` (`entry`) VALUES('141872'); +INSERT INTO `transmog_items` (`entry`) VALUES('141873'); +INSERT INTO `transmog_items` (`entry`) VALUES('141874'); +INSERT INTO `transmog_items` (`entry`) VALUES('141875'); +INSERT INTO `transmog_items` (`entry`) VALUES('141877'); +INSERT INTO `transmog_items` (`entry`) VALUES('141878'); +INSERT INTO `transmog_items` (`entry`) VALUES('141879'); +INSERT INTO `transmog_items` (`entry`) VALUES('141880'); +INSERT INTO `transmog_items` (`entry`) VALUES('141881'); +INSERT INTO `transmog_items` (`entry`) VALUES('141882'); +INSERT INTO `transmog_items` (`entry`) VALUES('141884'); +INSERT INTO `transmog_items` (`entry`) VALUES('141885'); +INSERT INTO `transmog_items` (`entry`) VALUES('141886'); +INSERT INTO `transmog_items` (`entry`) VALUES('141890'); +INSERT INTO `transmog_items` (`entry`) VALUES('141891'); +INSERT INTO `transmog_items` (`entry`) VALUES('141892'); +INSERT INTO `transmog_items` (`entry`) VALUES('141893'); +INSERT INTO `transmog_items` (`entry`) VALUES('141894'); +INSERT INTO `transmog_items` (`entry`) VALUES('141896'); +INSERT INTO `transmog_items` (`entry`) VALUES('141897'); +INSERT INTO `transmog_items` (`entry`) VALUES('141898'); +INSERT INTO `transmog_items` (`entry`) VALUES('141899'); +INSERT INTO `transmog_items` (`entry`) VALUES('141901'); +INSERT INTO `transmog_items` (`entry`) VALUES('141902'); +INSERT INTO `transmog_items` (`entry`) VALUES('141903'); +INSERT INTO `transmog_items` (`entry`) VALUES('141904'); +INSERT INTO `transmog_items` (`entry`) VALUES('141905'); +INSERT INTO `transmog_items` (`entry`) VALUES('141907'); +INSERT INTO `transmog_items` (`entry`) VALUES('141908'); +INSERT INTO `transmog_items` (`entry`) VALUES('141909'); +INSERT INTO `transmog_items` (`entry`) VALUES('141910'); +INSERT INTO `transmog_items` (`entry`) VALUES('141912'); +INSERT INTO `transmog_items` (`entry`) VALUES('141913'); +INSERT INTO `transmog_items` (`entry`) VALUES('141914'); +INSERT INTO `transmog_items` (`entry`) VALUES('141915'); +INSERT INTO `transmog_items` (`entry`) VALUES('141916'); +INSERT INTO `transmog_items` (`entry`) VALUES('141918'); +INSERT INTO `transmog_items` (`entry`) VALUES('141919'); +INSERT INTO `transmog_items` (`entry`) VALUES('141920'); +INSERT INTO `transmog_items` (`entry`) VALUES('141921'); +INSERT INTO `transmog_items` (`entry`) VALUES('141922'); +INSERT INTO `transmog_items` (`entry`) VALUES('141924'); +INSERT INTO `transmog_items` (`entry`) VALUES('141925'); +INSERT INTO `transmog_items` (`entry`) VALUES('141926'); +INSERT INTO `transmog_items` (`entry`) VALUES('141927'); +INSERT INTO `transmog_items` (`entry`) VALUES('141928'); +INSERT INTO `transmog_items` (`entry`) VALUES('141930'); +INSERT INTO `transmog_items` (`entry`) VALUES('141931'); +INSERT INTO `transmog_items` (`entry`) VALUES('141932'); +INSERT INTO `transmog_items` (`entry`) VALUES('141933'); +INSERT INTO `transmog_items` (`entry`) VALUES('141934'); +INSERT INTO `transmog_items` (`entry`) VALUES('141935'); +INSERT INTO `transmog_items` (`entry`) VALUES('141937'); +INSERT INTO `transmog_items` (`entry`) VALUES('141938'); +INSERT INTO `transmog_items` (`entry`) VALUES('141939'); +INSERT INTO `transmog_items` (`entry`) VALUES('141940'); +INSERT INTO `transmog_items` (`entry`) VALUES('141941'); +INSERT INTO `transmog_items` (`entry`) VALUES('141943'); +INSERT INTO `transmog_items` (`entry`) VALUES('141944'); +INSERT INTO `transmog_items` (`entry`) VALUES('141945'); +INSERT INTO `transmog_items` (`entry`) VALUES('141946'); +INSERT INTO `transmog_items` (`entry`) VALUES('141947'); +INSERT INTO `transmog_items` (`entry`) VALUES('141949'); +INSERT INTO `transmog_items` (`entry`) VALUES('141950'); +INSERT INTO `transmog_items` (`entry`) VALUES('141951'); +INSERT INTO `transmog_items` (`entry`) VALUES('141953'); +INSERT INTO `transmog_items` (`entry`) VALUES('141954'); +INSERT INTO `transmog_items` (`entry`) VALUES('141956'); +INSERT INTO `transmog_items` (`entry`) VALUES('141957'); +INSERT INTO `transmog_items` (`entry`) VALUES('141958'); +INSERT INTO `transmog_items` (`entry`) VALUES('141959'); +INSERT INTO `transmog_items` (`entry`) VALUES('141960'); +INSERT INTO `transmog_items` (`entry`) VALUES('141962'); +INSERT INTO `transmog_items` (`entry`) VALUES('141963'); +INSERT INTO `transmog_items` (`entry`) VALUES('141964'); +INSERT INTO `transmog_items` (`entry`) VALUES('141965'); +INSERT INTO `transmog_items` (`entry`) VALUES('141966'); +INSERT INTO `transmog_items` (`entry`) VALUES('141968'); +INSERT INTO `transmog_items` (`entry`) VALUES('141969'); +INSERT INTO `transmog_items` (`entry`) VALUES('141970'); +INSERT INTO `transmog_items` (`entry`) VALUES('141971'); +INSERT INTO `transmog_items` (`entry`) VALUES('141972'); +INSERT INTO `transmog_items` (`entry`) VALUES('141974'); +INSERT INTO `transmog_items` (`entry`) VALUES('141975'); +INSERT INTO `transmog_items` (`entry`) VALUES('141984'); +INSERT INTO `transmog_items` (`entry`) VALUES('141985'); +INSERT INTO `transmog_items` (`entry`) VALUES('141986'); +INSERT INTO `transmog_items` (`entry`) VALUES('141990'); +INSERT INTO `transmog_items` (`entry`) VALUES('141991'); +INSERT INTO `transmog_items` (`entry`) VALUES('141992'); +INSERT INTO `transmog_items` (`entry`) VALUES('141993'); +INSERT INTO `transmog_items` (`entry`) VALUES('141994'); +INSERT INTO `transmog_items` (`entry`) VALUES('141996'); +INSERT INTO `transmog_items` (`entry`) VALUES('141997'); +INSERT INTO `transmog_items` (`entry`) VALUES('141998'); +INSERT INTO `transmog_items` (`entry`) VALUES('141999'); +INSERT INTO `transmog_items` (`entry`) VALUES('142001'); +INSERT INTO `transmog_items` (`entry`) VALUES('142002'); +INSERT INTO `transmog_items` (`entry`) VALUES('142003'); +INSERT INTO `transmog_items` (`entry`) VALUES('142004'); +INSERT INTO `transmog_items` (`entry`) VALUES('142005'); +INSERT INTO `transmog_items` (`entry`) VALUES('142006'); +INSERT INTO `transmog_items` (`entry`) VALUES('142008'); +INSERT INTO `transmog_items` (`entry`) VALUES('142009'); +INSERT INTO `transmog_items` (`entry`) VALUES('142010'); +INSERT INTO `transmog_items` (`entry`) VALUES('142011'); +INSERT INTO `transmog_items` (`entry`) VALUES('142012'); +INSERT INTO `transmog_items` (`entry`) VALUES('142014'); +INSERT INTO `transmog_items` (`entry`) VALUES('142015'); +INSERT INTO `transmog_items` (`entry`) VALUES('142016'); +INSERT INTO `transmog_items` (`entry`) VALUES('142017'); +INSERT INTO `transmog_items` (`entry`) VALUES('142018'); +INSERT INTO `transmog_items` (`entry`) VALUES('142055'); +INSERT INTO `transmog_items` (`entry`) VALUES('142056'); +INSERT INTO `transmog_items` (`entry`) VALUES('142057'); +INSERT INTO `transmog_items` (`entry`) VALUES('142058'); +INSERT INTO `transmog_items` (`entry`) VALUES('142059'); +INSERT INTO `transmog_items` (`entry`) VALUES('142060'); +INSERT INTO `transmog_items` (`entry`) VALUES('142061'); +INSERT INTO `transmog_items` (`entry`) VALUES('142062'); +INSERT INTO `transmog_items` (`entry`) VALUES('142063'); +INSERT INTO `transmog_items` (`entry`) VALUES('142064'); +INSERT INTO `transmog_items` (`entry`) VALUES('142065'); +INSERT INTO `transmog_items` (`entry`) VALUES('142066'); +INSERT INTO `transmog_items` (`entry`) VALUES('142067'); +INSERT INTO `transmog_items` (`entry`) VALUES('142068'); +INSERT INTO `transmog_items` (`entry`) VALUES('142069'); +INSERT INTO `transmog_items` (`entry`) VALUES('142070'); +INSERT INTO `transmog_items` (`entry`) VALUES('142071'); +INSERT INTO `transmog_items` (`entry`) VALUES('142072'); +INSERT INTO `transmog_items` (`entry`) VALUES('142073'); +INSERT INTO `transmog_items` (`entry`) VALUES('142074'); +INSERT INTO `transmog_items` (`entry`) VALUES('142075'); +INSERT INTO `transmog_items` (`entry`) VALUES('142076'); +INSERT INTO `transmog_items` (`entry`) VALUES('142077'); +INSERT INTO `transmog_items` (`entry`) VALUES('142078'); +INSERT INTO `transmog_items` (`entry`) VALUES('142079'); +INSERT INTO `transmog_items` (`entry`) VALUES('142080'); +INSERT INTO `transmog_items` (`entry`) VALUES('142081'); +INSERT INTO `transmog_items` (`entry`) VALUES('142082'); +INSERT INTO `transmog_items` (`entry`) VALUES('142084'); +INSERT INTO `transmog_items` (`entry`) VALUES('142088'); +INSERT INTO `transmog_items` (`entry`) VALUES('142092'); +INSERT INTO `transmog_items` (`entry`) VALUES('142093'); +INSERT INTO `transmog_items` (`entry`) VALUES('142094'); +INSERT INTO `transmog_items` (`entry`) VALUES('142095'); +INSERT INTO `transmog_items` (`entry`) VALUES('142096'); +INSERT INTO `transmog_items` (`entry`) VALUES('142097'); +INSERT INTO `transmog_items` (`entry`) VALUES('142098'); +INSERT INTO `transmog_items` (`entry`) VALUES('142099'); +INSERT INTO `transmog_items` (`entry`) VALUES('142100'); +INSERT INTO `transmog_items` (`entry`) VALUES('142101'); +INSERT INTO `transmog_items` (`entry`) VALUES('142102'); +INSERT INTO `transmog_items` (`entry`) VALUES('142103'); +INSERT INTO `transmog_items` (`entry`) VALUES('142111'); +INSERT INTO `transmog_items` (`entry`) VALUES('142113'); +INSERT INTO `transmog_items` (`entry`) VALUES('142215'); +INSERT INTO `transmog_items` (`entry`) VALUES('142216'); +INSERT INTO `transmog_items` (`entry`) VALUES('142217'); +INSERT INTO `transmog_items` (`entry`) VALUES('142218'); +INSERT INTO `transmog_items` (`entry`) VALUES('142219'); +INSERT INTO `transmog_items` (`entry`) VALUES('142220'); +INSERT INTO `transmog_items` (`entry`) VALUES('142221'); +INSERT INTO `transmog_items` (`entry`) VALUES('142222'); +INSERT INTO `transmog_items` (`entry`) VALUES('142241'); +INSERT INTO `transmog_items` (`entry`) VALUES('142242'); +INSERT INTO `transmog_items` (`entry`) VALUES('142243'); +INSERT INTO `transmog_items` (`entry`) VALUES('142244'); +INSERT INTO `transmog_items` (`entry`) VALUES('142247'); +INSERT INTO `transmog_items` (`entry`) VALUES('142248'); +INSERT INTO `transmog_items` (`entry`) VALUES('142249'); +INSERT INTO `transmog_items` (`entry`) VALUES('142250'); +INSERT INTO `transmog_items` (`entry`) VALUES('142254'); +INSERT INTO `transmog_items` (`entry`) VALUES('142255'); +INSERT INTO `transmog_items` (`entry`) VALUES('142256'); +INSERT INTO `transmog_items` (`entry`) VALUES('142257'); +INSERT INTO `transmog_items` (`entry`) VALUES('142259'); +INSERT INTO `transmog_items` (`entry`) VALUES('142260'); +INSERT INTO `transmog_items` (`entry`) VALUES('142261'); +INSERT INTO `transmog_items` (`entry`) VALUES('142262'); +INSERT INTO `transmog_items` (`entry`) VALUES('142264'); +INSERT INTO `transmog_items` (`entry`) VALUES('142265'); +INSERT INTO `transmog_items` (`entry`) VALUES('142266'); +INSERT INTO `transmog_items` (`entry`) VALUES('142267'); +INSERT INTO `transmog_items` (`entry`) VALUES('142269'); +INSERT INTO `transmog_items` (`entry`) VALUES('142270'); +INSERT INTO `transmog_items` (`entry`) VALUES('142271'); +INSERT INTO `transmog_items` (`entry`) VALUES('142272'); +INSERT INTO `transmog_items` (`entry`) VALUES('142274'); +INSERT INTO `transmog_items` (`entry`) VALUES('142275'); +INSERT INTO `transmog_items` (`entry`) VALUES('142276'); +INSERT INTO `transmog_items` (`entry`) VALUES('142277'); +INSERT INTO `transmog_items` (`entry`) VALUES('142279'); +INSERT INTO `transmog_items` (`entry`) VALUES('142280'); +INSERT INTO `transmog_items` (`entry`) VALUES('142281'); +INSERT INTO `transmog_items` (`entry`) VALUES('142282'); +INSERT INTO `transmog_items` (`entry`) VALUES('142294'); +INSERT INTO `transmog_items` (`entry`) VALUES('142296'); +INSERT INTO `transmog_items` (`entry`) VALUES('142316'); +INSERT INTO `transmog_items` (`entry`) VALUES('142317'); +INSERT INTO `transmog_items` (`entry`) VALUES('142318'); +INSERT INTO `transmog_items` (`entry`) VALUES('142319'); +INSERT INTO `transmog_items` (`entry`) VALUES('142326'); +INSERT INTO `transmog_items` (`entry`) VALUES('142327'); +INSERT INTO `transmog_items` (`entry`) VALUES('142328'); +INSERT INTO `transmog_items` (`entry`) VALUES('142329'); +INSERT INTO `transmog_items` (`entry`) VALUES('142343'); +INSERT INTO `transmog_items` (`entry`) VALUES('142344'); +INSERT INTO `transmog_items` (`entry`) VALUES('142345'); +INSERT INTO `transmog_items` (`entry`) VALUES('142346'); +INSERT INTO `transmog_items` (`entry`) VALUES('142347'); +INSERT INTO `transmog_items` (`entry`) VALUES('142348'); +INSERT INTO `transmog_items` (`entry`) VALUES('142351'); +INSERT INTO `transmog_items` (`entry`) VALUES('142352'); +INSERT INTO `transmog_items` (`entry`) VALUES('142353'); +INSERT INTO `transmog_items` (`entry`) VALUES('142354'); +INSERT INTO `transmog_items` (`entry`) VALUES('142435'); +INSERT INTO `transmog_items` (`entry`) VALUES('142443'); +INSERT INTO `transmog_items` (`entry`) VALUES('142444'); +INSERT INTO `transmog_items` (`entry`) VALUES('142445'); +INSERT INTO `transmog_items` (`entry`) VALUES('142446'); +INSERT INTO `transmog_items` (`entry`) VALUES('142447'); +INSERT INTO `transmog_items` (`entry`) VALUES('142448'); +INSERT INTO `transmog_items` (`entry`) VALUES('142449'); +INSERT INTO `transmog_items` (`entry`) VALUES('142450'); +INSERT INTO `transmog_items` (`entry`) VALUES('142451'); +INSERT INTO `transmog_items` (`entry`) VALUES('142483'); +INSERT INTO `transmog_items` (`entry`) VALUES('142484'); +INSERT INTO `transmog_items` (`entry`) VALUES('142485'); +INSERT INTO `transmog_items` (`entry`) VALUES('142486'); +INSERT INTO `transmog_items` (`entry`) VALUES('142487'); +INSERT INTO `transmog_items` (`entry`) VALUES('142489'); +INSERT INTO `transmog_items` (`entry`) VALUES('142490'); +INSERT INTO `transmog_items` (`entry`) VALUES('142491'); +INSERT INTO `transmog_items` (`entry`) VALUES('142492'); +INSERT INTO `transmog_items` (`entry`) VALUES('142494'); +INSERT INTO `transmog_items` (`entry`) VALUES('142495'); +INSERT INTO `transmog_items` (`entry`) VALUES('142496'); +INSERT INTO `transmog_items` (`entry`) VALUES('142498'); +INSERT INTO `transmog_items` (`entry`) VALUES('142501'); +INSERT INTO `transmog_items` (`entry`) VALUES('142502'); +INSERT INTO `transmog_items` (`entry`) VALUES('142503'); +INSERT INTO `transmog_items` (`entry`) VALUES('142504'); +INSERT INTO `transmog_items` (`entry`) VALUES('142508'); +INSERT INTO `transmog_items` (`entry`) VALUES('142511'); +INSERT INTO `transmog_items` (`entry`) VALUES('142512'); +INSERT INTO `transmog_items` (`entry`) VALUES('142513'); +INSERT INTO `transmog_items` (`entry`) VALUES('142514'); +INSERT INTO `transmog_items` (`entry`) VALUES('142515'); +INSERT INTO `transmog_items` (`entry`) VALUES('142517'); +INSERT INTO `transmog_items` (`entry`) VALUES('142518'); +INSERT INTO `transmog_items` (`entry`) VALUES('142519'); +INSERT INTO `transmog_items` (`entry`) VALUES('142520'); +INSERT INTO `transmog_items` (`entry`) VALUES('142521'); +INSERT INTO `transmog_items` (`entry`) VALUES('142549'); +INSERT INTO `transmog_items` (`entry`) VALUES('142550'); +INSERT INTO `transmog_items` (`entry`) VALUES('142551'); +INSERT INTO `transmog_items` (`entry`) VALUES('142552'); +INSERT INTO `transmog_items` (`entry`) VALUES('142553'); +INSERT INTO `transmog_items` (`entry`) VALUES('142554'); +INSERT INTO `transmog_items` (`entry`) VALUES('142555'); +INSERT INTO `transmog_items` (`entry`) VALUES('142556'); +INSERT INTO `transmog_items` (`entry`) VALUES('142557'); +INSERT INTO `transmog_items` (`entry`) VALUES('142558'); +INSERT INTO `transmog_items` (`entry`) VALUES('142559'); +INSERT INTO `transmog_items` (`entry`) VALUES('142560'); +INSERT INTO `transmog_items` (`entry`) VALUES('142561'); +INSERT INTO `transmog_items` (`entry`) VALUES('142563'); +INSERT INTO `transmog_items` (`entry`) VALUES('142564'); +INSERT INTO `transmog_items` (`entry`) VALUES('142565'); +INSERT INTO `transmog_items` (`entry`) VALUES('142566'); +INSERT INTO `transmog_items` (`entry`) VALUES('142568'); +INSERT INTO `transmog_items` (`entry`) VALUES('142569'); +INSERT INTO `transmog_items` (`entry`) VALUES('142570'); +INSERT INTO `transmog_items` (`entry`) VALUES('142571'); +INSERT INTO `transmog_items` (`entry`) VALUES('142572'); +INSERT INTO `transmog_items` (`entry`) VALUES('142625'); +INSERT INTO `transmog_items` (`entry`) VALUES('142626'); +INSERT INTO `transmog_items` (`entry`) VALUES('142627'); +INSERT INTO `transmog_items` (`entry`) VALUES('142628'); +INSERT INTO `transmog_items` (`entry`) VALUES('142629'); +INSERT INTO `transmog_items` (`entry`) VALUES('142630'); +INSERT INTO `transmog_items` (`entry`) VALUES('142631'); +INSERT INTO `transmog_items` (`entry`) VALUES('142632'); +INSERT INTO `transmog_items` (`entry`) VALUES('142633'); +INSERT INTO `transmog_items` (`entry`) VALUES('142634'); +INSERT INTO `transmog_items` (`entry`) VALUES('142635'); +INSERT INTO `transmog_items` (`entry`) VALUES('142636'); +INSERT INTO `transmog_items` (`entry`) VALUES('142637'); +INSERT INTO `transmog_items` (`entry`) VALUES('142638'); +INSERT INTO `transmog_items` (`entry`) VALUES('142639'); +INSERT INTO `transmog_items` (`entry`) VALUES('142654'); +INSERT INTO `transmog_items` (`entry`) VALUES('142655'); +INSERT INTO `transmog_items` (`entry`) VALUES('142656'); +INSERT INTO `transmog_items` (`entry`) VALUES('142657'); +INSERT INTO `transmog_items` (`entry`) VALUES('142658'); +INSERT INTO `transmog_items` (`entry`) VALUES('142659'); +INSERT INTO `transmog_items` (`entry`) VALUES('142660'); +INSERT INTO `transmog_items` (`entry`) VALUES('142661'); +INSERT INTO `transmog_items` (`entry`) VALUES('142662'); +INSERT INTO `transmog_items` (`entry`) VALUES('142663'); +INSERT INTO `transmog_items` (`entry`) VALUES('142664'); +INSERT INTO `transmog_items` (`entry`) VALUES('142665'); +INSERT INTO `transmog_items` (`entry`) VALUES('142666'); +INSERT INTO `transmog_items` (`entry`) VALUES('142667'); +INSERT INTO `transmog_items` (`entry`) VALUES('142668'); +INSERT INTO `transmog_items` (`entry`) VALUES('142669'); +INSERT INTO `transmog_items` (`entry`) VALUES('142670'); +INSERT INTO `transmog_items` (`entry`) VALUES('142671'); +INSERT INTO `transmog_items` (`entry`) VALUES('142672'); +INSERT INTO `transmog_items` (`entry`) VALUES('142673'); +INSERT INTO `transmog_items` (`entry`) VALUES('142674'); +INSERT INTO `transmog_items` (`entry`) VALUES('142675'); +INSERT INTO `transmog_items` (`entry`) VALUES('142676'); +INSERT INTO `transmog_items` (`entry`) VALUES('142677'); +INSERT INTO `transmog_items` (`entry`) VALUES('142678'); +INSERT INTO `transmog_items` (`entry`) VALUES('142680'); +INSERT INTO `transmog_items` (`entry`) VALUES('142681'); +INSERT INTO `transmog_items` (`entry`) VALUES('142682'); +INSERT INTO `transmog_items` (`entry`) VALUES('142683'); +INSERT INTO `transmog_items` (`entry`) VALUES('142684'); +INSERT INTO `transmog_items` (`entry`) VALUES('142685'); +INSERT INTO `transmog_items` (`entry`) VALUES('142686'); +INSERT INTO `transmog_items` (`entry`) VALUES('142687'); +INSERT INTO `transmog_items` (`entry`) VALUES('142688'); +INSERT INTO `transmog_items` (`entry`) VALUES('142689'); +INSERT INTO `transmog_items` (`entry`) VALUES('142690'); +INSERT INTO `transmog_items` (`entry`) VALUES('142691'); +INSERT INTO `transmog_items` (`entry`) VALUES('142692'); +INSERT INTO `transmog_items` (`entry`) VALUES('142693'); +INSERT INTO `transmog_items` (`entry`) VALUES('142694'); +INSERT INTO `transmog_items` (`entry`) VALUES('142695'); +INSERT INTO `transmog_items` (`entry`) VALUES('142696'); +INSERT INTO `transmog_items` (`entry`) VALUES('142697'); +INSERT INTO `transmog_items` (`entry`) VALUES('142698'); +INSERT INTO `transmog_items` (`entry`) VALUES('142699'); +INSERT INTO `transmog_items` (`entry`) VALUES('142703'); +INSERT INTO `transmog_items` (`entry`) VALUES('142704'); +INSERT INTO `transmog_items` (`entry`) VALUES('142705'); +INSERT INTO `transmog_items` (`entry`) VALUES('142706'); +INSERT INTO `transmog_items` (`entry`) VALUES('142707'); +INSERT INTO `transmog_items` (`entry`) VALUES('142708'); +INSERT INTO `transmog_items` (`entry`) VALUES('142709'); +INSERT INTO `transmog_items` (`entry`) VALUES('142710'); +INSERT INTO `transmog_items` (`entry`) VALUES('142711'); +INSERT INTO `transmog_items` (`entry`) VALUES('142712'); +INSERT INTO `transmog_items` (`entry`) VALUES('142713'); +INSERT INTO `transmog_items` (`entry`) VALUES('142714'); +INSERT INTO `transmog_items` (`entry`) VALUES('142715'); +INSERT INTO `transmog_items` (`entry`) VALUES('142716'); +INSERT INTO `transmog_items` (`entry`) VALUES('142717'); +INSERT INTO `transmog_items` (`entry`) VALUES('142718'); +INSERT INTO `transmog_items` (`entry`) VALUES('142719'); +INSERT INTO `transmog_items` (`entry`) VALUES('142720'); +INSERT INTO `transmog_items` (`entry`) VALUES('142721'); +INSERT INTO `transmog_items` (`entry`) VALUES('142722'); +INSERT INTO `transmog_items` (`entry`) VALUES('142723'); +INSERT INTO `transmog_items` (`entry`) VALUES('142724'); +INSERT INTO `transmog_items` (`entry`) VALUES('142725'); +INSERT INTO `transmog_items` (`entry`) VALUES('142726'); +INSERT INTO `transmog_items` (`entry`) VALUES('142727'); +INSERT INTO `transmog_items` (`entry`) VALUES('142728'); +INSERT INTO `transmog_items` (`entry`) VALUES('142729'); +INSERT INTO `transmog_items` (`entry`) VALUES('142730'); +INSERT INTO `transmog_items` (`entry`) VALUES('142731'); +INSERT INTO `transmog_items` (`entry`) VALUES('142758'); +INSERT INTO `transmog_items` (`entry`) VALUES('142760'); +INSERT INTO `transmog_items` (`entry`) VALUES('142761'); +INSERT INTO `transmog_items` (`entry`) VALUES('142762'); +INSERT INTO `transmog_items` (`entry`) VALUES('142763'); +INSERT INTO `transmog_items` (`entry`) VALUES('142765'); +INSERT INTO `transmog_items` (`entry`) VALUES('142766'); +INSERT INTO `transmog_items` (`entry`) VALUES('142767'); +INSERT INTO `transmog_items` (`entry`) VALUES('142768'); +INSERT INTO `transmog_items` (`entry`) VALUES('142785'); +INSERT INTO `transmog_items` (`entry`) VALUES('142787'); +INSERT INTO `transmog_items` (`entry`) VALUES('142788'); +INSERT INTO `transmog_items` (`entry`) VALUES('142789'); +INSERT INTO `transmog_items` (`entry`) VALUES('142790'); +INSERT INTO `transmog_items` (`entry`) VALUES('142792'); +INSERT INTO `transmog_items` (`entry`) VALUES('142795'); +INSERT INTO `transmog_items` (`entry`) VALUES('142798'); +INSERT INTO `transmog_items` (`entry`) VALUES('142800'); +INSERT INTO `transmog_items` (`entry`) VALUES('142801'); +INSERT INTO `transmog_items` (`entry`) VALUES('142802'); +INSERT INTO `transmog_items` (`entry`) VALUES('142803'); +INSERT INTO `transmog_items` (`entry`) VALUES('142804'); +INSERT INTO `transmog_items` (`entry`) VALUES('142805'); +INSERT INTO `transmog_items` (`entry`) VALUES('142806'); +INSERT INTO `transmog_items` (`entry`) VALUES('142809'); +INSERT INTO `transmog_items` (`entry`) VALUES('142810'); +INSERT INTO `transmog_items` (`entry`) VALUES('142811'); +INSERT INTO `transmog_items` (`entry`) VALUES('142813'); +INSERT INTO `transmog_items` (`entry`) VALUES('142814'); +INSERT INTO `transmog_items` (`entry`) VALUES('142815'); +INSERT INTO `transmog_items` (`entry`) VALUES('142816'); +INSERT INTO `transmog_items` (`entry`) VALUES('142817'); +INSERT INTO `transmog_items` (`entry`) VALUES('142818'); +INSERT INTO `transmog_items` (`entry`) VALUES('142819'); +INSERT INTO `transmog_items` (`entry`) VALUES('142820'); +INSERT INTO `transmog_items` (`entry`) VALUES('142821'); +INSERT INTO `transmog_items` (`entry`) VALUES('142822'); +INSERT INTO `transmog_items` (`entry`) VALUES('142823'); +INSERT INTO `transmog_items` (`entry`) VALUES('142824'); +INSERT INTO `transmog_items` (`entry`) VALUES('142825'); +INSERT INTO `transmog_items` (`entry`) VALUES('142826'); +INSERT INTO `transmog_items` (`entry`) VALUES('142827'); +INSERT INTO `transmog_items` (`entry`) VALUES('142829'); +INSERT INTO `transmog_items` (`entry`) VALUES('142830'); +INSERT INTO `transmog_items` (`entry`) VALUES('142831'); +INSERT INTO `transmog_items` (`entry`) VALUES('142832'); +INSERT INTO `transmog_items` (`entry`) VALUES('142833'); +INSERT INTO `transmog_items` (`entry`) VALUES('142834'); +INSERT INTO `transmog_items` (`entry`) VALUES('142835'); +INSERT INTO `transmog_items` (`entry`) VALUES('142836'); +INSERT INTO `transmog_items` (`entry`) VALUES('142841'); +INSERT INTO `transmog_items` (`entry`) VALUES('142842'); +INSERT INTO `transmog_items` (`entry`) VALUES('142843'); +INSERT INTO `transmog_items` (`entry`) VALUES('142844'); +INSERT INTO `transmog_items` (`entry`) VALUES('142846'); +INSERT INTO `transmog_items` (`entry`) VALUES('142847'); +INSERT INTO `transmog_items` (`entry`) VALUES('142848'); +INSERT INTO `transmog_items` (`entry`) VALUES('142849'); +INSERT INTO `transmog_items` (`entry`) VALUES('142850'); +INSERT INTO `transmog_items` (`entry`) VALUES('142858'); +INSERT INTO `transmog_items` (`entry`) VALUES('142860'); +INSERT INTO `transmog_items` (`entry`) VALUES('142861'); +INSERT INTO `transmog_items` (`entry`) VALUES('142862'); +INSERT INTO `transmog_items` (`entry`) VALUES('142863'); +INSERT INTO `transmog_items` (`entry`) VALUES('142865'); +INSERT INTO `transmog_items` (`entry`) VALUES('142866'); +INSERT INTO `transmog_items` (`entry`) VALUES('142867'); +INSERT INTO `transmog_items` (`entry`) VALUES('142868'); +INSERT INTO `transmog_items` (`entry`) VALUES('142869'); +INSERT INTO `transmog_items` (`entry`) VALUES('142870'); +INSERT INTO `transmog_items` (`entry`) VALUES('142871'); +INSERT INTO `transmog_items` (`entry`) VALUES('142872'); +INSERT INTO `transmog_items` (`entry`) VALUES('142874'); +INSERT INTO `transmog_items` (`entry`) VALUES('142875'); +INSERT INTO `transmog_items` (`entry`) VALUES('142876'); +INSERT INTO `transmog_items` (`entry`) VALUES('142877'); +INSERT INTO `transmog_items` (`entry`) VALUES('142878'); +INSERT INTO `transmog_items` (`entry`) VALUES('142879'); +INSERT INTO `transmog_items` (`entry`) VALUES('142880'); +INSERT INTO `transmog_items` (`entry`) VALUES('142881'); +INSERT INTO `transmog_items` (`entry`) VALUES('142882'); +INSERT INTO `transmog_items` (`entry`) VALUES('142883'); +INSERT INTO `transmog_items` (`entry`) VALUES('142884'); +INSERT INTO `transmog_items` (`entry`) VALUES('142885'); +INSERT INTO `transmog_items` (`entry`) VALUES('142886'); +INSERT INTO `transmog_items` (`entry`) VALUES('142887'); +INSERT INTO `transmog_items` (`entry`) VALUES('142888'); +INSERT INTO `transmog_items` (`entry`) VALUES('142889'); +INSERT INTO `transmog_items` (`entry`) VALUES('142890'); +INSERT INTO `transmog_items` (`entry`) VALUES('142891'); +INSERT INTO `transmog_items` (`entry`) VALUES('142892'); +INSERT INTO `transmog_items` (`entry`) VALUES('142893'); +INSERT INTO `transmog_items` (`entry`) VALUES('142895'); +INSERT INTO `transmog_items` (`entry`) VALUES('142896'); +INSERT INTO `transmog_items` (`entry`) VALUES('142943'); +INSERT INTO `transmog_items` (`entry`) VALUES('142944'); +INSERT INTO `transmog_items` (`entry`) VALUES('142946'); +INSERT INTO `transmog_items` (`entry`) VALUES('142948'); +INSERT INTO `transmog_items` (`entry`) VALUES('142949'); +INSERT INTO `transmog_items` (`entry`) VALUES('142950'); +INSERT INTO `transmog_items` (`entry`) VALUES('142951'); +INSERT INTO `transmog_items` (`entry`) VALUES('142952'); +INSERT INTO `transmog_items` (`entry`) VALUES('142984'); +INSERT INTO `transmog_items` (`entry`) VALUES('142985'); +INSERT INTO `transmog_items` (`entry`) VALUES('143068'); +INSERT INTO `transmog_items` (`entry`) VALUES('143069'); +INSERT INTO `transmog_items` (`entry`) VALUES('143070'); +INSERT INTO `transmog_items` (`entry`) VALUES('143071'); +INSERT INTO `transmog_items` (`entry`) VALUES('143072'); +INSERT INTO `transmog_items` (`entry`) VALUES('143073'); +INSERT INTO `transmog_items` (`entry`) VALUES('143074'); +INSERT INTO `transmog_items` (`entry`) VALUES('143075'); +INSERT INTO `transmog_items` (`entry`) VALUES('143076'); +INSERT INTO `transmog_items` (`entry`) VALUES('143077'); +INSERT INTO `transmog_items` (`entry`) VALUES('143078'); +INSERT INTO `transmog_items` (`entry`) VALUES('143079'); +INSERT INTO `transmog_items` (`entry`) VALUES('143080'); +INSERT INTO `transmog_items` (`entry`) VALUES('143081'); +INSERT INTO `transmog_items` (`entry`) VALUES('143082'); +INSERT INTO `transmog_items` (`entry`) VALUES('143083'); +INSERT INTO `transmog_items` (`entry`) VALUES('143085'); +INSERT INTO `transmog_items` (`entry`) VALUES('143129'); +INSERT INTO `transmog_items` (`entry`) VALUES('143130'); +INSERT INTO `transmog_items` (`entry`) VALUES('143131'); +INSERT INTO `transmog_items` (`entry`) VALUES('143132'); +INSERT INTO `transmog_items` (`entry`) VALUES('143133'); +INSERT INTO `transmog_items` (`entry`) VALUES('143160'); +INSERT INTO `transmog_items` (`entry`) VALUES('143161'); +INSERT INTO `transmog_items` (`entry`) VALUES('143162'); +INSERT INTO `transmog_items` (`entry`) VALUES('143163'); +INSERT INTO `transmog_items` (`entry`) VALUES('143164'); +INSERT INTO `transmog_items` (`entry`) VALUES('143165'); +INSERT INTO `transmog_items` (`entry`) VALUES('143167'); +INSERT INTO `transmog_items` (`entry`) VALUES('143168'); +INSERT INTO `transmog_items` (`entry`) VALUES('143171'); +INSERT INTO `transmog_items` (`entry`) VALUES('143172'); +INSERT INTO `transmog_items` (`entry`) VALUES('143173'); +INSERT INTO `transmog_items` (`entry`) VALUES('143174'); +INSERT INTO `transmog_items` (`entry`) VALUES('143176'); +INSERT INTO `transmog_items` (`entry`) VALUES('143181'); +INSERT INTO `transmog_items` (`entry`) VALUES('143182'); +INSERT INTO `transmog_items` (`entry`) VALUES('143183'); +INSERT INTO `transmog_items` (`entry`) VALUES('143184'); +INSERT INTO `transmog_items` (`entry`) VALUES('143185'); +INSERT INTO `transmog_items` (`entry`) VALUES('143186'); +INSERT INTO `transmog_items` (`entry`) VALUES('143187'); +INSERT INTO `transmog_items` (`entry`) VALUES('143188'); +INSERT INTO `transmog_items` (`entry`) VALUES('143193'); +INSERT INTO `transmog_items` (`entry`) VALUES('143194'); +INSERT INTO `transmog_items` (`entry`) VALUES('143195'); +INSERT INTO `transmog_items` (`entry`) VALUES('143197'); +INSERT INTO `transmog_items` (`entry`) VALUES('143198'); +INSERT INTO `transmog_items` (`entry`) VALUES('143200'); +INSERT INTO `transmog_items` (`entry`) VALUES('143201'); +INSERT INTO `transmog_items` (`entry`) VALUES('143202'); +INSERT INTO `transmog_items` (`entry`) VALUES('143203'); +INSERT INTO `transmog_items` (`entry`) VALUES('143204'); +INSERT INTO `transmog_items` (`entry`) VALUES('143207'); +INSERT INTO `transmog_items` (`entry`) VALUES('143208'); +INSERT INTO `transmog_items` (`entry`) VALUES('143209'); +INSERT INTO `transmog_items` (`entry`) VALUES('143210'); +INSERT INTO `transmog_items` (`entry`) VALUES('143211'); +INSERT INTO `transmog_items` (`entry`) VALUES('143212'); +INSERT INTO `transmog_items` (`entry`) VALUES('143213'); +INSERT INTO `transmog_items` (`entry`) VALUES('143255'); +INSERT INTO `transmog_items` (`entry`) VALUES('143256'); +INSERT INTO `transmog_items` (`entry`) VALUES('143257'); +INSERT INTO `transmog_items` (`entry`) VALUES('143258'); +INSERT INTO `transmog_items` (`entry`) VALUES('143260'); +INSERT INTO `transmog_items` (`entry`) VALUES('143261'); +INSERT INTO `transmog_items` (`entry`) VALUES('143262'); +INSERT INTO `transmog_items` (`entry`) VALUES('143263'); +INSERT INTO `transmog_items` (`entry`) VALUES('143264'); +INSERT INTO `transmog_items` (`entry`) VALUES('143265'); +INSERT INTO `transmog_items` (`entry`) VALUES('143266'); +INSERT INTO `transmog_items` (`entry`) VALUES('143271'); +INSERT INTO `transmog_items` (`entry`) VALUES('143273'); +INSERT INTO `transmog_items` (`entry`) VALUES('143278'); +INSERT INTO `transmog_items` (`entry`) VALUES('143279'); +INSERT INTO `transmog_items` (`entry`) VALUES('143280'); +INSERT INTO `transmog_items` (`entry`) VALUES('143281'); +INSERT INTO `transmog_items` (`entry`) VALUES('143283'); +INSERT INTO `transmog_items` (`entry`) VALUES('143284'); +INSERT INTO `transmog_items` (`entry`) VALUES('143286'); +INSERT INTO `transmog_items` (`entry`) VALUES('143287'); +INSERT INTO `transmog_items` (`entry`) VALUES('143305'); +INSERT INTO `transmog_items` (`entry`) VALUES('143310'); +INSERT INTO `transmog_items` (`entry`) VALUES('143311'); +INSERT INTO `transmog_items` (`entry`) VALUES('143312'); +INSERT INTO `transmog_items` (`entry`) VALUES('143313'); +INSERT INTO `transmog_items` (`entry`) VALUES('143353'); +INSERT INTO `transmog_items` (`entry`) VALUES('143363'); +INSERT INTO `transmog_items` (`entry`) VALUES('143375'); +INSERT INTO `transmog_items` (`entry`) VALUES('143387'); +INSERT INTO `transmog_items` (`entry`) VALUES('143401'); +INSERT INTO `transmog_items` (`entry`) VALUES('143402'); +INSERT INTO `transmog_items` (`entry`) VALUES('143403'); +INSERT INTO `transmog_items` (`entry`) VALUES('143405'); +INSERT INTO `transmog_items` (`entry`) VALUES('143406'); +INSERT INTO `transmog_items` (`entry`) VALUES('143407'); +INSERT INTO `transmog_items` (`entry`) VALUES('143409'); +INSERT INTO `transmog_items` (`entry`) VALUES('143410'); +INSERT INTO `transmog_items` (`entry`) VALUES('143433'); +INSERT INTO `transmog_items` (`entry`) VALUES('143434'); +INSERT INTO `transmog_items` (`entry`) VALUES('143435'); +INSERT INTO `transmog_items` (`entry`) VALUES('143436'); +INSERT INTO `transmog_items` (`entry`) VALUES('143437'); +INSERT INTO `transmog_items` (`entry`) VALUES('143438'); +INSERT INTO `transmog_items` (`entry`) VALUES('143439'); +INSERT INTO `transmog_items` (`entry`) VALUES('143442'); +INSERT INTO `transmog_items` (`entry`) VALUES('143443'); +INSERT INTO `transmog_items` (`entry`) VALUES('143444'); +INSERT INTO `transmog_items` (`entry`) VALUES('143445'); +INSERT INTO `transmog_items` (`entry`) VALUES('143446'); +INSERT INTO `transmog_items` (`entry`) VALUES('143447'); +INSERT INTO `transmog_items` (`entry`) VALUES('143448'); +INSERT INTO `transmog_items` (`entry`) VALUES('143449'); +INSERT INTO `transmog_items` (`entry`) VALUES('143450'); +INSERT INTO `transmog_items` (`entry`) VALUES('143451'); +INSERT INTO `transmog_items` (`entry`) VALUES('143452'); +INSERT INTO `transmog_items` (`entry`) VALUES('143453'); +INSERT INTO `transmog_items` (`entry`) VALUES('143454'); +INSERT INTO `transmog_items` (`entry`) VALUES('143455'); +INSERT INTO `transmog_items` (`entry`) VALUES('143456'); +INSERT INTO `transmog_items` (`entry`) VALUES('143457'); +INSERT INTO `transmog_items` (`entry`) VALUES('143458'); +INSERT INTO `transmog_items` (`entry`) VALUES('143459'); +INSERT INTO `transmog_items` (`entry`) VALUES('143460'); +INSERT INTO `transmog_items` (`entry`) VALUES('143461'); +INSERT INTO `transmog_items` (`entry`) VALUES('143469'); +INSERT INTO `transmog_items` (`entry`) VALUES('143475'); +INSERT INTO `transmog_items` (`entry`) VALUES('143476'); +INSERT INTO `transmog_items` (`entry`) VALUES('143481'); +INSERT INTO `transmog_items` (`entry`) VALUES('143484'); +INSERT INTO `transmog_items` (`entry`) VALUES('143495'); +INSERT INTO `transmog_items` (`entry`) VALUES('143500'); +INSERT INTO `transmog_items` (`entry`) VALUES('143502'); +INSERT INTO `transmog_items` (`entry`) VALUES('143565'); +INSERT INTO `transmog_items` (`entry`) VALUES('143566'); +INSERT INTO `transmog_items` (`entry`) VALUES('143583'); +INSERT INTO `transmog_items` (`entry`) VALUES('143584'); +INSERT INTO `transmog_items` (`entry`) VALUES('143585'); +INSERT INTO `transmog_items` (`entry`) VALUES('143586'); +INSERT INTO `transmog_items` (`entry`) VALUES('143587'); +INSERT INTO `transmog_items` (`entry`) VALUES('143588'); +INSERT INTO `transmog_items` (`entry`) VALUES('143590'); +INSERT INTO `transmog_items` (`entry`) VALUES('143591'); +INSERT INTO `transmog_items` (`entry`) VALUES('143592'); +INSERT INTO `transmog_items` (`entry`) VALUES('143593'); +INSERT INTO `transmog_items` (`entry`) VALUES('143594'); +INSERT INTO `transmog_items` (`entry`) VALUES('143595'); +INSERT INTO `transmog_items` (`entry`) VALUES('143600'); +INSERT INTO `transmog_items` (`entry`) VALUES('143601'); +INSERT INTO `transmog_items` (`entry`) VALUES('143612'); +INSERT INTO `transmog_items` (`entry`) VALUES('143613'); +INSERT INTO `transmog_items` (`entry`) VALUES('143651'); +INSERT INTO `transmog_items` (`entry`) VALUES('143659'); +INSERT INTO `transmog_items` (`entry`) VALUES('143727'); +INSERT INTO `transmog_items` (`entry`) VALUES('143728'); +INSERT INTO `transmog_items` (`entry`) VALUES('143729'); +INSERT INTO `transmog_items` (`entry`) VALUES('143730'); +INSERT INTO `transmog_items` (`entry`) VALUES('143731'); +INSERT INTO `transmog_items` (`entry`) VALUES('143732'); +INSERT INTO `transmog_items` (`entry`) VALUES('143733'); +INSERT INTO `transmog_items` (`entry`) VALUES('143734'); +INSERT INTO `transmog_items` (`entry`) VALUES('143735'); +INSERT INTO `transmog_items` (`entry`) VALUES('143736'); +INSERT INTO `transmog_items` (`entry`) VALUES('143737'); +INSERT INTO `transmog_items` (`entry`) VALUES('143738'); +INSERT INTO `transmog_items` (`entry`) VALUES('143739'); +INSERT INTO `transmog_items` (`entry`) VALUES('143740'); +INSERT INTO `transmog_items` (`entry`) VALUES('143741'); +INSERT INTO `transmog_items` (`entry`) VALUES('143742'); +INSERT INTO `transmog_items` (`entry`) VALUES('143743'); +INSERT INTO `transmog_items` (`entry`) VALUES('143744'); +INSERT INTO `transmog_items` (`entry`) VALUES('143745'); +INSERT INTO `transmog_items` (`entry`) VALUES('143746'); +INSERT INTO `transmog_items` (`entry`) VALUES('143747'); +INSERT INTO `transmog_items` (`entry`) VALUES('143748'); +INSERT INTO `transmog_items` (`entry`) VALUES('143749'); +INSERT INTO `transmog_items` (`entry`) VALUES('143750'); +INSERT INTO `transmog_items` (`entry`) VALUES('143751'); +INSERT INTO `transmog_items` (`entry`) VALUES('143752'); +INSERT INTO `transmog_items` (`entry`) VALUES('143753'); +INSERT INTO `transmog_items` (`entry`) VALUES('143754'); +INSERT INTO `transmog_items` (`entry`) VALUES('143755'); +INSERT INTO `transmog_items` (`entry`) VALUES('143756'); +INSERT INTO `transmog_items` (`entry`) VALUES('143757'); +INSERT INTO `transmog_items` (`entry`) VALUES('143758'); +INSERT INTO `transmog_items` (`entry`) VALUES('143759'); +INSERT INTO `transmog_items` (`entry`) VALUES('143760'); +INSERT INTO `transmog_items` (`entry`) VALUES('143761'); +INSERT INTO `transmog_items` (`entry`) VALUES('143762'); +INSERT INTO `transmog_items` (`entry`) VALUES('143763'); +INSERT INTO `transmog_items` (`entry`) VALUES('143764'); +INSERT INTO `transmog_items` (`entry`) VALUES('143765'); +INSERT INTO `transmog_items` (`entry`) VALUES('143766'); +INSERT INTO `transmog_items` (`entry`) VALUES('143767'); +INSERT INTO `transmog_items` (`entry`) VALUES('143768'); +INSERT INTO `transmog_items` (`entry`) VALUES('143769'); +INSERT INTO `transmog_items` (`entry`) VALUES('143770'); +INSERT INTO `transmog_items` (`entry`) VALUES('143771'); +INSERT INTO `transmog_items` (`entry`) VALUES('143772'); +INSERT INTO `transmog_items` (`entry`) VALUES('143773'); +INSERT INTO `transmog_items` (`entry`) VALUES('143774'); +INSERT INTO `transmog_items` (`entry`) VALUES('143775'); +INSERT INTO `transmog_items` (`entry`) VALUES('143776'); +INSERT INTO `transmog_items` (`entry`) VALUES('143777'); +INSERT INTO `transmog_items` (`entry`) VALUES('143778'); +INSERT INTO `transmog_items` (`entry`) VALUES('143779'); +INSERT INTO `transmog_items` (`entry`) VALUES('143780'); +INSERT INTO `transmog_items` (`entry`) VALUES('143781'); +INSERT INTO `transmog_items` (`entry`) VALUES('143782'); +INSERT INTO `transmog_items` (`entry`) VALUES('143783'); +INSERT INTO `transmog_items` (`entry`) VALUES('143784'); +INSERT INTO `transmog_items` (`entry`) VALUES('143785'); +INSERT INTO `transmog_items` (`entry`) VALUES('143786'); +INSERT INTO `transmog_items` (`entry`) VALUES('143787'); +INSERT INTO `transmog_items` (`entry`) VALUES('143788'); +INSERT INTO `transmog_items` (`entry`) VALUES('143789'); +INSERT INTO `transmog_items` (`entry`) VALUES('143790'); +INSERT INTO `transmog_items` (`entry`) VALUES('143791'); +INSERT INTO `transmog_items` (`entry`) VALUES('143792'); +INSERT INTO `transmog_items` (`entry`) VALUES('143793'); +INSERT INTO `transmog_items` (`entry`) VALUES('143794'); +INSERT INTO `transmog_items` (`entry`) VALUES('143795'); +INSERT INTO `transmog_items` (`entry`) VALUES('143796'); +INSERT INTO `transmog_items` (`entry`) VALUES('143797'); +INSERT INTO `transmog_items` (`entry`) VALUES('143798'); +INSERT INTO `transmog_items` (`entry`) VALUES('143799'); +INSERT INTO `transmog_items` (`entry`) VALUES('143800'); +INSERT INTO `transmog_items` (`entry`) VALUES('143801'); +INSERT INTO `transmog_items` (`entry`) VALUES('143802'); +INSERT INTO `transmog_items` (`entry`) VALUES('143803'); +INSERT INTO `transmog_items` (`entry`) VALUES('143804'); +INSERT INTO `transmog_items` (`entry`) VALUES('143805'); +INSERT INTO `transmog_items` (`entry`) VALUES('143806'); +INSERT INTO `transmog_items` (`entry`) VALUES('143807'); +INSERT INTO `transmog_items` (`entry`) VALUES('143808'); +INSERT INTO `transmog_items` (`entry`) VALUES('143809'); +INSERT INTO `transmog_items` (`entry`) VALUES('143810'); +INSERT INTO `transmog_items` (`entry`) VALUES('143811'); +INSERT INTO `transmog_items` (`entry`) VALUES('143812'); +INSERT INTO `transmog_items` (`entry`) VALUES('143813'); +INSERT INTO `transmog_items` (`entry`) VALUES('143814'); +INSERT INTO `transmog_items` (`entry`) VALUES('143815'); +INSERT INTO `transmog_items` (`entry`) VALUES('143816'); +INSERT INTO `transmog_items` (`entry`) VALUES('143817'); +INSERT INTO `transmog_items` (`entry`) VALUES('143818'); +INSERT INTO `transmog_items` (`entry`) VALUES('143819'); +INSERT INTO `transmog_items` (`entry`) VALUES('143820'); +INSERT INTO `transmog_items` (`entry`) VALUES('143822'); +INSERT INTO `transmog_items` (`entry`) VALUES('143828'); +INSERT INTO `transmog_items` (`entry`) VALUES('143830'); +INSERT INTO `transmog_items` (`entry`) VALUES('143831'); +INSERT INTO `transmog_items` (`entry`) VALUES('143835'); +INSERT INTO `transmog_items` (`entry`) VALUES('143839'); +INSERT INTO `transmog_items` (`entry`) VALUES('143840'); +INSERT INTO `transmog_items` (`entry`) VALUES('143841'); +INSERT INTO `transmog_items` (`entry`) VALUES('143842'); +INSERT INTO `transmog_items` (`entry`) VALUES('143843'); +INSERT INTO `transmog_items` (`entry`) VALUES('143844'); +INSERT INTO `transmog_items` (`entry`) VALUES('143845'); +INSERT INTO `transmog_items` (`entry`) VALUES('143846'); +INSERT INTO `transmog_items` (`entry`) VALUES('143847'); +INSERT INTO `transmog_items` (`entry`) VALUES('143848'); +INSERT INTO `transmog_items` (`entry`) VALUES('143855'); +INSERT INTO `transmog_items` (`entry`) VALUES('143856'); +INSERT INTO `transmog_items` (`entry`) VALUES('143857'); +INSERT INTO `transmog_items` (`entry`) VALUES('143859'); +INSERT INTO `transmog_items` (`entry`) VALUES('143860'); +INSERT INTO `transmog_items` (`entry`) VALUES('143861'); +INSERT INTO `transmog_items` (`entry`) VALUES('143862'); +INSERT INTO `transmog_items` (`entry`) VALUES('143863'); +INSERT INTO `transmog_items` (`entry`) VALUES('143864'); +INSERT INTO `transmog_items` (`entry`) VALUES('143865'); +INSERT INTO `transmog_items` (`entry`) VALUES('143866'); +INSERT INTO `transmog_items` (`entry`) VALUES('143870'); +INSERT INTO `transmog_items` (`entry`) VALUES('143872'); +INSERT INTO `transmog_items` (`entry`) VALUES('143873'); +INSERT INTO `transmog_items` (`entry`) VALUES('143878'); +INSERT INTO `transmog_items` (`entry`) VALUES('143879'); +INSERT INTO `transmog_items` (`entry`) VALUES('143880'); +INSERT INTO `transmog_items` (`entry`) VALUES('143881'); +INSERT INTO `transmog_items` (`entry`) VALUES('143882'); +INSERT INTO `transmog_items` (`entry`) VALUES('143888'); +INSERT INTO `transmog_items` (`entry`) VALUES('143889'); +INSERT INTO `transmog_items` (`entry`) VALUES('143890'); +INSERT INTO `transmog_items` (`entry`) VALUES('143891'); +INSERT INTO `transmog_items` (`entry`) VALUES('143892'); +INSERT INTO `transmog_items` (`entry`) VALUES('143893'); +INSERT INTO `transmog_items` (`entry`) VALUES('143894'); +INSERT INTO `transmog_items` (`entry`) VALUES('143895'); +INSERT INTO `transmog_items` (`entry`) VALUES('143896'); +INSERT INTO `transmog_items` (`entry`) VALUES('143899'); +INSERT INTO `transmog_items` (`entry`) VALUES('143900'); +INSERT INTO `transmog_items` (`entry`) VALUES('143904'); +INSERT INTO `transmog_items` (`entry`) VALUES('143905'); +INSERT INTO `transmog_items` (`entry`) VALUES('143906'); +INSERT INTO `transmog_items` (`entry`) VALUES('143907'); +INSERT INTO `transmog_items` (`entry`) VALUES('143908'); +INSERT INTO `transmog_items` (`entry`) VALUES('143909'); +INSERT INTO `transmog_items` (`entry`) VALUES('143910'); +INSERT INTO `transmog_items` (`entry`) VALUES('143911'); +INSERT INTO `transmog_items` (`entry`) VALUES('143912'); +INSERT INTO `transmog_items` (`entry`) VALUES('143913'); +INSERT INTO `transmog_items` (`entry`) VALUES('143914'); +INSERT INTO `transmog_items` (`entry`) VALUES('143915'); +INSERT INTO `transmog_items` (`entry`) VALUES('143916'); +INSERT INTO `transmog_items` (`entry`) VALUES('143917'); +INSERT INTO `transmog_items` (`entry`) VALUES('143918'); +INSERT INTO `transmog_items` (`entry`) VALUES('143919'); +INSERT INTO `transmog_items` (`entry`) VALUES('143924'); +INSERT INTO `transmog_items` (`entry`) VALUES('143925'); +INSERT INTO `transmog_items` (`entry`) VALUES('143928'); +INSERT INTO `transmog_items` (`entry`) VALUES('143930'); +INSERT INTO `transmog_items` (`entry`) VALUES('143931'); +INSERT INTO `transmog_items` (`entry`) VALUES('143932'); +INSERT INTO `transmog_items` (`entry`) VALUES('143933'); +INSERT INTO `transmog_items` (`entry`) VALUES('143934'); +INSERT INTO `transmog_items` (`entry`) VALUES('143935'); +INSERT INTO `transmog_items` (`entry`) VALUES('143936'); +INSERT INTO `transmog_items` (`entry`) VALUES('143937'); +INSERT INTO `transmog_items` (`entry`) VALUES('143938'); +INSERT INTO `transmog_items` (`entry`) VALUES('143939'); +INSERT INTO `transmog_items` (`entry`) VALUES('143940'); +INSERT INTO `transmog_items` (`entry`) VALUES('143941'); +INSERT INTO `transmog_items` (`entry`) VALUES('143942'); +INSERT INTO `transmog_items` (`entry`) VALUES('143943'); +INSERT INTO `transmog_items` (`entry`) VALUES('143944'); +INSERT INTO `transmog_items` (`entry`) VALUES('143945'); +INSERT INTO `transmog_items` (`entry`) VALUES('143946'); +INSERT INTO `transmog_items` (`entry`) VALUES('143947'); +INSERT INTO `transmog_items` (`entry`) VALUES('143948'); +INSERT INTO `transmog_items` (`entry`) VALUES('143969'); +INSERT INTO `transmog_items` (`entry`) VALUES('143970'); +INSERT INTO `transmog_items` (`entry`) VALUES('143971'); +INSERT INTO `transmog_items` (`entry`) VALUES('143972'); +INSERT INTO `transmog_items` (`entry`) VALUES('143973'); +INSERT INTO `transmog_items` (`entry`) VALUES('143974'); +INSERT INTO `transmog_items` (`entry`) VALUES('143975'); +INSERT INTO `transmog_items` (`entry`) VALUES('143976'); +INSERT INTO `transmog_items` (`entry`) VALUES('143977'); +INSERT INTO `transmog_items` (`entry`) VALUES('143978'); +INSERT INTO `transmog_items` (`entry`) VALUES('143979'); +INSERT INTO `transmog_items` (`entry`) VALUES('143980'); +INSERT INTO `transmog_items` (`entry`) VALUES('143981'); +INSERT INTO `transmog_items` (`entry`) VALUES('143982'); +INSERT INTO `transmog_items` (`entry`) VALUES('143988'); +INSERT INTO `transmog_items` (`entry`) VALUES('143989'); +INSERT INTO `transmog_items` (`entry`) VALUES('143990'); +INSERT INTO `transmog_items` (`entry`) VALUES('143991'); +INSERT INTO `transmog_items` (`entry`) VALUES('143994'); +INSERT INTO `transmog_items` (`entry`) VALUES('143995'); +INSERT INTO `transmog_items` (`entry`) VALUES('143996'); +INSERT INTO `transmog_items` (`entry`) VALUES('143998'); +INSERT INTO `transmog_items` (`entry`) VALUES('144000'); +INSERT INTO `transmog_items` (`entry`) VALUES('144002'); +INSERT INTO `transmog_items` (`entry`) VALUES('144003'); +INSERT INTO `transmog_items` (`entry`) VALUES('144004'); +INSERT INTO `transmog_items` (`entry`) VALUES('144005'); +INSERT INTO `transmog_items` (`entry`) VALUES('144006'); +INSERT INTO `transmog_items` (`entry`) VALUES('144007'); +INSERT INTO `transmog_items` (`entry`) VALUES('144008'); +INSERT INTO `transmog_items` (`entry`) VALUES('144011'); +INSERT INTO `transmog_items` (`entry`) VALUES('144016'); +INSERT INTO `transmog_items` (`entry`) VALUES('144018'); +INSERT INTO `transmog_items` (`entry`) VALUES('144019'); +INSERT INTO `transmog_items` (`entry`) VALUES('144020'); +INSERT INTO `transmog_items` (`entry`) VALUES('144021'); +INSERT INTO `transmog_items` (`entry`) VALUES('144024'); +INSERT INTO `transmog_items` (`entry`) VALUES('144025'); +INSERT INTO `transmog_items` (`entry`) VALUES('144026'); +INSERT INTO `transmog_items` (`entry`) VALUES('144027'); +INSERT INTO `transmog_items` (`entry`) VALUES('144028'); +INSERT INTO `transmog_items` (`entry`) VALUES('144030'); +INSERT INTO `transmog_items` (`entry`) VALUES('144031'); +INSERT INTO `transmog_items` (`entry`) VALUES('144032'); +INSERT INTO `transmog_items` (`entry`) VALUES('144036'); +INSERT INTO `transmog_items` (`entry`) VALUES('144037'); +INSERT INTO `transmog_items` (`entry`) VALUES('144038'); +INSERT INTO `transmog_items` (`entry`) VALUES('144040'); +INSERT INTO `transmog_items` (`entry`) VALUES('144041'); +INSERT INTO `transmog_items` (`entry`) VALUES('144042'); +INSERT INTO `transmog_items` (`entry`) VALUES('144043'); +INSERT INTO `transmog_items` (`entry`) VALUES('144044'); +INSERT INTO `transmog_items` (`entry`) VALUES('144045'); +INSERT INTO `transmog_items` (`entry`) VALUES('144046'); +INSERT INTO `transmog_items` (`entry`) VALUES('144050'); +INSERT INTO `transmog_items` (`entry`) VALUES('144051'); +INSERT INTO `transmog_items` (`entry`) VALUES('144052'); +INSERT INTO `transmog_items` (`entry`) VALUES('144053'); +INSERT INTO `transmog_items` (`entry`) VALUES('144054'); +INSERT INTO `transmog_items` (`entry`) VALUES('144055'); +INSERT INTO `transmog_items` (`entry`) VALUES('144057'); +INSERT INTO `transmog_items` (`entry`) VALUES('144058'); +INSERT INTO `transmog_items` (`entry`) VALUES('144059'); +INSERT INTO `transmog_items` (`entry`) VALUES('144060'); +INSERT INTO `transmog_items` (`entry`) VALUES('144061'); +INSERT INTO `transmog_items` (`entry`) VALUES('144062'); +INSERT INTO `transmog_items` (`entry`) VALUES('144091'); +INSERT INTO `transmog_items` (`entry`) VALUES('144093'); +INSERT INTO `transmog_items` (`entry`) VALUES('144094'); +INSERT INTO `transmog_items` (`entry`) VALUES('144099'); +INSERT INTO `transmog_items` (`entry`) VALUES('144100'); +INSERT INTO `transmog_items` (`entry`) VALUES('144101'); +INSERT INTO `transmog_items` (`entry`) VALUES('144102'); +INSERT INTO `transmog_items` (`entry`) VALUES('144103'); +INSERT INTO `transmog_items` (`entry`) VALUES('144104'); +INSERT INTO `transmog_items` (`entry`) VALUES('144105'); +INSERT INTO `transmog_items` (`entry`) VALUES('144106'); +INSERT INTO `transmog_items` (`entry`) VALUES('144107'); +INSERT INTO `transmog_items` (`entry`) VALUES('144108'); +INSERT INTO `transmog_items` (`entry`) VALUES('144109'); +INSERT INTO `transmog_items` (`entry`) VALUES('144110'); +INSERT INTO `transmog_items` (`entry`) VALUES('144111'); +INSERT INTO `transmog_items` (`entry`) VALUES('144112'); +INSERT INTO `transmog_items` (`entry`) VALUES('144116'); +INSERT INTO `transmog_items` (`entry`) VALUES('144117'); +INSERT INTO `transmog_items` (`entry`) VALUES('144118'); +INSERT INTO `transmog_items` (`entry`) VALUES('144120'); +INSERT INTO `transmog_items` (`entry`) VALUES('144121'); +INSERT INTO `transmog_items` (`entry`) VALUES('144122'); +INSERT INTO `transmog_items` (`entry`) VALUES('144123'); +INSERT INTO `transmog_items` (`entry`) VALUES('144166'); +INSERT INTO `transmog_items` (`entry`) VALUES('144167'); +INSERT INTO `transmog_items` (`entry`) VALUES('144170'); +INSERT INTO `transmog_items` (`entry`) VALUES('144171'); +INSERT INTO `transmog_items` (`entry`) VALUES('144173'); +INSERT INTO `transmog_items` (`entry`) VALUES('144176'); +INSERT INTO `transmog_items` (`entry`) VALUES('144179'); +INSERT INTO `transmog_items` (`entry`) VALUES('144180'); +INSERT INTO `transmog_items` (`entry`) VALUES('144181'); +INSERT INTO `transmog_items` (`entry`) VALUES('144182'); +INSERT INTO `transmog_items` (`entry`) VALUES('144183'); +INSERT INTO `transmog_items` (`entry`) VALUES('144188'); +INSERT INTO `transmog_items` (`entry`) VALUES('144189'); +INSERT INTO `transmog_items` (`entry`) VALUES('144190'); +INSERT INTO `transmog_items` (`entry`) VALUES('144191'); +INSERT INTO `transmog_items` (`entry`) VALUES('144193'); +INSERT INTO `transmog_items` (`entry`) VALUES('144194'); +INSERT INTO `transmog_items` (`entry`) VALUES('144195'); +INSERT INTO `transmog_items` (`entry`) VALUES('144196'); +INSERT INTO `transmog_items` (`entry`) VALUES('144197'); +INSERT INTO `transmog_items` (`entry`) VALUES('144198'); +INSERT INTO `transmog_items` (`entry`) VALUES('144199'); +INSERT INTO `transmog_items` (`entry`) VALUES('144200'); +INSERT INTO `transmog_items` (`entry`) VALUES('144201'); +INSERT INTO `transmog_items` (`entry`) VALUES('144202'); +INSERT INTO `transmog_items` (`entry`) VALUES('144203'); +INSERT INTO `transmog_items` (`entry`) VALUES('144204'); +INSERT INTO `transmog_items` (`entry`) VALUES('144205'); +INSERT INTO `transmog_items` (`entry`) VALUES('144211'); +INSERT INTO `transmog_items` (`entry`) VALUES('144214'); +INSERT INTO `transmog_items` (`entry`) VALUES('144216'); +INSERT INTO `transmog_items` (`entry`) VALUES('144217'); +INSERT INTO `transmog_items` (`entry`) VALUES('144218'); +INSERT INTO `transmog_items` (`entry`) VALUES('144239'); +INSERT INTO `transmog_items` (`entry`) VALUES('144240'); +INSERT INTO `transmog_items` (`entry`) VALUES('144241'); +INSERT INTO `transmog_items` (`entry`) VALUES('144242'); +INSERT INTO `transmog_items` (`entry`) VALUES('144243'); +INSERT INTO `transmog_items` (`entry`) VALUES('144245'); +INSERT INTO `transmog_items` (`entry`) VALUES('144247'); +INSERT INTO `transmog_items` (`entry`) VALUES('144248'); +INSERT INTO `transmog_items` (`entry`) VALUES('144256'); +INSERT INTO `transmog_items` (`entry`) VALUES('144257'); +INSERT INTO `transmog_items` (`entry`) VALUES('144258'); +INSERT INTO `transmog_items` (`entry`) VALUES('144295'); +INSERT INTO `transmog_items` (`entry`) VALUES('144296'); +INSERT INTO `transmog_items` (`entry`) VALUES('144297'); +INSERT INTO `transmog_items` (`entry`) VALUES('144302'); +INSERT INTO `transmog_items` (`entry`) VALUES('144303'); +INSERT INTO `transmog_items` (`entry`) VALUES('144305'); +INSERT INTO `transmog_items` (`entry`) VALUES('144306'); +INSERT INTO `transmog_items` (`entry`) VALUES('144309'); +INSERT INTO `transmog_items` (`entry`) VALUES('144310'); +INSERT INTO `transmog_items` (`entry`) VALUES('144312'); +INSERT INTO `transmog_items` (`entry`) VALUES('144313'); +INSERT INTO `transmog_items` (`entry`) VALUES('144333'); +INSERT INTO `transmog_items` (`entry`) VALUES('144338'); +INSERT INTO `transmog_items` (`entry`) VALUES('144339'); +INSERT INTO `transmog_items` (`entry`) VALUES('144340'); +INSERT INTO `transmog_items` (`entry`) VALUES('144341'); +INSERT INTO `transmog_items` (`entry`) VALUES('144342'); +INSERT INTO `transmog_items` (`entry`) VALUES('144343'); +INSERT INTO `transmog_items` (`entry`) VALUES('144344'); +INSERT INTO `transmog_items` (`entry`) VALUES('144345'); +INSERT INTO `transmog_items` (`entry`) VALUES('144346'); +INSERT INTO `transmog_items` (`entry`) VALUES('144347'); +INSERT INTO `transmog_items` (`entry`) VALUES('144348'); +INSERT INTO `transmog_items` (`entry`) VALUES('144349'); +INSERT INTO `transmog_items` (`entry`) VALUES('144350'); +INSERT INTO `transmog_items` (`entry`) VALUES('144351'); +INSERT INTO `transmog_items` (`entry`) VALUES('144352'); +INSERT INTO `transmog_items` (`entry`) VALUES('144353'); +INSERT INTO `transmog_items` (`entry`) VALUES('144354'); +INSERT INTO `transmog_items` (`entry`) VALUES('144355'); +INSERT INTO `transmog_items` (`entry`) VALUES('144356'); +INSERT INTO `transmog_items` (`entry`) VALUES('144357'); +INSERT INTO `transmog_items` (`entry`) VALUES('144358'); +INSERT INTO `transmog_items` (`entry`) VALUES('144359'); +INSERT INTO `transmog_items` (`entry`) VALUES('144360'); +INSERT INTO `transmog_items` (`entry`) VALUES('144361'); +INSERT INTO `transmog_items` (`entry`) VALUES('144362'); +INSERT INTO `transmog_items` (`entry`) VALUES('144363'); +INSERT INTO `transmog_items` (`entry`) VALUES('144364'); +INSERT INTO `transmog_items` (`entry`) VALUES('144365'); +INSERT INTO `transmog_items` (`entry`) VALUES('144366'); +INSERT INTO `transmog_items` (`entry`) VALUES('144367'); +INSERT INTO `transmog_items` (`entry`) VALUES('144368'); +INSERT INTO `transmog_items` (`entry`) VALUES('144369'); +INSERT INTO `transmog_items` (`entry`) VALUES('144370'); +INSERT INTO `transmog_items` (`entry`) VALUES('144371'); +INSERT INTO `transmog_items` (`entry`) VALUES('144372'); +INSERT INTO `transmog_items` (`entry`) VALUES('144373'); +INSERT INTO `transmog_items` (`entry`) VALUES('144378'); +INSERT INTO `transmog_items` (`entry`) VALUES('144379'); +INSERT INTO `transmog_items` (`entry`) VALUES('144380'); +INSERT INTO `transmog_items` (`entry`) VALUES('144381'); +INSERT INTO `transmog_items` (`entry`) VALUES('144382'); +INSERT INTO `transmog_items` (`entry`) VALUES('144383'); +INSERT INTO `transmog_items` (`entry`) VALUES('144384'); +INSERT INTO `transmog_items` (`entry`) VALUES('144385'); +INSERT INTO `transmog_items` (`entry`) VALUES('144393'); +INSERT INTO `transmog_items` (`entry`) VALUES('144394'); +INSERT INTO `transmog_items` (`entry`) VALUES('144395'); +INSERT INTO `transmog_items` (`entry`) VALUES('144396'); +INSERT INTO `transmog_items` (`entry`) VALUES('144397'); +INSERT INTO `transmog_items` (`entry`) VALUES('144398'); +INSERT INTO `transmog_items` (`entry`) VALUES('144399'); +INSERT INTO `transmog_items` (`entry`) VALUES('144404'); +INSERT INTO `transmog_items` (`entry`) VALUES('144405'); +INSERT INTO `transmog_items` (`entry`) VALUES('144406'); +INSERT INTO `transmog_items` (`entry`) VALUES('144407'); +INSERT INTO `transmog_items` (`entry`) VALUES('144408'); +INSERT INTO `transmog_items` (`entry`) VALUES('144409'); +INSERT INTO `transmog_items` (`entry`) VALUES('144410'); +INSERT INTO `transmog_items` (`entry`) VALUES('144411'); +INSERT INTO `transmog_items` (`entry`) VALUES('144412'); +INSERT INTO `transmog_items` (`entry`) VALUES('144428'); +INSERT INTO `transmog_items` (`entry`) VALUES('144429'); +INSERT INTO `transmog_items` (`entry`) VALUES('144431'); +INSERT INTO `transmog_items` (`entry`) VALUES('144436'); +INSERT INTO `transmog_items` (`entry`) VALUES('144437'); +INSERT INTO `transmog_items` (`entry`) VALUES('144438'); +INSERT INTO `transmog_items` (`entry`) VALUES('144440'); +INSERT INTO `transmog_items` (`entry`) VALUES('144441'); +INSERT INTO `transmog_items` (`entry`) VALUES('144442'); +INSERT INTO `transmog_items` (`entry`) VALUES('144443'); +INSERT INTO `transmog_items` (`entry`) VALUES('144444'); +INSERT INTO `transmog_items` (`entry`) VALUES('144445'); +INSERT INTO `transmog_items` (`entry`) VALUES('144504'); +INSERT INTO `transmog_items` (`entry`) VALUES('144505'); +INSERT INTO `transmog_items` (`entry`) VALUES('144583'); +INSERT INTO `transmog_items` (`entry`) VALUES('144590'); +INSERT INTO `transmog_items` (`entry`) VALUES('144591'); +INSERT INTO `transmog_items` (`entry`) VALUES('144592'); +INSERT INTO `transmog_items` (`entry`) VALUES('144593'); +INSERT INTO `transmog_items` (`entry`) VALUES('144594'); +INSERT INTO `transmog_items` (`entry`) VALUES('144595'); +INSERT INTO `transmog_items` (`entry`) VALUES('144596'); +INSERT INTO `transmog_items` (`entry`) VALUES('144635'); +INSERT INTO `transmog_items` (`entry`) VALUES('144636'); +INSERT INTO `transmog_items` (`entry`) VALUES('144637'); +INSERT INTO `transmog_items` (`entry`) VALUES('144640'); +INSERT INTO `transmog_items` (`entry`) VALUES('144641'); +INSERT INTO `transmog_items` (`entry`) VALUES('144643'); +INSERT INTO `transmog_items` (`entry`) VALUES('144644'); +INSERT INTO `transmog_items` (`entry`) VALUES('144649'); +INSERT INTO `transmog_items` (`entry`) VALUES('144652'); +INSERT INTO `transmog_items` (`entry`) VALUES('144654'); +INSERT INTO `transmog_items` (`entry`) VALUES('144666'); +INSERT INTO `transmog_items` (`entry`) VALUES('144667'); +INSERT INTO `transmog_items` (`entry`) VALUES('144668'); +INSERT INTO `transmog_items` (`entry`) VALUES('144669'); +INSERT INTO `transmog_items` (`entry`) VALUES('144670'); +INSERT INTO `transmog_items` (`entry`) VALUES('144671'); +INSERT INTO `transmog_items` (`entry`) VALUES('144672'); +INSERT INTO `transmog_items` (`entry`) VALUES('144673'); +INSERT INTO `transmog_items` (`entry`) VALUES('144674'); +INSERT INTO `transmog_items` (`entry`) VALUES('144675'); +INSERT INTO `transmog_items` (`entry`) VALUES('144676'); +INSERT INTO `transmog_items` (`entry`) VALUES('144677'); +INSERT INTO `transmog_items` (`entry`) VALUES('144685'); +INSERT INTO `transmog_items` (`entry`) VALUES('144686'); +INSERT INTO `transmog_items` (`entry`) VALUES('144687'); +INSERT INTO `transmog_items` (`entry`) VALUES('144691'); +INSERT INTO `transmog_items` (`entry`) VALUES('144695'); +INSERT INTO `transmog_items` (`entry`) VALUES('144696'); +INSERT INTO `transmog_items` (`entry`) VALUES('144697'); +INSERT INTO `transmog_items` (`entry`) VALUES('144703'); +INSERT INTO `transmog_items` (`entry`) VALUES('144732'); +INSERT INTO `transmog_items` (`entry`) VALUES('144734'); +INSERT INTO `transmog_items` (`entry`) VALUES('144740'); +INSERT INTO `transmog_items` (`entry`) VALUES('144741'); +INSERT INTO `transmog_items` (`entry`) VALUES('144742'); +INSERT INTO `transmog_items` (`entry`) VALUES('144743'); +INSERT INTO `transmog_items` (`entry`) VALUES('144746'); +INSERT INTO `transmog_items` (`entry`) VALUES('144747'); +INSERT INTO `transmog_items` (`entry`) VALUES('144891'); +INSERT INTO `transmog_items` (`entry`) VALUES('144892'); +INSERT INTO `transmog_items` (`entry`) VALUES('144893'); +INSERT INTO `transmog_items` (`entry`) VALUES('144894'); +INSERT INTO `transmog_items` (`entry`) VALUES('144895'); +INSERT INTO `transmog_items` (`entry`) VALUES('144896'); +INSERT INTO `transmog_items` (`entry`) VALUES('144897'); +INSERT INTO `transmog_items` (`entry`) VALUES('144898'); +INSERT INTO `transmog_items` (`entry`) VALUES('144899'); +INSERT INTO `transmog_items` (`entry`) VALUES('144900'); +INSERT INTO `transmog_items` (`entry`) VALUES('144901'); +INSERT INTO `transmog_items` (`entry`) VALUES('144902'); +INSERT INTO `transmog_items` (`entry`) VALUES('144903'); +INSERT INTO `transmog_items` (`entry`) VALUES('144904'); +INSERT INTO `transmog_items` (`entry`) VALUES('144905'); +INSERT INTO `transmog_items` (`entry`) VALUES('144906'); +INSERT INTO `transmog_items` (`entry`) VALUES('144907'); +INSERT INTO `transmog_items` (`entry`) VALUES('144908'); +INSERT INTO `transmog_items` (`entry`) VALUES('144909'); +INSERT INTO `transmog_items` (`entry`) VALUES('144910'); +INSERT INTO `transmog_items` (`entry`) VALUES('144915'); +INSERT INTO `transmog_items` (`entry`) VALUES('144924'); +INSERT INTO `transmog_items` (`entry`) VALUES('144930'); +INSERT INTO `transmog_items` (`entry`) VALUES('144931'); +INSERT INTO `transmog_items` (`entry`) VALUES('144948'); +INSERT INTO `transmog_items` (`entry`) VALUES('144949'); +INSERT INTO `transmog_items` (`entry`) VALUES('145052'); +INSERT INTO `transmog_items` (`entry`) VALUES('145061'); +INSERT INTO `transmog_items` (`entry`) VALUES('145073'); +INSERT INTO `transmog_items` (`entry`) VALUES('145075'); +INSERT INTO `transmog_items` (`entry`) VALUES('145077'); +INSERT INTO `transmog_items` (`entry`) VALUES('145078'); +INSERT INTO `transmog_items` (`entry`) VALUES('145085'); +INSERT INTO `transmog_items` (`entry`) VALUES('145086'); +INSERT INTO `transmog_items` (`entry`) VALUES('145107'); +INSERT INTO `transmog_items` (`entry`) VALUES('145108'); +INSERT INTO `transmog_items` (`entry`) VALUES('145109'); +INSERT INTO `transmog_items` (`entry`) VALUES('145111'); +INSERT INTO `transmog_items` (`entry`) VALUES('145117'); +INSERT INTO `transmog_items` (`entry`) VALUES('145118'); +INSERT INTO `transmog_items` (`entry`) VALUES('145119'); +INSERT INTO `transmog_items` (`entry`) VALUES('145120'); +INSERT INTO `transmog_items` (`entry`) VALUES('145130'); +INSERT INTO `transmog_items` (`entry`) VALUES('145132'); +INSERT INTO `transmog_items` (`entry`) VALUES('145134'); +INSERT INTO `transmog_items` (`entry`) VALUES('145135'); +INSERT INTO `transmog_items` (`entry`) VALUES('145136'); +INSERT INTO `transmog_items` (`entry`) VALUES('145137'); +INSERT INTO `transmog_items` (`entry`) VALUES('145138'); +INSERT INTO `transmog_items` (`entry`) VALUES('145139'); +INSERT INTO `transmog_items` (`entry`) VALUES('145140'); +INSERT INTO `transmog_items` (`entry`) VALUES('145141'); +INSERT INTO `transmog_items` (`entry`) VALUES('145143'); +INSERT INTO `transmog_items` (`entry`) VALUES('145146'); +INSERT INTO `transmog_items` (`entry`) VALUES('145147'); +INSERT INTO `transmog_items` (`entry`) VALUES('145149'); +INSERT INTO `transmog_items` (`entry`) VALUES('145150'); +INSERT INTO `transmog_items` (`entry`) VALUES('145151'); +INSERT INTO `transmog_items` (`entry`) VALUES('145156'); +INSERT INTO `transmog_items` (`entry`) VALUES('145159'); +INSERT INTO `transmog_items` (`entry`) VALUES('145160'); +INSERT INTO `transmog_items` (`entry`) VALUES('145161'); +INSERT INTO `transmog_items` (`entry`) VALUES('145162'); +INSERT INTO `transmog_items` (`entry`) VALUES('145163'); +INSERT INTO `transmog_items` (`entry`) VALUES('145164'); +INSERT INTO `transmog_items` (`entry`) VALUES('145165'); +INSERT INTO `transmog_items` (`entry`) VALUES('145166'); +INSERT INTO `transmog_items` (`entry`) VALUES('145167'); +INSERT INTO `transmog_items` (`entry`) VALUES('145170'); +INSERT INTO `transmog_items` (`entry`) VALUES('145176'); +INSERT INTO `transmog_items` (`entry`) VALUES('145177'); +INSERT INTO `transmog_items` (`entry`) VALUES('145178'); +INSERT INTO `transmog_items` (`entry`) VALUES('145179'); +INSERT INTO `transmog_items` (`entry`) VALUES('145181'); +INSERT INTO `transmog_items` (`entry`) VALUES('145182'); +INSERT INTO `transmog_items` (`entry`) VALUES('145183'); +INSERT INTO `transmog_items` (`entry`) VALUES('145184'); +INSERT INTO `transmog_items` (`entry`) VALUES('145185'); +INSERT INTO `transmog_items` (`entry`) VALUES('145186'); +INSERT INTO `transmog_items` (`entry`) VALUES('145187'); +INSERT INTO `transmog_items` (`entry`) VALUES('145203'); +INSERT INTO `transmog_items` (`entry`) VALUES('145209'); +INSERT INTO `transmog_items` (`entry`) VALUES('145210'); +INSERT INTO `transmog_items` (`entry`) VALUES('145211'); +INSERT INTO `transmog_items` (`entry`) VALUES('145214'); +INSERT INTO `transmog_items` (`entry`) VALUES('145215'); +INSERT INTO `transmog_items` (`entry`) VALUES('145216'); +INSERT INTO `transmog_items` (`entry`) VALUES('145217'); +INSERT INTO `transmog_items` (`entry`) VALUES('145218'); +INSERT INTO `transmog_items` (`entry`) VALUES('145220'); +INSERT INTO `transmog_items` (`entry`) VALUES('145221'); +INSERT INTO `transmog_items` (`entry`) VALUES('145222'); +INSERT INTO `transmog_items` (`entry`) VALUES('145224'); +INSERT INTO `transmog_items` (`entry`) VALUES('145225'); +INSERT INTO `transmog_items` (`entry`) VALUES('145226'); +INSERT INTO `transmog_items` (`entry`) VALUES('145227'); +INSERT INTO `transmog_items` (`entry`) VALUES('145228'); +INSERT INTO `transmog_items` (`entry`) VALUES('145232'); +INSERT INTO `transmog_items` (`entry`) VALUES('145237'); +INSERT INTO `transmog_items` (`entry`) VALUES('145238'); +INSERT INTO `transmog_items` (`entry`) VALUES('145239'); +INSERT INTO `transmog_items` (`entry`) VALUES('145240'); +INSERT INTO `transmog_items` (`entry`) VALUES('145241'); +INSERT INTO `transmog_items` (`entry`) VALUES('145242'); +INSERT INTO `transmog_items` (`entry`) VALUES('145244'); +INSERT INTO `transmog_items` (`entry`) VALUES('145245'); +INSERT INTO `transmog_items` (`entry`) VALUES('145246'); +INSERT INTO `transmog_items` (`entry`) VALUES('145248'); +INSERT INTO `transmog_items` (`entry`) VALUES('145249'); +INSERT INTO `transmog_items` (`entry`) VALUES('145251'); +INSERT INTO `transmog_items` (`entry`) VALUES('145252'); +INSERT INTO `transmog_items` (`entry`) VALUES('145253'); +INSERT INTO `transmog_items` (`entry`) VALUES('145257'); +INSERT INTO `transmog_items` (`entry`) VALUES('145258'); +INSERT INTO `transmog_items` (`entry`) VALUES('145259'); +INSERT INTO `transmog_items` (`entry`) VALUES('145260'); +INSERT INTO `transmog_items` (`entry`) VALUES('145261'); +INSERT INTO `transmog_items` (`entry`) VALUES('145264'); +INSERT INTO `transmog_items` (`entry`) VALUES('145265'); +INSERT INTO `transmog_items` (`entry`) VALUES('145267'); +INSERT INTO `transmog_items` (`entry`) VALUES('145268'); +INSERT INTO `transmog_items` (`entry`) VALUES('145269'); +INSERT INTO `transmog_items` (`entry`) VALUES('145272'); +INSERT INTO `transmog_items` (`entry`) VALUES('145273'); +INSERT INTO `transmog_items` (`entry`) VALUES('145274'); +INSERT INTO `transmog_items` (`entry`) VALUES('145275'); +INSERT INTO `transmog_items` (`entry`) VALUES('145283'); +INSERT INTO `transmog_items` (`entry`) VALUES('145284'); +INSERT INTO `transmog_items` (`entry`) VALUES('145288'); +INSERT INTO `transmog_items` (`entry`) VALUES('145289'); +INSERT INTO `transmog_items` (`entry`) VALUES('145291'); +INSERT INTO `transmog_items` (`entry`) VALUES('145293'); +INSERT INTO `transmog_items` (`entry`) VALUES('145294'); +INSERT INTO `transmog_items` (`entry`) VALUES('145295'); +INSERT INTO `transmog_items` (`entry`) VALUES('145296'); +INSERT INTO `transmog_items` (`entry`) VALUES('145299'); +INSERT INTO `transmog_items` (`entry`) VALUES('145300'); +INSERT INTO `transmog_items` (`entry`) VALUES('145301'); +INSERT INTO `transmog_items` (`entry`) VALUES('145302'); +INSERT INTO `transmog_items` (`entry`) VALUES('145304'); +INSERT INTO `transmog_items` (`entry`) VALUES('145305'); +INSERT INTO `transmog_items` (`entry`) VALUES('145306'); +INSERT INTO `transmog_items` (`entry`) VALUES('145307'); +INSERT INTO `transmog_items` (`entry`) VALUES('145309'); +INSERT INTO `transmog_items` (`entry`) VALUES('145310'); +INSERT INTO `transmog_items` (`entry`) VALUES('145311'); +INSERT INTO `transmog_items` (`entry`) VALUES('145312'); +INSERT INTO `transmog_items` (`entry`) VALUES('145315'); +INSERT INTO `transmog_items` (`entry`) VALUES('145316'); +INSERT INTO `transmog_items` (`entry`) VALUES('145317'); +INSERT INTO `transmog_items` (`entry`) VALUES('145318'); +INSERT INTO `transmog_items` (`entry`) VALUES('145319'); +INSERT INTO `transmog_items` (`entry`) VALUES('145320'); +INSERT INTO `transmog_items` (`entry`) VALUES('145321'); +INSERT INTO `transmog_items` (`entry`) VALUES('145322'); +INSERT INTO `transmog_items` (`entry`) VALUES('145324'); +INSERT INTO `transmog_items` (`entry`) VALUES('145325'); +INSERT INTO `transmog_items` (`entry`) VALUES('145327'); +INSERT INTO `transmog_items` (`entry`) VALUES('145329'); +INSERT INTO `transmog_items` (`entry`) VALUES('145330'); +INSERT INTO `transmog_items` (`entry`) VALUES('145332'); +INSERT INTO `transmog_items` (`entry`) VALUES('145333'); +INSERT INTO `transmog_items` (`entry`) VALUES('145334'); +INSERT INTO `transmog_items` (`entry`) VALUES('145335'); +INSERT INTO `transmog_items` (`entry`) VALUES('145336'); +INSERT INTO `transmog_items` (`entry`) VALUES('145337'); +INSERT INTO `transmog_items` (`entry`) VALUES('145338'); +INSERT INTO `transmog_items` (`entry`) VALUES('145339'); +INSERT INTO `transmog_items` (`entry`) VALUES('145340'); +INSERT INTO `transmog_items` (`entry`) VALUES('145341'); +INSERT INTO `transmog_items` (`entry`) VALUES('145342'); +INSERT INTO `transmog_items` (`entry`) VALUES('145343'); +INSERT INTO `transmog_items` (`entry`) VALUES('145344'); +INSERT INTO `transmog_items` (`entry`) VALUES('145345'); +INSERT INTO `transmog_items` (`entry`) VALUES('145346'); +INSERT INTO `transmog_items` (`entry`) VALUES('145347'); +INSERT INTO `transmog_items` (`entry`) VALUES('145348'); +INSERT INTO `transmog_items` (`entry`) VALUES('145349'); +INSERT INTO `transmog_items` (`entry`) VALUES('145350'); +INSERT INTO `transmog_items` (`entry`) VALUES('145351'); +INSERT INTO `transmog_items` (`entry`) VALUES('145352'); +INSERT INTO `transmog_items` (`entry`) VALUES('145353'); +INSERT INTO `transmog_items` (`entry`) VALUES('145354'); +INSERT INTO `transmog_items` (`entry`) VALUES('145355'); +INSERT INTO `transmog_items` (`entry`) VALUES('145356'); +INSERT INTO `transmog_items` (`entry`) VALUES('145357'); +INSERT INTO `transmog_items` (`entry`) VALUES('145358'); +INSERT INTO `transmog_items` (`entry`) VALUES('145359'); +INSERT INTO `transmog_items` (`entry`) VALUES('145360'); +INSERT INTO `transmog_items` (`entry`) VALUES('145361'); +INSERT INTO `transmog_items` (`entry`) VALUES('145362'); +INSERT INTO `transmog_items` (`entry`) VALUES('145363'); +INSERT INTO `transmog_items` (`entry`) VALUES('145364'); +INSERT INTO `transmog_items` (`entry`) VALUES('145365'); +INSERT INTO `transmog_items` (`entry`) VALUES('145367'); +INSERT INTO `transmog_items` (`entry`) VALUES('145368'); +INSERT INTO `transmog_items` (`entry`) VALUES('145369'); +INSERT INTO `transmog_items` (`entry`) VALUES('145370'); +INSERT INTO `transmog_items` (`entry`) VALUES('145371'); +INSERT INTO `transmog_items` (`entry`) VALUES('145372'); +INSERT INTO `transmog_items` (`entry`) VALUES('145373'); +INSERT INTO `transmog_items` (`entry`) VALUES('145374'); +INSERT INTO `transmog_items` (`entry`) VALUES('145375'); +INSERT INTO `transmog_items` (`entry`) VALUES('145376'); +INSERT INTO `transmog_items` (`entry`) VALUES('145377'); +INSERT INTO `transmog_items` (`entry`) VALUES('145378'); +INSERT INTO `transmog_items` (`entry`) VALUES('145379'); +INSERT INTO `transmog_items` (`entry`) VALUES('145380'); +INSERT INTO `transmog_items` (`entry`) VALUES('145381'); +INSERT INTO `transmog_items` (`entry`) VALUES('145382'); +INSERT INTO `transmog_items` (`entry`) VALUES('145383'); +INSERT INTO `transmog_items` (`entry`) VALUES('145384'); +INSERT INTO `transmog_items` (`entry`) VALUES('145385'); +INSERT INTO `transmog_items` (`entry`) VALUES('145386'); +INSERT INTO `transmog_items` (`entry`) VALUES('145387'); +INSERT INTO `transmog_items` (`entry`) VALUES('145388'); +INSERT INTO `transmog_items` (`entry`) VALUES('145389'); +INSERT INTO `transmog_items` (`entry`) VALUES('145390'); +INSERT INTO `transmog_items` (`entry`) VALUES('145391'); +INSERT INTO `transmog_items` (`entry`) VALUES('145392'); +INSERT INTO `transmog_items` (`entry`) VALUES('145393'); +INSERT INTO `transmog_items` (`entry`) VALUES('145394'); +INSERT INTO `transmog_items` (`entry`) VALUES('145395'); +INSERT INTO `transmog_items` (`entry`) VALUES('145396'); +INSERT INTO `transmog_items` (`entry`) VALUES('145397'); +INSERT INTO `transmog_items` (`entry`) VALUES('145398'); +INSERT INTO `transmog_items` (`entry`) VALUES('145399'); +INSERT INTO `transmog_items` (`entry`) VALUES('145400'); +INSERT INTO `transmog_items` (`entry`) VALUES('145401'); +INSERT INTO `transmog_items` (`entry`) VALUES('145402'); +INSERT INTO `transmog_items` (`entry`) VALUES('145403'); +INSERT INTO `transmog_items` (`entry`) VALUES('145404'); +INSERT INTO `transmog_items` (`entry`) VALUES('145405'); +INSERT INTO `transmog_items` (`entry`) VALUES('145406'); +INSERT INTO `transmog_items` (`entry`) VALUES('145408'); +INSERT INTO `transmog_items` (`entry`) VALUES('145409'); +INSERT INTO `transmog_items` (`entry`) VALUES('145410'); +INSERT INTO `transmog_items` (`entry`) VALUES('145411'); +INSERT INTO `transmog_items` (`entry`) VALUES('145412'); +INSERT INTO `transmog_items` (`entry`) VALUES('145413'); +INSERT INTO `transmog_items` (`entry`) VALUES('145414'); +INSERT INTO `transmog_items` (`entry`) VALUES('145415'); +INSERT INTO `transmog_items` (`entry`) VALUES('145416'); +INSERT INTO `transmog_items` (`entry`) VALUES('145417'); +INSERT INTO `transmog_items` (`entry`) VALUES('145419'); +INSERT INTO `transmog_items` (`entry`) VALUES('145420'); +INSERT INTO `transmog_items` (`entry`) VALUES('145421'); +INSERT INTO `transmog_items` (`entry`) VALUES('145422'); +INSERT INTO `transmog_items` (`entry`) VALUES('145423'); +INSERT INTO `transmog_items` (`entry`) VALUES('145424'); +INSERT INTO `transmog_items` (`entry`) VALUES('145425'); +INSERT INTO `transmog_items` (`entry`) VALUES('145426'); +INSERT INTO `transmog_items` (`entry`) VALUES('145427'); +INSERT INTO `transmog_items` (`entry`) VALUES('145428'); +INSERT INTO `transmog_items` (`entry`) VALUES('145429'); +INSERT INTO `transmog_items` (`entry`) VALUES('145430'); +INSERT INTO `transmog_items` (`entry`) VALUES('145431'); +INSERT INTO `transmog_items` (`entry`) VALUES('145432'); +INSERT INTO `transmog_items` (`entry`) VALUES('145433'); +INSERT INTO `transmog_items` (`entry`) VALUES('145434'); +INSERT INTO `transmog_items` (`entry`) VALUES('145435'); +INSERT INTO `transmog_items` (`entry`) VALUES('145439'); +INSERT INTO `transmog_items` (`entry`) VALUES('145440'); +INSERT INTO `transmog_items` (`entry`) VALUES('145441'); +INSERT INTO `transmog_items` (`entry`) VALUES('145442'); +INSERT INTO `transmog_items` (`entry`) VALUES('145444'); +INSERT INTO `transmog_items` (`entry`) VALUES('145445'); +INSERT INTO `transmog_items` (`entry`) VALUES('145446'); +INSERT INTO `transmog_items` (`entry`) VALUES('145448'); +INSERT INTO `transmog_items` (`entry`) VALUES('145449'); +INSERT INTO `transmog_items` (`entry`) VALUES('145450'); +INSERT INTO `transmog_items` (`entry`) VALUES('145452'); +INSERT INTO `transmog_items` (`entry`) VALUES('145453'); +INSERT INTO `transmog_items` (`entry`) VALUES('145454'); +INSERT INTO `transmog_items` (`entry`) VALUES('145455'); +INSERT INTO `transmog_items` (`entry`) VALUES('145458'); +INSERT INTO `transmog_items` (`entry`) VALUES('145460'); +INSERT INTO `transmog_items` (`entry`) VALUES('145461'); +INSERT INTO `transmog_items` (`entry`) VALUES('145462'); +INSERT INTO `transmog_items` (`entry`) VALUES('145463'); +INSERT INTO `transmog_items` (`entry`) VALUES('145464'); +INSERT INTO `transmog_items` (`entry`) VALUES('145467'); +INSERT INTO `transmog_items` (`entry`) VALUES('145468'); +INSERT INTO `transmog_items` (`entry`) VALUES('145470'); +INSERT INTO `transmog_items` (`entry`) VALUES('145472'); +INSERT INTO `transmog_items` (`entry`) VALUES('145473'); +INSERT INTO `transmog_items` (`entry`) VALUES('145474'); +INSERT INTO `transmog_items` (`entry`) VALUES('145481'); +INSERT INTO `transmog_items` (`entry`) VALUES('145482'); +INSERT INTO `transmog_items` (`entry`) VALUES('145483'); +INSERT INTO `transmog_items` (`entry`) VALUES('145484'); +INSERT INTO `transmog_items` (`entry`) VALUES('145486'); +INSERT INTO `transmog_items` (`entry`) VALUES('145487'); +INSERT INTO `transmog_items` (`entry`) VALUES('145488'); +INSERT INTO `transmog_items` (`entry`) VALUES('145489'); +INSERT INTO `transmog_items` (`entry`) VALUES('145491'); +INSERT INTO `transmog_items` (`entry`) VALUES('145492'); +INSERT INTO `transmog_items` (`entry`) VALUES('145493'); +INSERT INTO `transmog_items` (`entry`) VALUES('145494'); +INSERT INTO `transmog_items` (`entry`) VALUES('145496'); +INSERT INTO `transmog_items` (`entry`) VALUES('145497'); +INSERT INTO `transmog_items` (`entry`) VALUES('145498'); +INSERT INTO `transmog_items` (`entry`) VALUES('145501'); +INSERT INTO `transmog_items` (`entry`) VALUES('145502'); +INSERT INTO `transmog_items` (`entry`) VALUES('145504'); +INSERT INTO `transmog_items` (`entry`) VALUES('145505'); +INSERT INTO `transmog_items` (`entry`) VALUES('145508'); +INSERT INTO `transmog_items` (`entry`) VALUES('145511'); +INSERT INTO `transmog_items` (`entry`) VALUES('145512'); +INSERT INTO `transmog_items` (`entry`) VALUES('145513'); +INSERT INTO `transmog_items` (`entry`) VALUES('145514'); +INSERT INTO `transmog_items` (`entry`) VALUES('145519'); +INSERT INTO `transmog_items` (`entry`) VALUES('145520'); +INSERT INTO `transmog_items` (`entry`) VALUES('145523'); +INSERT INTO `transmog_items` (`entry`) VALUES('145524'); +INSERT INTO `transmog_items` (`entry`) VALUES('145527'); +INSERT INTO `transmog_items` (`entry`) VALUES('145529'); +INSERT INTO `transmog_items` (`entry`) VALUES('145531'); +INSERT INTO `transmog_items` (`entry`) VALUES('145532'); +INSERT INTO `transmog_items` (`entry`) VALUES('145533'); +INSERT INTO `transmog_items` (`entry`) VALUES('145536'); +INSERT INTO `transmog_items` (`entry`) VALUES('145537'); +INSERT INTO `transmog_items` (`entry`) VALUES('145541'); +INSERT INTO `transmog_items` (`entry`) VALUES('145542'); +INSERT INTO `transmog_items` (`entry`) VALUES('145543'); +INSERT INTO `transmog_items` (`entry`) VALUES('145544'); +INSERT INTO `transmog_items` (`entry`) VALUES('145547'); +INSERT INTO `transmog_items` (`entry`) VALUES('145548'); +INSERT INTO `transmog_items` (`entry`) VALUES('145549'); +INSERT INTO `transmog_items` (`entry`) VALUES('145550'); +INSERT INTO `transmog_items` (`entry`) VALUES('145551'); +INSERT INTO `transmog_items` (`entry`) VALUES('145552'); +INSERT INTO `transmog_items` (`entry`) VALUES('145553'); +INSERT INTO `transmog_items` (`entry`) VALUES('145554'); +INSERT INTO `transmog_items` (`entry`) VALUES('145555'); +INSERT INTO `transmog_items` (`entry`) VALUES('145556'); +INSERT INTO `transmog_items` (`entry`) VALUES('145557'); +INSERT INTO `transmog_items` (`entry`) VALUES('145558'); +INSERT INTO `transmog_items` (`entry`) VALUES('145559'); +INSERT INTO `transmog_items` (`entry`) VALUES('145560'); +INSERT INTO `transmog_items` (`entry`) VALUES('145561'); +INSERT INTO `transmog_items` (`entry`) VALUES('145562'); +INSERT INTO `transmog_items` (`entry`) VALUES('145563'); +INSERT INTO `transmog_items` (`entry`) VALUES('145564'); +INSERT INTO `transmog_items` (`entry`) VALUES('145565'); +INSERT INTO `transmog_items` (`entry`) VALUES('145566'); +INSERT INTO `transmog_items` (`entry`) VALUES('145567'); +INSERT INTO `transmog_items` (`entry`) VALUES('145570'); +INSERT INTO `transmog_items` (`entry`) VALUES('145587'); +INSERT INTO `transmog_items` (`entry`) VALUES('145588'); +INSERT INTO `transmog_items` (`entry`) VALUES('145594'); +INSERT INTO `transmog_items` (`entry`) VALUES('145599'); +INSERT INTO `transmog_items` (`entry`) VALUES('145605'); +INSERT INTO `transmog_items` (`entry`) VALUES('145607'); +INSERT INTO `transmog_items` (`entry`) VALUES('145610'); +INSERT INTO `transmog_items` (`entry`) VALUES('145611'); +INSERT INTO `transmog_items` (`entry`) VALUES('145612'); +INSERT INTO `transmog_items` (`entry`) VALUES('145615'); +INSERT INTO `transmog_items` (`entry`) VALUES('145616'); +INSERT INTO `transmog_items` (`entry`) VALUES('145618'); +INSERT INTO `transmog_items` (`entry`) VALUES('145619'); +INSERT INTO `transmog_items` (`entry`) VALUES('145620'); +INSERT INTO `transmog_items` (`entry`) VALUES('145626'); +INSERT INTO `transmog_items` (`entry`) VALUES('145629'); +INSERT INTO `transmog_items` (`entry`) VALUES('145663'); +INSERT INTO `transmog_items` (`entry`) VALUES('145665'); +INSERT INTO `transmog_items` (`entry`) VALUES('145676'); +INSERT INTO `transmog_items` (`entry`) VALUES('145677'); +INSERT INTO `transmog_items` (`entry`) VALUES('145679'); +INSERT INTO `transmog_items` (`entry`) VALUES('145680'); +INSERT INTO `transmog_items` (`entry`) VALUES('145682'); +INSERT INTO `transmog_items` (`entry`) VALUES('145685'); +INSERT INTO `transmog_items` (`entry`) VALUES('145686'); +INSERT INTO `transmog_items` (`entry`) VALUES('145687'); +INSERT INTO `transmog_items` (`entry`) VALUES('145694'); +INSERT INTO `transmog_items` (`entry`) VALUES('145697'); +INSERT INTO `transmog_items` (`entry`) VALUES('145698'); +INSERT INTO `transmog_items` (`entry`) VALUES('145701'); +INSERT INTO `transmog_items` (`entry`) VALUES('145704'); +INSERT INTO `transmog_items` (`entry`) VALUES('145707'); +INSERT INTO `transmog_items` (`entry`) VALUES('145708'); +INSERT INTO `transmog_items` (`entry`) VALUES('145709'); +INSERT INTO `transmog_items` (`entry`) VALUES('145711'); +INSERT INTO `transmog_items` (`entry`) VALUES('145712'); +INSERT INTO `transmog_items` (`entry`) VALUES('145713'); +INSERT INTO `transmog_items` (`entry`) VALUES('145810'); +INSERT INTO `transmog_items` (`entry`) VALUES('145811'); +INSERT INTO `transmog_items` (`entry`) VALUES('145824'); +INSERT INTO `transmog_items` (`entry`) VALUES('145825'); +INSERT INTO `transmog_items` (`entry`) VALUES('145826'); +INSERT INTO `transmog_items` (`entry`) VALUES('145827'); +INSERT INTO `transmog_items` (`entry`) VALUES('145828'); +INSERT INTO `transmog_items` (`entry`) VALUES('145829'); +INSERT INTO `transmog_items` (`entry`) VALUES('145830'); +INSERT INTO `transmog_items` (`entry`) VALUES('145831'); +INSERT INTO `transmog_items` (`entry`) VALUES('145832'); +INSERT INTO `transmog_items` (`entry`) VALUES('145833'); +INSERT INTO `transmog_items` (`entry`) VALUES('145834'); +INSERT INTO `transmog_items` (`entry`) VALUES('145835'); +INSERT INTO `transmog_items` (`entry`) VALUES('145836'); +INSERT INTO `transmog_items` (`entry`) VALUES('145837'); +INSERT INTO `transmog_items` (`entry`) VALUES('145838'); +INSERT INTO `transmog_items` (`entry`) VALUES('145839'); +INSERT INTO `transmog_items` (`entry`) VALUES('145840'); +INSERT INTO `transmog_items` (`entry`) VALUES('145841'); +INSERT INTO `transmog_items` (`entry`) VALUES('145842'); +INSERT INTO `transmog_items` (`entry`) VALUES('145843'); +INSERT INTO `transmog_items` (`entry`) VALUES('145844'); +INSERT INTO `transmog_items` (`entry`) VALUES('145845'); +INSERT INTO `transmog_items` (`entry`) VALUES('145846'); +INSERT INTO `transmog_items` (`entry`) VALUES('145847'); +INSERT INTO `transmog_items` (`entry`) VALUES('145848'); +INSERT INTO `transmog_items` (`entry`) VALUES('145858'); +INSERT INTO `transmog_items` (`entry`) VALUES('145861'); +INSERT INTO `transmog_items` (`entry`) VALUES('145864'); +INSERT INTO `transmog_items` (`entry`) VALUES('145865'); +INSERT INTO `transmog_items` (`entry`) VALUES('145867'); +INSERT INTO `transmog_items` (`entry`) VALUES('145869'); +INSERT INTO `transmog_items` (`entry`) VALUES('145870'); +INSERT INTO `transmog_items` (`entry`) VALUES('145872'); +INSERT INTO `transmog_items` (`entry`) VALUES('145873'); +INSERT INTO `transmog_items` (`entry`) VALUES('145876'); +INSERT INTO `transmog_items` (`entry`) VALUES('145877'); +INSERT INTO `transmog_items` (`entry`) VALUES('145887'); +INSERT INTO `transmog_items` (`entry`) VALUES('145888'); +INSERT INTO `transmog_items` (`entry`) VALUES('145892'); +INSERT INTO `transmog_items` (`entry`) VALUES('145893'); +INSERT INTO `transmog_items` (`entry`) VALUES('145894'); +INSERT INTO `transmog_items` (`entry`) VALUES('145895'); +INSERT INTO `transmog_items` (`entry`) VALUES('145927'); +INSERT INTO `transmog_items` (`entry`) VALUES('145928'); +INSERT INTO `transmog_items` (`entry`) VALUES('145930'); +INSERT INTO `transmog_items` (`entry`) VALUES('145935'); +INSERT INTO `transmog_items` (`entry`) VALUES('145936'); +INSERT INTO `transmog_items` (`entry`) VALUES('145937'); +INSERT INTO `transmog_items` (`entry`) VALUES('145938'); +INSERT INTO `transmog_items` (`entry`) VALUES('145939'); +INSERT INTO `transmog_items` (`entry`) VALUES('145940'); +INSERT INTO `transmog_items` (`entry`) VALUES('145941'); +INSERT INTO `transmog_items` (`entry`) VALUES('145943'); +INSERT INTO `transmog_items` (`entry`) VALUES('145948'); +INSERT INTO `transmog_items` (`entry`) VALUES('145951'); +INSERT INTO `transmog_items` (`entry`) VALUES('145958'); +INSERT INTO `transmog_items` (`entry`) VALUES('145959'); +INSERT INTO `transmog_items` (`entry`) VALUES('145962'); +INSERT INTO `transmog_items` (`entry`) VALUES('145963'); +INSERT INTO `transmog_items` (`entry`) VALUES('145964'); +INSERT INTO `transmog_items` (`entry`) VALUES('145967'); +INSERT INTO `transmog_items` (`entry`) VALUES('145968'); +INSERT INTO `transmog_items` (`entry`) VALUES('145969'); +INSERT INTO `transmog_items` (`entry`) VALUES('145970'); +INSERT INTO `transmog_items` (`entry`) VALUES('145971'); +INSERT INTO `transmog_items` (`entry`) VALUES('145972'); +INSERT INTO `transmog_items` (`entry`) VALUES('145973'); +INSERT INTO `transmog_items` (`entry`) VALUES('145974'); +INSERT INTO `transmog_items` (`entry`) VALUES('145975'); +INSERT INTO `transmog_items` (`entry`) VALUES('145976'); +INSERT INTO `transmog_items` (`entry`) VALUES('145982'); +INSERT INTO `transmog_items` (`entry`) VALUES('145988'); +INSERT INTO `transmog_items` (`entry`) VALUES('145989'); +INSERT INTO `transmog_items` (`entry`) VALUES('145991'); +INSERT INTO `transmog_items` (`entry`) VALUES('145992'); +INSERT INTO `transmog_items` (`entry`) VALUES('145993'); +INSERT INTO `transmog_items` (`entry`) VALUES('145996'); +INSERT INTO `transmog_items` (`entry`) VALUES('145997'); +INSERT INTO `transmog_items` (`entry`) VALUES('146009'); +INSERT INTO `transmog_items` (`entry`) VALUES('146011'); +INSERT INTO `transmog_items` (`entry`) VALUES('146012'); +INSERT INTO `transmog_items` (`entry`) VALUES('146013'); +INSERT INTO `transmog_items` (`entry`) VALUES('146014'); +INSERT INTO `transmog_items` (`entry`) VALUES('146017'); +INSERT INTO `transmog_items` (`entry`) VALUES('146018'); +INSERT INTO `transmog_items` (`entry`) VALUES('146019'); +INSERT INTO `transmog_items` (`entry`) VALUES('146024'); +INSERT INTO `transmog_items` (`entry`) VALUES('146028'); +INSERT INTO `transmog_items` (`entry`) VALUES('146030'); +INSERT INTO `transmog_items` (`entry`) VALUES('146032'); +INSERT INTO `transmog_items` (`entry`) VALUES('146034'); +INSERT INTO `transmog_items` (`entry`) VALUES('146035'); +INSERT INTO `transmog_items` (`entry`) VALUES('146037'); +INSERT INTO `transmog_items` (`entry`) VALUES('146039'); +INSERT INTO `transmog_items` (`entry`) VALUES('146041'); +INSERT INTO `transmog_items` (`entry`) VALUES('146042'); +INSERT INTO `transmog_items` (`entry`) VALUES('146043'); +INSERT INTO `transmog_items` (`entry`) VALUES('146044'); +INSERT INTO `transmog_items` (`entry`) VALUES('146045'); +INSERT INTO `transmog_items` (`entry`) VALUES('146049'); +INSERT INTO `transmog_items` (`entry`) VALUES('146050'); +INSERT INTO `transmog_items` (`entry`) VALUES('146057'); +INSERT INTO `transmog_items` (`entry`) VALUES('146058'); +INSERT INTO `transmog_items` (`entry`) VALUES('146059'); +INSERT INTO `transmog_items` (`entry`) VALUES('146060'); +INSERT INTO `transmog_items` (`entry`) VALUES('146061'); +INSERT INTO `transmog_items` (`entry`) VALUES('146062'); +INSERT INTO `transmog_items` (`entry`) VALUES('146063'); +INSERT INTO `transmog_items` (`entry`) VALUES('146064'); +INSERT INTO `transmog_items` (`entry`) VALUES('146065'); +INSERT INTO `transmog_items` (`entry`) VALUES('146066'); +INSERT INTO `transmog_items` (`entry`) VALUES('146068'); +INSERT INTO `transmog_items` (`entry`) VALUES('146069'); +INSERT INTO `transmog_items` (`entry`) VALUES('146070'); +INSERT INTO `transmog_items` (`entry`) VALUES('146071'); +INSERT INTO `transmog_items` (`entry`) VALUES('146072'); +INSERT INTO `transmog_items` (`entry`) VALUES('146073'); +INSERT INTO `transmog_items` (`entry`) VALUES('146074'); +INSERT INTO `transmog_items` (`entry`) VALUES('146075'); +INSERT INTO `transmog_items` (`entry`) VALUES('146076'); +INSERT INTO `transmog_items` (`entry`) VALUES('146077'); +INSERT INTO `transmog_items` (`entry`) VALUES('146078'); +INSERT INTO `transmog_items` (`entry`) VALUES('146079'); +INSERT INTO `transmog_items` (`entry`) VALUES('146080'); +INSERT INTO `transmog_items` (`entry`) VALUES('146095'); +INSERT INTO `transmog_items` (`entry`) VALUES('146097'); +INSERT INTO `transmog_items` (`entry`) VALUES('146106'); +INSERT INTO `transmog_items` (`entry`) VALUES('146111'); +INSERT INTO `transmog_items` (`entry`) VALUES('146113'); +INSERT INTO `transmog_items` (`entry`) VALUES('146115'); +INSERT INTO `transmog_items` (`entry`) VALUES('146116'); +INSERT INTO `transmog_items` (`entry`) VALUES('146117'); +INSERT INTO `transmog_items` (`entry`) VALUES('146118'); +INSERT INTO `transmog_items` (`entry`) VALUES('146119'); +INSERT INTO `transmog_items` (`entry`) VALUES('146120'); +INSERT INTO `transmog_items` (`entry`) VALUES('146121'); +INSERT INTO `transmog_items` (`entry`) VALUES('146122'); +INSERT INTO `transmog_items` (`entry`) VALUES('146123'); +INSERT INTO `transmog_items` (`entry`) VALUES('146124'); +INSERT INTO `transmog_items` (`entry`) VALUES('146125'); +INSERT INTO `transmog_items` (`entry`) VALUES('146126'); +INSERT INTO `transmog_items` (`entry`) VALUES('146127'); +INSERT INTO `transmog_items` (`entry`) VALUES('146129'); +INSERT INTO `transmog_items` (`entry`) VALUES('146130'); +INSERT INTO `transmog_items` (`entry`) VALUES('146131'); +INSERT INTO `transmog_items` (`entry`) VALUES('146132'); +INSERT INTO `transmog_items` (`entry`) VALUES('146133'); +INSERT INTO `transmog_items` (`entry`) VALUES('146134'); +INSERT INTO `transmog_items` (`entry`) VALUES('146135'); +INSERT INTO `transmog_items` (`entry`) VALUES('146136'); +INSERT INTO `transmog_items` (`entry`) VALUES('146137'); +INSERT INTO `transmog_items` (`entry`) VALUES('146139'); +INSERT INTO `transmog_items` (`entry`) VALUES('146140'); +INSERT INTO `transmog_items` (`entry`) VALUES('146141'); +INSERT INTO `transmog_items` (`entry`) VALUES('146142'); +INSERT INTO `transmog_items` (`entry`) VALUES('146143'); +INSERT INTO `transmog_items` (`entry`) VALUES('146144'); +INSERT INTO `transmog_items` (`entry`) VALUES('146145'); +INSERT INTO `transmog_items` (`entry`) VALUES('146146'); +INSERT INTO `transmog_items` (`entry`) VALUES('146148'); +INSERT INTO `transmog_items` (`entry`) VALUES('146149'); +INSERT INTO `transmog_items` (`entry`) VALUES('146150'); +INSERT INTO `transmog_items` (`entry`) VALUES('146151'); +INSERT INTO `transmog_items` (`entry`) VALUES('146152'); +INSERT INTO `transmog_items` (`entry`) VALUES('146153'); +INSERT INTO `transmog_items` (`entry`) VALUES('146154'); +INSERT INTO `transmog_items` (`entry`) VALUES('146155'); +INSERT INTO `transmog_items` (`entry`) VALUES('146156'); +INSERT INTO `transmog_items` (`entry`) VALUES('146157'); +INSERT INTO `transmog_items` (`entry`) VALUES('146158'); +INSERT INTO `transmog_items` (`entry`) VALUES('146159'); +INSERT INTO `transmog_items` (`entry`) VALUES('146160'); +INSERT INTO `transmog_items` (`entry`) VALUES('146161'); +INSERT INTO `transmog_items` (`entry`) VALUES('146162'); +INSERT INTO `transmog_items` (`entry`) VALUES('146163'); +INSERT INTO `transmog_items` (`entry`) VALUES('146164'); +INSERT INTO `transmog_items` (`entry`) VALUES('146165'); +INSERT INTO `transmog_items` (`entry`) VALUES('146166'); +INSERT INTO `transmog_items` (`entry`) VALUES('146167'); +INSERT INTO `transmog_items` (`entry`) VALUES('146168'); +INSERT INTO `transmog_items` (`entry`) VALUES('146169'); +INSERT INTO `transmog_items` (`entry`) VALUES('146170'); +INSERT INTO `transmog_items` (`entry`) VALUES('146172'); +INSERT INTO `transmog_items` (`entry`) VALUES('146173'); +INSERT INTO `transmog_items` (`entry`) VALUES('146174'); +INSERT INTO `transmog_items` (`entry`) VALUES('146175'); +INSERT INTO `transmog_items` (`entry`) VALUES('146176'); +INSERT INTO `transmog_items` (`entry`) VALUES('146177'); +INSERT INTO `transmog_items` (`entry`) VALUES('146178'); +INSERT INTO `transmog_items` (`entry`) VALUES('146179'); +INSERT INTO `transmog_items` (`entry`) VALUES('146180'); +INSERT INTO `transmog_items` (`entry`) VALUES('146181'); +INSERT INTO `transmog_items` (`entry`) VALUES('146182'); +INSERT INTO `transmog_items` (`entry`) VALUES('146183'); +INSERT INTO `transmog_items` (`entry`) VALUES('146184'); +INSERT INTO `transmog_items` (`entry`) VALUES('146185'); +INSERT INTO `transmog_items` (`entry`) VALUES('146186'); +INSERT INTO `transmog_items` (`entry`) VALUES('146187'); +INSERT INTO `transmog_items` (`entry`) VALUES('146188'); +INSERT INTO `transmog_items` (`entry`) VALUES('146189'); +INSERT INTO `transmog_items` (`entry`) VALUES('146190'); +INSERT INTO `transmog_items` (`entry`) VALUES('146191'); +INSERT INTO `transmog_items` (`entry`) VALUES('146192'); +INSERT INTO `transmog_items` (`entry`) VALUES('146193'); +INSERT INTO `transmog_items` (`entry`) VALUES('146194'); +INSERT INTO `transmog_items` (`entry`) VALUES('146195'); +INSERT INTO `transmog_items` (`entry`) VALUES('146196'); +INSERT INTO `transmog_items` (`entry`) VALUES('146197'); +INSERT INTO `transmog_items` (`entry`) VALUES('146198'); +INSERT INTO `transmog_items` (`entry`) VALUES('146199'); +INSERT INTO `transmog_items` (`entry`) VALUES('146200'); +INSERT INTO `transmog_items` (`entry`) VALUES('146201'); +INSERT INTO `transmog_items` (`entry`) VALUES('146202'); +INSERT INTO `transmog_items` (`entry`) VALUES('146203'); +INSERT INTO `transmog_items` (`entry`) VALUES('146204'); +INSERT INTO `transmog_items` (`entry`) VALUES('146205'); +INSERT INTO `transmog_items` (`entry`) VALUES('146206'); +INSERT INTO `transmog_items` (`entry`) VALUES('146207'); +INSERT INTO `transmog_items` (`entry`) VALUES('146208'); +INSERT INTO `transmog_items` (`entry`) VALUES('146209'); +INSERT INTO `transmog_items` (`entry`) VALUES('146210'); +INSERT INTO `transmog_items` (`entry`) VALUES('146211'); +INSERT INTO `transmog_items` (`entry`) VALUES('146212'); +INSERT INTO `transmog_items` (`entry`) VALUES('146213'); +INSERT INTO `transmog_items` (`entry`) VALUES('146214'); +INSERT INTO `transmog_items` (`entry`) VALUES('146215'); +INSERT INTO `transmog_items` (`entry`) VALUES('146216'); +INSERT INTO `transmog_items` (`entry`) VALUES('146217'); +INSERT INTO `transmog_items` (`entry`) VALUES('146218'); +INSERT INTO `transmog_items` (`entry`) VALUES('146219'); +INSERT INTO `transmog_items` (`entry`) VALUES('146220'); +INSERT INTO `transmog_items` (`entry`) VALUES('146221'); +INSERT INTO `transmog_items` (`entry`) VALUES('146222'); +INSERT INTO `transmog_items` (`entry`) VALUES('146223'); +INSERT INTO `transmog_items` (`entry`) VALUES('146224'); +INSERT INTO `transmog_items` (`entry`) VALUES('146225'); +INSERT INTO `transmog_items` (`entry`) VALUES('146226'); +INSERT INTO `transmog_items` (`entry`) VALUES('146227'); +INSERT INTO `transmog_items` (`entry`) VALUES('146228'); +INSERT INTO `transmog_items` (`entry`) VALUES('146230'); +INSERT INTO `transmog_items` (`entry`) VALUES('146231'); +INSERT INTO `transmog_items` (`entry`) VALUES('146232'); +INSERT INTO `transmog_items` (`entry`) VALUES('146233'); +INSERT INTO `transmog_items` (`entry`) VALUES('146234'); +INSERT INTO `transmog_items` (`entry`) VALUES('146235'); +INSERT INTO `transmog_items` (`entry`) VALUES('146236'); +INSERT INTO `transmog_items` (`entry`) VALUES('146237'); +INSERT INTO `transmog_items` (`entry`) VALUES('146238'); +INSERT INTO `transmog_items` (`entry`) VALUES('146239'); +INSERT INTO `transmog_items` (`entry`) VALUES('146240'); +INSERT INTO `transmog_items` (`entry`) VALUES('146241'); +INSERT INTO `transmog_items` (`entry`) VALUES('146242'); +INSERT INTO `transmog_items` (`entry`) VALUES('146243'); +INSERT INTO `transmog_items` (`entry`) VALUES('146244'); +INSERT INTO `transmog_items` (`entry`) VALUES('146245'); +INSERT INTO `transmog_items` (`entry`) VALUES('146246'); +INSERT INTO `transmog_items` (`entry`) VALUES('146247'); +INSERT INTO `transmog_items` (`entry`) VALUES('146248'); +INSERT INTO `transmog_items` (`entry`) VALUES('146249'); +INSERT INTO `transmog_items` (`entry`) VALUES('146250'); +INSERT INTO `transmog_items` (`entry`) VALUES('146251'); +INSERT INTO `transmog_items` (`entry`) VALUES('146252'); +INSERT INTO `transmog_items` (`entry`) VALUES('146253'); +INSERT INTO `transmog_items` (`entry`) VALUES('146254'); +INSERT INTO `transmog_items` (`entry`) VALUES('146255'); +INSERT INTO `transmog_items` (`entry`) VALUES('146256'); +INSERT INTO `transmog_items` (`entry`) VALUES('146257'); +INSERT INTO `transmog_items` (`entry`) VALUES('146258'); +INSERT INTO `transmog_items` (`entry`) VALUES('146259'); +INSERT INTO `transmog_items` (`entry`) VALUES('146260'); +INSERT INTO `transmog_items` (`entry`) VALUES('146261'); +INSERT INTO `transmog_items` (`entry`) VALUES('146262'); +INSERT INTO `transmog_items` (`entry`) VALUES('146263'); +INSERT INTO `transmog_items` (`entry`) VALUES('146264'); +INSERT INTO `transmog_items` (`entry`) VALUES('146265'); +INSERT INTO `transmog_items` (`entry`) VALUES('146266'); +INSERT INTO `transmog_items` (`entry`) VALUES('146267'); +INSERT INTO `transmog_items` (`entry`) VALUES('146268'); +INSERT INTO `transmog_items` (`entry`) VALUES('146269'); +INSERT INTO `transmog_items` (`entry`) VALUES('146270'); +INSERT INTO `transmog_items` (`entry`) VALUES('146271'); +INSERT INTO `transmog_items` (`entry`) VALUES('146272'); +INSERT INTO `transmog_items` (`entry`) VALUES('146273'); +INSERT INTO `transmog_items` (`entry`) VALUES('146274'); +INSERT INTO `transmog_items` (`entry`) VALUES('146275'); +INSERT INTO `transmog_items` (`entry`) VALUES('146276'); +INSERT INTO `transmog_items` (`entry`) VALUES('146277'); +INSERT INTO `transmog_items` (`entry`) VALUES('146278'); +INSERT INTO `transmog_items` (`entry`) VALUES('146279'); +INSERT INTO `transmog_items` (`entry`) VALUES('146280'); +INSERT INTO `transmog_items` (`entry`) VALUES('146281'); +INSERT INTO `transmog_items` (`entry`) VALUES('146282'); +INSERT INTO `transmog_items` (`entry`) VALUES('146283'); +INSERT INTO `transmog_items` (`entry`) VALUES('146284'); +INSERT INTO `transmog_items` (`entry`) VALUES('146285'); +INSERT INTO `transmog_items` (`entry`) VALUES('146286'); +INSERT INTO `transmog_items` (`entry`) VALUES('146287'); +INSERT INTO `transmog_items` (`entry`) VALUES('146288'); +INSERT INTO `transmog_items` (`entry`) VALUES('146289'); +INSERT INTO `transmog_items` (`entry`) VALUES('146290'); +INSERT INTO `transmog_items` (`entry`) VALUES('146291'); +INSERT INTO `transmog_items` (`entry`) VALUES('146292'); +INSERT INTO `transmog_items` (`entry`) VALUES('146293'); +INSERT INTO `transmog_items` (`entry`) VALUES('146294'); +INSERT INTO `transmog_items` (`entry`) VALUES('146295'); +INSERT INTO `transmog_items` (`entry`) VALUES('146296'); +INSERT INTO `transmog_items` (`entry`) VALUES('146297'); +INSERT INTO `transmog_items` (`entry`) VALUES('146298'); +INSERT INTO `transmog_items` (`entry`) VALUES('146299'); +INSERT INTO `transmog_items` (`entry`) VALUES('146300'); +INSERT INTO `transmog_items` (`entry`) VALUES('146301'); +INSERT INTO `transmog_items` (`entry`) VALUES('146302'); +INSERT INTO `transmog_items` (`entry`) VALUES('146303'); +INSERT INTO `transmog_items` (`entry`) VALUES('146304'); +INSERT INTO `transmog_items` (`entry`) VALUES('146305'); +INSERT INTO `transmog_items` (`entry`) VALUES('146306'); +INSERT INTO `transmog_items` (`entry`) VALUES('146307'); +INSERT INTO `transmog_items` (`entry`) VALUES('146309'); +INSERT INTO `transmog_items` (`entry`) VALUES('146313'); +INSERT INTO `transmog_items` (`entry`) VALUES('146320'); +INSERT INTO `transmog_items` (`entry`) VALUES('146321'); +INSERT INTO `transmog_items` (`entry`) VALUES('146331'); +INSERT INTO `transmog_items` (`entry`) VALUES('146339'); +INSERT INTO `transmog_items` (`entry`) VALUES('146340'); +INSERT INTO `transmog_items` (`entry`) VALUES('146341'); +INSERT INTO `transmog_items` (`entry`) VALUES('146342'); +INSERT INTO `transmog_items` (`entry`) VALUES('146344'); +INSERT INTO `transmog_items` (`entry`) VALUES('146345'); +INSERT INTO `transmog_items` (`entry`) VALUES('146346'); +INSERT INTO `transmog_items` (`entry`) VALUES('146347'); +INSERT INTO `transmog_items` (`entry`) VALUES('146351'); +INSERT INTO `transmog_items` (`entry`) VALUES('146958'); +INSERT INTO `transmog_items` (`entry`) VALUES('146960'); +INSERT INTO `transmog_items` (`entry`) VALUES('146961'); +INSERT INTO `transmog_items` (`entry`) VALUES('146962'); +INSERT INTO `transmog_items` (`entry`) VALUES('146963'); +INSERT INTO `transmog_items` (`entry`) VALUES('146964'); +INSERT INTO `transmog_items` (`entry`) VALUES('146965'); +INSERT INTO `transmog_items` (`entry`) VALUES('146967'); +INSERT INTO `transmog_items` (`entry`) VALUES('146968'); +INSERT INTO `transmog_items` (`entry`) VALUES('146969'); +INSERT INTO `transmog_items` (`entry`) VALUES('146970'); +INSERT INTO `transmog_items` (`entry`) VALUES('146971'); +INSERT INTO `transmog_items` (`entry`) VALUES('146972'); +INSERT INTO `transmog_items` (`entry`) VALUES('146973'); +INSERT INTO `transmog_items` (`entry`) VALUES('146974'); +INSERT INTO `transmog_items` (`entry`) VALUES('146975'); +INSERT INTO `transmog_items` (`entry`) VALUES('146976'); +INSERT INTO `transmog_items` (`entry`) VALUES('146977'); +INSERT INTO `transmog_items` (`entry`) VALUES('146979'); +INSERT INTO `transmog_items` (`entry`) VALUES('146980'); +INSERT INTO `transmog_items` (`entry`) VALUES('146985'); +INSERT INTO `transmog_items` (`entry`) VALUES('146986'); +INSERT INTO `transmog_items` (`entry`) VALUES('146988'); +INSERT INTO `transmog_items` (`entry`) VALUES('146989'); +INSERT INTO `transmog_items` (`entry`) VALUES('146990'); +INSERT INTO `transmog_items` (`entry`) VALUES('146991'); +INSERT INTO `transmog_items` (`entry`) VALUES('146992'); +INSERT INTO `transmog_items` (`entry`) VALUES('146993'); +INSERT INTO `transmog_items` (`entry`) VALUES('146994'); +INSERT INTO `transmog_items` (`entry`) VALUES('146995'); +INSERT INTO `transmog_items` (`entry`) VALUES('146997'); +INSERT INTO `transmog_items` (`entry`) VALUES('146999'); +INSERT INTO `transmog_items` (`entry`) VALUES('147000'); +INSERT INTO `transmog_items` (`entry`) VALUES('147002'); +INSERT INTO `transmog_items` (`entry`) VALUES('147003'); +INSERT INTO `transmog_items` (`entry`) VALUES('147004'); +INSERT INTO `transmog_items` (`entry`) VALUES('147042'); +INSERT INTO `transmog_items` (`entry`) VALUES('147051'); +INSERT INTO `transmog_items` (`entry`) VALUES('147052'); +INSERT INTO `transmog_items` (`entry`) VALUES('147055'); +INSERT INTO `transmog_items` (`entry`) VALUES('147056'); +INSERT INTO `transmog_items` (`entry`) VALUES('147057'); +INSERT INTO `transmog_items` (`entry`) VALUES('147061'); +INSERT INTO `transmog_items` (`entry`) VALUES('147062'); +INSERT INTO `transmog_items` (`entry`) VALUES('147063'); +INSERT INTO `transmog_items` (`entry`) VALUES('147066'); +INSERT INTO `transmog_items` (`entry`) VALUES('147067'); +INSERT INTO `transmog_items` (`entry`) VALUES('147068'); +INSERT INTO `transmog_items` (`entry`) VALUES('147069'); +INSERT INTO `transmog_items` (`entry`) VALUES('147071'); +INSERT INTO `transmog_items` (`entry`) VALUES('147072'); +INSERT INTO `transmog_items` (`entry`) VALUES('147073'); +INSERT INTO `transmog_items` (`entry`) VALUES('147074'); +INSERT INTO `transmog_items` (`entry`) VALUES('147076'); +INSERT INTO `transmog_items` (`entry`) VALUES('147077'); +INSERT INTO `transmog_items` (`entry`) VALUES('147078'); +INSERT INTO `transmog_items` (`entry`) VALUES('147079'); +INSERT INTO `transmog_items` (`entry`) VALUES('147081'); +INSERT INTO `transmog_items` (`entry`) VALUES('147082'); +INSERT INTO `transmog_items` (`entry`) VALUES('147083'); +INSERT INTO `transmog_items` (`entry`) VALUES('147084'); +INSERT INTO `transmog_items` (`entry`) VALUES('147085'); +INSERT INTO `transmog_items` (`entry`) VALUES('147086'); +INSERT INTO `transmog_items` (`entry`) VALUES('147087'); +INSERT INTO `transmog_items` (`entry`) VALUES('147089'); +INSERT INTO `transmog_items` (`entry`) VALUES('147090'); +INSERT INTO `transmog_items` (`entry`) VALUES('147092'); +INSERT INTO `transmog_items` (`entry`) VALUES('147093'); +INSERT INTO `transmog_items` (`entry`) VALUES('147094'); +INSERT INTO `transmog_items` (`entry`) VALUES('147095'); +INSERT INTO `transmog_items` (`entry`) VALUES('147096'); +INSERT INTO `transmog_items` (`entry`) VALUES('147097'); +INSERT INTO `transmog_items` (`entry`) VALUES('147098'); +INSERT INTO `transmog_items` (`entry`) VALUES('147099'); +INSERT INTO `transmog_items` (`entry`) VALUES('147104'); +INSERT INTO `transmog_items` (`entry`) VALUES('147106'); +INSERT INTO `transmog_items` (`entry`) VALUES('147107'); +INSERT INTO `transmog_items` (`entry`) VALUES('147108'); +INSERT INTO `transmog_items` (`entry`) VALUES('147109'); +INSERT INTO `transmog_items` (`entry`) VALUES('147111'); +INSERT INTO `transmog_items` (`entry`) VALUES('147112'); +INSERT INTO `transmog_items` (`entry`) VALUES('147113'); +INSERT INTO `transmog_items` (`entry`) VALUES('147121'); +INSERT INTO `transmog_items` (`entry`) VALUES('147126'); +INSERT INTO `transmog_items` (`entry`) VALUES('147129'); +INSERT INTO `transmog_items` (`entry`) VALUES('147132'); +INSERT INTO `transmog_items` (`entry`) VALUES('147140'); +INSERT INTO `transmog_items` (`entry`) VALUES('147141'); +INSERT INTO `transmog_items` (`entry`) VALUES('147142'); +INSERT INTO `transmog_items` (`entry`) VALUES('147143'); +INSERT INTO `transmog_items` (`entry`) VALUES('147145'); +INSERT INTO `transmog_items` (`entry`) VALUES('147147'); +INSERT INTO `transmog_items` (`entry`) VALUES('147150'); +INSERT INTO `transmog_items` (`entry`) VALUES('147151'); +INSERT INTO `transmog_items` (`entry`) VALUES('147152'); +INSERT INTO `transmog_items` (`entry`) VALUES('147153'); +INSERT INTO `transmog_items` (`entry`) VALUES('147154'); +INSERT INTO `transmog_items` (`entry`) VALUES('147155'); +INSERT INTO `transmog_items` (`entry`) VALUES('147170'); +INSERT INTO `transmog_items` (`entry`) VALUES('147171'); +INSERT INTO `transmog_items` (`entry`) VALUES('147172'); +INSERT INTO `transmog_items` (`entry`) VALUES('147173'); +INSERT INTO `transmog_items` (`entry`) VALUES('147174'); +INSERT INTO `transmog_items` (`entry`) VALUES('147175'); +INSERT INTO `transmog_items` (`entry`) VALUES('147176'); +INSERT INTO `transmog_items` (`entry`) VALUES('147177'); +INSERT INTO `transmog_items` (`entry`) VALUES('147178'); +INSERT INTO `transmog_items` (`entry`) VALUES('147181'); +INSERT INTO `transmog_items` (`entry`) VALUES('147183'); +INSERT INTO `transmog_items` (`entry`) VALUES('147184'); +INSERT INTO `transmog_items` (`entry`) VALUES('147185'); +INSERT INTO `transmog_items` (`entry`) VALUES('147186'); +INSERT INTO `transmog_items` (`entry`) VALUES('147187'); +INSERT INTO `transmog_items` (`entry`) VALUES('147189'); +INSERT INTO `transmog_items` (`entry`) VALUES('147190'); +INSERT INTO `transmog_items` (`entry`) VALUES('147191'); +INSERT INTO `transmog_items` (`entry`) VALUES('147192'); +INSERT INTO `transmog_items` (`entry`) VALUES('147193'); +INSERT INTO `transmog_items` (`entry`) VALUES('147194'); +INSERT INTO `transmog_items` (`entry`) VALUES('147195'); +INSERT INTO `transmog_items` (`entry`) VALUES('147197'); +INSERT INTO `transmog_items` (`entry`) VALUES('147199'); +INSERT INTO `transmog_items` (`entry`) VALUES('147201'); +INSERT INTO `transmog_items` (`entry`) VALUES('147202'); +INSERT INTO `transmog_items` (`entry`) VALUES('147203'); +INSERT INTO `transmog_items` (`entry`) VALUES('147204'); +INSERT INTO `transmog_items` (`entry`) VALUES('147205'); +INSERT INTO `transmog_items` (`entry`) VALUES('147206'); +INSERT INTO `transmog_items` (`entry`) VALUES('147207'); +INSERT INTO `transmog_items` (`entry`) VALUES('147208'); +INSERT INTO `transmog_items` (`entry`) VALUES('147209'); +INSERT INTO `transmog_items` (`entry`) VALUES('147210'); +INSERT INTO `transmog_items` (`entry`) VALUES('147211'); +INSERT INTO `transmog_items` (`entry`) VALUES('147212'); +INSERT INTO `transmog_items` (`entry`) VALUES('147217'); +INSERT INTO `transmog_items` (`entry`) VALUES('147218'); +INSERT INTO `transmog_items` (`entry`) VALUES('147220'); +INSERT INTO `transmog_items` (`entry`) VALUES('147221'); +INSERT INTO `transmog_items` (`entry`) VALUES('147225'); +INSERT INTO `transmog_items` (`entry`) VALUES('147226'); +INSERT INTO `transmog_items` (`entry`) VALUES('147227'); +INSERT INTO `transmog_items` (`entry`) VALUES('147228'); +INSERT INTO `transmog_items` (`entry`) VALUES('147229'); +INSERT INTO `transmog_items` (`entry`) VALUES('147230'); +INSERT INTO `transmog_items` (`entry`) VALUES('147231'); +INSERT INTO `transmog_items` (`entry`) VALUES('147232'); +INSERT INTO `transmog_items` (`entry`) VALUES('147233'); +INSERT INTO `transmog_items` (`entry`) VALUES('147234'); +INSERT INTO `transmog_items` (`entry`) VALUES('147235'); +INSERT INTO `transmog_items` (`entry`) VALUES('147236'); +INSERT INTO `transmog_items` (`entry`) VALUES('147238'); +INSERT INTO `transmog_items` (`entry`) VALUES('147239'); +INSERT INTO `transmog_items` (`entry`) VALUES('147240'); +INSERT INTO `transmog_items` (`entry`) VALUES('147244'); +INSERT INTO `transmog_items` (`entry`) VALUES('147245'); +INSERT INTO `transmog_items` (`entry`) VALUES('147248'); +INSERT INTO `transmog_items` (`entry`) VALUES('147249'); +INSERT INTO `transmog_items` (`entry`) VALUES('147250'); +INSERT INTO `transmog_items` (`entry`) VALUES('147251'); +INSERT INTO `transmog_items` (`entry`) VALUES('147253'); +INSERT INTO `transmog_items` (`entry`) VALUES('147254'); +INSERT INTO `transmog_items` (`entry`) VALUES('147255'); +INSERT INTO `transmog_items` (`entry`) VALUES('147256'); +INSERT INTO `transmog_items` (`entry`) VALUES('147257'); +INSERT INTO `transmog_items` (`entry`) VALUES('147258'); +INSERT INTO `transmog_items` (`entry`) VALUES('147259'); +INSERT INTO `transmog_items` (`entry`) VALUES('147260'); +INSERT INTO `transmog_items` (`entry`) VALUES('147261'); +INSERT INTO `transmog_items` (`entry`) VALUES('147262'); +INSERT INTO `transmog_items` (`entry`) VALUES('147263'); +INSERT INTO `transmog_items` (`entry`) VALUES('147264'); +INSERT INTO `transmog_items` (`entry`) VALUES('147265'); +INSERT INTO `transmog_items` (`entry`) VALUES('147267'); +INSERT INTO `transmog_items` (`entry`) VALUES('147268'); +INSERT INTO `transmog_items` (`entry`) VALUES('147269'); +INSERT INTO `transmog_items` (`entry`) VALUES('147270'); +INSERT INTO `transmog_items` (`entry`) VALUES('147273'); +INSERT INTO `transmog_items` (`entry`) VALUES('147274'); +INSERT INTO `transmog_items` (`entry`) VALUES('147275'); +INSERT INTO `transmog_items` (`entry`) VALUES('147277'); +INSERT INTO `transmog_items` (`entry`) VALUES('147279'); +INSERT INTO `transmog_items` (`entry`) VALUES('147280'); +INSERT INTO `transmog_items` (`entry`) VALUES('147281'); +INSERT INTO `transmog_items` (`entry`) VALUES('147283'); +INSERT INTO `transmog_items` (`entry`) VALUES('147284'); +INSERT INTO `transmog_items` (`entry`) VALUES('147285'); +INSERT INTO `transmog_items` (`entry`) VALUES('147286'); +INSERT INTO `transmog_items` (`entry`) VALUES('147287'); +INSERT INTO `transmog_items` (`entry`) VALUES('147288'); +INSERT INTO `transmog_items` (`entry`) VALUES('147289'); +INSERT INTO `transmog_items` (`entry`) VALUES('147291'); +INSERT INTO `transmog_items` (`entry`) VALUES('147292'); +INSERT INTO `transmog_items` (`entry`) VALUES('147293'); +INSERT INTO `transmog_items` (`entry`) VALUES('147294'); +INSERT INTO `transmog_items` (`entry`) VALUES('147295'); +INSERT INTO `transmog_items` (`entry`) VALUES('147296'); +INSERT INTO `transmog_items` (`entry`) VALUES('147298'); +INSERT INTO `transmog_items` (`entry`) VALUES('147299'); +INSERT INTO `transmog_items` (`entry`) VALUES('147300'); +INSERT INTO `transmog_items` (`entry`) VALUES('147301'); +INSERT INTO `transmog_items` (`entry`) VALUES('147304'); +INSERT INTO `transmog_items` (`entry`) VALUES('147306'); +INSERT INTO `transmog_items` (`entry`) VALUES('147308'); +INSERT INTO `transmog_items` (`entry`) VALUES('147310'); +INSERT INTO `transmog_items` (`entry`) VALUES('147311'); +INSERT INTO `transmog_items` (`entry`) VALUES('147312'); +INSERT INTO `transmog_items` (`entry`) VALUES('147313'); +INSERT INTO `transmog_items` (`entry`) VALUES('147317'); +INSERT INTO `transmog_items` (`entry`) VALUES('147318'); +INSERT INTO `transmog_items` (`entry`) VALUES('147319'); +INSERT INTO `transmog_items` (`entry`) VALUES('147320'); +INSERT INTO `transmog_items` (`entry`) VALUES('147321'); +INSERT INTO `transmog_items` (`entry`) VALUES('147322'); +INSERT INTO `transmog_items` (`entry`) VALUES('147323'); +INSERT INTO `transmog_items` (`entry`) VALUES('147324'); +INSERT INTO `transmog_items` (`entry`) VALUES('147325'); +INSERT INTO `transmog_items` (`entry`) VALUES('147326'); +INSERT INTO `transmog_items` (`entry`) VALUES('147328'); +INSERT INTO `transmog_items` (`entry`) VALUES('147329'); +INSERT INTO `transmog_items` (`entry`) VALUES('147330'); +INSERT INTO `transmog_items` (`entry`) VALUES('147412'); +INSERT INTO `transmog_items` (`entry`) VALUES('147414'); +INSERT INTO `transmog_items` (`entry`) VALUES('147415'); +INSERT INTO `transmog_items` (`entry`) VALUES('147416'); +INSERT INTO `transmog_items` (`entry`) VALUES('147417'); +INSERT INTO `transmog_items` (`entry`) VALUES('147418'); +INSERT INTO `transmog_items` (`entry`) VALUES('147419'); +INSERT INTO `transmog_items` (`entry`) VALUES('147420'); +INSERT INTO `transmog_items` (`entry`) VALUES('147421'); +INSERT INTO `transmog_items` (`entry`) VALUES('147422'); +INSERT INTO `transmog_items` (`entry`) VALUES('147423'); +INSERT INTO `transmog_items` (`entry`) VALUES('147424'); +INSERT INTO `transmog_items` (`entry`) VALUES('147425'); +INSERT INTO `transmog_items` (`entry`) VALUES('147426'); +INSERT INTO `transmog_items` (`entry`) VALUES('147428'); +INSERT INTO `transmog_items` (`entry`) VALUES('147429'); +INSERT INTO `transmog_items` (`entry`) VALUES('147430'); +INSERT INTO `transmog_items` (`entry`) VALUES('147431'); +INSERT INTO `transmog_items` (`entry`) VALUES('147434'); +INSERT INTO `transmog_items` (`entry`) VALUES('147435'); +INSERT INTO `transmog_items` (`entry`) VALUES('147436'); +INSERT INTO `transmog_items` (`entry`) VALUES('147438'); +INSERT INTO `transmog_items` (`entry`) VALUES('147440'); +INSERT INTO `transmog_items` (`entry`) VALUES('147441'); +INSERT INTO `transmog_items` (`entry`) VALUES('147442'); +INSERT INTO `transmog_items` (`entry`) VALUES('147444'); +INSERT INTO `transmog_items` (`entry`) VALUES('147445'); +INSERT INTO `transmog_items` (`entry`) VALUES('147446'); +INSERT INTO `transmog_items` (`entry`) VALUES('147447'); +INSERT INTO `transmog_items` (`entry`) VALUES('147448'); +INSERT INTO `transmog_items` (`entry`) VALUES('147449'); +INSERT INTO `transmog_items` (`entry`) VALUES('147450'); +INSERT INTO `transmog_items` (`entry`) VALUES('147452'); +INSERT INTO `transmog_items` (`entry`) VALUES('147453'); +INSERT INTO `transmog_items` (`entry`) VALUES('147454'); +INSERT INTO `transmog_items` (`entry`) VALUES('147455'); +INSERT INTO `transmog_items` (`entry`) VALUES('147456'); +INSERT INTO `transmog_items` (`entry`) VALUES('147457'); +INSERT INTO `transmog_items` (`entry`) VALUES('147459'); +INSERT INTO `transmog_items` (`entry`) VALUES('147460'); +INSERT INTO `transmog_items` (`entry`) VALUES('147461'); +INSERT INTO `transmog_items` (`entry`) VALUES('147462'); +INSERT INTO `transmog_items` (`entry`) VALUES('147465'); +INSERT INTO `transmog_items` (`entry`) VALUES('147467'); +INSERT INTO `transmog_items` (`entry`) VALUES('147469'); +INSERT INTO `transmog_items` (`entry`) VALUES('147471'); +INSERT INTO `transmog_items` (`entry`) VALUES('147472'); +INSERT INTO `transmog_items` (`entry`) VALUES('147473'); +INSERT INTO `transmog_items` (`entry`) VALUES('147474'); +INSERT INTO `transmog_items` (`entry`) VALUES('147478'); +INSERT INTO `transmog_items` (`entry`) VALUES('147479'); +INSERT INTO `transmog_items` (`entry`) VALUES('147480'); +INSERT INTO `transmog_items` (`entry`) VALUES('147481'); +INSERT INTO `transmog_items` (`entry`) VALUES('147482'); +INSERT INTO `transmog_items` (`entry`) VALUES('147483'); +INSERT INTO `transmog_items` (`entry`) VALUES('147484'); +INSERT INTO `transmog_items` (`entry`) VALUES('147485'); +INSERT INTO `transmog_items` (`entry`) VALUES('147486'); +INSERT INTO `transmog_items` (`entry`) VALUES('147487'); +INSERT INTO `transmog_items` (`entry`) VALUES('147490'); +INSERT INTO `transmog_items` (`entry`) VALUES('147491'); +INSERT INTO `transmog_items` (`entry`) VALUES('147492'); +INSERT INTO `transmog_items` (`entry`) VALUES('147493'); +INSERT INTO `transmog_items` (`entry`) VALUES('147495'); +INSERT INTO `transmog_items` (`entry`) VALUES('147496'); +INSERT INTO `transmog_items` (`entry`) VALUES('147497'); +INSERT INTO `transmog_items` (`entry`) VALUES('147498'); +INSERT INTO `transmog_items` (`entry`) VALUES('147501'); +INSERT INTO `transmog_items` (`entry`) VALUES('147502'); +INSERT INTO `transmog_items` (`entry`) VALUES('147503'); +INSERT INTO `transmog_items` (`entry`) VALUES('147504'); +INSERT INTO `transmog_items` (`entry`) VALUES('147508'); +INSERT INTO `transmog_items` (`entry`) VALUES('147509'); +INSERT INTO `transmog_items` (`entry`) VALUES('147510'); +INSERT INTO `transmog_items` (`entry`) VALUES('147511'); +INSERT INTO `transmog_items` (`entry`) VALUES('147514'); +INSERT INTO `transmog_items` (`entry`) VALUES('147521'); +INSERT INTO `transmog_items` (`entry`) VALUES('147522'); +INSERT INTO `transmog_items` (`entry`) VALUES('147523'); +INSERT INTO `transmog_items` (`entry`) VALUES('147526'); +INSERT INTO `transmog_items` (`entry`) VALUES('147527'); +INSERT INTO `transmog_items` (`entry`) VALUES('147528'); +INSERT INTO `transmog_items` (`entry`) VALUES('147529'); +INSERT INTO `transmog_items` (`entry`) VALUES('147545'); +INSERT INTO `transmog_items` (`entry`) VALUES('147546'); +INSERT INTO `transmog_items` (`entry`) VALUES('147547'); +INSERT INTO `transmog_items` (`entry`) VALUES('147548'); +INSERT INTO `transmog_items` (`entry`) VALUES('147549'); +INSERT INTO `transmog_items` (`entry`) VALUES('147550'); +INSERT INTO `transmog_items` (`entry`) VALUES('147551'); +INSERT INTO `transmog_items` (`entry`) VALUES('147552'); +INSERT INTO `transmog_items` (`entry`) VALUES('147553'); +INSERT INTO `transmog_items` (`entry`) VALUES('147554'); +INSERT INTO `transmog_items` (`entry`) VALUES('147560'); +INSERT INTO `transmog_items` (`entry`) VALUES('147561'); +INSERT INTO `transmog_items` (`entry`) VALUES('147563'); +INSERT INTO `transmog_items` (`entry`) VALUES('147564'); +INSERT INTO `transmog_items` (`entry`) VALUES('147565'); +INSERT INTO `transmog_items` (`entry`) VALUES('147567'); +INSERT INTO `transmog_items` (`entry`) VALUES('147568'); +INSERT INTO `transmog_items` (`entry`) VALUES('147569'); +INSERT INTO `transmog_items` (`entry`) VALUES('147570'); +INSERT INTO `transmog_items` (`entry`) VALUES('147571'); +INSERT INTO `transmog_items` (`entry`) VALUES('147572'); +INSERT INTO `transmog_items` (`entry`) VALUES('147573'); +INSERT INTO `transmog_items` (`entry`) VALUES('147574'); +INSERT INTO `transmog_items` (`entry`) VALUES('147575'); +INSERT INTO `transmog_items` (`entry`) VALUES('147576'); +INSERT INTO `transmog_items` (`entry`) VALUES('147577'); +INSERT INTO `transmog_items` (`entry`) VALUES('147579'); +INSERT INTO `transmog_items` (`entry`) VALUES('147580'); +INSERT INTO `transmog_items` (`entry`) VALUES('147581'); +INSERT INTO `transmog_items` (`entry`) VALUES('147582'); +INSERT INTO `transmog_items` (`entry`) VALUES('147583'); +INSERT INTO `transmog_items` (`entry`) VALUES('147584'); +INSERT INTO `transmog_items` (`entry`) VALUES('147585'); +INSERT INTO `transmog_items` (`entry`) VALUES('147586'); +INSERT INTO `transmog_items` (`entry`) VALUES('147587'); +INSERT INTO `transmog_items` (`entry`) VALUES('147588'); +INSERT INTO `transmog_items` (`entry`) VALUES('147589'); +INSERT INTO `transmog_items` (`entry`) VALUES('147590'); +INSERT INTO `transmog_items` (`entry`) VALUES('147591'); +INSERT INTO `transmog_items` (`entry`) VALUES('147592'); +INSERT INTO `transmog_items` (`entry`) VALUES('147593'); +INSERT INTO `transmog_items` (`entry`) VALUES('147594'); +INSERT INTO `transmog_items` (`entry`) VALUES('147595'); +INSERT INTO `transmog_items` (`entry`) VALUES('147596'); +INSERT INTO `transmog_items` (`entry`) VALUES('147597'); +INSERT INTO `transmog_items` (`entry`) VALUES('147598'); +INSERT INTO `transmog_items` (`entry`) VALUES('147599'); +INSERT INTO `transmog_items` (`entry`) VALUES('147600'); +INSERT INTO `transmog_items` (`entry`) VALUES('147601'); +INSERT INTO `transmog_items` (`entry`) VALUES('147602'); +INSERT INTO `transmog_items` (`entry`) VALUES('147603'); +INSERT INTO `transmog_items` (`entry`) VALUES('147604'); +INSERT INTO `transmog_items` (`entry`) VALUES('147605'); +INSERT INTO `transmog_items` (`entry`) VALUES('147606'); +INSERT INTO `transmog_items` (`entry`) VALUES('147608'); +INSERT INTO `transmog_items` (`entry`) VALUES('147609'); +INSERT INTO `transmog_items` (`entry`) VALUES('147610'); +INSERT INTO `transmog_items` (`entry`) VALUES('147611'); +INSERT INTO `transmog_items` (`entry`) VALUES('147612'); +INSERT INTO `transmog_items` (`entry`) VALUES('147613'); +INSERT INTO `transmog_items` (`entry`) VALUES('147614'); +INSERT INTO `transmog_items` (`entry`) VALUES('147615'); +INSERT INTO `transmog_items` (`entry`) VALUES('147616'); +INSERT INTO `transmog_items` (`entry`) VALUES('147617'); +INSERT INTO `transmog_items` (`entry`) VALUES('147620'); +INSERT INTO `transmog_items` (`entry`) VALUES('147621'); +INSERT INTO `transmog_items` (`entry`) VALUES('147658'); +INSERT INTO `transmog_items` (`entry`) VALUES('147659'); +INSERT INTO `transmog_items` (`entry`) VALUES('147660'); +INSERT INTO `transmog_items` (`entry`) VALUES('147663'); +INSERT INTO `transmog_items` (`entry`) VALUES('147669'); +INSERT INTO `transmog_items` (`entry`) VALUES('147674'); +INSERT INTO `transmog_items` (`entry`) VALUES('147675'); +INSERT INTO `transmog_items` (`entry`) VALUES('147676'); +INSERT INTO `transmog_items` (`entry`) VALUES('147677'); +INSERT INTO `transmog_items` (`entry`) VALUES('147678'); +INSERT INTO `transmog_items` (`entry`) VALUES('147680'); +INSERT INTO `transmog_items` (`entry`) VALUES('147681'); +INSERT INTO `transmog_items` (`entry`) VALUES('147682'); +INSERT INTO `transmog_items` (`entry`) VALUES('147683'); +INSERT INTO `transmog_items` (`entry`) VALUES('147684'); +INSERT INTO `transmog_items` (`entry`) VALUES('147685'); +INSERT INTO `transmog_items` (`entry`) VALUES('147686'); +INSERT INTO `transmog_items` (`entry`) VALUES('147687'); +INSERT INTO `transmog_items` (`entry`) VALUES('147688'); +INSERT INTO `transmog_items` (`entry`) VALUES('147689'); +INSERT INTO `transmog_items` (`entry`) VALUES('147690'); +INSERT INTO `transmog_items` (`entry`) VALUES('147691'); +INSERT INTO `transmog_items` (`entry`) VALUES('147692'); +INSERT INTO `transmog_items` (`entry`) VALUES('147693'); +INSERT INTO `transmog_items` (`entry`) VALUES('147694'); +INSERT INTO `transmog_items` (`entry`) VALUES('147695'); +INSERT INTO `transmog_items` (`entry`) VALUES('147696'); +INSERT INTO `transmog_items` (`entry`) VALUES('147697'); +INSERT INTO `transmog_items` (`entry`) VALUES('147698'); +INSERT INTO `transmog_items` (`entry`) VALUES('147699'); +INSERT INTO `transmog_items` (`entry`) VALUES('147701'); +INSERT INTO `transmog_items` (`entry`) VALUES('147702'); +INSERT INTO `transmog_items` (`entry`) VALUES('147704'); +INSERT INTO `transmog_items` (`entry`) VALUES('147705'); +INSERT INTO `transmog_items` (`entry`) VALUES('147706'); +INSERT INTO `transmog_items` (`entry`) VALUES('147707'); +INSERT INTO `transmog_items` (`entry`) VALUES('147708'); +INSERT INTO `transmog_items` (`entry`) VALUES('147709'); +INSERT INTO `transmog_items` (`entry`) VALUES('147710'); +INSERT INTO `transmog_items` (`entry`) VALUES('147711'); +INSERT INTO `transmog_items` (`entry`) VALUES('147712'); +INSERT INTO `transmog_items` (`entry`) VALUES('147713'); +INSERT INTO `transmog_items` (`entry`) VALUES('147714'); +INSERT INTO `transmog_items` (`entry`) VALUES('147715'); +INSERT INTO `transmog_items` (`entry`) VALUES('147716'); +INSERT INTO `transmog_items` (`entry`) VALUES('147717'); +INSERT INTO `transmog_items` (`entry`) VALUES('147718'); +INSERT INTO `transmog_items` (`entry`) VALUES('147719'); +INSERT INTO `transmog_items` (`entry`) VALUES('147720'); +INSERT INTO `transmog_items` (`entry`) VALUES('147721'); +INSERT INTO `transmog_items` (`entry`) VALUES('147724'); +INSERT INTO `transmog_items` (`entry`) VALUES('147736'); +INSERT INTO `transmog_items` (`entry`) VALUES('147738'); +INSERT INTO `transmog_items` (`entry`) VALUES('147739'); +INSERT INTO `transmog_items` (`entry`) VALUES('147740'); +INSERT INTO `transmog_items` (`entry`) VALUES('147741'); +INSERT INTO `transmog_items` (`entry`) VALUES('147744'); +INSERT INTO `transmog_items` (`entry`) VALUES('147745'); +INSERT INTO `transmog_items` (`entry`) VALUES('147746'); +INSERT INTO `transmog_items` (`entry`) VALUES('147748'); +INSERT INTO `transmog_items` (`entry`) VALUES('147749'); +INSERT INTO `transmog_items` (`entry`) VALUES('147750'); +INSERT INTO `transmog_items` (`entry`) VALUES('147751'); +INSERT INTO `transmog_items` (`entry`) VALUES('147752'); +INSERT INTO `transmog_items` (`entry`) VALUES('147753'); +INSERT INTO `transmog_items` (`entry`) VALUES('147754'); +INSERT INTO `transmog_items` (`entry`) VALUES('147755'); +INSERT INTO `transmog_items` (`entry`) VALUES('147756'); +INSERT INTO `transmog_items` (`entry`) VALUES('147757'); +INSERT INTO `transmog_items` (`entry`) VALUES('147758'); +INSERT INTO `transmog_items` (`entry`) VALUES('147759'); +INSERT INTO `transmog_items` (`entry`) VALUES('147760'); +INSERT INTO `transmog_items` (`entry`) VALUES('147761'); +INSERT INTO `transmog_items` (`entry`) VALUES('147762'); +INSERT INTO `transmog_items` (`entry`) VALUES('147763'); +INSERT INTO `transmog_items` (`entry`) VALUES('147764'); +INSERT INTO `transmog_items` (`entry`) VALUES('147765'); +INSERT INTO `transmog_items` (`entry`) VALUES('147766'); +INSERT INTO `transmog_items` (`entry`) VALUES('147767'); +INSERT INTO `transmog_items` (`entry`) VALUES('147768'); +INSERT INTO `transmog_items` (`entry`) VALUES('147769'); +INSERT INTO `transmog_items` (`entry`) VALUES('147770'); +INSERT INTO `transmog_items` (`entry`) VALUES('147771'); +INSERT INTO `transmog_items` (`entry`) VALUES('147772'); +INSERT INTO `transmog_items` (`entry`) VALUES('147773'); +INSERT INTO `transmog_items` (`entry`) VALUES('147774'); +INSERT INTO `transmog_items` (`entry`) VALUES('147775'); +INSERT INTO `transmog_items` (`entry`) VALUES('147776'); +INSERT INTO `transmog_items` (`entry`) VALUES('147777'); +INSERT INTO `transmog_items` (`entry`) VALUES('147778'); +INSERT INTO `transmog_items` (`entry`) VALUES('147779'); +INSERT INTO `transmog_items` (`entry`) VALUES('147780'); +INSERT INTO `transmog_items` (`entry`) VALUES('147781'); +INSERT INTO `transmog_items` (`entry`) VALUES('147782'); +INSERT INTO `transmog_items` (`entry`) VALUES('147783'); +INSERT INTO `transmog_items` (`entry`) VALUES('147784'); +INSERT INTO `transmog_items` (`entry`) VALUES('147785'); +INSERT INTO `transmog_items` (`entry`) VALUES('147786'); +INSERT INTO `transmog_items` (`entry`) VALUES('147787'); +INSERT INTO `transmog_items` (`entry`) VALUES('147788'); +INSERT INTO `transmog_items` (`entry`) VALUES('147789'); +INSERT INTO `transmog_items` (`entry`) VALUES('147790'); +INSERT INTO `transmog_items` (`entry`) VALUES('147791'); +INSERT INTO `transmog_items` (`entry`) VALUES('147792'); +INSERT INTO `transmog_items` (`entry`) VALUES('147793'); +INSERT INTO `transmog_items` (`entry`) VALUES('147794'); +INSERT INTO `transmog_items` (`entry`) VALUES('147795'); +INSERT INTO `transmog_items` (`entry`) VALUES('147796'); +INSERT INTO `transmog_items` (`entry`) VALUES('147797'); +INSERT INTO `transmog_items` (`entry`) VALUES('147798'); +INSERT INTO `transmog_items` (`entry`) VALUES('147799'); +INSERT INTO `transmog_items` (`entry`) VALUES('147800'); +INSERT INTO `transmog_items` (`entry`) VALUES('147801'); +INSERT INTO `transmog_items` (`entry`) VALUES('147802'); +INSERT INTO `transmog_items` (`entry`) VALUES('147803'); +INSERT INTO `transmog_items` (`entry`) VALUES('147804'); +INSERT INTO `transmog_items` (`entry`) VALUES('147805'); +INSERT INTO `transmog_items` (`entry`) VALUES('147806'); +INSERT INTO `transmog_items` (`entry`) VALUES('147807'); +INSERT INTO `transmog_items` (`entry`) VALUES('147809'); +INSERT INTO `transmog_items` (`entry`) VALUES('147811'); +INSERT INTO `transmog_items` (`entry`) VALUES('147812'); +INSERT INTO `transmog_items` (`entry`) VALUES('147813'); +INSERT INTO `transmog_items` (`entry`) VALUES('147816'); +INSERT INTO `transmog_items` (`entry`) VALUES('147829'); +INSERT INTO `transmog_items` (`entry`) VALUES('147830'); +INSERT INTO `transmog_items` (`entry`) VALUES('147832'); +INSERT INTO `transmog_items` (`entry`) VALUES('147834'); +INSERT INTO `transmog_items` (`entry`) VALUES('147835'); +INSERT INTO `transmog_items` (`entry`) VALUES('147836'); +INSERT INTO `transmog_items` (`entry`) VALUES('147837'); +INSERT INTO `transmog_items` (`entry`) VALUES('147838'); +INSERT INTO `transmog_items` (`entry`) VALUES('147850'); +INSERT INTO `transmog_items` (`entry`) VALUES('147851'); +INSERT INTO `transmog_items` (`entry`) VALUES('147852'); +INSERT INTO `transmog_items` (`entry`) VALUES('147853'); +INSERT INTO `transmog_items` (`entry`) VALUES('147855'); +INSERT INTO `transmog_items` (`entry`) VALUES('147856'); +INSERT INTO `transmog_items` (`entry`) VALUES('147857'); +INSERT INTO `transmog_items` (`entry`) VALUES('147858'); +INSERT INTO `transmog_items` (`entry`) VALUES('147859'); +INSERT INTO `transmog_items` (`entry`) VALUES('147860'); +INSERT INTO `transmog_items` (`entry`) VALUES('147861'); +INSERT INTO `transmog_items` (`entry`) VALUES('147863'); +INSERT INTO `transmog_items` (`entry`) VALUES('147865'); +INSERT INTO `transmog_items` (`entry`) VALUES('147866'); +INSERT INTO `transmog_items` (`entry`) VALUES('147867'); +INSERT INTO `transmog_items` (`entry`) VALUES('147869'); +INSERT INTO `transmog_items` (`entry`) VALUES('147870'); +INSERT INTO `transmog_items` (`entry`) VALUES('147871'); +INSERT INTO `transmog_items` (`entry`) VALUES('147873'); +INSERT INTO `transmog_items` (`entry`) VALUES('147874'); +INSERT INTO `transmog_items` (`entry`) VALUES('147875'); +INSERT INTO `transmog_items` (`entry`) VALUES('147876'); +INSERT INTO `transmog_items` (`entry`) VALUES('147877'); +INSERT INTO `transmog_items` (`entry`) VALUES('147878'); +INSERT INTO `transmog_items` (`entry`) VALUES('147883'); +INSERT INTO `transmog_items` (`entry`) VALUES('147885'); +INSERT INTO `transmog_items` (`entry`) VALUES('147886'); +INSERT INTO `transmog_items` (`entry`) VALUES('147887'); +INSERT INTO `transmog_items` (`entry`) VALUES('147889'); +INSERT INTO `transmog_items` (`entry`) VALUES('147891'); +INSERT INTO `transmog_items` (`entry`) VALUES('147893'); +INSERT INTO `transmog_items` (`entry`) VALUES('147894'); +INSERT INTO `transmog_items` (`entry`) VALUES('147895'); +INSERT INTO `transmog_items` (`entry`) VALUES('147896'); +INSERT INTO `transmog_items` (`entry`) VALUES('147897'); +INSERT INTO `transmog_items` (`entry`) VALUES('147901'); +INSERT INTO `transmog_items` (`entry`) VALUES('147902'); +INSERT INTO `transmog_items` (`entry`) VALUES('147904'); +INSERT INTO `transmog_items` (`entry`) VALUES('147905'); +INSERT INTO `transmog_items` (`entry`) VALUES('147906'); +INSERT INTO `transmog_items` (`entry`) VALUES('147907'); +INSERT INTO `transmog_items` (`entry`) VALUES('147908'); +INSERT INTO `transmog_items` (`entry`) VALUES('147909'); +INSERT INTO `transmog_items` (`entry`) VALUES('147910'); +INSERT INTO `transmog_items` (`entry`) VALUES('147911'); +INSERT INTO `transmog_items` (`entry`) VALUES('147914'); +INSERT INTO `transmog_items` (`entry`) VALUES('147916'); +INSERT INTO `transmog_items` (`entry`) VALUES('147917'); +INSERT INTO `transmog_items` (`entry`) VALUES('147918'); +INSERT INTO `transmog_items` (`entry`) VALUES('147919'); +INSERT INTO `transmog_items` (`entry`) VALUES('147921'); +INSERT INTO `transmog_items` (`entry`) VALUES('147922'); +INSERT INTO `transmog_items` (`entry`) VALUES('147923'); +INSERT INTO `transmog_items` (`entry`) VALUES('147924'); +INSERT INTO `transmog_items` (`entry`) VALUES('147925'); +INSERT INTO `transmog_items` (`entry`) VALUES('147926'); +INSERT INTO `transmog_items` (`entry`) VALUES('147927'); +INSERT INTO `transmog_items` (`entry`) VALUES('147929'); +INSERT INTO `transmog_items` (`entry`) VALUES('147931'); +INSERT INTO `transmog_items` (`entry`) VALUES('147932'); +INSERT INTO `transmog_items` (`entry`) VALUES('147933'); +INSERT INTO `transmog_items` (`entry`) VALUES('147935'); +INSERT INTO `transmog_items` (`entry`) VALUES('147936'); +INSERT INTO `transmog_items` (`entry`) VALUES('147937'); +INSERT INTO `transmog_items` (`entry`) VALUES('147938'); +INSERT INTO `transmog_items` (`entry`) VALUES('147940'); +INSERT INTO `transmog_items` (`entry`) VALUES('147941'); +INSERT INTO `transmog_items` (`entry`) VALUES('147942'); +INSERT INTO `transmog_items` (`entry`) VALUES('147943'); +INSERT INTO `transmog_items` (`entry`) VALUES('147944'); +INSERT INTO `transmog_items` (`entry`) VALUES('147945'); +INSERT INTO `transmog_items` (`entry`) VALUES('147950'); +INSERT INTO `transmog_items` (`entry`) VALUES('147952'); +INSERT INTO `transmog_items` (`entry`) VALUES('147953'); +INSERT INTO `transmog_items` (`entry`) VALUES('147954'); +INSERT INTO `transmog_items` (`entry`) VALUES('147956'); +INSERT INTO `transmog_items` (`entry`) VALUES('147959'); +INSERT INTO `transmog_items` (`entry`) VALUES('147961'); +INSERT INTO `transmog_items` (`entry`) VALUES('147962'); +INSERT INTO `transmog_items` (`entry`) VALUES('147963'); +INSERT INTO `transmog_items` (`entry`) VALUES('147964'); +INSERT INTO `transmog_items` (`entry`) VALUES('147965'); +INSERT INTO `transmog_items` (`entry`) VALUES('147969'); +INSERT INTO `transmog_items` (`entry`) VALUES('147970'); +INSERT INTO `transmog_items` (`entry`) VALUES('147972'); +INSERT INTO `transmog_items` (`entry`) VALUES('147973'); +INSERT INTO `transmog_items` (`entry`) VALUES('147974'); +INSERT INTO `transmog_items` (`entry`) VALUES('147975'); +INSERT INTO `transmog_items` (`entry`) VALUES('147976'); +INSERT INTO `transmog_items` (`entry`) VALUES('147977'); +INSERT INTO `transmog_items` (`entry`) VALUES('147978'); +INSERT INTO `transmog_items` (`entry`) VALUES('147979'); +INSERT INTO `transmog_items` (`entry`) VALUES('147980'); +INSERT INTO `transmog_items` (`entry`) VALUES('147981'); +INSERT INTO `transmog_items` (`entry`) VALUES('147982'); +INSERT INTO `transmog_items` (`entry`) VALUES('147983'); +INSERT INTO `transmog_items` (`entry`) VALUES('147984'); +INSERT INTO `transmog_items` (`entry`) VALUES('147985'); +INSERT INTO `transmog_items` (`entry`) VALUES('147986'); +INSERT INTO `transmog_items` (`entry`) VALUES('147987'); +INSERT INTO `transmog_items` (`entry`) VALUES('147989'); +INSERT INTO `transmog_items` (`entry`) VALUES('147990'); +INSERT INTO `transmog_items` (`entry`) VALUES('147991'); +INSERT INTO `transmog_items` (`entry`) VALUES('147992'); +INSERT INTO `transmog_items` (`entry`) VALUES('147994'); +INSERT INTO `transmog_items` (`entry`) VALUES('147995'); +INSERT INTO `transmog_items` (`entry`) VALUES('147996'); +INSERT INTO `transmog_items` (`entry`) VALUES('147997'); +INSERT INTO `transmog_items` (`entry`) VALUES('147998'); +INSERT INTO `transmog_items` (`entry`) VALUES('147999'); +INSERT INTO `transmog_items` (`entry`) VALUES('148000'); +INSERT INTO `transmog_items` (`entry`) VALUES('148002'); +INSERT INTO `transmog_items` (`entry`) VALUES('148004'); +INSERT INTO `transmog_items` (`entry`) VALUES('148005'); +INSERT INTO `transmog_items` (`entry`) VALUES('148006'); +INSERT INTO `transmog_items` (`entry`) VALUES('148008'); +INSERT INTO `transmog_items` (`entry`) VALUES('148009'); +INSERT INTO `transmog_items` (`entry`) VALUES('148010'); +INSERT INTO `transmog_items` (`entry`) VALUES('148012'); +INSERT INTO `transmog_items` (`entry`) VALUES('148013'); +INSERT INTO `transmog_items` (`entry`) VALUES('148014'); +INSERT INTO `transmog_items` (`entry`) VALUES('148015'); +INSERT INTO `transmog_items` (`entry`) VALUES('148016'); +INSERT INTO `transmog_items` (`entry`) VALUES('148017'); +INSERT INTO `transmog_items` (`entry`) VALUES('148022'); +INSERT INTO `transmog_items` (`entry`) VALUES('148024'); +INSERT INTO `transmog_items` (`entry`) VALUES('148025'); +INSERT INTO `transmog_items` (`entry`) VALUES('148026'); +INSERT INTO `transmog_items` (`entry`) VALUES('148028'); +INSERT INTO `transmog_items` (`entry`) VALUES('148029'); +INSERT INTO `transmog_items` (`entry`) VALUES('148031'); +INSERT INTO `transmog_items` (`entry`) VALUES('148033'); +INSERT INTO `transmog_items` (`entry`) VALUES('148034'); +INSERT INTO `transmog_items` (`entry`) VALUES('148035'); +INSERT INTO `transmog_items` (`entry`) VALUES('148037'); +INSERT INTO `transmog_items` (`entry`) VALUES('148038'); +INSERT INTO `transmog_items` (`entry`) VALUES('148039'); +INSERT INTO `transmog_items` (`entry`) VALUES('148040'); +INSERT INTO `transmog_items` (`entry`) VALUES('148041'); +INSERT INTO `transmog_items` (`entry`) VALUES('148042'); +INSERT INTO `transmog_items` (`entry`) VALUES('148046'); +INSERT INTO `transmog_items` (`entry`) VALUES('148047'); +INSERT INTO `transmog_items` (`entry`) VALUES('148049'); +INSERT INTO `transmog_items` (`entry`) VALUES('148050'); +INSERT INTO `transmog_items` (`entry`) VALUES('148051'); +INSERT INTO `transmog_items` (`entry`) VALUES('148052'); +INSERT INTO `transmog_items` (`entry`) VALUES('148053'); +INSERT INTO `transmog_items` (`entry`) VALUES('148054'); +INSERT INTO `transmog_items` (`entry`) VALUES('148055'); +INSERT INTO `transmog_items` (`entry`) VALUES('148056'); +INSERT INTO `transmog_items` (`entry`) VALUES('148057'); +INSERT INTO `transmog_items` (`entry`) VALUES('148058'); +INSERT INTO `transmog_items` (`entry`) VALUES('148059'); +INSERT INTO `transmog_items` (`entry`) VALUES('148060'); +INSERT INTO `transmog_items` (`entry`) VALUES('148061'); +INSERT INTO `transmog_items` (`entry`) VALUES('148062'); +INSERT INTO `transmog_items` (`entry`) VALUES('148063'); +INSERT INTO `transmog_items` (`entry`) VALUES('148064'); +INSERT INTO `transmog_items` (`entry`) VALUES('148065'); +INSERT INTO `transmog_items` (`entry`) VALUES('148066'); +INSERT INTO `transmog_items` (`entry`) VALUES('148067'); +INSERT INTO `transmog_items` (`entry`) VALUES('148068'); +INSERT INTO `transmog_items` (`entry`) VALUES('148069'); +INSERT INTO `transmog_items` (`entry`) VALUES('148070'); +INSERT INTO `transmog_items` (`entry`) VALUES('148071'); +INSERT INTO `transmog_items` (`entry`) VALUES('148072'); +INSERT INTO `transmog_items` (`entry`) VALUES('148073'); +INSERT INTO `transmog_items` (`entry`) VALUES('148074'); +INSERT INTO `transmog_items` (`entry`) VALUES('148075'); +INSERT INTO `transmog_items` (`entry`) VALUES('148076'); +INSERT INTO `transmog_items` (`entry`) VALUES('148077'); +INSERT INTO `transmog_items` (`entry`) VALUES('148078'); +INSERT INTO `transmog_items` (`entry`) VALUES('148079'); +INSERT INTO `transmog_items` (`entry`) VALUES('148080'); +INSERT INTO `transmog_items` (`entry`) VALUES('148081'); +INSERT INTO `transmog_items` (`entry`) VALUES('148082'); +INSERT INTO `transmog_items` (`entry`) VALUES('148083'); +INSERT INTO `transmog_items` (`entry`) VALUES('148084'); +INSERT INTO `transmog_items` (`entry`) VALUES('148085'); +INSERT INTO `transmog_items` (`entry`) VALUES('148086'); +INSERT INTO `transmog_items` (`entry`) VALUES('148087'); +INSERT INTO `transmog_items` (`entry`) VALUES('148088'); +INSERT INTO `transmog_items` (`entry`) VALUES('148089'); +INSERT INTO `transmog_items` (`entry`) VALUES('148090'); +INSERT INTO `transmog_items` (`entry`) VALUES('148091'); +INSERT INTO `transmog_items` (`entry`) VALUES('148092'); +INSERT INTO `transmog_items` (`entry`) VALUES('148093'); +INSERT INTO `transmog_items` (`entry`) VALUES('148094'); +INSERT INTO `transmog_items` (`entry`) VALUES('148095'); +INSERT INTO `transmog_items` (`entry`) VALUES('148096'); +INSERT INTO `transmog_items` (`entry`) VALUES('148097'); +INSERT INTO `transmog_items` (`entry`) VALUES('148098'); +INSERT INTO `transmog_items` (`entry`) VALUES('148099'); +INSERT INTO `transmog_items` (`entry`) VALUES('148100'); +INSERT INTO `transmog_items` (`entry`) VALUES('148101'); +INSERT INTO `transmog_items` (`entry`) VALUES('148102'); +INSERT INTO `transmog_items` (`entry`) VALUES('148129'); +INSERT INTO `transmog_items` (`entry`) VALUES('148130'); +INSERT INTO `transmog_items` (`entry`) VALUES('148131'); +INSERT INTO `transmog_items` (`entry`) VALUES('148132'); +INSERT INTO `transmog_items` (`entry`) VALUES('148133'); +INSERT INTO `transmog_items` (`entry`) VALUES('148134'); +INSERT INTO `transmog_items` (`entry`) VALUES('148135'); +INSERT INTO `transmog_items` (`entry`) VALUES('148136'); +INSERT INTO `transmog_items` (`entry`) VALUES('148137'); +INSERT INTO `transmog_items` (`entry`) VALUES('148138'); +INSERT INTO `transmog_items` (`entry`) VALUES('148139'); +INSERT INTO `transmog_items` (`entry`) VALUES('148140'); +INSERT INTO `transmog_items` (`entry`) VALUES('148141'); +INSERT INTO `transmog_items` (`entry`) VALUES('148142'); +INSERT INTO `transmog_items` (`entry`) VALUES('148143'); +INSERT INTO `transmog_items` (`entry`) VALUES('148144'); +INSERT INTO `transmog_items` (`entry`) VALUES('148145'); +INSERT INTO `transmog_items` (`entry`) VALUES('148146'); +INSERT INTO `transmog_items` (`entry`) VALUES('148147'); +INSERT INTO `transmog_items` (`entry`) VALUES('148148'); +INSERT INTO `transmog_items` (`entry`) VALUES('148149'); +INSERT INTO `transmog_items` (`entry`) VALUES('148150'); +INSERT INTO `transmog_items` (`entry`) VALUES('148151'); +INSERT INTO `transmog_items` (`entry`) VALUES('148152'); +INSERT INTO `transmog_items` (`entry`) VALUES('148153'); +INSERT INTO `transmog_items` (`entry`) VALUES('148154'); +INSERT INTO `transmog_items` (`entry`) VALUES('148155'); +INSERT INTO `transmog_items` (`entry`) VALUES('148156'); +INSERT INTO `transmog_items` (`entry`) VALUES('148157'); +INSERT INTO `transmog_items` (`entry`) VALUES('148158'); +INSERT INTO `transmog_items` (`entry`) VALUES('148159'); +INSERT INTO `transmog_items` (`entry`) VALUES('148160'); +INSERT INTO `transmog_items` (`entry`) VALUES('148161'); +INSERT INTO `transmog_items` (`entry`) VALUES('148162'); +INSERT INTO `transmog_items` (`entry`) VALUES('148163'); +INSERT INTO `transmog_items` (`entry`) VALUES('148164'); +INSERT INTO `transmog_items` (`entry`) VALUES('148165'); +INSERT INTO `transmog_items` (`entry`) VALUES('148166'); +INSERT INTO `transmog_items` (`entry`) VALUES('148167'); +INSERT INTO `transmog_items` (`entry`) VALUES('148168'); +INSERT INTO `transmog_items` (`entry`) VALUES('148169'); +INSERT INTO `transmog_items` (`entry`) VALUES('148170'); +INSERT INTO `transmog_items` (`entry`) VALUES('148171'); +INSERT INTO `transmog_items` (`entry`) VALUES('148172'); +INSERT INTO `transmog_items` (`entry`) VALUES('148173'); +INSERT INTO `transmog_items` (`entry`) VALUES('148174'); +INSERT INTO `transmog_items` (`entry`) VALUES('148175'); +INSERT INTO `transmog_items` (`entry`) VALUES('148176'); +INSERT INTO `transmog_items` (`entry`) VALUES('148177'); +INSERT INTO `transmog_items` (`entry`) VALUES('148178'); +INSERT INTO `transmog_items` (`entry`) VALUES('148179'); +INSERT INTO `transmog_items` (`entry`) VALUES('148180'); +INSERT INTO `transmog_items` (`entry`) VALUES('148181'); +INSERT INTO `transmog_items` (`entry`) VALUES('148182'); +INSERT INTO `transmog_items` (`entry`) VALUES('148183'); +INSERT INTO `transmog_items` (`entry`) VALUES('148184'); +INSERT INTO `transmog_items` (`entry`) VALUES('148185'); +INSERT INTO `transmog_items` (`entry`) VALUES('148186'); +INSERT INTO `transmog_items` (`entry`) VALUES('148187'); +INSERT INTO `transmog_items` (`entry`) VALUES('148188'); +INSERT INTO `transmog_items` (`entry`) VALUES('148189'); +INSERT INTO `transmog_items` (`entry`) VALUES('148190'); +INSERT INTO `transmog_items` (`entry`) VALUES('148191'); +INSERT INTO `transmog_items` (`entry`) VALUES('148192'); +INSERT INTO `transmog_items` (`entry`) VALUES('148193'); +INSERT INTO `transmog_items` (`entry`) VALUES('148194'); +INSERT INTO `transmog_items` (`entry`) VALUES('148195'); +INSERT INTO `transmog_items` (`entry`) VALUES('148196'); +INSERT INTO `transmog_items` (`entry`) VALUES('148197'); +INSERT INTO `transmog_items` (`entry`) VALUES('148198'); +INSERT INTO `transmog_items` (`entry`) VALUES('148199'); +INSERT INTO `transmog_items` (`entry`) VALUES('148200'); +INSERT INTO `transmog_items` (`entry`) VALUES('148201'); +INSERT INTO `transmog_items` (`entry`) VALUES('148202'); +INSERT INTO `transmog_items` (`entry`) VALUES('148203'); +INSERT INTO `transmog_items` (`entry`) VALUES('148204'); +INSERT INTO `transmog_items` (`entry`) VALUES('148205'); +INSERT INTO `transmog_items` (`entry`) VALUES('148206'); +INSERT INTO `transmog_items` (`entry`) VALUES('148207'); +INSERT INTO `transmog_items` (`entry`) VALUES('148208'); +INSERT INTO `transmog_items` (`entry`) VALUES('148209'); +INSERT INTO `transmog_items` (`entry`) VALUES('148210'); +INSERT INTO `transmog_items` (`entry`) VALUES('148211'); +INSERT INTO `transmog_items` (`entry`) VALUES('148212'); +INSERT INTO `transmog_items` (`entry`) VALUES('148213'); +INSERT INTO `transmog_items` (`entry`) VALUES('148214'); +INSERT INTO `transmog_items` (`entry`) VALUES('148215'); +INSERT INTO `transmog_items` (`entry`) VALUES('148216'); +INSERT INTO `transmog_items` (`entry`) VALUES('148217'); +INSERT INTO `transmog_items` (`entry`) VALUES('148218'); +INSERT INTO `transmog_items` (`entry`) VALUES('148219'); +INSERT INTO `transmog_items` (`entry`) VALUES('148220'); +INSERT INTO `transmog_items` (`entry`) VALUES('148221'); +INSERT INTO `transmog_items` (`entry`) VALUES('148222'); +INSERT INTO `transmog_items` (`entry`) VALUES('148223'); +INSERT INTO `transmog_items` (`entry`) VALUES('148224'); +INSERT INTO `transmog_items` (`entry`) VALUES('148225'); +INSERT INTO `transmog_items` (`entry`) VALUES('148226'); +INSERT INTO `transmog_items` (`entry`) VALUES('148227'); +INSERT INTO `transmog_items` (`entry`) VALUES('148228'); +INSERT INTO `transmog_items` (`entry`) VALUES('148229'); +INSERT INTO `transmog_items` (`entry`) VALUES('148230'); +INSERT INTO `transmog_items` (`entry`) VALUES('148231'); +INSERT INTO `transmog_items` (`entry`) VALUES('148232'); +INSERT INTO `transmog_items` (`entry`) VALUES('148233'); +INSERT INTO `transmog_items` (`entry`) VALUES('148234'); +INSERT INTO `transmog_items` (`entry`) VALUES('148235'); +INSERT INTO `transmog_items` (`entry`) VALUES('148236'); +INSERT INTO `transmog_items` (`entry`) VALUES('148237'); +INSERT INTO `transmog_items` (`entry`) VALUES('148238'); +INSERT INTO `transmog_items` (`entry`) VALUES('148239'); +INSERT INTO `transmog_items` (`entry`) VALUES('148240'); +INSERT INTO `transmog_items` (`entry`) VALUES('148241'); +INSERT INTO `transmog_items` (`entry`) VALUES('148242'); +INSERT INTO `transmog_items` (`entry`) VALUES('148243'); +INSERT INTO `transmog_items` (`entry`) VALUES('148244'); +INSERT INTO `transmog_items` (`entry`) VALUES('148245'); +INSERT INTO `transmog_items` (`entry`) VALUES('148246'); +INSERT INTO `transmog_items` (`entry`) VALUES('148247'); +INSERT INTO `transmog_items` (`entry`) VALUES('148250'); +INSERT INTO `transmog_items` (`entry`) VALUES('148251'); +INSERT INTO `transmog_items` (`entry`) VALUES('148252'); +INSERT INTO `transmog_items` (`entry`) VALUES('148253'); +INSERT INTO `transmog_items` (`entry`) VALUES('148254'); +INSERT INTO `transmog_items` (`entry`) VALUES('148255'); +INSERT INTO `transmog_items` (`entry`) VALUES('148256'); +INSERT INTO `transmog_items` (`entry`) VALUES('148257'); +INSERT INTO `transmog_items` (`entry`) VALUES('148258'); +INSERT INTO `transmog_items` (`entry`) VALUES('148259'); +INSERT INTO `transmog_items` (`entry`) VALUES('148260'); +INSERT INTO `transmog_items` (`entry`) VALUES('148261'); +INSERT INTO `transmog_items` (`entry`) VALUES('148262'); +INSERT INTO `transmog_items` (`entry`) VALUES('148263'); +INSERT INTO `transmog_items` (`entry`) VALUES('148264'); +INSERT INTO `transmog_items` (`entry`) VALUES('148265'); +INSERT INTO `transmog_items` (`entry`) VALUES('148266'); +INSERT INTO `transmog_items` (`entry`) VALUES('148267'); +INSERT INTO `transmog_items` (`entry`) VALUES('148268'); +INSERT INTO `transmog_items` (`entry`) VALUES('148269'); +INSERT INTO `transmog_items` (`entry`) VALUES('148270'); +INSERT INTO `transmog_items` (`entry`) VALUES('148271'); +INSERT INTO `transmog_items` (`entry`) VALUES('148272'); +INSERT INTO `transmog_items` (`entry`) VALUES('148273'); +INSERT INTO `transmog_items` (`entry`) VALUES('148274'); +INSERT INTO `transmog_items` (`entry`) VALUES('148275'); +INSERT INTO `transmog_items` (`entry`) VALUES('148276'); +INSERT INTO `transmog_items` (`entry`) VALUES('148277'); +INSERT INTO `transmog_items` (`entry`) VALUES('148278'); +INSERT INTO `transmog_items` (`entry`) VALUES('148279'); +INSERT INTO `transmog_items` (`entry`) VALUES('148280'); +INSERT INTO `transmog_items` (`entry`) VALUES('148281'); +INSERT INTO `transmog_items` (`entry`) VALUES('148282'); +INSERT INTO `transmog_items` (`entry`) VALUES('148283'); +INSERT INTO `transmog_items` (`entry`) VALUES('148284'); +INSERT INTO `transmog_items` (`entry`) VALUES('148285'); +INSERT INTO `transmog_items` (`entry`) VALUES('148286'); +INSERT INTO `transmog_items` (`entry`) VALUES('148287'); +INSERT INTO `transmog_items` (`entry`) VALUES('148288'); +INSERT INTO `transmog_items` (`entry`) VALUES('148289'); +INSERT INTO `transmog_items` (`entry`) VALUES('148290'); +INSERT INTO `transmog_items` (`entry`) VALUES('148291'); +INSERT INTO `transmog_items` (`entry`) VALUES('148292'); +INSERT INTO `transmog_items` (`entry`) VALUES('148293'); +INSERT INTO `transmog_items` (`entry`) VALUES('148294'); +INSERT INTO `transmog_items` (`entry`) VALUES('148295'); +INSERT INTO `transmog_items` (`entry`) VALUES('148296'); +INSERT INTO `transmog_items` (`entry`) VALUES('148297'); +INSERT INTO `transmog_items` (`entry`) VALUES('148298'); +INSERT INTO `transmog_items` (`entry`) VALUES('148299'); +INSERT INTO `transmog_items` (`entry`) VALUES('148300'); +INSERT INTO `transmog_items` (`entry`) VALUES('148301'); +INSERT INTO `transmog_items` (`entry`) VALUES('148302'); +INSERT INTO `transmog_items` (`entry`) VALUES('148303'); +INSERT INTO `transmog_items` (`entry`) VALUES('148304'); +INSERT INTO `transmog_items` (`entry`) VALUES('148305'); +INSERT INTO `transmog_items` (`entry`) VALUES('148306'); +INSERT INTO `transmog_items` (`entry`) VALUES('148307'); +INSERT INTO `transmog_items` (`entry`) VALUES('148308'); +INSERT INTO `transmog_items` (`entry`) VALUES('148309'); +INSERT INTO `transmog_items` (`entry`) VALUES('148310'); +INSERT INTO `transmog_items` (`entry`) VALUES('148312'); +INSERT INTO `transmog_items` (`entry`) VALUES('148313'); +INSERT INTO `transmog_items` (`entry`) VALUES('148314'); +INSERT INTO `transmog_items` (`entry`) VALUES('148315'); +INSERT INTO `transmog_items` (`entry`) VALUES('148316'); +INSERT INTO `transmog_items` (`entry`) VALUES('148317'); +INSERT INTO `transmog_items` (`entry`) VALUES('148318'); +INSERT INTO `transmog_items` (`entry`) VALUES('148319'); +INSERT INTO `transmog_items` (`entry`) VALUES('148320'); +INSERT INTO `transmog_items` (`entry`) VALUES('148321'); +INSERT INTO `transmog_items` (`entry`) VALUES('148322'); +INSERT INTO `transmog_items` (`entry`) VALUES('148323'); +INSERT INTO `transmog_items` (`entry`) VALUES('148324'); +INSERT INTO `transmog_items` (`entry`) VALUES('148325'); +INSERT INTO `transmog_items` (`entry`) VALUES('148326'); +INSERT INTO `transmog_items` (`entry`) VALUES('148327'); +INSERT INTO `transmog_items` (`entry`) VALUES('148328'); +INSERT INTO `transmog_items` (`entry`) VALUES('148329'); +INSERT INTO `transmog_items` (`entry`) VALUES('148330'); +INSERT INTO `transmog_items` (`entry`) VALUES('148331'); +INSERT INTO `transmog_items` (`entry`) VALUES('148332'); +INSERT INTO `transmog_items` (`entry`) VALUES('148333'); +INSERT INTO `transmog_items` (`entry`) VALUES('148334'); +INSERT INTO `transmog_items` (`entry`) VALUES('148335'); +INSERT INTO `transmog_items` (`entry`) VALUES('148336'); +INSERT INTO `transmog_items` (`entry`) VALUES('148337'); +INSERT INTO `transmog_items` (`entry`) VALUES('148338'); +INSERT INTO `transmog_items` (`entry`) VALUES('148339'); +INSERT INTO `transmog_items` (`entry`) VALUES('148340'); +INSERT INTO `transmog_items` (`entry`) VALUES('148341'); +INSERT INTO `transmog_items` (`entry`) VALUES('148342'); +INSERT INTO `transmog_items` (`entry`) VALUES('148343'); +INSERT INTO `transmog_items` (`entry`) VALUES('148344'); +INSERT INTO `transmog_items` (`entry`) VALUES('148345'); +INSERT INTO `transmog_items` (`entry`) VALUES('148346'); +INSERT INTO `transmog_items` (`entry`) VALUES('148347'); +INSERT INTO `transmog_items` (`entry`) VALUES('148348'); +INSERT INTO `transmog_items` (`entry`) VALUES('148349'); +INSERT INTO `transmog_items` (`entry`) VALUES('148350'); +INSERT INTO `transmog_items` (`entry`) VALUES('148351'); +INSERT INTO `transmog_items` (`entry`) VALUES('148352'); +INSERT INTO `transmog_items` (`entry`) VALUES('148353'); +INSERT INTO `transmog_items` (`entry`) VALUES('148354'); +INSERT INTO `transmog_items` (`entry`) VALUES('148355'); +INSERT INTO `transmog_items` (`entry`) VALUES('148356'); +INSERT INTO `transmog_items` (`entry`) VALUES('148357'); +INSERT INTO `transmog_items` (`entry`) VALUES('148358'); +INSERT INTO `transmog_items` (`entry`) VALUES('148359'); +INSERT INTO `transmog_items` (`entry`) VALUES('148360'); +INSERT INTO `transmog_items` (`entry`) VALUES('148361'); +INSERT INTO `transmog_items` (`entry`) VALUES('148362'); +INSERT INTO `transmog_items` (`entry`) VALUES('148363'); +INSERT INTO `transmog_items` (`entry`) VALUES('148364'); +INSERT INTO `transmog_items` (`entry`) VALUES('148365'); +INSERT INTO `transmog_items` (`entry`) VALUES('148366'); +INSERT INTO `transmog_items` (`entry`) VALUES('148367'); +INSERT INTO `transmog_items` (`entry`) VALUES('148368'); +INSERT INTO `transmog_items` (`entry`) VALUES('148369'); +INSERT INTO `transmog_items` (`entry`) VALUES('148370'); +INSERT INTO `transmog_items` (`entry`) VALUES('148371'); +INSERT INTO `transmog_items` (`entry`) VALUES('148372'); +INSERT INTO `transmog_items` (`entry`) VALUES('148373'); +INSERT INTO `transmog_items` (`entry`) VALUES('148374'); +INSERT INTO `transmog_items` (`entry`) VALUES('148375'); +INSERT INTO `transmog_items` (`entry`) VALUES('148376'); +INSERT INTO `transmog_items` (`entry`) VALUES('148377'); +INSERT INTO `transmog_items` (`entry`) VALUES('148378'); +INSERT INTO `transmog_items` (`entry`) VALUES('148379'); +INSERT INTO `transmog_items` (`entry`) VALUES('148380'); +INSERT INTO `transmog_items` (`entry`) VALUES('148381'); +INSERT INTO `transmog_items` (`entry`) VALUES('148382'); +INSERT INTO `transmog_items` (`entry`) VALUES('148383'); +INSERT INTO `transmog_items` (`entry`) VALUES('148384'); +INSERT INTO `transmog_items` (`entry`) VALUES('148385'); +INSERT INTO `transmog_items` (`entry`) VALUES('148386'); +INSERT INTO `transmog_items` (`entry`) VALUES('148387'); +INSERT INTO `transmog_items` (`entry`) VALUES('148388'); +INSERT INTO `transmog_items` (`entry`) VALUES('148389'); +INSERT INTO `transmog_items` (`entry`) VALUES('148390'); +INSERT INTO `transmog_items` (`entry`) VALUES('148391'); +INSERT INTO `transmog_items` (`entry`) VALUES('148392'); +INSERT INTO `transmog_items` (`entry`) VALUES('148393'); +INSERT INTO `transmog_items` (`entry`) VALUES('148394'); +INSERT INTO `transmog_items` (`entry`) VALUES('148395'); +INSERT INTO `transmog_items` (`entry`) VALUES('148396'); +INSERT INTO `transmog_items` (`entry`) VALUES('148397'); +INSERT INTO `transmog_items` (`entry`) VALUES('148398'); +INSERT INTO `transmog_items` (`entry`) VALUES('148399'); +INSERT INTO `transmog_items` (`entry`) VALUES('148400'); +INSERT INTO `transmog_items` (`entry`) VALUES('148402'); +INSERT INTO `transmog_items` (`entry`) VALUES('148408'); +INSERT INTO `transmog_items` (`entry`) VALUES('148420'); +INSERT INTO `transmog_items` (`entry`) VALUES('148422'); +INSERT INTO `transmog_items` (`entry`) VALUES('148424'); +INSERT INTO `transmog_items` (`entry`) VALUES('148428'); +INSERT INTO `transmog_items` (`entry`) VALUES('148429'); +INSERT INTO `transmog_items` (`entry`) VALUES('148430'); +INSERT INTO `transmog_items` (`entry`) VALUES('148432'); +INSERT INTO `transmog_items` (`entry`) VALUES('148433'); +INSERT INTO `transmog_items` (`entry`) VALUES('148435'); +INSERT INTO `transmog_items` (`entry`) VALUES('148436'); +INSERT INTO `transmog_items` (`entry`) VALUES('148442'); +INSERT INTO `transmog_items` (`entry`) VALUES('148444'); +INSERT INTO `transmog_items` (`entry`) VALUES('148445'); +INSERT INTO `transmog_items` (`entry`) VALUES('148446'); +INSERT INTO `transmog_items` (`entry`) VALUES('148447'); +INSERT INTO `transmog_items` (`entry`) VALUES('148448'); +INSERT INTO `transmog_items` (`entry`) VALUES('148449'); +INSERT INTO `transmog_items` (`entry`) VALUES('148450'); +INSERT INTO `transmog_items` (`entry`) VALUES('148451'); +INSERT INTO `transmog_items` (`entry`) VALUES('148452'); +INSERT INTO `transmog_items` (`entry`) VALUES('148453'); +INSERT INTO `transmog_items` (`entry`) VALUES('148454'); +INSERT INTO `transmog_items` (`entry`) VALUES('148455'); +INSERT INTO `transmog_items` (`entry`) VALUES('148456'); +INSERT INTO `transmog_items` (`entry`) VALUES('148457'); +INSERT INTO `transmog_items` (`entry`) VALUES('148458'); +INSERT INTO `transmog_items` (`entry`) VALUES('148459'); +INSERT INTO `transmog_items` (`entry`) VALUES('148460'); +INSERT INTO `transmog_items` (`entry`) VALUES('148461'); +INSERT INTO `transmog_items` (`entry`) VALUES('148462'); +INSERT INTO `transmog_items` (`entry`) VALUES('148463'); +INSERT INTO `transmog_items` (`entry`) VALUES('148464'); +INSERT INTO `transmog_items` (`entry`) VALUES('148465'); +INSERT INTO `transmog_items` (`entry`) VALUES('148466'); +INSERT INTO `transmog_items` (`entry`) VALUES('148467'); +INSERT INTO `transmog_items` (`entry`) VALUES('148468'); +INSERT INTO `transmog_items` (`entry`) VALUES('148469'); +INSERT INTO `transmog_items` (`entry`) VALUES('148470'); +INSERT INTO `transmog_items` (`entry`) VALUES('148472'); +INSERT INTO `transmog_items` (`entry`) VALUES('148474'); +INSERT INTO `transmog_items` (`entry`) VALUES('148476'); +INSERT INTO `transmog_items` (`entry`) VALUES('148478'); +INSERT INTO `transmog_items` (`entry`) VALUES('148480'); +INSERT INTO `transmog_items` (`entry`) VALUES('148481'); +INSERT INTO `transmog_items` (`entry`) VALUES('148482'); +INSERT INTO `transmog_items` (`entry`) VALUES('148483'); +INSERT INTO `transmog_items` (`entry`) VALUES('148484'); +INSERT INTO `transmog_items` (`entry`) VALUES('148485'); +INSERT INTO `transmog_items` (`entry`) VALUES('148486'); +INSERT INTO `transmog_items` (`entry`) VALUES('148487'); +INSERT INTO `transmog_items` (`entry`) VALUES('148488'); +INSERT INTO `transmog_items` (`entry`) VALUES('148489'); +INSERT INTO `transmog_items` (`entry`) VALUES('148490'); +INSERT INTO `transmog_items` (`entry`) VALUES('148491'); +INSERT INTO `transmog_items` (`entry`) VALUES('148492'); +INSERT INTO `transmog_items` (`entry`) VALUES('148493'); +INSERT INTO `transmog_items` (`entry`) VALUES('148494'); +INSERT INTO `transmog_items` (`entry`) VALUES('148495'); +INSERT INTO `transmog_items` (`entry`) VALUES('148496'); +INSERT INTO `transmog_items` (`entry`) VALUES('148497'); +INSERT INTO `transmog_items` (`entry`) VALUES('148498'); +INSERT INTO `transmog_items` (`entry`) VALUES('148499'); +INSERT INTO `transmog_items` (`entry`) VALUES('148500'); +INSERT INTO `transmog_items` (`entry`) VALUES('148501'); +INSERT INTO `transmog_items` (`entry`) VALUES('148502'); +INSERT INTO `transmog_items` (`entry`) VALUES('148503'); +INSERT INTO `transmog_items` (`entry`) VALUES('148504'); +INSERT INTO `transmog_items` (`entry`) VALUES('148505'); +INSERT INTO `transmog_items` (`entry`) VALUES('148509'); +INSERT INTO `transmog_items` (`entry`) VALUES('148511'); +INSERT INTO `transmog_items` (`entry`) VALUES('148515'); +INSERT INTO `transmog_items` (`entry`) VALUES('148517'); +INSERT INTO `transmog_items` (`entry`) VALUES('148519'); +INSERT INTO `transmog_items` (`entry`) VALUES('148529'); +INSERT INTO `transmog_items` (`entry`) VALUES('148531'); +INSERT INTO `transmog_items` (`entry`) VALUES('148533'); +INSERT INTO `transmog_items` (`entry`) VALUES('148535'); +INSERT INTO `transmog_items` (`entry`) VALUES('148537'); +INSERT INTO `transmog_items` (`entry`) VALUES('148538'); +INSERT INTO `transmog_items` (`entry`) VALUES('148539'); +INSERT INTO `transmog_items` (`entry`) VALUES('148540'); +INSERT INTO `transmog_items` (`entry`) VALUES('148541'); +INSERT INTO `transmog_items` (`entry`) VALUES('148542'); +INSERT INTO `transmog_items` (`entry`) VALUES('148543'); +INSERT INTO `transmog_items` (`entry`) VALUES('148544'); +INSERT INTO `transmog_items` (`entry`) VALUES('148545'); +INSERT INTO `transmog_items` (`entry`) VALUES('148546'); +INSERT INTO `transmog_items` (`entry`) VALUES('148547'); +INSERT INTO `transmog_items` (`entry`) VALUES('148548'); +INSERT INTO `transmog_items` (`entry`) VALUES('148549'); +INSERT INTO `transmog_items` (`entry`) VALUES('148550'); +INSERT INTO `transmog_items` (`entry`) VALUES('148551'); +INSERT INTO `transmog_items` (`entry`) VALUES('148552'); +INSERT INTO `transmog_items` (`entry`) VALUES('148553'); +INSERT INTO `transmog_items` (`entry`) VALUES('148554'); +INSERT INTO `transmog_items` (`entry`) VALUES('148555'); +INSERT INTO `transmog_items` (`entry`) VALUES('148556'); +INSERT INTO `transmog_items` (`entry`) VALUES('148557'); +INSERT INTO `transmog_items` (`entry`) VALUES('148558'); +INSERT INTO `transmog_items` (`entry`) VALUES('148559'); +INSERT INTO `transmog_items` (`entry`) VALUES('148560'); +INSERT INTO `transmog_items` (`entry`) VALUES('148561'); +INSERT INTO `transmog_items` (`entry`) VALUES('148562'); +INSERT INTO `transmog_items` (`entry`) VALUES('148564'); +INSERT INTO `transmog_items` (`entry`) VALUES('148566'); +INSERT INTO `transmog_items` (`entry`) VALUES('148568'); +INSERT INTO `transmog_items` (`entry`) VALUES('148572'); +INSERT INTO `transmog_items` (`entry`) VALUES('148574'); +INSERT INTO `transmog_items` (`entry`) VALUES('148575'); +INSERT INTO `transmog_items` (`entry`) VALUES('148576'); +INSERT INTO `transmog_items` (`entry`) VALUES('148577'); +INSERT INTO `transmog_items` (`entry`) VALUES('148578'); +INSERT INTO `transmog_items` (`entry`) VALUES('148579'); +INSERT INTO `transmog_items` (`entry`) VALUES('148580'); +INSERT INTO `transmog_items` (`entry`) VALUES('148581'); +INSERT INTO `transmog_items` (`entry`) VALUES('148582'); +INSERT INTO `transmog_items` (`entry`) VALUES('148583'); +INSERT INTO `transmog_items` (`entry`) VALUES('148584'); +INSERT INTO `transmog_items` (`entry`) VALUES('148585'); +INSERT INTO `transmog_items` (`entry`) VALUES('148586'); +INSERT INTO `transmog_items` (`entry`) VALUES('148587'); +INSERT INTO `transmog_items` (`entry`) VALUES('148588'); +INSERT INTO `transmog_items` (`entry`) VALUES('148589'); +INSERT INTO `transmog_items` (`entry`) VALUES('148590'); +INSERT INTO `transmog_items` (`entry`) VALUES('148591'); +INSERT INTO `transmog_items` (`entry`) VALUES('148592'); +INSERT INTO `transmog_items` (`entry`) VALUES('148593'); +INSERT INTO `transmog_items` (`entry`) VALUES('148594'); +INSERT INTO `transmog_items` (`entry`) VALUES('148595'); +INSERT INTO `transmog_items` (`entry`) VALUES('148596'); +INSERT INTO `transmog_items` (`entry`) VALUES('148597'); +INSERT INTO `transmog_items` (`entry`) VALUES('148598'); +INSERT INTO `transmog_items` (`entry`) VALUES('148599'); +INSERT INTO `transmog_items` (`entry`) VALUES('148602'); +INSERT INTO `transmog_items` (`entry`) VALUES('148603'); +INSERT INTO `transmog_items` (`entry`) VALUES('148604'); +INSERT INTO `transmog_items` (`entry`) VALUES('148605'); +INSERT INTO `transmog_items` (`entry`) VALUES('148606'); +INSERT INTO `transmog_items` (`entry`) VALUES('148607'); +INSERT INTO `transmog_items` (`entry`) VALUES('148608'); +INSERT INTO `transmog_items` (`entry`) VALUES('148609'); +INSERT INTO `transmog_items` (`entry`) VALUES('148610'); +INSERT INTO `transmog_items` (`entry`) VALUES('148611'); +INSERT INTO `transmog_items` (`entry`) VALUES('148612'); +INSERT INTO `transmog_items` (`entry`) VALUES('148613'); +INSERT INTO `transmog_items` (`entry`) VALUES('148614'); +INSERT INTO `transmog_items` (`entry`) VALUES('148615'); +INSERT INTO `transmog_items` (`entry`) VALUES('148616'); +INSERT INTO `transmog_items` (`entry`) VALUES('148617'); +INSERT INTO `transmog_items` (`entry`) VALUES('148618'); +INSERT INTO `transmog_items` (`entry`) VALUES('148619'); +INSERT INTO `transmog_items` (`entry`) VALUES('148620'); +INSERT INTO `transmog_items` (`entry`) VALUES('148621'); +INSERT INTO `transmog_items` (`entry`) VALUES('148622'); +INSERT INTO `transmog_items` (`entry`) VALUES('148623'); +INSERT INTO `transmog_items` (`entry`) VALUES('148624'); +INSERT INTO `transmog_items` (`entry`) VALUES('148625'); +INSERT INTO `transmog_items` (`entry`) VALUES('148626'); +INSERT INTO `transmog_items` (`entry`) VALUES('148627'); +INSERT INTO `transmog_items` (`entry`) VALUES('148628'); +INSERT INTO `transmog_items` (`entry`) VALUES('148629'); +INSERT INTO `transmog_items` (`entry`) VALUES('148630'); +INSERT INTO `transmog_items` (`entry`) VALUES('148631'); +INSERT INTO `transmog_items` (`entry`) VALUES('148632'); +INSERT INTO `transmog_items` (`entry`) VALUES('148633'); +INSERT INTO `transmog_items` (`entry`) VALUES('148634'); +INSERT INTO `transmog_items` (`entry`) VALUES('148635'); +INSERT INTO `transmog_items` (`entry`) VALUES('148636'); +INSERT INTO `transmog_items` (`entry`) VALUES('148637'); +INSERT INTO `transmog_items` (`entry`) VALUES('148638'); +INSERT INTO `transmog_items` (`entry`) VALUES('148639'); +INSERT INTO `transmog_items` (`entry`) VALUES('148640'); +INSERT INTO `transmog_items` (`entry`) VALUES('148641'); +INSERT INTO `transmog_items` (`entry`) VALUES('148642'); +INSERT INTO `transmog_items` (`entry`) VALUES('148643'); +INSERT INTO `transmog_items` (`entry`) VALUES('148644'); +INSERT INTO `transmog_items` (`entry`) VALUES('148645'); +INSERT INTO `transmog_items` (`entry`) VALUES('148646'); +INSERT INTO `transmog_items` (`entry`) VALUES('148647'); +INSERT INTO `transmog_items` (`entry`) VALUES('148648'); +INSERT INTO `transmog_items` (`entry`) VALUES('148649'); +INSERT INTO `transmog_items` (`entry`) VALUES('148650'); +INSERT INTO `transmog_items` (`entry`) VALUES('148651'); +INSERT INTO `transmog_items` (`entry`) VALUES('148652'); +INSERT INTO `transmog_items` (`entry`) VALUES('148653'); +INSERT INTO `transmog_items` (`entry`) VALUES('148654'); +INSERT INTO `transmog_items` (`entry`) VALUES('148655'); +INSERT INTO `transmog_items` (`entry`) VALUES('148656'); +INSERT INTO `transmog_items` (`entry`) VALUES('148657'); +INSERT INTO `transmog_items` (`entry`) VALUES('148658'); +INSERT INTO `transmog_items` (`entry`) VALUES('148659'); +INSERT INTO `transmog_items` (`entry`) VALUES('148660'); +INSERT INTO `transmog_items` (`entry`) VALUES('148661'); +INSERT INTO `transmog_items` (`entry`) VALUES('148663'); +INSERT INTO `transmog_items` (`entry`) VALUES('148666'); +INSERT INTO `transmog_items` (`entry`) VALUES('148667'); +INSERT INTO `transmog_items` (`entry`) VALUES('148668'); +INSERT INTO `transmog_items` (`entry`) VALUES('148669'); +INSERT INTO `transmog_items` (`entry`) VALUES('148670'); +INSERT INTO `transmog_items` (`entry`) VALUES('148671'); +INSERT INTO `transmog_items` (`entry`) VALUES('148672'); +INSERT INTO `transmog_items` (`entry`) VALUES('148673'); +INSERT INTO `transmog_items` (`entry`) VALUES('148674'); +INSERT INTO `transmog_items` (`entry`) VALUES('148675'); +INSERT INTO `transmog_items` (`entry`) VALUES('148677'); +INSERT INTO `transmog_items` (`entry`) VALUES('148683'); +INSERT INTO `transmog_items` (`entry`) VALUES('148685'); +INSERT INTO `transmog_items` (`entry`) VALUES('148687'); +INSERT INTO `transmog_items` (`entry`) VALUES('148689'); +INSERT INTO `transmog_items` (`entry`) VALUES('148691'); +INSERT INTO `transmog_items` (`entry`) VALUES('148693'); +INSERT INTO `transmog_items` (`entry`) VALUES('148695'); +INSERT INTO `transmog_items` (`entry`) VALUES('148697'); +INSERT INTO `transmog_items` (`entry`) VALUES('148699'); +INSERT INTO `transmog_items` (`entry`) VALUES('148703'); +INSERT INTO `transmog_items` (`entry`) VALUES('148709'); +INSERT INTO `transmog_items` (`entry`) VALUES('148711'); +INSERT INTO `transmog_items` (`entry`) VALUES('148712'); +INSERT INTO `transmog_items` (`entry`) VALUES('148713'); +INSERT INTO `transmog_items` (`entry`) VALUES('148714'); +INSERT INTO `transmog_items` (`entry`) VALUES('148716'); +INSERT INTO `transmog_items` (`entry`) VALUES('148725'); +INSERT INTO `transmog_items` (`entry`) VALUES('148726'); +INSERT INTO `transmog_items` (`entry`) VALUES('148727'); +INSERT INTO `transmog_items` (`entry`) VALUES('148728'); +INSERT INTO `transmog_items` (`entry`) VALUES('148729'); +INSERT INTO `transmog_items` (`entry`) VALUES('148730'); +INSERT INTO `transmog_items` (`entry`) VALUES('148731'); +INSERT INTO `transmog_items` (`entry`) VALUES('148732'); +INSERT INTO `transmog_items` (`entry`) VALUES('148733'); +INSERT INTO `transmog_items` (`entry`) VALUES('148734'); +INSERT INTO `transmog_items` (`entry`) VALUES('148735'); +INSERT INTO `transmog_items` (`entry`) VALUES('148736'); +INSERT INTO `transmog_items` (`entry`) VALUES('148737'); +INSERT INTO `transmog_items` (`entry`) VALUES('148738'); +INSERT INTO `transmog_items` (`entry`) VALUES('148739'); +INSERT INTO `transmog_items` (`entry`) VALUES('148740'); +INSERT INTO `transmog_items` (`entry`) VALUES('148741'); +INSERT INTO `transmog_items` (`entry`) VALUES('148742'); +INSERT INTO `transmog_items` (`entry`) VALUES('148743'); +INSERT INTO `transmog_items` (`entry`) VALUES('148744'); +INSERT INTO `transmog_items` (`entry`) VALUES('148745'); +INSERT INTO `transmog_items` (`entry`) VALUES('148746'); +INSERT INTO `transmog_items` (`entry`) VALUES('148747'); +INSERT INTO `transmog_items` (`entry`) VALUES('148748'); +INSERT INTO `transmog_items` (`entry`) VALUES('148749'); +INSERT INTO `transmog_items` (`entry`) VALUES('148750'); +INSERT INTO `transmog_items` (`entry`) VALUES('148751'); +INSERT INTO `transmog_items` (`entry`) VALUES('148752'); +INSERT INTO `transmog_items` (`entry`) VALUES('148753'); +INSERT INTO `transmog_items` (`entry`) VALUES('148754'); +INSERT INTO `transmog_items` (`entry`) VALUES('148755'); +INSERT INTO `transmog_items` (`entry`) VALUES('148756'); +INSERT INTO `transmog_items` (`entry`) VALUES('148757'); +INSERT INTO `transmog_items` (`entry`) VALUES('148758'); +INSERT INTO `transmog_items` (`entry`) VALUES('148759'); +INSERT INTO `transmog_items` (`entry`) VALUES('148760'); +INSERT INTO `transmog_items` (`entry`) VALUES('148761'); +INSERT INTO `transmog_items` (`entry`) VALUES('148762'); +INSERT INTO `transmog_items` (`entry`) VALUES('148763'); +INSERT INTO `transmog_items` (`entry`) VALUES('148764'); +INSERT INTO `transmog_items` (`entry`) VALUES('148769'); +INSERT INTO `transmog_items` (`entry`) VALUES('148770'); +INSERT INTO `transmog_items` (`entry`) VALUES('148771'); +INSERT INTO `transmog_items` (`entry`) VALUES('148772'); +INSERT INTO `transmog_items` (`entry`) VALUES('148773'); +INSERT INTO `transmog_items` (`entry`) VALUES('148774'); +INSERT INTO `transmog_items` (`entry`) VALUES('148775'); +INSERT INTO `transmog_items` (`entry`) VALUES('148776'); +INSERT INTO `transmog_items` (`entry`) VALUES('148777'); +INSERT INTO `transmog_items` (`entry`) VALUES('148778'); +INSERT INTO `transmog_items` (`entry`) VALUES('148781'); +INSERT INTO `transmog_items` (`entry`) VALUES('148782'); +INSERT INTO `transmog_items` (`entry`) VALUES('148783'); +INSERT INTO `transmog_items` (`entry`) VALUES('148784'); +INSERT INTO `transmog_items` (`entry`) VALUES('148785'); +INSERT INTO `transmog_items` (`entry`) VALUES('148786'); +INSERT INTO `transmog_items` (`entry`) VALUES('148787'); +INSERT INTO `transmog_items` (`entry`) VALUES('148788'); +INSERT INTO `transmog_items` (`entry`) VALUES('148789'); +INSERT INTO `transmog_items` (`entry`) VALUES('148790'); +INSERT INTO `transmog_items` (`entry`) VALUES('148794'); +INSERT INTO `transmog_items` (`entry`) VALUES('148795'); +INSERT INTO `transmog_items` (`entry`) VALUES('148796'); +INSERT INTO `transmog_items` (`entry`) VALUES('148797'); +INSERT INTO `transmog_items` (`entry`) VALUES('148798'); +INSERT INTO `transmog_items` (`entry`) VALUES('148799'); +INSERT INTO `transmog_items` (`entry`) VALUES('148800'); +INSERT INTO `transmog_items` (`entry`) VALUES('148801'); +INSERT INTO `transmog_items` (`entry`) VALUES('148802'); +INSERT INTO `transmog_items` (`entry`) VALUES('148803'); +INSERT INTO `transmog_items` (`entry`) VALUES('148804'); +INSERT INTO `transmog_items` (`entry`) VALUES('148805'); +INSERT INTO `transmog_items` (`entry`) VALUES('148806'); +INSERT INTO `transmog_items` (`entry`) VALUES('148807'); +INSERT INTO `transmog_items` (`entry`) VALUES('148808'); +INSERT INTO `transmog_items` (`entry`) VALUES('148809'); +INSERT INTO `transmog_items` (`entry`) VALUES('148810'); +INSERT INTO `transmog_items` (`entry`) VALUES('148811'); +INSERT INTO `transmog_items` (`entry`) VALUES('148812'); +INSERT INTO `transmog_items` (`entry`) VALUES('148813'); +INSERT INTO `transmog_items` (`entry`) VALUES('148814'); +INSERT INTO `transmog_items` (`entry`) VALUES('148815'); +INSERT INTO `transmog_items` (`entry`) VALUES('148816'); +INSERT INTO `transmog_items` (`entry`) VALUES('148817'); +INSERT INTO `transmog_items` (`entry`) VALUES('148818'); +INSERT INTO `transmog_items` (`entry`) VALUES('148819'); +INSERT INTO `transmog_items` (`entry`) VALUES('148820'); +INSERT INTO `transmog_items` (`entry`) VALUES('148821'); +INSERT INTO `transmog_items` (`entry`) VALUES('148822'); +INSERT INTO `transmog_items` (`entry`) VALUES('148823'); +INSERT INTO `transmog_items` (`entry`) VALUES('148824'); +INSERT INTO `transmog_items` (`entry`) VALUES('148825'); +INSERT INTO `transmog_items` (`entry`) VALUES('148826'); +INSERT INTO `transmog_items` (`entry`) VALUES('148827'); +INSERT INTO `transmog_items` (`entry`) VALUES('148828'); +INSERT INTO `transmog_items` (`entry`) VALUES('148829'); +INSERT INTO `transmog_items` (`entry`) VALUES('148830'); +INSERT INTO `transmog_items` (`entry`) VALUES('148831'); +INSERT INTO `transmog_items` (`entry`) VALUES('148832'); +INSERT INTO `transmog_items` (`entry`) VALUES('148833'); +INSERT INTO `transmog_items` (`entry`) VALUES('148836'); +INSERT INTO `transmog_items` (`entry`) VALUES('148837'); +INSERT INTO `transmog_items` (`entry`) VALUES('148838'); +INSERT INTO `transmog_items` (`entry`) VALUES('148839'); +INSERT INTO `transmog_items` (`entry`) VALUES('148840'); +INSERT INTO `transmog_items` (`entry`) VALUES('148841'); +INSERT INTO `transmog_items` (`entry`) VALUES('148842'); +INSERT INTO `transmog_items` (`entry`) VALUES('148843'); +INSERT INTO `transmog_items` (`entry`) VALUES('148844'); +INSERT INTO `transmog_items` (`entry`) VALUES('148845'); +INSERT INTO `transmog_items` (`entry`) VALUES('148846'); +INSERT INTO `transmog_items` (`entry`) VALUES('148847'); +INSERT INTO `transmog_items` (`entry`) VALUES('148848'); +INSERT INTO `transmog_items` (`entry`) VALUES('148849'); +INSERT INTO `transmog_items` (`entry`) VALUES('148850'); +INSERT INTO `transmog_items` (`entry`) VALUES('148851'); +INSERT INTO `transmog_items` (`entry`) VALUES('148852'); +INSERT INTO `transmog_items` (`entry`) VALUES('148853'); +INSERT INTO `transmog_items` (`entry`) VALUES('148854'); +INSERT INTO `transmog_items` (`entry`) VALUES('148855'); +INSERT INTO `transmog_items` (`entry`) VALUES('148860'); +INSERT INTO `transmog_items` (`entry`) VALUES('148861'); +INSERT INTO `transmog_items` (`entry`) VALUES('148862'); +INSERT INTO `transmog_items` (`entry`) VALUES('148863'); +INSERT INTO `transmog_items` (`entry`) VALUES('148864'); +INSERT INTO `transmog_items` (`entry`) VALUES('148865'); +INSERT INTO `transmog_items` (`entry`) VALUES('148866'); +INSERT INTO `transmog_items` (`entry`) VALUES('148867'); +INSERT INTO `transmog_items` (`entry`) VALUES('148868'); +INSERT INTO `transmog_items` (`entry`) VALUES('148869'); +INSERT INTO `transmog_items` (`entry`) VALUES('148870'); +INSERT INTO `transmog_items` (`entry`) VALUES('148871'); +INSERT INTO `transmog_items` (`entry`) VALUES('148872'); +INSERT INTO `transmog_items` (`entry`) VALUES('148873'); +INSERT INTO `transmog_items` (`entry`) VALUES('148874'); +INSERT INTO `transmog_items` (`entry`) VALUES('148875'); +INSERT INTO `transmog_items` (`entry`) VALUES('148876'); +INSERT INTO `transmog_items` (`entry`) VALUES('148877'); +INSERT INTO `transmog_items` (`entry`) VALUES('148878'); +INSERT INTO `transmog_items` (`entry`) VALUES('148879'); +INSERT INTO `transmog_items` (`entry`) VALUES('148880'); +INSERT INTO `transmog_items` (`entry`) VALUES('148881'); +INSERT INTO `transmog_items` (`entry`) VALUES('148882'); +INSERT INTO `transmog_items` (`entry`) VALUES('148883'); +INSERT INTO `transmog_items` (`entry`) VALUES('148884'); +INSERT INTO `transmog_items` (`entry`) VALUES('148885'); +INSERT INTO `transmog_items` (`entry`) VALUES('148886'); +INSERT INTO `transmog_items` (`entry`) VALUES('148887'); +INSERT INTO `transmog_items` (`entry`) VALUES('148888'); +INSERT INTO `transmog_items` (`entry`) VALUES('148889'); +INSERT INTO `transmog_items` (`entry`) VALUES('148890'); +INSERT INTO `transmog_items` (`entry`) VALUES('148891'); +INSERT INTO `transmog_items` (`entry`) VALUES('148892'); +INSERT INTO `transmog_items` (`entry`) VALUES('148893'); +INSERT INTO `transmog_items` (`entry`) VALUES('148894'); +INSERT INTO `transmog_items` (`entry`) VALUES('148895'); +INSERT INTO `transmog_items` (`entry`) VALUES('148896'); +INSERT INTO `transmog_items` (`entry`) VALUES('148897'); +INSERT INTO `transmog_items` (`entry`) VALUES('148898'); +INSERT INTO `transmog_items` (`entry`) VALUES('148899'); +INSERT INTO `transmog_items` (`entry`) VALUES('148900'); +INSERT INTO `transmog_items` (`entry`) VALUES('148901'); +INSERT INTO `transmog_items` (`entry`) VALUES('148902'); +INSERT INTO `transmog_items` (`entry`) VALUES('148903'); +INSERT INTO `transmog_items` (`entry`) VALUES('148904'); +INSERT INTO `transmog_items` (`entry`) VALUES('148905'); +INSERT INTO `transmog_items` (`entry`) VALUES('148906'); +INSERT INTO `transmog_items` (`entry`) VALUES('148907'); +INSERT INTO `transmog_items` (`entry`) VALUES('148908'); +INSERT INTO `transmog_items` (`entry`) VALUES('148909'); +INSERT INTO `transmog_items` (`entry`) VALUES('148910'); +INSERT INTO `transmog_items` (`entry`) VALUES('148911'); +INSERT INTO `transmog_items` (`entry`) VALUES('148912'); +INSERT INTO `transmog_items` (`entry`) VALUES('148913'); +INSERT INTO `transmog_items` (`entry`) VALUES('148914'); +INSERT INTO `transmog_items` (`entry`) VALUES('148915'); +INSERT INTO `transmog_items` (`entry`) VALUES('148916'); +INSERT INTO `transmog_items` (`entry`) VALUES('148917'); +INSERT INTO `transmog_items` (`entry`) VALUES('148918'); +INSERT INTO `transmog_items` (`entry`) VALUES('148919'); +INSERT INTO `transmog_items` (`entry`) VALUES('148922'); +INSERT INTO `transmog_items` (`entry`) VALUES('148923'); +INSERT INTO `transmog_items` (`entry`) VALUES('148924'); +INSERT INTO `transmog_items` (`entry`) VALUES('148925'); +INSERT INTO `transmog_items` (`entry`) VALUES('148926'); +INSERT INTO `transmog_items` (`entry`) VALUES('148927'); +INSERT INTO `transmog_items` (`entry`) VALUES('148928'); +INSERT INTO `transmog_items` (`entry`) VALUES('148929'); +INSERT INTO `transmog_items` (`entry`) VALUES('148930'); +INSERT INTO `transmog_items` (`entry`) VALUES('148931'); +INSERT INTO `transmog_items` (`entry`) VALUES('148974'); +INSERT INTO `transmog_items` (`entry`) VALUES('148975'); +INSERT INTO `transmog_items` (`entry`) VALUES('148976'); +INSERT INTO `transmog_items` (`entry`) VALUES('148977'); +INSERT INTO `transmog_items` (`entry`) VALUES('148978'); +INSERT INTO `transmog_items` (`entry`) VALUES('148979'); +INSERT INTO `transmog_items` (`entry`) VALUES('148980'); +INSERT INTO `transmog_items` (`entry`) VALUES('148981'); +INSERT INTO `transmog_items` (`entry`) VALUES('148982'); +INSERT INTO `transmog_items` (`entry`) VALUES('148983'); +INSERT INTO `transmog_items` (`entry`) VALUES('148987'); +INSERT INTO `transmog_items` (`entry`) VALUES('148988'); +INSERT INTO `transmog_items` (`entry`) VALUES('148990'); +INSERT INTO `transmog_items` (`entry`) VALUES('148991'); +INSERT INTO `transmog_items` (`entry`) VALUES('148992'); +INSERT INTO `transmog_items` (`entry`) VALUES('148993'); +INSERT INTO `transmog_items` (`entry`) VALUES('148994'); +INSERT INTO `transmog_items` (`entry`) VALUES('148997'); +INSERT INTO `transmog_items` (`entry`) VALUES('148998'); +INSERT INTO `transmog_items` (`entry`) VALUES('149120'); +INSERT INTO `transmog_items` (`entry`) VALUES('149126'); +INSERT INTO `transmog_items` (`entry`) VALUES('149179'); +INSERT INTO `transmog_items` (`entry`) VALUES('149181'); +INSERT INTO `transmog_items` (`entry`) VALUES('149183'); +INSERT INTO `transmog_items` (`entry`) VALUES('149185'); +INSERT INTO `transmog_items` (`entry`) VALUES('149189'); +INSERT INTO `transmog_items` (`entry`) VALUES('149191'); +INSERT INTO `transmog_items` (`entry`) VALUES('149227'); +INSERT INTO `transmog_items` (`entry`) VALUES('149231'); +INSERT INTO `transmog_items` (`entry`) VALUES('149232'); +INSERT INTO `transmog_items` (`entry`) VALUES('149233'); +INSERT INTO `transmog_items` (`entry`) VALUES('149234'); +INSERT INTO `transmog_items` (`entry`) VALUES('149235'); +INSERT INTO `transmog_items` (`entry`) VALUES('149236'); +INSERT INTO `transmog_items` (`entry`) VALUES('149237'); +INSERT INTO `transmog_items` (`entry`) VALUES('149238'); +INSERT INTO `transmog_items` (`entry`) VALUES('149301'); +INSERT INTO `transmog_items` (`entry`) VALUES('149302'); +INSERT INTO `transmog_items` (`entry`) VALUES('149304'); +INSERT INTO `transmog_items` (`entry`) VALUES('149305'); +INSERT INTO `transmog_items` (`entry`) VALUES('149307'); +INSERT INTO `transmog_items` (`entry`) VALUES('149315'); +INSERT INTO `transmog_items` (`entry`) VALUES('149316'); +INSERT INTO `transmog_items` (`entry`) VALUES('149317'); +INSERT INTO `transmog_items` (`entry`) VALUES('149318'); +INSERT INTO `transmog_items` (`entry`) VALUES('149319'); +INSERT INTO `transmog_items` (`entry`) VALUES('149320'); +INSERT INTO `transmog_items` (`entry`) VALUES('149321'); +INSERT INTO `transmog_items` (`entry`) VALUES('149322'); +INSERT INTO `transmog_items` (`entry`) VALUES('149323'); +INSERT INTO `transmog_items` (`entry`) VALUES('149324'); +INSERT INTO `transmog_items` (`entry`) VALUES('149325'); +INSERT INTO `transmog_items` (`entry`) VALUES('149326'); +INSERT INTO `transmog_items` (`entry`) VALUES('149327'); +INSERT INTO `transmog_items` (`entry`) VALUES('149328'); +INSERT INTO `transmog_items` (`entry`) VALUES('149329'); +INSERT INTO `transmog_items` (`entry`) VALUES('149330'); +INSERT INTO `transmog_items` (`entry`) VALUES('149331'); +INSERT INTO `transmog_items` (`entry`) VALUES('149332'); +INSERT INTO `transmog_items` (`entry`) VALUES('149333'); +INSERT INTO `transmog_items` (`entry`) VALUES('149437'); +INSERT INTO `transmog_items` (`entry`) VALUES('149465'); +INSERT INTO `transmog_items` (`entry`) VALUES('149466'); +INSERT INTO `transmog_items` (`entry`) VALUES('149467'); +INSERT INTO `transmog_items` (`entry`) VALUES('149468'); +INSERT INTO `transmog_items` (`entry`) VALUES('149469'); +INSERT INTO `transmog_items` (`entry`) VALUES('149470'); +INSERT INTO `transmog_items` (`entry`) VALUES('149471'); +INSERT INTO `transmog_items` (`entry`) VALUES('149472'); +INSERT INTO `transmog_items` (`entry`) VALUES('149473'); +INSERT INTO `transmog_items` (`entry`) VALUES('149474'); +INSERT INTO `transmog_items` (`entry`) VALUES('149475'); +INSERT INTO `transmog_items` (`entry`) VALUES('149476'); +INSERT INTO `transmog_items` (`entry`) VALUES('149477'); +INSERT INTO `transmog_items` (`entry`) VALUES('149478'); +INSERT INTO `transmog_items` (`entry`) VALUES('149479'); +INSERT INTO `transmog_items` (`entry`) VALUES('149480'); +INSERT INTO `transmog_items` (`entry`) VALUES('149481'); +INSERT INTO `transmog_items` (`entry`) VALUES('149482'); +INSERT INTO `transmog_items` (`entry`) VALUES('149483'); +INSERT INTO `transmog_items` (`entry`) VALUES('149484'); +INSERT INTO `transmog_items` (`entry`) VALUES('149491'); +INSERT INTO `transmog_items` (`entry`) VALUES('149493'); +INSERT INTO `transmog_items` (`entry`) VALUES('149494'); +INSERT INTO `transmog_items` (`entry`) VALUES('149496'); +INSERT INTO `transmog_items` (`entry`) VALUES('149497'); +INSERT INTO `transmog_items` (`entry`) VALUES('149623'); +INSERT INTO `transmog_items` (`entry`) VALUES('149682'); +INSERT INTO `transmog_items` (`entry`) VALUES('149783'); +INSERT INTO `transmog_items` (`entry`) VALUES('149784'); +INSERT INTO `transmog_items` (`entry`) VALUES('149785'); +INSERT INTO `transmog_items` (`entry`) VALUES('149786'); +INSERT INTO `transmog_items` (`entry`) VALUES('149787'); +INSERT INTO `transmog_items` (`entry`) VALUES('149788'); +INSERT INTO `transmog_items` (`entry`) VALUES('149789'); +INSERT INTO `transmog_items` (`entry`) VALUES('149791'); +INSERT INTO `transmog_items` (`entry`) VALUES('149792'); +INSERT INTO `transmog_items` (`entry`) VALUES('149794'); +INSERT INTO `transmog_items` (`entry`) VALUES('149795'); +INSERT INTO `transmog_items` (`entry`) VALUES('149796'); +INSERT INTO `transmog_items` (`entry`) VALUES('149797'); +INSERT INTO `transmog_items` (`entry`) VALUES('149798'); +INSERT INTO `transmog_items` (`entry`) VALUES('149804'); +INSERT INTO `transmog_items` (`entry`) VALUES('149805'); +INSERT INTO `transmog_items` (`entry`) VALUES('149806'); +INSERT INTO `transmog_items` (`entry`) VALUES('149807'); +INSERT INTO `transmog_items` (`entry`) VALUES('149808'); +INSERT INTO `transmog_items` (`entry`) VALUES('149809'); +INSERT INTO `transmog_items` (`entry`) VALUES('149810'); +INSERT INTO `transmog_items` (`entry`) VALUES('149811'); +INSERT INTO `transmog_items` (`entry`) VALUES('149813'); +INSERT INTO `transmog_items` (`entry`) VALUES('149816'); +INSERT INTO `transmog_items` (`entry`) VALUES('149817'); +INSERT INTO `transmog_items` (`entry`) VALUES('149819'); +INSERT INTO `transmog_items` (`entry`) VALUES('149820'); +INSERT INTO `transmog_items` (`entry`) VALUES('149821'); +INSERT INTO `transmog_items` (`entry`) VALUES('149822'); +INSERT INTO `transmog_items` (`entry`) VALUES('149823'); +INSERT INTO `transmog_items` (`entry`) VALUES('149824'); +INSERT INTO `transmog_items` (`entry`) VALUES('149825'); +INSERT INTO `transmog_items` (`entry`) VALUES('149826'); +INSERT INTO `transmog_items` (`entry`) VALUES('149828'); +INSERT INTO `transmog_items` (`entry`) VALUES('149829'); +INSERT INTO `transmog_items` (`entry`) VALUES('149830'); +INSERT INTO `transmog_items` (`entry`) VALUES('149831'); +INSERT INTO `transmog_items` (`entry`) VALUES('149832'); +INSERT INTO `transmog_items` (`entry`) VALUES('149834'); +INSERT INTO `transmog_items` (`entry`) VALUES('149835'); +INSERT INTO `transmog_items` (`entry`) VALUES('149836'); +INSERT INTO `transmog_items` (`entry`) VALUES('149837'); +INSERT INTO `transmog_items` (`entry`) VALUES('149838'); +INSERT INTO `transmog_items` (`entry`) VALUES('149841'); +INSERT INTO `transmog_items` (`entry`) VALUES('149842'); +INSERT INTO `transmog_items` (`entry`) VALUES('149843'); +INSERT INTO `transmog_items` (`entry`) VALUES('149844'); +INSERT INTO `transmog_items` (`entry`) VALUES('149845'); +INSERT INTO `transmog_items` (`entry`) VALUES('149846'); +INSERT INTO `transmog_items` (`entry`) VALUES('149847'); +INSERT INTO `transmog_items` (`entry`) VALUES('149848'); +INSERT INTO `transmog_items` (`entry`) VALUES('149849'); +INSERT INTO `transmog_items` (`entry`) VALUES('149851'); +INSERT INTO `transmog_items` (`entry`) VALUES('149852'); +INSERT INTO `transmog_items` (`entry`) VALUES('149853'); +INSERT INTO `transmog_items` (`entry`) VALUES('149854'); +INSERT INTO `transmog_items` (`entry`) VALUES('149855'); +INSERT INTO `transmog_items` (`entry`) VALUES('149888'); +INSERT INTO `transmog_items` (`entry`) VALUES('149890'); +INSERT INTO `transmog_items` (`entry`) VALUES('149891'); +INSERT INTO `transmog_items` (`entry`) VALUES('149892'); +INSERT INTO `transmog_items` (`entry`) VALUES('149893'); +INSERT INTO `transmog_items` (`entry`) VALUES('149894'); +INSERT INTO `transmog_items` (`entry`) VALUES('149895'); +INSERT INTO `transmog_items` (`entry`) VALUES('149896'); +INSERT INTO `transmog_items` (`entry`) VALUES('149897'); +INSERT INTO `transmog_items` (`entry`) VALUES('149898'); +INSERT INTO `transmog_items` (`entry`) VALUES('149899'); +INSERT INTO `transmog_items` (`entry`) VALUES('149900'); +INSERT INTO `transmog_items` (`entry`) VALUES('149901'); +INSERT INTO `transmog_items` (`entry`) VALUES('149902'); +INSERT INTO `transmog_items` (`entry`) VALUES('149903'); +INSERT INTO `transmog_items` (`entry`) VALUES('149904'); +INSERT INTO `transmog_items` (`entry`) VALUES('149905'); +INSERT INTO `transmog_items` (`entry`) VALUES('149906'); +INSERT INTO `transmog_items` (`entry`) VALUES('149907'); +INSERT INTO `transmog_items` (`entry`) VALUES('149950'); +INSERT INTO `transmog_items` (`entry`) VALUES('149951'); +INSERT INTO `transmog_items` (`entry`) VALUES('149952'); +INSERT INTO `transmog_items` (`entry`) VALUES('149960'); +INSERT INTO `transmog_items` (`entry`) VALUES('149964'); +INSERT INTO `transmog_items` (`entry`) VALUES('149968'); +INSERT INTO `transmog_items` (`entry`) VALUES('149976'); +INSERT INTO `transmog_items` (`entry`) VALUES('149978'); +INSERT INTO `transmog_items` (`entry`) VALUES('149979'); +INSERT INTO `transmog_items` (`entry`) VALUES('149980'); +INSERT INTO `transmog_items` (`entry`) VALUES('149981'); +INSERT INTO `transmog_items` (`entry`) VALUES('149982'); +INSERT INTO `transmog_items` (`entry`) VALUES('149983'); +INSERT INTO `transmog_items` (`entry`) VALUES('149986'); +INSERT INTO `transmog_items` (`entry`) VALUES('149987'); +INSERT INTO `transmog_items` (`entry`) VALUES('149988'); +INSERT INTO `transmog_items` (`entry`) VALUES('149991'); +INSERT INTO `transmog_items` (`entry`) VALUES('149993'); +INSERT INTO `transmog_items` (`entry`) VALUES('149994'); +INSERT INTO `transmog_items` (`entry`) VALUES('149995'); +INSERT INTO `transmog_items` (`entry`) VALUES('149996'); +INSERT INTO `transmog_items` (`entry`) VALUES('149997'); +INSERT INTO `transmog_items` (`entry`) VALUES('149998'); +INSERT INTO `transmog_items` (`entry`) VALUES('150000'); +INSERT INTO `transmog_items` (`entry`) VALUES('150001'); +INSERT INTO `transmog_items` (`entry`) VALUES('150002'); +INSERT INTO `transmog_items` (`entry`) VALUES('150003'); +INSERT INTO `transmog_items` (`entry`) VALUES('150006'); +INSERT INTO `transmog_items` (`entry`) VALUES('150009'); +INSERT INTO `transmog_items` (`entry`) VALUES('150010'); +INSERT INTO `transmog_items` (`entry`) VALUES('150011'); +INSERT INTO `transmog_items` (`entry`) VALUES('150014'); +INSERT INTO `transmog_items` (`entry`) VALUES('150015'); +INSERT INTO `transmog_items` (`entry`) VALUES('150016'); +INSERT INTO `transmog_items` (`entry`) VALUES('150019'); +INSERT INTO `transmog_items` (`entry`) VALUES('150020'); +INSERT INTO `transmog_items` (`entry`) VALUES('150021'); +INSERT INTO `transmog_items` (`entry`) VALUES('150022'); +INSERT INTO `transmog_items` (`entry`) VALUES('150024'); +INSERT INTO `transmog_items` (`entry`) VALUES('150026'); +INSERT INTO `transmog_items` (`entry`) VALUES('150027'); +INSERT INTO `transmog_items` (`entry`) VALUES('150028'); +INSERT INTO `transmog_items` (`entry`) VALUES('150030'); +INSERT INTO `transmog_items` (`entry`) VALUES('150032'); +INSERT INTO `transmog_items` (`entry`) VALUES('150033'); +INSERT INTO `transmog_items` (`entry`) VALUES('150034'); +INSERT INTO `transmog_items` (`entry`) VALUES('150035'); +INSERT INTO `transmog_items` (`entry`) VALUES('150036'); +INSERT INTO `transmog_items` (`entry`) VALUES('150037'); +INSERT INTO `transmog_items` (`entry`) VALUES('150038'); +INSERT INTO `transmog_items` (`entry`) VALUES('150041'); +INSERT INTO `transmog_items` (`entry`) VALUES('150042'); +INSERT INTO `transmog_items` (`entry`) VALUES('150050'); +INSERT INTO `transmog_items` (`entry`) VALUES('150051'); +INSERT INTO `transmog_items` (`entry`) VALUES('150055'); +INSERT INTO `transmog_items` (`entry`) VALUES('150056'); +INSERT INTO `transmog_items` (`entry`) VALUES('150057'); +INSERT INTO `transmog_items` (`entry`) VALUES('150059'); +INSERT INTO `transmog_items` (`entry`) VALUES('150060'); +INSERT INTO `transmog_items` (`entry`) VALUES('150062'); +INSERT INTO `transmog_items` (`entry`) VALUES('150063'); +INSERT INTO `transmog_items` (`entry`) VALUES('150064'); +INSERT INTO `transmog_items` (`entry`) VALUES('150065'); +INSERT INTO `transmog_items` (`entry`) VALUES('150067'); +INSERT INTO `transmog_items` (`entry`) VALUES('150069'); +INSERT INTO `transmog_items` (`entry`) VALUES('150071'); +INSERT INTO `transmog_items` (`entry`) VALUES('150072'); +INSERT INTO `transmog_items` (`entry`) VALUES('150073'); +INSERT INTO `transmog_items` (`entry`) VALUES('150074'); +INSERT INTO `transmog_items` (`entry`) VALUES('150075'); +INSERT INTO `transmog_items` (`entry`) VALUES('150078'); +INSERT INTO `transmog_items` (`entry`) VALUES('150079'); +INSERT INTO `transmog_items` (`entry`) VALUES('150080'); +INSERT INTO `transmog_items` (`entry`) VALUES('150081'); +INSERT INTO `transmog_items` (`entry`) VALUES('150082'); +INSERT INTO `transmog_items` (`entry`) VALUES('150087'); +INSERT INTO `transmog_items` (`entry`) VALUES('150088'); +INSERT INTO `transmog_items` (`entry`) VALUES('150089'); +INSERT INTO `transmog_items` (`entry`) VALUES('150090'); +INSERT INTO `transmog_items` (`entry`) VALUES('150094'); +INSERT INTO `transmog_items` (`entry`) VALUES('150095'); +INSERT INTO `transmog_items` (`entry`) VALUES('150096'); +INSERT INTO `transmog_items` (`entry`) VALUES('150097'); +INSERT INTO `transmog_items` (`entry`) VALUES('150098'); +INSERT INTO `transmog_items` (`entry`) VALUES('150105'); +INSERT INTO `transmog_items` (`entry`) VALUES('150106'); +INSERT INTO `transmog_items` (`entry`) VALUES('150107'); +INSERT INTO `transmog_items` (`entry`) VALUES('150108'); +INSERT INTO `transmog_items` (`entry`) VALUES('150109'); +INSERT INTO `transmog_items` (`entry`) VALUES('150113'); +INSERT INTO `transmog_items` (`entry`) VALUES('150114'); +INSERT INTO `transmog_items` (`entry`) VALUES('150115'); +INSERT INTO `transmog_items` (`entry`) VALUES('150116'); +INSERT INTO `transmog_items` (`entry`) VALUES('150117'); +INSERT INTO `transmog_items` (`entry`) VALUES('150118'); +INSERT INTO `transmog_items` (`entry`) VALUES('150169'); +INSERT INTO `transmog_items` (`entry`) VALUES('150171'); +INSERT INTO `transmog_items` (`entry`) VALUES('150172'); +INSERT INTO `transmog_items` (`entry`) VALUES('150175'); +INSERT INTO `transmog_items` (`entry`) VALUES('150176'); +INSERT INTO `transmog_items` (`entry`) VALUES('150177'); +INSERT INTO `transmog_items` (`entry`) VALUES('150178'); +INSERT INTO `transmog_items` (`entry`) VALUES('150179'); +INSERT INTO `transmog_items` (`entry`) VALUES('150183'); +INSERT INTO `transmog_items` (`entry`) VALUES('150184'); +INSERT INTO `transmog_items` (`entry`) VALUES('150187'); +INSERT INTO `transmog_items` (`entry`) VALUES('150188'); +INSERT INTO `transmog_items` (`entry`) VALUES('150190'); +INSERT INTO `transmog_items` (`entry`) VALUES('150192'); +INSERT INTO `transmog_items` (`entry`) VALUES('150193'); +INSERT INTO `transmog_items` (`entry`) VALUES('150194'); +INSERT INTO `transmog_items` (`entry`) VALUES('150197'); +INSERT INTO `transmog_items` (`entry`) VALUES('150199'); +INSERT INTO `transmog_items` (`entry`) VALUES('150202'); +INSERT INTO `transmog_items` (`entry`) VALUES('150203'); +INSERT INTO `transmog_items` (`entry`) VALUES('150204'); +INSERT INTO `transmog_items` (`entry`) VALUES('150205'); +INSERT INTO `transmog_items` (`entry`) VALUES('150206'); +INSERT INTO `transmog_items` (`entry`) VALUES('150207'); +INSERT INTO `transmog_items` (`entry`) VALUES('150208'); +INSERT INTO `transmog_items` (`entry`) VALUES('150209'); +INSERT INTO `transmog_items` (`entry`) VALUES('150212'); +INSERT INTO `transmog_items` (`entry`) VALUES('150213'); +INSERT INTO `transmog_items` (`entry`) VALUES('150214'); +INSERT INTO `transmog_items` (`entry`) VALUES('150215'); +INSERT INTO `transmog_items` (`entry`) VALUES('150227'); +INSERT INTO `transmog_items` (`entry`) VALUES('150229'); +INSERT INTO `transmog_items` (`entry`) VALUES('150230'); +INSERT INTO `transmog_items` (`entry`) VALUES('150233'); +INSERT INTO `transmog_items` (`entry`) VALUES('150234'); +INSERT INTO `transmog_items` (`entry`) VALUES('150240'); +INSERT INTO `transmog_items` (`entry`) VALUES('150241'); +INSERT INTO `transmog_items` (`entry`) VALUES('150242'); +INSERT INTO `transmog_items` (`entry`) VALUES('150243'); +INSERT INTO `transmog_items` (`entry`) VALUES('150244'); +INSERT INTO `transmog_items` (`entry`) VALUES('150262'); +INSERT INTO `transmog_items` (`entry`) VALUES('150263'); +INSERT INTO `transmog_items` (`entry`) VALUES('150264'); +INSERT INTO `transmog_items` (`entry`) VALUES('150265'); +INSERT INTO `transmog_items` (`entry`) VALUES('150266'); +INSERT INTO `transmog_items` (`entry`) VALUES('150267'); +INSERT INTO `transmog_items` (`entry`) VALUES('150269'); +INSERT INTO `transmog_items` (`entry`) VALUES('150270'); +INSERT INTO `transmog_items` (`entry`) VALUES('150272'); +INSERT INTO `transmog_items` (`entry`) VALUES('150275'); +INSERT INTO `transmog_items` (`entry`) VALUES('150276'); +INSERT INTO `transmog_items` (`entry`) VALUES('150277'); +INSERT INTO `transmog_items` (`entry`) VALUES('150278'); +INSERT INTO `transmog_items` (`entry`) VALUES('150279'); +INSERT INTO `transmog_items` (`entry`) VALUES('150283'); +INSERT INTO `transmog_items` (`entry`) VALUES('150284'); +INSERT INTO `transmog_items` (`entry`) VALUES('150285'); +INSERT INTO `transmog_items` (`entry`) VALUES('150286'); +INSERT INTO `transmog_items` (`entry`) VALUES('150291'); +INSERT INTO `transmog_items` (`entry`) VALUES('150292'); +INSERT INTO `transmog_items` (`entry`) VALUES('150293'); +INSERT INTO `transmog_items` (`entry`) VALUES('150294'); +INSERT INTO `transmog_items` (`entry`) VALUES('150295'); +INSERT INTO `transmog_items` (`entry`) VALUES('150296'); +INSERT INTO `transmog_items` (`entry`) VALUES('150297'); +INSERT INTO `transmog_items` (`entry`) VALUES('150298'); +INSERT INTO `transmog_items` (`entry`) VALUES('150299'); +INSERT INTO `transmog_items` (`entry`) VALUES('150300'); +INSERT INTO `transmog_items` (`entry`) VALUES('150303'); +INSERT INTO `transmog_items` (`entry`) VALUES('150304'); +INSERT INTO `transmog_items` (`entry`) VALUES('150305'); +INSERT INTO `transmog_items` (`entry`) VALUES('150308'); +INSERT INTO `transmog_items` (`entry`) VALUES('150311'); +INSERT INTO `transmog_items` (`entry`) VALUES('150312'); +INSERT INTO `transmog_items` (`entry`) VALUES('150314'); +INSERT INTO `transmog_items` (`entry`) VALUES('150315'); +INSERT INTO `transmog_items` (`entry`) VALUES('150318'); +INSERT INTO `transmog_items` (`entry`) VALUES('150319'); +INSERT INTO `transmog_items` (`entry`) VALUES('150324'); +INSERT INTO `transmog_items` (`entry`) VALUES('150325'); +INSERT INTO `transmog_items` (`entry`) VALUES('150326'); +INSERT INTO `transmog_items` (`entry`) VALUES('150327'); +INSERT INTO `transmog_items` (`entry`) VALUES('150328'); +INSERT INTO `transmog_items` (`entry`) VALUES('150333'); +INSERT INTO `transmog_items` (`entry`) VALUES('150391'); +INSERT INTO `transmog_items` (`entry`) VALUES('150392'); +INSERT INTO `transmog_items` (`entry`) VALUES('150393'); +INSERT INTO `transmog_items` (`entry`) VALUES('150394'); +INSERT INTO `transmog_items` (`entry`) VALUES('150396'); +INSERT INTO `transmog_items` (`entry`) VALUES('150413'); +INSERT INTO `transmog_items` (`entry`) VALUES('150415'); +INSERT INTO `transmog_items` (`entry`) VALUES('150416'); +INSERT INTO `transmog_items` (`entry`) VALUES('150417'); +INSERT INTO `transmog_items` (`entry`) VALUES('150418'); +INSERT INTO `transmog_items` (`entry`) VALUES('150425'); +INSERT INTO `transmog_items` (`entry`) VALUES('150426'); +INSERT INTO `transmog_items` (`entry`) VALUES('150428'); +INSERT INTO `transmog_items` (`entry`) VALUES('150444'); +INSERT INTO `transmog_items` (`entry`) VALUES('150449'); +INSERT INTO `transmog_items` (`entry`) VALUES('150450'); +INSERT INTO `transmog_items` (`entry`) VALUES('150451'); +INSERT INTO `transmog_items` (`entry`) VALUES('150466'); +INSERT INTO `transmog_items` (`entry`) VALUES('150467'); +INSERT INTO `transmog_items` (`entry`) VALUES('150468'); +INSERT INTO `transmog_items` (`entry`) VALUES('150469'); +INSERT INTO `transmog_items` (`entry`) VALUES('150470'); +INSERT INTO `transmog_items` (`entry`) VALUES('150472'); +INSERT INTO `transmog_items` (`entry`) VALUES('150474'); +INSERT INTO `transmog_items` (`entry`) VALUES('150605'); +INSERT INTO `transmog_items` (`entry`) VALUES('150606'); +INSERT INTO `transmog_items` (`entry`) VALUES('150607'); +INSERT INTO `transmog_items` (`entry`) VALUES('150608'); +INSERT INTO `transmog_items` (`entry`) VALUES('150611'); +INSERT INTO `transmog_items` (`entry`) VALUES('150612'); +INSERT INTO `transmog_items` (`entry`) VALUES('150613'); +INSERT INTO `transmog_items` (`entry`) VALUES('150615'); +INSERT INTO `transmog_items` (`entry`) VALUES('150616'); +INSERT INTO `transmog_items` (`entry`) VALUES('150617'); +INSERT INTO `transmog_items` (`entry`) VALUES('150619'); +INSERT INTO `transmog_items` (`entry`) VALUES('150620'); +INSERT INTO `transmog_items` (`entry`) VALUES('150621'); +INSERT INTO `transmog_items` (`entry`) VALUES('150623'); +INSERT INTO `transmog_items` (`entry`) VALUES('150624'); +INSERT INTO `transmog_items` (`entry`) VALUES('150625'); +INSERT INTO `transmog_items` (`entry`) VALUES('150626'); +INSERT INTO `transmog_items` (`entry`) VALUES('150628'); +INSERT INTO `transmog_items` (`entry`) VALUES('150629'); +INSERT INTO `transmog_items` (`entry`) VALUES('150630'); +INSERT INTO `transmog_items` (`entry`) VALUES('150631'); +INSERT INTO `transmog_items` (`entry`) VALUES('150632'); +INSERT INTO `transmog_items` (`entry`) VALUES('150638'); +INSERT INTO `transmog_items` (`entry`) VALUES('150639'); +INSERT INTO `transmog_items` (`entry`) VALUES('150640'); +INSERT INTO `transmog_items` (`entry`) VALUES('150641'); +INSERT INTO `transmog_items` (`entry`) VALUES('150643'); +INSERT INTO `transmog_items` (`entry`) VALUES('150645'); +INSERT INTO `transmog_items` (`entry`) VALUES('150646'); +INSERT INTO `transmog_items` (`entry`) VALUES('150649'); +INSERT INTO `transmog_items` (`entry`) VALUES('150650'); +INSERT INTO `transmog_items` (`entry`) VALUES('150651'); +INSERT INTO `transmog_items` (`entry`) VALUES('150652'); +INSERT INTO `transmog_items` (`entry`) VALUES('150653'); +INSERT INTO `transmog_items` (`entry`) VALUES('150655'); +INSERT INTO `transmog_items` (`entry`) VALUES('150656'); +INSERT INTO `transmog_items` (`entry`) VALUES('150659'); +INSERT INTO `transmog_items` (`entry`) VALUES('150660'); +INSERT INTO `transmog_items` (`entry`) VALUES('150661'); +INSERT INTO `transmog_items` (`entry`) VALUES('150663'); +INSERT INTO `transmog_items` (`entry`) VALUES('150665'); +INSERT INTO `transmog_items` (`entry`) VALUES('150667'); +INSERT INTO `transmog_items` (`entry`) VALUES('150668'); +INSERT INTO `transmog_items` (`entry`) VALUES('150670'); +INSERT INTO `transmog_items` (`entry`) VALUES('150671'); +INSERT INTO `transmog_items` (`entry`) VALUES('150673'); +INSERT INTO `transmog_items` (`entry`) VALUES('150674'); +INSERT INTO `transmog_items` (`entry`) VALUES('150675'); +INSERT INTO `transmog_items` (`entry`) VALUES('150676'); +INSERT INTO `transmog_items` (`entry`) VALUES('150677'); +INSERT INTO `transmog_items` (`entry`) VALUES('150679'); +INSERT INTO `transmog_items` (`entry`) VALUES('150680'); +INSERT INTO `transmog_items` (`entry`) VALUES('150681'); +INSERT INTO `transmog_items` (`entry`) VALUES('150684'); +INSERT INTO `transmog_items` (`entry`) VALUES('150685'); +INSERT INTO `transmog_items` (`entry`) VALUES('150686'); +INSERT INTO `transmog_items` (`entry`) VALUES('150687'); +INSERT INTO `transmog_items` (`entry`) VALUES('150688'); +INSERT INTO `transmog_items` (`entry`) VALUES('150689'); +INSERT INTO `transmog_items` (`entry`) VALUES('150690'); +INSERT INTO `transmog_items` (`entry`) VALUES('150691'); +INSERT INTO `transmog_items` (`entry`) VALUES('150692'); +INSERT INTO `transmog_items` (`entry`) VALUES('150694'); +INSERT INTO `transmog_items` (`entry`) VALUES('150696'); +INSERT INTO `transmog_items` (`entry`) VALUES('150697'); +INSERT INTO `transmog_items` (`entry`) VALUES('150698'); +INSERT INTO `transmog_items` (`entry`) VALUES('150699'); +INSERT INTO `transmog_items` (`entry`) VALUES('150701'); +INSERT INTO `transmog_items` (`entry`) VALUES('150702'); +INSERT INTO `transmog_items` (`entry`) VALUES('150703'); +INSERT INTO `transmog_items` (`entry`) VALUES('150705'); +INSERT INTO `transmog_items` (`entry`) VALUES('150707'); +INSERT INTO `transmog_items` (`entry`) VALUES('150708'); +INSERT INTO `transmog_items` (`entry`) VALUES('150709'); +INSERT INTO `transmog_items` (`entry`) VALUES('150710'); +INSERT INTO `transmog_items` (`entry`) VALUES('150711'); +INSERT INTO `transmog_items` (`entry`) VALUES('150712'); +INSERT INTO `transmog_items` (`entry`) VALUES('150713'); +INSERT INTO `transmog_items` (`entry`) VALUES('150715'); +INSERT INTO `transmog_items` (`entry`) VALUES('150716'); +INSERT INTO `transmog_items` (`entry`) VALUES('150717'); +INSERT INTO `transmog_items` (`entry`) VALUES('150718'); +INSERT INTO `transmog_items` (`entry`) VALUES('150721'); +INSERT INTO `transmog_items` (`entry`) VALUES('150722'); +INSERT INTO `transmog_items` (`entry`) VALUES('150723'); +INSERT INTO `transmog_items` (`entry`) VALUES('150727'); +INSERT INTO `transmog_items` (`entry`) VALUES('150729'); +INSERT INTO `transmog_items` (`entry`) VALUES('150733'); +INSERT INTO `transmog_items` (`entry`) VALUES('150734'); +INSERT INTO `transmog_items` (`entry`) VALUES('150735'); +INSERT INTO `transmog_items` (`entry`) VALUES('150736'); +INSERT INTO `transmog_items` (`entry`) VALUES('150738'); +INSERT INTO `transmog_items` (`entry`) VALUES('150741'); +INSERT INTO `transmog_items` (`entry`) VALUES('150760'); +INSERT INTO `transmog_items` (`entry`) VALUES('150762'); +INSERT INTO `transmog_items` (`entry`) VALUES('150764'); +INSERT INTO `transmog_items` (`entry`) VALUES('150765'); +INSERT INTO `transmog_items` (`entry`) VALUES('150766'); +INSERT INTO `transmog_items` (`entry`) VALUES('150767'); +INSERT INTO `transmog_items` (`entry`) VALUES('150768'); +INSERT INTO `transmog_items` (`entry`) VALUES('150769'); +INSERT INTO `transmog_items` (`entry`) VALUES('150772'); +INSERT INTO `transmog_items` (`entry`) VALUES('150773'); +INSERT INTO `transmog_items` (`entry`) VALUES('150774'); +INSERT INTO `transmog_items` (`entry`) VALUES('150775'); +INSERT INTO `transmog_items` (`entry`) VALUES('150776'); +INSERT INTO `transmog_items` (`entry`) VALUES('150777'); +INSERT INTO `transmog_items` (`entry`) VALUES('150778'); +INSERT INTO `transmog_items` (`entry`) VALUES('150779'); +INSERT INTO `transmog_items` (`entry`) VALUES('150780'); +INSERT INTO `transmog_items` (`entry`) VALUES('150782'); +INSERT INTO `transmog_items` (`entry`) VALUES('150783'); +INSERT INTO `transmog_items` (`entry`) VALUES('150784'); +INSERT INTO `transmog_items` (`entry`) VALUES('150785'); +INSERT INTO `transmog_items` (`entry`) VALUES('150786'); +INSERT INTO `transmog_items` (`entry`) VALUES('150788'); +INSERT INTO `transmog_items` (`entry`) VALUES('150789'); +INSERT INTO `transmog_items` (`entry`) VALUES('150791'); +INSERT INTO `transmog_items` (`entry`) VALUES('150792'); +INSERT INTO `transmog_items` (`entry`) VALUES('150793'); +INSERT INTO `transmog_items` (`entry`) VALUES('150794'); +INSERT INTO `transmog_items` (`entry`) VALUES('150795'); +INSERT INTO `transmog_items` (`entry`) VALUES('150796'); +INSERT INTO `transmog_items` (`entry`) VALUES('150797'); +INSERT INTO `transmog_items` (`entry`) VALUES('150798'); +INSERT INTO `transmog_items` (`entry`) VALUES('150799'); +INSERT INTO `transmog_items` (`entry`) VALUES('150800'); +INSERT INTO `transmog_items` (`entry`) VALUES('150801'); +INSERT INTO `transmog_items` (`entry`) VALUES('150802'); +INSERT INTO `transmog_items` (`entry`) VALUES('150804'); +INSERT INTO `transmog_items` (`entry`) VALUES('150806'); +INSERT INTO `transmog_items` (`entry`) VALUES('150807'); +INSERT INTO `transmog_items` (`entry`) VALUES('150808'); +INSERT INTO `transmog_items` (`entry`) VALUES('150810'); +INSERT INTO `transmog_items` (`entry`) VALUES('150811'); +INSERT INTO `transmog_items` (`entry`) VALUES('150812'); +INSERT INTO `transmog_items` (`entry`) VALUES('150819'); +INSERT INTO `transmog_items` (`entry`) VALUES('150820'); +INSERT INTO `transmog_items` (`entry`) VALUES('150821'); +INSERT INTO `transmog_items` (`entry`) VALUES('150822'); +INSERT INTO `transmog_items` (`entry`) VALUES('150823'); +INSERT INTO `transmog_items` (`entry`) VALUES('150824'); +INSERT INTO `transmog_items` (`entry`) VALUES('150825'); +INSERT INTO `transmog_items` (`entry`) VALUES('150826'); +INSERT INTO `transmog_items` (`entry`) VALUES('150827'); +INSERT INTO `transmog_items` (`entry`) VALUES('150828'); +INSERT INTO `transmog_items` (`entry`) VALUES('150830'); +INSERT INTO `transmog_items` (`entry`) VALUES('150831'); +INSERT INTO `transmog_items` (`entry`) VALUES('150832'); +INSERT INTO `transmog_items` (`entry`) VALUES('150833'); +INSERT INTO `transmog_items` (`entry`) VALUES('150834'); +INSERT INTO `transmog_items` (`entry`) VALUES('150835'); +INSERT INTO `transmog_items` (`entry`) VALUES('150836'); +INSERT INTO `transmog_items` (`entry`) VALUES('150837'); +INSERT INTO `transmog_items` (`entry`) VALUES('150838'); +INSERT INTO `transmog_items` (`entry`) VALUES('150839'); +INSERT INTO `transmog_items` (`entry`) VALUES('150841'); +INSERT INTO `transmog_items` (`entry`) VALUES('150842'); +INSERT INTO `transmog_items` (`entry`) VALUES('150843'); +INSERT INTO `transmog_items` (`entry`) VALUES('150844'); +INSERT INTO `transmog_items` (`entry`) VALUES('150845'); +INSERT INTO `transmog_items` (`entry`) VALUES('150846'); +INSERT INTO `transmog_items` (`entry`) VALUES('150847'); +INSERT INTO `transmog_items` (`entry`) VALUES('150848'); +INSERT INTO `transmog_items` (`entry`) VALUES('150849'); +INSERT INTO `transmog_items` (`entry`) VALUES('150850'); +INSERT INTO `transmog_items` (`entry`) VALUES('150853'); +INSERT INTO `transmog_items` (`entry`) VALUES('150854'); +INSERT INTO `transmog_items` (`entry`) VALUES('150855'); +INSERT INTO `transmog_items` (`entry`) VALUES('150856'); +INSERT INTO `transmog_items` (`entry`) VALUES('150857'); +INSERT INTO `transmog_items` (`entry`) VALUES('150858'); +INSERT INTO `transmog_items` (`entry`) VALUES('150859'); +INSERT INTO `transmog_items` (`entry`) VALUES('150860'); +INSERT INTO `transmog_items` (`entry`) VALUES('150861'); +INSERT INTO `transmog_items` (`entry`) VALUES('150862'); +INSERT INTO `transmog_items` (`entry`) VALUES('150863'); +INSERT INTO `transmog_items` (`entry`) VALUES('150864'); +INSERT INTO `transmog_items` (`entry`) VALUES('150865'); +INSERT INTO `transmog_items` (`entry`) VALUES('150866'); +INSERT INTO `transmog_items` (`entry`) VALUES('150867'); +INSERT INTO `transmog_items` (`entry`) VALUES('150868'); +INSERT INTO `transmog_items` (`entry`) VALUES('150869'); +INSERT INTO `transmog_items` (`entry`) VALUES('150965'); +INSERT INTO `transmog_items` (`entry`) VALUES('150967'); +INSERT INTO `transmog_items` (`entry`) VALUES('150968'); +INSERT INTO `transmog_items` (`entry`) VALUES('150969'); +INSERT INTO `transmog_items` (`entry`) VALUES('150970'); +INSERT INTO `transmog_items` (`entry`) VALUES('150971'); +INSERT INTO `transmog_items` (`entry`) VALUES('150972'); +INSERT INTO `transmog_items` (`entry`) VALUES('150973'); +INSERT INTO `transmog_items` (`entry`) VALUES('150974'); +INSERT INTO `transmog_items` (`entry`) VALUES('150975'); +INSERT INTO `transmog_items` (`entry`) VALUES('150976'); +INSERT INTO `transmog_items` (`entry`) VALUES('150977'); +INSERT INTO `transmog_items` (`entry`) VALUES('150978'); +INSERT INTO `transmog_items` (`entry`) VALUES('150979'); +INSERT INTO `transmog_items` (`entry`) VALUES('150980'); +INSERT INTO `transmog_items` (`entry`) VALUES('150981'); +INSERT INTO `transmog_items` (`entry`) VALUES('150982'); +INSERT INTO `transmog_items` (`entry`) VALUES('150983'); +INSERT INTO `transmog_items` (`entry`) VALUES('150984'); +INSERT INTO `transmog_items` (`entry`) VALUES('150985'); +INSERT INTO `transmog_items` (`entry`) VALUES('150987'); +INSERT INTO `transmog_items` (`entry`) VALUES('150988'); +INSERT INTO `transmog_items` (`entry`) VALUES('150989'); +INSERT INTO `transmog_items` (`entry`) VALUES('150990'); +INSERT INTO `transmog_items` (`entry`) VALUES('150991'); +INSERT INTO `transmog_items` (`entry`) VALUES('150992'); +INSERT INTO `transmog_items` (`entry`) VALUES('150993'); +INSERT INTO `transmog_items` (`entry`) VALUES('150994'); +INSERT INTO `transmog_items` (`entry`) VALUES('150995'); +INSERT INTO `transmog_items` (`entry`) VALUES('150996'); +INSERT INTO `transmog_items` (`entry`) VALUES('150997'); +INSERT INTO `transmog_items` (`entry`) VALUES('150999'); +INSERT INTO `transmog_items` (`entry`) VALUES('151000'); +INSERT INTO `transmog_items` (`entry`) VALUES('151002'); +INSERT INTO `transmog_items` (`entry`) VALUES('151003'); +INSERT INTO `transmog_items` (`entry`) VALUES('151004'); +INSERT INTO `transmog_items` (`entry`) VALUES('151005'); +INSERT INTO `transmog_items` (`entry`) VALUES('151006'); +INSERT INTO `transmog_items` (`entry`) VALUES('151007'); +INSERT INTO `transmog_items` (`entry`) VALUES('151009'); +INSERT INTO `transmog_items` (`entry`) VALUES('151011'); +INSERT INTO `transmog_items` (`entry`) VALUES('151013'); +INSERT INTO `transmog_items` (`entry`) VALUES('151014'); +INSERT INTO `transmog_items` (`entry`) VALUES('151015'); +INSERT INTO `transmog_items` (`entry`) VALUES('151017'); +INSERT INTO `transmog_items` (`entry`) VALUES('151018'); +INSERT INTO `transmog_items` (`entry`) VALUES('151019'); +INSERT INTO `transmog_items` (`entry`) VALUES('151020'); +INSERT INTO `transmog_items` (`entry`) VALUES('151022'); +INSERT INTO `transmog_items` (`entry`) VALUES('151023'); +INSERT INTO `transmog_items` (`entry`) VALUES('151025'); +INSERT INTO `transmog_items` (`entry`) VALUES('151125'); +INSERT INTO `transmog_items` (`entry`) VALUES('151126'); +INSERT INTO `transmog_items` (`entry`) VALUES('151127'); +INSERT INTO `transmog_items` (`entry`) VALUES('151128'); +INSERT INTO `transmog_items` (`entry`) VALUES('151129'); +INSERT INTO `transmog_items` (`entry`) VALUES('151130'); +INSERT INTO `transmog_items` (`entry`) VALUES('151131'); +INSERT INTO `transmog_items` (`entry`) VALUES('151132'); +INSERT INTO `transmog_items` (`entry`) VALUES('151133'); +INSERT INTO `transmog_items` (`entry`) VALUES('151134'); +INSERT INTO `transmog_items` (`entry`) VALUES('151135'); +INSERT INTO `transmog_items` (`entry`) VALUES('151136'); +INSERT INTO `transmog_items` (`entry`) VALUES('151137'); +INSERT INTO `transmog_items` (`entry`) VALUES('151138'); +INSERT INTO `transmog_items` (`entry`) VALUES('151139'); +INSERT INTO `transmog_items` (`entry`) VALUES('151140'); +INSERT INTO `transmog_items` (`entry`) VALUES('151141'); +INSERT INTO `transmog_items` (`entry`) VALUES('151142'); +INSERT INTO `transmog_items` (`entry`) VALUES('151143'); +INSERT INTO `transmog_items` (`entry`) VALUES('151144'); +INSERT INTO `transmog_items` (`entry`) VALUES('151145'); +INSERT INTO `transmog_items` (`entry`) VALUES('151146'); +INSERT INTO `transmog_items` (`entry`) VALUES('151147'); +INSERT INTO `transmog_items` (`entry`) VALUES('151148'); +INSERT INTO `transmog_items` (`entry`) VALUES('151149'); +INSERT INTO `transmog_items` (`entry`) VALUES('151150'); +INSERT INTO `transmog_items` (`entry`) VALUES('151151'); +INSERT INTO `transmog_items` (`entry`) VALUES('151152'); +INSERT INTO `transmog_items` (`entry`) VALUES('151153'); +INSERT INTO `transmog_items` (`entry`) VALUES('151154'); +INSERT INTO `transmog_items` (`entry`) VALUES('151155'); +INSERT INTO `transmog_items` (`entry`) VALUES('151156'); +INSERT INTO `transmog_items` (`entry`) VALUES('151157'); +INSERT INTO `transmog_items` (`entry`) VALUES('151158'); +INSERT INTO `transmog_items` (`entry`) VALUES('151159'); +INSERT INTO `transmog_items` (`entry`) VALUES('151160'); +INSERT INTO `transmog_items` (`entry`) VALUES('151161'); +INSERT INTO `transmog_items` (`entry`) VALUES('151162'); +INSERT INTO `transmog_items` (`entry`) VALUES('151163'); +INSERT INTO `transmog_items` (`entry`) VALUES('151164'); +INSERT INTO `transmog_items` (`entry`) VALUES('151165'); +INSERT INTO `transmog_items` (`entry`) VALUES('151166'); +INSERT INTO `transmog_items` (`entry`) VALUES('151167'); +INSERT INTO `transmog_items` (`entry`) VALUES('151168'); +INSERT INTO `transmog_items` (`entry`) VALUES('151169'); +INSERT INTO `transmog_items` (`entry`) VALUES('151170'); +INSERT INTO `transmog_items` (`entry`) VALUES('151171'); +INSERT INTO `transmog_items` (`entry`) VALUES('151172'); +INSERT INTO `transmog_items` (`entry`) VALUES('151173'); +INSERT INTO `transmog_items` (`entry`) VALUES('151174'); +INSERT INTO `transmog_items` (`entry`) VALUES('151175'); +INSERT INTO `transmog_items` (`entry`) VALUES('151176'); +INSERT INTO `transmog_items` (`entry`) VALUES('151177'); +INSERT INTO `transmog_items` (`entry`) VALUES('151178'); +INSERT INTO `transmog_items` (`entry`) VALUES('151179'); +INSERT INTO `transmog_items` (`entry`) VALUES('151180'); +INSERT INTO `transmog_items` (`entry`) VALUES('151181'); +INSERT INTO `transmog_items` (`entry`) VALUES('151182'); +INSERT INTO `transmog_items` (`entry`) VALUES('151183'); +INSERT INTO `transmog_items` (`entry`) VALUES('151184'); +INSERT INTO `transmog_items` (`entry`) VALUES('151185'); +INSERT INTO `transmog_items` (`entry`) VALUES('151186'); +INSERT INTO `transmog_items` (`entry`) VALUES('151187'); +INSERT INTO `transmog_items` (`entry`) VALUES('151188'); +INSERT INTO `transmog_items` (`entry`) VALUES('151189'); +INSERT INTO `transmog_items` (`entry`) VALUES('151190'); +INSERT INTO `transmog_items` (`entry`) VALUES('151191'); +INSERT INTO `transmog_items` (`entry`) VALUES('151192'); +INSERT INTO `transmog_items` (`entry`) VALUES('151193'); +INSERT INTO `transmog_items` (`entry`) VALUES('151194'); +INSERT INTO `transmog_items` (`entry`) VALUES('151195'); +INSERT INTO `transmog_items` (`entry`) VALUES('151196'); +INSERT INTO `transmog_items` (`entry`) VALUES('151197'); +INSERT INTO `transmog_items` (`entry`) VALUES('151198'); +INSERT INTO `transmog_items` (`entry`) VALUES('151199'); +INSERT INTO `transmog_items` (`entry`) VALUES('151200'); +INSERT INTO `transmog_items` (`entry`) VALUES('151201'); +INSERT INTO `transmog_items` (`entry`) VALUES('151202'); +INSERT INTO `transmog_items` (`entry`) VALUES('151203'); +INSERT INTO `transmog_items` (`entry`) VALUES('151204'); +INSERT INTO `transmog_items` (`entry`) VALUES('151205'); +INSERT INTO `transmog_items` (`entry`) VALUES('151206'); +INSERT INTO `transmog_items` (`entry`) VALUES('151207'); +INSERT INTO `transmog_items` (`entry`) VALUES('151208'); +INSERT INTO `transmog_items` (`entry`) VALUES('151209'); +INSERT INTO `transmog_items` (`entry`) VALUES('151210'); +INSERT INTO `transmog_items` (`entry`) VALUES('151211'); +INSERT INTO `transmog_items` (`entry`) VALUES('151212'); +INSERT INTO `transmog_items` (`entry`) VALUES('151213'); +INSERT INTO `transmog_items` (`entry`) VALUES('151214'); +INSERT INTO `transmog_items` (`entry`) VALUES('151215'); +INSERT INTO `transmog_items` (`entry`) VALUES('151216'); +INSERT INTO `transmog_items` (`entry`) VALUES('151217'); +INSERT INTO `transmog_items` (`entry`) VALUES('151218'); +INSERT INTO `transmog_items` (`entry`) VALUES('151219'); +INSERT INTO `transmog_items` (`entry`) VALUES('151220'); +INSERT INTO `transmog_items` (`entry`) VALUES('151221'); +INSERT INTO `transmog_items` (`entry`) VALUES('151222'); +INSERT INTO `transmog_items` (`entry`) VALUES('151223'); +INSERT INTO `transmog_items` (`entry`) VALUES('151224'); +INSERT INTO `transmog_items` (`entry`) VALUES('151225'); +INSERT INTO `transmog_items` (`entry`) VALUES('151226'); +INSERT INTO `transmog_items` (`entry`) VALUES('151227'); +INSERT INTO `transmog_items` (`entry`) VALUES('151228'); +INSERT INTO `transmog_items` (`entry`) VALUES('151229'); +INSERT INTO `transmog_items` (`entry`) VALUES('151230'); +INSERT INTO `transmog_items` (`entry`) VALUES('151231'); +INSERT INTO `transmog_items` (`entry`) VALUES('151232'); +INSERT INTO `transmog_items` (`entry`) VALUES('151233'); +INSERT INTO `transmog_items` (`entry`) VALUES('151234'); +INSERT INTO `transmog_items` (`entry`) VALUES('151235'); +INSERT INTO `transmog_items` (`entry`) VALUES('151236'); +INSERT INTO `transmog_items` (`entry`) VALUES('151237'); +INSERT INTO `transmog_items` (`entry`) VALUES('151238'); +INSERT INTO `transmog_items` (`entry`) VALUES('151239'); +INSERT INTO `transmog_items` (`entry`) VALUES('151240'); +INSERT INTO `transmog_items` (`entry`) VALUES('151241'); +INSERT INTO `transmog_items` (`entry`) VALUES('151242'); +INSERT INTO `transmog_items` (`entry`) VALUES('151243'); +INSERT INTO `transmog_items` (`entry`) VALUES('151244'); +INSERT INTO `transmog_items` (`entry`) VALUES('151245'); +INSERT INTO `transmog_items` (`entry`) VALUES('151246'); +INSERT INTO `transmog_items` (`entry`) VALUES('151247'); +INSERT INTO `transmog_items` (`entry`) VALUES('151248'); +INSERT INTO `transmog_items` (`entry`) VALUES('151249'); +INSERT INTO `transmog_items` (`entry`) VALUES('151250'); +INSERT INTO `transmog_items` (`entry`) VALUES('151251'); +INSERT INTO `transmog_items` (`entry`) VALUES('151252'); +INSERT INTO `transmog_items` (`entry`) VALUES('151253'); +INSERT INTO `transmog_items` (`entry`) VALUES('151254'); +INSERT INTO `transmog_items` (`entry`) VALUES('151255'); +INSERT INTO `transmog_items` (`entry`) VALUES('151256'); +INSERT INTO `transmog_items` (`entry`) VALUES('151257'); +INSERT INTO `transmog_items` (`entry`) VALUES('151258'); +INSERT INTO `transmog_items` (`entry`) VALUES('151259'); +INSERT INTO `transmog_items` (`entry`) VALUES('151260'); +INSERT INTO `transmog_items` (`entry`) VALUES('151261'); +INSERT INTO `transmog_items` (`entry`) VALUES('151262'); +INSERT INTO `transmog_items` (`entry`) VALUES('151263'); +INSERT INTO `transmog_items` (`entry`) VALUES('151264'); +INSERT INTO `transmog_items` (`entry`) VALUES('151265'); +INSERT INTO `transmog_items` (`entry`) VALUES('151266'); +INSERT INTO `transmog_items` (`entry`) VALUES('151267'); +INSERT INTO `transmog_items` (`entry`) VALUES('151268'); +INSERT INTO `transmog_items` (`entry`) VALUES('151269'); +INSERT INTO `transmog_items` (`entry`) VALUES('151270'); +INSERT INTO `transmog_items` (`entry`) VALUES('151271'); +INSERT INTO `transmog_items` (`entry`) VALUES('151272'); +INSERT INTO `transmog_items` (`entry`) VALUES('151273'); +INSERT INTO `transmog_items` (`entry`) VALUES('151274'); +INSERT INTO `transmog_items` (`entry`) VALUES('151275'); +INSERT INTO `transmog_items` (`entry`) VALUES('151276'); +INSERT INTO `transmog_items` (`entry`) VALUES('151277'); +INSERT INTO `transmog_items` (`entry`) VALUES('151278'); +INSERT INTO `transmog_items` (`entry`) VALUES('151279'); +INSERT INTO `transmog_items` (`entry`) VALUES('151280'); +INSERT INTO `transmog_items` (`entry`) VALUES('151281'); +INSERT INTO `transmog_items` (`entry`) VALUES('151282'); +INSERT INTO `transmog_items` (`entry`) VALUES('151283'); +INSERT INTO `transmog_items` (`entry`) VALUES('151284'); +INSERT INTO `transmog_items` (`entry`) VALUES('151285'); +INSERT INTO `transmog_items` (`entry`) VALUES('151286'); +INSERT INTO `transmog_items` (`entry`) VALUES('151287'); +INSERT INTO `transmog_items` (`entry`) VALUES('151288'); +INSERT INTO `transmog_items` (`entry`) VALUES('151289'); +INSERT INTO `transmog_items` (`entry`) VALUES('151290'); +INSERT INTO `transmog_items` (`entry`) VALUES('151291'); +INSERT INTO `transmog_items` (`entry`) VALUES('151292'); +INSERT INTO `transmog_items` (`entry`) VALUES('151293'); +INSERT INTO `transmog_items` (`entry`) VALUES('151294'); +INSERT INTO `transmog_items` (`entry`) VALUES('151295'); +INSERT INTO `transmog_items` (`entry`) VALUES('151296'); +INSERT INTO `transmog_items` (`entry`) VALUES('151297'); +INSERT INTO `transmog_items` (`entry`) VALUES('151298'); +INSERT INTO `transmog_items` (`entry`) VALUES('151299'); +INSERT INTO `transmog_items` (`entry`) VALUES('151300'); +INSERT INTO `transmog_items` (`entry`) VALUES('151301'); +INSERT INTO `transmog_items` (`entry`) VALUES('151302'); +INSERT INTO `transmog_items` (`entry`) VALUES('151303'); +INSERT INTO `transmog_items` (`entry`) VALUES('151304'); +INSERT INTO `transmog_items` (`entry`) VALUES('151305'); +INSERT INTO `transmog_items` (`entry`) VALUES('151306'); +INSERT INTO `transmog_items` (`entry`) VALUES('151307'); +INSERT INTO `transmog_items` (`entry`) VALUES('151308'); +INSERT INTO `transmog_items` (`entry`) VALUES('151309'); +INSERT INTO `transmog_items` (`entry`) VALUES('151310'); +INSERT INTO `transmog_items` (`entry`) VALUES('151311'); +INSERT INTO `transmog_items` (`entry`) VALUES('151312'); +INSERT INTO `transmog_items` (`entry`) VALUES('151313'); +INSERT INTO `transmog_items` (`entry`) VALUES('151314'); +INSERT INTO `transmog_items` (`entry`) VALUES('151325'); +INSERT INTO `transmog_items` (`entry`) VALUES('151326'); +INSERT INTO `transmog_items` (`entry`) VALUES('151327'); +INSERT INTO `transmog_items` (`entry`) VALUES('151328'); +INSERT INTO `transmog_items` (`entry`) VALUES('151329'); +INSERT INTO `transmog_items` (`entry`) VALUES('151330'); +INSERT INTO `transmog_items` (`entry`) VALUES('151332'); +INSERT INTO `transmog_items` (`entry`) VALUES('151334'); +INSERT INTO `transmog_items` (`entry`) VALUES('151337'); +INSERT INTO `transmog_items` (`entry`) VALUES('151338'); +INSERT INTO `transmog_items` (`entry`) VALUES('151339'); +INSERT INTO `transmog_items` (`entry`) VALUES('151340'); +INSERT INTO `transmog_items` (`entry`) VALUES('151341'); +INSERT INTO `transmog_items` (`entry`) VALUES('151342'); +INSERT INTO `transmog_items` (`entry`) VALUES('151343'); +INSERT INTO `transmog_items` (`entry`) VALUES('151344'); +INSERT INTO `transmog_items` (`entry`) VALUES('151345'); +INSERT INTO `transmog_items` (`entry`) VALUES('151346'); +INSERT INTO `transmog_items` (`entry`) VALUES('151348'); +INSERT INTO `transmog_items` (`entry`) VALUES('151350'); +INSERT INTO `transmog_items` (`entry`) VALUES('151351'); +INSERT INTO `transmog_items` (`entry`) VALUES('151352'); +INSERT INTO `transmog_items` (`entry`) VALUES('151354'); +INSERT INTO `transmog_items` (`entry`) VALUES('151356'); +INSERT INTO `transmog_items` (`entry`) VALUES('151359'); +INSERT INTO `transmog_items` (`entry`) VALUES('151360'); +INSERT INTO `transmog_items` (`entry`) VALUES('151361'); +INSERT INTO `transmog_items` (`entry`) VALUES('151362'); +INSERT INTO `transmog_items` (`entry`) VALUES('151363'); +INSERT INTO `transmog_items` (`entry`) VALUES('151364'); +INSERT INTO `transmog_items` (`entry`) VALUES('151365'); +INSERT INTO `transmog_items` (`entry`) VALUES('151366'); +INSERT INTO `transmog_items` (`entry`) VALUES('151367'); +INSERT INTO `transmog_items` (`entry`) VALUES('151368'); +INSERT INTO `transmog_items` (`entry`) VALUES('151369'); +INSERT INTO `transmog_items` (`entry`) VALUES('151370'); +INSERT INTO `transmog_items` (`entry`) VALUES('151371'); +INSERT INTO `transmog_items` (`entry`) VALUES('151372'); +INSERT INTO `transmog_items` (`entry`) VALUES('151373'); +INSERT INTO `transmog_items` (`entry`) VALUES('151374'); +INSERT INTO `transmog_items` (`entry`) VALUES('151375'); +INSERT INTO `transmog_items` (`entry`) VALUES('151376'); +INSERT INTO `transmog_items` (`entry`) VALUES('151379'); +INSERT INTO `transmog_items` (`entry`) VALUES('151380'); +INSERT INTO `transmog_items` (`entry`) VALUES('151382'); +INSERT INTO `transmog_items` (`entry`) VALUES('151383'); +INSERT INTO `transmog_items` (`entry`) VALUES('151384'); +INSERT INTO `transmog_items` (`entry`) VALUES('151385'); +INSERT INTO `transmog_items` (`entry`) VALUES('151386'); +INSERT INTO `transmog_items` (`entry`) VALUES('151388'); +INSERT INTO `transmog_items` (`entry`) VALUES('151389'); +INSERT INTO `transmog_items` (`entry`) VALUES('151394'); +INSERT INTO `transmog_items` (`entry`) VALUES('151395'); +INSERT INTO `transmog_items` (`entry`) VALUES('151397'); +INSERT INTO `transmog_items` (`entry`) VALUES('151398'); +INSERT INTO `transmog_items` (`entry`) VALUES('151399'); +INSERT INTO `transmog_items` (`entry`) VALUES('151406'); +INSERT INTO `transmog_items` (`entry`) VALUES('151410'); +INSERT INTO `transmog_items` (`entry`) VALUES('151411'); +INSERT INTO `transmog_items` (`entry`) VALUES('151412'); +INSERT INTO `transmog_items` (`entry`) VALUES('151413'); +INSERT INTO `transmog_items` (`entry`) VALUES('151414'); +INSERT INTO `transmog_items` (`entry`) VALUES('151415'); +INSERT INTO `transmog_items` (`entry`) VALUES('151416'); +INSERT INTO `transmog_items` (`entry`) VALUES('151418'); +INSERT INTO `transmog_items` (`entry`) VALUES('151419'); +INSERT INTO `transmog_items` (`entry`) VALUES('151420'); +INSERT INTO `transmog_items` (`entry`) VALUES('151421'); +INSERT INTO `transmog_items` (`entry`) VALUES('151422'); +INSERT INTO `transmog_items` (`entry`) VALUES('151424'); +INSERT INTO `transmog_items` (`entry`) VALUES('151425'); +INSERT INTO `transmog_items` (`entry`) VALUES('151426'); +INSERT INTO `transmog_items` (`entry`) VALUES('151427'); +INSERT INTO `transmog_items` (`entry`) VALUES('151428'); +INSERT INTO `transmog_items` (`entry`) VALUES('151430'); +INSERT INTO `transmog_items` (`entry`) VALUES('151433'); +INSERT INTO `transmog_items` (`entry`) VALUES('151434'); +INSERT INTO `transmog_items` (`entry`) VALUES('151435'); +INSERT INTO `transmog_items` (`entry`) VALUES('151436'); +INSERT INTO `transmog_items` (`entry`) VALUES('151438'); +INSERT INTO `transmog_items` (`entry`) VALUES('151441'); +INSERT INTO `transmog_items` (`entry`) VALUES('151442'); +INSERT INTO `transmog_items` (`entry`) VALUES('151443'); +INSERT INTO `transmog_items` (`entry`) VALUES('151444'); +INSERT INTO `transmog_items` (`entry`) VALUES('151445'); +INSERT INTO `transmog_items` (`entry`) VALUES('151446'); +INSERT INTO `transmog_items` (`entry`) VALUES('151449'); +INSERT INTO `transmog_items` (`entry`) VALUES('151450'); +INSERT INTO `transmog_items` (`entry`) VALUES('151451'); +INSERT INTO `transmog_items` (`entry`) VALUES('151452'); +INSERT INTO `transmog_items` (`entry`) VALUES('151453'); +INSERT INTO `transmog_items` (`entry`) VALUES('151454'); +INSERT INTO `transmog_items` (`entry`) VALUES('151455'); +INSERT INTO `transmog_items` (`entry`) VALUES('151458'); +INSERT INTO `transmog_items` (`entry`) VALUES('151459'); +INSERT INTO `transmog_items` (`entry`) VALUES('151460'); +INSERT INTO `transmog_items` (`entry`) VALUES('151461'); +INSERT INTO `transmog_items` (`entry`) VALUES('151462'); +INSERT INTO `transmog_items` (`entry`) VALUES('151463'); +INSERT INTO `transmog_items` (`entry`) VALUES('151464'); +INSERT INTO `transmog_items` (`entry`) VALUES('151465'); +INSERT INTO `transmog_items` (`entry`) VALUES('151466'); +INSERT INTO `transmog_items` (`entry`) VALUES('151467'); +INSERT INTO `transmog_items` (`entry`) VALUES('151468'); +INSERT INTO `transmog_items` (`entry`) VALUES('151469'); +INSERT INTO `transmog_items` (`entry`) VALUES('151470'); +INSERT INTO `transmog_items` (`entry`) VALUES('151471'); +INSERT INTO `transmog_items` (`entry`) VALUES('151473'); +INSERT INTO `transmog_items` (`entry`) VALUES('151474'); +INSERT INTO `transmog_items` (`entry`) VALUES('151475'); +INSERT INTO `transmog_items` (`entry`) VALUES('151476'); +INSERT INTO `transmog_items` (`entry`) VALUES('151477'); +INSERT INTO `transmog_items` (`entry`) VALUES('151479'); +INSERT INTO `transmog_items` (`entry`) VALUES('151480'); +INSERT INTO `transmog_items` (`entry`) VALUES('151481'); +INSERT INTO `transmog_items` (`entry`) VALUES('151482'); +INSERT INTO `transmog_items` (`entry`) VALUES('151483'); +INSERT INTO `transmog_items` (`entry`) VALUES('151484'); +INSERT INTO `transmog_items` (`entry`) VALUES('151485'); +INSERT INTO `transmog_items` (`entry`) VALUES('151486'); +INSERT INTO `transmog_items` (`entry`) VALUES('151487'); +INSERT INTO `transmog_items` (`entry`) VALUES('151488'); +INSERT INTO `transmog_items` (`entry`) VALUES('151489'); +INSERT INTO `transmog_items` (`entry`) VALUES('151490'); +INSERT INTO `transmog_items` (`entry`) VALUES('151491'); +INSERT INTO `transmog_items` (`entry`) VALUES('151492'); +INSERT INTO `transmog_items` (`entry`) VALUES('151493'); +INSERT INTO `transmog_items` (`entry`) VALUES('151494'); +INSERT INTO `transmog_items` (`entry`) VALUES('151495'); +INSERT INTO `transmog_items` (`entry`) VALUES('151496'); +INSERT INTO `transmog_items` (`entry`) VALUES('151497'); +INSERT INTO `transmog_items` (`entry`) VALUES('151498'); +INSERT INTO `transmog_items` (`entry`) VALUES('151499'); +INSERT INTO `transmog_items` (`entry`) VALUES('151500'); +INSERT INTO `transmog_items` (`entry`) VALUES('151502'); +INSERT INTO `transmog_items` (`entry`) VALUES('151503'); +INSERT INTO `transmog_items` (`entry`) VALUES('151504'); +INSERT INTO `transmog_items` (`entry`) VALUES('151505'); +INSERT INTO `transmog_items` (`entry`) VALUES('151506'); +INSERT INTO `transmog_items` (`entry`) VALUES('151508'); +INSERT INTO `transmog_items` (`entry`) VALUES('151509'); +INSERT INTO `transmog_items` (`entry`) VALUES('151510'); +INSERT INTO `transmog_items` (`entry`) VALUES('151511'); +INSERT INTO `transmog_items` (`entry`) VALUES('151512'); +INSERT INTO `transmog_items` (`entry`) VALUES('151514'); +INSERT INTO `transmog_items` (`entry`) VALUES('151517'); +INSERT INTO `transmog_items` (`entry`) VALUES('151518'); +INSERT INTO `transmog_items` (`entry`) VALUES('151519'); +INSERT INTO `transmog_items` (`entry`) VALUES('151520'); +INSERT INTO `transmog_items` (`entry`) VALUES('151523'); +INSERT INTO `transmog_items` (`entry`) VALUES('151524'); +INSERT INTO `transmog_items` (`entry`) VALUES('151527'); +INSERT INTO `transmog_items` (`entry`) VALUES('151528'); +INSERT INTO `transmog_items` (`entry`) VALUES('151529'); +INSERT INTO `transmog_items` (`entry`) VALUES('151530'); +INSERT INTO `transmog_items` (`entry`) VALUES('151531'); +INSERT INTO `transmog_items` (`entry`) VALUES('151532'); +INSERT INTO `transmog_items` (`entry`) VALUES('151533'); +INSERT INTO `transmog_items` (`entry`) VALUES('151535'); +INSERT INTO `transmog_items` (`entry`) VALUES('151536'); +INSERT INTO `transmog_items` (`entry`) VALUES('151537'); +INSERT INTO `transmog_items` (`entry`) VALUES('151538'); +INSERT INTO `transmog_items` (`entry`) VALUES('151539'); +INSERT INTO `transmog_items` (`entry`) VALUES('151540'); +INSERT INTO `transmog_items` (`entry`) VALUES('151541'); +INSERT INTO `transmog_items` (`entry`) VALUES('151542'); +INSERT INTO `transmog_items` (`entry`) VALUES('151543'); +INSERT INTO `transmog_items` (`entry`) VALUES('151544'); +INSERT INTO `transmog_items` (`entry`) VALUES('151545'); +INSERT INTO `transmog_items` (`entry`) VALUES('151550'); +INSERT INTO `transmog_items` (`entry`) VALUES('151551'); +INSERT INTO `transmog_items` (`entry`) VALUES('151552'); +INSERT INTO `transmog_items` (`entry`) VALUES('151553'); +INSERT INTO `transmog_items` (`entry`) VALUES('151554'); +INSERT INTO `transmog_items` (`entry`) VALUES('151555'); +INSERT INTO `transmog_items` (`entry`) VALUES('151556'); +INSERT INTO `transmog_items` (`entry`) VALUES('151561'); +INSERT INTO `transmog_items` (`entry`) VALUES('151563'); +INSERT INTO `transmog_items` (`entry`) VALUES('151564'); +INSERT INTO `transmog_items` (`entry`) VALUES('151565'); +INSERT INTO `transmog_items` (`entry`) VALUES('151566'); +INSERT INTO `transmog_items` (`entry`) VALUES('151570'); +INSERT INTO `transmog_items` (`entry`) VALUES('151571'); +INSERT INTO `transmog_items` (`entry`) VALUES('151572'); +INSERT INTO `transmog_items` (`entry`) VALUES('151573'); +INSERT INTO `transmog_items` (`entry`) VALUES('151574'); +INSERT INTO `transmog_items` (`entry`) VALUES('151575'); +INSERT INTO `transmog_items` (`entry`) VALUES('151576'); +INSERT INTO `transmog_items` (`entry`) VALUES('151577'); +INSERT INTO `transmog_items` (`entry`) VALUES('151578'); +INSERT INTO `transmog_items` (`entry`) VALUES('151579'); +INSERT INTO `transmog_items` (`entry`) VALUES('151580'); +INSERT INTO `transmog_items` (`entry`) VALUES('151581'); +INSERT INTO `transmog_items` (`entry`) VALUES('151583'); +INSERT INTO `transmog_items` (`entry`) VALUES('151584'); +INSERT INTO `transmog_items` (`entry`) VALUES('151585'); +INSERT INTO `transmog_items` (`entry`) VALUES('151586'); +INSERT INTO `transmog_items` (`entry`) VALUES('151682'); +INSERT INTO `transmog_items` (`entry`) VALUES('151683'); +INSERT INTO `transmog_items` (`entry`) VALUES('151684'); +INSERT INTO `transmog_items` (`entry`) VALUES('151685'); +INSERT INTO `transmog_items` (`entry`) VALUES('151686'); +INSERT INTO `transmog_items` (`entry`) VALUES('151687'); +INSERT INTO `transmog_items` (`entry`) VALUES('151688'); +INSERT INTO `transmog_items` (`entry`) VALUES('151689'); +INSERT INTO `transmog_items` (`entry`) VALUES('151690'); +INSERT INTO `transmog_items` (`entry`) VALUES('151691'); +INSERT INTO `transmog_items` (`entry`) VALUES('151692'); +INSERT INTO `transmog_items` (`entry`) VALUES('151693'); +INSERT INTO `transmog_items` (`entry`) VALUES('151694'); +INSERT INTO `transmog_items` (`entry`) VALUES('151695'); +INSERT INTO `transmog_items` (`entry`) VALUES('151696'); +INSERT INTO `transmog_items` (`entry`) VALUES('151697'); +INSERT INTO `transmog_items` (`entry`) VALUES('151698'); +INSERT INTO `transmog_items` (`entry`) VALUES('151699'); +INSERT INTO `transmog_items` (`entry`) VALUES('151700'); +INSERT INTO `transmog_items` (`entry`) VALUES('151701'); +INSERT INTO `transmog_items` (`entry`) VALUES('151702'); +INSERT INTO `transmog_items` (`entry`) VALUES('151703'); +INSERT INTO `transmog_items` (`entry`) VALUES('151704'); +INSERT INTO `transmog_items` (`entry`) VALUES('151705'); +INSERT INTO `transmog_items` (`entry`) VALUES('151706'); +INSERT INTO `transmog_items` (`entry`) VALUES('151707'); +INSERT INTO `transmog_items` (`entry`) VALUES('151708'); +INSERT INTO `transmog_items` (`entry`) VALUES('151709'); +INSERT INTO `transmog_items` (`entry`) VALUES('151710'); +INSERT INTO `transmog_items` (`entry`) VALUES('151711'); +INSERT INTO `transmog_items` (`entry`) VALUES('151712'); +INSERT INTO `transmog_items` (`entry`) VALUES('151713'); +INSERT INTO `transmog_items` (`entry`) VALUES('151714'); +INSERT INTO `transmog_items` (`entry`) VALUES('151715'); +INSERT INTO `transmog_items` (`entry`) VALUES('151716'); +INSERT INTO `transmog_items` (`entry`) VALUES('151717'); +INSERT INTO `transmog_items` (`entry`) VALUES('151718'); +INSERT INTO `transmog_items` (`entry`) VALUES('151719'); +INSERT INTO `transmog_items` (`entry`) VALUES('151720'); +INSERT INTO `transmog_items` (`entry`) VALUES('151721'); +INSERT INTO `transmog_items` (`entry`) VALUES('151722'); +INSERT INTO `transmog_items` (`entry`) VALUES('151723'); +INSERT INTO `transmog_items` (`entry`) VALUES('151724'); +INSERT INTO `transmog_items` (`entry`) VALUES('151725'); +INSERT INTO `transmog_items` (`entry`) VALUES('151726'); +INSERT INTO `transmog_items` (`entry`) VALUES('151727'); +INSERT INTO `transmog_items` (`entry`) VALUES('151728'); +INSERT INTO `transmog_items` (`entry`) VALUES('151729'); +INSERT INTO `transmog_items` (`entry`) VALUES('151730'); +INSERT INTO `transmog_items` (`entry`) VALUES('151731'); +INSERT INTO `transmog_items` (`entry`) VALUES('151732'); +INSERT INTO `transmog_items` (`entry`) VALUES('151733'); +INSERT INTO `transmog_items` (`entry`) VALUES('151734'); +INSERT INTO `transmog_items` (`entry`) VALUES('151735'); +INSERT INTO `transmog_items` (`entry`) VALUES('151736'); +INSERT INTO `transmog_items` (`entry`) VALUES('151737'); +INSERT INTO `transmog_items` (`entry`) VALUES('151738'); +INSERT INTO `transmog_items` (`entry`) VALUES('151739'); +INSERT INTO `transmog_items` (`entry`) VALUES('151740'); +INSERT INTO `transmog_items` (`entry`) VALUES('151741'); +INSERT INTO `transmog_items` (`entry`) VALUES('151742'); +INSERT INTO `transmog_items` (`entry`) VALUES('151743'); +INSERT INTO `transmog_items` (`entry`) VALUES('151744'); +INSERT INTO `transmog_items` (`entry`) VALUES('151745'); +INSERT INTO `transmog_items` (`entry`) VALUES('151746'); +INSERT INTO `transmog_items` (`entry`) VALUES('151747'); +INSERT INTO `transmog_items` (`entry`) VALUES('151748'); +INSERT INTO `transmog_items` (`entry`) VALUES('151749'); +INSERT INTO `transmog_items` (`entry`) VALUES('151750'); +INSERT INTO `transmog_items` (`entry`) VALUES('151751'); +INSERT INTO `transmog_items` (`entry`) VALUES('151752'); +INSERT INTO `transmog_items` (`entry`) VALUES('151753'); +INSERT INTO `transmog_items` (`entry`) VALUES('151754'); +INSERT INTO `transmog_items` (`entry`) VALUES('151755'); +INSERT INTO `transmog_items` (`entry`) VALUES('151756'); +INSERT INTO `transmog_items` (`entry`) VALUES('151757'); +INSERT INTO `transmog_items` (`entry`) VALUES('151758'); +INSERT INTO `transmog_items` (`entry`) VALUES('151759'); +INSERT INTO `transmog_items` (`entry`) VALUES('151760'); +INSERT INTO `transmog_items` (`entry`) VALUES('151761'); +INSERT INTO `transmog_items` (`entry`) VALUES('151762'); +INSERT INTO `transmog_items` (`entry`) VALUES('151763'); +INSERT INTO `transmog_items` (`entry`) VALUES('151764'); +INSERT INTO `transmog_items` (`entry`) VALUES('151765'); +INSERT INTO `transmog_items` (`entry`) VALUES('151766'); +INSERT INTO `transmog_items` (`entry`) VALUES('151767'); +INSERT INTO `transmog_items` (`entry`) VALUES('151768'); +INSERT INTO `transmog_items` (`entry`) VALUES('151769'); +INSERT INTO `transmog_items` (`entry`) VALUES('151770'); +INSERT INTO `transmog_items` (`entry`) VALUES('151771'); +INSERT INTO `transmog_items` (`entry`) VALUES('151772'); +INSERT INTO `transmog_items` (`entry`) VALUES('151773'); +INSERT INTO `transmog_items` (`entry`) VALUES('151774'); +INSERT INTO `transmog_items` (`entry`) VALUES('151775'); +INSERT INTO `transmog_items` (`entry`) VALUES('151776'); +INSERT INTO `transmog_items` (`entry`) VALUES('151777'); +INSERT INTO `transmog_items` (`entry`) VALUES('151782'); +INSERT INTO `transmog_items` (`entry`) VALUES('151783'); +INSERT INTO `transmog_items` (`entry`) VALUES('151784'); +INSERT INTO `transmog_items` (`entry`) VALUES('151785'); +INSERT INTO `transmog_items` (`entry`) VALUES('151786'); +INSERT INTO `transmog_items` (`entry`) VALUES('151787'); +INSERT INTO `transmog_items` (`entry`) VALUES('151788'); +INSERT INTO `transmog_items` (`entry`) VALUES('151789'); +INSERT INTO `transmog_items` (`entry`) VALUES('151790'); +INSERT INTO `transmog_items` (`entry`) VALUES('151791'); +INSERT INTO `transmog_items` (`entry`) VALUES('151792'); +INSERT INTO `transmog_items` (`entry`) VALUES('151798'); +INSERT INTO `transmog_items` (`entry`) VALUES('151800'); +INSERT INTO `transmog_items` (`entry`) VALUES('151801'); +INSERT INTO `transmog_items` (`entry`) VALUES('151802'); +INSERT INTO `transmog_items` (`entry`) VALUES('151803'); +INSERT INTO `transmog_items` (`entry`) VALUES('151811'); +INSERT INTO `transmog_items` (`entry`) VALUES('151812'); +INSERT INTO `transmog_items` (`entry`) VALUES('151813'); +INSERT INTO `transmog_items` (`entry`) VALUES('151814'); +INSERT INTO `transmog_items` (`entry`) VALUES('151815'); +INSERT INTO `transmog_items` (`entry`) VALUES('151816'); +INSERT INTO `transmog_items` (`entry`) VALUES('151817'); +INSERT INTO `transmog_items` (`entry`) VALUES('151818'); +INSERT INTO `transmog_items` (`entry`) VALUES('151819'); +INSERT INTO `transmog_items` (`entry`) VALUES('151820'); +INSERT INTO `transmog_items` (`entry`) VALUES('151821'); +INSERT INTO `transmog_items` (`entry`) VALUES('151823'); +INSERT INTO `transmog_items` (`entry`) VALUES('151824'); +INSERT INTO `transmog_items` (`entry`) VALUES('151825'); +INSERT INTO `transmog_items` (`entry`) VALUES('151826'); +INSERT INTO `transmog_items` (`entry`) VALUES('151827'); +INSERT INTO `transmog_items` (`entry`) VALUES('151829'); +INSERT INTO `transmog_items` (`entry`) VALUES('151830'); +INSERT INTO `transmog_items` (`entry`) VALUES('151831'); +INSERT INTO `transmog_items` (`entry`) VALUES('151832'); +INSERT INTO `transmog_items` (`entry`) VALUES('151834'); +INSERT INTO `transmog_items` (`entry`) VALUES('151835'); +INSERT INTO `transmog_items` (`entry`) VALUES('151836'); +INSERT INTO `transmog_items` (`entry`) VALUES('151837'); +INSERT INTO `transmog_items` (`entry`) VALUES('151838'); +INSERT INTO `transmog_items` (`entry`) VALUES('151839'); +INSERT INTO `transmog_items` (`entry`) VALUES('151840'); +INSERT INTO `transmog_items` (`entry`) VALUES('151841'); +INSERT INTO `transmog_items` (`entry`) VALUES('151844'); +INSERT INTO `transmog_items` (`entry`) VALUES('151845'); +INSERT INTO `transmog_items` (`entry`) VALUES('151846'); +INSERT INTO `transmog_items` (`entry`) VALUES('151847'); +INSERT INTO `transmog_items` (`entry`) VALUES('151848'); +INSERT INTO `transmog_items` (`entry`) VALUES('151850'); +INSERT INTO `transmog_items` (`entry`) VALUES('151851'); +INSERT INTO `transmog_items` (`entry`) VALUES('151852'); +INSERT INTO `transmog_items` (`entry`) VALUES('151853'); +INSERT INTO `transmog_items` (`entry`) VALUES('151854'); +INSERT INTO `transmog_items` (`entry`) VALUES('151856'); +INSERT INTO `transmog_items` (`entry`) VALUES('151857'); +INSERT INTO `transmog_items` (`entry`) VALUES('151859'); +INSERT INTO `transmog_items` (`entry`) VALUES('151860'); +INSERT INTO `transmog_items` (`entry`) VALUES('151861'); +INSERT INTO `transmog_items` (`entry`) VALUES('151862'); +INSERT INTO `transmog_items` (`entry`) VALUES('151864'); +INSERT INTO `transmog_items` (`entry`) VALUES('151865'); +INSERT INTO `transmog_items` (`entry`) VALUES('151866'); +INSERT INTO `transmog_items` (`entry`) VALUES('151868'); +INSERT INTO `transmog_items` (`entry`) VALUES('151870'); +INSERT INTO `transmog_items` (`entry`) VALUES('151872'); +INSERT INTO `transmog_items` (`entry`) VALUES('151873'); +INSERT INTO `transmog_items` (`entry`) VALUES('151874'); +INSERT INTO `transmog_items` (`entry`) VALUES('151875'); +INSERT INTO `transmog_items` (`entry`) VALUES('151876'); +INSERT INTO `transmog_items` (`entry`) VALUES('151877'); +INSERT INTO `transmog_items` (`entry`) VALUES('151879'); +INSERT INTO `transmog_items` (`entry`) VALUES('151880'); +INSERT INTO `transmog_items` (`entry`) VALUES('151882'); +INSERT INTO `transmog_items` (`entry`) VALUES('151883'); +INSERT INTO `transmog_items` (`entry`) VALUES('151885'); +INSERT INTO `transmog_items` (`entry`) VALUES('151886'); +INSERT INTO `transmog_items` (`entry`) VALUES('151888'); +INSERT INTO `transmog_items` (`entry`) VALUES('151889'); +INSERT INTO `transmog_items` (`entry`) VALUES('151891'); +INSERT INTO `transmog_items` (`entry`) VALUES('151892'); +INSERT INTO `transmog_items` (`entry`) VALUES('151893'); +INSERT INTO `transmog_items` (`entry`) VALUES('151895'); +INSERT INTO `transmog_items` (`entry`) VALUES('151896'); +INSERT INTO `transmog_items` (`entry`) VALUES('151897'); +INSERT INTO `transmog_items` (`entry`) VALUES('151899'); +INSERT INTO `transmog_items` (`entry`) VALUES('151901'); +INSERT INTO `transmog_items` (`entry`) VALUES('151902'); +INSERT INTO `transmog_items` (`entry`) VALUES('151903'); +INSERT INTO `transmog_items` (`entry`) VALUES('151904'); +INSERT INTO `transmog_items` (`entry`) VALUES('151905'); +INSERT INTO `transmog_items` (`entry`) VALUES('151906'); +INSERT INTO `transmog_items` (`entry`) VALUES('151907'); +INSERT INTO `transmog_items` (`entry`) VALUES('151908'); +INSERT INTO `transmog_items` (`entry`) VALUES('151909'); +INSERT INTO `transmog_items` (`entry`) VALUES('151910'); +INSERT INTO `transmog_items` (`entry`) VALUES('151911'); +INSERT INTO `transmog_items` (`entry`) VALUES('151912'); +INSERT INTO `transmog_items` (`entry`) VALUES('151914'); +INSERT INTO `transmog_items` (`entry`) VALUES('151915'); +INSERT INTO `transmog_items` (`entry`) VALUES('151917'); +INSERT INTO `transmog_items` (`entry`) VALUES('151918'); +INSERT INTO `transmog_items` (`entry`) VALUES('151919'); +INSERT INTO `transmog_items` (`entry`) VALUES('151920'); +INSERT INTO `transmog_items` (`entry`) VALUES('151921'); +INSERT INTO `transmog_items` (`entry`) VALUES('151923'); +INSERT INTO `transmog_items` (`entry`) VALUES('151924'); +INSERT INTO `transmog_items` (`entry`) VALUES('151925'); +INSERT INTO `transmog_items` (`entry`) VALUES('151926'); +INSERT INTO `transmog_items` (`entry`) VALUES('151927'); +INSERT INTO `transmog_items` (`entry`) VALUES('151928'); +INSERT INTO `transmog_items` (`entry`) VALUES('151929'); +INSERT INTO `transmog_items` (`entry`) VALUES('151930'); +INSERT INTO `transmog_items` (`entry`) VALUES('151931'); +INSERT INTO `transmog_items` (`entry`) VALUES('151933'); +INSERT INTO `transmog_items` (`entry`) VALUES('151935'); +INSERT INTO `transmog_items` (`entry`) VALUES('151937'); +INSERT INTO `transmog_items` (`entry`) VALUES('151939'); +INSERT INTO `transmog_items` (`entry`) VALUES('151940'); +INSERT INTO `transmog_items` (`entry`) VALUES('151941'); +INSERT INTO `transmog_items` (`entry`) VALUES('151942'); +INSERT INTO `transmog_items` (`entry`) VALUES('151944'); +INSERT INTO `transmog_items` (`entry`) VALUES('151958'); +INSERT INTO `transmog_items` (`entry`) VALUES('151959'); +INSERT INTO `transmog_items` (`entry`) VALUES('151960'); +INSERT INTO `transmog_items` (`entry`) VALUES('151961'); +INSERT INTO `transmog_items` (`entry`) VALUES('151962'); +INSERT INTO `transmog_items` (`entry`) VALUES('151963'); +INSERT INTO `transmog_items` (`entry`) VALUES('151964'); +INSERT INTO `transmog_items` (`entry`) VALUES('151965'); +INSERT INTO `transmog_items` (`entry`) VALUES('151966'); +INSERT INTO `transmog_items` (`entry`) VALUES('151967'); +INSERT INTO `transmog_items` (`entry`) VALUES('151968'); +INSERT INTO `transmog_items` (`entry`) VALUES('151969'); +INSERT INTO `transmog_items` (`entry`) VALUES('151970'); +INSERT INTO `transmog_items` (`entry`) VALUES('151971'); +INSERT INTO `transmog_items` (`entry`) VALUES('151972'); +INSERT INTO `transmog_items` (`entry`) VALUES('151973'); +INSERT INTO `transmog_items` (`entry`) VALUES('151974'); +INSERT INTO `transmog_items` (`entry`) VALUES('151975'); +INSERT INTO `transmog_items` (`entry`) VALUES('151976'); +INSERT INTO `transmog_items` (`entry`) VALUES('151977'); +INSERT INTO `transmog_items` (`entry`) VALUES('151978'); +INSERT INTO `transmog_items` (`entry`) VALUES('151979'); +INSERT INTO `transmog_items` (`entry`) VALUES('151980'); +INSERT INTO `transmog_items` (`entry`) VALUES('151981'); +INSERT INTO `transmog_items` (`entry`) VALUES('151982'); +INSERT INTO `transmog_items` (`entry`) VALUES('151983'); +INSERT INTO `transmog_items` (`entry`) VALUES('151984'); +INSERT INTO `transmog_items` (`entry`) VALUES('151985'); +INSERT INTO `transmog_items` (`entry`) VALUES('151987'); +INSERT INTO `transmog_items` (`entry`) VALUES('151989'); +INSERT INTO `transmog_items` (`entry`) VALUES('151990'); +INSERT INTO `transmog_items` (`entry`) VALUES('151993'); +INSERT INTO `transmog_items` (`entry`) VALUES('151994'); +INSERT INTO `transmog_items` (`entry`) VALUES('151997'); +INSERT INTO `transmog_items` (`entry`) VALUES('151998'); +INSERT INTO `transmog_items` (`entry`) VALUES('152729'); +INSERT INTO `transmog_items` (`entry`) VALUES('153097'); +INSERT INTO `transmog_items` (`entry`) VALUES('153111'); +INSERT INTO `transmog_items` (`entry`) VALUES('153112'); +INSERT INTO `transmog_items` (`entry`) VALUES('153113'); +INSERT INTO `transmog_items` (`entry`) VALUES('153114'); +INSERT INTO `transmog_items` (`entry`) VALUES('153115'); +INSERT INTO `transmog_items` (`entry`) VALUES('153117'); +INSERT INTO `transmog_items` (`entry`) VALUES('153118'); +INSERT INTO `transmog_items` (`entry`) VALUES('153119'); +INSERT INTO `transmog_items` (`entry`) VALUES('153121'); +INSERT INTO `transmog_items` (`entry`) VALUES('153125'); +INSERT INTO `transmog_items` (`entry`) VALUES('153126'); +INSERT INTO `transmog_items` (`entry`) VALUES('153127'); +INSERT INTO `transmog_items` (`entry`) VALUES('153129'); +INSERT INTO `transmog_items` (`entry`) VALUES('153134'); +INSERT INTO `transmog_items` (`entry`) VALUES('153486'); +INSERT INTO `transmog_items` (`entry`) VALUES('153487'); +INSERT INTO `transmog_items` (`entry`) VALUES('153488'); +INSERT INTO `transmog_items` (`entry`) VALUES('153489'); +INSERT INTO `transmog_items` (`entry`) VALUES('153491'); +INSERT INTO `transmog_items` (`entry`) VALUES('153493'); +INSERT INTO `transmog_items` (`entry`) VALUES('153494'); +INSERT INTO `transmog_items` (`entry`) VALUES('153496'); +INSERT INTO `transmog_items` (`entry`) VALUES('153497'); +INSERT INTO `transmog_items` (`entry`) VALUES('153498'); +INSERT INTO `transmog_items` (`entry`) VALUES('153500'); +INSERT INTO `transmog_items` (`entry`) VALUES('153504'); +INSERT INTO `transmog_items` (`entry`) VALUES('153505'); +INSERT INTO `transmog_items` (`entry`) VALUES('153506'); +INSERT INTO `transmog_items` (`entry`) VALUES('153507'); +INSERT INTO `transmog_items` (`entry`) VALUES('153508'); +INSERT INTO `transmog_items` (`entry`) VALUES('154556'); +INSERT INTO `transmog_items` (`entry`) VALUES('154558'); +INSERT INTO `transmog_items` (`entry`) VALUES('154559'); +INSERT INTO `transmog_items` (`entry`) VALUES('154560'); +INSERT INTO `transmog_items` (`entry`) VALUES('154561'); +INSERT INTO `transmog_items` (`entry`) VALUES('154562'); +INSERT INTO `transmog_items` (`entry`) VALUES('154564'); +INSERT INTO `transmog_items` (`entry`) VALUES('154565'); +INSERT INTO `transmog_items` (`entry`) VALUES('154566'); +INSERT INTO `transmog_items` (`entry`) VALUES('154577'); +INSERT INTO `transmog_items` (`entry`) VALUES('154578'); +INSERT INTO `transmog_items` (`entry`) VALUES('154579'); +INSERT INTO `transmog_items` (`entry`) VALUES('154580'); +INSERT INTO `transmog_items` (`entry`) VALUES('154582'); +INSERT INTO `transmog_items` (`entry`) VALUES('154583'); +INSERT INTO `transmog_items` (`entry`) VALUES('154584'); +INSERT INTO `transmog_items` (`entry`) VALUES('154586'); +INSERT INTO `transmog_items` (`entry`) VALUES('154587'); +INSERT INTO `transmog_items` (`entry`) VALUES('154592'); +INSERT INTO `transmog_items` (`entry`) VALUES('154617'); +INSERT INTO `transmog_items` (`entry`) VALUES('154801'); +INSERT INTO `transmog_items` (`entry`) VALUES('154802'); +INSERT INTO `transmog_items` (`entry`) VALUES('154803'); +INSERT INTO `transmog_items` (`entry`) VALUES('154804'); +INSERT INTO `transmog_items` (`entry`) VALUES('154805'); \ No newline at end of file diff --git a/data/sql/db-characters/worldstates.sql b/data/sql/db-characters/worldstates.sql new file mode 100644 index 0000000..6adda12 --- /dev/null +++ b/data/sql/db-characters/worldstates.sql @@ -0,0 +1 @@ +INSERT INTO worldstates VALUES (100000, 0, 0); \ No newline at end of file diff --git a/data/sql/db-world/00-general.sql b/data/sql/db-world/00-general.sql new file mode 100644 index 0000000..646e5fd --- /dev/null +++ b/data/sql/db-world/00-general.sql @@ -0,0 +1,66 @@ +-- FULL `creature_template` of entry 100000 +DELETE FROM `creature_template` WHERE (entry = 100000); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES +(100000, 0, 0, 0, 0, 0, 23055, 0, 0, 0, 'Han\'al', 'Master Lorekeeper', NULL, 30000, 83, 83, 0, 2007, 3, 1.1, 1.5, 1.2, 1, 0, 0, 0, 8, 33536, 2048, 0, 0, 0, 0, 0, 0, 7, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'SmartAI', 0, 3, 0, 10, 10, 1, 0, 0, 1, 0, 2, 'npc_han_al', 12341); + +DELETE FROM npc_text WHERE ID IN (100000, 100001, 100002, 100003); +INSERT INTO npc_text (ID, text0_0, text0_1, lang0, em0_0) VALUES +(100000, "È bello che tu voglia aiutarmi $N, la storia dev'essere scrupolosamente registrata... nulla deve andar perso!", 0, 0, 0), +(100001, "Hai già delle missioni da completare, ritorna quando sarai riuscito a portarle a termine o quando avrai rinunciato...\nNonostante il fallimento potrei avere ancora bisogno di te, $R", 0, 0, 0), +(100002, "Grazie del tuo aiuto, $C, per oggi mi hai aiutato a sufficienza!\nRitorna domani.", 0, 0, 0), +(100003, "Hai già molto lavoro da fare, $N. Non vorrei che ti affaticassi troppo... torna da me quando avrai concluso un po' del tuo lavoro.", 0, 0, 0); + +UPDATE `item_template` SET `Flags` = 64, `ScriptName` = 'item_azth_hearthstone_loot_sack', stackable = 1, `spellid_1` = 36177, maxcount = 5 WHERE (entry = 32558); + + +-- VENDORS (DEBUG) +-- NEUTRAL +DELETE FROM `creature_template` WHERE (entry = 100002); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES +(100002, 0, 0, 0, 0, 0, 22439, 0, 0, 0, 'Azth Neutral Vendor', 'AzerothShard', '', 0, 70, 70, 1, 35, 128, 1, 1.14286, 1, 0, 0, 2000, 2000, 1, 33555202, 2048, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 1, 4, 1, 1, 0, 0, 1, 0, 128, '', 12340); + +-- FRIENDLY +DELETE FROM `creature_template` WHERE (entry = 100003); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES +(100003, 0, 0, 0, 0, 0, 22439, 0, 0, 0, 'Azth Friendly Vendor', 'AzerothShard', '', 0, 70, 70, 1, 35, 128, 1, 1.14286, 1, 0, 0, 2000, 2000, 1, 33555202, 2048, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 1, 4, 1, 1, 0, 0, 1, 0, 128, '', 12340); + +-- HONORED +DELETE FROM `creature_template` WHERE (entry = 100004); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES +(100004, 0, 0, 0, 0, 0, 22439, 0, 0, 0, 'Azth Honored Vendor', 'AzerothShard', '', 0, 70, 70, 1, 35, 128, 1, 1.14286, 1, 0, 0, 2000, 2000, 1, 33555202, 2048, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 1, 4, 1, 1, 0, 0, 1, 0, 128, '', 12340); + +-- REVERED +DELETE FROM `creature_template` WHERE (entry = 100005); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES +(100005, 0, 0, 0, 0, 0, 22439, 0, 0, 0, 'Azth Revered Vendor', 'AzerothShard', '', 0, 70, 70, 1, 35, 128, 1, 1.14286, 1, 0, 0, 2000, 2000, 1, 33555202, 2048, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 1, 4, 1, 1, 0, 0, 1, 0, 128, '', 12340); + +-- EXALTED +DELETE FROM `creature_template` WHERE (entry = 100006); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES +(100006, 0, 0, 0, 0, 0, 22439, 0, 0, 0, 'Azth Exalted Vendor', 'AzerothShard', '', 0, 70, 70, 1, 35, 128, 1, 1.14286, 1, 0, 0, 2000, 2000, 1, 33555202, 2048, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 1, 4, 1, 1, 0, 0, 1, 0, 128, '', 12340); + +UPDATE creature_template SET resistance2 = 0 WHERE entry = 100002; +UPDATE creature_template SET resistance2 = 3000 WHERE entry = 100003; +UPDATE creature_template SET resistance2 = 6000 WHERE entry = 100004; +UPDATE creature_template SET resistance2 = 12000 WHERE entry = 100005; +UPDATE creature_template SET resistance2 = 21000 WHERE entry = 100006; + +UPDATE creature_template SET `npcflag` = 129, `unit_flags` = 768, `type_flags` = 134217728, `flags_extra` = 2, scriptname = "npc_azth_vendor", resistance1 = 32001, gossip_menu_id = 32001 WHERE entry IN (100002, 100003, 100004, 100005, 100006); + + +-- END VENDORS DEBUG + +-- DEBUG ONLY +DELETE FROM npc_vendor WHERE entry IN (100002, 100003, 100004, 100005, 100006, 100007); +INSERT INTO npc_vendor (entry, item, extendedcost) VALUES +(100002, 32558, 100010), +(100003, 32558, 100009), +(100004, 32558, 100008), +(100004, 32558, 100007), +(100005, 32558, 100006), +(100006, 32558, 100005), +(100003, 49426, 100005), +(100003, 47241, 100004), +(100003, 45624, 100003), +(100003, 40753, 100002), +(100003, 49752, 100001); diff --git a/data/sql/db-world/01_items.sql b/data/sql/db-world/01_items.sql new file mode 100644 index 0000000..53e5bd5 --- /dev/null +++ b/data/sql/db-world/01_items.sql @@ -0,0 +1,24718 @@ +DELETE FROM item_template WHERE entry >= 100017 and entry <= 154806; +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100017','6','4','1','7016','4','6','5','0','0','','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100025','1','2','7','1542','21','1','2','1','3','Worn Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100035','1','2','10','472','17','2','2','1','2','Bent Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100036','1','2','4','5194','21','2','2','1','3','Worn Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100037','1','2','0','14029','21','1','2','1','3','Worn Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100038','1','4','0','9891','4','7','1','0','0','Recruit\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100039','0','4','1','9892','7','7','1','1','0','Recruit\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100040','1','4','0','10141','8','7','1','0','0','Recruit\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100043','1','4','0','9938','8','7','1','0','0','Squire\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100044','0','4','1','9937','7','7','1','1','0','Squire\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100045','1','4','0','3265','4','7','1','0','0','Squire\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100047','1','4','0','9915','8','7','1','0','0','Footpad\'s Shoes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100048','0','4','1','9913','7','7','1','1','0','Footpad\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100049','1','4','0','9906','4','7','1','0','0','Footpad\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100051','1','4','0','9946','8','7','1','0','0','Neophyte\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100052','0','4','1','9945','7','7','1','1','0','Neophyte\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100053','1','4','0','9944','4','7','1','0','0','Neophyte\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100055','1','4','0','9929','8','7','1','0','0','Apprentice\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100056','0','4','1','12647','20','7','1','1','0','Apprentice\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100057','0','4','1','12645','20','7','1','1','0','Acolyte\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100059','1','4','0','3261','8','7','1','0','0','Acolyte\'s Shoes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100060','1','4','2','16891','5','8','5','0','0','Layered Tunic','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100061','1','4','2','16953','7','8','5','0','0','Dwarven Leather Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100079','1','4','1','16847','7','7','5','0','0','Dwarven Cloth Britches','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100080','1','4','1','16854','8','7','5','0','0','Soft Fur-lined Shoes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100085','1','4','2','16883','5','8','5','1','0','Dirty Leather Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100120','0','4','1','10006','7','7','1','1','0','Thug Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100121','1','4','0','10008','8','7','1','0','0','Thug Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100127','1','4','0','9996','4','7','1','0','0','Trapper\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100129','1','4','0','9977','8','7','1','0','0','Rugged Trapper\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100139','0','4','1','9988','7','7','1','1','0','Brawler\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100140','1','4','0','9992','8','7','1','0','0','Brawler\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100147','0','4','1','9975','7','7','1','1','0','Rugged Trapper\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100148','1','4','0','9976','4','7','1','0','0','Rugged Trapper\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100153','0','4','2','10050','7','8','1','1','0','Primitive Kilt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100154','1','4','0','10058','4','7','1','0','0','Primitive Mantle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100192','0','2','14','5279','21','6','75','0','3','Martin\'s Broken Staff','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100193','1','4','1','16579','5','7','5','1','0','Tattered Cloth Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100194','1','4','1','16580','7','7','5','1','0','Tattered Cloth Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100195','1','4','1','16582','8','7','5','1','0','Tattered Cloth Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100200','1','4','1','16777','5','7','22','17','0','Thick Cloth Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100201','1','4','1','16778','7','7','22','17','0','Thick Cloth Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100202','1','4','1','16780','8','7','22','17','0','Thick Cloth Shoes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100203','1','4','1','16779','10','7','22','17','0','Thick Cloth Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100209','1','4','2','17140','7','8','5','1','0','Dirty Leather Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100210','1','4','2','14444','8','8','5','1','0','Dirty Leather Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100236','1','4','2','14278','5','8','22','17','0','Cured Leather Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100237','1','4','2','14476','7','8','22','17','0','Cured Leather Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100238','1','4','2','14474','8','8','22','17','0','Cured Leather Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100239','1','4','2','14475','10','8','22','17','0','Cured Leather Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100285','1','4','3','16101','5','5','22','17','0','Scalemail Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100286','1','4','3','10400','7','5','22','17','0','Scalemail Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100287','1','4','3','12745','8','5','22','17','0','Scalemail Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100647','4','2','8','20190','17','1','57','52','1','Destiny','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100710','1','4','1','16936','9','7','14','0','0','Bracers of the People\'s Militia','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100711','1','4','1','16581','10','7','5','1','0','Tattered Cloth Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100714','1','4','2','14445','10','8','5','1','0','Dirty Leather Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100718','1','4','3','6986','10','5','22','17','0','Scalemail Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100719','1','4','1','16970','10','7','5','0','0','Rabbit Handler Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100720','3','4','2','2368','10','8','28','23','0','Brawler Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100727','2','2','7','26577','13','1','10','5','3','Notched Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100744','2','4','0','18059','12','4','44','0','0','Thunderbrew\'s Boot Flask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100753','2','2','7','20094','13','1','28','23','3','Dragonmaw Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100754','3','2','7','20218','13','1','47','42','3','Shortsword of Vengeance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100756','2','2','1','6264','17','1','29','24','1','Tunnel Pick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100763','1','4','2','17007','9','8','12','7','0','Ice-covered Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100766','1','2','4','19621','21','2','7','2','3','Flanged Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100767','1','2','10','20443','17','2','8','3','2','Long Bo Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100768','1','2','0','5012','21','1','9','4','3','Lumberjack Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100776','3','2','15','6452','13','1','31','26','3','Vendetta','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100778','1','2','0','6259','21','1','7','2','1','Kobold Excavation Pick','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100781','1','2','4','19644','21','2','9','4','3','Stone Gnoll Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100789','2','2','4','19699','21','2','22','17','3','Stout Battlehammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100790','2','2','0','19401','21','1','23','18','3','Forester\'s Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100791','3','2','10','20334','17','2','31','26','2','Gnarled Ash Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100792','1','4','1','16855','8','7','10','5','0','Knitted Sandals','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100793','1','4','1','14449','10','7','10','5','0','Knitted Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100794','1','4','1','14450','7','7','10','5','0','Knitted Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100795','1','4','1','14154','5','7','10','5','0','Knitted Tunic','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100796','1','4','2','22973','8','8','10','5','0','Rough Leather Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100797','1','4','2','17068','10','8','10','5','0','Rough Leather Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100798','1','4','2','22972','7','8','10','5','0','Rough Leather Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100799','1','4','2','2106','5','8','10','5','0','Rough Leather Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100809','4','2','7','20033','13','1','50','45','3','Bloodrazor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100810','4','2','4','19726','13','2','54','49','3','Hammer of the Northern Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100811','4','2','0','19137','13','1','57','52','3','Axe of the Deep Woods','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100812','4','2','10','20257','17','2','54','49','2','Glowing Brightwood Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100816','2','2','15','6472','13','1','11','6','3','Small Hand Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100820','2','2','15','6470','13','1','17','12','3','Slicer Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100821','2','4','2','17102','5','8','13','8','0','Riverpaw Leather Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100826','2','2','0','19271','13','1','15','10','3','Brutish Riverpaw Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100827','2','2','4','3498','13','2','17','12','3','Wicked Blackjack','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100832','2','4','3','6847','6','5','15','10','0','Silver Defias Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100833','4','4','0','22978','12','4','56','51','0','Lifestone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100837','1','4','1','14466','5','7','17','12','0','Heavy Weave Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100838','1','4','1','14468','7','7','17','12','0','Heavy Weave Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100839','1','4','1','14467','10','7','17','12','0','Heavy Weave Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100840','1','4','1','16821','8','7','17','12','0','Heavy Weave Shoes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100843','1','4','2','14470','8','8','17','12','0','Tanned Leather Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100844','1','4','2','2101','10','8','17','12','0','Tanned Leather Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100845','1','4','2','9640','7','8','17','12','0','Tanned Leather Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100846','1','4','2','14472','5','8','17','12','0','Tanned Leather Jerkin','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100847','1','4','3','1019','5','5','17','12','0','Chainmail Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100848','1','4','3','697','7','5','17','12','0','Chainmail Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100849','1','4','3','6869','8','5','17','12','0','Chainmail Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100850','1','4','3','6871','10','5','17','12','0','Chainmail Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100851','1','2','7','22077','13','1','15','10','3','Cutlass','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100852','1','2','4','8287','13','2','14','9','3','Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100853','1','2','0','22102','13','1','16','11','3','Hatchet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100854','1','2','10','22147','17','2','16','11','2','Quarter Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100859','1','4','0','9880','4','7','17','0','0','Fine Cloth Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100860','1','4','1','3443','8','7','13','0','0','Cavalier\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100862','3','4','0','18397','11','4','50','45','0','Runed Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100863','2','2','0','19213','13','1','37','32','3','Gloom Reaper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100864','2','2','7','26579','13','1','38','33','3','Knightly Longsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100865','2','2','4','5212','13','2','31','26','3','Leaden Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100866','2','2','10','20357','17','2','42','37','2','Monk\'s Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100867','4','4','2','17180','10','8','42','37','0','Gloves of Holy Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100868','4','2','4','19713','13','2','43','38','3','Ardent Custodian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100869','4','2','7','5163','13','1','41','36','3','Dazzling Longsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100870','4','2','1','33458','17','1','40','35','1','Fiery War Axe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100871','4','2','0','19235','13','1','47','42','3','Flurry Axe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100872','3','2','1','19242','17','1','21','16','1','Rockslicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100873','4','2','10','20298','17','2','40','35','2','Staff of Jordan','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100876','1','4','6','1680','14','1','1','1','4','Worn Wooden Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100880','2','2','10','20382','17','2','23','18','2','Staff of Horrors','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100885','2','2','0','8494','13','1','24','19','3','Black Metal Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100886','2','2','7','20093','13','1','26','21','3','Black Metal Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100888','3','4','2','17182','10','8','27','22','0','Naga Battle Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100890','3','2','10','20386','17','2','24','19','2','Twisted Chanter\'s Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100892','2','4','1','16950','10','7','22','17','0','Gnoll Casting Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100897','2','4','2','17011','9','8','29','24','0','Madwolf Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100899','2','2','15','6459','13','1','19','14','3','Venom Web Fang','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100911','2','2','5','28628','17','2','25','20','1','Ironwood Treebranch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100913','2','2','8','20170','17','1','29','24','1','Huge Ogre Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100914','2','4','3','2829','5','5','30','25','0','Large Ogre Chain Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100920','2','2','4','19703','13','2','25','20','3','Wicked Spiked Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100922','1','2','8','22097','17','1','26','21','1','Dacian Falx','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100923','1','2','7','22080','21','1','26','21','3','Longsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100924','1','2','5','22131','17','2','26','21','1','Maul','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100925','1','2','4','4351','21','2','25','20','3','Flail','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100926','1','2','1','22108','17','1','25','20','1','Battle Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100927','1','2','0','22106','13','1','24','19','3','Double Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100928','1','2','10','22151','17','2','25','20','2','Long Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100934','3','2','0','19405','13','1','37','32','3','Stalvan\'s Reaper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100935','3','2','7','8274','13','1','20','15','3','Night Watch Shortsword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100936','3','2','4','5215','13','2','38','33','3','Midnight Mace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100937','3','2','10','20329','17','2','38','33','2','Black Duskwood Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100940','4','4','1','16676','20','7','47','42','0','Robes of Insight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100942','4','4','0','9835','11','3','52','47','0','Freezing Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100943','4','2','10','20256','17','2','48','43','2','Warden Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100944','4','2','10','20253','17','2','61','56','2','Elemental Mage Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100983','1','4','1','4878','6','7','9','0','0','Red Linen Sash','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('100997','1','2','7','859','21','1','1','1','3','Fire Sword of Crippling','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101008','1','2','7','1550','21','1','10','0','3','Well-used Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101009','2','2','4','8583','21','2','13','0','3','Compact Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101010','1','2','10','20440','17','2','8','0','2','Gnarled Short Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101011','1','2','0','19273','21','1','8','0','3','Sharp Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101076','2','4','0','6012','11','5','25','20','0','Defias Renegade Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101077','2','4','0','9836','11','5','26','21','0','Defias Mage Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101116','2','4','0','6011','11','-1','31','0','0','Ring of Pure Silver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101121','3','4','2','703','8','8','24','19','0','Feet of the Lynx','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101131','2','4','0','9557','23','1','25','0','7','Totem of Infliction','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101154','1','4','3','6833','6','5','14','0','0','Belt of the People\'s Militia','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101155','3','2','10','20327','17','2','29','24','2','Rod of the Sleepwalker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101156','3','4','0','9839','11','1','22','17','0','Lavishly Jeweled Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101158','1','2','4','19643','21','2','10','0','3','Solid Metal Club','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101159','1','2','10','4994','17','2','5','0','2','Militia Quarterstaff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101161','1','2','7','1544','21','1','5','0','3','Militia Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101166','1','4','6','2208','14','1','5','1','4','Dented Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101167','1','4','6','18506','14','1','10','5','4','Small Targe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101168','4','4','6','30993','14','1','59','54','4','Skullflame Shield','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101169','4','4','6','18816','14','1','46','41','4','Blackskull Shield','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101171','1','4','1','12707','20','7','10','0','0','Well-stitched Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101172','2','4','0','12313','23','2','21','0','7','Grayson\'s Torch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101173','1','4','2','6777','8','8','10','0','0','Weather-worn Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101182','1','4','3','6852','9','5','10','0','0','Brass-studded Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101183','1','4','1','16927','9','7','10','0','0','Elastic Wristguards','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101189','2','4','0','963','11','1','20','15','0','Overseer\'s Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101190','2','4','1','15120','16','7','20','15','0','Overseer\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101193','1','4','6','27782','14','1','17','12','4','Banded Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101194','1','2','8','22093','17','1','4','1','1','Bastard Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101195','1','2','5','7495','17','2','6','3','1','Kobold Mining Shovel','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101196','1','2','1','22114','17','1','14','9','1','Tabar','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101197','1','2','5','5226','17','2','15','10','1','Giant Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101198','1','2','8','22095','17','1','15','10','1','Claymore','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101200','1','4','6','18663','14','1','5','1','4','Large Wooden Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101201','1','4','6','2161','14','1','10','5','4','Dull Heater Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101202','1','4','6','2329','14','1','17','12','4','Wall Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101203','3','4','6','2594','14','1','54','49','4','Aegis of Stormwind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101204','4','4','6','1644','14','1','41','36','4','The Green Tower','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101207','2','2','4','5223','13','2','39','34','3','Murphstar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101211','2','4','2','14260','5','8','15','10','0','Gnoll War Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101213','1','4','2','3613','9','8','14','9','0','Gnoll Kindred Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101214','2','2','4','19625','13','2','17','12','3','Gnoll Punisher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101215','2','4','2','16942','6','8','22','17','0','Support Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101218','2','2','5','5527','17','2','21','16','1','Heavy Gnoll War Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101219','2','2','7','20122','13','1','16','11','3','Redridge Machete','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101220','2','2','1','19232','17','1','20','15','1','Lupine Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101263','4','2','1','22215','17','1','60','55','1','Brain Hacker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101264','2','2','5','5530','17','2','26','0','1','Headbasher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101265','3','2','7','20156','13','1','39','34','3','Scorpion Sting','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101270','2','4','1','23113','16','7','15','0','0','Finely Woven Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101273','2','4','3','12723','5','5','25','0','0','Forest Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101275','2','4','3','1019','5','5','25','0','0','Deputy Chain Coat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101276','2','4','6','2210','14','1','27','0','4','Fire Hardened Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101280','2','4','2','15298','1','8','38','33','0','Cloaked Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101282','2','4','3','15324','1','5','33','0','0','Sparkmetal Coif','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101287','2','2','15','6447','13','1','15','10','3','Giant Tarantula Fang','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101292','3','2','0','8466','13','1','25','20','3','Butcher\'s Cleaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101296','2','2','4','5195','13','2','21','16','3','Blackrock Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101297','2','4','1','19035','20','7','31','26','0','Robes of the Shadowcaster','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101299','2','4','1','16717','6','7','22','17','0','Lesser Belt of the Spire','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101300','2','2','10','20391','17','2','20','15','2','Lesser Staff of the Spire','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101302','2','4','2','17174','10','8','18','0','0','Black Whelp Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101303','2','4','3','6871','10','5','20','0','0','Bridgeworker\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101304','2','4','1','16818','10','7','20','0','0','Riding Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101306','2','4','2','11387','9','8','20','0','0','Wolfmane Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101310','2','4','2','16971','7','8','20','0','0','Smith\'s Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101314','2','4','2','17179','10','8','20','15','0','Ghoul Fingers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101315','4','4','0','6524','2','-1','51','46','0','Lei of Lilies','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101317','2','2','10','20377','17','2','25','0','2','Hardened Root Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101318','3','2','1','19290','17','1','23','18','1','Night Reaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101319','2','4','0','14437','11','4','25','0','0','Ring of Iron Will','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101351','2','4','1','16897','9','7','28','23','0','Fingerbone Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101355','2','4','1','23014','16','7','15','10','0','Buckskin Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101359','1','4','2','6751','10','8','8','0','0','Lion-stamped Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101360','1','4','3','7000','10','5','10','0','0','Stormwind Chain Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101364','0','4','2','14339','5','8','5','1','0','Ragged Leather Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101366','0','4','2','14338','7','8','2','1','0','Ragged Leather Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101367','0','4','2','14354','8','8','3','1','0','Ragged Leather Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101368','0','4','2','17184','10','8','4','1','0','Ragged Leather Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101369','0','4','2','14335','6','8','5','1','0','Ragged Leather Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101370','0','4','2','14336','9','8','4','1','0','Ragged Leather Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101372','0','4','1','23054','16','7','3','1','0','Ragged Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101374','0','4','1','16659','8','7','4','1','0','Frayed Shoes','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101376','0','4','1','23090','16','7','5','1','0','Frayed Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101377','0','4','1','16657','10','7','3','1','0','Frayed Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101378','0','4','1','16656','7','7','2','1','0','Frayed Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101380','0','4','1','12426','20','7','4','1','0','Frayed Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101382','1','2','4','19636','21','2','5','0','3','Rock Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101383','1','2','0','8495','21','1','5','0','3','Stone Tomahawk','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101384','1','2','7','1546','21','1','3','1','3','Dull Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101386','1','2','1','19247','17','1','5','0','1','Thistlewood Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101387','2','2','8','20087','17','1','19','14','1','Ghoulfang','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101388','1','2','10','20450','17','2','3','1','2','Crooked Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101389','1','2','4','8575','21','2','7','2','3','Kobold Mining Mallet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101391','2','2','10','20410','17','2','18','13','2','Riverpaw Mystic Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101394','2','2','4','5203','13','2','15','10','3','Driftwood Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101395','0','4','1','9924','7','7','1','1','0','Apprentice\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101396','0','4','1','3260','7','7','1','1','0','Acolyte\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101404','2','4','0','6499','12','-1','41','36','0','Tidal Charm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101405','2','2','10','5540','17','2','17','12','2','Foamspittle Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101406','2','2','6','5638','17','1','21','20','2','Pearl-encrusted Spear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101411','0','2','10','20442','17','2','8','3','2','Withered Staff','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101412','0','2','8','20074','17','1','7','2','1','Crude Bastard Sword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101413','0','2','7','1547','21','1','8','3','3','Feeble Sword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101414','0','2','5','19525','17','2','9','4','1','Cracked Sledge','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101415','0','2','4','19613','21','2','9','4','3','Carpenter\'s Mallet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101416','0','2','0','8495','21','1','9','4','3','Rusty Hatchet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101417','0','2','1','8501','17','1','8','3','1','Beaten Battle Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101418','0','4','2','14344','6','8','7','2','0','Worn Leather Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101419','0','4','2','14353','8','8','8','3','0','Worn Leather Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101420','0','4','2','4471','9','8','9','4','0','Worn Leather Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101421','0','4','1','23083','16','7','10','5','0','Worn Hide Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101422','0','4','2','14345','10','8','6','1','0','Worn Leather Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101423','0','4','2','14346','7','8','7','2','0','Worn Leather Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101425','0','4','2','14190','5','8','9','4','0','Worn Leather Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101427','0','4','1','16798','8','7','10','5','0','Patchwork Shoes','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101429','0','4','1','23130','16','7','6','1','0','Patchwork Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101430','0','4','1','16797','10','7','7','2','0','Patchwork Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101431','0','4','1','16796','7','7','8','3','0','Patchwork Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101433','0','4','1','16795','5','7','7','2','0','Patchwork Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101436','2','4','2','17144','7','8','17','0','0','Frontier Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101438','1','4','6','25943','14','1','9','4','4','Warrior\'s Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101440','2','2','4','8570','13','2','19','14','3','Gnoll Skull Basher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101443','4','4','0','6522','2','-1','60','55','0','Jeweled Amulet of Cainwyn','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101445','1','4','3','10167','3','5','23','18','0','Blackrock Pauldrons','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101446','2','4','3','6841','8','5','19','14','0','Blackrock Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101447','4','4','0','14438','11','1','46','41','0','Ring of Saviors','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101448','2','4','3','6842','10','5','20','15','0','Blackrock Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101449','2','4','0','9823','11','5','24','0','1','Minor Channeling Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101454','3','2','0','8457','13','1','27','22','3','Axe of the Enforcer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101455','2','2','1','22214','17','1','24','19','1','Blackrock Champion\'s Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101457','2','2','4','19683','13','2','22','17','3','Shadowhide Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101458','2','2','5','8601','17','2','23','18','1','Shadowhide Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101459','2','2','0','19136','13','1','24','19','3','Shadowhide Scalper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101460','2','2','8','20109','17','1','20','15','1','Shadowhide Two-handed Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101461','2','2','1','19375','17','1','25','20','1','Slayer\'s Battle Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101462','2','4','0','9846','11','1','25','20','0','Ring of the Shadow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101465','2','2','15','20594','13','1','38','33','3','Tigerbane','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101469','2','2','7','20154','13','1','19','14','3','Scimitar of Atun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101473','2','2','10','20402','17','2','19','14','2','Riverside Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101479','1','4','1','16710','10','7','12','0','0','Salma\'s Oven Mitts','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101480','2','2','4','9381','13','2','17','0','3','Fist of the People\'s Militia','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101481','3','2','0','25595','13','1','25','20','3','Grimclaw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101482','3','2','7','20089','13','1','24','19','3','Shadowfang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101483','3','2','4','9117','13','2','21','16','3','Face Smasher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101484','3','2','10','9122','17','2','22','17','2','Witching Stave','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101485','0','2','6','7464','17','1','25','20','1','Pitchfork','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101486','3','4','1','9889','5','7','24','19','0','Tree Bark Jacket','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101488','3','4','3','12960','5','5','31','26','0','Avenger\'s Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101489','3','4','2','8676','5','8','25','20','0','Gloomshroud Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101490','2','4','0','6502','12','3','50','0','0','Guardian Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101491','3','4','0','9836','11','1','25','20','1','Ring of Precision','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101493','3','2','7','5165','13','1','27','22','3','Heavy Marauder Scimitar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101495','0','4','1','16553','8','7','13','8','0','Calico Shoes','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101497','0','4','1','23094','16','7','14','9','0','Calico Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101498','0','4','1','14348','10','7','15','10','0','Calico Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101499','0','4','1','16552','7','7','11','6','0','Calico Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101501','0','4','1','16551','5','7','13','8','0','Calico Tunic','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101502','0','4','2','16947','6','8','14','9','0','Warped Leather Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101503','0','4','2','14846','8','8','15','10','0','Warped Leather Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101504','0','4','2','17024','9','8','11','6','0','Warped Leather Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101505','0','4','1','23076','16','7','12','7','0','Warped Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101506','0','4','2','17077','10','8','13','8','0','Warped Leather Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101507','0','4','2','17156','7','8','14','9','0','Warped Leather Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101509','0','4','2','18466','5','8','11','6','0','Warped Leather Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101510','0','2','4','19775','21','2','12','7','3','Heavy Hammer','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101511','0','2','7','20173','21','1','13','8','3','Commoner\'s Sword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101512','0','2','1','19226','17','1','12','7','1','Crude Battle Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101513','0','2','8','20092','17','1','14','9','1','Old Greatsword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101514','0','2','5','19533','17','2','14','9','1','Rusty Warhammer','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101515','0','2','10','20421','17','2','12','7','2','Rough Wooden Staff','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101516','0','2','0','8498','21','1','14','9','3','Worn Hatchet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101521','2','2','1','19306','17','1','44','39','1','Lumbering Ogre Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101522','2','2','6','22239','17','1','36','31','2','Headhunting Spear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101523','2','2','5','5534','17','2','36','31','1','Huge Stone Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101539','2','2','10','20395','17','2','19','14','2','Gnarled Hermit\'s Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101547','2','4','6','21551','14','1','30','0','4','Shield of the Faith','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101557','2','4','6','18456','14','1','20','0','4','Buckler of the Seas','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101560','2','4','1','16856','8','7','21','16','0','Bluegill Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101561','2','4','1','12671','20','7','15','0','0','Harvester\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101566','2','2','8','20078','17','1','17','0','1','Edge of the People\'s Militia','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101602','3','2','0','8489','13','1','39','34','3','Sickle Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101604','2','2','8','63370','17','1','45','40','1','Chromatic Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101607','3','2','10','20272','17','2','54','49','2','Soulkeeper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101608','2','2','4','19743','13','2','47','42','3','Skullcrusher Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101613','2','2','10','28470','17','2','44','39','2','Spiritchaser Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101624','2','4','3','15340','1','5','43','38','0','Skullsplitter Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101625','2','2','8','26586','17','1','41','36','1','Exquisite Flamberge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101639','2','2','1','5128','17','1','49','44','1','Grinning Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101640','2','2','1','8526','17','1','42','37','1','Monstrous War Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101659','2','4','1','1795','10','7','40','35','0','Engineering Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101664','2','2','10','18289','17','2','41','36','2','Spellforce Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101677','2','4','3','8678','5','5','46','41','0','Drake-scale Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101678','3','4','3','11269','8','5','37','32','0','Black Ogre Kickers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101679','2','2','5','5137','17','2','36','31','1','Korg Bat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101680','2','2','1','19304','17','1','44','39','1','Headchopper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101713','3','4','0','23949','12','1','45','40','0','Ankh of Life','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101714','3','4','0','9858','2','3','43','38','0','Necklace of Calisea','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101715','3','4','3','8683','5','5','44','39','0','Polished Jazeraint Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101716','3','4','1','16667','20','7','40','35','0','Robe of the Magi','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101717','3','4','3','12960','5','5','30','25','0','Double Link Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101718','3','4','2','17137','7','8','43','38','0','Basilisk Hide Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101720','3','2','10','21460','17','2','46','41','2','Tanglewood Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101721','3','2','4','8581','13','2','54','49','3','Viking Warhammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101722','3','2','5','15467','17','2','42','37','1','Thornstone Sledgehammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101726','3','2','6','20749','17','1','36','31','2','Poison-tipped Bone Spear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101727','3','2','7','5166','13','1','28','23','3','Sword of Decay','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101728','4','2','7','19997','13','1','65','60','3','Teebu\'s Blazing Longsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101730','0','4','3','6902','6','5','12','7','0','Worn Mail Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101731','0','4','3','6903','8','5','13','8','0','Worn Mail Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101732','0','4','3','6904','9','5','14','9','0','Worn Mail Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101733','0','4','1','15272','16','7','15','10','0','Worn Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101734','0','4','3','6905','10','5','11','6','0','Worn Mail Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101735','0','4','3','687','7','5','12','7','0','Worn Mail Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101737','0','4','3','977','5','5','14','9','0','Worn Mail Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101738','0','4','3','6902','6','5','19','14','0','Laced Mail Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101739','0','4','3','6903','8','5','20','15','0','Laced Mail Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101740','0','4','3','6904','9','5','16','11','0','Laced Mail Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101741','0','4','1','15065','16','7','17','12','0','Laced Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101742','0','4','3','6905','10','5','18','13','0','Laced Mail Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101743','0','4','3','687','7','5','19','14','0','Laced Mail Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101744','0','4','3','6914','3','5','20','15','0','Laced Mail Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101745','0','4','3','977','5','5','16','11','0','Laced Mail Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101746','0','4','3','6902','6','5','25','20','0','Linked Chain Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101747','0','4','3','6903','8','5','21','16','0','Linked Chain Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101748','0','4','3','6904','9','5','22','17','0','Linked Chain Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101749','0','4','1','15074','16','7','23','18','0','Linked Chain Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101750','0','4','3','6905','10','5','24','19','0','Linked Chain Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101751','0','4','3','687','7','5','25','20','0','Linked Chain Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101752','0','4','3','6914','3','5','21','16','0','Linked Chain Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101753','0','4','3','977','5','5','22','17','0','Linked Chain Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101754','0','4','3','6902','6','5','26','21','0','Reinforced Chain Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101755','0','4','3','6903','8','5','27','22','0','Reinforced Chain Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101756','0','4','3','6904','9','5','28','23','0','Reinforced Chain Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101757','0','4','1','15181','16','7','29','24','0','Reinforced Chain Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101758','0','4','3','6905','10','5','30','25','0','Reinforced Chain Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101759','0','4','3','687','7','5','26','21','0','Reinforced Chain Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101760','0','4','3','6914','3','5','27','22','0','Reinforced Chain Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101761','0','4','3','977','5','5','28','23','0','Reinforced Chain Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101764','0','4','1','7578','8','7','17','12','0','Canvas Shoes','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101766','0','4','1','23095','16','7','18','13','0','Canvas Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101767','0','4','1','14065','10','7','19','14','0','Canvas Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101768','0','4','1','14064','7','7','20','15','0','Canvas Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101769','0','4','1','16786','3','7','20','15','0','Canvas Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101770','0','4','1','14378','5','7','17','12','0','Canvas Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101772','0','4','1','3757','8','7','23','18','0','Brocade Shoes','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101774','0','4','1','23093','16','7','24','19','0','Brocade Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101775','0','4','1','14370','10','7','25','20','0','Brocade Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101776','0','4','1','12930','7','7','21','16','0','Brocade Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101777','0','4','1','14371','3','7','22','17','0','Brocade Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101778','0','4','1','14377','5','7','23','18','0','Brocade Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101780','0','4','1','16820','8','7','29','24','0','Cross-stitched Sandals','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101782','0','4','1','23102','16','7','30','25','0','Cross-stitched Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101783','0','4','1','14373','10','7','26','21','0','Cross-stitched Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101784','0','4','1','14374','7','7','27','22','0','Cross-stitched Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101785','0','4','1','14121','3','7','28','23','0','Cross-stitched Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101786','0','4','1','14376','5','7','29','24','0','Cross-stitched Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101787','0','4','2','14360','6','8','18','13','0','Patched Leather Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101788','0','4','2','16990','8','8','19','14','0','Patched Leather Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101789','0','4','2','3653','9','8','20','15','0','Patched Leather Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101790','0','4','1','23050','16','7','16','11','0','Patched Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101791','0','4','2','972','10','8','17','12','0','Patched Leather Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101792','0','4','2','6731','7','8','18','13','0','Patched Leather Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101793','0','4','2','14361','3','8','20','15','0','Patched Leather Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101794','0','4','2','14272','5','8','20','15','0','Patched Leather Jerkin','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101795','0','4','2','16935','6','8','24','19','0','Rawhide Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101796','0','4','2','16992','8','8','25','20','0','Rawhide Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101797','0','4','2','17015','9','8','21','16','0','Rawhide Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101798','0','4','1','23058','16','7','22','17','0','Rawhide Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101799','0','4','2','17066','10','8','23','18','0','Rawhide Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101800','0','4','2','16967','7','8','24','19','0','Rawhide Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101801','0','4','2','15002','3','8','25','20','0','Rawhide Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101802','0','4','2','16895','5','8','21','16','0','Rawhide Tunic','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101803','0','4','2','16945','6','8','30','25','0','Tough Leather Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101804','0','4','2','16998','8','8','26','21','0','Tough Leather Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101805','0','4','2','17022','9','8','27','22','0','Tough Leather Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101806','0','4','1','23072','16','7','28','23','0','Tough Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101807','0','4','2','17072','10','8','29','24','0','Tough Leather Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101808','0','4','2','16977','7','8','30','25','0','Tough Leather Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101809','0','4','2','14205','3','8','26','21','0','Tough Leather Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101810','0','4','2','14418','5','8','27','22','0','Tough Leather Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101811','0','2','8','20037','17','1','17','12','1','Blunt Claymore','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101812','0','2','1','19245','17','1','17','12','1','Short-handled Battle Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101813','0','2','10','20413','17','2','18','13','2','Chipped Quarterstaff','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101814','0','2','5','19534','17','2','19','14','1','Battered Mallet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101815','0','2','4','5217','21','2','17','12','3','Ornamental Mace','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101816','0','2','0','8495','21','1','19','14','3','Unbalanced Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101817','0','2','7','20164','21','1','19','14','3','Stock Shortsword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101818','0','2','8','20183','17','1','24','19','1','Standard Claymore','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101819','0','2','0','14039','21','1','22','17','3','Gouging Pick','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101820','0','2','5','19535','17','2','22','17','1','Wooden Maul','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101821','0','2','7','5151','21','1','24','19','3','Warped Blade','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101822','0','2','10','20385','17','2','23','18','2','Cedar Walking Stick','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101823','0','2','4','6794','21','2','22','17','3','Bludgeoning Cudgel','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101824','0','2','1','19292','17','1','23','18','1','Shiny War Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101825','0','2','4','19784','21','2','28','23','3','Bulky Bludgeon','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101826','0','2','5','8587','17','2','27','22','1','Rock Maul','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101827','0','2','0','8482','21','1','27','22','3','Meat Cleaver','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101828','0','2','1','19369','17','1','27','22','1','Stone War Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101829','0','2','7','15591','21','1','29','24','3','Short Cutlass','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101830','0','2','8','4129','17','1','28','23','1','Long Bastard Sword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101831','0','2','10','20361','17','2','28','23','2','Oaken War Staff','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101832','2','4','1','16845','7','7','17','0','0','Lucky Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101835','1','4','2','14443','6','8','5','1','0','Dirty Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101836','1','4','2','14249','9','8','5','1','0','Dirty Leather Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101839','1','4','2','17126','6','8','10','5','0','Rough Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101840','1','4','2','17170','9','8','10','5','0','Rough Leather Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101843','1','4','2','14469','6','8','17','12','0','Tanned Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101844','1','4','2','14471','9','8','17','12','0','Tanned Leather Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101845','1','4','3','6864','6','5','17','12','0','Chainmail Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101846','1','4','3','13617','9','5','17','12','0','Chainmail Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101849','1','4','2','16914','6','8','22','17','0','Cured Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101850','1','4','2','14282','9','8','22','17','0','Cured Leather Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101852','1','4','3','6985','9','5','22','17','0','Scalemail Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101853','1','4','3','10410','6','5','22','17','0','Scalemail Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101893','2','2','1','19234','17','1','20','0','1','Miner\'s Revenge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101913','1','2','4','5009','21','2','10','5','3','Studded Blackjack','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101917','2','2','15','20435','13','1','10','5','3','Jeweled Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101925','2','2','7','20114','13','1','16','11','3','Defias Rapier','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101926','2','2','4','5218','13','2','15','10','3','Weighted Sap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101927','2','2','0','19276','13','1','15','10','3','Deadmines Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101928','2','2','10','20415','17','2','16','11','2','Defias Mage Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101929','2','4','1','16848','7','7','18','13','0','Silk-threaded Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101930','2','4','1','23067','16','7','18','13','0','Stonemason Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101933','2','2','10','20418','17','2','15','10','2','Staff of Conjuring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101934','2','4','2','6774','7','8','20','15','0','Stonemason Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101935','3','2','15','20471','13','1','24','19','3','Assassin\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101936','2','2','15','20399','13','1','18','13','3','Goblin Screwdriver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101937','3','2','7','5040','13','1','21','16','3','Buzz Saw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101938','2','2','4','8565','13','2','22','17','3','Block Mallet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101943','2','4','3','697','7','5','19','14','0','Goblin Mail Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101944','2','4','2','17062','10','8','18','13','0','Metalworking Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101945','2','4','2','17189','10','8','18','13','0','Woodworking Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101951','2','2','7','8279','13','1','19','14','3','Blackwater Cutlass','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101955','2','4','3','6907','8','5','27','22','0','Dragonmaw Chain Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101958','2','2','4','1759','13','2','17','12','3','Petrified Shinbone','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101959','2','2','1','14038','17','1','17','12','1','Cold Iron Pick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101965','1','4','2','3846','10','8','10','5','0','White Wolf Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101973','3','4','0','6506','12','3','59','54','0','Orb of Deception','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101974','3','4','1','16901','9','7','22','17','0','Mindthrust Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101975','3','2','8','20179','17','1','28','23','1','Pysan\'s Old Greatsword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101976','3','2','5','8590','17','2','29','24','1','Slaghammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101978','3','4','2','12813','10','8','27','22','0','Wolfclaw Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101979','4','4','6','18793','14','1','50','45','4','Wall of the Dead','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101980','4','4','0','9840','11','1','43','38','0','Underworld Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101981','4','4','3','8668','5','5','44','39','0','Icemail Jerkin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101982','4','2','8','20191','17','1','44','39','1','Nightblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101986','2','2','8','20638','17','1','41','36','1','Gutrender','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101988','2','4','3','25892','10','5','38','33','0','Chief Brigadier Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101990','2','2','5','5533','17','2','36','31','1','Ballast Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101991','2','2','5','18269','17','2','34','29','1','Goblin Power Shovel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101992','3','4','0','21612','23','-1','38','33','0','Swampchill Fetish','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101993','2','4','0','14436','11','1','36','31','0','Ogremind Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101994','2','2','0','19129','13','1','46','41','3','Ebonclaw Reaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101996','2','4','0','9840','11','-1','37','32','0','Voodoo Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101997','2','4','1','16670','20','7','34','29','0','Pressed Felt Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('101998','2','2','10','20356','17','2','33','28','2','Bloodscalp Channeling Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102000','2','2','8','20251','17','1','35','0','1','Archeus','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102011','3','2','7','20120','13','1','26','21','3','Twisted Sabre','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102013','2','2','10','20373','17','2','26','21','2','Cryptbone Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102014','2','2','8','5176','17','1','29','24','1','Black Metal Greatsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102015','2','2','1','19255','17','1','28','23','1','Black Metal War Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102016','2','4','3','1727','5','5','26','21','0','Dusty Chain Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102017','2','4','2','6738','9','8','28','23','0','Glowing Leather Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102018','2','2','7','20088','13','1','27','22','3','Skeletal Longsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102020','2','2','15','20492','13','1','18','13','3','Hollowfang Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102021','2','4','6','18650','14','1','21','16','4','Green Carapace Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102024','1','2','8','22096','17','1','21','16','1','Espadon','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102025','1','2','1','22115','17','1','20','15','1','Bearded Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102026','1','2','5','8593','17','2','21','16','1','Rock Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102027','1','2','7','22079','13','1','19','14','3','Scimitar','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102028','1','2','4','22119','13','2','21','16','3','Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102029','1','2','0','19281','13','1','20','15','3','Cleaver','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102030','1','2','10','22146','17','2','20','15','2','Gnarled Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102032','2','4','1','16887','9','7','36','0','0','Gallan Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102033','2','4','2','10711','8','8','25','0','0','Ambassador\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102034','2','4','1','12699','20','7','25','20','0','Scholarly Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102035','2','2','7','5161','13','1','24','19','3','Sword of the Night Sky','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102036','2','4','2','17054','10','8','18','0','0','Dusty Mining Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102037','2','4','3','11447','8','5','18','0','0','Tunneler\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102039','3','4','0','6012','11','4','29','24','0','Plains Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102040','3','4','6','18399','14','1','48','43','4','Troll Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102041','3','4','2','8703','5','8','24','0','0','Tunic of Westfall','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102042','3','2','10','20379','17','2','24','0','2','Staff of Westfall','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102043','3','4','0','6011','11','1','35','0','0','Ring of Forlorn Spirits','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102044','3','2','0','19220','13','1','35','0','3','Crescent of Forlorn Spirits','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102046','2','2','7','22226','13','1','24','19','3','Bluegill Kukri','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102047','1','2','0','8473','21','1','5','0','3','Anvilmar Hand Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102048','1','2','4','19770','21','2','5','0','3','Anvilmar Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102054','1','2','0','19299','21','1','4','1','3','Trogg Hand Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102055','1','2','4','8579','21','2','4','1','3','Small Wooden Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102057','1','2','7','20175','21','1','4','1','3','Pitted Defias Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102058','2','2','5','19611','17','2','27','22','1','Kazon\'s Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102059','3','4','1','22991','16','7','24','19','0','Sentry Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102064','1','2','4','19650','21','2','11','6','3','Trogg Club','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102065','1','2','7','20212','21','1','9','4','3','Rockjaw Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102066','1','2','0','19203','21','1','8','3','3','Skull Hatchet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102067','1','2','10','20431','17','2','10','5','2','Frostbit Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102069','1','4','2','16868','5','8','12','7','0','Black Bear Hide Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102072','2','2','10','20363','17','2','27','22','2','Dwarven Magestaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102073','2','2','0','19134','21','1','15','10','3','Dwarven Hatchet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102074','2','2','7','20168','13','1','18','0','3','Solid Shortblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102075','2','2','4','5218','21','2','12','7','3','Priest\'s Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102077','2','2','10','28578','17','2','29','24','2','Magician Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102078','2','2','7','20157','13','1','18','13','3','Northern Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102079','2','2','4','19637','13','2','17','12','3','Sergeant\'s Warhammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102080','2','2','0','19400','13','1','34','29','3','Hillborne Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102084','2','2','8','20152','17','1','30','25','1','Darksteel Bastard Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102087','2','4','2','17095','5','8','13','8','0','Hard Crawler Carapace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102088','2','2','15','6455','13','1','15','10','3','Long Crawler Limb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102089','2','2','15','20407','13','1','18','0','3','Scrimshaw Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102092','1','2','15','6442','13','1','2','1','3','Worn Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102098','3','2','3','28718','26','1','27','22','0','Double-barreled Shotgun','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102099','4','2','3','28636','26','1','58','53','0','Dwarven Hand Cannon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102100','4','2','3','8258','26','1','48','43','0','Precisely Calibrated Boomstick','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102105','1','4','0','10005','4','7','1','0','0','Thug Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102108','1','4','2','8662','5','8','4','1','0','Frostmane Leather Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102109','1','4','3','977','5','5','5','1','0','Frostmane Chain Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102110','1','4','1','12674','20','7','4','1','0','Light Magesmith Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102112','1','4','2','14279','5','8','9','4','0','Lumberjack Jerkin','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102114','1','4','1','16654','20','7','8','3','0','Snowy Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102117','1','4','1','16576','8','7','5','1','0','Thin Cloth Shoes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102119','1','4','1','16969','10','7','5','1','0','Thin Cloth Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102120','1','4','1','8969','7','7','5','1','0','Thin Cloth Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102121','1','4','1','16575','5','7','5','1','0','Thin Cloth Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102122','1','4','2','14425','6','8','5','1','0','Cracked Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102123','1','4','2','14426','8','8','5','1','0','Cracked Leather Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102124','1','4','2','14427','9','8','5','1','0','Cracked Leather Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102125','1','4','2','17176','10','8','5','1','0','Cracked Leather Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102126','1','4','2','14429','7','8','5','1','0','Cracked Leather Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102127','1','4','2','14430','5','8','5','1','0','Cracked Leather Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102128','1','2','8','2380','17','1','4','1','1','Scratched Claymore','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102129','1','4','6','18662','14','1','5','1','4','Large Round Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102130','1','2','4','22118','13','2','3','1','3','Club','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102131','1','2','7','22075','13','1','3','1','3','Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102132','1','2','10','22149','17','2','4','1','2','Short Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102133','1','4','6','18480','14','1','5','1','4','Small Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102134','1','2','0','22101','13','1','4','1','3','Hand Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102137','1','2','15','6437','13','1','5','0','3','Whittling Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102138','0','2','15','6460','13','1','7','2','3','Sharpened Letter Opener','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102139','1','2','15','22135','13','1','3','1','3','Dirk','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102140','2','2','15','6440','13','1','11','6','3','Carving Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102141','1','4','2','8655','5','8','27','22','0','Cuirboulli Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102142','1','4','2','17117','6','8','27','22','0','Cuirboulli Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102143','1','4','2','2355','8','8','27','22','0','Cuirboulli Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102144','1','4','2','3602','9','8','27','22','0','Cuirboulli Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102145','1','4','2','14480','10','8','27','22','0','Cuirboulli Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102146','1','4','2','14481','7','8','27','22','0','Cuirboulli Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102148','1','4','3','6926','6','5','27','22','0','Polished Scale Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102149','1','4','3','6972','8','5','27','22','0','Polished Scale Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102150','1','4','3','6973','9','5','27','22','0','Polished Scale Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102151','1','4','3','6975','10','5','27','22','0','Polished Scale Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102152','1','4','3','2989','7','5','27','22','0','Polished Scale Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102153','1','4','3','8683','5','5','27','22','0','Polished Scale Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102156','1','4','1','16858','8','7','27','22','0','Padded Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102158','1','4','1','14478','10','7','27','22','0','Padded Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102159','1','4','1','14479','7','7','27','22','0','Padded Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102160','1','4','1','14477','5','7','27','22','0','Padded Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102163','4','2','15','20291','13','1','53','48','3','Shadowblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102164','4','2','15','20312','13','1','45','40','3','Gut Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102165','1','4','1','23054','16','7','10','0','0','Old Blanchy\'s Blanket','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102166','2','4','3','685','7','5','20','15','0','Foreman\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102167','2','4','2','17178','10','8','20','15','0','Foreman\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102168','2','4','1','16713','8','7','21','16','0','Foreman\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102169','3','2','15','20347','13','1','21','16','3','Buzzer Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102172','1','4','3','9895','6','5','5','0','0','Rustic Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102173','1','4','2','28227','6','8','5','0','0','Old Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102175','2','2','1','8534','17','1','23','18','1','Shadowhide Battle Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102186','1','4','2','4545','6','8','5','0','0','Outfitter Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102194','3','2','4','8567','13','2','25','20','3','Diamond Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102195','1','2','15','6432','13','1','5','0','3','Anvilmar Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102203','2','2','1','8506','17','1','19','14','1','Brashclaw\'s Chopper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102204','2','2','8','20038','17','1','17','12','1','Brashclaw\'s Skewer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102205','3','2','8','20153','17','1','25','20','1','Duskbringer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102207','1','2','15','22137','13','1','16','11','3','Jambiya','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102208','1','2','15','22142','13','1','19','14','3','Poniard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102209','1','2','15','22139','13','1','24','19','3','Kris','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102210','0','4','6','2552','14','1','2','1','4','Battered Buckler','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102211','0','4','6','18656','14','1','4','1','4','Bent Large Shield','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102212','0','4','6','2553','14','1','6','1','4','Cracked Buckler','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102213','0','4','6','18673','14','1','7','2','4','Worn Large Shield','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102214','0','4','6','17884','14','1','15','10','4','Wooden Buckler','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102215','0','4','6','18670','14','1','11','6','4','Wooden Shield','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102216','0','4','6','18486','14','1','16','11','4','Simple Buckler','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102217','0','4','6','18665','14','1','17','12','4','Rectangular Shield','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102218','2','2','15','20451','13','1','13','0','3','Craftsman\'s Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102219','0','4','6','18485','14','1','22','17','4','Small Round Shield','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102220','0','4','6','18729','14','1','23','18','4','Box Shield','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102221','0','4','6','18484','14','1','28','23','4','Targe Shield','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102222','0','4','6','2559','14','1','29','24','4','Tower Shield','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102224','1','2','15','6432','13','1','5','0','3','Militia Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102225','1','2','15','20470','13','1','11','0','3','Sharp Kitchen Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102226','2','2','10','20372','17','2','27','22','2','Ogremage Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102227','2','2','1','22219','17','1','27','22','1','Heavy Ogre War Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102230','2','4','3','6930','10','5','24','0','0','Gloves of Brawn','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102231','2','4','1','16671','20','7','40','0','0','Inferno Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102232','2','4','1','4272','8','7','25','20','0','Dark Runner Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102233','2','4','2','18489','7','8','27','22','0','Shadow Weaver Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102234','2','4','1','8677','5','7','30','25','0','Nightwalker Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102235','2','2','15','20598','13','1','19','14','3','Brackclaw','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102236','3','2','15','20345','13','1','25','20','3','Blackfang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102237','1','4','2','2628','7','8','10','0','0','Patched Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102238','1','4','1','16842','7','7','10','0','0','Urchin\'s Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102240','1','4','1','23061','16','7','15','0','0','Rugged Cape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102241','2','4','1','15248','16','7','20','15','0','Desperado Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102243','4','2','4','19729','13','2','62','57','3','Hand of Edward the Odd','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102244','4','2','7','8090','13','1','56','51','3','Krol Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102245','4','4','3','15506','1','5','59','54','0','Helm of Narv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102246','4','4','0','9841','11','1','58','53','0','Myrmidon\'s Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102249','1','4','6','2632','14','1','10','0','4','Militia Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102254','2','2','5','19612','17','2','12','7','1','Icepane Warhammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102256','3','2','4','5221','13','2','24','19','3','Skeletal Club','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102257','1','2','10','20429','17','2','10','5','2','Frostmane Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102258','1','2','7','4260','21','1','8','3','3','Frostmane Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102259','1','2','4','19623','21','2','8','3','3','Frostmane Club','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102260','1','2','0','8470','21','1','9','4','3','Frostmane Hand Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102262','3','4','0','9840','11','-1','36','31','0','Mark of Kern','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102263','2','2','7','5170','13','1','25','0','3','Phytoblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102264','3','4','2','12830','3','8','30','25','0','Mantle of Thieves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102265','2','2','0','19297','13','1','13','8','3','Stonesplinter Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102266','2','2','15','20427','13','1','13','8','3','Stonesplinter Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102267','2','2','4','5208','13','2','15','10','3','Stonesplinter Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102268','1','2','7','20213','21','1','10','5','3','Stonesplinter Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102271','3','2','10','20346','17','2','23','18','2','Staff of the Blessed Seer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102273','2','4','3','16114','5','5','15','10','0','Guerrilla Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102274','2','4','3','6883','10','5','17','12','0','Sapper\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102276','3','4','2','16996','8','8','37','32','0','Swampwalker Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102277','3','4','1','3173','7','7','35','30','0','Necromancer Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102278','3','4','2','17190','3','8','31','26','0','Forest Tracker Epaulets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102280','3','2','10','20370','17','2','27','22','2','Kam\'s Walking Stick','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102281','2','2','0','19297','13','1','11','6','3','Rodentia Flint Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102282','1','2','7','20211','21','1','10','5','3','Rodentia Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102283','2','4','1','16831','6','7','15','10','0','Rat Cloth Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102284','2','4','1','23132','16','7','15','10','0','Rat Cloth Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102291','4','2','1','19305','17','1','49','44','1','Kang the Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102292','3','4','1','19037','20','7','25','20','0','Necrology Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102299','3','2','1','19389','17','1','33','28','1','Burning War Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102300','2','4','2','9502','5','8','12','7','0','Embossed Leather Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102302','1','4','2','4713','8','8','8','3','0','Handstitched Leather Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102303','1','4','2','9500','7','8','10','5','0','Handstitched Leather Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102307','2','4','2','17163','8','8','18','13','0','Fine Leather Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102308','2','4','1','23028','16','7','15','10','0','Fine Leather Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102309','2','4','2','13864','8','8','15','10','0','Embossed Leather Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102310','2','4','1','23025','16','7','13','8','0','Embossed Leather Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102311','2','4','2','17233','5','8','13','8','0','White Leather Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102312','2','4','2','5406','10','8','15','10','0','Fine Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102314','3','4','2','9531','5','8','24','19','0','Toughened Leather Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102315','2','4','2','9530','8','8','20','15','0','Dark Leather Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102316','2','4','1','23021','16','7','22','17','0','Dark Leather Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102317','2','4','2','17214','5','8','20','15','0','Dark Leather Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102326','1','4','1','16905','9','7','10','0','0','Ivy-weave Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102327','1','4','2','17172','9','8','10','5','0','Sturdy Leather Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102361','1','2','5','8690','17','2','2','1','1','Battleworn Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102362','0','4','6','18730','14','1','1','1','4','Worn Wooden Shield','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102364','1','4','1','14459','5','7','10','5','0','Woven Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102366','1','4','1','14458','7','7','10','5','0','Woven Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102367','1','4','1','14162','8','7','10','5','0','Woven Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102369','1','4','1','14457','10','7','10','5','0','Woven Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102370','1','4','2','16871','5','8','10','5','0','Battered Leather Harness','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102371','1','4','2','17114','6','8','10','5','0','Battered Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102372','1','4','2','18478','7','8','10','5','0','Battered Leather Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102373','1','4','2','17158','8','8','10','5','0','Battered Leather Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102374','1','4','2','17002','9','8','10','5','0','Battered Leather Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102375','1','4','2','17051','10','8','10','5','0','Battered Leather Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102376','1','4','6','18672','14','1','10','5','4','Worn Heater Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102377','1','4','6','18509','14','1','10','5','4','Round Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102379','1','4','3','2215','5','5','5','1','0','Tarnished Chain Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102380','1','4','3','6902','6','5','5','1','0','Tarnished Chain Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102381','1','4','3','2217','7','5','5','1','0','Tarnished Chain Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102383','1','4','3','6903','8','5','5','1','0','Tarnished Chain Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102384','1','4','3','6904','9','5','5','1','0','Tarnished Chain Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102385','1','4','3','6905','10','5','5','1','0','Tarnished Chain Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102386','1','4','3','2222','5','5','5','1','0','Rusted Chain Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102387','1','4','3','6902','6','5','5','1','0','Rusted Chain Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102388','1','4','3','2228','7','5','5','1','0','Rusted Chain Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102389','1','4','3','6952','8','5','5','1','0','Rusted Chain Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102390','1','4','3','6953','9','5','5','1','0','Rusted Chain Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102391','1','4','3','6954','10','5','5','1','0','Rusted Chain Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102392','1','4','3','2265','5','5','10','5','0','Light Mail Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102393','1','4','3','6902','6','5','10','5','0','Light Mail Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102394','1','4','3','2217','7','5','10','5','0','Light Mail Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102395','1','4','3','6903','8','5','10','5','0','Light Mail Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102396','1','4','3','6904','9','5','10','5','0','Light Mail Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102397','1','4','3','6955','10','5','10','5','0','Light Mail Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102398','1','4','3','2269','5','5','10','5','0','Light Chain Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102399','1','4','3','6902','6','5','10','5','0','Light Chain Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102400','1','4','3','2270','7','5','10','5','0','Light Chain Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102401','1','4','3','6952','8','5','10','5','0','Light Chain Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102402','1','4','3','6953','9','5','10','5','0','Light Chain Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102403','1','4','3','6954','10','5','10','5','0','Light Chain Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102410','1','4','0','12312','23','2','1','0','7','Smoky Torch','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102417','1','4','3','8634','5','5','37','32','0','Augmented Chain Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102418','1','4','3','2969','7','5','37','32','0','Augmented Chain Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102419','1','4','3','6819','6','5','37','32','0','Augmented Chain Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102420','1','4','3','6820','8','5','37','32','0','Augmented Chain Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102421','1','4','3','6821','9','5','37','32','0','Augmented Chain Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102422','1','4','3','6822','10','5','37','32','0','Augmented Chain Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102423','1','4','3','8642','5','5','50','45','0','Brigandine Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102424','1','4','3','6853','6','5','50','45','0','Brigandine Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102425','1','4','3','2976','7','5','50','45','0','Brigandine Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102426','1','4','3','6854','8','5','50','45','0','Brigandine Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102427','1','4','3','6855','9','5','50','45','0','Brigandine Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102428','1','4','3','6856','10','5','50','45','0','Brigandine Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102429','1','4','1','14484','5','7','37','32','0','Russet Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102431','1','4','1','14483','7','7','37','32','0','Russet Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102432','1','4','1','1861','8','7','37','32','0','Russet Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102434','1','4','1','14482','10','7','37','32','0','Russet Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102435','1','4','1','16769','5','7','50','45','0','Embroidered Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102437','1','4','1','16770','7','7','50','45','0','Embroidered Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102438','1','4','1','16772','8','7','50','45','0','Embroidered Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102440','1','4','1','16771','10','7','50','45','0','Embroidered Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102441','1','4','6','18468','14','1','22','17','4','Ringed Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102442','1','4','6','2324','14','1','27','22','4','Reinforced Targe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102443','1','4','6','18477','14','1','37','32','4','Metal Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102444','1','4','6','18516','14','1','50','45','4','Ornate Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102445','1','4','6','18749','14','1','22','17','4','Large Metal Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102446','1','4','6','18733','14','1','27','22','4','Kite Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102448','1','4','6','18732','14','1','37','32','4','Heavy Pavise','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102451','1','4','6','18772','14','1','50','45','4','Crested Heater Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102463','1','4','2','16900','5','8','37','32','0','Studded Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102464','1','4','2','11558','6','8','37','32','0','Studded Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102465','1','4','2','17031','7','8','37','32','0','Studded Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102467','1','4','2','17165','8','8','37','32','0','Studded Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102468','1','4','2','17020','9','8','37','32','0','Studded Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102469','1','4','2','17027','10','8','37','32','0','Studded Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102470','1','4','2','14496','5','8','50','45','0','Reinforced Leather Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102471','1','4','2','14492','6','8','50','45','0','Reinforced Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102472','1','4','2','14495','7','8','50','45','0','Reinforced Leather Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102473','1','4','2','14295','8','8','50','45','0','Reinforced Leather Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102474','1','4','2','14493','9','8','50','45','0','Reinforced Leather Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102475','1','4','2','2686','10','8','50','45','0','Reinforced Leather Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102479','1','2','1','8512','17','1','4','1','1','Broad Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102480','1','2','5','19601','17','2','3','1','1','Large Club','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102481','1','2','7','16155','21','1','4','1','3','Peon Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102482','1','2','0','8488','13','1','3','1','3','Inferior Tomahawk','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102483','1','2','1','19243','17','1','3','1','1','Rough Broad Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102484','1','2','15','6442','13','1','4','1','3','Small Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102485','1','2','4','5219','21','2','3','1','3','Splintered Board','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102486','1','2','5','19627','17','2','3','1','1','Large Stone Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102487','1','2','10','20448','17','2','4','1','2','Acolyte Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102488','1','2','7','22078','13','1','9','4','3','Gladius','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102489','1','2','8','22094','17','1','7','2','1','Two-handed Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102490','1','2','0','8488','13','1','9','4','3','Tomahawk','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102491','1','2','1','22112','17','1','8','3','1','Large Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102492','1','2','4','12992','13','2','7','2','3','Cudgel','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102493','1','2','5','22121','17','2','9','4','1','Wooden Mallet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102494','1','2','15','22136','13','1','8','3','3','Stiletto','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102495','1','2','10','7310','17','2','8','3','2','Walking Stick','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102496','1','2','7','2398','21','1','8','3','3','Raider Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102497','1','2','8','2399','17','1','9','4','1','Rusted Claymore','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102498','1','2','0','19299','13','1','8','3','3','Small Tomahawk','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102499','1','2','1','8511','17','1','9','4','1','Double-bladed Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102500','1','2','4','19626','21','2','7','2','3','Light Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102501','1','2','5','19614','17','2','9','4','1','Wooden Warhammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102502','1','2','15','6444','13','1','7','2','3','Scuffed Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102503','1','2','10','20436','17','2','8','3','2','Adept Short Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102504','1','2','2','8106','15','2','2','1','0','Worn Shortbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102505','1','2','2','20723','15','2','4','1','0','Polished Shortbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102506','1','2','2','20722','15','2','8','3','0','Hornwood Recurve Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102507','1','2','2','20714','15','2','16','11','0','Laminated Recurve Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102508','1','2','3','6606','26','1','2','1','0','Old Blunderbuss','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102509','1','2','3','6607','26','1','9','4','0','Ornate Blunderbuss','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102510','1','2','3','6594','26','1','3','1','0','Solid Blunderbuss','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102511','1','2','3','20728','26','1','14','9','0','Hunter\'s Boomstick','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102520','1','2','7','22085','21','1','36','31','3','Broadsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102521','1','2','8','22084','17','1','36','31','1','Flamberge','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102522','1','2','0','8485','21','1','35','30','3','Crescent Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102523','1','2','1','22216','17','1','35','30','1','Bullova','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102524','1','2','4','8803','21','2','34','29','3','Truncheon','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102525','1','2','5','22133','17','2','35','30','1','War Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102526','1','2','15','22141','13','1','34','29','3','Main Gauche','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102527','1','2','10','22150','17','2','36','31','2','Battle Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102528','1','2','7','22081','21','1','46','41','3','Falchion','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102529','1','2','8','22098','17','1','46','41','1','Zweihander','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102530','1','2','0','22105','21','1','46','41','3','Francisca','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102531','1','2','1','22111','17','1','44','39','1','Great Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102532','1','2','4','22120','21','2','46','41','3','Morning Star','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102533','1','2','5','22134','17','2','45','40','1','War Maul','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102534','1','2','15','22140','13','1','44','39','3','Rondel','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102535','1','2','10','20389','17','2','45','40','2','War Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102545','2','4','3','3043','7','5','26','0','0','Malleable Chain Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102546','1','4','3','6981','6','5','11','6','0','Royal Frostmane Girdle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102547','1','4','3','6905','10','5','5','0','0','Boar Handler Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102549','3','2','10','20330','17','2','27','22','2','Staff of the Shade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102562','1','4','0','6488','23','-1','23','0','0','Bouquet of Scarlet Begonias','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102564','3','4','2','4485','10','8','50','45','0','Elven Spirit Claws','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102565','3','4','0','6555','23','1','35','30','7','Rod of Molten Fire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102566','2','4','1','16666','20','7','27','22','0','Sacrificial Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102567','3','2','15','20590','13','1','23','18','3','Evocator\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102568','1','4','1','17125','5','7','8','3','0','Brown Linen Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102569','2','4','1','17120','8','7','13','8','0','Linen Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102570','1','4','1','23122','16','7','6','1','0','Linen Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102571','1','4','1','2486','8','7','7','0','0','Viny Wrappings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102572','2','4','1','12687','20','7','10','5','0','Red Linen Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102575','1','4','0','10840','4','7','10','0','0','Red Linen Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102576','1','4','0','10834','4','7','7','0','0','White Linen Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102577','1','4','0','10845','4','7','10','0','0','Blue Linen Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102578','2','4','1','10891','5','7','14','9','0','Barbaric Linen Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102579','1','4','0','12864','4','7','14','0','0','Green Linen Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102580','2','4','1','23133','16','7','12','7','0','Reinforced Linen Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102582','2','4','1','12394','5','7','17','12','0','Green Woolen Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102583','2','4','1','13524','8','7','19','14','0','Woolen Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102584','1','4','1','23144','16','7','16','11','0','Woolen Cape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102585','2','4','1','12669','20','7','21','16','0','Gray Woolen Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102586','1','4','1','22033','20','7','1','0','0','Gamemaster\'s Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102587','1','4','0','10892','4','7','20','0','0','Gray Woolen Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102612','1','4','1','12704','20','7','8','3','0','Plain Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102613','1','4','1','12661','20','7','13','8','0','Double-stitched Robes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102614','1','4','1','16614','20','7','17','12','0','Robe of Apprenticeship','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102615','1','4','1','12655','20','7','29','24','0','Chromatic Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102616','1','4','1','12701','20','7','23','18','0','Shimmering Silk Robes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102617','1','4','1','12654','20','7','37','32','0','Burning Robes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102618','1','4','1','12702','20','7','50','45','0','Silver Dress Robes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102620','2','4','1','15284','1','7','39','34','0','Augural Shroud','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102621','2','4','1','15295','1','7','36','31','0','Cowl of Necromancy','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102622','2','4','1','13244','1','7','37','32','0','Nimar\'s Tribal Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102623','2','4','1','15336','1','7','41','36','0','Holy Diadem','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102624','2','4','1','15547','1','7','42','37','0','Thinking Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102632','2','2','15','20473','13','1','14','9','3','Curved Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102635','0','4','3','6902','6','5','8','3','0','Loose Chain Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102642','0','4','3','6903','8','5','9','4','0','Loose Chain Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102643','0','4','3','6904','9','5','10','5','0','Loose Chain Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102644','0','4','1','15082','16','7','6','1','0','Loose Chain Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102645','0','4','3','6905','10','5','7','2','0','Loose Chain Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102646','0','4','3','2217','7','5','8','3','0','Loose Chain Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102648','0','4','3','2215','5','5','10','5','0','Loose Chain Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102649','0','4','3','6902','6','5','2','1','0','Flimsy Chain Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102650','0','4','3','6903','8','5','3','1','0','Flimsy Chain Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102651','0','4','3','6904','9','5','4','1','0','Flimsy Chain Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102652','0','4','1','15164','16','7','5','1','0','Flimsy Chain Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102653','0','4','3','6905','10','5','4','1','0','Flimsy Chain Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102654','0','4','3','2217','7','5','2','1','0','Flimsy Chain Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102656','0','4','3','2215','5','5','5','1','0','Flimsy Chain Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102664','2','2','15','20441','13','1','18','13','3','Spinner Fang','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102690','1','4','3','28201','6','5','5','0','0','Latched Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102691','1','4','3','6903','8','5','5','0','0','Outfitter Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102694','2','4','3','28250','7','5','17','0','0','Settler\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102721','3','4','1','16826','1','7','32','27','0','Holy Shroud','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102754','1','2','8','20117','17','1','3','1','1','Tarnished Bastard Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102763','0','2','15','6437','13','1','14','9','3','Fisherman Knife','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102764','0','2','15','6444','13','1','18','13','3','Small Dagger','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102765','0','2','15','20383','13','1','23','18','3','Hunting Knife','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102766','0','2','15','6445','13','1','29','24','3','Deft Stiletto','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102773','0','2','2','2786','15','2','8','3','0','Cracked Shortbow','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102774','0','2','3','20654','26','1','7','2','0','Rust-covered Blunderbuss','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102777','0','2','2','2787','15','2','13','8','0','Feeble Shortbow','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102778','0','2','3','20654','26','1','13','8','0','Cheap Blunderbuss','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102780','0','2','2','20712','15','2','19','14','0','Light Hunting Bow','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102781','0','2','3','20979','26','1','18','13','0','Dirty Blunderbuss','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102782','0','2','2','20671','15','2','24','19','0','Mishandled Recurve Bow','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102783','0','2','3','20717','26','1','22','17','0','Shoddy Blunderbuss','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102785','0','2','2','20668','15','2','28','23','0','Stiff Recurve Bow','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102786','0','2','3','20718','26','1','29','24','0','Oiled Blunderbuss','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102787','1','2','15','20534','13','1','3','1','3','Trogg Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102800','3','4','1','21114','20','7','26','21','0','Black Velvet Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102801','4','2','8','5193','17','1','64','59','1','Blade of Hanna','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102802','3','4','0','6484','12','-1','43','38','0','Blazing Emblem','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102805','2','4','1','23084','16','7','34','0','0','Yeti Fur Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102807','3','2','0','9118','13','1','23','18','3','Guillotine Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102808','1','2','14','3947','13','1','29','19','7','Torch of Holy Flame','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102815','3','2','0','8465','13','1','45','40','3','Curve-bladed Ripper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102816','3','2','4','19669','21','2','33','27','3','Death Speaker Scepter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102817','2','4','2','17103','5','8','12','0','0','Soft Leather Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102818','2','4','2','1963','7','8','15','0','0','Stretched Leather Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102819','2','2','15','6443','13','1','28','23','3','Cross Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102820','2','4','0','6540','12','-1','50','0','0','Nifty Stopwatch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102821','2','2','4','19633','13','2','18','13','3','Mo\'grosh Masher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102822','2','2','8','20091','17','1','18','13','1','Mo\'grosh Toothpick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102823','2','2','1','19236','17','1','19','14','1','Mo\'grosh Can Opener','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102824','4','2','2','20554','15','2','53','48','0','Hurricane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102825','4','2','2','20552','15','2','42','37','0','Bow of Searing Arrows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102844','1','2','4','2861','21','2','9','4','3','Copper Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102845','1','2','0','14035','21','1','9','4','3','Copper Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102847','1','2','7','4805','21','1','9','4','3','Copper Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102848','2','2','4','5198','21','2','22','17','3','Bronze Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102849','2','2','0','19929','21','1','23','18','3','Bronze Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102850','2','2','7','3855','21','1','24','19','3','Bronze Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102851','1','4','3','23529','6','5','11','6','0','Copper Chain Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102852','1','4','3','13095','7','5','9','4','0','Copper Chain Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102853','1','4','3','6966','9','5','7','2','0','Copper Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102854','2','4','3','25851','9','5','19','14','0','Runed Copper Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102857','2','4','3','25852','6','5','18','13','0','Runed Copper Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102864','2','4','3','25848','5','5','18','13','0','Runed Copper Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102865','2','4','3','4333','7','5','21','16','0','Rough Bronze Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102866','2','4','3','23530','5','5','23','18','0','Rough Bronze Cuirass','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102867','2','4','3','23532','9','5','23','18','0','Rough Bronze Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102868','2','4','3','23533','9','5','25','20','0','Patterned Bronze Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102869','2','4','3','9403','5','5','26','21','0','Silvered Bronze Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102870','3','4','3','23540','5','5','29','24','0','Shining Silver Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102877','3','2','8','20151','17','1','33','28','1','Combatant Claymore','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102878','3','2','0','8469','13','1','30','25','3','Bearded Boneaxe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102879','3','4','0','13109','23','1','22','17','7','Antipodean Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102898','1','4','3','2967','5','5','7','2','0','Mountaineer Chestpiece','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102899','2','4','2','16949','6','8','15','10','0','Wendigo Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102900','1','4','6','18528','14','1','10','0','4','Stone Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102901','1','2','14','6568','21','1','4','1','0','Mining Pick','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102902','2','4','1','23099','16','7','30','0','0','Cloak of the Faith','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102903','2','2','2','8107','15','2','15','0','0','Daryl\'s Hunting Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102904','2','2','3','20732','26','1','16','0','0','Daryl\'s Hunting Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102905','1','4','1','23032','16','7','10','0','0','Goat Fur Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102906','2','4','3','2922','7','5','26','0','0','Darkshire Mail Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102907','2','2','1','19227','17','1','20','0','1','Dwarven Tree Chopper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102908','2','2','15','20605','13','1','20','0','3','Thornblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102910','2','4','3','6931','8','5','25','0','0','Gold Militia Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102911','3','4','1','9898','6','7','23','18','0','Keller\'s Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102912','3','2','15','20320','13','1','32','27','3','Claw of the Shadowmancer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102913','2','4','1','16828','3','7','28','0','0','Silk Mantle of Gamn','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102915','4','2','5','19664','17','2','52','47','1','Taran Icebreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102916','2','4','6','2934','14','1','34','0','4','Gold Lion Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102917','2','4','0','9850','11','-1','33','0','0','Tranquil Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102920','1','4','0','6556','12','2','10','1','0','Sacred Relic','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102921','1','4','0','6485','12','2','15','5','0','Blessed Relic','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102922','1','4','0','6564','12','2','20','10','0','Spirit Relic','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102933','3','4','0','9845','11','-1','31','0','0','Seal of Wrynn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102941','3','2','15','20359','13','1','26','21','3','Prison Shank','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102942','3','2','13','3007','13','1','26','21','7','Iron Knuckles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102943','2','4','0','21600','23','3','31','0','7','Eye of Paleth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102944','2','4','0','21598','23','3','31','26','7','Cursed Eye of Paleth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102949','2','4','2','16989','8','8','25','0','0','Mariner Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102950','2','2','10','20378','17','2','25','0','2','Icicle Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102951','3','4','0','9851','11','-1','36','31','0','Ring of the Underwood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102953','2','4','1','23077','16','7','33','0','0','Watch Master\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102954','2','4','1','14615','7','7','33','0','0','Night Watch Pantaloons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102955','2','4','1','16545','1','7','40','35','0','First Mate Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102957','2','4','1','14499','5','7','11','6','0','Journeyman\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102958','2','4','1','14498','7','7','10','5','0','Journeyman\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102959','1','4','1','14525','8','7','9','4','0','Journeyman\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102960','1','4','1','14497','10','7','9','4','0','Journeyman\'s Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102961','2','4','2','17093','5','8','11','6','0','Burnt Leather Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102962','2','4','2','17160','7','8','10','5','0','Burnt Leather Breeches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102963','1','4','2','16980','8','8','9','4','0','Burnt Leather Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102964','1','4','2','17175','10','8','10','5','0','Burnt Leather Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102965','2','4','3','22677','5','5','11','6','0','Warrior\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102966','2','4','3','7193','7','5','10','5','0','Warrior\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102967','1','4','3','22673','8','5','10','5','0','Warrior\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102968','1','4','3','22676','10','5','9','4','0','Warrior\'s Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102969','2','4','1','14524','5','7','17','12','0','Spellbinder Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102970','2','4','1','14529','7','7','16','11','0','Spellbinder Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102971','1','4','1','14531','8','7','14','9','0','Spellbinder Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102972','1','4','1','14528','10','7','14','9','0','Spellbinder Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102973','2','4','2','14539','5','8','17','12','0','Hunting Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102974','2','4','2','14537','7','8','16','11','0','Hunting Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102975','1','4','2','14534','8','8','14','9','0','Hunting Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102976','2','4','2','14536','10','8','15','10','0','Hunting Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102977','2','4','3','22689','5','5','16','11','0','Veteran Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102978','2','4','3','22693','7','5','15','10','0','Veteran Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102979','1','4','3','22690','8','5','14','9','0','Veteran Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102980','2','4','3','12450','10','5','15','10','0','Veteran Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102981','2','4','1','14549','20','7','21','16','0','Seer\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102982','2','4','1','14554','7','7','20','15','0','Seer\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102983','2','4','1','14552','8','7','17','12','0','Seer\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102984','2','4','1','16789','10','7','18','13','0','Seer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102985','2','4','2','9739','5','8','21','16','0','Inscribed Leather Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102986','2','4','2','11369','7','8','20','15','0','Inscribed Leather Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102987','2','4','2','11373','8','8','18','13','0','Inscribed Leather Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102988','2','4','2','14411','10','8','19','14','0','Inscribed Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102989','2','4','3','25769','5','5','21','16','0','Burnished Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102990','2','4','3','25768','7','5','21','16','0','Burnished Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102991','2','4','3','25765','8','5','21','16','0','Burnished Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('102992','2','4','3','16731','10','5','20','15','0','Burnished Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103000','2','4','2','16888','5','8','10','5','0','Brood Mother Carapace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103003','1','4','0','6492','12','2','10','1','0','Relic of the Eye','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103004','1','4','0','6551','12','2','15','5','0','Relic of the Dead','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103005','1','4','0','6553','12','2','20','10','0','Relic of Truth','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103008','1','4','1','23080','16','7','9','4','0','Wendigo Fur Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103011','2','4','2','13259','1','8','36','31','0','Feathered Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103018','2','4','1','23027','16','7','23','18','0','Hide of Lupos','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103019','2','4','1','12682','20','7','18','13','0','Noble\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103020','3','4','2','21294','1','8','33','28','0','Enduring Cap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103021','3','2','2','20673','15','2','25','20','0','Ranger Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103022','2','4','2','16534','7','8','23','18','0','Bluegill Breeches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103023','1','2','3','20727','26','1','21','16','0','Large Bore Blunderbuss','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103024','1','2','3','20726','26','1','26','21','0','BKP 2700 \"Enforcer\"','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103025','1','2','3','20725','26','1','36','31','0','BKP 42 \"Ultra\"','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103026','1','2','2','20675','15','2','21','16','0','Reinforced Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103027','1','2','2','20670','15','2','25','20','0','Heavy Recurve Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103036','2','2','2','5392','15','2','15','10','0','Heavy Shortbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103037','2','2','2','20653','15','2','34','29','0','Whipwood Recurve Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103039','2','2','2','20672','15','2','23','18','0','Short Ash Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103040','2','2','3','20740','26','1','19','14','0','Hunter\'s Muzzle Loader','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103041','2','2','3','20729','26','1','31','26','0','\"Mage-Eye\" Blunderbuss','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103042','2','2','3','20734','26','1','33','28','0','BKP \"Sparrow\" Smallbore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103045','2','4','3','25778','8','5','27','22','0','Lambent Scale Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103047','2','4','3','25782','10','5','27','22','0','Lambent Scale Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103048','2','4','3','11525','7','5','26','21','0','Lambent Scale Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103049','2','4','3','25780','5','5','27','22','0','Lambent Scale Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103053','2','4','3','3293','5','5','28','23','0','Humbert\'s Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103055','2','4','2','8665','5','8','26','21','0','Forest Leather Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103056','2','4','2','16954','7','8','26','21','0','Forest Leather Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103057','2','4','2','16984','8','8','24','19','0','Forest Leather Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103058','2','4','2','17055','10','8','25','20','0','Forest Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103065','2','4','1','27547','8','7','23','18','0','Bright Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103066','2','4','1','27550','10','7','24','19','0','Bright Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103067','2','4','1','3217','7','7','26','21','0','Bright Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103069','2','4','1','27554','20','7','27','22','0','Bright Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103070','1','4','1','15149','16','7','5','0','0','Ensign Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103071','1','2','0','19209','21','1','12','0','3','Striking Hatchet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103072','2','4','1','16694','20','7','26','21','0','Smoldering Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103073','2','4','1','16846','7','7','26','21','0','Smoldering Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103074','2','4','1','12420','10','7','24','19','0','Smoldering Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103075','4','4','1','15322','1','7','55','49','0','Eye of Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103076','2','4','1','4873','8','7','23','18','0','Smoldering Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103078','3','2','2','20669','15','2','26','21','0','Naga Heartpiercer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103079','2','2','3','20738','26','1','12','0','0','Skorn\'s Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103103','2','2','5','8588','17','2','12','0','1','Coldridge Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103148','0','4','0','7849','4','7','1','0','0','Work Shirt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103151','1','4','3','3293','5','5','10','0','0','Siege Brigade Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103152','1','4','2','17177','10','8','9','0','0','Driving Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103153','1','4','1','23128','16','7','9','0','0','Oil-stained Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103154','2','2','0','18340','13','1','18','0','3','Thelsamar Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103158','1','4','2','10412','9','8','12','0','0','Burnt Hide Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103160','2','4','6','3304','14','1','15','0','4','Ironplate Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103161','2','4','1','16696','20','7','15','0','0','Robe of the Keeper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103166','2','4','3','12965','5','5','15','0','0','Ironheart Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103184','2','2','15','20396','13','1','20','15','3','Hook Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103185','2','2','10','20362','17','2','34','29','2','Acrobatic Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103186','2','2','7','26576','21','1','30','25','3','Viking Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103187','2','2','15','20573','13','1','44','39','3','Sacrificial Kris','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103188','2','2','8','20072','17','1','15','10','1','Coral Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103189','1','2','1','8525','17','1','8','3','1','Wood Chopper','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103190','1','2','5','6799','17','2','8','3','1','Beatstick','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103191','3','2','1','11165','17','1','26','20','1','Arced War Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103192','2','2','8','26590','17','1','12','7','1','Short Bastard Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103193','2','2','5','19545','17','2','21','16','1','Oak Mallet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103194','3','2','5','19622','17','2','21','16','1','Black Malice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103195','2','2','1','8499','17','1','18','13','1','Barbaric Battle Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103196','2','2','8','26585','17','1','18','13','1','Edged Bastard Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103197','2','2','8','20184','17','1','35','30','1','Stonecutter Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103198','2','2','5','8585','17','2','23','18','1','Battering Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103199','2','2','1','19372','17','1','22','17','1','Battle Slayer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103200','1','4','2','17004','9','8','8','3','0','Burnt Leather Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103201','2','2','1','19283','17','1','28','23','1','Barbarian War Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103202','2','4','2','10216','9','8','24','19','0','Forest Leather Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103203','3','2','5','5228','17','2','28','23','1','Dense Triangle Mace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103204','2','4','2','3606','9','8','26','21','0','Deepwood Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103205','2','4','2','14410','9','8','17','12','0','Inscribed Leather Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103206','2','2','8','20186','17','1','28','23','1','Cavalier Two-hander','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103207','1','4','2','14535','9','8','14','9','0','Hunting Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103208','2','2','5','5232','17','2','48','43','1','Conk Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103209','2','2','8','20250','17','1','32','0','1','Ancient War Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103210','2','2','1','19275','17','1','30','25','1','Brutal War Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103211','2','4','3','25766','9','5','19','14','0','Burnished Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103212','2','4','3','25779','9','5','26','21','0','Lambent Scale Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103213','1','4','3','6953','9','5','13','8','0','Veteran Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103214','1','4','3','22674','9','5','9','4','0','Warrior\'s Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103216','1','4','1','18121','20','7','10','0','0','Warm Winter Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103217','2','4','1','16787','6','7','15','0','0','Foreman Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103222','2','2','15','20607','13','1','19','14','3','Wicked Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103223','2','2','4','19624','13','2','11','6','3','Frostmane Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103224','1','4','1','16926','9','7','10','5','0','Silver-lined Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103225','1','2','15','6437','13','1','9','4','3','Bloodstained Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103227','2','2','10','20381','17','2','23','18','2','Nightbane Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103228','3','4','3','10402','9','5','26','21','0','Jimmied Handcuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103229','2','4','1','9917','6','7','23','18','0','Tarantula Silk Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103230','3','4','2','17166','9','8','26','20','0','Black Wolf Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103231','2','4','3','10166','3','5','25','20','0','Cutthroat Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103235','2','4','0','9840','11','-1','20','0','0','Ring of Scorn','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103260','1','4','1','16612','20','7','4','1','0','Scarlet Initiate Robes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103261','1','4','1','23143','16','7','5','1','0','Webbed Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103262','1','2','4','21052','21','2','3','1','3','Putrid Wooden Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103263','1','4','1','3432','7','7','3','1','0','Webbed Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103267','1','2','7','20176','21','1','5','0','3','Forsaken Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103268','1','2','15','6432','13','1','5','0','3','Forsaken Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103269','1','2','4','19772','21','2','5','0','3','Forsaken Maul','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103270','1','4','1','16585','5','7','5','0','0','Flax Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103272','1','4','2','3442','7','8','5','0','0','Zombie Skin Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103273','1','4','3','2967','5','5','5','0','0','Rugged Mail Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103274','1','4','1','16587','8','7','5','0','0','Flax Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103275','1','4','1','16586','10','7','5','0','0','Flax Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103276','1','4','6','18490','14','1','5','0','4','Deathguard Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103277','1','2','10','20444','17','2','5','0','2','Executor Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103279','1','4','3','26927','8','5','12','7','0','Battle Chain Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103280','1','4','3','26928','9','5','9','4','0','Battle Chain Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103281','1','4','3','27175','10','5','11','6','0','Battle Chain Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103282','2','4','3','26932','7','5','12','7','0','Battle Chain Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103283','2','4','3','26933','5','5','13','8','0','Battle Chain Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103284','1','4','2','27993','8','8','12','7','0','Tribal Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103285','1','4','2','27994','9','8','10','5','0','Tribal Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103286','1','4','2','27995','10','8','12','7','0','Tribal Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103287','2','4','2','28591','7','8','12','7','0','Tribal Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103288','2','4','2','27996','5','8','13','8','0','Tribal Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103289','1','4','1','14514','8','7','11','6','0','Ancestral Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103290','1','4','1','14509','10','7','12','7','0','Ancestral Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103291','2','4','1','14511','7','7','13','8','0','Ancestral Woollies','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103292','2','4','1','14513','5','7','13','8','0','Ancestral Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103293','1','2','0','19281','21','1','3','1','3','Deadman Cleaver','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103294','1','2','4','5203','21','2','3','1','3','Deadman Club','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103295','1','2','7','3434','21','1','3','1','3','Deadman Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103296','1','2','15','6442','13','1','3','1','3','Deadman Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103302','2','4','3','26944','8','5','15','10','0','Brackwater Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103303','1','4','3','26945','9','5','12','7','0','Brackwater Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103304','1','4','3','28997','10','5','14','9','0','Brackwater Gauntlets','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103305','2','4','3','26948','7','5','16','11','0','Brackwater Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103306','2','4','3','26949','5','5','18','13','0','Brackwater Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103307','2','4','1','11060','8','7','15','10','0','Barbaric Cloth Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103308','2','4','1','16592','10','7','15','10','0','Barbaric Cloth Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103309','2','4','1','16591','7','7','16','11','0','Barbaric Loincloth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103310','2','4','1','16590','5','7','18','13','0','Barbaric Cloth Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103311','1','4','2','14544','8','8','15','10','0','Ceremonial Leather Ankleguards','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103312','1','4','2','14545','9','8','13','8','0','Ceremonial Leather Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103313','2','4','2','28047','5','8','18','13','0','Ceremonial Leather Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103314','2','4','2','14546','10','8','15','10','0','Ceremonial Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103315','2','4','2','14547','7','8','17','12','0','Ceremonial Leather Loincloth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103319','1','2','7','5007','21','1','9','4','3','Short Sabre','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103320','1','4','1','4506','6','7','9','4','0','Bonecaster Sash','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103321','1','4','2','4016','8','8','9','4','0','Gray Fur Booties','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103322','1','4','1','23015','16','7','6','1','0','Wispy Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103323','1','4','1','16906','9','7','8','3','0','Ghostly Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103324','2','4','1','21457','3','7','28','0','0','Ghostly Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103325','1','2','1','19252','17','1','9','4','1','Vile Fin Battle Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103327','1','2','10','20434','17','2','9','4','2','Vile Fin Oracle Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103328','1','4','1','16655','20','7','9','4','0','Spider Web Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103329','1','2','4','5204','21','2','11','6','3','Spiked Wooden Plank','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103330','2','4','3','12971','5','5','13','8','0','Dargol\'s Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103331','1','4','1','15196','16','7','12','7','0','Melrache\'s Cape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103332','1','4','3','6987','8','5','9','4','0','Perrine\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103334','1','2','5','7495','17','2','7','2','1','Farmer\'s Shovel','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103335','1','2','10','3509','17','2','6','3','2','Farmer\'s Broom','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103336','2','2','15','20341','13','1','29','24','3','Flesh Piercer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103341','2','4','3','6920','10','5','32','27','0','Gauntlets of Ogre Strength','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103342','1','4','0','7843','4','7','15','0','0','Captain Sanders\' Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103344','2','4','1','4511','6','7','15','0','0','Captain Sanders\' Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103345','2','4','1','15912','1','7','37','32','0','Silk Wizard Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103360','1','4','0','3573','23','-1','30','25','3','Stitches\' Femur','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103363','0','4','1','16663','6','7','3','1','0','Frayed Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103365','0','4','1','16664','9','7','5','1','0','Frayed Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103370','0','4','1','7881','6','7','8','3','0','Patchwork Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103373','0','4','1','16804','9','7','9','4','0','Patchwork Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103374','0','4','1','16554','6','7','14','9','0','Calico Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103375','0','4','1','16555','9','7','12','7','0','Calico Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103376','0','4','1','16819','6','7','18','13','0','Canvas Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103377','0','4','1','14111','9','7','19','14','0','Canvas Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103378','0','4','1','16807','6','7','21','16','0','Brocade Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103379','0','4','1','16806','9','7','22','17','0','Brocade Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103380','0','4','1','16784','6','7','30','25','0','Cross-stitched Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103381','0','4','1','16913','9','7','28','23','0','Cross-stitched Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103392','2','4','2','21310','1','8','30','25','0','Ringed Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103400','2','2','7','20110','13','1','25','0','3','Lucine Longsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103413','3','2','15','20589','13','1','25','20','3','Doomspike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103414','3','2','4','5198','13','2','27','22','3','Crested Scepter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103415','3','2','10','20339','17','2','24','19','2','Staff of the Friar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103416','3','4','3','12971','5','5','26','21','0','Martyr\'s Chain','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103417','3','2','8','20174','17','1','26','21','1','Onyx Claymore','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103419','1','4','0','6549','23','-1','20','0','0','Red Rose','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103420','1','4','0','6483','23','-1','40','0','0','Black Rose','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103421','1','4','0','6560','23','-1','10','0','0','Simple Wildflowers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103422','1','4','0','6479','23','-1','30','0','0','Beautiful Wildflowers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103423','1','4','0','6489','23','-1','50','0','0','Bouquet of White Roses','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103424','1','4','0','6487','23','-1','60','0','0','Bouquet of Black Roses','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103426','1','4','0','16610','4','7','30','0','0','Bold Yellow Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103427','1','4','0','7905','4','7','40','0','0','Stylish Black Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103428','1','4','0','10892','4','7','20','0','0','Common Gray Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103429','2','4','2','4532','6','8','24','19','0','Guardsman Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103430','2','2','3','6612','26','1','44','39','0','Sniper Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103431','2','4','2','17092','5','8','25','0','0','Bone-studded Leather','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103435','1','4','2','3708','9','8','8','0','0','Zombie Skin Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103437','1','4','3','6875','6','5','8','0','0','Clasped Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103439','1','4','2','3709','8','8','8','0','0','Zombie Skin Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103440','2','2','5','6806','17','2','13','0','1','Bonecracker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103442','1','4','1','4500','6','7','12','0','0','Apprentice Sash','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103443','1','2','0','8495','21','1','10','0','3','Ceremonial Tomahawk','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103444','1','4','2','8698','5','8','11','0','0','Tiller\'s Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103445','1','2','15','20599','13','1','12','0','3','Ceremonial Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103446','2','2','10','20419','17','2','13','0','2','Darkwood Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103447','1','4','3','6880','8','5','8','0','0','Cryptwalker Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103449','2','4','1','23127','16','7','15','0','0','Mystic Shawl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103450','2','4','6','18659','14','1','15','0','4','Faerleia\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103451','2','4','0','6541','23','-1','18','0','7','Nightglow Concoction','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103452','2','2','10','5120','17','2','22','0','2','Ceranium Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103453','1','4','1','16907','9','7','12','0','0','Quilted Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103454','1','4','1','3755','8','7','14','0','0','Reconnaissance Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103455','1','2','7','20015','13','1','11','0','3','Deathstalker Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103457','2','4','1','16850','7','7','18','0','0','Stamped Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103458','2','4','3','6982','10','5','18','0','0','Rugged Mail Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103461','2','4','1','12672','20','7','24','0','0','High Robe of the Adjudicator','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103462','2','2','7','28607','13','1','24','0','3','Talonstrike','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103469','1','4','3','23528','8','5','9','4','0','Copper Chain Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103471','2','4','3','13090','5','5','10','5','0','Copper Chain Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103472','2','4','3','25850','10','5','12','7','0','Runed Copper Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103473','2','4','3','25849','7','5','13','8','0','Runed Copper Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103474','2','4','3','9390','10','5','15','10','0','Gemmed Copper Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103475','4','4','1','23421','16','7','65','60','0','Cloak of Flames','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103480','2','4','3','23531','3','5','22','17','0','Rough Bronze Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103481','2','4','3','9407','3','5','25','20','0','Silvered Bronze Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103482','2','4','3','9404','8','5','26','21','0','Silvered Bronze Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103483','2','4','3','9406','10','5','27','22','0','Silvered Bronze Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103484','2','4','3','9412','8','5','29','24','0','Green Iron Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103485','2','4','3','9414','10','5','30','25','0','Green Iron Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103487','2','2','8','20196','17','1','19','14','1','Heavy Copper Broadsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103488','2','2','1','8516','17','1','13','8','1','Copper Battle Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103489','2','2','0','8496','13','1','17','12','3','Thick War Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103490','2','2','15','6445','13','1','25','20','3','Deadly Bronze Poniard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103491','2','2','4','5211','13','2','25','20','3','Heavy Bronze Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103492','2','2','4','3780','13','2','30','25','3','Mighty Iron Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103493','2','2','2','20664','15','2','30','0','0','Raptor\'s End','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103511','2','4','1','23020','16','7','15','0','0','Cloak of the People\'s Militia','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103536','1','4','3','13564','1','5','1','1','0','Demon Hunter Blindfold','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103555','2','4','1','16615','20','7','25','0','0','Robe of Solomon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103556','2','4','1','16544','1','7','30','0','0','Dread Mage Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103558','2','4','1','16528','20','7','25','0','0','Fen Keeper Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103559','2','4','3','11626','10','5','21','0','0','Night Watch Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103560','2','4','1','20715','3','7','35','0','0','Mantle of Honor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103561','2','4','1','23135','16','7','26','0','0','Resilient Poncho','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103562','2','4','2','16910','6','8','27','0','0','Belt of Vindication','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103563','2','4','1','3179','7','7','20','15','0','Seafarer\'s Pantaloons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103565','2','4','1','14127','10','7','20','0','0','Beerstained Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103566','2','4','2','17101','5','8','29','0','0','Raptorbane Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103567','2','2','3','6601','26','1','19','0','0','Dwarven Fishing Pole','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103569','2','4','1','18122','20','7','26','21','0','Vicar\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103570','2','2','4','8100','13','2','16','0','3','Bonegrinding Pestle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103571','2','2','5','19546','17','2','21','16','1','Trogg Beater','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103572','2','2','7','5151','13','1','17','0','3','Daryl\'s Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103578','2','4','2','9380','7','8','15','0','0','Harvester\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103581','2','2','15','20414','13','1','18','0','3','Serrated Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103582','2','4','1','23085','16','7','18','0','0','Acidproof Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103583','1','4','2','16948','6','8','12','0','0','Weathered Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103585','2','4','2','16876','5','8','22','0','0','Camouflaged Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103586','2','2','1','19231','17','1','16','0','1','Logsplitter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103587','1','4','1','16773','6','7','50','45','0','Embroidered Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103588','1','4','1','16774','9','7','50','45','0','Embroidered Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103589','1','4','1','16788','6','7','17','12','0','Heavy Weave Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103590','1','4','1','16816','9','7','17','12','0','Heavy Weave Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103591','1','4','1','16834','6','7','27','22','0','Padded Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103592','1','4','1','3645','9','7','27','22','0','Padded Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103593','1','4','1','16835','6','7','37','32','0','Russet Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103594','1','4','1','3740','9','7','37','32','0','Russet Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103595','1','4','1','16583','6','7','5','1','0','Tattered Cloth Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103596','1','4','1','16584','9','7','5','1','0','Tattered Cloth Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103597','1','4','1','16782','6','7','22','17','0','Thick Cloth Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103598','1','4','1','3895','9','7','22','17','0','Thick Cloth Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103599','1','4','1','16832','6','7','5','1','0','Thin Cloth Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103600','1','4','1','16929','9','7','5','1','0','Thin Cloth Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103602','1','4','1','16577','6','7','10','5','0','Knitted Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103603','1','4','1','16930','9','7','10','5','0','Knitted Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103606','1','4','1','14456','6','7','10','5','0','Woven Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103607','1','4','1','14161','9','7','10','5','0','Woven Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103641','1','4','1','14423','9','7','8','3','0','Journeyman\'s Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103642','1','4','1','14510','9','7','9','4','0','Ancestral Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103643','1','4','1','14342','9','7','14','9','0','Spellbinder Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103644','1','4','1','16595','9','7','12','7','0','Barbaric Cloth Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103645','2','4','1','16915','9','7','17','12','0','Seer\'s Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103647','2','4','1','14566','9','7','23','18','0','Bright Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103648','1','4','6','18492','14','1','11','6','4','Warrior\'s Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103649','1','4','6','18512','14','1','11','6','4','Tribal Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103650','1','4','6','18655','14','1','9','4','4','Battle Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103651','2','4','6','2052','14','1','15','10','4','Veteran Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103652','2','4','6','18488','14','1','14','9','4','Hunting Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103653','2','4','6','1673','14','1','15','10','4','Ceremonial Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103654','2','4','6','18657','14','1','14','9','4','Brackwater Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103655','2','4','6','18696','14','1','21','16','4','Burnished Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103656','2','4','6','18702','14','1','27','22','4','Lambent Scale Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103661','1','2','10','18530','17','2','2','1','2','Handcrafted Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103719','2','4','1','23040','16','7','30','25','0','Hillman\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103732','1','4','1','15339','1','7','30','0','0','Hooded Cowl','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103733','2','4','3','4085','5','5','23','0','0','Orcish War Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103738','2','2','10','20374','17','2','25','0','2','Brewing Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103739','2','4','0','16132','11','-1','25','0','0','Skull Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103740','2','2','7','22226','21','1','24','19','3','Decapitating Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103741','2','4','2','17164','8','8','24','0','0','Stomping Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103742','2','2','2','20667','15','2','28','0','0','Bow of Plunder','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103743','2','4','6','6275','14','1','28','0','4','Sentry Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103747','2','4','2','11167','6','8','30','0','0','Meditative Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103748','3','4','1','10169','3','7','26','21','0','Feline Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103749','2','4','1','23118','16','7','30','0','0','High Apothecary Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103750','2','4','2','8732','5','8','30','0','0','Ribbed Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103751','2','4','3','3083','7','5','30','0','0','Mercenary Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103752','2','4','1','8666','5','7','22','0','0','Grunt Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103753','2','4','2','17129','6','8','34','0','0','Shepherd\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103754','2','4','2','17186','10','8','33','0','0','Shepherd\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103755','2','2','0','19228','13','1','32','0','3','Fish Gutter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103758','2','4','3','6902','6','5','33','0','0','Crusader Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103759','2','4','1','16944','10','7','33','0','0','Insulated Sage Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103760','2','4','0','963','11','1','32','0','0','Band of the Undercity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103761','2','4','6','18769','14','1','32','0','4','Deadskull Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103763','2','4','6','6272','14','1','40','0','4','Lunar Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103764','2','4','1','3750','8','7','40','0','0','Mantis Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103765','2','4','3','6971','3','5','40','0','0','Brigand\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103778','0','2','2','20660','15','2','31','26','0','Taut Compound Bow','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103779','0','2','1','19287','17','1','32','27','1','Hefty War Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103780','0','2','3','20717','26','1','33','28','0','Long-barreled Musket','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103781','0','2','8','20150','17','1','34','29','1','Broad Claymore','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103782','0','2','5','19532','17','2','35','30','1','Large War Club','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103783','0','2','7','20216','21','1','36','31','3','Light Scimitar','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103784','0','2','10','20350','17','2','37','32','2','Metal Stave','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103785','0','2','0','8480','21','1','38','33','3','Keen Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103786','0','2','15','6468','13','1','39','34','3','Shiny Dirk','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103787','0','2','4','19694','21','2','40','35','3','Stone Club','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103792','0','4','1','12424','6','7','34','29','0','Interlaced Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103793','0','4','1','6190','8','7','32','27','0','Interlaced Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103794','0','4','1','16571','9','7','38','33','0','Interlaced Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103795','0','4','1','23120','16','7','36','31','0','Interlaced Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103796','0','4','1','16569','10','7','33','28','0','Interlaced Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103797','0','4','1','14711','7','7','39','34','0','Interlaced Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103798','0','4','1','14091','3','7','35','30','0','Interlaced Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103799','0','4','1','16568','5','7','37','32','0','Interlaced Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103800','0','4','2','19042','6','8','39','34','0','Hardened Leather Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103801','0','4','2','19043','8','8','35','30','0','Hardened Leather Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103802','0','4','2','14803','9','8','34','29','0','Hardened Leather Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103803','0','4','1','23036','16','7','38','33','0','Hardened Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103804','0','4','2','19044','10','8','36','31','0','Hardened Leather Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103805','0','4','2','19041','7','8','32','27','0','Hardened Leather Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103806','0','4','2','11270','3','8','37','32','0','Hardened Leather Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103807','0','4','2','19040','5','8','33','28','0','Hardened Leather Tunic','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103808','0','4','3','6902','6','5','34','29','0','Double Mail Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103809','0','4','3','6903','8','5','32','27','0','Double Mail Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103810','0','4','3','6904','9','5','38','33','0','Double Mail Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103811','0','4','1','15121','16','7','37','32','0','Double-stitched Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103812','0','4','3','6905','10','5','36','31','0','Double Mail Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103813','0','4','3','687','7','5','35','30','0','Double Mail Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103814','0','4','3','6914','3','5','39','34','0','Double Mail Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103815','0','4','3','977','5','5','33','28','0','Double Mail Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103816','0','4','6','4130','14','1','36','31','4','Reflective Heater','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103817','0','4','6','18481','14','1','33','28','4','Reinforced Buckler','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103822','2','2','8','20180','17','1','32','0','1','Runic Darkblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103833','1','4','1','23089','16','7','8','0','0','Adept\'s Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103834','1','4','1','16839','7','7','8','0','0','Sturdy Cloth Trousers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103835','2','4','3','9417','9','5','33','28','0','Green Iron Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103836','2','4','3','25658','1','5','34','29','0','Green Iron Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103837','2','4','3','15333','1','5','38','33','0','Golden Scale Coif','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103840','2','4','3','9422','3','5','32','27','0','Green Iron Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103841','2','4','3','9424','3','5','35','30','0','Golden Scale Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103842','2','4','3','9415','7','5','31','26','0','Green Iron Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103843','2','4','3','9242','7','5','34','29','0','Golden Scale Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103844','3','4','3','13088','5','5','36','31','0','Green Iron Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103845','2','4','3','9425','5','5','40','35','0','Golden Scale Cuirass','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103846','2','4','3','23537','8','5','37','32','0','Polished Steel Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103847','2','4','3','9426','8','5','40','35','0','Golden Scale Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103848','2','2','15','6434','13','1','20','15','3','Big Bronze Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103849','2','2','7','5153','13','1','32','27','3','Hardened Iron Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103850','2','2','7','20215','13','1','35','30','3','Jade Serpentblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103851','2','2','5','19647','17','2','31','26','1','Solid Iron Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103852','2','2','5','15468','17','2','34','29','1','Golden Iron Destroyer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103853','2','2','8','7324','17','1','36','31','1','Moonsteel Broadsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103854','2','2','8','20252','17','1','40','35','1','Frost Tiger Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103855','2','2','1','8528','17','1','37','32','1','Massive Iron Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103856','2','2','1','8533','17','1','40','35','1','Shadow Crescent Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103889','1','4','1','15908','1','7','37','32','0','Russet Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103890','1','4','2','17204','1','8','37','32','0','Studded Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103891','1','4','3','15318','1','5','37','32','0','Augmented Chain Helm','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103892','1','4','1','16775','1','7','50','45','0','Embroidered Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103893','1','4','2','21308','1','8','50','45','0','Reinforced Leather Cap','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103894','1','4','3','15320','1','5','50','45','0','Brigandine Helm','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103902','2','2','10','20412','17','2','18','13','2','Staff of Nobles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103935','1','2','7','7311','13','1','25','20','3','Smotts\' Cutlass','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103936','0','4','1','16722','6','7','42','37','0','Crochet Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103937','0','4','1','16721','8','7','46','41','0','Crochet Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103938','0','4','1','16724','9','7','44','39','0','Crochet Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103939','0','4','1','23101','16','7','47','42','0','Crochet Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103940','0','4','1','16720','10','7','48','43','0','Crochet Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103941','0','4','1','16719','7','7','45','40','0','Crochet Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103942','0','4','1','14396','3','7','49','44','0','Crochet Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103943','0','4','1','16718','5','7','43','38','0','Crochet Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103944','0','4','1','16704','6','7','53','48','0','Twill Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103945','0','4','1','16703','8','7','55','50','0','Twill Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103946','0','4','1','9894','9','7','54','49','0','Twill Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103947','0','4','1','16707','16','7','52','47','0','Twill Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103948','0','4','1','16702','10','7','58','53','0','Twill Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103949','0','4','1','16701','7','7','59','54','0','Twill Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103950','0','4','1','16706','3','7','56','51','0','Twill Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103951','0','4','1','16700','5','7','57','52','0','Twill Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103952','0','4','1','14414','6','7','68','63','0','Mesh Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103953','0','4','1','16712','8','7','64','59','0','Mesh Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103954','0','4','1','16714','9','7','65','60','0','Mesh Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103955','0','4','1','23124','16','7','62','57','0','Mesh Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103956','0','4','1','16711','10','7','63','58','0','Mesh Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103957','0','4','1','16709','7','7','67','62','0','Mesh Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103958','0','4','1','16715','3','7','69','64','0','Mesh Mantle','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103959','0','4','1','16708','5','7','66','61','0','Mesh Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103961','0','4','2','16943','6','8','44','39','0','Thick Leather Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103962','0','4','2','18419','8','8','48','43','0','Thick Leather Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103963','0','4','2','17021','9','8','43','38','0','Thick Leather Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103964','0','4','1','23070','16','7','46','41','0','Thick Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103965','0','4','2','17188','10','8','49','44','0','Thick Leather Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103966','0','4','2','17155','7','8','42','37','0','Thick Leather Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103967','0','4','2','17196','3','8','47','42','0','Thick Leather Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103968','0','4','2','17105','5','8','45','40','0','Thick Leather Tunic','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103969','0','4','2','14408','6','8','55','50','0','Smooth Leather Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103970','0','4','2','16994','8','8','54','49','0','Smooth Leather Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103971','0','4','2','17171','9','8','59','54','0','Smooth Leather Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103972','0','4','1','23065','16','7','56','51','0','Smooth Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103973','0','4','2','17069','10','8','58','53','0','Smooth Leather Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103974','0','4','2','16972','7','8','53','48','0','Smooth Leather Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103975','0','4','2','4486','3','8','52','47','0','Smooth Leather Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103976','0','4','2','11138','5','8','57','52','0','Smooth Leather Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103977','0','4','2','16941','6','8','63','58','0','Strapped Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103978','0','4','2','16995','8','8','69','64','0','Strapped Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103979','0','4','2','17019','9','8','67','62','0','Strapped Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103980','0','4','1','23068','16','7','62','57','0','Strapped Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103981','0','4','2','17070','10','8','68','63','0','Strapped Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103982','0','4','2','16975','7','8','66','61','0','Strapped Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103983','0','4','2','14421','3','8','65','60','0','Strapped Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103984','0','4','2','9925','5','8','64','59','0','Strapped Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103985','2','4','1','16829','6','7','40','35','0','Monogrammed Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103986','0','4','6','18814','14','1','48','43','4','Protective Pavise','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103987','0','4','6','18774','14','1','53','48','4','Deflecting Tower','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103988','0','4','6','18813','14','1','65','60','4','Plate Wall Shield','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103989','0','4','6','18472','14','1','42','37','4','Blocking Targe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103990','0','4','6','17885','14','1','56','51','4','Crested Buckler','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103991','0','4','6','18474','14','1','68','63','4','Plated Buckler','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103992','0','4','3','6946','6','5','52','47','0','Laminated Scale Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103993','0','4','3','6947','8','5','53','48','0','Laminated Scale Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103994','0','4','3','6948','9','5','58','53','0','Laminated Scale Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103995','0','4','1','15068','16','7','57','52','0','Laminated Scale Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103996','0','4','3','6949','10','5','59','54','0','Laminated Scale Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103997','0','4','3','4339','7','5','56','51','0','Laminated Scale Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103998','0','4','3','10170','3','5','55','50','0','Laminated Scale Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('103999','0','4','3','8672','5','5','54','49','0','Laminated Scale Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104000','0','4','3','6964','6','5','44','39','0','Overlinked Chain Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104001','0','4','3','6965','8','5','46','41','0','Overlinked Chain Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104002','0','4','3','6966','9','5','48','43','0','Overlinked Chain Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104003','0','4','1','15106','16','7','49','44','0','Overlinked Chain Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104004','0','4','3','6967','10','5','47','42','0','Overlinked Chain Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104005','0','4','3','4333','7','5','43','38','0','Overlinked Chain Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104006','0','4','3','28392','3','5','42','37','0','Overlinked Chain Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104007','0','4','3','11565','5','5','45','40','0','Overlinked Chain Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104008','0','4','3','6958','6','5','63','58','0','Sterling Chain Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104009','0','4','3','6997','8','5','65','60','0','Sterling Chain Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104010','0','4','3','6998','9','5','66','61','0','Sterling Chain Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104011','0','4','1','15239','16','7','68','63','0','Sterling Chain Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104012','0','4','3','6999','10','5','67','62','0','Sterling Chain Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104013','0','4','3','4346','7','5','64','59','0','Sterling Chain Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104014','0','4','3','9038','3','5','69','64','0','Sterling Chain Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104015','0','4','3','12966','5','5','62','57','0','Sterling Chain Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104017','0','2','7','20225','21','1','46','41','3','Sharp Shortsword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104018','0','2','8','20195','17','1','42','37','1','Whetted Claymore','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104019','0','2','0','8478','21','1','48','43','3','Heavy Flint Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104020','0','2','1','19374','17','1','49','44','1','Splintering Battle Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104021','0','2','4','19716','21','2','46','41','3','Blunting Mace','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104022','0','2','5','19526','17','2','50','45','1','Crushing Maul','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104023','0','2','15','4119','13','1','44','39','3','Fine Pointed Dagger','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104024','0','2','10','20309','17','2','47','42','2','Heavy War Staff','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104025','0','2','2','20550','15','2','45','40','0','Balanced Long Bow','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104026','0','2','3','20721','26','1','43','38','0','Sentinel Musket','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104035','2','4','1','16643','20','7','31','26','0','Silver-thread Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104036','2','4','1','4607','9','7','27','22','0','Silver-thread Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104037','2','4','1','14989','7','7','30','25','0','Silver-thread Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104038','2','4','1','27557','20','7','37','32','0','Nightsky Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104039','2','4','1','15298','1','7','35','30','0','Nightsky Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104040','2','4','1','14623','10','7','34','29','0','Nightsky Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104041','2','4','1','15287','1','7','39','34','0','Aurora Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104042','2','4','1','14661','10','7','39','34','0','Aurora Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104043','2','4','1','14652','9','7','38','33','0','Aurora Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104044','2','4','1','14659','7','7','40','35','0','Aurora Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104045','2','4','1','14680','9','7','42','37','0','Mistscape Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104046','2','4','1','14685','7','7','45','40','0','Mistscape Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104047','2','4','1','14679','8','7','43','38','0','Mistscape Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104048','2','4','2','17199','1','8','31','26','0','Emblazoned Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104049','2','4','2','14601','9','8','28','23','0','Emblazoned Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104050','2','4','2','17141','7','8','31','26','0','Emblazoned Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104051','2','4','2','17161','8','8','30','25','0','Emblazoned Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104052','2','4','2','21304','1','8','35','30','0','Insignia Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104054','2','4','2','17149','7','8','35','30','0','Insignia Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104055','2','4','2','3036','8','8','34','29','0','Insignia Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104057','2','4','2','16890','5','8','36','31','0','Insignia Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104058','2','4','2','14674','5','8','41','36','0','Glyphed Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104059','2','4','2','14673','9','8','37','32','0','Glyphed Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104060','2','4','2','14675','7','8','40','35','0','Glyphed Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104061','2','4','2','17008','9','8','42','37','0','Imperial Leather Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104062','2','4','2','17147','7','8','45','40','0','Imperial Leather Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104063','2','4','2','17181','10','8','43','38','0','Imperial Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104064','2','4','6','18487','14','1','30','25','4','Emblazoned Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104065','2','4','6','18699','14','1','36','31','4','Combat Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104066','2','4','6','4403','14','1','35','30','4','Insignia Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104067','2','4','6','6272','14','1','39','34','4','Glyphed Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104068','2','4','6','26325','14','1','40','35','4','Chief Brigadier Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104069','2','4','6','26085','14','1','47','42','4','Blackforge Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104070','2','4','6','18771','14','1','41','36','4','Jouster\'s Crest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104071','2','4','3','25801','5','5','31','26','0','Glimmering Mail Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104072','2','4','3','25802','10','5','30','25','0','Glimmering Mail Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104073','2','4','3','25804','8','5','31','26','0','Glimmering Mail Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104074','2','4','3','25809','5','5','36','31','0','Mail Combat Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104075','2','4','3','25811','10','5','34','29','0','Mail Combat Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104076','2','4','3','25810','8','5','35','30','0','Mail Combat Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104077','2','4','3','25825','1','5','35','30','0','Mail Combat Headguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104078','2','4','3','25904','1','5','39','34','0','Chief Brigadier Coif','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104079','2','4','3','25896','7','5','40','35','0','Chief Brigadier Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104080','2','4','3','15290','1','5','45','40','0','Blackforge Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104082','2','4','3','26074','5','5','47','42','0','Blackforge Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104083','2','4','3','26075','10','5','44','39','0','Blackforge Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104084','2','4','3','3409','7','5','46','41','0','Blackforge Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104086','2','2','3','20736','26','1','37','0','0','Flash Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104087','2','2','2','4426','15','2','41','36','0','Trueshot Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104088','2','2','15','28520','13','1','47','42','3','Dreadblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104089','2','2','3','6592','26','1','48','43','0','Ricochet Blunderbuss','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104090','3','2','4','18496','13','2','46','41','7','Mug O\' Hurt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104091','3','2','15','20380','13','1','47','42','3','Widowmaker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104107','2','4','2','4438','10','8','37','0','0','Tiger Hunter Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104108','2','4','2','4439','7','8','40','0','0','Panther Hunter Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104109','2','4','2','16983','8','8','41','0','0','Excelsior Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104110','2','2','2','20555','15','2','45','0','0','Master Hunter\'s Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104111','2','2','3','8095','26','1','45','0','0','Master Hunter\'s Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104112','2','4','0','9852','2','3','44','0','0','Choker of the High Shaman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104113','2','4','1','23123','16','7','45','0','0','Medicine Blanket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104114','2','4','1','15246','16','7','42','0','0','Darktide Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104115','2','4','6','17888','14','1','37','0','4','Grom\'gol Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104116','2','2','7','20223','13','1','41','0','3','Olmann Sewar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104117','2','4','1','16830','6','7','44','0','0','Scorching Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104118','2','4','3','6976','9','5','50','0','0','Poobah\'s Nose Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104119','2','4','2','17100','5','8','43','0','0','Raptor Hunter Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104120','3','4','1','16695','20','7','40','0','0','Robe of Crystal Waters','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104121','2','4','1','14323','10','7','35','0','0','Gemmed Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104122','2','2','4','3498','13','2','37','0','3','Bookmaker\'s Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104123','2','4','3','6919','3','5','37','0','0','Frost Metal Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104124','2','4','2','21293','1','8','40','0','0','Cap of Harmony','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104125','2','4','0','21605','23','3','43','0','7','Tranquil Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104126','2','2','0','19217','13','1','34','0','3','Guerrilla Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104127','2','2','3','20662','26','1','40','0','0','Shrapnel Blaster','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104128','2','2','5','18269','17','2','41','0','1','Silver Spade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104129','2','4','6','4458','14','1','44','0','4','Collection Plate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104130','2','4','0','6562','12','-1','50','0','0','Smotts\' Compass','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104131','2','4','2','17115','6','8','44','0','0','Belt of Corruption','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104132','2','4','3','6884','9','5','37','0','0','Darkspear Armsplints','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104133','2','4','1','4462','9','7','37','0','0','Darkspear Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104134','3','2','10','20294','17','2','46','0','2','Nimboya\'s Mystical Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104135','2','4','0','6486','11','5','35','0','1','Bloodbone Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104136','2','4','3','6885','8','5','42','0','0','Darkspear Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104137','2','4','1','4835','8','7','42','0','0','Darkspear Shoes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104138','2','4','3','8638','5','5','45','0','0','Blackwater Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104139','2','4','1','16822','8','7','37','0','0','Junglewalker Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104140','2','4','1','4869','3','7','34','0','0','Palm Frond Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104191','1','4','2','4497','7','8','27','22','0','Feathered Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104196','3','4','2','4483','3','8','30','20','0','Feathered Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104197','3','4','1','12980','3','7','36','0','0','Berylline Pads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104237','1','4','2','9501','6','8','10','5','0','Handstitched Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104239','2','4','2','9503','10','8','13','8','0','Embossed Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104242','2','4','2','9505','7','8','15','10','0','Embossed Leather Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104243','2','4','2','9511','5','8','17','12','0','Fine Leather Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104244','2','4','2','18458','5','8','20','15','0','Hillman\'s Leather Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104246','2','4','2','9513','6','8','16','11','0','Fine Leather Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104247','2','4','2','2362','10','8','29','24','0','Hillman\'s Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104248','2','4','2','9526','10','8','26','21','0','Dark Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104249','2','4','2','12464','6','8','25','20','0','Dark Leather Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104250','2','4','2','17237','6','8','25','20','0','Hillman\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104251','2','4','2','11274','3','8','26','21','0','Hillman\'s Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104252','2','4','2','12403','3','8','28','23','0','Dark Leather Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104253','3','4','2','27881','10','8','27','22','0','Toughened Leather Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104254','2','4','2','9543','10','8','30','25','0','Barbaric Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104255','2','4','2','9532','5','8','31','26','0','Green Leather Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104256','2','4','2','9545','5','8','35','30','0','Guardian Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104257','2','4','2','17224','6','8','32','27','0','Green Leather Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104258','2','4','2','9538','6','8','34','29','0','Guardian Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104259','2','4','2','9546','9','8','36','31','0','Green Leather Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104260','2','4','2','9550','9','8','39','34','0','Guardian Leather Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104261','1','4','1','16794','7','7','8','3','0','Solliden\'s Trousers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104262','3','4','2','17218','6','8','37','32','0','Gem-studded Leather Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104263','1','4','6','18668','14','1','10','5','4','Standard Issue Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104264','2','4','2','17111','6','8','40','35','0','Barbaric Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104290','2','4','6','4400','14','1','18','13','4','Dust Bowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104302','1','2','15','3006','13','1','10','5','3','Small Green Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104303','2','2','4','19615','13','2','12','7','3','Cranial Thumper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104307','2','4','1','6295','10','7','10','5','0','Heavy Linen Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104308','2','4','1','8089','9','7','12','7','0','Green Linen Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104309','2','4','1','12395','7','7','14','9','0','Handstitched Linen Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104310','2','4','1','12865','10','7','17','12','0','Heavy Woolen Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104311','2','4','1','23117','16','7','21','16','0','Heavy Woolen Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104312','2','4','1','14403','8','7','16','11','0','Soft-soled Linen Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104313','2','4','1','4615','8','7','20','15','0','Red Woolen Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104314','2','4','1','9997','3','7','22','17','0','Double-stitched Woolen Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104315','2','4','1','17135','3','7','24','19','0','Reinforced Woolen Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104316','2','4','1','6297','7','7','22','17','0','Heavy Woolen Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104317','2','4','1','12399','7','7','25','20','0','Phoenix Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104318','2','4','1','6291','10','7','26','21','0','Gloves of Meditation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104319','2','4','1','17130','10','7','29','24','0','Azure Silk Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104320','3','4','1','4301','8','7','24','19','0','Spidersilk Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104321','2','4','1','17138','8','7','28','23','0','Spider Silk Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104322','2','4','1','15314','1','7','33','28','0','Enchanter\'s Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104323','2','4','1','15319','1','7','34','29','0','Shadow Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104324','2','4','1','17128','5','7','30','25','0','Azure Silk Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104325','2','4','1','4631','8','7','35','30','0','Boots of the Enchanter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104326','2','4','1','15076','16','7','37','32','0','Long Silken Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104327','3','4','1','15273','16','7','40','35','0','Icy Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104328','2','4','1','17136','6','7','36','31','0','Spider Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104329','2','4','1','6315','6','7','40','35','0','Star Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104330','1','4','0','7906','4','7','22','0','0','Stylish Red Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104331','2','4','1','13195','10','7','25','20','0','Phoenix Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104332','1','4','0','7902','4','7','27','0','0','Bright Yellow Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104333','1','4','0','15858','4','7','31','0','0','Dark Silk Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104334','1','4','0','7903','4','7','34','0','0','Formal White Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104335','1','4','0','7904','4','7','37','0','0','Rich Purple Silk Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104336','1','4','0','13055','4','7','40','0','0','Black Swashbuckler\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104343','2','4','1','12388','7','7','10','5','0','Brown Linen Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104344','1','4','0','12802','4','7','7','0','0','Brown Linen Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104362','2','2','3','6600','26','1','10','5','0','Rough Boomstick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104368','2','4','1','13236','1','7','20','0','0','Flying Tiger Goggles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104369','2','2','3','20743','26','1','21','16','0','Deadly Blunderbuss','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104372','2','2','3','6594','26','1','24','19','0','Lovingly Crafted Boomstick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104373','2','4','1','26619','1','7','24','0','0','Shadow Goggles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104379','2','2','3','15835','26','1','26','21','0','Silver-plated Shotgun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104381','2','4','0','22293','12','8','28','0','0','Minor Recombobulator','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104383','2','2','3','8257','26','1','29','24','0','Moonsight Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104385','2','4','1','22422','1','7','30','0','0','Green Tinted Goggles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104393','2','4','1','13215','1','7','37','0','0','Craftsman\'s Monocle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104396','2','4','0','21632','12','8','40','30','0','Mechanical Dragonling','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104397','2','4','0','7841','12','8','40','0','0','Gnomish Cloaking Device','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104430','2','4','0','9853','2','3','43','0','0','Ethereal Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104434','2','4','1','4365','7','7','20','15','0','Scarecrow Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104436','2','4','1','9912','6','7','21','16','0','Jewel-encrusted Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104437','2','2','10','20390','17','2','20','15','2','Channeler\'s Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104438','3','4','3','6977','9','5','30','25','0','Pugilist Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104439','2','2','4','6795','13','2','22','17','3','Bruiser Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104443','2','4','3','11327','3','5','36','0','0','Grim Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104444','2','4','6','18694','14','1','24','19','4','Black Husk Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104445','2','2','0','19398','13','1','23','18','3','Flesh Carver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104446','3','2','15','20369','13','1','26','21','3','Blackvenom Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104447','2','4','1','23019','16','7','26','21','0','Cloak of Night','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104448','2','4','3','4723','5','5','27','22','0','Husk of Naraxis','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104449','2','2','15','20439','13','1','27','22','3','Naraxis\' Fang','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104454','3','2','15','20592','13','1','26','21','3','Talon of Vultros','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104455','2','4','2','14261','5','8','33','28','0','Raptor Hide Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104456','2','4','2','17231','6','8','33','28','0','Raptor Hide Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104462','2','4','1','23098','16','7','31','26','0','Cloak of Rot','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104463','2','4','1','9916','6','7','31','26','0','Beaded Raptor Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104464','2','4','3','7002','8','5','32','27','0','Trouncing Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104465','2','4','3','6844','10','5','32','27','0','Felstrom\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104474','2','2','2','12883','15','2','32','27','0','Ravenwood Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104476','2','4','1','12650','20','7','34','29','0','Beastwalker Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104477','2','4','6','17887','14','1','34','29','4','Nefarious Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104478','2','4','3','4744','7','5','45','40','0','Iridescent Scale Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104504','2','4','1','15183','16','7','31','0','0','Dwarven Guard Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104505','2','4','1','16791','7','7','31','0','0','Swampland Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104507','3','4','6','18653','14','1','42','0','4','Pit Fighter\'s Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104508','3','4','3','8639','5','5','42','0','0','Blood-tinged Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104509','2','4','2','17185','10','8','40','0','0','Seawolf Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104511','2','2','4','19783','13','2','40','0','3','Black Water Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104534','2','4','3','6996','9','5','29','0','0','Steel-clasped Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104535','2','4','0','9838','11','-1','31','0','0','Ironforge Memorial Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104543','2','4','2','21313','1','8','40','0','0','White Drakeskin Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104545','2','4','1','16892','9','7','40','0','0','Radiant Silver Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104547','2','2','19','21016','26','2','40','0','0','Gnomish Zapper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104548','2','2','5','3151','17','2','41','0','1','Servomechanic Sledgehammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104549','2','4','0','9834','11','5','46','0','1','Seafire Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104550','2','4','0','9832','11','5','46','0','1','Coldwater Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104560','1','2','7','4788','13','1','6','1','3','Fine Scimitar','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104561','2','2','0','19299','21','1','11','6','3','Scalping Tomahawk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104562','2','2','1','8531','17','1','10','5','1','Severing Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104563','1','2','4','4609','21','2','9','4','3','Billy Club','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104564','2','2','5','6813','17','2','13','8','1','Spiked Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104565','1','2','15','6433','13','1','6','1','3','Simple Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104566','2','2','10','20420','17','2','13','8','2','Sturdy Quarterstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104567','2','2','8','20111','17','1','16','11','1','Merc Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104568','2','2','0','22478','13','1','21','16','3','Grunt Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104569','2','2','4','19778','21','2','14','9','3','Staunch Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104570','2','2','5','8586','17','2','15','10','1','Birchwood Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104571','2','2','15','20430','13','1','17','12','3','War Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104575','2','2','10','20401','17','2','19','14','2','Medicine Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104576','2','2','2','20674','15','2','21','16','0','Light Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104577','2','2','3','6592','26','1','13','8','0','Compact Shotgun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104614','2','4','0','9859','2','-1','35','30','0','Pendant of Myzrael','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104616','1','2','14','6589','13','1','1','0','3','Ryedol\'s Lucky Pick','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104643','2','4','1','15079','16','7','33','0','0','Grimsteel Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104652','2','4','6','18789','14','1','45','0','4','Salbac Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104653','2','4','3','6944','8','5','45','0','0','Ironheel Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104658','1','4','1','25945','16','7','8','3','0','Warrior\'s Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104659','1','4','3','11131','6','5','8','3','0','Warrior\'s Girdle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104660','2','4','1','6322','8','7','18','13','0','Walking Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104661','2','4','1','27551','3','7','26','21','0','Bright Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104662','1','4','1','15061','16','7','8','3','0','Journeyman\'s Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104663','1','4','1','9907','6','7','9','4','0','Journeyman\'s Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104665','1','4','1','23015','16','7','8','3','0','Burnt Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104666','1','4','2','16911','6','8','9','4','0','Burnt Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104668','1','4','1','26979','16','7','9','4','0','Battle Chain Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104669','1','4','3','26930','6','5','10','5','0','Battle Chain Girdle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104671','1','4','1','25657','16','7','9','4','0','Ancestral Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104672','1','4','1','14515','6','7','10','5','0','Ancestral Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104674','1','4','1','27997','16','7','9','4','0','Tribal Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104675','1','4','2','16911','6','8','10','5','0','Tribal Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104676','2','4','3','6991','10','5','17','12','0','Skeletal Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104677','1','4','1','25950','16','7','12','7','0','Veteran Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104678','1','4','3','22692','6','5','14','9','0','Veteran Girdle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104680','1','4','1','26981','16','7','13','8','0','Brackwater Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104681','1','4','3','26947','6','5','14','9','0','Brackwater Girdle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104683','1','4','1','23113','16','7','13','8','0','Spellbinder Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104684','1','4','1','14530','6','7','13','8','0','Spellbinder Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104686','1','4','1','23137','16','7','12','7','0','Barbaric Cloth Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104687','1','4','1','16594','6','7','14','9','0','Barbaric Cloth Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104689','1','4','1','23041','16','7','13','8','0','Hunting Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104690','1','4','2','14533','6','8','13','8','0','Hunting Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104692','1','4','1','28049','16','7','12','7','0','Ceremonial Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104693','1','4','2','29632','6','8','14','9','0','Ceremonial Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104694','1','4','3','25770','3','5','22','17','0','Burnished Pauldrons','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104695','2','4','1','26048','16','7','18','13','0','Burnished Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104696','3','4','0','18495','23','3','59','54','7','Lapidis Tankard of Tidesippe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104697','2','4','3','25767','6','5','20','15','0','Burnished Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104698','1','4','1','14550','3','7','21','16','0','Seer\'s Mantle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104699','2','4','1','14555','6','7','18','13','0','Seer\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104700','1','4','2','14232','3','8','21','16','0','Inscribed Leather Spaulders','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104701','2','4','1','23044','16','7','16','11','0','Inscribed Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104705','2','4','3','25783','3','5','27','22','0','Lambent Scale Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104706','2','4','1','25979','16','7','24','19','0','Lambent Scale Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104707','2','4','3','25781','6','5','26','21','0','Lambent Scale Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104708','2','4','1','27545','6','7','24','19','0','Bright Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104709','2','4','2','8098','3','8','25','20','0','Forest Leather Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104710','2','4','1','23029','16','7','22','17','0','Forest Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104711','2','4','1','26047','16','7','28','23','0','Glimmering Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104712','2','4','3','25803','6','5','29','24','0','Glimmering Mail Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104713','2','4','1','23140','16','7','26','21','0','Silver-thread Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104714','2','4','1','4557','6','7','27','22','0','Silver-thread Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104715','2','4','1','23024','16','7','27','22','0','Emblazoned Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104716','2','4','1','26016','16','7','32','27','0','Combat Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104717','2','4','3','25813','6','5','34','29','0','Mail Combat Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104718','2','4','1','16652','3','7','35','30','0','Nightsky Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104719','2','4','1','18131','16','7','32','27','0','Nightsky Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104720','2','4','1','14624','6','7','33','28','0','Nightsky Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104721','2','4','2','17193','3','8','35','30','0','Insignia Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104722','2','4','1','23045','16','7','32','27','0','Insignia Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104723','2','4','1','14332','7','7','29','24','0','Humbert\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104724','2','4','2','21302','1','8','30','25','0','Humbert\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104725','2','4','3','25897','3','5','40','35','0','Chief Brigadier Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104726','2','4','1','25900','16','7','36','31','0','Chief Brigadier Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104727','2','4','3','25895','6','5','38','33','0','Chief Brigadier Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104729','2','4','1','14649','3','7','39','34','0','Aurora Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104731','2','4','2','14677','3','8','39','34','0','Glyphed Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104732','2','4','1','23031','16','7','37','32','0','Glyphed Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104733','2','4','3','26078','3','5','46','41','0','Blackforge Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104734','2','4','1','11638','3','7','43','38','0','Mistscape Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104735','2','4','1','23125','16','7','41','36','0','Mistscape Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104736','2','4','1','14686','6','7','42','37','0','Mistscape Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104737','2','4','2','17192','3','8','44','39','0','Imperial Leather Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104738','2','4','2','16921','6','8','42','37','0','Imperial Leather Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104741','2','4','3','4912','7','5','37','0','0','Stromgarde Cavalry Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104743','3','4','0','6546','2','3','50','0','0','Pulsating Crystalline Shard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104744','2','4','1','16925','9','7','39','0','0','Arcane Runed Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104745','2','4','3','7005','9','5','40','0','0','War Rider Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104746','2','4','1','12718','20','7','40','0','0','Doomsayer\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104763','2','2','2','3186','15','2','9','4','0','Blackwood Recurve Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104765','2','2','7','7313','13','1','14','9','3','Enamelled Broadsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104766','2','2','7','5154','13','1','13','8','3','Feral Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104767','2','4','1','3528','10','7','15','10','0','Coppercloth Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104768','2','4','1','16946','10','7','15','10','0','Adept\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104771','2','4','1','23012','16','7','15','10','0','Harvest Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104772','1','4','1','23075','16','7','11','6','0','Warm Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104777','2','2','5','19538','17','2','18','13','1','Ironwood Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104778','2','2','5','6808','17','2','19','14','1','Heavy Spiked Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104781','2','4','1','8702','5','7','20','15','0','Whispering Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104782','2','4','1','16812','20','7','18','13','0','Solstice Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104785','2','4','1','6277','6','7','24','19','0','Brimstone Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104786','2','4','1','16833','6','7','20','15','0','Wise Man\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104788','2','4','2','4024','8','8','20','15','0','Agile Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104789','2','4','2','6777','8','8','18','13','0','Stable Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104790','2','4','1','15165','16','7','25','20','0','Inferno Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104792','2','4','1','23131','16','7','23','18','0','Spirit Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104793','2','4','1','15247','16','7','24','19','0','Sylvan Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104794','2','4','2','6787','9','8','25','20','0','Wolf Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104795','2','4','2','6756','9','8','25','20','0','Bear Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104796','2','4','2','6758','9','8','25','20','0','Owl Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104797','2','4','1','15161','16','7','25','20','0','Fiery Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104798','2','4','1','15206','16','7','25','20','0','Heavy Runed Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104799','2','4','1','23087','16','7','23','18','0','Antiquated Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104800','2','4','3','697','7','5','23','18','0','Mighty Chain Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104810','2','4','2','19911','3','8','37','32','0','Boulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104816','2','4','3','4978','7','5','24','19','0','Legionnaire\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104817','2','2','8','7319','17','1','22','17','1','Blessed Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104818','2','2','8','20155','17','1','24','19','1','Executioner\'s Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104820','2','4','6','18511','14','1','25','20','4','Guardian Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104821','2','4','6','3445','14','1','23','18','4','Bear Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104822','2','4','6','4983','14','1','23','18','4','Owl\'s Disk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104824','2','2','0','8459','13','1','27','22','3','Blurred Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104825','2','2','0','8461','13','1','29','24','3','Callous Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104826','2','2','0','19224','13','1','26','21','3','Marauder Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104827','2','4','1','16865','6','7','28','23','0','Wizard\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104828','2','4','1','16792','6','7','27','22','0','Nightwind Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104829','2','4','1','9912','6','7','29','24','0','Dreamer\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104830','2','4','2','17153','7','8','28','23','0','Saber Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104831','2','4','2','17154','7','8','26','21','0','Stalking Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104832','2','4','2','22428','7','8','29','24','0','Mystic Sarong','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104833','2','4','3','6929','3','5','28','23','0','Glorious Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104835','2','4','3','6912','3','5','30','25','0','Elite Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104836','2','4','0','21601','23','3','28','23','7','Fireproof Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104837','2','4','0','21611','23','8','30','25','7','Strength of Will','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104838','2','4','0','21606','23','8','26','21','7','Orb of Power','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104840','1','2','15','13908','13','1','10','0','3','Long Bayonet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104854','1','4','1','23103','16','7','11','6','0','Demon Scarred Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104858','0','4','1','5116','3','7','35','30','0','Unused Cloth Shoulder B02 Black','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104861','2','4','2','5243','5','8','10','5','0','Sleek Feathered Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104906','1','4','2','8308','8','8','7','0','0','Rainwalker Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104907','1','4','2','8701','5','8','5','0','0','Woodland Tunic','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104908','1','4','2','17169','9','8','5','0','0','Nomadic Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104909','2','4','2','7560','7','8','15','0','0','Kodo Hunter\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104910','1','4','3','6969','10','5','5','0','0','Painted Chain Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104911','1','4','6','18522','14','1','5','0','4','Thick Bark Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104913','1','4','3','9920','6','5','5','0','0','Painted Chain Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104914','1','4','2','17075','10','8','5','0','0','Battleworn Leather Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104915','1','4','1','16802','8','7','5','0','0','Soft Wool Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104916','1','4','1','16800','5','7','5','0','0','Soft Wool Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104917','1','4','3','5337','7','5','5','0','0','Battleworn Chain Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104919','1','4','1','16799','6','7','5','0','0','Soft Wool Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104920','1','4','1','23007','16','7','5','0','0','Battleworn Cape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104921','1','4','2','9671','7','8','5','0','0','Dust-covered Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104922','1','4','3','2967','5','5','5','0','0','Jagged Chain Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104923','1','2','0','8498','21','1','5','0','3','Primitive Hatchet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104924','1','2','4','19634','21','2','5','0','3','Primitive Club','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104925','1','2','15','6457','13','1','5','0','3','Primitive Hand Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104928','1','4','2','17017','9','8','8','0','0','Sandrunner Wristguards','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104929','1','4','2','17097','5','8','9','0','0','Light Scorpid Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104931','1','2','2','7603','15','2','11','0','0','Hickory Shortbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104932','1','2','7','20013','21','1','11','0','3','Harpy Wing Clipper','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104933','1','4','1','15211','16','7','9','0','0','Seasoned Fighter\'s Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104935','1','4','3','7007','6','5','8','0','0','Wide Metal Girdle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104936','1','4','1','16880','8','7','8','0','0','Dirt-trodden Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104937','1','4','6','18510','14','1','9','0','4','Charging Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104938','1','2','10','20423','17','2','11','0','2','Blemished Wooden Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104939','2','2','8','20112','17','1','11','0','1','Steady Bastard Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104940','1','4','2','17074','10','8','10','0','0','Veiled Grips','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104942','1','4','2','16997','8','8','12','0','0','Tiger Hide Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104944','1','4','1','23116','16','7','12','0','0','Handsewn Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104946','1','4','3','6876','8','5','10','0','0','Lightweight Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104947','2','2','15','20603','13','1','11','0','3','Jagged Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104948','2','2','4','5009','13','2','11','0','3','Stinging Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104949','2','2','0','19214','13','1','21','16','3','Orcish Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104951','1','4','2','16938','6','8','7','1','0','Squealer\'s Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104954','1','4','2','16932','6','8','5','0','0','Nomadic Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104958','1','4','1','15244','16','7','8','0','0','Sun-beaten Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104961','1','2','10','20426','17','2','10','0','2','Dreamwatcher Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104962','1','4','2','5418','10','8','8','0','0','Double-layered Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104963','1','4','1','23071','16','7','8','0','0','Thunderhorn Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104964','2','2','5','19544','17','2','12','0','1','Goblin Smasher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104965','1','2','0','8490','21','1','10','0','3','Bloodhoof Hand Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104967','1','4','6','5422','14','1','11','0','4','Tribal Warrior\'s Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104968','1','4','2','9925','5','8','11','0','0','Bound Harness','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104969','1','4','3','6915','9','5','10','0','0','Fortified Bindings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104970','1','4','2','16968','7','8','9','0','0','Rough-hewn Kodo Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104971','2','2','4','8572','13','2','12','0','3','Skorn\'s Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104972','1','4','3','6876','8','5','10','0','0','Cliff Runner Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104973','1','4','2','17014','9','8','10','0','0','Plains Hunter Wristguards','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104974','2','2','15','3006','13','1','12','0','3','Compact Fighting Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104975','3','4','6','18491','14','1','39','0','4','Vigilant Buckler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104976','2','4','2','28287','7','8','40','0','0','Mistspray Kilt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104977','2','2','7','20009','13','1','41','0','3','Sword of Hammerfall','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104978','2','2','4','19741','13','2','36','0','3','Ryedol\'s Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104979','2','4','1','5434','9','7','42','0','0','Enchanted Stonecloth Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104980','2','4','2','5435','10','8','37','0','0','Prospector Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104982','0','4','2','10411','6','8','38','0','0','Ripped Prospector Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104983','2','2','5','19596','17','2','42','0','1','Rock Pulverizer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104984','2','4','0','21609','23','2','41','0','7','Skull of Impending Doom','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104987','2','2','7','20083','13','1','45','0','3','Dwarf Captain\'s Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104988','2','4','0','9834','11','5','50','0','0','Burning Obsidian Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104989','2','4','1','16673','20','7','50','0','0','Mage Dragon Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104990','2','4','1','16934','9','7','50','0','0','Scorched Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104998','2','4','0','9834','11','5','24','19','0','Blood Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('104999','2','4','0','14433','11','5','27','22','0','Azora\'s Will','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105000','2','4','0','9835','11','5','26','21','0','Coral Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105001','2','4','0','9834','11','5','27','22','0','Heart Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105002','2','4','0','6539','2','3','30','25','0','Glowing Green Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105003','2','4','0','9854','2','3','31','26','0','Crystal Starfire Medallion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105004','2','4','0','9857','2','3','35','30','0','Mark of the Kirin Tor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105005','2','4','0','9658','2','3','35','30','0','Emberspark Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105007','2','4','0','6478','11','-1','31','26','0','Band of Thorns','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105008','2','4','0','9843','11','-1','36','31','0','Quicksilver Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105009','2','4','0','9840','11','-1','36','31','0','Mindbender Loop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105010','2','4','0','3453','11','-1','40','35','0','Inscribed Gold Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105011','2','4','0','9851','11','-1','40','35','0','Welken Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105016','2','4','1','16849','7','7','35','0','0','Artisan\'s Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105028','2','4','0','24742','23','2','47','42','3','Lord Sakrasis\' Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105029','2','4','0','9860','2','3','47','42','0','Talisman of the Naga Lord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105040','1','2','15','20321','13','1','32','27','3','Shadow Hunter Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105069','2','2','19','6097','26','2','12','7','0','Fire Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105071','2','2','19','18356','26','2','14','9','0','Shadow Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105079','2','4','0','6492','12','-1','40','35','0','Cold Basilisk Eye','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105092','1','2','19','6101','26','2','23','18','0','Charred Razormane Wand','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105093','1','2','15','20392','13','1','21','16','3','Razormane Backstabber','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105094','1','4','6','5808','14','1','24','19','4','Razormane War Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105106','0','4','1','15308','1','7','15','0','0','Red Defias Mask','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105107','1','4','0','16557','4','-1','14','0','0','Deckhand\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105108','1','4','2','16882','5','8','32','27','0','Dark Iron Leather','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105109','1','4','1','16589','5','7','17','12','0','Stonesplinter Rags','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105110','1','4','1','12656','20','7','18','13','0','Dalaran Wizard\'s Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105111','2','4','1','18133','16','7','15','10','0','Rathorian\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105112','2','2','15','20491','13','1','15','10','3','Ritual Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105180','2','4','0','6494','2','3','34','29','0','Necklace of Harmony','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105181','2','4','1','23142','16','7','33','28','0','Vibrant Silk Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105182','2','2','8','8000','17','1','20','15','1','Shiver Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105183','3','4','0','21607','23','-1','20','15','7','Pulsating Hydra Heart','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105187','3','2','5','8600','17','2','20','15','1','Rhahk\'Zor\'s Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105191','3','2','7','7311','13','1','24','19','3','Cruel Barb','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105192','3','2','7','5144','13','1','22','17','3','Thief\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105193','3','4','1','22998','16','7','25','20','0','Cape of the Brotherhood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105194','3','2','1','19296','17','1','23','18','1','Taskmaster Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105195','3','4','1','16966','10','7','22','17','0','Gold-flecked Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105196','3','2','0','13913','13','1','22','17','3','Smite\'s Reaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105197','3','2','4','20953','13','2','21','16','7','Cookie\'s Tenderizer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105198','3','2','19','21011','26','2','22','17','0','Cookie\'s Stirring Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105199','3','4','2','1978','7','8','21','16','0','Smelting Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105200','3','2','6','5949','17','1','22','20','2','Impaling Harpoon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105201','3','2','10','20340','17','2','23','18','2','Emberstone Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105202','3','4','1','12803','5','7','24','19','0','Corsair\'s Overshirt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105207','2','2','19','20903','26','2','20','15','0','Opaque Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105208','1','2','19','20829','26','2','20','15','0','Smoldering Wand','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105209','1','2','19','6099','26','2','21','16','0','Gloom Wand','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105210','1','2','19','20787','26','2','25','20','0','Burning Wand','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105211','1','2','19','20852','26','2','25','20','0','Dusk Wand','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105212','2','2','19','6081','26','2','17','12','0','Blazing Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105213','2','2','19','20907','26','2','35','30','0','Scorching Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105214','2','2','19','21020','26','2','32','27','0','Wand of Eventide','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105215','2','2','19','20815','26','2','41','36','0','Ember Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105216','2','2','19','20790','26','2','45','40','0','Umbral Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105235','1','2','19','6081','26','2','7','1','0','Alchemist\'s Wand','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105236','1','2','19','20916','26','2','34','29','0','Combustible Wand','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105238','1','2','19','20787','26','2','45','40','0','Pitchwood Wand','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105239','1','2','19','20776','26','2','46','41','0','Blackbone Wand','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105240','2','2','19','6101','26','2','21','0','0','Torchlight Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105241','2','2','19','6097','26','2','18','0','0','Dwarven Flamestick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105242','2','2','19','6093','26','2','16','0','0','Cinder Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105243','3','2','19','12601','26','2','20','15','0','Firebelcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105244','2','2','19','21024','26','2','30','0','0','Consecrated Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105245','2','2','19','21019','26','2','34','29','0','Summoner\'s Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105246','2','2','19','6093','26','2','30','0','0','Excavation Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105247','2','2','19','20828','26','2','39','0','0','Rod of Sorrow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105248','2','2','19','21023','26','2','37','0','0','Flash Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105249','2','2','19','20793','26','2','40','0','0','Burning Sliver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105250','2','2','19','6140','26','2','28','0','0','Charred Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105252','2','2','19','20825','26','2','21','0','0','Wand of Decay','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105253','2','2','19','20801','26','2','40','0','0','Goblin Igniter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105254','3','4','2','10179','3','8','20','15','0','Rugged Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105255','2','2','0','8472','21','1','15','10','3','Quilboar Tomahawk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105256','2','2','4','19673','13','2','35','30','3','Kovork\'s Rattle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105257','3','4','1','23000','16','7','37','32','0','Dark Hooded Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105259','0','2','2','6232','15','2','1','1','0','Flaming Arrows','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105266','3','4','0','9837','11','5','53','48','0','Eye of Adaegus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105267','3','2','15','3363','13','1','63','58','3','Scarlet Kris','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105274','2','4','1','17135','3','7','27','0','0','Rose Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105275','2','4','2','7545','6','8','15','0','0','Binding Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105279','2','2','15','20411','13','1','20','0','3','Harpy Skinner','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105299','2','4','2','17223','10','8','20','0','0','Gloves of the Moon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105302','2','4','6','18451','14','1','20','0','4','Cobalt Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105306','2','2','10','7524','17','2','20','0','2','Wind Rider Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105309','2','2','3','7531','26','1','20','0','0','Privateer Musket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105310','2','4','1','7533','7','7','20','0','0','Sea Dog Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105311','2','4','2','17159','8','8','21','0','0','Buckled Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105312','2','4','3','7540','10','5','20','0','0','Riveted Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105313','2','4','0','7544','11','5','25','0','0','Totemic Clan Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105314','2','4','1','23012','16','7','20','0','0','Boar Hunter\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105315','2','4','1','28200','9','7','18','0','0','Timberland Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105316','2','4','2','16870','5','8','25','0','0','Barkshell Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105317','2','4','2','8658','5','8','25','0','0','Dry Moss Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105318','2','2','1','22225','17','1','20','0','1','Zhovur Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105319','1','4','2','7553','3','8','20','15','0','Bashing Pauldrons','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105320','2','4','3','7554','8','5','16','0','0','Padded Lamellar Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105321','2','2','7','20014','13','1','20','0','3','Elegant Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105322','2','2','5','19611','17','2','26','0','1','Demolition Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105323','2','4','0','7557','23','-1','25','0','7','Everglow Lantern','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105324','2','2','4','8576','13','2','16','0','3','Engineer\'s Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105325','2','4','6','7559','14','1','16','0','4','Welding Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105326','2','2','19','6097','26','2','18','0','0','Flaring Baton','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105327','2','4','2','16958','7','8','18','0','0','Greasy Tinker\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105328','2','4','3','7563','6','5','15','0','0','Cinched Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105337','2','4','1','19899','10','7','16','0','0','Wayfaring Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105340','2','2','10','20417','17','2','15','0','2','Cauldron Stirrer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105341','2','4','2','8717','5','8','15','0','0','Spore-covered Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105343','2','4','1','23088','16','7','18','0','0','Barkeeper\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105344','2','2','0','8485','13','1','14','0','3','Pointed Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105345','2','2','5','8602','17','2','14','0','1','Stonewood Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105346','2','2','2','20719','15','2','14','0','0','Orcish Battle Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105347','1','2','19','21022','26','2','35','30','0','Pestilent Wand','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105351','2','4','0','6011','11','4','20','0','0','Bounty Hunter\'s Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105355','2','4','2','7662','6','8','28','0','0','Beastmaster\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105356','2','2','19','20834','26','2','27','0','0','Branding Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105357','2','4','6','1685','14','1','27','0','4','Ward of the Vale','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105387','2','4','1','23108','16','7','20','0','0','Enchanted Moonstalker Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105392','1','2','15','6432','13','1','5','0','3','Thistlewood Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105393','1','2','10','5108','17','2','5','0','2','Thistlewood Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105394','1','4','2','7823','10','8','5','0','0','Archery Training Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105395','1','4','6','18671','14','1','5','0','4','Woodland Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105398','1','4','2','16951','7','8','5','0','0','Canopy Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105399','1','4','3','7835','8','5','5','0','0','Tracking Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105404','3','4','2','6729','3','8','23','18','0','Serpent\'s Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105405','1','4','1','23105','16','7','5','0','0','Draped Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105411','1','4','0','7866','0','2','1','0','2','Winterhoof Cleansing Totem','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105419','1','4','2','17002','9','8','7','0','0','Feral Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105420','2','4','1','8635','5','7','14','0','0','Banshee Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105422','2','4','2','16974','7','8','20','15','0','Brambleweed Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105423','3','2','1','19221','17','1','20','15','1','Boahn\'s Fang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105425','3','4','3','7932','6','5','20','15','0','Runescale Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105426','3','2','0','19396','13','1','20','15','3','Serpent\'s Kiss','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105443','3','4','6','18523','14','1','20','15','4','Gold-plated Buckler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105444','3','4','1','15089','16','7','19','14','0','Miner\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105458','1','4','1','9908','6','7','10','0','0','Dirtwood Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105459','2','2','0','5014','13','1','13','0','3','Defender Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105495','1','2','4','8011','13','2','0','0','3','Black Supe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105514','1','4','0','6851','0','1','28','28','0','Mana Agate','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105516','0','2','15','8028','13','1','16','11','3','Threshadon Fang','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105540','2','2','15','6439','13','1','23','18','3','Pearl-handled Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105541','2','2','4','19801','13','2','28','23','3','Iridescent Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105542','2','4','1','23131','16','7','19','14','0','Pearl-clasped Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105579','1','2','5','19544','17','2','5','0','1','Militia Warhammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105580','1','2','4','19777','21','2','5','0','3','Militia Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105581','1','2','10','20446','17','2','5','0','2','Smooth Walking Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105586','1','2','7','1547','21','1','5','0','3','Thistlewood Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105587','2','2','4','19648','13','2','13','0','3','Thornroot Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105589','1','4','3','8292','10','5','10','0','0','Moss-covered Gauntlets','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105590','1','4','1','16918','9','7','11','0','0','Cord Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105591','1','4','1','23055','16','7','11','0','0','Rain-spotted Cape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105592','1','4','3','8295','6','5','11','0','0','Shackled Girdle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105593','1','4','6','8296','14','1','11','0','4','Crag Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105595','1','2','5','8298','17','2','11','0','1','Thicket Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105596','1','2','2','20720','15','2','11','0','0','Ashwood Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105604','2','2','19','28159','26','2','13','0','0','Elven Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105605','1','2','15','3550','13','1','10','0','3','Pruning Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105606','1','4','1','16817','10','7','9','0','0','Gardening Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105608','2','4','1','15278','1','7','40','35','0','Living Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105609','2','4','2','6755','6','8','22','0','0','Steadfast Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105610','2','4','1','23115','16','7','15','0','0','Gustweald Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105611','2','4','0','8436','23','-1','16','0','7','Tear of Grief','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105612','1','4','2','17010','9','8','13','0','0','Ivy Cuffs','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105613','2','2','10','20384','17','2','23','0','2','Staff of the Purifier','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105614','2','2','8','20182','17','1','31','0','1','Seraph\'s Strike','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105615','2','2','8','20121','17','1','20','0','1','Woodsman Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105616','3','2','15','20376','13','1','47','42','3','Gutwrencher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105617','2','4','2','6718','7','8','13','0','0','Vagabond Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105618','1','4','1','15032','16','7','11','0','0','Scout\'s Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105622','2','4','0','14432','11','4','22','0','0','Clergy Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105624','2','4','1','15905','1','7','38','33','0','Circlet of the Order','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105626','2','2','1','19246','17','1','20','0','1','Skullchipper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105627','2','2','15','20354','13','1','20','0','3','Relic Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105629','2','4','2','8450','10','8','20','0','0','Hammerfist Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105630','2','4','2','8449','10','8','20','0','0','Windfelt Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105739','2','4','2','12368','5','8','38','33','0','Barbaric Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105742','2','2','15','20569','13','1','40','35','3','Gemstone Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105743','2','4','0','9842','11','-1','40','35','0','Prismstone Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105744','2','2','7','8279','13','1','12','7','3','Pale Skinner','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105748','2','2','2','20713','15','2','16','11','0','Centaur Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105749','2','2','1','19291','17','1','23','18','1','Scythe Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105750','2','4','3','8749','6','5','23','18','0','Warchief\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105751','2','4','1','23078','16','7','25','20','0','Webwing Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105752','2','2','15','20596','13','1','26','21','3','Wyvern Tailspike','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105753','2','4','2','8753','1','8','31','26','0','Ruffled Chaplet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105754','2','4','0','7093','2','3','31','26','0','Wolfpack Medallion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105755','2','4','3','8719','5','5','35','30','0','Onyx Shredder Plate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105756','3','2','15','20591','13','1','37','32','3','Sliverblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105757','2','2','4','8803','13','2','20','0','7','Hardwood Cudgel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105761','1','2','5','19544','17','2','5','0','1','Anvilmar Sledge','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105766','2','4','1','12397','20','7','27','22','0','Lesser Wizard\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105767','1','4','1','16611','20','7','9','4','0','Violet Robes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105770','2','4','1','12695','20','7','30','25','0','Robes of Arcana','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105776','1','2','10','20449','17','2','5','0','2','Elder\'s Cane','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105777','1','2','1','8899','17','1','5','0','1','Brave\'s Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105778','1','2','10','5404','17','2','5','0','2','Primitive Walking Stick','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105779','1','2','8','20084','17','1','5','0','1','Forsaken Bastard Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105780','2','4','2','8905','6','8','18','13','0','Murloc Scale Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105781','2','4','2','8908','5','8','19','14','0','Murloc Scale Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105782','2','4','2','22393','5','8','34','29','0','Thick Murloc Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105783','2','4','2','8912','9','8','38','33','0','Murloc Scale Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105812','2','4','1','12694','20','7','25','0','0','Robes of Antiquity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105813','2','2','8','9055','17','1','32','0','1','Emil\'s Brand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105814','2','4','2','16899','5','8','30','0','0','Snapbrook Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105815','2','2','5','9057','17','2','31','0','1','Glacial Stone','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105817','2','2','2','9060','15','2','30','0','0','Lunaris Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105818','2','2','19','21026','26','2','30','0','0','Moonbeam Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105819','3','4','3','15810','1','5','33','28','0','Sunblaze Coif','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105820','2','4','1','9077','3','7','32','0','0','Faerie Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105821','2','4','2','16982','8','8','24','0','0','Darkstalker Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105822','2','4','3','9082','10','5','24','0','0','Hedgeseed Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105936','1','4','2','9365','6','8','8','0','0','Animal Skin Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105939','1','4','2','9374','10','8','8','0','0','Sewing Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105940','1','4','6','2916','14','1','12','0','4','Bone Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105941','1','4','3','4339','7','5','11','0','0','Brass Scale Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105943','3','4','3','9378','9','5','25','20','0','Rift Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105944','2','4','3','7554','8','5','15','0','0','Greaves of the People\'s Militia','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105956','1','2','14','8568','21','1','1','1','0','Blacksmith Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105957','1','4','2','9499','5','8','8','3','0','Handstitched Leather Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105958','2','4','2','9514','7','8','21','16','0','Fine Leather Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105961','2','4','2','12402','7','8','23','18','0','Dark Leather Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105962','2','4','2','9535','7','8','32','27','0','Guardian Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105963','2','4','2','17212','7','8','34','29','0','Barbaric Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105964','2','4','2','9544','3','8','35','30','0','Barbaric Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105965','2','4','1','23033','16','7','37','32','0','Guardian Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105966','2','4','2','9549','10','8','38','33','0','Guardian Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105967','2','4','1','9552','6','7','18','13','0','Girdle of Nobility','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105968','2','4','2','6777','8','8','15','10','0','Rugged Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105969','2','4','1','23059','16','7','23','18','0','Regent\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105970','3','4','1','19128','10','7','23','18','0','Serpent Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105971','2','4','1','23026','16','7','26','21','0','Feathered Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105975','2','4','2','9584','6','8','23','18','0','Ruffian Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('105976','1','4','0','20621','19','-1','1','0','0','Guild Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106040','2','4','3','9634','9','5','37','32','0','Golden Scale Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106058','1','4','2','8419','6','8','5','0','0','Blackened Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106059','1','4','2','9930','5','8','5','0','0','Nomadic Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106060','1','4','1','16588','9','7','5','0','0','Flax Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106061','1','4','3','9644','9','5','8','0','0','Graystone Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106062','1','4','1','16805','9','7','10','0','0','Heavy Cord Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106063','1','4','3','6954','10','5','8','0','0','Cold Steel Gauntlets','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106070','1','4','2','17173','9','8','5','0','0','Wolfskin Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106076','1','4','1','16843','7','7','5','0','0','Tapered Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106078','1','4','6','18664','14','1','5','0','4','Pikeman Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106084','2','4','3','9738','7','5','13','0','0','Stormwind Guard Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106085','2','4','2','11368','5','8','13','0','0','Footman Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106087','3','4','3','9742','7','5','24','0','0','Chausses of Westfall','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106092','2','4','2','49990','8','8','18','0','0','Black Whelp Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106093','2','2','5','19646','17','2','27','0','1','Orc Crusher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106094','2','2','1','19390','17','1','18','0','1','Piercing Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106095','2','4','1','11548','8','7','24','0','0','Wandering Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106096','1','4','0','2163','4','7','1','0','0','Apprentice\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106097','1','4','0','2470','4','7','1','0','0','Acolyte\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106098','0','4','1','12679','20','7','1','1','0','Neophyte\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106116','0','4','1','12648','20','7','1','1','0','Apprentice\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106117','1','4','0','9972','4','7','1','0','0','Squire\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106118','0','4','1','9974','7','7','1','1','0','Squire\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106119','0','4','1','12681','20','7','1','1','0','Neophyte\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106120','1','4','0','9983','4','7','1','0','0','Recruit\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106121','0','4','1','9984','7','7','1','1','0','Recruit\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106122','1','4','0','9985','8','7','1','0','0','Recruit\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106123','0','4','1','12683','20','7','1','1','0','Novice\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106124','0','4','1','9987','7','7','1','1','0','Novice\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106125','1','4','0','9995','4','7','1','0','0','Brawler\'s Harness','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106126','0','4','1','10002','7','7','1','1','0','Trapper\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106127','1','4','0','10003','8','7','1','0','0','Trapper\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106129','0','4','1','12646','20','7','1','1','0','Acolyte\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106130','1','4','0','17462','4','7','1','0','0','Trapper\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106131','0','4','1','10244','7','7','1','1','0','Trapper\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106134','1','4','0','10108','4','7','1','0','0','Primitive Mantle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106135','0','4','2','10109','7','8','1','1','0','Primitive Kilt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106136','1','4','0','10112','4','7','1','0','0','Thug Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106137','0','4','1','10114','7','7','1','1','0','Thug Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106138','1','4','0','10115','8','7','1','0','0','Thug Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106139','0','4','1','12684','20','7','1','1','0','Novice\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106140','0','4','1','12649','20','7','1','1','0','Apprentice\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106144','0','4','1','12680','20','7','1','1','0','Neophyte\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106147','1','4','2','9508','6','8','10','5','0','Ratty Old Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106148','1','4','1','16853','8','7','10','5','0','Web-covered Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106171','1','4','2','9374','10','8','5','0','0','Wolf Handler Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106173','1','4','1','16809','8','7','5','0','0','Snow Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106174','0','2','14','13583','17','6','20','15','3','Twain Random Sword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106176','1','4','6','3725','14','1','5','0','4','Dwarven Kite Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106177','1','4','3','6934','9','5','12','0','0','Ironwrought Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106179','2','4','1','15166','16','7','19','14','0','Privateer\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106180','2','4','3','11563','5','5','15','10','0','Slarkskin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106182','1','4','0','12312','23','2','10','5','7','Dim Torch','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106185','1','4','1','23008','16','7','5','0','0','Bear Shawl','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106186','2','2','8','20119','17','1','18','0','1','Trogg Slicer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106187','2','4','6','18658','14','1','17','0','4','Dwarven Defender','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106188','2','4','3','10434','8','5','15','0','0','Mud Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106189','1','4','3','10448','3','5','24','0','0','Durable Chain Shoulders','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106191','2','4','1','10454','8','7','23','0','0','Kimbra Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106194','2','2','0','19404','13','1','32','0','3','Barreling Reaper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106195','2','4','3','12944','5','5','15','10','0','Wax-polished Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106196','0','2','4','6794','13','2','34','29','3','Noboru\'s Cudgel','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106197','2','4','2','2644','5','8','22','17','0','Loch Croc Hide Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106198','2','4','2','10529','9','8','30','25','0','Jurassic Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106199','2','4','0','10530','11','5','24','19','0','Black Widow Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106200','2','4','3','10532','6','5','29','24','0','Garneg\'s War Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106201','1','4','2','9510','8','8','10','5','0','Lithe Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106202','1','4','1','10535','10','7','11','6','0','Fingerless Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106203','1','4','6','18669','14','1','11','6','4','Thuggish Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106204','2','4','2','13266','1','8','32','27','0','Tribal Worg Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106205','2','2','5','7495','17','2','15','10','1','Burrowing Shovel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106206','1','2','1','14040','17','1','15','10','1','Rock Chipper','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106214','2','2','5','10642','17','2','16','11','1','Heavy Copper Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106215','2','2','10','10654','17','2','13','0','2','Balanced Fighting Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106219','1','2','14','7494','21','1','10','0','3','Arclight Spanner','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106220','3','2','15','20536','13','1','29','20','3','Meteor Shard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106223','2','4','6','10721','14','1','35','0','4','Crest of Darkshire','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106226','3','4','1','12652','20','7','23','18','0','Bloody Apron','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106238','2','4','1','12389','20','7','10','5','0','Brown Linen Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106239','2','4','1','12400','5','7','12','7','0','Red Linen Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106240','2','4','1','12387','5','7','12','7','0','Blue Linen Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106241','2','4','1','17123','20','7','10','5','0','White Linen Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106242','2','4','1','12386','20','7','14','9','0','Blue Linen Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106243','2','4','1','12393','20','7','18','13','0','Green Woolen Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106256','1','2','20','20730','17','2','1','0','1','Fishing Pole','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106263','2','4','1','11182','20','7','20','15','0','Blue Overalls','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106264','2','4','1','12716','20','7','23','18','0','Greater Adept\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106266','2','4','1','16560','5','7','13','8','0','Disciple\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106267','2','4','1','16561','7','7','12','7','0','Disciple\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106268','2','4','2','17098','5','8','13','8','0','Pioneer Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106269','2','4','2','17152','7','8','12','7','0','Pioneer Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106282','2','4','1','11166','7','7','32','0','0','Sacred Burial Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106314','3','4','1','23082','16','7','27','20','0','Wolfmaster Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106315','2','2','18','11247','26','2','27','22','0','Steelarrow Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106318','3','2','10','20335','17','2','26','21','2','Odo\'s Ley Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106319','3','4','2','11253','6','8','26','19','0','Girdle of the Blindwatcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106320','3','4','6','18700','14','1','28','20','4','Commander\'s Crest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106321','3','4','0','14433','11','5','26','21','0','Silverlaine\'s Family Seal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106323','3','2','4','21051','13','2','25','20','3','Baron\'s Scepter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106324','3','4','1','12696','20','7','29','20','0','Robes of Arugal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106327','3','2','5','11271','17','2','37','32','1','The Pacifier','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106331','3','2','15','20333','13','1','36','31','3','Howling Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106332','3','4','0','9837','11','4','22','17','0','Black Pearl Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106333','2','2','15','20604','13','1','22','17','3','Spikelash Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106335','2','4','2','11330','8','8','29','0','0','Grizzled Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106336','2','4','3','3057','5','5','13','8','0','Infantry Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106337','2','4','3','3058','7','5','12','7','0','Infantry Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106340','3','4','1','23027','16','7','26','20','0','Fenrus\' Hide','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106341','3','4','0','11410','23','-1','19','14','7','Eerie Stable Lantern','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106350','2','4','3','6885','8','5','18','13','0','Rough Bronze Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106360','2','2','4','11453','13','2','25','20','3','Steelscale Crushfish','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106365','1','2','20','20618','17','2','10','5','1','Strong Fishing Pole','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106366','1','2','20','20731','17','2','20','15','1','Darkwood Fishing Pole','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106367','1','2','20','20619','17','1','30','25','1','Big Iron Fishing Pole','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106378','2','4','1','23139','16','7','17','12','0','Seer\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106379','2','4','2','16922','6','8','17','12','0','Inscribed Leather Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106380','2','4','6','1673','14','1','18','13','4','Inscribed Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106381','2','4','1','27549','16','7','23','18','0','Bright Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106382','2','4','2','16916','6','8','23','18','0','Forest Leather Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106383','2','4','6','18483','14','1','24','19','4','Forest Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106384','1','4','0','11518','4','7','25','0','0','Stylish Blue Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106385','1','4','0','11519','4','7','25','0','0','Stylish Green Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106386','2','4','3','25805','7','5','30','25','0','Glimmering Mail Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106387','2','4','3','25800','9','5','29','24','0','Glimmering Mail Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106388','2','4','3','25806','3','5','30','25','0','Glimmering Mail Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106389','2','4','3','15517','1','5','31','26','0','Glimmering Mail Coif','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106392','3','4','1','11533','6','7','29','20','0','Belt of Arugal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106393','2','4','1','16642','10','7','28','23','0','Silver-thread Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106394','2','4','1','11571','8','7','27','22','0','Silver-thread Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106395','2','4','1','13677','3','7','29','24','0','Silver-thread Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106396','2','4','2','14602','5','8','32','27','0','Emblazoned Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106397','2','4','2','14603','10','8','29','24','0','Emblazoned Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106398','2','4','2','17118','6','8','29','24','0','Emblazoned Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106399','2','4','2','14599','3','8','30','25','0','Emblazoned Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106400','2','4','6','11559','14','1','31','26','4','Glimmering Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106402','2','4','3','25812','7','5','36','31','0','Mail Combat Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106403','2','4','3','25808','9','5','33','28','0','Mail Combat Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106404','2','4','3','25815','3','5','35','30','0','Mail Combat Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106405','2','4','1','14625','7','7','36','31','0','Nightsky Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106406','2','4','1','14617','8','7','34','29','0','Nightsky Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106407','2','4','1','14618','9','7','33','28','0','Nightsky Wristbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106408','2','4','2','17061','10','8','34','29','0','Insignia Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106409','2','4','2','17121','6','8','34','29','0','Insignia Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106410','2','4','2','17009','9','8','33','28','0','Insignia Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106411','2','4','3','25882','5','5','41','36','0','Chief Brigadier Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106412','2','4','3','25883','8','5','39','34','0','Chief Brigadier Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106413','2','4','3','25886','9','5','37','32','0','Chief Brigadier Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106414','3','4','0','9846','11','1','29','0','0','Seal of Sylvanas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106415','2','4','1','12653','20','7','41','36','0','Aurora Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106416','2','4','1','14651','8','7','38','33','0','Aurora Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106417','2','4','1','23091','16','7','37','32','0','Aurora Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106418','2','4','1','14656','6','7','37','32','0','Aurora Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106419','2','4','2','14676','10','8','38','33','0','Glyphed Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106420','2','4','2','14672','8','8','39','34','0','Glyphed Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106421','2','4','2','14671','6','8','38','33','0','Glyphed Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106422','2','4','2','21297','1','8','39','34','0','Glyphed Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106423','2','4','3','26077','8','5','45','40','0','Blackforge Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106424','2','4','1','26082','16','7','42','37','0','Blackforge Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106425','2','4','3','26076','6','5','44','39','0','Blackforge Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106426','2','4','3','26073','9','5','43','38','0','Blackforge Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106427','2','4','1','12676','20','7','46','41','0','Mistscape Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106428','2','4','1','14684','10','7','43','38','0','Mistscape Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106429','2','4','1','15910','1','7','44','39','0','Mistscape Wizard Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106430','2','4','2','18471','5','8','46','41','0','Imperial Leather Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106431','2','4','2','16986','8','8','43','38','0','Imperial Leather Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106432','2','4','1','23039','16','7','41','36','0','Imperial Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106433','2','4','2','21291','1','8','43','38','0','Imperial Leather Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106440','3','4','0','12643','11','1','48','43','0','Brainlash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106447','3','4','6','22805','14','1','20','15','4','Worn Turtle Shell Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106448','3','2','15','20349','13','1','22','17','3','Tail Spike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106449','3','4','1','23001','16','7','22','17','0','Glowing Lizardscale Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106459','3','4','3','11935','8','5','23','18','0','Savage Trodders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106460','3','4','3','11945','6','5','24','19','0','Cobrahn\'s Grasp','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106461','3','4','1','11946','3','7','27','20','0','Slime-encrusted Pads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106463','3','4','0','9846','11','5','26','20','0','Deep Fathom Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106465','3','4','1','12693','20','7','22','17','0','Robe of the Moccasin','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106466','2','4','1','23010','16','7','18','13','0','Deviate Scale Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106467','2','4','2','11952','10','8','21','16','0','Deviate Scale Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106468','3','4','2','11960','6','8','23','18','0','Deviate Scale Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106469','3','2','2','20652','15','2','24','19','0','Venomstrike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106472','3','2','4','24741','13','2','24','19','3','Stinging Viper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106473','3','4','2','17091','5','8','23','18','0','Armor of the Fang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106477','2','4','1','11997','6','7','20','0','0','Grassland Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106478','2','4','1','11999','8','7','23','0','0','Rat Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106480','2','4','2','9541','7','8','20','0','0','Slick Deviate Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106481','2','4','3','12068','10','5','23','0','0','Dagmire Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106482','2','4','1','12070','8','7','24','0','0','Firewalker Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106502','2','4','3','12282','5','5','22','0','0','Violet Scale Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106503','2','4','1','12670','20','7','22','0','0','Harlequin Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106504','3','2','7','20116','13','1','24','0','3','Wingblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106505','3','2','10','12286','17','2','24','0','2','Crescent Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106506','1','4','3','22680','8','5','11','6','0','Infantry Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106507','1','4','3','22679','9','5','10','5','0','Infantry Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106508','1','4','1','25948','16','7','9','4','0','Infantry Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106509','1','4','3','22678','6','5','10','5','0','Infantry Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106510','1','4','3','22682','10','5','11','6','0','Infantry Gauntlets','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106511','2','4','1','16698','20','7','11','6','0','Journeyman\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106512','2','4','1','16813','20','7','13','8','0','Disciple\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106513','1','4','1','16565','6','7','10','5','0','Disciple\'s Sash','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106514','1','4','1','23104','16','7','10','5','0','Disciple\'s Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106515','1','4','1','16562','10','7','11','6','0','Disciple\'s Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106517','1','4','2','17124','6','8','10','5','0','Pioneer Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106518','1','4','2','16991','8','8','11','6','0','Pioneer Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106519','1','4','2','8437','9','8','10','5','0','Pioneer Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106520','1','4','1','23052','16','7','9','4','0','Pioneer Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106521','1','4','2','6717','10','8','11','6','0','Pioneer Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106523','1','4','2','14259','5','8','17','12','0','Buckled Harness','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106524','1','4','2','12370','5','8','22','17','0','Studded Leather Harness','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106525','1','4','2','12371','5','8','27','22','0','Grunt\'s Harness','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106526','1','4','2','12372','5','8','37','32','0','Battle Harness','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106527','2','4','1','12422','20','7','13','8','0','Ancestral Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106528','2','4','1','16567','20','7','17','12','0','Spellbinder Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106531','2','4','1','19110','20','7','18','13','0','Barbaric Cloth Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106536','2','4','1','14739','5','7','19','14','0','Willow Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106537','2','4','1','12439','8','7','15','10','0','Willow Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106538','2','4','1','16522','20','7','19','14','0','Willow Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106539','2','4','1','14735','6','7','16','11','0','Willow Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106540','2','4','1','14738','7','7','18','13','0','Willow Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106541','2','4','1','14737','10','7','16','11','0','Willow Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106542','2','4','1','15267','16','7','15','10','0','Willow Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106543','2','4','1','14736','9','7','15','10','0','Willow Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106545','2','4','3','25755','5','5','18','13','0','Soldier\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106546','2','4','3','25759','7','5','17','12','0','Soldier\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106547','2','4','3','25756','10','5','17','12','0','Soldier\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106548','2','4','3','25757','6','5','16','11','0','Soldier\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106549','1','4','1','25953','16','7','14','9','0','Soldier\'s Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106550','2','4','3','25758','9','5','15','10','0','Soldier\'s Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106551','2','4','3','6931','8','5','17','12','0','Soldier\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106552','2','4','2','14731','5','8','19','14','0','Bard\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106553','2','4','2','14730','7','8','18','13','0','Bard\'s Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106554','2','4','2','14729','10','8','17','12','0','Bard\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106555','1','4','1','23006','16','7','14','9','0','Bard\'s Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106556','2','4','2','14728','9','8','15','10','0','Bard\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106557','2','4','2','19184','8','8','16','11','0','Bard\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106558','2','4','2','17113','6','8','15','10','0','Bard\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106559','2','4','6','2210','14','1','16','11','4','Bard\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106560','2','4','6','25955','14','1','17','12','4','Soldier\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106561','2','4','1','14551','5','7','21','16','0','Seer\'s Padded Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106562','2','4','1','16881','8','7','21','16','0','Shimmering Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106563','2','4','1','14750','9','7','20','15','0','Shimmering Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106564','2','4','1','23109','16','7','21','16','0','Shimmering Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106565','2','4','1','16793','10','7','22','17','0','Shimmering Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106566','1','4','1','16470','3','7','24','19','0','Shimmering Amice','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106567','2','4','1','14748','5','7','25','20','0','Shimmering Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106568','2','4','1','14746','7','7','24','19','0','Shimmering Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106569','2','4','1','18120','20','7','25','20','0','Shimmering Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106570','2','4','1','14752','6','7','22','17','0','Shimmering Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106571','2','4','6','18493','14','1','22','17','4','Scouting Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106572','2','4','6','18701','14','1','23','18','4','Defender Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106573','2','4','3','25760','8','5','23','18','0','Defender Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106574','2','4','3','12456','9','5','22','17','0','Defender Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106575','2','4','1','25967','16','7','20','15','0','Defender Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106576','2','4','3','25762','6','5','22','17','0','Defender Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106577','2','4','3','25761','10','5','23','18','0','Defender Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106578','2','4','3','12453','7','5','23','18','0','Defender Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106579','1','4','3','25764','3','5','24','19','0','Defender Spaulders','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106580','2','4','3','25763','5','5','23','18','0','Defender Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106581','2','4','2','17127','6','8','21','16','0','Scouting Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106582','2','4','2','14759','8','8','22','17','0','Scouting Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106583','2','4','2','3657','9','8','21','16','0','Scouting Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106584','2','4','2','14758','5','8','25','20','0','Scouting Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106585','2','4','1','23053','16','7','20','15','0','Scouting Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106586','2','4','2','14755','10','8','23','18','0','Scouting Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106587','2','4','2','14757','7','8','24','19','0','Scouting Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106588','1','4','2','17195','3','8','23','18','0','Scouting Spaulders','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106589','2','4','0','9833','11','5','26','21','0','Viridian Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106590','2','4','3','25793','8','5','29','24','0','Battleforge Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106591','2','4','3','25797','9','5','27','22','0','Battleforge Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106592','2','4','3','25798','5','5','29','24','0','Battleforge Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106593','2','4','1','25993','16','7','26','21','0','Battleforge Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106594','2','4','3','25795','6','5','28','23','0','Battleforge Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106595','2','4','3','25794','10','5','28','23','0','Battleforge Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106596','2','4','3','25796','7','5','28','23','0','Battleforge Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106597','2','4','3','25799','3','5','28','23','0','Battleforge Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106598','2','4','6','18449','14','1','28','23','4','Dervish Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106599','2','4','6','26014','14','1','29','24','4','Battleforge Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106600','2','4','2','14774','6','8','27','22','0','Dervish Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106601','2','4','2','14769','8','8','28','23','0','Dervish Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106602','2','4','2','17167','9','8','27','22','0','Dervish Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106603','2','4','2','14773','5','8','30','25','0','Dervish Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106604','2','4','1','23022','16','7','26','21','0','Dervish Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106605','2','4','2','14775','10','8','28','23','0','Dervish Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106607','2','4','2','14776','7','8','30','25','0','Dervish Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106608','2','4','1','27542','5','7','27','22','0','Bright Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106609','2','4','1','16862','5','7','32','27','0','Sage\'s Cloth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106610','2','4','1','16878','20','7','32','27','0','Sage\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106611','2','4','1','16866','6','7','29','24','0','Sage\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106612','2','4','1','19921','8','7','28','23','0','Sage\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106613','2','4','1','16869','9','7','28','23','0','Sage\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106614','2','4','1','23138','16','7','28','23','0','Sage\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106615','2','4','1','16864','10','7','29','24','0','Sage\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106616','2','4','1','16863','7','7','32','27','0','Sage\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106617','2','4','1','4904','3','7','30','25','0','Sage\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106622','3','2','7','21554','13','1','63','58','3','Sword of Zeal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106627','3','4','3','12595','5','5','28','20','0','Mutant Scale Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106628','2','4','1','16952','10','7','22','17','0','Raven\'s Claws','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106629','3','4','1','23141','16','7','23','18','0','Sporid Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106630','3','4','6','6274','14','1','25','20','4','Seedcloud Buckler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106631','3','2','10','20336','17','2','25','20','2','Living Root','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106632','3','4','1','15156','16','7','20','15','0','Feyscale Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106633','3','2','7','12610','13','1','23','18','3','Butcher\'s Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106641','3','2','8','20167','17','1','26','20','1','Haunting Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106642','3','4','3','12632','5','5','25','20','0','Phantom Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106651','1','2','4','18652','13','2','12','7','3','Broken Wine Bottle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106659','2','4','1','12777','7','7','20','0','0','Scarab Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106660','3','2','15','13001','13','1','55','50','3','Julie\'s Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106664','2','4','1','12782','3','7','26','0','0','Voodoo Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106665','2','4','3','12783','9','5','26','0','0','Hexed Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106666','2','4','3','12784','8','5','22','0','0','Dredge Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106667','2','4','1','23110','16','7','27','0','0','Engineer\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106668','2','4','2','12788','8','8','27','0','0','Draftsman Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106669','2','4','0','9833','11','-1','25','0','0','Sacred Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106670','2','4','2','12794','5','8','27','0','0','Panther Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106671','2','4','3','12795','7','5','27','0','0','Juggernaut Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106675','2','4','3','12804','9','5','27','0','0','Tempered Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106676','2','4','6','12805','14','1','27','0','4','Constable Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106677','2','2','19','21018','26','2','26','0','0','Spellcrafter Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106678','2','4','0','14434','11','4','28','0','0','Band of Elven Grace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106679','3','2','6','22241','17','1','29','24','2','Armor Piercer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106681','3','2','15','20593','13','1','32','27','3','Thornspike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106682','3','4','1','12858','20','7','31','26','0','Death Speaker Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106685','3','4','1','11473','3','7','30','25','0','Death Speaker Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106686','3','4','3','15492','1','5','33','27','0','Tusken Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106687','3','2','1','22217','17','1','34','27','1','Corpsemaker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106688','3','4','2','17277','1','8','32','27','0','Whisperwind Headdress','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106689','3','2','10','20325','17','2','32','27','2','Wind Spirit Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106690','3','4','2','17142','7','8','34','29','0','Ferine Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106691','3','2','15','12880','13','1','35','30','3','Swinetusk Shank','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106692','3','2','0','25597','13','1','36','30','3','Pronged Reaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106693','3','4','0','6486','11','5','36','27','1','Agamaggan\'s Clutch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106694','3','4','6','18454','14','1','36','27','4','Heart of Agamaggan','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106695','3','4','0','9852','2','3','32','27','0','Stygian Bone Amulet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106696','3','2','2','20650','15','2','32','27','0','Nightstalker Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106697','3','4','1','5116','3','7','32','27','0','Batwing Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106709','2','4','2','12924','5','8','18','13','0','Moonglow Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106713','1','4','1','12928','7','7','5','0','0','Ripped Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106719','2','4','2','17134','6','8','30','0','0','Windborne Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106720','2','4','2','28984','1','8','37','0','0','Spirit Hunter Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106721','2','4','3','12934','5','5','24','0','0','Chestplate of Kor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106722','2','4','3','12935','9','5','30','0','0','Beastial Manacles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106723','3','4','0','4841','2','3','45','0','0','Medal of Courage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106725','3','4','6','18469','14','1','36','0','4','Marbled Buckler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106726','2','4','1','16716','6','7','41','0','0','Razzeric\'s Customized Seatbelt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106727','2','4','2','17067','10','8','41','0','0','Razzeric\'s Racing Grips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106729','2','2','19','20821','26','2','38','0','0','Fizzle\'s Zippy Lighter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106730','2','4','3','12944','5','5','16','11','0','Ironforge Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106731','2','4','3','12945','5','5','20','15','0','Ironforge Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106732','2','4','2','12943','10','8','38','0','0','Gnomish Mechanic\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106733','2','4','3','12948','10','5','28','23','0','Ironforge Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106737','2','4','1','16852','7','7','35','0','0','Dryleaf Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106738','2','2','0','19126','13','1','35','0','3','Bleeding Crescent','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106739','2','2','2','20666','15','2','29','0','0','Cliffrunner\'s Aim','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106740','2','4','2','12977','6','8','29','0','0','Azure Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106741','1','2','8','20177','17','1','29','0','1','Orcish War Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106742','3','4','3','12981','6','5','36','0','0','Stonefist Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106743','2','4','0','12984','11','4','25','0','0','Sustaining Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106744','2','4','1','16956','10','7','33','0','0','Gloves of Kapelan','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106745','2','4','1','23069','16','7','33','0','0','Swiftrunner Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106746','2','4','6','18507','14','1','40','0','4','Basalt Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106747','2','4','3','12986','3','5','40','0','0','Enforcer Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106748','2','4','0','9836','11','5','31','0','1','Monkey Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106749','2','4','0','9823','11','5','31','0','1','Tiger Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106750','2','4','0','12987','11','5','31','0','1','Snake Hoop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106751','2','4','1','23126','16','7','30','0','0','Mourning Shawl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106752','2','4','2','16988','8','8','30','0','0','Lancer Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106757','2','4','0','9837','11','5','38','0','0','Jaina\'s Signet Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106773','2','4','3','13011','5','5','42','0','0','Gelkis Marauder Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106774','2','4','0','13012','23','3','42','0','7','Uthek\'s Finger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106780','2','4','1','13023','6','7','36','0','0','Lilac Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106784','2','4','2','13026','10','8','36','0','0','Braced Handguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106786','1','4','0','13043','20','7','10','0','0','Simple Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106787','1','4','0','13046','20','7','1','0','0','White Woolen Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106788','2','4','2','17122','6','8','42','0','0','Magram Hunter\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106789','2','4','1','23096','16','7','42','0','0','Ceremonial Centaur Blanket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106790','2','4','0','6012','11','1','32','0','0','Ring of Calm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106791','2','4','1','17227','8','7','40','0','0','Hellion Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106792','2','4','3','13052','3','5','40','0','0','Sanguine Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106793','2','4','3','13053','9','5','40','0','0','Auric Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106794','2','4','2','17187','10','8','40','0','0','Stormfire Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106795','1','4','0','13056','4','7','32','0','0','White Swashbuckler\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106796','1','4','0','13057','4','7','35','0','0','Red Swashbuckler\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106797','2','2','19','21014','26','2','37','0','0','Eyepoker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106798','2','2','3','13060','26','1','37','0','0','Blasting Hackbut','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106801','2','4','1','13077','20','7','40','0','0','Baroque Apron','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106802','3','2','7','20010','13','1','44','0','3','Sword of Omen','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106803','3','4','0','15430','23','3','44','0','2','Prophetic Cane','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106804','3','2','4','19707','13','2','34','0','3','Windstorm Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106806','3','2','19','13084','26','2','40','0','0','Dancing Flame','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106828','2','4','6','18476','14','1','38','0','4','Visionary Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106829','3','2','7','20075','13','1','44','0','3','Sword of Serenity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106830','3','2','1','18607','17','1','44','0','1','Bonebiter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106831','3','2','15','20292','13','1','44','0','3','Black Menace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106832','2','4','1','23097','16','7','42','0','0','Cloak of Blight','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106833','1','4','0','13115','4','7','25','0','0','White Tuxedo Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106834','1','4','1','13116','5','7','1','1','0','Black Tuxedo','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106835','1','4','1','13117','7','7','23','0','0','Black Tuxedo Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106836','1','4','1','16368','8','7','1','0','0','Dress Shoes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106898','2','4','0','21597','23','-1','25','0','7','Orb of Soran\'ruk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106900','3','4','1','13337','20','7','38','0','0','Enchanted Gold Bloodrobe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106901','3','4','1','23002','16','7','29','24','0','Glowing Thresher Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106902','3','4','2','17001','9','8','27','22','0','Bands of Serra\'kis','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106903','3','4','1','13357','7','7','28','23','0','Gaze Dreamer Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106904','3','2','15','20575','13','1','28','23','3','Bite of Serra\'kis','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106905','3','2','1','22222','17','1','27','22','1','Reef Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106906','3','4','3','13361','10','5','28','23','0','Algae Fists','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106907','3','4','3','16903','5','5','25','20','0','Tortoise Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106908','3','4','1','16723','6','7','25','20','0','Ghamoo-ra\'s Bind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106909','3','2','8','20185','17','1','31','24','1','Strike of the Hydra','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106910','3','4','1','13365','7','7','31','24','0','Leech Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106911','3','4','2','16931','6','8','31','24','0','Moss Cinch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106953','3','2','5','13466','17','2','31','0','1','Verigan\'s Fist','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106966','2','2','0','19135','13','1','15','0','3','Elunite Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106967','2','2','7','20162','13','1','15','0','3','Elunite Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106968','2','2','4','19771','13','2','15','0','3','Elunite Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106969','2','2','15','20400','13','1','15','0','3','Elunite Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106970','2','4','6','21475','14','1','20','0','4','Furen\'s Favor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106971','2','4','3','15327','1','5','31','0','0','Fire Hardened Coif','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106972','3','4','3','22480','5','5','30','0','0','Fire Hardened Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106973','2','4','3','22481','7','5','29','0','0','Fire Hardened Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106974','2','4','3','22482','10','5','31','0','0','Fire Hardened Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106975','3','2','1','22734','17','1','40','0','1','Whirlwind Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106976','3','2','5','25079','17','2','40','0','1','Whirlwind Warhammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106977','3','2','8','22731','17','1','40','0','1','Whirlwind Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106978','2','2','0','19133','13','1','15','0','3','Umbral Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106979','2','2','0','19274','13','1','15','0','3','Haggard\'s Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106980','2','2','15','20601','13','1','15','0','3','Haggard\'s Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106981','2','2','15','20606','13','1','15','0','3','Umbral Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106982','2','2','4','19652','13','2','15','0','3','Umbral Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106983','2','2','4','19773','13','2','15','0','3','Haggard\'s Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106984','2','2','7','20159','13','1','15','0','3','Umbral Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106985','2','2','7','20163','13','1','15','0','3','Haggard\'s Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('106998','2','4','1','13500','8','7','25','0','0','Nimbus Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107000','2','4','2','16919','6','8','25','0','0','Heartwood Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107001','3','2','19','20824','26','2','29','0','0','Gravestone Scepter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107002','3','4','6','4743','14','1','29','0','4','Arctic Buckler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107003','2','4','3','13508','9','5','27','0','0','Beetle Clasps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107004','2','4','1','15042','16','7','27','0','0','Prelacy Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107005','1','2','14','6440','13','1','4','1','3','Skinning Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107026','1','4','1','17119','6','7','9','4','0','Linen Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107027','2','4','1','17148','8','7','28','23','0','Boots of Darkness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107046','2','4','1','13649','7','7','28','23','0','Azure Silk Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107047','2','4','1','17146','10','7','29','24','0','Hands of Darkness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107048','2','4','1','15283','1','7','29','24','0','Azure Silk Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107049','2','4','1','17143','10','7','30','25','0','Truefaith Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107050','2','4','1','15863','1','7','32','27','0','Silk Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107051','2','4','1','8721','5','7','34','29','0','Earthen Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107052','2','4','1','13664','6','7','35','30','0','Azure Silk Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107053','2','4','1','23092','16','7','35','30','0','Azure Silk Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107054','3','4','1','17133','20','7','38','33','0','Robe of Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107055','2','4','1','17112','6','7','35','30','0','Crimson Silk Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107056','2','4','1','15243','16','7','36','31','0','Crimson Silk Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107057','2','4','1','28729','3','7','36','31','0','Green Silken Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107058','2','4','1','13671','5','7','35','30','0','Crimson Silk Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107059','2','4','1','13672','3','7','38','33','0','Crimson Silk Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107060','2','4','1','17132','3','7','38','33','0','Azure Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107061','2','4','1','13678','6','7','39','34','0','Earthen Silk Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107062','2','4','1','13679','7','7','39','34','0','Crimson Silk Pantaloons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107063','2','4','1','12675','20','7','41','36','0','Crimson Silk Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107064','2','4','1','13681','10','7','42','37','0','Crimson Silk Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107065','2','4','1','13684','5','7','33','28','0','Green Silk Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107094','1','2','10','13711','17','2','10','5','2','Driftwood Branch','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107095','1','4','1','16810','8','7','9','4','0','Bog Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107106','2','4','1','16959','10','7','33','0','0','Zodiac Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107107','2','4','3','13758','6','5','33','0','0','Belt of the Stars','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107108','2','4','6','18661','14','1','11','6','4','Infantry Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107109','1','4','6','18508','14','1','9','4','4','Pioneer Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107110','2','4','1','8720','5','7','31','26','0','Silver-thread Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107111','2','4','1','14986','5','7','37','32','0','Nightsky Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107112','2','4','1','14657','5','7','41','36','0','Aurora Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107113','2','4','1','14678','5','7','46','41','0','Mistscape Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107115','2','2','0','19204','13','1','15','0','3','Heirloom Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107116','2','2','15','20602','13','1','15','0','3','Heirloom Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107117','2','2','4','19776','13','2','15','0','3','Heirloom Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107118','2','2','7','20161','13','1','15','0','3','Heirloom Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107120','2','4','6','22730','14','1','20','0','4','Ruga\'s Bulwark','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107129','2','4','3','13484','10','5','31','0','0','Brutal Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107130','2','4','3','15288','1','5','31','0','0','Brutal Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107132','2','4','3','3541','7','5','29','0','0','Brutal Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107133','3','4','3','13011','5','5','30','0','0','Brutal Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107166','1','2','15','13848','13','1','11','6','3','Copper Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107170','0','2','14','13853','17','6','20','15','3','Twain Random Sword FOO','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107187','3','4','2','16999','8','8','20','15','0','VanCleef\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107188','2','4','6','13863','14','1','24','19','4','Stormwind Guard Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107189','2','4','1','20622','8','7','45','0','0','Goblin Rocket Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107229','2','4','3','11563','5','5','13','0','0','Explorer\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107230','3','2','5','19610','17','2','23','18','1','Smite\'s Mighty Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107276','1','4','1','23035','16','7','9','4','0','Handstitched Leather Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107277','1','4','2','14001','9','8','9','4','0','Handstitched Leather Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107280','2','4','2','17232','7','8','11','6','0','Rugged Leather Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107281','2','4','2','14002','9','8','14','9','0','Light Leather Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107282','2','4','2','3248','7','8','19','14','0','Light Leather Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107283','2','4','1','23010','16','7','20','15','0','Black Whelp Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107284','2','4','2','3992','10','8','24','19','0','Red Whelp Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107285','2','4','2','14004','10','8','24','19','0','Nimble Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107297','1','4','0','21604','23','-1','33','0','3','Morbent\'s Bane','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107298','2','2','15','20425','13','1','13','0','3','Blade of Cunning','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107326','2','2','0','19132','13','1','15','0','3','Thun\'grim\'s Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107327','2','2','15','20398','13','1','15','0','3','Thun\'grim\'s Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107328','2','2','4','19649','13','2','15','0','3','Thun\'grim\'s Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107329','2','2','7','20160','13','1','15','0','3','Thun\'grim\'s Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107330','2','4','6','2632','14','1','33','28','4','Infiltrator Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107331','2','4','6','26046','14','1','34','29','4','Phalanx Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107332','2','4','1','15003','5','7','45','40','0','Regal Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107334','2','4','1','16523','20','7','28','0','0','Efflorescent Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107335','2','4','2','12482','5','8','28','0','0','Grizzly Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107336','2','4','3','14069','5','5','24','0','0','Wildwood Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107337','1','4','0','24646','11','5','60','0','0','The Rock','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107338','1','4','0','9833','11','5','10','0','0','Mood Ring','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107339','1','4','0','9835','11','5','40','0','0','Miniscule Diamond Ring','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107340','1','4','0','9832','11','5','50','0','0','Flawless Diamond Solitaire','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107341','1','4','0','9837','11','5','20','0','0','Cubic Zirconia Ring','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107342','1','4','0','14432','11','5','30','0','0','Silver Piffeny Band','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107344','2','4','0','21604','23','-1','33','0','3','Torch of Holy Flame','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107348','3','4','2','6735','10','8','25','20','0','Fletcher\'s Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107349','2','4','2','17230','10','8','27','22','0','Herbalist\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107350','1','4','1','16566','9','7','10','5','0','Disciple\'s Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107351','1','4','1','16563','8','7','11','6','0','Disciple\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107352','2','4','2','14316','3','8','27','22','0','Earthen Leather Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107353','2','4','1','16599','5','7','35','30','0','Elder\'s Padded Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107354','2','4','1','16605','8','7','33','28','0','Elder\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107355','2','4','1','16604','9','7','31','26','0','Elder\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107356','2','4','1','23100','16','7','30','25','0','Elder\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107357','2','4','1','15906','1','7','34','29','0','Elder\'s Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107358','2','4','2','2057','10','8','28','23','0','Pilferer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107359','2','4','2','17225','10','8','29','24','0','Heavy Earthen Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107366','2','4','1','16601','10','7','32','27','0','Elder\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107367','2','4','1','16606','3','7','33','28','0','Elder\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107368','2','4','1','16600','7','7','34','29','0','Elder\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107369','2','4','1','16607','20','7','35','30','0','Elder\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107370','2','4','1','16603','6','7','31','26','0','Elder\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107373','2','4','2','14777','7','8','33','28','0','Dusky Leather Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107374','2','4','2','14781','5','8','35','30','0','Dusky Leather Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107375','2','4','2','25674','5','8','35','30','0','Green Whelp Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107377','2','4','1','23030','16','7','36','31','0','Frost Leather Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107378','2','4','2','14803','9','8','37','32','0','Dusky Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107386','2','4','2','14831','9','8','38','33','0','Green Whelp Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107387','2','4','2','14832','6','8','39','34','0','Dusky Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107390','2','4','2','17215','8','8','40','35','0','Dusky Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107391','2','4','2','28734','8','8','40','35','0','Swift Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107406','2','4','2','6755','6','8','32','27','0','Infiltrator Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107407','2','4','2','21900','5','8','35','30','0','Infiltrator Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107408','2','4','2','11270','3','8','33','28','0','Infiltrator Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107409','2','4','2','19043','8','8','33','28','0','Infiltrator Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107410','2','4','2','14803','9','8','31','26','0','Infiltrator Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107411','2','4','1','23043','16','7','31','26','0','Infiltrator Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107412','2','4','2','21902','10','8','32','27','0','Infiltrator Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107413','2','4','2','21298','1','8','33','28','0','Infiltrator Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107414','2','4','2','21901','7','8','34','29','0','Infiltrator Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107415','2','4','2','14950','3','8','29','24','0','Dervish Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107416','2','4','3','26032','9','5','31','26','0','Phalanx Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107417','2','4','3','26030','8','5','34','29','0','Phalanx Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107418','2','4','3','26034','5','5','35','30','0','Phalanx Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107419','2','4','1','26043','16','7','30','25','0','Phalanx Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107420','2','4','3','30091','1','5','33','28','0','Phalanx Headguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107421','2','4','3','26036','10','5','33','28','0','Phalanx Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107422','2','4','3','26037','6','5','32','27','0','Phalanx Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107423','2','4','3','26039','7','5','34','29','0','Phalanx Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107424','2','4','3','26040','3','5','33','28','0','Phalanx Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107426','2','4','0','9832','11','5','30','25','0','Cerulean Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107427','2','4','0','9853','2','3','31','26','0','Cerulean Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107429','2','4','1','14646','5','7','40','35','0','Twilight Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107430','2','4','1','14990','20','7','40','35','0','Twilight Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107431','2','4','1','14644','7','7','39','34','0','Twilight Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107432','2','4','1','16825','1','7','38','33','0','Twilight Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107433','2','4','1','16651','10','7','37','32','0','Twilight Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107434','2','4','1','14645','8','7','37','32','0','Twilight Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107435','2','4','1','14589','3','7','38','33','0','Twilight Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107436','2','4','1','15175','16','7','35','30','0','Twilight Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107437','2','4','1','14647','9','7','36','31','0','Twilight Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107438','2','4','1','14648','6','7','36','31','0','Twilight Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107439','2','4','2','14995','5','8','40','35','0','Sentinel Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107440','2','4','2','15001','7','8','39','34','0','Sentinel Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107441','2','4','2','21311','1','8','38','33','0','Sentinel Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107443','2','4','2','15000','10','8','37','32','0','Sentinel Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107444','2','4','2','14996','8','8','37','32','0','Sentinel Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107445','2','4','2','5414','3','8','38','33','0','Sentinel Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107446','2','4','1','23062','16','7','36','31','0','Sentinel Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107447','2','4','2','14997','9','8','36','31','0','Sentinel Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107448','2','4','2','14999','6','8','36','31','0','Sentinel Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107454','2','4','3','25862','5','5','39','34','0','Knight\'s Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107455','2','4','3','25868','7','5','39','34','0','Knight\'s Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107456','2','4','3','30092','1','5','38','33','0','Knight\'s Headguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107457','2','4','3','25865','10','5','37','32','0','Knight\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107458','2','4','3','25860','8','5','37','32','0','Knight\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107459','2','4','3','25872','3','5','38','33','0','Knight\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107460','2','4','1','26064','16','7','34','29','0','Knight\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107461','2','4','3','25861','9','5','36','31','0','Knight\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107462','2','4','3','25866','6','5','37','32','0','Knight\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107463','2','4','6','4403','14','1','38','33','4','Sentinel Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107465','2','4','6','26065','14','1','39','34','4','Knight\'s Crest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107466','2','4','0','9832','11','5','37','32','0','Vermilion Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107467','2','4','0','9853','2','3','35','30','0','Vermilion Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107468','2','4','1','15005','20','7','45','40','0','Regal Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107469','2','4','1','15015','7','7','44','39','0','Regal Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107470','2','4','1','15911','1','7','42','37','0','Regal Wizard Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107471','2','4','1','15008','10','7','42','37','0','Regal Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107472','2','4','1','13051','8','7','41','36','0','Regal Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107473','2','4','1','15014','3','7','42','37','0','Regal Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107474','2','4','1','15178','16','7','40','35','0','Regal Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107475','2','4','1','15410','9','7','41','36','0','Regal Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107476','2','4','1','15012','6','7','40','35','0','Regal Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107477','2','4','2','17099','5','8','45','40','0','Ranger Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107478','2','4','2','15020','7','8','43','38','0','Ranger Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107479','2','4','2','15307','1','8','42','37','0','Ranger Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107480','2','4','2','15018','10','8','41','36','0','Ranger Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107481','2','4','2','15017','8','8','42','37','0','Ranger Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107482','2','4','2','17194','3','8','42','37','0','Ranger Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107483','2','4','1','23057','16','7','40','35','0','Ranger Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107484','2','4','2','15023','9','8','41','36','0','Ranger Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107485','2','4','2','15016','6','8','41','36','0','Ranger Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107486','2','4','3','22559','5','5','44','39','0','Captain\'s Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107487','2','4','3','25820','7','5','43','38','0','Captain\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107488','2','4','3','25824','1','5','42','37','0','Captain\'s Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107489','2','4','3','25819','10','5','41','36','0','Captain\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107490','2','4','3','25817','8','5','42','37','0','Captain\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107491','2','4','3','25822','3','5','43','38','0','Captain\'s Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107492','2','4','1','26018','16','7','39','34','0','Captain\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107493','2','4','3','25818','9','5','40','35','0','Captain\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107494','2','4','3','25821','6','5','41','36','0','Captain\'s Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107495','2','4','6','18451','14','1','44','39','4','Captain\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107496','2','4','6','18697','14','1','43','38','4','Field Plate Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107497','2','4','0','9850','11','-1','40','35','0','Ivory Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107506','2','4','0','15150','12','8','25','0','0','Gnomish Universal Remote','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107507','2','4','0','22923','23','-1','10','0','7','Arcane Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107508','2','4','0','22923','23','-1','13','0','7','Ley Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107509','2','4','1','22958','20','7','20','0','0','Manaweave Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107510','2','4','1','15201','20','7','20','0','0','Lesser Spellfire Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107511','2','4','1','15223','20','7','31','0','0','Astral Knot Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107512','2','4','1','15232','20','7','31','0','0','Nether-lace Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107513','3','2','19','25078','26','2','40','0','0','Ragefire Wand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107514','3','2','19','25076','26','2','40','0','0','Icefury Wand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107515','3','4','0','25072','23','-1','40','0','7','Celestial Orb','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107517','2','4','1','15398','5','7','50','45','0','Gossamer Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107518','2','4','1','15400','20','7','50','45','0','Gossamer Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107519','2','4','1','15401','7','7','47','42','0','Gossamer Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107520','2','4','1','15909','1','7','47','42','0','Gossamer Headpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107521','2','4','1','15405','10','7','46','41','0','Gossamer Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107522','2','4','1','15409','8','7','45','40','0','Gossamer Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107523','2','4','1','15402','3','7','46','41','0','Gossamer Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107524','2','4','1','15406','16','7','44','39','0','Gossamer Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107525','2','4','1','15407','9','7','45','40','0','Gossamer Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107526','2','4','1','16838','6','7','46','41','0','Gossamer Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107527','2','4','2','17094','5','8','50','45','0','Cabalist Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107528','2','4','2','15416','7','8','48','43','0','Cabalist Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107529','2','4','2','21292','1','8','47','42','0','Cabalist Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107530','2','4','2','15415','10','8','46','41','0','Cabalist Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107531','2','4','2','15412','8','8','46','41','0','Cabalist Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107532','2','4','2','15417','3','8','47','42','0','Cabalist Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107533','2','4','1','23016','16','7','44','39','0','Cabalist Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107534','2','4','2','15413','9','8','45','40','0','Cabalist Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107535','2','4','2','15411','6','8','46','41','0','Cabalist Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107536','2','4','6','26099','14','1','48','43','4','Champion\'s Wall Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107537','2','4','6','18775','14','1','49','44','4','Gothic Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107538','2','4','3','26087','5','5','48','43','0','Champion\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107539','2','4','3','3193','7','5','48','43','0','Champion\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107540','2','4','3','26098','1','5','47','42','0','Champion\'s Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107541','2','4','3','26089','10','5','46','41','0','Champion\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107542','2','4','3','26090','8','5','46','41','0','Champion\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107543','2','4','3','26091','3','5','47','42','0','Champion\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107544','2','4','1','26097','16','7','44','39','0','Champion\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107545','2','4','3','26088','9','5','45','40','0','Champion\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107546','2','4','3','6926','6','5','46','41','0','Champion\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107547','2','4','0','9846','11','5','46','41','0','Onyx Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107548','2','4','0','15420','2','3','46','41','0','Onyx Choker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107549','2','4','0','14437','2','3','47','42','0','Fairy\'s Embrace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107550','2','4','0','9854','2','3','47','42','0','Warrior\'s Honor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107551','2','4','0','15421','2','3','47','42','0','Entwined Opaline Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107552','2','4','0','9832','11','5','44','39','1','Falcon\'s Hook','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107553','2','4','0','15422','11','5','48','43','1','Band of the Unicorn','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107554','2','4','0','15424','23','-1','19','14','7','Willow Branch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107555','2','4','0','6098','23','-1','45','40','7','Regal Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107556','2','4','0','21598','23','-1','40','35','7','Twilight Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107557','2','4','0','15427','23','2','50','45','7','Gossamer Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107558','2','4','0','15428','23','-1','25','20','7','Shimmering Stave','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107559','2','4','0','11919','23','-1','17','12','2','Runic Cane','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107606','2','4','3','15721','10','5','22','0','0','Polar Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107607','2','2','19','20920','26','2','22','0','0','Sable Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107608','2','4','0','18494','23','-1','21','16','7','Seer\'s Fine Stein','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107609','2','4','0','15564','23','-1','35','30','7','Elder\'s Amber Stave','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107610','2','4','0','21596','23','-1','41','36','7','Aurora Sphere','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107611','2','4','0','15561','23','3','46','41','7','Mistscape Stave','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107673','3','4','0','9854','2','-1','47','0','0','Talvash\'s Enhancing Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107682','3','2','15','6555','13','1','34','29','3','Torturing Poker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107683','3','2','13','15720','13','1','34','29','7','Bloody Brass Knuckles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107684','3','4','1','15800','3','7','35','30','0','Bloodmage Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107685','3','4','0','15725','23','-1','38','33','7','Orb of the Forgotten Seer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107686','3','4','0','9834','11','5','35','30','1','Ironspine\'s Eye','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107687','3','2','4','15726','13','2','35','30','3','Ironspine\'s Fist','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107688','3','4','3','15731','5','5','35','30','0','Ironspine\'s Ribcage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107689','3','2','8','20172','17','1','35','30','1','Morbid Dawn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107690','3','4','2','15753','10','8','35','30','0','Ebon Vise','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107691','3','4','1','16823','1','7','35','30','0','Embalmed Shroud','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107708','3','2','19','20825','26','2','35','30','0','Necrotic Wand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107709','3','4','1','15824','7','7','35','30','0','Blighted Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107710','3','2','10','20360','17','2','36','31','2','Loksey\'s Training Stick','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107711','3','4','1','12673','20','7','38','33','0','Robe of Doan','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107712','3','4','1','4488','3','7','38','33','0','Mantle of Doan','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107713','3','2','10','15806','17','2','39','34','2','Illusionary Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107714','3','2','15','20318','21','1','39','34','3','Hypnotic Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107717','3','2','1','22221','17','1','42','37','1','Ravager','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107718','3','4','3','15809','3','5','42','37','0','Herod\'s Shoulder','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107719','3','4','3','15811','1','5','42','37','0','Raging Berserker\'s Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107720','3','4','1','16224','1','7','44','39','0','Whitemane\'s Chapeau','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107721','3','2','4','19735','21','2','44','39','3','Hand of Righteousness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107722','3','4','0','6522','2','3','44','39','0','Triune Amulet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107723','3','2','5','21252','17','2','44','39','1','Mograine\'s Might','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107724','3','4','3','16223','10','5','44','39','0','Gauntlets of Divinity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107726','3','4','6','18751','14','1','44','39','4','Aegis of the Scarlet Commander','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107727','3','4','2','17197','3','8','32','27','0','Watchman Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107728','3','4','1','19109','20','7','34','29','0','Beguiler Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107729','3','2','3','15821','26','1','33','28','0','Chesterfall Musket','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107730','3','2','5','15466','17','2','34','29','1','Cobalt Crusher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107731','3','4','0','15420','2','3','35','30','0','Ghostshard Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107734','3','4','0','3410','12','-1','51','46','0','Six Demon Bag','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107736','3','2','4','5224','13','2','39','34','3','Fight Club','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107738','2','4','1','16815','10','7','18','0','0','Evergreen Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107739','2','4','1','15866','16','7','18','0','0','Timberland Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107746','2','4','0','7899','2','3','41','0','0','Explorers\' League Commendation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107747','2','4','6','18792','14','1','41','0','4','Vile Protector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107748','2','4','6','4405','14','1','45','0','4','Forcestone Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107749','2','4','0','21595','23','3','41','0','7','Omega Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107750','2','4','1','13673','3','7','33','0','0','Mantle of Woe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107751','2','4','2','15886','8','8','30','0','0','Vorrel\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107752','3','2','4','19670','13','2','33','28','3','Dreamslayer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107753','3','2','1','19371','17','1','32','27','1','Bloodspiller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107754','3','4','2','15889','8','8','30','25','0','Harbinger Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107755','3','4','2','15890','3','8','38','33','0','Flintrock Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107756','3','4','2','15894','10','8','34','29','0','Dog Training Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107757','3','2','10','20316','17','2','37','32','2','Windweaver Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107758','3','2','6','22238','17','1','39','34','2','Ruthless Shiv','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107759','3','4','3','15897','5','5','38','33','0','Archon Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107760','3','4','2','21404','7','8','39','34','0','Warchief Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107761','3','2','0','19210','13','1','38','33','3','Steelclaw Reaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107786','3','2','0','15938','13','1','30','25','3','Headsplitter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107787','3','4','6','18455','14','1','31','26','4','Resplendent Guardian','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107809','1','4','0','15966','20','7','30','0','0','Easter Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107888','3','4','0','9854','2','-1','47','0','0','Jarkal\'s Enhancing Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107913','2','4','3','16081','3','5','32','27','0','Barbaric Iron Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107914','2','4','3','16080','5','5','32','27','0','Barbaric Iron Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107915','2','4','3','16084','1','5','35','30','0','Barbaric Iron Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107916','2','4','3','16086','8','5','36','31','0','Barbaric Iron Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107917','2','4','3','16087','10','5','37','32','0','Barbaric Iron Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107918','2','4','4','16089','3','6','45','40','0','Heavy Mithril Shoulder','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107919','2','4','4','16091','10','6','45','40','0','Heavy Mithril Gauntlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107920','2','4','3','3409','7','5','42','37','0','Mithril Scale Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107921','2','4','4','16092','7','6','45','40','0','Heavy Mithril Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107922','3','4','4','16093','1','6','43','40','0','Steel Plate Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107924','2','4','3','6985','9','5','43','38','0','Mithril Scale Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107925','2','4','3','16102','10','5','44','39','0','Mithril Scale Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107926','2','4','4','16103','7','6','45','40','0','Ornate Mithril Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107927','2','4','4','16105','10','6','45','40','0','Ornate Mithril Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107928','2','4','4','16106','3','6','45','40','0','Ornate Mithril Shoulder','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107929','2','4','3','23538','7','5','42','37','0','Orcish War Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107930','2','4','4','16109','5','6','46','41','0','Heavy Mithril Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107931','2','4','3','16110','1','5','46','41','0','Mithril Coif','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107932','2','4','3','16111','3','5','47','42','0','Mithril Scale Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107933','2','4','4','16113','8','6','47','42','0','Heavy Mithril Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107934','2','4','4','16115','1','6','47','42','0','Heavy Mithril Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107935','2','4','4','16117','5','6','48','43','0','Ornate Mithril Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107936','2','4','4','16118','8','6','49','44','0','Ornate Mithril Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107937','2','4','4','16119','1','6','49','44','0','Ornate Mithril Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107938','3','4','4','16124','10','6','45','40','0','Truesilver Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107939','3','4','4','24393','5','6','49','44','0','Truesilver Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107941','2','2','0','16126','13','1','42','37','3','Heavy Mithril Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107942','2','2','0','5639','13','1','44','39','3','Blue Glittering Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107943','2','2','7','16128','13','1','45','40','3','Wicked Mithril Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107944','2','2','7','20221','13','1','48','43','3','Dazzling Mithril Rapier','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107945','2','2','4','5223','13','2','46','41','3','Big Black Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107946','2','2','4','15887','13','2','49','44','3','Runed Mithril Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107947','2','2','15','16130','13','1','51','46','3','Ebon Shiv','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107948','2','4','2','16131','6','8','30','0','0','Ninja Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107949','2','4','2','16133','7','8','30','0','0','Ninja Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107950','2','4','2','16134','5','8','30','0','0','Ninja Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107951','2','4','2','17183','10','8','30','0','0','Ninja Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107952','2','4','2','16136','8','8','30','0','0','Ninja Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107953','2','4','2','16137','1','8','42','0','0','Mask of Thero-Shan','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107954','3','2','4','19748','13','2','47','42','3','The Shatterer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107955','1','2','8','20071','17','1','11','6','1','Copper Claymore','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107956','2','2','5','16146','17','2','25','20','1','Bronze Warhammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107957','2','2','8','16147','17','1','26','21','1','Bronze Greatsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107958','2','2','1','19272','17','1','27','22','1','Bronze Battle Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107959','3','2','6','22234','17','1','50','45','2','Blight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107960','3','2','8','23264','17','1','52','47','1','Truesilver Champion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107961','3','2','7','25053','13','1','49','44','1','Phantom Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107963','2','4','3','16184','5','5','40','35','0','Steel Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107996','1','4','1','16548','1','7','20','15','0','Worn Fishing Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('107997','0','4','0','41844','1','-1','15','0','0','Red Defias Mask','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108006','3','2','15','20326','13','1','39','34','3','The Ziggler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108071','2','2','19','6093','26','2','23','0','0','Sizzle Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108080','0','4','4','28398','5','6','58','53','0','Light Plate Chestpiece','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108081','0','4','4','28399','6','6','57','52','0','Light Plate Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108082','0','4','4','28404','8','6','52','47','0','Light Plate Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108083','0','4','4','9388','9','6','53','48','0','Light Plate Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108084','0','4','4','28401','10','6','56','51','0','Light Plate Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108085','0','4','4','28402','7','6','55','50','0','Light Plate Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108086','0','4','4','28403','3','6','54','49','0','Light Plate Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108088','1','4','4','28395','6','6','50','45','0','Platemail Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108089','1','4','4','28396','8','6','50','45','0','Platemail Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108090','1','4','4','25829','9','6','50','45','0','Platemail Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108091','1','4','4','28397','10','6','50','45','0','Platemail Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108092','1','4','4','15340','1','6','50','45','0','Platemail Helm','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108093','1','4','4','25833','7','6','50','45','0','Platemail Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108094','1','4','4','28394','5','6','50','45','0','Platemail Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108106','2','4','1','16631','5','7','51','45','0','Hibernal Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108107','2','4','1','16634','8','7','47','42','0','Hibernal Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108108','2','4','1','16636','9','7','47','42','0','Hibernal Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108109','2','4','1','23107','16','7','46','41','0','Hibernal Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108110','2','4','1','16633','10','7','47','42','0','Hibernal Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108111','2','4','1','16637','3','7','48','43','0','Hibernal Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108112','2','4','1','16632','7','7','49','44','0','Hibernal Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108113','2','4','1','19901','20','7','51','46','0','Hibernal Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108114','2','4','1','21459','6','7','47','42','0','Hibernal Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108115','2','4','1','16638','1','7','48','43','0','Hibernal Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108116','2','4','2','16920','6','8','47','42','0','Heraldic Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108117','2','4','2','14701','8','8','47','42','0','Heraldic Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108118','2','4','2','14700','9','8','46','41','0','Heraldic Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108119','2','4','2','28737','5','8','51','46','0','Heraldic Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108120','2','4','1','23038','16','7','45','40','0','Heraldic Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108121','2','4','2','14698','10','8','47','42','0','Heraldic Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108122','2','4','2','21300','1','8','48','43','0','Heraldic Headpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108123','2','4','2','14697','7','8','49','44','0','Heraldic Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108124','2','4','2','14696','3','8','48','43','0','Heraldic Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108125','2','4','3','26103','9','5','48','43','0','Myrmidon\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108126','2','4','3','26105','5','5','51','46','0','Myrmidon\'s Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108127','2','4','1','26118','16','7','47','42','0','Myrmidon\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108128','2','4','3','26107','10','5','49','44','0','Myrmidon\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108129','2','4','3','26108','6','5','49','44','0','Myrmidon\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108130','2','4','3','26109','8','5','49','44','0','Myrmidon\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108131','2','4','3','26115','1','5','50','45','0','Myrmidon\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108132','2','4','3','26110','7','5','51','46','0','Myrmidon\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108133','2','4','3','26114','3','5','50','45','0','Myrmidon\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108134','2','4','6','26120','14','1','51','46','4','Myrmidon\'s Defender','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108135','2','4','6','27339','14','1','46','41','4','Chromite Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108137','2','4','4','27329','9','6','43','40','0','Chromite Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108138','2','4','4','27330','5','6','47','42','0','Chromite Chestplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108139','2','4','4','27331','10','6','44','40','0','Chromite Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108140','2','4','4','27332','6','6','43','40','0','Chromite Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108141','2','4','4','27334','8','6','44','40','0','Chromite Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108142','2','4','4','27338','1','6','44','40','0','Chromite Barbute','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108143','2','4','4','27335','7','6','46','41','0','Chromite Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108144','2','4','4','27336','3','6','45','40','0','Chromite Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108156','2','4','4','27345','9','6','40','40','0','Jouster\'s Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108157','2','4','4','27340','5','6','42','40','0','Jouster\'s Chestplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108158','2','4','4','27341','10','6','40','40','0','Jouster\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108159','2','4','4','27342','6','6','40','40','0','Jouster\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108160','2','4','4','27343','8','6','40','40','0','Jouster\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108161','2','4','4','27347','1','6','40','40','0','Jouster\'s Visor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108162','2','4','4','27344','7','6','41','40','0','Jouster\'s Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108163','2','4','4','27346','3','6','41','40','0','Jouster\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108174','3','4','2','17213','1','8','40','35','0','Comfortable Leather Hat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108175','2','4','2','16482','5','8','41','36','0','Nightscape Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108176','2','4','2','16483','1','8','41','36','0','Nightscape Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108177','1','2','8','18354','17','2','7','2','1','Practice Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108178','2','2','8','26591','17','1','10','5','1','Training Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108179','1','2','2','18343','15','2','6','1','0','Cadet\'s Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108180','2','2','2','18350','15','2','11','6','0','Hunting Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108181','1','2','3','20728','26','1','9','4','0','Hunting Rifle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108182','1','2','3','20741','26','1','7','2','0','Pellet Rifle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108183','2','2','2','18355','15','2','27','22','0','Precision Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108184','2','2','19','18346','26','2','29','24','0','Firestarter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108185','2','4','3','16487','7','5','47','42','0','Turtle Scale Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108186','2','2','19','20851','26','2','26','21','0','Dire Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108187','2','4','3','16488','10','5','41','36','0','Turtle Scale Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108188','2','2','3','20735','26','1','37','32','0','Explosive Shotgun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108189','2','4','3','11598','5','5','42','37','0','Turtle Scale Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108190','3','2','7','20081','13','1','55','50','3','Hanzo Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108191','2','4','3','16492','1','5','46','41','0','Turtle Scale Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108192','2','4','2','16497','3','8','42','37','0','Nightscape Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108193','2','4','2','17151','7','8','46','41','0','Nightscape Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108194','2','2','4','19721','13','2','43','38','3','Goblin Nutcracker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108195','2','4','1','23049','16','7','46','41','0','Nightscape Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108196','2','2','7','26572','13','1','43','38','3','Ebon Scimitar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108197','2','4','2','16505','8','8','47','42','0','Nightscape Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108198','2','4','3','16506','9','5','42','37','0','Turtle Scale Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108199','2','2','8','18342','17','1','47','42','1','Battlefield Destroyer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108200','2','4','2','16508','20','8','43','38','0','Big Voodoo Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108201','2','4','2','25711','1','8','44','39','0','Big Voodoo Mask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108202','2','4','2','16510','7','8','47','42','0','Big Voodoo Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108203','2','4','3','16513','5','5','44','39','0','Tough Scorpid Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108204','2','4','3','16515','10','5','45','40','0','Tough Scorpid Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108205','2','4','3','16516','9','5','44','39','0','Tough Scorpid Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108206','2','4','3','16517','7','5','49','44','0','Tough Scorpid Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108207','2','4','3','16519','3','5','48','43','0','Tough Scorpid Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108208','2','4','3','16520','1','5','50','45','0','Tough Scorpid Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108209','2','4','3','16521','8','5','47','42','0','Tough Scorpid Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108210','2','4','2','25691','3','8','44','39','0','Wild Leather Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108211','2','4','2','25689','5','8','45','40','0','Wild Leather Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108212','2','4','2','18935','7','8','50','45','0','Wild Leather Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108213','2','4','2','4389','8','8','49','44','0','Wild Leather Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108214','2','4','2','25693','1','8','45','40','0','Wild Leather Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108215','2','4','1','23081','16','7','50','45','0','Wild Leather Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108216','2','4','1','24297','16','7','48','43','0','Big Voodoo Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108223','3','2','7','20073','13','1','37','32','3','Blade of the Basilisk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108224','2','2','7','22232','13','1','36','31','3','Silithid Ripper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108225','3','2','7','20076','13','1','36','31','3','Tainted Pierce','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108226','3','2','7','16539','13','1','31','26','3','The Butcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108245','2','4','1','17211','5','7','56','51','0','Imperial Red Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108246','2','4','1','16766','8','7','52','47','0','Imperial Red Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108247','2','4','1','17229','9','7','51','46','0','Imperial Red Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108248','2','4','1','17238','16','7','50','45','0','Imperial Red Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108249','2','4','1','17216','10','7','52','47','0','Imperial Red Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108250','2','4','1','17234','3','7','52','47','0','Imperial Red Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108251','2','4','1','16764','7','7','54','49','0','Imperial Red Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108252','2','4','1','17236','20','7','56','51','0','Imperial Red Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108253','2','4','1','17228','6','7','51','46','0','Imperial Red Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108254','2','4','1','18728','1','7','53','48','0','Imperial Red Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108255','2','4','2','15411','6','8','50','45','0','Serpentskin Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108256','2','4','2','17258','8','8','52','47','0','Serpentskin Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108257','2','4','2','17259','9','8','50','45','0','Serpentskin Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108258','2','4','2','18470','5','8','56','51','0','Serpentskin Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108259','2','4','1','23063','16','7','50','45','0','Serpentskin Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108260','2','4','2','17263','10','8','52','47','0','Serpentskin Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108261','2','4','2','17321','1','8','54','49','0','Serpentskin Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108262','2','4','2','17265','7','8','54','49','0','Serpentskin Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108263','2','4','2','17267','3','8','53','48','0','Serpentskin Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108264','2','4','3','28451','9','5','52','47','0','Ebonhold Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108265','2','4','3','26204','5','5','56','51','0','Ebonhold Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108266','2','4','1','26228','16','7','51','46','0','Ebonhold Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108267','2','4','3','28726','10','5','54','49','0','Ebonhold Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108268','2','4','3','26210','6','5','54','49','0','Ebonhold Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108269','2','4','3','28667','8','5','55','50','0','Ebonhold Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108270','2','4','3','26220','1','5','55','50','0','Ebonhold Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108271','2','4','3','21694','7','5','56','51','0','Ebonhold Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108272','2','4','3','26217','3','5','54','49','0','Ebonhold Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108273','2','4','4','27373','9','6','46','41','0','Valorous Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108274','2','4','4','27372','5','6','51','46','0','Valorous Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108275','2','4','6','26232','14','1','56','51','4','Ebonhold Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108276','2','4','4','27374','10','6','47','42','0','Valorous Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108277','2','4','4','27375','6','6','46','41','0','Valorous Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108278','2','4','4','27376','8','6','47','42','0','Valorous Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108279','2','4','4','27379','1','6','48','43','0','Valorous Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108280','2','4','4','27377','7','6','49','44','0','Valorous Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108281','2','4','4','27378','3','6','48','43','0','Valorous Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108282','2','4','6','18790','14','1','51','46','4','Valorous Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108283','2','4','1','17251','5','7','61','56','0','Arcane Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108284','2','4','1','17256','8','7','57','52','0','Arcane Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108285','2','4','1','17262','9','7','56','51','0','Arcane Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108286','2','4','1','13984','16','7','55','50','0','Arcane Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108287','2','4','1','17255','10','7','57','52','0','Arcane Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108288','2','4','1','17271','3','7','59','54','0','Arcane Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108289','2','4','1','17252','7','7','60','55','0','Arcane Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108290','2','4','1','17276','20','7','61','56','0','Arcane Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108291','2','4','1','17261','6','7','56','51','0','Arcane Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108292','2','4','1','17274','1','7','58','53','0','Arcane Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108293','2','4','2','17318','6','8','56','51','0','Traveler\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108294','2','4','2','17317','8','8','57','52','0','Traveler\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108295','2','4','2','17316','9','8','56','51','0','Traveler\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108296','2','4','2','17312','5','8','61','56','0','Traveler\'s Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108297','2','4','1','23066','16','7','55','50','0','Traveler\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108298','2','4','2','17314','10','8','57','52','0','Traveler\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108299','2','4','2','17269','1','8','59','54','0','Traveler\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108300','2','4','2','17313','7','8','60','55','0','Traveler\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108301','2','4','2','17319','3','8','59','54','0','Traveler\'s Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108302','2','4','3','26313','9','5','58','53','0','Hero\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108303','2','4','3','26314','5','5','62','57','0','Hero\'s Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108304','2','4','1','26323','16','7','57','52','0','Hero\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108305','2','4','3','26316','10','5','59','54','0','Hero\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108306','2','4','3','26312','6','5','59','54','0','Hero\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108307','2','4','3','26310','8','5','60','55','0','Hero\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108308','2','4','3','26315','1','5','60','55','0','Hero\'s Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108309','2','4','3','26317','7','5','61','56','0','Hero\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108310','2','4','3','26321','3','5','60','55','0','Hero\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108311','2','4','4','27394','9','6','53','48','0','Alabaster Plate Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108312','2','4','4','27389','5','6','57','52','0','Alabaster Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108313','2','4','6','26324','14','1','62','57','4','Hero\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108314','2','4','4','27390','10','6','53','48','0','Alabaster Plate Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108315','2','4','4','27391','6','6','52','47','0','Alabaster Plate Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108316','2','4','4','27392','8','6','53','48','0','Alabaster Plate Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108317','2','4','4','27395','1','6','54','49','0','Alabaster Plate Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108318','2','4','4','27393','7','6','56','51','0','Alabaster Plate Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108319','2','4','4','27396','3','6','55','50','0','Alabaster Plate Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108320','2','4','6','27571','14','1','57','52','4','Alabaster Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108345','3','4','2','45176','1','8','45','40','0','Wolfshead Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108346','3','4','2','16678','10','8','46','41','0','Gauntlets of the Sea','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108347','3','4','3','16731','10','5','45','40','0','Dragonscale Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108348','3','4','2','17226','1','8','50','45','0','Helm of Fire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108349','3','4','2','8660','5','8','50','45','0','Feathered Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108350','2','4','0','224','11','5','15','10','1','The 1 Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108367','3','4','3','16729','5','5','51','46','0','Dragonscale Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108624','1','4','0','17599','23','2','10','0','0','Red Sparkler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108625','1','4','0','17600','23','2','10','0','0','White Sparkler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108626','1','4','0','17602','23','2','10','0','0','Blue Sparkler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108708','4','2','4','17788','13','2','50','40','3','Hammer of Expertise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108746','0','4','1','18416','1','7','33','28','0','Interlaced Cowl','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108747','0','4','2','21298','1','8','35','30','0','Hardened Leather Helm','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108748','0','4','3','28389','1','5','30','25','0','Double Mail Coif','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108749','0','4','1','18414','1','7','43','38','0','Crochet Hat','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108750','0','4','2','21312','1','8','42','37','0','Thick Leather Hat','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108751','0','4','3','28393','1','5','44','39','0','Overlinked Coif','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108752','0','4','3','28391','1','5','54','49','0','Laminated Scale Circlet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108753','0','4','2','18418','1','8','57','52','0','Smooth Leather Helmet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108754','0','4','1','18422','1','7','56','51','0','Twill Cover','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('108755','0','4','4','28847','1','5','55','50','0','Light Plate Helmet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109149','2','4','0','8025','12','2','45','35','0','Philosopher\'s Stone','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109240','3','2','4','57786','13','4','50','35','3','Mallet of Zul\'Farrak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109243','2','4','0','17918','2','8','45','40','0','Shriveled Heart','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109285','2','4','4','27362','9','6','41','40','0','Field Plate Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109286','2','4','4','27356','5','6','44','40','0','Field Plate Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109287','2','4','4','27358','10','6','41','40','0','Field Plate Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109288','2','4','4','27359','6','6','41','40','0','Field Plate Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109289','2','4','4','27357','8','6','41','40','0','Field Plate Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109290','2','4','4','25839','1','6','42','40','0','Field Plate Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109291','2','4','4','27360','7','6','43','40','0','Field Plate Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109292','2','4','4','27361','3','6','42','40','0','Field Plate Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109333','0','4','0','18172','2','3','1','0','0','Tarnished Silver Necklace','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109359','3','2','4','19756','13','2','45','40','3','Wirt\'s Third Leg','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109362','2','4','0','224','11','-1','31','0','0','Brilliant Gold Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109366','2','4','3','18256','10','5','41','36','0','Golden Scale Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109372','4','2','8','45946','17','1','55','50','1','Sul\'thraze the Lasher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109375','3','4','2','21295','1','8','38','33','0','Expert Goldminer\'s Helmet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109378','3','2','0','18257','13','1','38','33','3','Shovelphlange\'s Mining Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109379','3','2','7','20032','13','1','49','44','3','Sang\'thraze the Deflector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109380','3','2','7','20031','13','1','50','45','3','Jang\'thraze the Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109381','3','2','19','21025','26','2','38','33','0','Earthen Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109382','2','4','2','28734','8','8','38','33','0','Tromping Miner\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109383','3','2','1','18328','17','1','40','35','1','Obsidian Cleaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109384','3','2','15','18264','13','1','36','31','3','Stonevault Shiv','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109385','3','2','8','20249','17','1','36','31','1','Archaic Defender','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109386','3','2','4','18268','13','2','36','31','7','Excavator\'s Brand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109387','3','4','4','18430','8','6','41','40','0','Revelosh\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109388','3','4','3','18427','9','5','40','35','0','Revelosh\'s Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109389','3','4','2','18433','3','8','41','36','0','Revelosh\'s Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109390','3','4','1','19056','10','7','40','35','0','Revelosh\'s Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109391','3','2','5','18269','17','2','37','32','1','The Shoveler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109392','3','2','7','18270','13','1','40','35','3','Annealed Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109393','3','4','0','11410','23','-1','38','33','7','Beacon of Hope','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109394','3','4','4','21301','1','6','42','40','0','Horned Viking Helmet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109395','3','4','1','18271','10','7','34','29','0','Gloves of Old','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109396','3','4','3','18274','7','5','39','34','0','Legguards of the Vault','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109397','3','4','1','22996','16','7','39','34','0','Energy Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109398','3','4','2','18361','8','8','40','35','0','Worn Running Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109400','3','2','2','20553','15','2','41','36','0','Baelog\'s Shortbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109401','3','2','7','7485','13','1','43','38','3','Nordic Longshank','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109402','3','4','2','21403','7','8','60','55','0','Earthborn Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109403','3','4','6','18824','14','1','40','35','4','Battered Viking Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109404','3','4','6','18826','14','1','42','37','4','Olaf\'s All Purpose Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109405','3','4','3','18283','6','5','33','28','0','Girdle of Golem Strength','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109406','3','4','2','18284','5','8','35','30','0','Spirewind Fetter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109407','3','4','1','12345','7','7','40','35','0','Stoneweaver Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109408','3','2','10','20274','17','2','42','37','2','Ironshod Bludgeon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109409','3','4','3','18352','9','5','42','37','0','Ironaya\'s Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109410','3','4','4','29000','10','6','45','40','0','Cragfists','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109411','3','4','3','6480','3','5','45','40','0','Rockshard Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109412','3','2','3','18298','26','1','47','40','0','Galgann\'s Fireblaster','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109413','3','2','5','19620','17','2','49','40','1','The Rockpounder','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109414','3','4','2','18434','7','8','46','40','0','Oilskin Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109415','3','4','1','18347','5','7','47','40','0','Grimlok\'s Tribal Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109416','3','2','6','22233','17','1','47','40','2','Grimlok\'s Charge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109417','3','4','0','18308','2','3','47','42','0','Archaedic Shard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109418','3','2','8','20193','17','1','49','40','1','Stoneslayer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109419','3','2','4','18312','13','2','46','40','3','Galgann\'s Firehammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109420','3','4','2','18322','1','8','37','32','0','Adventurer\'s Pith Helmet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109422','3','2','3','20663','26','1','43','38','0','Shadowforge Bushmaster','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109423','3','2','5','18324','17','2','45','40','1','The Jackhammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109424','3','2','7','18325','13','1','41','36','1','Ginn-su Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109425','3','2','1','22220','17','1','44','39','1','Pendulum of Doom','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109426','3','2','2','20556','15','2','41','36','0','Monolithic Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109427','3','2','4','22051','13','2','42','37','3','Stonevault Bonebreaker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109428','3','4','2','18331','9','8','35','30','0','Unearthed Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109429','3','4','1','18376','1','7','44','39','0','Miner\'s Hat of the Deep','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109430','3','4','3','18333','3','5','45','40','0','Spaulders of a Lost Age','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109431','3','4','1','18334','1','7','43','38','0','Papal Fez','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109432','3','4','4','18378','9','6','42','40','0','Skullplate Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109433','3','4','1','18337','9','7','46','41','0','Forgotten Wraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109434','3','4','1','18338','5','7','41','36','0','Elemental Raiment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109435','3','4','3','18339','10','5','36','31','0','Reticulated Bone Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109444','1','4','6','8296','14','1','26','21','4','Techbot CPU Shell','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109445','3','4','3','18364','10','5','34','29','0','Grubbis Paws','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109446','3','2','7','16538','13','1','34','28','3','Electrocutioner Leg','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109447','3','4','0','18365','11','5','34','28','1','Electrocutioner Lagnut','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109448','3','4','1','18366','9','7','33','28','0','Spidertank Oilrag','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109449','3','2','5','19645','17','2','34','28','1','Manual Crowd Pummeler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109450','3','4','2','18367','8','8','33','28','0','Gnomebot Operating Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109452','3','2','10','20323','17','2','32','27','2','Hydrocane','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109453','3','2','15','20595','13','1','32','27','3','Toxic Revenger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109454','3','4','1','14749','8','7','32','27','0','Acidic Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109455','3','4','2','18371','9','8','33','28','0','Emissary Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109456','3','2','3','18372','26','1','35','30','0','Glass Shooter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109457','3','2','4','18373','13','2','35','30','3','Royal Diplomatic Scepter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109458','3','4','6','18374','14','1','37','28','4','Thermaplugg\'s Central Core','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109459','3','2','1','19298','17','1','37','28','1','Thermaplugg\'s Left Arm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109461','3','4','0','3258','11','5','37','28','1','Charged Gear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109465','3','2','0','18377','13','1','45','40','3','Digmaster 5000','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109467','3','2','15','20311','13','1','47','42','3','Gahz\'rilla Fang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109469','3','4','3','18382','5','5','48','43','0','Gahz\'rilla Scale Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109470','3','4','1','18689','1','7','49','44','0','Bad Mojo Mask','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109473','3','4','2','18386','5','8','49','44','0','Jinxed Hoodoo Skin','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109474','3','4','2','18387','7','8','49','44','0','Jinxed Hoodoo Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109475','3','2','6','22209','17','1','49','44','2','Diabolic Skiver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109476','3','4','4','18389','3','6','50','45','0','Big Bad Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109477','3','2','10','21514','17','2','50','45','2','The Chief\'s Enforcer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109478','3','2','0','25598','13','1','50','45','3','Ripsaw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109479','3','4','2','18392','1','8','50','45','0','Embrace of the Lycan','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109480','3','2','6','22235','17','1','48','43','2','Eyegouger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109481','3','2','1','19309','17','1','49','44','1','The Minotaur','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109482','3','2','10','20269','17','2','47','42','2','Witch Doctor\'s Cane','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109483','3','2','19','20786','26','2','49','44','0','Flaming Incinerator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109484','3','4','1','22426','7','7','50','45','0','Spellshock Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109485','3','2','0','18403','13','1','30','25','3','Vibroblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109486','3','2','1','19295','17','1','28','23','1','Supercharger Battle Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109487','3','2','3','18405','26','1','29','24','0','Hi-tech Supergun','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109488','3','2','4','18406','13','2','28','23','3','Oscillating Power Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109489','2','2','19','18408','26','2','31','26','0','Gyromatic Icemaker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109490','3','2','8','18409','17','1','29','24','1','Gizmotron Megachopper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109491','3','4','1','14765','10','7','32','27','0','Hotshot Pilot\'s Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109492','3','4','1','18415','1','7','37','28','0','Electromagnetic Gigaflux Reactivator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109508','3','4','1','18428','20','7','31','26','0','Mechbuilder\'s Overalls','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109509','3','4','2','18429','7','8','30','25','0','Petrolspill Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109510','3','4','3','18431','8','5','32','27','0','Caverndeep Trudgers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109511','3','2','7','20029','13','1','46','41','3','Bloodletter Scalpel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109512','3','4','1','22988','16','7','46','41','0','Blackmetal Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109513','2','2','10','18438','17','2','13','0','2','Ley Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109514','2','2','10','20424','17','2','10','0','2','Arcane Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109515','2','4','1','32153','5','7','31','0','0','Nether-lace Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109516','2','4','1','18440','5','7','31','0','0','Astral Knot Blouse','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109517','3','2','10','20348','17','2','40','0','2','Celestial Stave','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109518','2','4','2','18443','10','8','36','0','0','Mud\'s Crushers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109519','2','4','1','18444','8','7','36','0','0','Durtfeet Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109520','2','2','15','20574','13','1','41','0','3','Silent Hunter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109521','2','2','1','19307','17','1','41','0','1','Skullsplitter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109522','2','4','6','18447','14','1','36','0','4','Energized Stone Circle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109527','2','2','10','20300','17','2','46','0','2','Spellshifter Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109531','2','4','4','18497','3','6','46','0','0','Gemshale Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109533','3','4','0','224','11','5','47','0','1','Masons Fraternity Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109534','3','4','2','18498','1','8','47','0','0','Engineer\'s Guild Headpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109535','2','4','3','28169','9','5','30','0','0','Fire-welded Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109536','2','4','1','18901','3','7','30','0','0','Fairywing Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109538','3','4','0','224','11','-1','35','0','0','Talvash\'s Gold Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109588','3','4','0','224','11','-1','35','0','0','Nogg\'s Gold Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109598','2','4','1','19011','20','7','10','0','0','Sleeping Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109599','2','4','3','26948','7','5','10','0','0','Barkmail Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109600','1','4','1','18911','7','7','12','0','0','Lace Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109601','1','4','2','28142','8','8','12','0','0','Cushioned Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109602','2','2','8','20069','17','1','10','0','1','Brushwood Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109603','2','2','10','20432','17','2','10','0','2','Gritroot Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109604','2','2','5','18531','17','2','30','0','1','Mechanic\'s Pipehammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109605','2','4','1','23134','16','7','30','0','0','Repairman\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109607','2','4','6','18533','14','1','25','0','4','Bastion of Stormwind','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109608','2','2','0','7494','22','1','31','0','3','Shoni\'s Disarming Tool','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109609','2','4','1','18991','10','7','31','0','0','Shilly Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109622','2','4','0','14432','11','-1','35','0','0','Reedknot Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109623','3','4','1','18883','20','7','37','0','0','Civinad Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109624','3','4','2','28195','7','8','37','0','0','Triprunner Dungarees','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109625','3','4','3','28317','7','5','37','0','0','Dual Reinforced Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109626','2','2','1','19302','17','1','42','0','1','Dwarven Charge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109627','2','4','0','11410','23','3','42','0','7','Explorers\' League Lodestar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109630','2','4','2','4440','8','8','45','0','0','Pratt\'s Handcrafted Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109631','2','4','2','28339','10','8','45','0','0','Pratt\'s Handcrafted Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109632','2','4','2','28283','10','8','45','0','0','Jangdor\'s Handcrafted Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109633','2','4','2','28281','8','8','45','0','0','Jangdor\'s Handcrafted Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109634','2','4','1','18998','10','7','46','0','0','Skilled Handling Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109635','2','4','1','18915','16','7','45','0','0','Master Apothecary Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109636','2','4','1','4446','6','7','45','0','0','Swashbuckler Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109637','2','4','4','28252','8','6','45','0','0','Shinkicker Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109638','2','4','3','28118','9','5','50','0','0','Chelonian Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109639','3','2','4','28194','13','2','48','43','3','The Hand of Antu\'sul','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109640','3','4','4','18573','10','6','48','43','0','Vice Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109641','3','4','0','9854','2','3','48','43','0','Lifeblood Amulet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109642','2','4','0','9832','11','5','50','0','1','Band of the Great Tortoise','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109643','2','4','6','18822','14','1','51','0','4','Optomatic Deflector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109644','2','4','0','18575','23','3','51','0','7','Thermotastic Egg Timer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109645','2','4','1','18906','8','7','49','0','0','Gnomish Inventor Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109646','2','4','4','28172','8','6','49','0','0','Gnomish Water Sinking Device','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109647','2','4','2','18577','3','8','48','0','0','Failed Flying Experiment','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109648','2','4','1','28097','16','7','48','0','0','Chainlink Towel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109649','3','4','1','28294','20','7','55','0','0','Royal Highmark Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109650','3','4','3','28279','5','5','55','0','0','Honorguard Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109651','3','2','4','18578','13','2','53','0','3','Gryphon Rider\'s Stormhammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109652','3','4','2','17150','7','8','53','0','0','Gryphon Rider\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109653','2','4','1','18579','1','7','50','0','0','Speedy Racer Goggles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109654','2','2','19','28307','26','2','50','0','0','Cairnstone Sliver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109655','2','4','0','9833','11','5','50','0','1','Seedtime Hoop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109656','2','4','4','18580','10','6','49','0','0','Granite Grips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109657','2','4','2','28426','6','8','49','0','0','Vinehedge Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109658','2','4','1','19913','8','7','43','0','0','Boots of the Maharishi','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109660','2','4','1','28299','16','7','43','0','0','Stargazer Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109661','2','4','6','20900','14','1','43','0','4','Earthclasp Barrier','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109662','2','4','4','28295','8','6','43','0','0','Rushridge Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109663','2','4','3','28315','5','5','45','0','0','Dawnrider\'s Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109664','2','4','4','18584','1','6','45','0','0','Sentinel\'s Guard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109665','2','4','1','18586','10','7','50','0','0','Wingcrest Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109666','2','4','3','28300','6','5','50','0','0','Stronghorn Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109678','2','2','5','5233','17','2','43','0','1','Tok\'kar\'s Murloc Basher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109679','2','2','1','22223','17','1','43','0','1','Tok\'kar\'s Murloc Chopper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109680','2','2','15','20475','13','1','43','0','3','Tok\'kar\'s Murloc Shanker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109682','2','4','2','28284','6','8','44','0','0','Leather Chef\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109683','3','2','10','20289','17','2','51','0','2','Strength of the Treant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109684','3','2','0','19130','13','1','51','0','3','Force of the Hippogryph','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109685','2','2','1','19311','17','1','51','46','1','Will of the Mountain Giant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109686','3','2','4','19746','13','2','51','0','3','Spirit of the Faerie Dragon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109687','2','4','2','28328','6','8','33','0','0','Grappler\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109698','2','4','2','17186','10','8','33','0','0','Gloves of Insight','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109699','2','4','1','28326','16','7','33','0','0','Garrison Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109703','2','4','1','28297','16','7','43','0','0','Scorched Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109704','2','4','2','28296','10','8','43','0','0','Rustler Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109705','2','4','2','17231','6','8','43','0','0','Tharg\'s Shoelace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109706','2','4','6','20975','14','1','43','0','4','Tharg\'s Disk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109718','3','2','7','13488','13','1','38','33','3','Reforged Blade of Heroes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109742','1','4','1','14710','6','7','12','7','0','Simple Cord','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109743','1','4','1','27532','8','7','12','7','0','Simple Shoes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109744','1','4','1','14705','9','7','12','7','0','Simple Bands','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109745','1','4','1','27533','16','7','11','6','0','Simple Cape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109746','1','4','1','14706','10','7','13','8','0','Simple Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109747','2','4','1','14711','7','7','14','9','0','Simple Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109748','2','4','1','18883','20','7','15','10','0','Simple Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109749','2','4','1','27529','5','7','15','10','0','Simple Blouse','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109750','1','4','2','19034','6','8','12','7','0','Gypsy Sash','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109751','1','4','2','19033','8','8','12','7','0','Gypsy Sandals','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109752','1','4','2','17169','9','8','12','7','0','Gypsy Bands','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109753','2','4','6','18469','14','1','12','7','4','Gypsy Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109754','1','4','1','23034','16','7','11','6','0','Gypsy Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109755','1','4','2','19032','10','8','13','8','0','Gypsy Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109756','2','4','2','19030','7','8','14','9','0','Gypsy Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109757','2','4','2','19029','5','8','15','10','0','Gypsy Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109758','1','4','3','22683','6','5','12','7','0','Cadet Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109759','1','4','3','22684','8','5','13','8','0','Cadet Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109760','1','4','3','22685','9','5','12','7','0','Cadet Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109761','1','4','1','25960','16','7','11','6','0','Cadet Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109762','1','4','3','22686','10','5','13','8','0','Cadet Gauntlets','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109763','2','4','3','22687','7','5','14','9','0','Cadet Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109764','2','4','6','18823','14','1','13','8','4','Cadet Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109765','2','4','3','22688','5','5','15','10','0','Cadet Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109766','2','4','1','25947','6','7','22','17','0','Greenweave Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109767','2','4','1','25946','8','7','23','18','0','Greenweave Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109768','2','4','1','25939','9','7','21','16','0','Greenweave Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109769','2','4','0','28023','23','-1','27','22','7','Greenweave Branch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109770','2','4','1','23106','16','7','20','15','0','Greenweave Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109771','2','4','1','25941','10','7','25','20','0','Greenweave Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109772','2','4','1','25942','7','7','27','22','0','Greenweave Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109773','2','4','1','25944','20','7','27','22','0','Greenweave Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109774','2','4','1','25949','5','7','27','22','0','Greenweave Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109775','2','4','2','28177','6','8','19','14','0','Bandit Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109776','2','4','2','16981','8','8','20','15','0','Bandit Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109777','2','4','2','28427','9','8','19','14','0','Bandit Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109778','2','4','6','20826','14','1','20','15','4','Bandit Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109779','2','4','1','28433','16','7','18','13','0','Bandit Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109780','2','4','2','28428','10','8','20','15','0','Bandit Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109781','2','4','2','28431','7','8','22','17','0','Bandit Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109782','2','4','2','28430','5','8','23','18','0','Bandit Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109783','2','4','3','13011','5','5','20','15','0','Raider\'s Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109784','2','4','3','6987','8','5','19','14','0','Raider\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109785','2','4','3','25776','9','5','17','12','0','Raider\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109786','2','4','1','25978','16','7','16','11','0','Raider\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109787','2','4','3','13484','10','5','19','14','0','Raider\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109788','2','4','3','25775','6','5','18','13','0','Raider\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109789','2','4','3','3541','7','5','19','14','0','Raider\'s Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109790','2','4','6','18657','14','1','19','14','4','Raider\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109791','2','4','1','27751','5','7','29','24','0','Ivycloth Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109792','2','4','1','16881','8','7','25','20','0','Ivycloth Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109793','2','4','1','14736','9','7','25','20','0','Ivycloth Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109794','2','4','1','27752','16','7','25','20','0','Ivycloth Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109795','2','4','1','27753','10','7','26','21','0','Ivycloth Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109796','2','4','1','27754','3','7','27','22','0','Ivycloth Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109797','2','4','1','27755','7','7','28','23','0','Ivycloth Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109798','2','4','1','18120','20','7','29','24','0','Ivycloth Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109799','2','4','1','28477','6','7','26','21','0','Ivycloth Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109800','2','4','0','27756','23','-1','29','24','7','Ivy Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109801','2','4','2','6760','6','8','25','20','0','Superior Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109802','2','4','2','27761','8','8','26','21','0','Superior Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109803','2','4','2','27760','9','8','26','21','0','Superior Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109804','2','4','6','1685','14','1','26','21','4','Superior Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109805','2','4','1','23108','16','7','24','19','0','Superior Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109806','2','4','2','2358','10','8','27','22','0','Superior Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109807','2','4','2','27759','3','8','27','22','0','Superior Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109808','2','4','2','691','7','8','28','23','0','Superior Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109809','2','4','2','27758','5','8','28','23','0','Superior Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109810','2','4','3','6869','8','5','25','20','0','Fortified Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109811','2','4','3','25772','9','5','24','19','0','Fortified Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109812','2','4','1','25975','16','7','22','17','0','Fortified Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109813','2','4','3','25773','10','5','25','20','0','Fortified Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109814','2','4','3','25771','6','5','24','19','0','Fortified Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109815','2','4','3','697','7','5','25','20','0','Fortified Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109816','2','4','6','26121','14','1','25','20','4','Fortified Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109817','2','4','3','25774','3','5','26','21','0','Fortified Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109818','2','4','3','1019','5','5','25','20','0','Fortified Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109819','2','4','1','27860','5','7','34','29','0','Durable Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109820','2','4','1','27861','8','7','31','26','0','Durable Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109821','2','4','1','27857','9','7','30','25','0','Durable Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109822','2','4','1','27858','16','7','29','24','0','Durable Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109823','2','4','1','10508','10','7','31','26','0','Durable Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109824','2','4','1','27855','3','7','32','27','0','Durable Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109825','2','4','1','27853','7','7','33','28','0','Durable Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109826','2','4','1','27856','20','7','34','29','0','Durable Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109827','2','4','2','14936','6','8','30','25','0','Scaled Leather Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109828','2','4','2','11581','8','8','31','26','0','Scaled Leather Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109829','2','4','2','28482','9','8','29','24','0','Scaled Leather Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109830','2','4','6','6274','14','1','32','27','4','Scaled Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109831','2','4','1','27768','16','7','29','24','0','Scaled Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109832','2','4','2','27766','10','8','31','26','0','Scaled Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109833','2','4','2','6772','7','8','33','28','0','Scaled Leather Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109834','2','4','2','27764','3','8','32','27','0','Scaled Leather Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109835','2','4','2','11580','5','8','33','28','0','Scaled Leather Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109836','2','4','3','27769','5','5','33','28','0','Banded Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109837','2','4','3','27783','9','5','30','25','0','Banded Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109838','2','4','1','27779','16','7','29','24','0','Banded Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109839','2','4','3','27778','10','5','31','26','0','Banded Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109840','2','4','3','27777','6','5','31','26','0','Banded Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109841','2','4','3','27770','7','5','32','27','0','Banded Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109842','2','4','3','27776','3','5','32','27','0','Banded Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109843','2','4','6','26060','14','1','33','28','4','Banded Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109844','2','4','1','28424','5','7','38','33','0','Conjurer\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109845','2','4','1','50497','8','7','35','30','0','Conjurer\'s Shoes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109846','2','4','1','28418','9','7','35','30','0','Conjurer\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109847','2','4','1','15236','16','7','33','28','0','Conjurer\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109848','2','4','1','28422','10','7','36','31','0','Conjurer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109849','2','4','1','16638','1','7','36','31','0','Conjurer\'s Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109850','2','4','1','12980','3','7','36','31','0','Conjurer\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109851','2','4','1','28419','7','7','37','32','0','Conjurer\'s Breeches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109852','2','4','1','28425','20','7','38','33','0','Conjurer\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109853','2','4','1','28421','6','7','34','29','0','Conjurer\'s Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109854','2','4','2','14068','5','8','38','33','0','Archer\'s Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109855','2','4','2','11956','6','8','35','30','0','Archer\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109856','2','4','2','28734','8','8','36','31','0','Archer\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109857','2','4','2','18930','9','8','34','29','0','Archer\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109858','2','4','6','18488','14','1','36','31','4','Archer\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109859','2','4','2','26550','1','8','36','31','0','Archer\'s Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109860','2','4','1','23004','16','7','34','29','0','Archer\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109861','2','4','2','18929','10','8','35','30','0','Archer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109862','2','4','2','14635','7','8','37','32','0','Archer\'s Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109863','2','4','2','8098','3','8','37','32','0','Archer\'s Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109864','2','4','3','25980','8','5','36','31','0','Renegade Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109865','2','4','3','25786','9','5','34','29','0','Renegade Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109866','2','4','3','25787','5','5','38','33','0','Renegade Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109867','2','4','1','26251','16','7','33','28','0','Renegade Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109868','2','4','3','25788','10','5','35','30','0','Renegade Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109869','2','4','3','25784','6','5','35','30','0','Renegade Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109870','2','4','3','25991','1','5','36','31','0','Renegade Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109871','2','4','3','26249','7','5','37','32','0','Renegade Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109872','2','4','3','25790','3','5','37','32','0','Renegade Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109873','2','4','6','25988','14','1','37','32','4','Renegade Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109874','2','4','1','28064','5','7','43','38','0','Sorcerer Drape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109875','2','4','1','26470','6','7','39','34','0','Sorcerer Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109876','2','4','1','28088','8','7','40','35','0','Sorcerer Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109877','2','4','1','28065','16','7','38','33','0','Sorcerer Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109878','2','4','1','28067','1','7','41','36','0','Sorcerer Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109879','2','4','1','28057','9','7','39','34','0','Sorcerer Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109880','2','4','1','28062','10','7','40','35','0','Sorcerer Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109881','2','4','1','28068','3','7','41','36','0','Sorcerer Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109882','2','4','0','21603','23','-1','43','38','7','Sorcerer Sphere','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109883','2','4','1','28061','7','7','42','37','0','Sorcerer Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109884','2','4','1','28074','20','7','43','38','0','Sorcerer Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109885','2','4','2','18904','8','8','40','35','0','Huntsman\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109886','2','4','2','3606','9','8','39','34','0','Huntsman\'s Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109887','2','4','2','18903','5','8','43','38','0','Huntsman\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109888','2','4','6','20873','14','1','42','37','4','Elven Protector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109889','2','4','2','18921','1','8','40','35','0','Huntsman\'s Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109890','2','4','1','23023','16','7','38','33','0','Huntsman\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109891','2','4','2','17129','6','8','39','34','0','Huntsman\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109892','2','4','2','18912','10','8','40','35','0','Huntsman\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109893','2','4','2','27807','7','8','42','37','0','Huntsman\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109894','2','4','2','3169','3','8','41','36','0','Huntsman\'s Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109895','2','4','3','27787','8','5','40','35','0','Jazeraint Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109896','2','4','3','27788','9','5','39','34','0','Jazeraint Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109897','2','4','3','27784','5','5','42','37','0','Jazeraint Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109898','2','4','1','27794','16','7','38','33','0','Jazeraint Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109899','2','4','6','25911','14','1','42','37','4','Jazeraint Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109900','2','4','3','27791','10','5','40','35','0','Jazeraint Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109901','2','4','3','27792','6','5','40','35','0','Jazeraint Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109902','2','4','3','27789','1','5','41','36','0','Jazeraint Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109903','2','4','3','26163','7','5','42','37','0','Jazeraint Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109904','2','4','3','27790','3','5','41','36','0','Jazeraint Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109905','2','4','1','28411','5','7','48','43','0','Royal Blouse','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109906','2','4','1','28415','6','7','44','39','0','Royal Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109907','2','4','1','11548','8','7','44','39','0','Royal Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109908','2','4','1','28412','16','7','43','38','0','Royal Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109909','2','4','1','28410','9','7','43','38','0','Royal Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109910','2','4','1','28413','10','7','44','39','0','Royal Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109911','2','4','1','28416','7','7','46','41','0','Royal Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109912','2','4','1','28409','3','7','45','40','0','Royal Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109913','2','4','1','28417','20','7','48','43','0','Royal Gown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109914','2','4','0','18714','23','-1','48','43','7','Royal Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109915','2','4','1','28414','1','7','45','40','0','Royal Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109916','2','4','2','17115','6','8','44','39','0','Tracker\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109917','2','4','2','18937','8','8','44','39','0','Tracker\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109918','2','4','6','25940','14','1','45','40','4','Brigade Defender','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109919','2','4','1','23073','16','7','43','38','0','Tracker\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109920','2','4','2','18936','10','8','44','39','0','Tracker\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109921','2','4','2','19010','1','8','45','40','0','Tracker\'s Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109922','2','4','2','18935','7','8','46','41','0','Tracker\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109923','2','4','2','18939','3','8','45','40','0','Tracker\'s Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109924','2','4','2','18934','5','8','48','43','0','Tracker\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109925','2','4','2','18938','9','8','44','39','0','Tracker\'s Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109926','2','4','3','25930','8','5','43','38','0','Brigade Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109927','2','4','3','25931','9','5','42','37','0','Brigade Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109928','2','4','3','25932','5','5','45','40','0','Brigade Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109929','2','4','1','25938','16','7','41','36','0','Brigade Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109930','2','4','3','25933','10','5','43','38','0','Brigade Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109931','2','4','3','25928','6','5','43','38','0','Brigade Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109932','2','4','3','25937','1','5','44','39','0','Brigade Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109933','2','4','3','25934','7','5','45','40','0','Brigade Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109934','2','4','3','25935','3','5','44','39','0','Brigade Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109935','2','4','6','18819','14','1','45','40','4','Embossed Plate Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109936','2','4','1','28010','8','7','49','44','0','Abjurer\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109937','2','4','1','16936','9','7','48','43','0','Abjurer\'s Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109938','2','4','1','15040','16','7','48','43','0','Abjurer\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109939','2','4','1','17130','10','7','49','44','0','Abjurer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109940','2','4','1','27799','1','7','50','45','0','Abjurer\'s Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109941','2','4','1','27796','3','7','49','44','0','Abjurer\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109942','2','4','1','14613','7','7','50','45','0','Abjurer\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109943','2','4','1','27800','20','7','53','48','0','Abjurer\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109944','2','4','0','27801','23','2','53','48','7','Abjurer\'s Crystal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109945','2','4','1','13664','6','7','48','43','0','Abjurer\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109946','2','4','1','28972','5','7','53','48','0','Abjurer\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109947','2','4','2','14702','6','8','48','43','0','Chieftain\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109948','2','4','2','18944','8','8','49','44','0','Chieftain\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109949','2','4','2','18945','9','8','48','43','0','Chieftain\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109950','2','4','2','18943','5','8','53','48','0','Chieftain\'s Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109951','2','4','1','23018','16','7','47','42','0','Chieftain\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109952','2','4','2','18946','10','8','49','44','0','Chieftain\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109953','2','4','2','11275','1','8','50','45','0','Chieftain\'s Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109954','2','4','2','18947','7','8','51','46','0','Chieftain\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109955','2','4','2','18951','3','8','50','45','0','Chieftain\'s Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109956','2','4','3','26181','9','5','46','41','0','Warmonger\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109957','2','4','3','26183','5','5','50','45','0','Warmonger\'s Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109958','2','4','6','26234','14','1','50','45','4','Warmonger\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109959','2','4','1','26202','16','7','45','40','0','Warmonger\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109960','2','4','3','26185','10','5','47','42','0','Warmonger\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109961','2','4','3','26180','6','5','47','42','0','Warmonger\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109962','2','4','3','26188','8','5','48','43','0','Warmonger\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109963','2','4','3','26200','1','5','48','43','0','Warmonger\'s Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109964','2','4','3','26191','7','5','49','44','0','Warmonger\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109965','2','4','3','26194','3','5','49','44','0','Warmonger\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109966','2','4','4','27348','5','6','45','40','0','Embossed Plate Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109967','2','4','4','27351','10','6','43','40','0','Embossed Plate Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109968','2','4','4','27352','6','6','42','40','0','Embossed Plate Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109969','2','4','4','27511','1','6','43','40','0','Embossed Plate Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109970','2','4','4','27354','7','6','44','40','0','Embossed Plate Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109971','2','4','4','27355','3','6','43','40','0','Embossed Plate Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109972','2','4','4','27350','9','6','42','40','0','Embossed Plate Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109973','2','4','4','27349','8','6','42','40','0','Embossed Plate Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109974','2','4','6','18815','14','1','52','47','4','Overlord\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109998','2','4','1','24352','5','7','41','36','0','Black Mageweave Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('109999','2','4','1','24354','7','7','41','36','0','Black Mageweave Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110001','2','4','1','19141','20','7','42','37','0','Black Mageweave Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110002','2','4','1','19061','7','7','42','37','0','Shadoweave Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110003','2','4','1','18835','10','7','43','38','0','Black Mageweave Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110004','2','4','1','24951','20','7','43','38','0','Shadoweave Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110007','2','4','1','19114','5','7','43','38','0','Red Mageweave Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110008','2','4','1','41463','1','7','43','38','0','White Bandit Mask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110009','2','4','1','16764','7','7','43','38','0','Red Mageweave Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110010','2','4','1','15015','7','7','44','39','0','Stormcloth Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110011','2','4','1','18889','10','7','44','39','0','Stormcloth Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110018','2','4','1','19111','10','7','45','40','0','Red Mageweave Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110019','3','4','1','18999','10','7','45','40','0','Dreamweave Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110020','2','4','1','18886','5','7','45','40','0','Stormcloth Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110021','3','4','1','18949','5','7','45','40','0','Dreamweave Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110023','2','4','1','19055','10','7','45','40','0','Shadoweave Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110024','2','4','1','18860','1','7','46','41','0','Black Mageweave Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110025','2','4','1','41842','1','7','49','44','0','Shadoweave Mask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110026','2','4','1','21154','8','7','46','41','0','Black Mageweave Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110027','2','4','1','18865','3','7','46','41','0','Black Mageweave Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110028','2','4','1','18866','3','7','47','42','0','Shadoweave Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110029','2','4','1','19113','3','7','47','42','0','Red Mageweave Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110030','2','4','1','18872','1','7','48','43','0','Admiral\'s Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110031','2','4','1','19051','8','7','48','43','0','Shadoweave Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110032','2','4','1','18877','1','7','48','43','0','Stormcloth Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110033','2','4','1','18879','1','7','48','43','0','Red Mageweave Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110034','1','4','0','13115','4','7','1','0','0','Tuxedo Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110035','1','4','1','13117','7','7','35','1','0','Tuxedo Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110036','1','4','1','13116','5','7','1','0','0','Tuxedo Jacket','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110038','2','4','1','18882','3','7','49','44','0','Stormcloth Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110039','2','4','1','13051','8','7','50','45','0','Stormcloth Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110040','1','4','1','13119','20','7','35','30','0','White Wedding Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110041','3','4','1','19000','1','7','50','45','0','Dreamweave Circlet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110042','2','4','1','14606','20','7','45','40','0','Cindercloth Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110043','2','4','1','20209','7','7','31','0','0','Pious Legwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110044','2','4','1','18933','8','7','49','44','0','Cindercloth Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110045','1','4','1','14450','7','7','7','2','0','Simple Linen Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110046','1','4','1','16853','8','7','9','4','0','Simple Linen Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110047','2','4','1','19009','7','7','15','10','0','Simple Kilt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110048','2','4','1','18914','7','7','24','14','0','Colorful Kilt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110049','2','2','15','20472','13','1','25','0','3','Diabolist\'s Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110052','1','4','0','18916','4','7','40','0','0','Orange Martial Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110053','1','4','0','19142','20','7','47','0','0','Simple Black Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110054','1','4','0','18924','4','7','46','0','0','Lavender Mageweave Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110055','1','4','0','18923','4','7','47','0','0','Pink Mageweave Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110056','1','4','0','18925','4','7','43','0','0','Orange Mageweave Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110057','2','4','1','28158','5','7','55','50','0','Duskwoven Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110058','2','4','1','28151','8','7','50','45','0','Duskwoven Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110059','2','4','1','28124','9','7','50','45','0','Duskwoven Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110060','2','4','1','28125','16','7','49','44','0','Duskwoven Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110061','2','4','1','44716','1','7','51','46','0','Duskwoven Turban','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110062','2','4','1','29002','10','7','51','46','0','Duskwoven Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110063','2','4','1','28123','3','7','51','46','0','Duskwoven Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110064','2','4','1','28140','7','7','53','48','0','Duskwoven Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110065','2','4','1','28165','20','7','55','50','0','Duskwoven Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110066','2','4','1','28155','6','7','49','44','0','Duskwoven Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110067','2','4','2','19019','6','8','49','44','0','Righteous Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110068','2','4','2','19013','8','8','51','46','0','Righteous Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110069','2','4','2','19014','9','8','49','44','0','Righteous Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110070','2','4','2','19012','5','8','55','50','0','Righteous Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110071','2','4','1','23060','16','7','49','44','0','Righteous Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110072','2','4','2','19017','10','8','51','46','0','Righteous Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110073','2','4','2','21309','1','8','52','47','0','Righteous Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110074','2','4','2','19018','7','8','53','48','0','Righteous Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110075','2','4','2','19020','3','8','51','46','0','Righteous Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110076','2','4','3','19725','9','5','49','44','0','Lord\'s Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110077','2','4','3','26327','5','5','53','48','0','Lord\'s Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110078','2','4','6','20972','14','1','53','48','4','Lord\'s Crest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110079','2','4','1','26331','16','7','48','43','0','Lord\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110080','2','4','3','26328','10','5','50','45','0','Lord\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110081','2','4','3','19718','6','5','50','45','0','Lord\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110082','2','4','3','26326','8','5','51','46','0','Lord\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110083','2','4','3','26330','1','5','51','46','0','Lord\'s Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110084','2','4','3','19720','7','5','52','47','0','Lord\'s Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110085','2','4','3','26329','3','5','52','47','0','Lord\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110086','2','4','4','27363','5','6','49','44','0','Gothic Plate Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110087','2','4','4','27364','10','6','46','41','0','Gothic Plate Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110088','2','4','4','27365','6','6','45','40','0','Gothic Plate Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110089','2','4','4','27370','8','6','45','40','0','Gothic Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110090','2','4','4','27366','1','6','46','41','0','Gothic Plate Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110091','2','4','4','27367','7','6','47','42','0','Gothic Plate Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110092','2','4','4','27371','3','6','47','42','0','Gothic Plate Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110093','2','4','6','27432','14','1','54','49','4','Revenant Deflector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110094','2','4','4','27368','9','6','45','40','0','Gothic Plate Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110095','2','4','1','27600','8','7','56','51','0','Councillor\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110096','2','4','1','27601','9','7','54','49','0','Councillor\'s Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110097','2','4','1','27606','1','7','57','52','0','Councillor\'s Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110098','2','4','1','27607','16','7','53','48','0','Councillor\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110099','2','4','1','27602','10','7','55','50','0','Councillor\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110100','2','4','1','27605','3','7','57','52','0','Councillor\'s Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110101','2','4','1','27598','7','7','58','53','0','Councillor\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110102','2','4','1','27609','20','7','59','54','0','Councillor\'s Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110103','2','4','1','27614','6','7','54','49','0','Councillor\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110104','2','4','1','27599','5','7','59','54','0','Councillor\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110105','2','4','2','27716','5','8','60','55','0','Wanderer\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110106','2','4','2','27718','8','8','56','51','0','Wanderer\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110107','2','4','2','27719','9','8','54','49','0','Wanderer\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110108','2','4','1','27721','16','7','53','48','0','Wanderer\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110109','2','4','2','27717','6','8','54','49','0','Wanderer\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110110','2','4','2','27726','10','8','55','50','0','Wanderer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110111','2','4','2','28590','1','8','57','52','0','Wanderer\'s Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110112','2','4','2','27731','7','8','58','53','0','Wanderer\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110113','2','4','2','27733','3','8','57','52','0','Wanderer\'s Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110118','2','4','3','26291','5','5','58','53','0','Ornate Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110119','2','4','3','26297','8','5','57','52','0','Ornate Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110120','2','4','1','26304','16','7','53','48','0','Ornate Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110121','2','4','3','26293','10','5','56','51','0','Ornate Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110122','2','4','3','26295','6','5','55','50','0','Ornate Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110123','2','4','3','26303','1','5','57','52','0','Ornate Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110124','2','4','3','19708','7','5','57','52','0','Ornate Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110125','2','4','3','26301','3','5','56','51','0','Ornate Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110126','2','4','3','26289','9','5','54','49','0','Ornate Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110127','2','4','4','27426','9','6','49','44','0','Revenant Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110128','2','4','4','27427','5','6','54','49','0','Revenant Chestplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110129','2','4','4','27428','10','6','50','45','0','Revenant Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110130','2','4','4','27429','6','6','50','45','0','Revenant Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110131','2','4','4','27425','8','6','50','45','0','Revenant Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110132','2','4','4','19759','1','6','51','46','0','Revenant Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110133','2','4','4','27430','7','6','52','47','0','Revenant Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110134','2','4','4','27431','3','6','51','46','0','Revenant Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110135','2','4','1','27628','5','7','64','59','0','High Councillor\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110136','2','4','1','27630','9','7','60','55','0','High Councillor\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110137','2','4','1','27633','8','7','61','56','0','High Councillor\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110138','2','4','1','27631','16','7','59','54','0','High Councillor\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110139','2','4','1','28852','1','7','62','57','0','High Councillor\'s Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110140','2','4','1','27639','10','7','61','56','0','High Councillor\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110141','2','4','1','27629','7','7','63','58','0','High Councillor\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110142','2','4','1','27640','3','7','62','57','0','High Councillor\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110143','2','4','1','27645','20','7','64','59','0','High Councillor\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110144','2','4','1','27647','6','7','60','55','0','High Councillor\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110145','2','4','2','18974','6','8','59','54','0','Mighty Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110146','2','4','2','27741','8','8','61','56','0','Mighty Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110147','2','4','2','27740','9','8','60','55','0','Mighty Armsplints','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110148','2','4','1','27743','16','7','58','53','0','Mighty Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110149','2','4','2','27745','10','8','61','56','0','Mighty Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110150','2','4','2','27746','1','8','62','57','0','Mighty Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110151','2','4','2','27739','5','8','64','59','0','Mighty Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110152','2','4','2','18962','7','8','63','58','0','Mighty Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110153','2','4','2','27748','3','8','62','57','0','Mighty Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110154','2','4','3','26127','6','5','61','56','0','Mercurial Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110155','2','4','3','26129','8','5','61','56','0','Mercurial Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110156','2','4','3','26122','9','5','60','55','0','Mercurial Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110157','2','4','3','26123','5','5','64','59','0','Mercurial Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110158','2','4','6','26152','14','1','64','59','4','Mercurial Guard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110159','2','4','1','26141','16','7','59','54','0','Mercurial Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110160','2','4','3','26139','1','5','62','57','0','Mercurial Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110161','2','4','3','26125','10','5','61','56','0','Mercurial Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110162','2','4','3','26130','7','5','63','58','0','Mercurial Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110163','2','4','3','23490','3','5','62','57','0','Mercurial Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110164','2','4','4','27407','5','6','58','53','0','Templar Chestplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110165','2','4','4','29014','10','6','55','50','0','Templar Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110166','2','4','4','27411','6','6','54','49','0','Templar Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110167','2','4','4','27405','8','6','55','50','0','Templar Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110168','2','4','4','27408','1','6','56','51','0','Templar Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110169','2','4','4','27413','7','6','57','52','0','Templar Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110170','2','4','4','27414','3','6','56','51','0','Templar Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110171','2','4','4','27406','9','6','54','49','0','Templar Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110172','2','4','1','28109','3','7','55','50','0','Mystical Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110173','2','4','1','28082','9','7','53','48','0','Mystical Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110174','2','4','1','23136','16','7','52','47','0','Mystical Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110175','2','4','1','44717','1','7','55','50','0','Mystical Headwrap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110176','2','4','1','28083','10','7','54','49','0','Mystical Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110177','2','4','1','28084','7','7','56','51','0','Mystical Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110178','2','4','1','28112','20','7','58','53','0','Mystical Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110179','2','4','1','28080','8','7','54','49','0','Mystical Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110180','2','4','1','28079','6','7','52','47','0','Mystical Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110181','2','4','1','28078','5','7','58','53','0','Mystical Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110182','2','4','2','19002','5','8','58','53','0','Swashbuckler\'s Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110183','2','4','2','6762','8','8','54','49','0','Swashbuckler\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110184','2','4','2','4382','9','8','52','47','0','Swashbuckler\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110185','2','4','1','23042','16','7','51','46','0','Swashbuckler\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110186','2','4','2','19005','10','8','53','48','0','Swashbuckler\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110187','2','4','2','27809','1','8','55','50','0','Swashbuckler\'s Eyepatch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110188','2','4','2','17137','7','8','56','51','0','Swashbuckler\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110189','2','4','2','19008','3','8','55','50','0','Swashbuckler\'s Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110190','2','4','2','19001','6','8','52','47','0','Swashbuckler\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110191','2','4','3','26155','9','5','51','46','0','Crusader\'s Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110192','2','4','3','26160','8','5','53','48','0','Crusader\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110193','2','4','3','26156','5','5','55','50','0','Crusader\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110194','2','4','1','26173','16','7','50','45','0','Crusader\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110195','2','4','6','26176','14','1','55','50','4','Crusader\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110196','2','4','3','26162','10','5','52','47','0','Crusader\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110197','2','4','3','26158','6','5','52','47','0','Crusader\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110198','2','4','3','26172','1','5','53','48','0','Crusader\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110199','2','4','3','26163','7','5','54','49','0','Crusader\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110200','2','4','3','26164','3','5','53','48','0','Crusader\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110201','2','4','4','27400','8','6','48','43','0','Overlord\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110202','2','4','4','27402','9','6','48','43','0','Overlord\'s Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110203','2','4','4','27397','5','6','52','47','0','Overlord\'s Chestplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110204','2','4','6','27388','14','1','55','50','4','Heavy Lamellar Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110205','2','4','4','27398','10','6','49','44','0','Overlord\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110206','2','4','4','27399','6','6','48','43','0','Overlord\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110207','2','4','4','27404','1','6','49','44','0','Overlord\'s Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110208','2','4','4','27401','7','6','50','45','0','Overlord\'s Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110209','2','4','4','27403','3','6','50','45','0','Overlord\'s Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110210','2','4','1','27867','3','7','60','55','0','Elegant Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110211','2','4','1','24291','8','7','59','54','0','Elegant Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110212','2','4','1','15214','16','7','57','52','0','Elegant Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110213','2','4','1','27870','9','7','58','53','0','Elegant Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110214','2','4','1','27868','10','7','59','54','0','Elegant Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110215','2','4','1','28992','20','7','62','57','0','Elegant Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110216','2','4','1','27842','6','7','58','53','0','Elegant Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110217','2','4','1','25198','7','7','61','56','0','Elegant Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110218','2','4','1','27866','5','7','62','57','0','Elegant Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110219','2','4','1','28851','1','7','60','55','0','Elegant Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110220','2','4','2','18977','5','8','63','58','0','Nightshade Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110221','2','4','2','18980','6','8','58','53','0','Nightshade Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110222','2','4','2','18979','8','8','59','54','0','Nightshade Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110223','2','4','2','18978','9','8','58','53','0','Nightshade Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110224','2','4','1','23048','16','7','57','52','0','Nightshade Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110225','2','4','2','18981','10','8','59','54','0','Nightshade Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110226','2','4','2','18985','1','8','61','56','0','Nightshade Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110227','2','4','2','18982','7','8','62','57','0','Nightshade Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110228','2','4','2','18983','3','8','60','55','0','Nightshade Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110229','2','4','3','26265','9','5','56','51','0','Engraved Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110230','2','4','3','26267','5','5','60','55','0','Engraved Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110231','2','4','1','26278','16','7','55','50','0','Engraved Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110232','2','4','3','26269','10','5','58','53','0','Engraved Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110233','2','4','3','26270','6','5','57','52','0','Engraved Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110234','2','4','3','26264','8','5','58','53','0','Engraved Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110235','2','4','3','26274','1','5','59','54','0','Engraved Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110236','2','4','3','26272','7','5','59','54','0','Engraved Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110237','2','4','3','26273','3','5','58','53','0','Engraved Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110238','2','4','4','27380','8','6','52','47','0','Heavy Lamellar Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110239','2','4','4','27385','9','6','51','46','0','Heavy Lamellar Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110240','2','4','4','27384','5','6','55','50','0','Heavy Lamellar Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110241','2','4','4','27387','1','6','53','48','0','Heavy Lamellar Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110242','2','4','4','27381','10','6','52','47','0','Heavy Lamellar Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110243','2','4','4','27382','6','6','51','46','0','Heavy Lamellar Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110244','2','4','4','27383','7','6','54','49','0','Heavy Lamellar Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110245','2','4','4','27386','3','6','53','48','0','Heavy Lamellar Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110246','2','4','1','27821','5','7','65','60','0','Master\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110247','2','4','1','4272','8','7','63','58','0','Master\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110248','2','4','1','16892','9','7','62','57','0','Master\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110249','2','4','1','26126','16','7','61','56','0','Master\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110250','2','4','1','27824','1','7','63','58','0','Master\'s Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110251','2','4','1','16642','10','7','63','58','0','Master\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110252','2','4','1','27822','7','7','64','59','0','Master\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110253','2','4','1','27823','3','7','63','58','0','Master\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110254','2','4','1','28479','20','7','65','60','0','Master\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110255','2','4','1','27830','6','7','62','57','0','Master\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110256','2','4','2','27847','9','8','61','56','0','Adventurer\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110257','2','4','2','27844','8','8','62','57','0','Adventurer\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110258','2','4','1','27850','16','7','60','55','0','Adventurer\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110259','2','4','2','27846','6','8','62','57','0','Adventurer\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110260','2','4','2','27845','10','8','63','58','0','Adventurer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110261','2','4','2','29051','1','8','63','58','0','Adventurer\'s Bandana','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110262','2','4','2','27843','7','8','64','59','0','Adventurer\'s Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110263','2','4','2','27849','3','8','63','58','0','Adventurer\'s Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110264','2','4','2','8664','5','8','65','60','0','Adventurer\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110265','2','4','3','26239','9','5','62','57','0','Masterwork Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110266','2','4','3','26241','5','5','65','60','0','Masterwork Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110267','2','4','1','26259','16','7','61','56','0','Masterwork Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110268','2','4','3','26244','10','5','63','58','0','Masterwork Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110269','2','4','3','26245','6','5','62','57','0','Masterwork Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110270','2','4','3','26237','8','5','63','58','0','Masterwork Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110271','2','4','6','27806','14','1','65','60','4','Masterwork Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110272','2','4','3','27804','1','5','63','58','0','Masterwork Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110273','2','4','3','26248','7','5','64','59','0','Masterwork Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110274','2','4','3','27805','3','5','63','58','0','Masterwork Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110275','2','4','4','27416','5','6','60','55','0','Emerald Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110276','2','4','4','27419','8','6','56','51','0','Emerald Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110277','2','4','4','29003','10','6','57','52','0','Emerald Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110278','2','4','4','27418','6','6','55','50','0','Emerald Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110279','2','4','4','27423','1','6','58','53','0','Emerald Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110280','2','4','4','13206','7','6','59','54','0','Emerald Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110281','2','4','4','27422','3','6','58','53','0','Emerald Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110282','2','4','4','27420','9','6','56','51','0','Emerald Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110287','2','4','1','16470','3','7','26','21','0','Greenweave Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110288','2','4','1','18976','1','7','31','26','0','Sage\'s Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110289','2','4','1','27862','1','7','32','27','0','Durable Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110298','2','4','0','9832','11','5','30','25','0','Gnomeregan Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110299','2','4','0','9853','2','3','31','26','0','Gnomeregan Amulet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110328','3','4','3','19049','5','5','39','34','0','Scarlet Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110329','2','4','3','27951','6','5','37','32','0','Scarlet Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110330','3','4','3','3519','7','5','43','38','0','Scarlet Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110331','2','4','3','15816','10','5','38','33','0','Scarlet Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110332','3','4','3','28383','8','5','35','30','0','Scarlet Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110333','2','4','3','28382','9','5','36','31','0','Scarlet Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110358','2','4','3','28156','9','5','36','0','0','Duracin Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110359','2','4','1','19917','8','7','36','0','0','Everlast Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110362','2','4','6','20910','14','1','58','53','4','Ornate Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110363','2','4','6','26283','14','1','60','55','4','Engraved Wall','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110364','2','4','6','27415','14','1','58','53','4','Templar Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110365','2','4','6','27803','14','1','59','54','4','Emerald Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110366','2','4','6','20831','14','1','63','58','4','Demon Guard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110367','2','4','6','20971','14','1','65','60','4','Hyperion Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110368','2','4','4','26351','5','6','62','57','0','Imbued Plate Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110369','2','4','4','26352','10','6','58','53','0','Imbued Plate Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110370','2','4','4','26353','6','6','57','52','0','Imbued Plate Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110371','2','4','4','26354','8','6','58','53','0','Imbued Plate Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110372','2','4','4','26365','1','6','59','54','0','Imbued Plate Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110373','2','4','4','26355','7','6','61','56','0','Imbued Plate Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110374','2','4','4','26364','3','6','59','54','0','Imbued Plate Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110375','2','4','4','26363','9','6','57','52','0','Imbued Plate Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110376','2','4','4','26333','8','6','60','55','0','Commander\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110377','2','4','4','26362','9','6','59','54','0','Commander\'s Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110378','2','4','4','26332','5','6','63','58','0','Commander\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110379','2','4','4','27749','1','6','61','56','0','Commander\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110380','2','4','4','26334','10','6','60','55','0','Commander\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110381','2','4','4','26335','6','6','59','54','0','Commander\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110382','2','4','4','26336','7','6','62','57','0','Commander\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110383','2','4','4','26337','3','6','61','56','0','Commander\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110384','2','4','4','19844','5','6','65','60','0','Hyperion Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110385','2','4','4','26341','8','6','62','57','0','Hyperion Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110386','2','4','4','26339','10','6','62','57','0','Hyperion Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110387','2','4','4','26340','6','6','61','56','0','Hyperion Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110388','2','4','4','26257','1','6','63','58','0','Hyperion Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110389','2','4','4','19843','7','6','64','59','0','Hyperion Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110390','2','4','4','26342','3','6','63','58','0','Hyperion Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110391','2','4','4','26360','9','6','60','55','0','Hyperion Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110399','3','4','2','9123','5','8','24','19','0','Blackened Defias Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110400','2','4','2','27947','7','8','18','13','0','Blackened Defias Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110401','2','4','2','27946','10','8','18','13','0','Blackened Defias Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110402','2','4','2','21903','8','8','18','13','0','Blackened Defias Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110403','3','4','2','14389','6','8','22','17','0','Blackened Defias Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110404','2','4','1','27854','6','7','30','25','0','Durable Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110405','1','4','2','17195','3','8','22','17','0','Bandit Shoulders','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110406','2','4','2','28173','1','8','32','27','0','Scaled Leather Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110407','1','4','3','25777','3','5','21','16','0','Raider\'s Shoulderpads','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110408','2','4','3','27774','1','5','32','27','0','Banded Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110409','2','4','3','27771','8','5','32','27','0','Banded Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110410','3','4','2','28385','7','8','23','18','0','Leggings of the Fang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110411','3','4','2','27949','8','8','23','18','0','Footpads of the Fang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110412','3','4','2','28384','6','8','21','16','0','Belt of the Fang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110413','3','4','2','19125','10','8','19','14','0','Gloves of the Fang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110421','1','4','3','977','5','5','7','2','0','Rough Copper Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110423','2','4','3','19201','7','5','31','26','0','Silvered Bronze Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110455','2','4','0','6513','12','-1','60','0','0','Chained Essence of Eranikus','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110461','2','4','1','19314','9','7','45','0','0','Shadowy Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110462','2','4','1','19313','6','7','47','0','0','Shadowy Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110499','2','4','1','19397','1','7','35','0','0','Bright-Eye Goggles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110500','2','4','1','19399','1','7','41','0','0','Fire Goggles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110501','2','4','1','19402','1','7','44','0','0','Catseye Ultra Goggles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110502','2','4','1','19409','1','7','43','0','0','Spellpower Goggles Xtreme','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110503','2','4','1','22423','1','7','46','0','0','Rose Colored Goggles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110504','3','4','1','19563','1','7','49','0','0','Green Lens','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110506','2','4','1','23161','1','7','46','0','0','Deepdive Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110508','2','2','3','18298','26','1','41','36','0','Mithril Blunderbuss','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110510','2','2','3','20744','26','1','44','39','0','Mithril Heavy-bore Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110515','1','4','0','19461','17','2','1','0','2','Torch of Retribution','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110518','2','4','1','23129','16','7','45','0','0','Parachute Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110542','2','4','3','20813','1','5','41','0','0','Goblin Mining Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110543','2','4','1','20814','1','7','41','0','0','Goblin Construction Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110544','1','2','4','19782','21','2','5','0','3','Thistlewood Maul','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110545','2','4','1','22420','1','7','42','0','0','Gnomish Goggles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110547','1','2','15','6472','13','1','8','0','3','Camping Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110549','2','4','1','19951','7','7','12','0','0','Rancher\'s Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110550','1','4','1','19994','10','7','12','0','0','Wooly Mittens','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110553','2','4','1','19919','5','7','11','6','0','Foreman Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110554','2','4','1','19918','7','7','11','6','0','Foreman Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110567','3','2','2','20649','15','2','38','33','0','Quillshooter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110570','3','2','1','28796','17','1','39','34','1','Manslayer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110571','3','2','4','19501','13','2','37','32','3','Ebony Boneclub','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110572','3','2','19','28747','26','2','39','34','0','Freezing Shard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110573','3','2','8','20149','17','1','37','32','1','Boneslasher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110574','3','4','1','19903','1','7','40','35','0','Corpseshroud','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110576','2','4','0','60692','12','8','50','40','0','Mithril Mechanical Dragonling','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110577','2','4','0','7397','12','8','41','0','0','Goblin Mortar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110578','3','4','1','19993','8','7','38','33','0','Thoughtcast Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110581','3','4','1','19506','5','7','40','35','0','Death\'s Head Vestment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110582','3','4','2','28654','8','8','36','31','0','Briar Tredders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110583','3','4','2','28808','5','8','39','34','0','Quillward Harness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110584','3','4','3','28685','10','5','36','31','0','Stormgale Fists','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110585','1','4','0','19507','12','8','44','0','0','Goblin Radio','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110587','1','4','0','20627','12','8','46','0','0','Goblin Bomb Dispenser','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110588','2','4','1','67049','1','7','47','0','0','Goblin Rocket Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110623','3','2','0','18391','13','1','48','43','3','Winter\'s Bite','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110624','3','2','2','25604','15','2','47','42','0','Stinging Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110625','3','2','15','20315','13','1','49','44','3','Stealthblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110626','3','2','5','19617','17','2','50','45','1','Ragehammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110627','3','2','10','20259','17','2','47','42','2','Bludgeon of the Grinning Dog','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110628','3','2','8','20189','17','1','48','43','1','Deathblow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110629','3','4','1','19950','8','7','50','45','0','Mistwalker Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110630','3','4','1','22928','1','7','51','46','0','Soulcatcher Halo','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110631','3','4','3','28800','10','5','46','41','0','Murkwater Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110632','3','4','3','28711','9','5','49','44','0','Slimescale Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110633','3','4','4','19900','7','6','51','46','0','Silvershell Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110634','3','4','0','9832','11','1','46','41','0','Mindseye Circle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110635','1','4','3','28230','7','5','5','0','0','Painted Chain Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110636','1','4','2','12415','10','8','5','0','0','Nomadic Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110637','2','4','1','14152','10','7','15','0','0','Brewer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110638','2','4','1','28209','16','7','15','0','0','Long Draping Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110645','1','4','0','20626','12','8','48','0','0','Gnomish Death Ray','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110652','3','2','1','22213','17','1','51','0','1','Will of the Mountain Giant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110653','2','4','2','9174','8','8','30','0','0','Trailblazer Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110654','2','4','1','19949','10','7','31','0','0','Jutebraid Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110655','1','4','1','20210','7','7','5','0','0','Sedgeweed Britches','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110656','1','4','3','28069','5','5','5','0','0','Barkmail Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110657','2','4','1','19991','3','7','26','0','0','Talbar Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110658','2','4','3','28238','8','5','25','0','0','Quagmire Galoshes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110659','2','4','0','2516','12','-1','57','0','0','Shard of Afrasa','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110686','3','4','6','20820','14','1','55','0','4','Aegis of Battle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110696','2','2','7','22229','13','1','60','0','3','Enchanted Azsharite Felbane Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110697','2','2','15','20570','13','1','60','0','3','Enchanted Azsharite Felbane Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110698','2','2','10','20275','17','2','60','0','2','Enchanted Azsharite Felbane Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110700','2','4','1','18832','8','7','45','0','0','Encarmine Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110701','2','4','3','28263','8','5','45','0','0','Boots of Zua\'tec','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110702','2','4','2','28273','8','8','43','0','0','Enormous Ogre Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110703','2','2','15','20297','13','1','45','0','3','Fiendish Skiv','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110704','2','2','19','28267','26','2','46','0','0','Chillnail Splinter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110705','2','4','1','19915','9','7','47','0','0','Firwillow Wristbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110706','2','4','3','28336','6','5','47','0','0','Nightscale Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110707','2','4','4','19742','8','6','52','0','0','Steelsmith Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110708','2','4','0','19786','23','3','52','0','7','Skullspell Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110709','2','4','0','28291','23','3','55','0','7','Pyrestone Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110710','3','4','0','9834','11','5','38','0','1','Dragonclaw Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110711','3','4','0','9854','2','3','44','0','0','Dragon\'s Blood Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110716','2','4','0','20625','12','8','41','0','0','Gnomish Shrink Ray','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110720','2','4','0','19662','12','8','42','0','0','Gnomish Net-o-Matic Projector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110721','2','4','2','14832','6','8','43','0','0','Gnomish Harm Prevention Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110723','1','4','0','19507','12','8','44','0','0','Gnomish Ham Radio','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110724','2','4','1','19665','8','7','45','0','0','Gnomish Rocket Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110725','1','4','0','19666','12','8','46','0','0','Gnomish Battle Chicken','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110726','2','4','1','19667','1','7','47','0','0','Gnomish Mind Control Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110727','1','4','0','20539','12','8','48','0','0','Goblin Dragon Gun','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110739','2','4','0','15422','11','5','53','0','1','Ring of Fortitude','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110740','2','4','4','28310','7','6','53','0','0','Centurion Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110741','2','4','2','42881','1','8','53','0','0','Lordrec Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110742','2','4','1','19710','7','7','51','0','0','Dragonflight Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110743','2','4','3','28143','1','5','51','0','0','Drakefire Headguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110744','2','2','0','19130','13','1','51','0','3','Axe of the Ebon Drake','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110745','2','4','2','28330','3','8','50','0','0','Kaylari Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110746','2','4','4','28343','9','6','50','0','0','Runesteel Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110747','2','4','1','19992','6','7','41','0','0','Teacher\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110748','2','4','2','4385','8','8','41','0','0','Wanderlust Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110749','3','4','4','19728','1','6','54','0','0','Avenguard Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110750','3','2','15','20569','13','1','54','0','3','Lifeforce Dirk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110751','3','4','1','19920','1','7','54','0','0','Gemburst Circlet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110758','3','2','8','19779','17','1','42','35','1','X\'caliboar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110760','3','4','2','28683','10','8','39','34','0','Swine Fists','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110761','3','2','15','20572','13','1','44','37','3','Coldrage Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110762','3','4','1','19953','20','7','44','37','0','Robes of the Lich','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110763','3','4','4','28783','1','6','44','40','0','Icemetal Barbute','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110764','3','4','3','28710','5','5','44','37','0','Deathchill Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110765','3','4','2','28688','10','8','43','37','0','Bonefingers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110766','3','2','19','21027','26','2','40','35','0','Plaguerot Sprig','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110767','3','4','6','20974','14','1','42','37','4','Savage Boar\'s Guard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110768','3','4','3','28684','6','5','42','37','0','Boar Champion\'s Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110769','3','4','0','19785','2','3','41','36','0','Glowing Eye of Mordresh','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110770','3','4','0','19786','23','-1','41','36','7','Mordresh\'s Lifeless Skull','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110771','3','4','1','19910','6','7','41','36','0','Deathmage Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110772','3','2','0','8466','13','1','41','36','3','Glutton\'s Cleaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110774','3','4','2','28744','3','8','42','37','0','Fleshhide Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110775','3','4','4','28694','5','6','42','40','0','Carapace of Tuten\'kash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110776','3','4','1','22994','16','7','42','35','0','Silky Spider Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110777','3','4','2','28595','10','8','42','37','0','Arachnid Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110778','2','4','0','1399','2','3','60','0','0','Necklace of Sanctuary','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110779','2','4','0','16452','12','4','60','0','0','Demon\'s Blood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110780','2','4','0','9837','11','5','55','0','1','Mark of Hakkar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110781','2','4','2','18470','5','8','55','0','0','Hakkari Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110782','2','4','1','19930','1','7','55','0','0','Hakkari Shroud','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110783','3','4','2','19995','3','8','52','47','0','Atal\'ai Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110784','3','4','3','19793','5','5','52','47','0','Atal\'ai Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110785','3','4','2','14776','7','8','52','47','0','Atal\'ai Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110786','3','4','3','19794','8','5','52','47','0','Atal\'ai Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110787','3','4','1','19796','10','7','52','47','0','Atal\'ai Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110788','3','4','4','19996','6','6','52','47','0','Atal\'ai Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110795','3','4','0','9834','11','5','54','49','1','Drakeclaw Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110796','3','4','0','21602','23','3','54','49','7','Drakestone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110797','3','2','7','20030','13','1','53','48','3','Firebreather','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110798','3','4','4','28640','6','5','51','46','0','Atal\'alarion\'s Tusk Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110799','3','2','6','22242','17','1','51','46','2','Headspike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110800','3','4','2','19806','9','8','52','47','0','Darkwater Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110801','3','4','2','19912','8','8','52','47','0','Slitherscale Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110802','3','4','1','18968','16','7','52','47','0','Wingveil Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110803','3','2','7','20035','13','1','54','49','3','Blade of the Wretched','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110804','3','2','4','19892','13','2','54','49','3','Fist of the Damned','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110805','3','2','0','19127','13','1','54','49','3','Eater of the Dead','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110806','3','4','1','19810','5','7','55','50','0','Vestments of the Atal\'ai Prophet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110807','3','4','1','19812','7','7','55','50','0','Kilt of the Atal\'ai Prophet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110808','3','4','1','19813','10','7','55','50','0','Gloves of the Atal\'ai Prophet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110820','2','4','1','19932','6','7','15','0','0','Jackseed Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110821','2','4','1','28298','16','7','15','0','0','Sower\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110823','3','2','7','20086','13','1','44','0','3','Vanquisher\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110824','3','4','0','9859','2','3','44','0','0','Amberglow Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110826','2','2','10','20293','17','2','48','0','2','Staff of Lore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110827','2','4','2','28205','5','8','48','0','0','Surveyor\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110828','3','2','15','20273','13','1','56','50','3','Dire Nail','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110829','3','4','0','6494','2','3','56','50','0','The Dragon\'s Eye','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110833','3','4','3','19838','1','5','56','50','0','Horns of Eranikus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110835','3','4','6','19840','14','1','56','50','4','Crest of Supremacy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110836','3','2','19','20788','26','2','56','50','0','Rod of Corrosion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110837','3','2','0','19841','13','1','56','50','3','Tooth of Eranikus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110838','3','2','4','19869','13','2','54','49','3','Might of Hakkar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110842','3','4','2','22427','7','8','54','49','0','Windscale Sarong','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110843','3','4','1','22995','16','7','54','49','0','Featherskin Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110844','3','2','10','20258','17','2','54','49','2','Spire of Hakkar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110845','3','4','4','19893','5','6','54','49','0','Warrior\'s Embrace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110846','3','4','3','19898','8','5','54','49','0','Bloodshot Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110847','4','2','7','20571','13','1','57','52','3','Dragon\'s Call','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('110919','2','4','1','20476','10','7','18','0','0','Apothecary Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111086','3','2','7','20031','21','1','50','45','3','Jang\'thraze the Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111118','3','4','0','20769','11','3','47','40','0','Archaedic Stone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111120','2','2','4','28262','13','2','55','0','3','Belgrom\'s Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111121','3','2','7','20094','13','1','26','21','3','Darkwater Talwar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111122','2','4','0','21115','12','4','50','0','0','Carrot on a Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111123','3','4','1','14590','7','7','55','0','0','Rainstrider Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111124','3','4','3','28196','1','5','55','0','0','Helm of Exile','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111187','1','4','1','25939','9','7','5','0','0','Stemleaf Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111189','1','4','1','28178','20','7','5','0','0','Woodland Robes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111190','1','4','1','28188','10','7','5','0','0','Viny Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111191','1','4','1','28167','8','7','10','0','0','Farmer\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111192','1','4','1','4685','10','7','5','0','0','Outfitter Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111193','2','4','2','19002','5','8','57','0','0','Blazewind Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111194','2','4','3','28237','5','5','57','0','0','Prismscale Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111195','2','4','4','28185','5','6','57','0','0','Warforged Chestplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111196','2','4','0','9859','2','3','57','0','0','Mindburst Medallion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111229','2','4','3','28306','6','5','32','0','0','Brightscale Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111262','3','4','0','28337','23','3','44','0','7','Orb of Lorica','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111263','3','2','19','25077','26','2','40','0','0','Nether Force Wand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111265','2','2','5','28629','17','2','42','0','1','Cragwood Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111287','2','2','19','21096','26','2','15','5','0','Lesser Magic Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111288','2','2','19','21097','26','2','23','13','0','Greater Magic Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111289','2','2','19','21098','26','2','31','26','0','Lesser Mystic Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111290','2','2','19','21101','26','2','35','30','0','Greater Mystic Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111302','3','4','0','6515','12','5','52','47','0','Uther\'s Strength','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111303','2','2','2','8104','15','2','16','11','0','Fine Shortbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111304','2','2','2','20550','15','2','19','14','0','Fine Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111305','2','2','2','21111','15','2','35','30','0','Dense Shortbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111306','2','2','2','20713','15','2','32','27','0','Sturdy Recurve','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111307','2','2','2','21112','15','2','47','42','0','Massive Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111308','2','2','2','21113','15','2','49','44','0','Sylvan Shortbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111310','3','4','1','5116','3','7','47','40','0','Flameseer Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111311','3','4','1','28731','16','7','46','40','0','Emberscale Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111364','1','4','0','21338','19','-1','1','0','0','Tabard of Stormwind','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111411','0','2','4','6569','21','2','28','23','3','Large Bear Bone','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111469','2','4','1','14601','9','7','46','0','0','Bloodband Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111475','1','4','1','28181','16','7','5','0','0','Wine-stained Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111502','2','4','2','28217','3','8','46','0','0','Loreskin Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111508','1','4','1','22034','8','7','1','0','0','Gamemaster\'s Slippers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111522','1','4','0','21608','23','-1','0','0','0','Silver Totem of Aquementas','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111603','3','2','13','23270','21','1','51','46','7','Vilerend Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111604','3','4','4','21580','5','6','59','54','0','Dark Iron Plate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111605','2','4','4','21574','3','6','58','53','0','Dark Iron Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111606','2','4','3','21577','5','5','56','51','0','Dark Iron Mail','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111607','3','2','1','22218','17','1','57','52','1','Dark Iron Sunderer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111608','3','2','5','25046','17','2','55','50','1','Dark Iron Pulverizer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111623','3','4','1','26137','16','7','52','47','0','Spritecaster Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111624','3','4','1','28788','3','7','52','47','0','Kentic Amice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111625','3','4','0','21595','23','3','53','48','7','Enthralled Sphere','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111626','3','4','1','26278','16','7','53','48','0','Blackveil Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111627','3','4','3','28658','8','5','53','48','0','Fleetfoot Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111628','3','2','2','28780','15','2','53','48','0','Houndmaster\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111629','3','2','3','28781','26','1','53','48','0','Houndmaster\'s Rifle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111631','3','4','6','21613','14','1','52','47','4','Stoneshell Guard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111632','3','4','4','28725','3','6','52','47','0','Earthslag Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111633','3','4','4','21898','5','6','54','49','0','Spiderfang Carapace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111634','3','4','1','28741','10','7','54','49','0','Silkweb Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111635','3','2','15','28779','13','1','54','49','3','Hookfang Shanker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111662','3','4','1','28642','6','7','54','49','0','Ban\'thok Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111665','3','4','2','17263','10','8','54','49','0','Ogreseer Fists','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111669','3','4','0','9837','11','5','59','54','0','Naglering','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111675','3','4','2','18979','8','8','55','50','0','Shadefiend Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111677','3','4','1','28381','16','7','55','50','0','Graverot Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111678','3','4','4','26654','5','6','55','50','0','Carapace of Anub\'shiah','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111679','3','4','3','28820','9','5','55','50','0','Rubicund Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111684','4','2','4','23618','13','2','60','55','3','Ironfoe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111685','3','4','2','28704','3','8','55','50','0','Splinthide Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111686','3','4','2','28763','6','8','55','50','0','Girdle of Beastial Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111702','3','2','0','28765','13','1','55','50','3','Grizzle\'s Skinner','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111703','3','4','4','28686','6','6','55','50','0','Stonewall Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111722','3','4','3','28721','3','5','55','50','0','Dregmetal Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111726','4','4','3','28724','5','5','57','52','0','Savage Gladiator Chain','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111728','3','4','3','21694','7','5','57','52','0','Savage Gladiator Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111729','3','4','3','28826','1','5','57','52','0','Savage Gladiator Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111730','3','4','3','28723','10','5','57','52','0','Savage Gladiator Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111731','3','4','3','28666','8','5','57','52','0','Savage Gladiator Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111735','3','4','2','21701','1','8','57','52','0','Ragefury Eyepatch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111743','3','2','13','21714','13','1','55','50','7','Rockfist','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111744','3','2','13','21715','13','1','56','51','7','Bloodfist','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111745','3','4','4','28740','10','6','56','51','0','Fists of Phalanx','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111746','3','4','4','21717','1','6','56','51','0','Golem Skull Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111747','3','4','2','21719','20','8','53','48','0','Flamestrider Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111748','3','2','19','28807','26','2','53','48','0','Pyric Caduceus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111749','3','4','3','28722','7','5','53','48','0','Searingscale Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111750','3','2','10','21723','17','2','53','48','2','Kindling Stave','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111755','3','4','0','21725','2','3','56','51','0','Verek\'s Collar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111764','3','4','2','21753','9','8','57','52','0','Cinderhide Armsplints','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111765','3','4','3','28806','9','5','57','52','0','Pyremail Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111766','3','4','1','21755','9','7','57','52','0','Flameweave Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111767','3','4','4','21754','9','6','57','52','0','Emberplate Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111768','3','4','1','28785','9','7','57','52','0','Incendic Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111782','3','4','1','21771','3','7','57','52','0','Boreal Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111783','3','4','3','28696','6','5','57','52','0','Chillsteel Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111784','3','2','7','21773','21','1','53','48','3','Arbiter\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111785','3','4','6','18814','14','1','58','53','4','Rock Golem Bulwark','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111786','3','2','8','21775','17','1','56','51','1','Stone of the Earth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111787','3','4','4','28669','8','6','58','53','0','Shalehusk Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111802','3','4','4','19843','7','6','58','53','0','Lavacrest Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111803','3','2','5','21793','17','2','56','51','1','Force of Magma','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111805','3','2','4','28821','13','2','56','51','3','Rubidium Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111807','3','4','1','28825','6','7','58','53','0','Sash of the Burning Heart','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111808','4','4','1','28268','1','7','59','54','0','Circle of Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111809','3','2','6','22031','17','1','56','51','2','Flame Wrath','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111810','3','4','0','19767','12','-1','60','55','0','Force of Will','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111811','3','4','0','21804','12','-1','55','50','0','Smoking Heart of the Mountain','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111812','3','4','1','22997','16','7','58','53','0','Cape of the Fire Salamander','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111814','3','4','3','21805','10','5','58','53','0','Molten Fists','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111815','3','4','0','6337','12','-1','58','53','0','Hand of Justice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111816','3','2','1','22212','17','1','56','51','1','Angerforge\'s Battle Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111817','3','2','7','21809','13','1','56','51','3','Lord General\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111819','3','4','0','18725','12','-1','59','54','0','Second Wind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111820','3','4','3','28819','5','5','58','53','0','Royal Decorated Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111821','3','4','2','28623','7','8','58','53','0','Warstrife Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111822','3','4','1','28660','8','7','59','54','0','Omnicast Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111823','3','4','2','28728','7','8','59','54','0','Luminary Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111824','3','4','0','9847','11','5','54','49','0','Cyclopean Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111832','3','4','0','19764','12','-1','58','53','0','Burst of Knowledge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111839','3','4','1','21839','1','7','55','50','0','Chief Architect\'s Monocle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111840','1','4','0','21842','4','7','55','0','0','Master Builder\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111841','3','4','1','28720','7','7','55','50','0','Senior Designer\'s Pantaloons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111842','3','4','3','28792','3','5','55','50','0','Lead Surveyor\'s Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111847','1','4','1','28071','16','7','5','0','0','Battered Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111848','1','4','1','28170','6','7','5','0','0','Flax Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111849','1','4','3','9644','9','5','5','0','0','Rustmetal Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111850','1','4','1','23128','16','7','5','0','0','Short Duskbat Cape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111851','1','4','2','28249','5','8','5','0','0','Scavenger Tunic','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111852','1','4','3','19575','7','5','5','0','0','Roamer\'s Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111853','2','4','2','28241','8','8','18','0','0','Rambling Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111854','2','2','8','28245','17','1','19','0','1','Samophlange Screwdriver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111855','2','4','0','7494','23','-1','19','0','3','Tork Wrench','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111856','2','2','15','28312','13','1','45','0','3','Ceremonial Elven Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111857','2','2','10','28345','17','2','46','0','2','Sanctimonial Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111858','2','4','1','28260','16','7','45','0','0','Battlehard Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111859','2','4','0','21853','23','3','45','0','7','Jademoon Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111860','2','2','19','28108','26','2','46','0','0','Charged Lightning Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111861','2','4','3','28171','6','5','46','0','0','Girdle of Reprisal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111862','2','4','0','6486','11','5','52','0','1','White Bone Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111863','2','2','13','21855','22','1','52','0','7','White Bone Shredder','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111864','2','2','6','25632','17','1','52','0','2','White Bone Spear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111865','2','4','1','16766','8','7','53','0','0','Rancor Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111866','3','4','2','28219','6','8','55','0','0','Nagmara\'s Whipping Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111867','2','4','3','28332','10','5','53','0','0','Maddening Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111868','2','4','0','9840','11','5','53','0','1','Choking Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111869','2','4','0','9849','11','5','53','0','1','Sha\'ni\'s Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111870','2','4','0','28226','23','3','54','0','7','Oblivion Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111871','2','4','2','28253','3','8','54','0','0','Snarkshaw Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111872','2','4','4','28164','8','6','54','0','0','Eschewal Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111873','2','4','1','28325','16','7','56','0','0','Ethereal Mist Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111874','2','4','2','28313','3','8','56','0','0','Clouddrift Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111875','2','4','1','28305','9','7','54','0','0','Breezecloud Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111876','2','4','2','28233','5','8','56','0','0','Plainstalker Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111882','2','4','3','27770','7','5','56','0','0','Outrider Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111884','2','4','1','14649','3','7','33','0','0','Moonlit Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111888','2','4','1','28342','10','7','50','0','0','Quintis\' Research Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111889','2','4','4','28304','3','6','50','0','0','Bark Iron Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111902','2','2','7','22227','21','1','56','0','3','Linken\'s Sword of Mastery','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111904','2','4','0','21936','23','3','56','0','7','Spirit of Aquementas','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111905','2','4','0','22753','12','2','56','0','0','Linken\'s Boomerang','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111906','2','2','4','28075','13','2','55','0','3','Beastsmasher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111907','2','2','1','28073','17','1','55','0','1','Beastslayer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111908','2','4','1','28063','8','7','55','0','0','Archaeologist\'s Quarry Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111909','2','4','2','17121','6','8','55','0','0','Excavator\'s Utility Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111910','2','4','4','28076','7','6','55','0','0','Bejeweled Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111911','2','4','1','28198','7','7','55','0','0','Treetop Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111913','2','4','3','28132','1','5','55','0','0','Clayridge Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111915','2','4','6','18750','14','1','55','0','4','Shizzle\'s Drizzle Blocker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111916','2','4','2','28254','3','8','55','0','0','Shizzle\'s Muzzle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111917','2','4','1','28255','9','7','55','0','0','Shizzle\'s Nozzle Wiper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111918','2','4','3','28186','10','5','55','0','0','Grotslab Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111919','2','4','4','28136','8','6','55','0','0','Cragplate Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111920','3','2','0','28679','13','1','56','51','3','Wraith Scythe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111921','3','2','5','25625','17','2','57','52','1','Impervious Giant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111922','3','2','15','25609','21','1','57','52','3','Blood-etched Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111923','3','2','4','21956','21','2','57','52','3','The Hammer of Grace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111924','3','4','1','28814','20','7','60','55','0','Robes of the Royal Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111925','3','4','2','28762','1','8','57','52','0','Ghostshroud','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111926','3','4','3','28712','5','5','57','52','0','Deathdealer Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111927','3','4','4','21961','7','6','57','52','0','Legplates of the Eternal Guardian','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111928','3','4','0','21962','23','3','60','55','3','Thaurissan\'s Royal Scepter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111929','3','4','1','28736','7','7','57','52','0','Haunting Specter Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111930','3','4','1','21965','16','7','60','55','0','The Emperor\'s New Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111931','3','2','1','28719','17','1','59','54','1','Dreadforge Retaliator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111932','3','2','10','21968','17','2','59','54','2','Guiding Stave of Wisdom','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111933','3','4','0','28784','2','3','60','55','0','Imperial Jewel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111934','3','4','0','28733','11','5','61','55','0','Emperor\'s Seal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111935','3','4','0','28795','23','3','58','53','7','Magmus Stone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111936','2','4','1','28242','6','7','20','0','0','Relic Hunter Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111945','3','4','0','9840','11','5','53','48','0','Dark Iron Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111946','3','4','0','9854','2','3','52','47','0','Fire Opal Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111962','3','4','1','17229','9','7','55','0','0','Manacle Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111963','2','4','2','28232','3','8','53','0','0','Penance Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111964','2','2','4','28203','13','2','55','0','3','Swiftstrike Cudgel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111965','2','4','0','9837','11','-1','20','15','0','Quartz Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111967','2','4','0','9835','11','-1','23','18','0','Zircon Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111968','2','4','0','9836','11','-1','26','21','0','Amber Hoop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111969','2','4','0','9839','11','-1','29','24','0','Jacinth Circle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111970','2','4','0','9842','11','-1','34','29','0','Spinel Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111971','2','4','0','9840','11','-1','37','32','0','Amethyst Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111972','2','4','0','4284','11','-1','40','35','0','Carnelian Loop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111973','2','4','0','224','11','-1','43','38','0','Hematite Link','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111974','2','4','0','3666','11','-1','46','41','0','Aquamarine Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111975','2','4','0','9835','11','-1','49','44','0','Topaz Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111976','2','4','0','9834','11','-1','52','47','0','Sardonyx Knuckle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111977','2','4','0','9833','11','-1','55','50','0','Serpentine Loop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111978','2','4','0','9834','11','-1','58','53','0','Jasper Link','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111979','2','4','0','9836','11','-1','61','56','0','Peridot Circle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111980','2','4','0','9837','11','-1','64','59','0','Opal Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111981','2','4','0','3666','11','-1','20','15','0','Lead Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111982','2','4','0','9823','11','-1','23','18','0','Viridian Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111983','2','4','0','9837','11','-1','26','21','0','Chrome Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111984','2','4','0','9832','11','-1','29','24','0','Cobalt Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111985','2','4','0','9847','11','-1','35','30','0','Cerulean Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111986','2','4','0','9849','11','-1','39','34','0','Thallium Hoop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111987','2','4','0','9840','11','-1','43','38','0','Iridium Circle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111988','2','4','0','9833','11','-1','47','42','0','Tellurium Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111989','2','4','0','9847','11','-1','51','46','0','Vanadium Loop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111990','2','4','0','9834','11','-1','55','50','0','Selenium Loop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111991','2','4','0','3666','11','-1','59','54','0','Quicksilver Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111992','2','4','0','9839','11','-1','63','58','0','Vermilion Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111993','2','4','0','9836','11','-1','22','17','0','Clay Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111994','2','4','0','9832','11','-1','25','20','0','Coral Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111995','2','4','0','9837','11','-1','28','23','0','Ivory Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111996','2','4','0','9823','11','-1','34','29','0','Basalt Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111997','2','4','0','9847','11','-1','38','33','0','Greenstone Circle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111998','2','4','0','3666','11','-1','42','37','0','Jet Loop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('111999','2','4','0','4284','11','-1','46','41','0','Lodestone Hoop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112000','2','2','1','28207','17','1','55','0','1','Limb Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112001','2','4','0','3666','11','-1','50','45','0','Onyx Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112002','2','4','0','9834','11','-1','54','49','0','Marble Circle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112004','2','4','0','3666','11','-1','58','53','0','Obsidian Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112005','2','4','0','3666','11','-1','62','57','0','Granite Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112006','2','4','0','9833','11','-1','22','17','0','Meadow Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112007','2','4','0','4284','11','-1','25','20','0','Prairie Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112008','2','4','0','224','11','-1','28','23','0','Savannah Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112009','2','4','0','9837','11','-1','33','28','0','Tundra Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112010','2','4','0','9834','11','-1','37','32','0','Fen Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112011','2','4','0','9833','11','-1','41','36','0','Forest Hoop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112012','2','4','0','9847','11','-1','45','40','0','Marsh Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112013','2','4','0','9836','11','-1','49','44','0','Desert Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112014','2','4','0','9835','11','-1','53','48','0','Arctic Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112015','2','4','0','9833','11','-1','57','52','0','Swamp Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112016','2','4','0','9847','11','-1','61','56','0','Jungle Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112017','2','4','0','9839','11','-1','65','60','0','Prismatic Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112018','2','4','3','28135','1','5','54','0','0','Conservator Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112019','2','4','0','6539','2','3','32','27','0','Cerulean Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112020','2','4','0','9860','2','3','36','31','0','Thallium Choker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112021','2','4','4','23483','8','6','54','0','0','Shieldplate Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112022','2','4','0','9658','2','3','41','36','0','Iridium Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112023','2','4','0','9853','2','3','45','40','0','Tellurium Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112024','2','4','0','9859','2','3','50','45','0','Vanadium Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112025','2','4','0','9852','2','3','54','49','0','Selenium Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112026','2','4','0','9657','2','3','59','54','0','Quicksilver Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112027','2','4','0','9858','2','3','63','58','0','Vermilion Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112028','2','4','0','9857','2','3','32','27','0','Basalt Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112029','2','4','0','6539','2','3','35','30','0','Greenstone Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112030','2','4','0','15420','2','3','39','34','0','Jet Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112031','2','4','0','9859','2','3','44','39','0','Lodestone Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112032','2','4','0','15420','2','3','48','43','0','Onyx Choker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112034','2','4','0','9859','2','3','53','48','0','Marble Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112035','2','4','0','15420','2','3','57','52','0','Obsidian Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112036','2','4','0','9860','2','3','62','57','0','Granite Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112038','2','4','0','224','11','5','54','0','0','Lagrave\'s Seal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112039','2','4','0','9657','2','3','33','28','0','Tundra Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112040','2','4','0','6539','2','3','38','33','0','Forest Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112041','2','4','2','28429','7','8','54','0','0','Windshear Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112042','2','4','0','9852','2','3','42','37','0','Marsh Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112043','2','4','0','9857','2','3','47','42','0','Desert Choker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112044','2','4','0','9859','2','3','51','46','0','Arctic Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112045','2','4','0','15420','2','3','56','51','0','Swamp Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112046','2','4','0','6539','2','3','60','55','0','Jungle Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112047','2','4','0','9852','2','3','30','25','0','Spectral Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112048','2','4','0','9657','2','3','65','60','0','Prismatic Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112049','2','4','3','28244','5','5','53','0','0','Splintsteel Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112050','2','4','1','4272','8','7','54','0','0','Hazecover Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112051','2','4','3','28090','10','5','54','0','0','Brazen Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112052','2','4','0','9837','11','5','21','16','0','Ring of the Moon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112053','2','4','0','3666','11','5','21','16','0','Volcanic Rock Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112054','2','4','0','9834','11','5','24','19','0','Demon Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112055','2','4','0','9840','11','5','52','47','0','Stardust Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112056','2','4','0','9832','11','5','56','51','0','Ring of the Heavens','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112057','2','4','0','9836','11','5','60','55','0','Dragonscale Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112058','2','4','0','3666','11','5','64','59','0','Demonic Bone Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112059','3','4','0','4841','2','3','58','0','0','Conqueror\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112061','2','2','7','28086','13','1','60','0','3','Blade of Reckoning','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112062','2','2','15','25611','13','1','60','0','3','Skilled Fighting Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112064','1','4','1','22036','1','7','1','0','0','Gamemaster Hood','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112065','2','4','0','22037','12','2','60','0','0','Ward of the Elements','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112066','2','4','1','28251','16','7','58','0','0','Shaleskin Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112082','2','4','2','28176','3','8','58','0','0','Wyrmhide Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112083','2','4','1','28190','6','7','58','0','0','Valconian Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112102','2','4','0','9840','11','5','54','0','1','Ring of the Aristocrat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112103','3','4','0','23717','2','5','63','58','0','Star of Mystaria','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112104','2','4','2','28095','5','8','60','0','0','Brindlethorn Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112105','3','4','3','28234','7','5','56','0','0','Pridemail Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112106','2','4','4','28089','5','6','60','0','0','Boulderskin Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112107','2','4','1','28182','7','7','60','0','0','Whispersilk Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112108','2','4','3','28070','5','5','58','0','0','Basaltscale Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112109','2','4','1','21771','3','7','58','0','0','Azure Moon Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112110','2','4','1','28240','16','7','58','0','0','Raincaster Drape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112111','2','4','4','28202','10','6','58','0','0','Lavaplate Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112112','2','4','3','28139','9','5','56','0','0','Crypt Demon Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112113','2','4','1','28210','16','7','56','0','0','Sunborne Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112114','2','4','2','28222','10','8','56','0','0','Nightfall Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112115','2','4','4','28224','6','6','56','0','0','Stalwart Clutch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112185','2','4','1','35174','1','7','60','0','0','Bloodsail Admiral\'s Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112225','1','2','20','20618','17','2','10','0','1','Blump Family Fishing Pole','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112243','3','2','6','5290','17','1','54','49','2','Smoldering Claw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112247','2','2','15','22247','13','1','32','27','3','Broad Bladed Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112248','2','2','15','22248','13','1','34','29','3','Daring Dirk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112249','2','2','1','22249','17','1','31','26','1','Merciless Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112250','2','2','1','22250','17','1','34','29','1','Midnight Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112251','2','2','10','22252','17','2','37','32','2','Big Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112252','2','2','10','28699','17','2','39','34','2','Staff of Protection','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112253','2','4','1','28690','16','7','41','36','0','Brilliant Red Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112254','2','4','1','23079','16','7','44','39','0','Well Oiled Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112255','2','4','1','4765','7','7','46','41','0','Pale Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112256','2','4','1','16764','7','7','49','44','0','Cindercloth Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112257','2','4','3','28777','6','5','42','37','0','Heavy Notched Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112258','2','4','3','22256','6','5','44','39','0','Serpent Clasp Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112259','2','2','15','4119','13','1','36','31','3','Glinting Steel Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112260','2','2','15','22258','21','1','39','34','3','Searing Golden Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112282','1','2','1','22291','17','1','2','1','1','Worn Battleaxe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112295','2','4','1','28204','7','7','15','0','0','Leggings of the People\'s Militia','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112296','2','2','19','28248','26','2','17','0','0','Spark of the People\'s Militia','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112299','1','4','1','28221','10','7','8','0','0','Netted Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112344','3','4','0','22415','11','-1','61','0','0','Seal of Ascension','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112405','2','4','4','25751','5','6','50','45','0','Thorium Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112406','2','4','4','22550','6','6','50','45','0','Thorium Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112408','2','4','4','25753','9','6','51','46','0','Thorium Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112409','2','4','4','25752','8','6','56','51','0','Thorium Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112410','2','4','4','25856','1','6','56','51','0','Thorium Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112414','2','4','4','22951','7','6','60','55','0','Thorium Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112415','2','4','3','25742','5','5','54','49','0','Radiant Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112416','2','4','3','25740','6','5','52','47','0','Radiant Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112417','2','4','3','25826','1','5','59','54','0','Radiant Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112418','2','4','3','25744','10','5','57','52','0','Radiant Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112419','2','4','3','25741','8','5','58','53','0','Radiant Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112420','2','4','3','25745','7','5','61','56','0','Radiant Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112422','2','4','4','25749','5','6','60','55','0','Imperial Plate Chest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112424','2','4','4','24514','6','6','53','47','0','Imperial Plate Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112425','2','4','4','24511','9','6','54','49','0','Imperial Plate Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112426','2','4','4','24513','8','6','59','54','0','Imperial Plate Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112427','2','4','4','24510','1','6','59','54','0','Imperial Plate Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112428','2','4','4','24509','3','6','53','47','0','Imperial Plate Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112429','2','4','4','24506','7','6','61','56','0','Imperial Plate Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112446','1','2','3','28060','26','1','5','0','0','Anvilmar Musket','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112447','1','2','2','20723','15','2','5','0','0','Thistlewood Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112448','1','2','3','28206','26','1','5','0','0','Light Hunting Rifle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112449','1','2','2','28235','15','2','5','0','0','Primitive Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112462','4','4','1','28272','20','7','55','50','0','Embrace of the Wind Serpent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112463','3','2','8','20198','17','1','53','48','1','Drakefang Butcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112464','3','4','2','28680','10','8','53','48','0','Bloodfire Talons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112465','3','4','1','22989','16','7','53','48','0','Nightfall Drape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112466','3','4','1','28190','6','7','53','48','0','Dawnspire Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112468','0','2','19','6097','26','2','53','1','0','Chilton Wand','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112469','3','2','8','22654','17','1','49','44','1','Mutilator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112470','3','4','2','22656','8','8','47','42','0','Sandstalker Ankleguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112471','3','4','0','18437','23','-1','47','42','2','Desertwalker Cane','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112522','2','4','2','28077','10','8','15','0','0','Bingles\' Flying Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112527','3','2','0','21952','13','1','53','48','3','Ribsplitter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112528','3','2','5','28673','17','2','52','47','1','The Judge\'s Gavel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112531','3','2','15','22721','13','1','51','46','3','Searing Needle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112532','3','2','10','22722','17','2','56','51','2','Spire of the Stoneshaper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112535','3','2','7','22733','13','1','54','49','3','Doomforged Straightedge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112542','3','4','1','26053','20','7','51','46','0','Funeral Pyre Vestment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112543','3','4','0','9837','11','5','60','0','0','Songstone of Ironforge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112544','3','4','0','9837','11','5','60','0','0','Thrall\'s Resolve','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112545','3','4','0','9837','11','5','60','0','0','Eye of Orgrimmar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112546','3','4','1','28637','9','7','54','49','0','Aristocratic Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112547','3','4','2','28797','10','8','56','51','0','Mar Alom\'s Grip','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112548','3','4','0','9837','11','5','60','0','0','Magni\'s Will','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112549','3','4','3','15501','1','5','52','47','0','Braincage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112550','3','4','4','28824','9','6','53','48','0','Runed Golem Shackles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112551','3','4','1','28695','16','7','56','51','0','Stoneshield Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112552','3','4','1','23111','16','7','55','50','0','Blisterbane Wrap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112553','3','4','2','28670','8','8','59','54','0','Swiftwalker Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112554','3','4','1','28771','10','7','59','54','0','Hands of the Exalted Herald','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112555','3','4','4','27829','8','6','55','50','0','Battlechaser\'s Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112556','3','4','1','22779','8','7','59','54','0','High Priestess Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112557','3','4','4','28727','3','6','59','54','0','Ebonsteel Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112582','3','2','15','28789','13','1','60','55','3','Keris of Zul\'Serak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112583','3','2','6','22792','17','1','63','58','1','Blackhand Doomsaw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112584','4','2','7','31966','13','1','78','60','3','Grand Marshal\'s Longsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112587','3','4','2','22794','1','8','63','58','0','Eye of Rend','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112588','3','4','3','22795','3','5','63','58','0','Bonespike Shoulder','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112589','3','4','1','21796','6','7','61','56','0','Dustfeather Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112590','4','2','15','25613','13','1','63','58','3','Felstriker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112592','4','2','8','22906','17','1','63','58','1','Blackblade of Shahram','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112602','3','4','6','23419','14','1','63','58','4','Draconian Deflector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112603','3','4','2','8725','5','8','61','56','0','Nightbrace Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112604','3','4','1','22833','1','7','60','55','0','Starfire Tiara','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112605','3','2','19','24107','26','2','56','51','0','Serpentine Skuller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112606','3','4','2','22837','6','8','61','56','0','Crystallized Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112608','3','4','1','28693','16','7','58','53','0','Butcher\'s Apron','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112609','3','4','1','22843','5','8','61','56','0','Polychromatic Visionwrap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112610','2','4','4','23490','3','6','60','55','0','Runic Plate Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112611','2','4','4','23486','8','6','60','55','0','Runic Plate Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112612','2','4','4','23491','1','6','61','56','0','Runic Plate Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112613','2','4','4','19730','5','6','62','57','0','Runic Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112614','2','4','4','23485','7','6','62','57','0','Runic Plate Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112615','2','4','3','22860','5','5','62','57','0','Savage Mail Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112616','2','4','3','22861','8','5','63','58','0','Savage Mail Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112617','2','4','3','22869','3','5','63','58','0','Savage Mail Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112618','3','4','4','25746','5','6','63','58','0','Enchanted Thorium Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112619','3','4','4','22882','7','6','63','58','0','Enchanted Thorium Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112620','3','4','4','22886','1','6','62','57','0','Enchanted Thorium Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112621','3','2','0','22885','13','1','59','54','3','Demonfork','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112624','3','4','3','25754','5','5','54','49','0','Wildthorn Mail','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112625','3','4','4','25827','3','6','58','53','0','Dawnbringer Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112626','3','4','1','14618','9','7','59','54','0','Funeral Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112628','3','4','4','22892','5','6','57','52','0','Demon Forged Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112631','3','4','4','25747','10','6','58','53','0','Fiery Plate Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112632','3','4','3','25835','10','5','59','54','0','Storm Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112633','3','4','4','22901','1','6','60','55','0','Whitesoul Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112634','3','4','3','22907','6','5','60','55','0','Chiselbrand Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112636','3','4','3','22908','1','5','61','56','0','Helm of the Great Chief','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112637','3','4','4','22910','10','6','60','55','0','Backusarian Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112639','4','4','4','25750','10','6','62','57','0','Stronghold Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112640','4','4','4','22920','1','6','61','56','0','Lionheart Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112641','4','4','3','25748','5','5','63','57','0','Invulnerable Mail','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112651','3','2','18','22929','26','2','59','54','0','Blackcrow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112653','3','2','2','28813','15','2','59','54','0','Riphook','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112709','3','2','15','22977','13','1','63','58','3','Finkle\'s Skinner','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112752','4','4','1','23197','1','7','62','0','0','Cap of the Scarlet Savant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112756','4','4','2','23199','7','8','62','0','0','Leggings of Arcana','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112757','4','4','2','23200','5','8','62','0','0','Breastplate of Bloodthirst','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112764','2','2','8','23224','17','1','52','47','1','Thorium Greatsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112769','3','2','1','25600','17','1','54','49','1','Bleakwood Hew','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112772','2','2','5','23230','17','2','54','49','1','Inlaid Thorium Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112773','2','2','0','23234','13','1','55','50','3','Ornate Thorium Handaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112774','3','2','0','23236','13','1','55','50','3','Dawn\'s Edge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112775','2','2','1','23434','17','1','56','51','1','Huge Thorium Battleaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112776','3','2','5','23240','17','2','56','51','1','Enchanted Battlehammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112777','3','2','7','23241','13','1','56','51','3','Blazing Rapier','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112779','2','2','0','23243','13','1','57','52','3','Rune Edge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112781','3','2','4','23244','13','2','57','52','3','Serenity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112782','3','2','8','24255','17','1','58','53','1','Corruption','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112783','3','2','15','23248','13','1','63','58','3','Heartseeker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112784','3','2','1','23904','17','1','63','58','1','Arcanite Reaper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112790','3','2','8','24813','17','1','63','58','1','Arcanite Champion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112791','3','2','15','23262','13','1','55','50','7','Barman Shanker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112792','2','2','4','23267','13','2','58','53','3','Volcanic Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112793','3','4','2','23266','5','8','55','50','0','Mixologist\'s Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112794','3','2','4','7438','13','2','63','57','3','Masterwork Stormhammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112795','3','2','13','23271','21','1','60','55','7','Blood Talon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112796','3','2','5','25047','17','2','63','58','1','Hammer of the Titans','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112797','3','2','7','23274','13','1','63','58','3','Frostguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112798','3','2','0','28849','13','1','63','58','3','Annihilator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112802','3','2','6','23283','17','1','60','55','2','Darkspear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112846','1','4','0','23716','12','-1','1','0','0','Argent Dawn Commission','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112866','2','2','14','23323','13','1','46','41','0','Jade Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112895','4','4','4','28335','5','6','62','0','0','Breastplate of the Chromatic Flight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112903','4','4','3','23473','7','5','62','0','0','Legguards of the Chromatic Defier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112904','2','4','1','23411','1','7','61','61','0','Shawn\'s Super Special Swami Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112905','3','4','1','28605','16','7','61','56','0','Wildfire Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112926','3','4','0','23435','11','5','61','56','0','Flaming Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112927','3','4','2','28630','3','8','61','56','0','Truestrike Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112929','3','4','0','9658','2','3','61','56','0','Emberfury Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112930','3','4','0','8232','12','-1','60','55','0','Briarwood Reed','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112935','3','4','4','28625','7','6','63','58','0','Warmaster Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112936','3','4','4','22752','9','6','63','58','0','Battleborn Armbraces','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112939','3','2','7','25647','22','1','63','58','3','Dal\'Rend\'s Tribal Guardian','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112940','3','2','7','25648','21','1','63','58','3','Dal\'Rend\'s Sacred Charge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112945','4','4','3','23473','7','5','62','0','0','Legplates of the Chromatic Defier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112947','6','4','0','23496','11','4','60','0','0','Alex\'s Ring of Audacity','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112952','3','4','4','23519','1','6','60','55','0','Gyth\'s Skull','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112953','3','4','3','15327','1','5','60','55','0','Dragoneye Coif','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112960','3','4','2','23544','1','8','60','55','0','Tribal War Feathers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112963','3','4','2','23547','7','8','63','58','0','Blademaster Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112964','3','4','3','23548','7','5','63','58','0','Tristam Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112965','3','4','1','23551','7','7','63','58','0','Spiritshroud Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112966','3','4','2','23552','9','8','63','58','0','Blackmist Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112967','3','4','1','23553','16','7','63','58','0','Bloodmoon Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112968','3','4','1','23554','16','7','63','58','0','Frostweaver Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112969','3','2','5','23557','17','2','63','58','1','Seeping Willow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112970','3','4','4','26387','5','6','63','58','0','General\'s Ceremonial Plate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112974','3','2','7','28676','13','1','31','26','3','The Black Knight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112975','3','2','1','28804','17','1','20','15','1','Prospector Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112976','3','2','7','8272','13','1','20','15','3','Ironpatch Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112977','3','4','1','16642','10','7','20','15','0','Magefist Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112978','3','4','3','28448','6','5','20','15','0','Stormbringer Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112979','3','4','1','28661','16','7','21','16','0','Firebane Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112982','3','4','3','28452','8','5','21','16','0','Silver-linked Footguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112983','3','2','5','28809','17','2','21','16','1','Rakzur Club','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112984','3','2','19','28738','26','2','21','16','0','Skycaller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112985','3','4','0','28812','11','4','22','17','0','Ring of Defense','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112987','3','4','1','28648','7','7','22','17','0','Darkweave Breeches','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112988','3','4','2','28375','5','8','22','17','0','Starsight Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112989','3','2','6','28758','17','1','22','20','2','Gargoyle\'s Bite','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112990','3','2','0','28810','13','1','23','18','3','Razor\'s Edge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112992','3','2','8','20071','17','1','23','18','1','Searing Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112994','3','4','3','27778','10','5','23','18','0','Thorbia\'s Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112996','3','4','0','24646','11','5','23','18','0','Band of Purification','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112997','3','4','6','28811','14','1','24','19','4','Redbeard Crest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112998','3','4','1','28651','3','7','25','20','0','Magician\'s Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('112999','3','4','2','28370','9','8','25','20','0','Drakewing Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113000','3','2','10','28701','17','2','62','57','2','Staff of Hale Magefire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113001','3','4','0','9833','11','5','61','55','0','Maiden\'s Circle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113002','3','4','0','4841','2','3','59','54','0','Lady Alizabeth\'s Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113003','3','2','1','28794','17','1','56','51','1','Lord Alexander\'s Battle Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113004','3','2','19','28631','26','2','58','53','0','Torch of Austen','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113005','3','4','1','28951','16','7','28','23','0','Amy\'s Blanket','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113006','3','2','4','28799','13','2','62','57','3','Mass of McGowan','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113007','3','4','1','28616','16','7','58','53','0','Mageflame Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113008','3','4','1','28646','7','7','52','47','0','Dalewind Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113009','3','4','2','28700','5','8','51','46','0','Cow King\'s Hide','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113010','3','4','3','28438','7','5','26','21','0','Dreamsinger Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113011','3','4','2','28372','6','8','27','22','0','Silver-lined Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113012','3','4','3','28596','9','5','27','22','0','Yorgen Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113013','3','4','1','28643','3','7','56','51','0','Elder Wizard\'s Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113014','3','2','0','25594','13','1','53','48','3','Axe of Rin\'ji','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113015','3','2','0','28748','13','1','61','56','3','Serathil','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113016','3','2','1','28791','17','1','26','21','1','Killmaim','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113017','3','2','1','25599','17','1','40','35','1','Hellslayer Battle Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113018','3','2','1','23228','17','1','48','43','1','Executioner\'s Cleaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113019','3','2','2','28772','15','2','32','27','0','Harpyclaw Short Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113020','3','2','2','25602','15','2','39','34','0','Skystriker Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113021','3','2','2','28801','15','2','47','42','0','Needle Threader','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113022','3','2','2','28766','15','2','55','50','0','Gryphonwing Long Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113023','3','2','2','25606','15','2','63','58','0','Eaglehorn Long Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113024','3','2','4','28671','13','2','29','24','3','Beazel\'s Basher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113025','3','2','4','28706','13','2','37','32','3','Deadwood Sledge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113026','3','2','4','28776','13','2','45','40','3','Heaven\'s Light','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113027','3','2','4','28689','13','2','53','48','3','Bonesnapper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113028','3','2','4','28681','13','2','61','56','3','Bludstone Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113029','3','4','0','24122','23','1','43','38','7','Umbral Crystal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113030','3','4','0','28647','23','1','51','46','7','Basilisk Bone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113031','3','4','0','28803','23','1','28','23','7','Orb of Mistmantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113032','3','2','7','25639','13','1','27','22','3','Sword of Corruption','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113033','3','2','7','28594','13','1','34','29','3','Zealot Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113034','3','2','7','28708','13','1','41','36','3','Speedsteel Rapier','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113035','3','2','7','25640','13','1','49','44','3','Serpent Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113036','3','2','7','25641','13','1','57','52','3','Assassination Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113037','3','2','18','22929','26','2','32','27','0','Crystalpine Stinger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113038','3','2','18','25607','26','2','40','35','0','Swiftwind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113039','3','2','18','25608','26','2','48','43','0','Skull Splitting Crossbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113040','3','2','18','22929','26','2','56','51','0','Heartseeking Crossbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113041','3','2','8','28768','17','1','26','21','1','Guardian Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113042','3','2','8','28678','17','1','41','36','1','Sword of the Magistrate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113043','3','2','8','28675','17','1','49','44','1','Blade of the Titans','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113044','3','2','8','28714','17','1','57','52','1','Demonslayer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113045','3','2','5','25627','17','2','35','30','1','Viscous Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113046','3','2','5','28677','17','2','50','45','1','Blanchard\'s Stout','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113047','3','2','5','25626','17','2','58','53','1','Twig of the World Tree','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113048','3','2','4','25623','13','2','31','26','3','Looming Gavel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113049','3','2','8','28707','17','1','29','26','1','Deanship Claymore','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113051','3','2','8','28598','17','1','44','39','1','Witchfury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113052','3','2','8','28624','17','1','52','47','1','Warmonger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113053','3','2','8','28717','17','1','60','55','1','Doombringer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113054','3','2','6','28764','17','1','40','35','1','Grim Reaper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113055','3','2','6','18388','17','1','48','43','1','Bonechewer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113056','3','2','6','12562','17','1','56','51','1','Frenzied Striker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113057','3','2','6','25630','17','1','28','23','2','Bloodpike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113058','3','2','6','28790','17','1','44','39','2','Khoo\'s Point','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113059','3','2','6','25633','17','1','52','47','2','Stoneraven','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113060','3','2','6','28672','17','1','60','55','2','The Needler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113062','3','2','19','28633','26','2','27','22','0','Thunderwood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113063','3','2','19','28697','26','2','34','29','0','Starfaller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113064','3','2','19','28787','26','2','42','37','0','Jaina\'s Firestarter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113065','3','2','19','28626','26','2','50','45','0','Wand of Allistarj','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113066','3','4','4','28351','3','6','51','46','0','Wyrmslayer Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113067','3','4','4','28355','5','6','54','49','0','Hydralick Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113068','3','4','4','28362','8','6','42','40','0','Obsidian Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113070','3','4','4','28353','8','6','58','53','0','Sapphiron\'s Scale Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113071','3','4','4','28354','10','6','45','40','0','Plated Fist of Hakoo','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113072','3','4','4','28352','10','6','60','55','0','Stonegrip Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113073','3','4','4','28360','1','6','52','47','0','Mugthol\'s Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113074','3','4','4','21961','7','6','46','41','0','Golem Shard Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113075','3','4','4','28716','7','6','63','58','0','Direwing Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113076','3','4','4','28357','9','6','48','43','0','Giantslayer Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113077','3','4','4','28364','6','6','57','52','0','Girdle of Uther','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113079','3','4','6','28742','14','1','30','25','4','Shield of Thorsen','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113080','3','4','1','23604','20','7','63','58','0','Widow\'s Clutch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113081','3','4','6','18790','14','1','38','33','4','Skullance Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113082','3','4','6','25134','14','1','46','41','4','Mountainside Buckler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113083','3','4','6','25133','14','1','62','57','4','Garrett Family Crest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113084','3','4','0','6497','2','3','35','30','0','Kaleidoscope Chain','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113085','3','4','0','9657','2','3','51','46','0','Horizon Choker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113087','3','4','0','9860','2','3','33','28','0','River Pride Choker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113088','3','4','0','6522','2','3','41','36','0','Gazlowe\'s Charm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113089','3','4','0','6497','2','3','49','44','0','Skibi\'s Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113090','3','4','3','23605','5','5','63','58','0','Breastplate of the Chosen','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113091','3','4','0','23717','2','3','57','52','0','Medallion of Grand Marshal Morris','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113092','3','4','2','23607','5','8','63','58','0','Dragonstalker Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113093','3','4','0','28682','11','1','37','32','0','Blush Ember Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113094','3','4','0','26537','11','1','30','25','0','The Queen\'s Jewel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113095','3','4','0','9834','11','-1','44','39','0','Assault Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113096','3','4','0','23629','11','-1','60','55','0','Band of the Hierophant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113097','3','4','0','9839','11','-1','29','24','0','Thunderbrow Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113098','3','4','0','23608','11','5','63','58','0','Painweaver Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113099','3','4','1','28617','8','7','29','24','0','Moccasins of the White Hare','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113100','3','4','1','28645','8','7','44','39','0','Furen\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113101','3','4','1','28597','8','7','59','54','0','Wolfrunner Shoes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113102','3','4','1','28974','1','7','47','42','0','Cassandra\'s Grace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113103','3','4','1','28612','3','7','38','33','0','Pads of the Venom Spider','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113105','3','4','1','28657','6','7','37','32','0','Sutarn\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113106','3','4','1','28656','9','7','31','26','0','Glowing Magical Bracelets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113107','3','4','1','28619','9','7','62','57','0','Magiskull Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113108','3','4','1','28614','16','7','34','29','0','Tigerstrike Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113109','3','4','1','28609','16','7','49','44','0','Blackflame Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113110','3','4','2','28368','5','8','36','31','0','Wolffear Harness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113111','3','4','2','28664','8','8','54','49','0','Sandals of the Insurgent','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113112','3','4','2','28601','1','8','48','43','0','Winged Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113113','3','4','2','28739','1','8','63','58','0','Feathermoon Headdress','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113114','3','4','2','17031','7','8','30','25','0','Troll\'s Bane Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113115','3','4','2','28745','3','8','45','40','0','Sheepshear Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113116','3','4','2','28709','3','8','61','56','0','Spaulders of the Unseen','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113117','3','4','2','28802','6','8','42','37','0','Ogron\'s Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113118','3','4','2','28369','6','8','57','52','0','Serpentine Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113119','3','4','2','28735','9','8','39','34','0','Enchanted Kodo Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113120','3','4','2','28373','9','8','55','50','0','Deepfury Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113121','3','4','1','28602','16','7','38','33','0','Wing of the Whelpling','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113122','3','4','1','28652','16','7','55','50','0','Dark Phantom Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113123','3','4','3','28663','5','5','62','57','0','Dreamwalker Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113124','3','4','3','28441','8','5','35','30','0','Ravasaur Scale Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113125','3','4','3','28439','8','5','50','45','0','Elven Chain Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113126','3','4','3','28434','10','5','53','48','0','Battlecaller Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113127','3','4','3','28440','1','5','32','27','0','Frostreaver Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113128','3','4','3','28662','1','5','47','42','0','High Bergg Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113129','3','4','3','28437','7','5','39','34','0','Firemane Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113130','3','4','3','28447','7','5','56','51','0','Windrunner Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113131','3','4','3','28444','3','5','29','24','0','Sparkleshell Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113132','3','4','3','28443','3','5','43','38','0','Skeletal Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113133','3','4','3','28665','3','5','61','56','0','Drakesfire Epaulets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113134','3','4','3','28435','6','5','49','44','0','Belt of the Gladiator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113135','3','4','3','28668','9','5','59','54','0','Lordly Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113136','3','2','3','21071','26','1','21','16','0','Lil Timmy\'s Peashooter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113137','3','2','3','28786','26','1','34','29','0','Ironweaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113138','3','2','3','28634','26','1','42','37','0','The Silencer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113139','3','2','3','28769','26','1','50','45','0','Guttbuster','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113141','3','4','0','9860','2','3','63','58','0','Tooth of Gnarr','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113142','3','4','4','23628','6','6','63','58','0','Brigam Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113143','4','4','0','23629','11','1','61','56','0','Mark of the Dragon Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113144','3','4','1','28649','6','7','53','48','0','Serenity Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113145','3','4','4','28356','6','6','40','40','0','Enormous Ogre Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113146','3','2','3','28743','26','1','58','53','0','Shell Launcher Shotgun','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113148','3','2','6','25631','17','1','61','56','2','Chillpike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113161','3','2','10','23673','17','2','61','56','2','Trindlehaven Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113162','3','4','4','23675','10','6','61','56','0','Reiver Claws','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113163','3','2','8','23683','17','1','62','57','1','Relentless Scythe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113164','3','4','0','6006','12','-1','61','56','0','Heart of the Scale','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113166','3','4','4','23704','3','6','60','55','0','Slamshot Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113167','3','2','5','25180','17','2','60','55','1','Fist of Omokk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113168','3','4','4','23559','5','6','60','55','0','Plate of the Shaman King','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113169','3','4','2','23710','7','8','60','55','0','Tressermane Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113170','3','4','1','28713','7','7','60','55','0','Skyshroud Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113171','2','4','0','24060','12','8','61','0','0','Smokey\'s Lighter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113175','2','2','2','25603','15','2','60','55','0','Voone\'s Twitchbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113177','3','4','0','6494','2','3','60','55','0','Talisman of Evasion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113178','3','4','0','23728','11','5','60','55','0','Rosewine Circle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113179','3','4','3','23730','9','5','60','55','0','Brazecore Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113181','3','4','1','23732','10','7','57','52','0','Demonskin Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113182','3','2','7','23734','13','1','57','52','3','Phase Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113183','3','2','4','24740','13','2','60','55','3','Venomspitter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113184','3','4','2','23736','10','8','61','56','0','Fallbrush Handgrips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113185','3','4','1','23737','3','7','61','56','0','Sunderseer Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113198','3','2','13','23742','13','1','60','55','7','Hurd Smasher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113199','3','4','3','28436','9','5','41','36','0','Crushridge Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113203','3','4','1','23747','16','7','60','55','0','Armswake Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113204','3','2','4','25619','13','2','60','55','3','Bashguuder','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113205','3','4','6','23750','14','1','61','56','4','Rhombeard Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113206','3','4','1','23753','7','7','61','56','0','Wolfshear Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113208','3','4','2','23760','9','8','61','56','0','Bleak Howler Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113209','3','4','0','23763','12','-1','61','0','0','Seal of the Dawn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113210','3','4','2','23765','8','8','60','55','0','Pads of the Dread Wolf','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113211','3','4','3','23769','9','5','60','55','0','Slashclaw Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113212','3','4','0','23766','2','3','60','55','0','Halycon\'s Spiked Collar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113213','3','4','0','16209','12','-1','60','55','0','Smolderweb\'s Eye','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113216','2','4','1','23777','1','7','61','0','0','Crown of the Penitent','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113217','2','4','0','28830','11','-1','61','0','0','Band of the Penitent','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113218','3','2','15','23791','13','1','61','56','3','Fang of the Crystal Spider','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113243','3','4','6','25133','14','1','62','0','4','Argent Defender','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113244','3','4','3','23827','10','5','60','55','0','Gilded Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113245','3','4','6','23835','14','1','20','15','4','Kresh\'s Back','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113246','3','2','7','23836','13','1','62','0','3','Argent Avenger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113248','3','2','3','8257','26','1','56','51','0','Burstshot Harquebus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113249','3','2','10','23837','17','2','62','0','2','Argent Crusader','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113252','3','4','2','23844','6','8','60','55','0','Cloudrunner Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113253','3','4','1','23846','10','7','60','55','0','Hands of Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113254','3','4','6','23847','14','1','56','51','4','Astral Guard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113255','3','4','3','23849','10','5','59','54','0','Trueaim Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113257','3','4','2','23852','3','8','59','54','0','Demonic Runed Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113258','3','4','2','23853','10','8','61','56','0','Slaghide Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113259','3','4','4','23856','8','6','61','56','0','Ribsteel Footguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113260','3','4','3','23861','8','5','61','56','0','Wind Dancer Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113261','3','4','0','23867','23','3','59','54','7','Globe of D\'sak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113262','5','2','8','23875','17','1','76','60','1','Ashbringer','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113282','3','4','1','18905','8','7','59','54','0','Ogreseer Tower Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113283','3','4','0','23435','11','5','59','54','0','Magus Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113284','3','4','3','23901','8','5','58','53','0','Swiftdart Battleboots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113285','3','2','1','23908','17','1','58','53','1','The Blackrock Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113286','3','2','0','23909','13','1','58','53','3','Rivenspike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113314','4','4','1','24760','20','7','62','57','0','Alanna\'s Embrace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113340','3','4','1','24013','16','7','63','58','0','Cape of the Black Baron','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113344','3','4','3','29001','10','5','63','58','0','Dracorian Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113345','3','4','0','24022','11','5','63','58','0','Seal of Rivendare','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113346','3','4','1','24025','20','7','63','58','0','Robes of the Exalted','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113348','3','2','8','24049','17','1','63','58','1','Demonshear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113349','3','2','4','24033','13','2','63','58','3','Scepter of the Unholy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113353','4','4','0','24039','23','3','63','58','7','Book of the Dead','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113358','3','4','2','18971','3','8','63','58','0','Wyrmtongue Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113359','3','4','3','24045','1','5','63','58','0','Crown of Tyranny','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113360','3','2','15','24046','13','1','63','58','3','Gift of the Elven Magi','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113361','3','2','7','25036','13','1','63','58','1','Skullforge Reaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113368','3','2','15','25614','13','1','62','57','3','Bonescraper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113369','3','4','1','24054','8','7','63','58','0','Fire Striders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113371','2','4','0','24061','23','-1','58','0','7','Father Flame','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113372','3','2','10','24063','17','2','60','55','2','Slavedriver\'s Cane','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113373','3','4','0','1225','11','5','60','55','0','Band of Flesh','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113374','3','4','1','24064','3','7','60','55','0','Soulstealer Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113375','3','4','6','23825','14','1','60','55','4','Crest of Retribution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113376','3','4','1','24065','16','7','59','54','0','Royal Tribunal Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113378','3','4','2','24066','5','8','58','53','0','Songbird Blouse','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113379','3','4','0','2618','12','-1','58','53','0','Piccolo of the Flaming Fire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113380','3','2','3','18298','26','1','61','56','0','Willey\'s Portable Howitzer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113381','3','4','4','24068','8','6','61','56','0','Master Cannoneer Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113382','3','4','0','7888','12','-1','61','56','0','Cannonball Runner','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113383','3','4','3','24070','7','5','58','53','0','Woollies of the Prancing Minstrel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113384','3','4','4','24071','6','6','58','53','0','Rainbow Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113385','3','4','0','24072','23','3','61','56','7','Tome of Knowledge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113386','3','4','1','24073','16','7','61','56','0','Archivist Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113387','3','4','3','24074','6','5','61','56','0','Foresight Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113388','3','4','1','25049','5','7','61','56','0','The Postmaster\'s Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113389','3','4','1','25050','7','7','61','56','0','The Postmaster\'s Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113390','3','4','1','24292','1','7','61','56','0','The Postmaster\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113391','3','4','1','25051','8','7','61','56','0','The Postmaster\'s Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113392','3','4','0','24087','11','5','61','56','0','The Postmaster\'s Seal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113393','3','2','5','25629','17','2','61','56','1','Malown\'s Slam','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113394','3','4','4','24102','5','6','59','54','0','Skul\'s Cold Embrace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113395','3','4','2','29009','10','8','59','54','0','Skul\'s Fingerbone Claws','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113396','3','2','19','24106','26','2','57','52','0','Skul\'s Ghastly Touch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113397','3','4','1','24108','16','7','61','56','0','Stoneskin Gargoyle Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113398','3','4','2','9653','8','8','62','57','0','Boots of the Shrieker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113399','3','2','13','24109','22','1','59','54','7','Gargoyle Shredder Talons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113400','3','4','4','24110','9','6','59','54','0','Vambraces of the Sadist','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113401','3','2','4','24111','13','2','61','56','3','The Cruel Hand of Timmy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113402','3','4','3','33114','8','5','59','54','0','Timmy\'s Galoshes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113403','3','4','1','24113','6','7','59','54','0','Grimgore Noose','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113404','3','4','2','41843','1','8','57','52','0','Mask of the Unforgiven','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113405','3','4','4','24115','3','6','57','52','0','Wailing Nightbane Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113408','3','2','0','24119','13','1','57','52','3','Soul Breaker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113409','3','4','1','24120','9','7','57','52','0','Tearfall Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113473','2','4','0','23715','2','3','54','0','0','Felstone Good Luck Charm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113474','2','2','3','13060','26','1','56','0','0','Farmer Dalson\'s Shotgun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113475','2','4','0','224','11','5','55','0','0','Dalson Family Wedding Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113498','3','4','4','24162','7','6','60','55','0','Handcrafted Mastersmith Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113502','3','4','4','24164','6','6','63','58','0','Handcrafted Mastersmith Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113505','4','2','8','24166','17','1','63','58','1','Runeblade of Baron Rivendare','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113515','3','4','0','1236','12','-1','60','55','0','Ramstein\'s Lightning Bolts','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113524','3','4','0','24176','23','3','62','57','7','Skull of Burning Shadows','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113525','2','4','1','24177','10','7','62','57','0','Darkbind Fingers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113526','2','4','2','24178','6','8','62','57','0','Flamescarred Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113527','2','4','4','24179','8','6','62','57','0','Lavawalker Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113528','2','4','3','24180','9','5','62','57','0','Twilight Void Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113529','3','4','6','4107','14','1','61','56','4','Husk of Nerub\'enkan','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113530','2','4','1','24181','8','7','61','56','0','Fangdrip Runners','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113531','2','4','2','24182','7','8','61','56','0','Crypt Stalker Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113532','2','4','3','24183','10','5','61','56','0','Darkspinner Claws','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113533','2','4','4','24185','3','6','61','56','0','Acid-etched Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113534','3','2','19','24186','26','2','60','55','0','Banshee Finger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113535','2','4','1','24189','20','7','60','55','0','Coldtouch Phantom Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113537','2','4','2','24190','9','8','60','55','0','Chillhide Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113538','2','4','3','24193','3','5','60','55','0','Windshrieker Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113539','2','4','4','24194','10','6','60','55','0','Banshee\'s Touch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113544','2','4','0','24220','12','-1','60','0','0','Spectral Essence','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113812','2','4','0','24569','11','-1','58','0','0','Ring of the Dawn','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113816','0','2','7','20225','21','1','52','47','3','Fine Longsword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113817','0','2','8','20195','17','1','58','53','1','Tapered Greatsword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113818','0','2','0','8478','21','1','56','51','3','Jagged Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113819','0','2','1','19374','17','1','59','54','1','Balanced War Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113820','0','2','4','19716','21','2','54','49','3','Clout Mace','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113821','0','2','5','28691','17','2','57','52','1','Bulky Maul','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113822','0','2','15','4119','13','1','53','48','3','Spiked Dagger','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113823','0','2','10','20309','17','2','51','46','2','Stout War Staff','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113824','0','2','2','20550','15','2','55','45','0','Recurve Long Bow','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113825','0','2','3','20721','26','1','57','52','0','Primed Musket','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113856','2','4','1','25235','6','7','51','46','0','Runecloth Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113857','2','4','1','25207','5','7','52','47','0','Runecloth Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113858','2','4','1','24601','20','7','52','47','0','Runecloth Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113860','2','4','1','25232','16','7','53','48','0','Runecloth Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113863','2','4','1','25231','10','7','55','50','0','Runecloth Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113864','2','4','1','25233','8','7','56','51','0','Runecloth Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113865','2','4','1','25208','7','7','57','52','0','Runecloth Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113866','2','4','1','25230','1','7','59','54','0','Runecloth Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113867','2','4','1','25236','3','7','61','56','0','Runecloth Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113868','2','4','1','24612','20','7','51','46','0','Frostweave Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113869','2','4','1','24610','5','7','51','46','0','Frostweave Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113870','2','4','1','24616','10','7','53','47','0','Frostweave Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113871','2','4','1','24615','7','7','56','51','0','Frostweave Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113895','1','4','0','24644','20','7','60','0','0','Formal Dangui','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113896','1','4','0','24643','20','7','30','0','0','Dark Green Wedding Hanbok','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113897','1','4','0','24641','20','7','10','0','0','White Traditional Hanbok','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113898','1','4','0','24645','20','7','50','0','0','Royal Dangui','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113899','1','4','0','24639','20','7','20','0','0','Red Traditional Hanbok','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113900','1','4','0','24642','20','7','40','0','0','Green Wedding Hanbok','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113936','3','4','1','25659','1','7','62','57','0','Dreadmaster\'s Shroud','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113937','4','2','10','45947','17','2','62','57','2','Headmaster\'s Charge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113938','3','2','19','24743','26','2','62','57','0','Bonecreeper Stylus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113944','3','4','2','28632','5','8','62','57','0','Tombstone Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113950','3','4','3','24748','6','5','62','57','0','Detention Strap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113951','3','4','4','24749','9','6','62','57','0','Vigorsteel Vambraces','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113952','3','2','0','28782','13','1','62','57','3','Iceblade Hacker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113953','3','2','7','24756','13','1','62','57','3','Silent Fang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113954','3','4','2','28627','8','8','61','56','0','Verdant Footpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113955','3','4','4','24777','3','6','61','56','0','Stoneform Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113956','3','4','1','24762','6','7','61','56','0','Clutch of Andros','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113957','3','4','2','24768','10','8','61','56','0','Gargoyle Slashers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113958','3','4','1','24767','9','7','60','0','0','Wyrmthalak\'s Shackles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113959','3','4','4','30535','6','6','60','0','0','Omokk\'s Girth Restrainer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113960','3','4','0','19785','2','5','61','56','0','Heart of the Fiend','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113961','3','4','2','24772','3','8','60','0','0','Halycon\'s Muzzle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113962','3','4','2','30391','6','8','60','0','0','Vosh\'gajin\'s Strand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113963','3','4','3','29016','10','5','60','0','0','Voone\'s Vice Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113964','3','2','15','24775','21','1','62','57','3','Witchblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113965','3','4','0','24776','12','-1','63','0','0','Blackhand\'s Breadth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113966','3','4','0','24778','12','-1','63','0','0','Mark of Tyranny','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113967','3','4','3','28604','8','5','61','56','0','Windreaver Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113968','3','4','0','24784','12','-1','63','0','0','Eye of the Beast','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113969','3','4','3','24793','9','5','61','56','0','Loomguard Armbraces','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113982','3','2','8','26676','17','1','63','0','1','Warblade of Caer Darrow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113983','3','2','1','24816','17','1','62','57','1','Gravestone War Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113984','3','2','15','26679','13','1','63','0','3','Darrowspike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('113986','3','4','1','26680','1','7','63','0','0','Crown of Caer Darrow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114002','3','4','6','22831','14','1','63','0','4','Darrowshire Strongguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114022','3','4','0','26622','12','-1','62','0','0','Barov Peasant Caller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114023','3','4','0','26622','12','-1','62','0','0','Barov Peasant Caller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114024','3','2','15','20592','13','1','61','56','3','Frightalon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114025','2','4','1','25881','6','7','17','12','0','Mystic\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114042','2','4','1','24893','5','7','52','47','0','Cindercloth Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114043','2','4','1','24896','10','7','54','49','0','Cindercloth Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114044','2','4','1','23422','16','7','55','50','0','Cindercloth Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114045','2','4','1','24895','7','7','56','51','0','Cindercloth Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114083','1','2','10','24923','17','2','4','1','2','Tyrande\'s Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114086','1','4','1','25871','8','7','10','5','0','Beaded Sandals','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114087','1','4','1','25864','9','7','8','3','0','Beaded Cuffs','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114088','1','4','1','23132','16','7','8','3','0','Beaded Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114089','1','4','1','25867','10','7','10','5','0','Beaded Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114090','2','4','1','7533','7','7','11','6','0','Beaded Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114091','2','4','1','25869','20','7','11','6','0','Beaded Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114093','1','4','1','25863','6','7','9','4','0','Beaded Cord','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114094','2','4','1','25873','5','7','11','6','0','Beaded Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114095','1','4','1','25874','9','7','11','6','0','Native Bands','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114096','2','4','1','25880','5','7','16','11','0','Native Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114097','2','4','1','25876','7','7','14','9','0','Native Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114098','1','4','1','25875','16','7','10','5','0','Native Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114099','1','4','1','14431','6','7','12','7','0','Native Sash','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114100','2','4','1','15820','20','7','54','49','0','Brightcloth Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114101','2','4','1','16779','10','7','54','49','0','Brightcloth Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114102','1','4','1','16586','10','7','13','8','0','Native Handwraps','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114103','2','4','1','24928','16','7','55','50','0','Brightcloth Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114104','2','4','1','24927','7','7','58','53','0','Brightcloth Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114106','2','4','1','24932','20','7','61','56','0','Felcloth Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114107','2','4','1','13679','7','7','55','50','0','Felcloth Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114108','2','4','1','24935','8','7','57','52','0','Felcloth Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114109','2','4','1','25877','20','7','16','11','0','Native Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114110','1','4','1','25879','8','7','13','8','0','Native Sandals','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114111','2','4','1','24933','1','7','58','53','0','Felcloth Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114112','2','4','1','24934','3','7','62','57','0','Felcloth Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114113','2','4','1','25858','6','7','15','10','0','Aboriginal Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114114','2','4','1','25857','8','7','16','11','0','Aboriginal Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114115','1','4','1','14541','9','7','14','9','0','Aboriginal Bands','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114116','1','4','1','25855','16','7','14','9','0','Aboriginal Cape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114117','2','4','1','14542','10','7','16','11','0','Aboriginal Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114119','2','4','1','11421','7','7','17','12','0','Aboriginal Loincloth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114120','2','4','1','16531','20','7','20','15','0','Aboriginal Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114121','2','4','1','17462','5','7','20','15','0','Aboriginal Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114122','2','4','1','16664','9','7','18','13','0','Ritual Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114123','2','4','1','25916','16','7','17','12','0','Ritual Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114124','2','4','1','16657','10','7','20','15','0','Ritual Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114125','2','4','1','16656','7','7','21','16','0','Ritual Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114126','1','4','1','5394','3','7','23','18','0','Ritual Amice','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114127','2','4','1','15201','20','7','24','19','0','Ritual Shroud','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114128','2','4','1','24945','20','7','60','55','0','Wizardweave Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114129','2','4','1','25929','8','7','20','15','0','Ritual Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114130','2','4','1','24942','1','7','61','56','0','Wizardweave Turban','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114131','2','4','1','25915','6','7','19','14','0','Ritual Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114132','2','4','1','24943','7','7','55','50','0','Wizardweave Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114133','2','4','1','25952','5','7','24','19','0','Ritual Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114134','3','4','1','24946','16','7','55','50','0','Cloak of Fire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114136','3','4','1','25834','20','7','57','52','0','Robe of Winter Night','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114137','3','4','1','17252','7','7','58','53','0','Mooncloth Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114138','3','4','1','25228','5','7','60','55','0','Mooncloth Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114139','3','4','1','24966','3','7','61','56','0','Mooncloth Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114140','3','4','1','28414','1','7','62','57','0','Mooncloth Circlet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114141','2','4','1','25571','5','7','55','50','0','Ghostweave Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114142','2','4','1','24977','10','7','54','49','0','Ghostweave Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114143','2','4','1','24978','6','7','53','48','0','Ghostweave Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114144','2','4','1','11166','7','7','58','53','0','Ghostweave Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114145','3','2','7','24981','13','1','18','13','3','Cursed Felblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114146','4','4','1','24986','10','7','62','57','0','Gloves of Spell Mastery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114147','3','4','3','24982','9','5','18','13','0','Cavedweller Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114148','3','4','1','24983','9','7','18','13','0','Crystalline Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114149','3','4','1','24985','16','7','18','13','0','Subterranean Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114150','3','4','1','24988','20','7','18','13','0','Robe of Evocation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114151','3','2','15','24990','13','1','18','13','3','Chanting Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114152','4','4','1','25205','20','7','62','57','0','Robe of the Archmage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114153','4','4','1','25201','20','7','62','57','0','Robe of the Void','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114154','4','4','1','25203','20','7','62','57','0','Truefaith Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114157','1','4','1','8374','3','7','24','19','0','Pagan Mantle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114158','2','4','1','9996','5','7','26','21','0','Pagan Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114159','2','4','1','25893','8','7','22','17','0','Pagan Shoes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114160','2','4','1','16907','9','7','19','14','0','Pagan Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114161','2','4','1','23101','16','7','18','13','0','Pagan Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114162','2','4','1','11144','10','7','23','18','0','Pagan Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114163','2','4','1','25894','20','7','26','21','0','Pagan Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114164','2','4','1','14431','6','7','21','16','0','Pagan Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114165','2','4','1','25890','7','7','25','20','0','Pagan Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114166','2','4','1','28050','9','7','19','14','0','Buccaneer\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114167','2','4','1','28054','16','7','19','14','0','Buccaneer\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114168','2','4','1','28056','10','7','20','15','0','Buccaneer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114169','1','4','1','25859','3','7','21','16','0','Aboriginal Shoulder Pads','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114170','1','4','1','28055','3','7','22','17','0','Buccaneer\'s Mantle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114171','2','4','1','13679','7','7','22','17','0','Buccaneer\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114172','2','4','1','28098','20','7','23','18','0','Buccaneer\'s Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114173','2','4','1','28051','6','7','20','15','0','Buccaneer\'s Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114174','2','4','1','19950','8','7','19','14','0','Buccaneer\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114175','2','4','1','28052','5','7','23','18','0','Buccaneer\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114176','2','4','1','9184','8','7','26','21','0','Watcher\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114177','2','4','1','25970','9','7','26','21','0','Watcher\'s Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114178','2','4','1','26302','1','7','31','26','0','Watcher\'s Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114179','2','4','1','23109','16','7','24','19','0','Watcher\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114180','2','4','1','26023','5','7','30','25','0','Watcher\'s Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114181','2','4','1','25971','10','7','28','23','0','Watcher\'s Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114182','2','4','1','19991','3','7','28','23','0','Watcher\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114183','2','4','1','25974','7','7','30','25','0','Watcher\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114184','2','4','1','25976','20','7','30','25','0','Watcher\'s Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114185','2','4','1','25969','6','7','27','22','0','Watcher\'s Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114186','2','4','1','25986','3','7','29','24','0','Raincaller Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114187','2','4','1','14640','9','7','28','23','0','Raincaller Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114188','2','4','1','23138','16','7','27','22','0','Raincaller Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114189','2','4','1','15283','1','7','32','27','0','Raincaller Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114190','2','4','1','25984','5','7','31','26','0','Raincaller Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114191','2','4','1','25987','10','7','30','25','0','Raincaller Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114192','2','4','1','25989','20','7','31','26','0','Raincaller Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114193','2','4','1','18887','7','7','31','26','0','Raincaller Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114194','2','4','1','28730','6','7','28','23','0','Raincaller Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114195','2','4','1','14645','8','7','29','24','0','Raincaller Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114196','2','4','1','26008','8','7','32','27','0','Thistlefur Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114197','2','4','1','26004','9','7','30','25','0','Thistlefur Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114198','2','4','1','26006','16','7','31','26','0','Thistlefur Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114199','2','4','1','26007','10','7','33','28','0','Thistlefur Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114200','2','4','1','15293','1','7','35','30','0','Thistlefur Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114201','2','4','1','26012','3','7','34','29','0','Thistlefur Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114202','2','4','1','26049','5','7','36','31','0','Thistlefur Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114203','2','4','1','16719','7','7','35','30','0','Thistlefur Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114204','2','4','1','26011','20','7','36','31','0','Thistlefur Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114205','2','4','1','26005','6','7','32','27','0','Thistlefur Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114206','2','4','1','25970','9','7','32','27','0','Vital Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114207','2','4','1','26021','7','7','36','31','0','Vital Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114208','2','4','1','26308','1','7','36','31','0','Vital Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114209','2','4','1','26022','6','7','33','28','0','Vital Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114210','2','4','1','26015','16','7','32','27','0','Vital Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114211','2','4','1','26020','10','7','34','29','0','Vital Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114212','2','4','1','28729','3','7','35','30','0','Vital Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114213','2','4','1','26017','20','7','37','32','0','Vital Raiment','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114214','2','4','1','9184','8','7','34','29','0','Vital Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114215','2','4','1','25973','5','7','37','32','0','Vital Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114216','2','4','1','26051','5','7','41','36','0','Geomancer\'s Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114217','2','4','1','24113','6','7','36','31','0','Geomancer\'s Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114218','2','4','1','16721','8','7','37','32','0','Geomancer\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114219','2','4','1','26045','16','7','34','29','0','Geomancer\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114220','2','4','1','26044','1','7','40','35','0','Geomancer\'s Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114221','2','4','1','26042','9','7','35','30','0','Geomancer\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114222','2','4','1','26050','10','7','37','32','0','Geomancer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114223','2','4','1','26054','3','7','38','33','0','Geomancer\'s Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114224','2','4','1','26052','7','7','39','34','0','Geomancer\'s Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114225','2','4','1','26053','20','7','41','36','0','Geomancer\'s Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114226','2','4','1','26055','9','7','37','32','0','Embersilk Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114228','2','4','1','26059','1','7','41','36','0','Embersilk Coronet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114229','2','4','1','26057','16','7','36','31','0','Embersilk Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114230','2','4','1','26063','5','7','42','37','0','Embersilk Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114231','2','4','1','26062','10','7','38','33','0','Embersilk Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114232','2','4','1','26068','3','7','39','34','0','Embersilk Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114233','2','4','1','26061','7','7','40','35','0','Embersilk Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114234','2','4','1','26067','20','7','42','37','0','Embersilk Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114235','2','4','1','26058','6','7','37','32','0','Embersilk Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114236','2','4','1','26066','8','7','38','33','0','Embersilk Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114237','2','4','1','16599','5','7','46','41','0','Darkmist Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114238','2','4','1','26100','8','7','41','36','0','Darkmist Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114239','2','4','1','26101','16','7','39','34','0','Darkmist Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114240','2','4','1','16604','9','7','40','35','0','Darkmist Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114241','2','4','1','26102','10','7','41','36','0','Darkmist Handguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114242','2','4','1','16600','7','7','43','38','0','Darkmist Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114243','2','4','1','26104','3','7','43','38','0','Darkmist Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114244','2','4','1','28991','20','7','46','41','0','Darkmist Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114245','2','4','1','24624','6','7','41','36','0','Darkmist Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114246','2','4','1','26309','1','7','44','39','0','Darkmist Wizard Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114247','2','4','1','26116','3','7','44','39','0','Lunar Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114248','2','4','1','14647','9','7','41','36','0','Lunar Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114249','2','4','1','14646','5','7','47','42','0','Lunar Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114250','2','4','1','26117','8','7','42','37','0','Lunar Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114251','2','4','1','26112','16','7','40','35','0','Lunar Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114252','2','4','1','18992','1','7','45','40','0','Lunar Coronet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114253','2','4','1','26113','10','7','43','38','0','Lunar Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114254','2','4','1','26119','20','7','47','42','0','Lunar Raiment','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114255','2','4','1','26111','6','7','42','36','0','Lunar Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114257','2','4','1','18887','7','7','45','40','0','Lunar Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114258','2','4','1','26190','6','7','45','40','0','Bloodwoven Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114259','2','4','1','26186','8','7','46','41','0','Bloodwoven Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114260','2','4','1','26187','9','7','44','39','0','Bloodwoven Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114261','2','4','1','26189','16','7','43','38','0','Bloodwoven Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114262','2','4','1','26193','10','7','45','40','0','Bloodwoven Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114263','2','4','1','41844','1','7','48','43','0','Bloodwoven Mask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114264','2','4','1','26196','7','7','48','43','0','Bloodwoven Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114265','2','4','1','26198','20','7','51','46','0','Bloodwoven Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114266','2','4','1','26195','3','7','47','42','0','Bloodwoven Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114267','2','4','1','26192','5','7','51','46','0','Bloodwoven Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114268','2','4','1','17262','9','7','46','41','0','Gaea\'s Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114269','2','4','1','26145','8','7','47','42','0','Gaea\'s Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114270','2','4','1','23031','16','7','45','40','0','Gaea\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114271','2','4','1','26307','1','7','49','44','0','Gaea\'s Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114272','2','4','1','26143','10','7','47','42','0','Gaea\'s Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114273','2','4','1','26147','3','7','48','43','0','Gaea\'s Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114274','2','4','1','26144','7','7','51','46','0','Gaea\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114275','2','4','1','26142','20','7','52','47','0','Gaea\'s Raiment','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114276','2','4','1','26138','6','7','47','42','0','Gaea\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114277','2','4','1','26311','5','7','52','47','0','Gaea\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114278','2','4','1','27928','3','7','50','45','0','Opulent Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114279','2','4','1','14618','9','7','49','44','0','Opulent Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114280','2','4','1','26137','16','7','48','43','0','Opulent Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114281','2','4','1','26128','1','7','53','48','0','Opulent Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114282','2','4','1','26132','10','7','50','45','0','Opulent Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114283','2','4','1','26124','7','7','54','49','0','Opulent Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114284','2','4','1','26131','20','7','56','51','0','Opulent Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114285','2','4','1','26134','8','7','50','45','0','Opulent Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114286','2','4','1','26136','6','7','50','45','0','Opulent Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114287','2','4','1','27927','5','7','56','51','0','Opulent Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114288','2','4','1','26203','5','7','57','52','0','Arachnidian Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114289','2','4','1','25098','6','7','51','46','0','Arachnidian Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114290','2','4','1','26206','8','7','51','46','0','Arachnidian Footpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114291','2','4','1','26205','9','7','50','45','0','Arachnidian Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114292','2','4','1','26215','16','7','49','44','0','Arachnidian Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114293','2','4','1','26214','1','7','55','50','0','Arachnidian Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114294','2','4','1','26208','10','7','51','46','0','Arachnidian Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114295','2','4','1','26212','7','7','55','50','0','Arachnidian Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114296','2','4','1','26213','3','7','52','47','0','Arachnidian Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114297','2','4','1','26211','20','7','57','52','0','Arachnidian Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114298','2','4','1','26281','3','7','56','51','0','Bonecaster\'s Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114299','2','4','1','26268','8','7','54','49','0','Bonecaster\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114300','2','4','1','26271','16','7','52','47','0','Bonecaster\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114301','2','4','1','26266','9','7','53','48','0','Bonecaster\'s Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114302','2','4','1','26275','10','7','56','51','0','Bonecaster\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114303','2','4','1','18834','20','7','60','55','0','Bonecaster\'s Shroud','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114304','2','4','1','26280','6','7','55','50','0','Bonecaster\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114305','2','4','1','26282','7','7','57','52','0','Bonecaster\'s Sarong','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114306','2','4','1','26279','5','7','60','55','0','Bonecaster\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114307','2','4','1','26277','1','7','59','54','0','Bonecaster\'s Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114308','2','4','1','26256','5','7','61','56','0','Celestial Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114309','2','4','1','26252','6','7','56','51','0','Celestial Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114310','2','4','1','26261','8','7','58','53','0','Celestial Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114311','2','4','1','26253','9','7','55','50','0','Celestial Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114312','2','4','1','26255','1','7','61','56','0','Celestial Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114313','2','4','1','26262','16','7','54','49','0','Celestial Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114314','2','4','1','26258','10','7','58','53','0','Celestial Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114315','2','4','1','26260','7','7','59','54','0','Celestial Kilt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114316','2','4','1','26263','3','7','59','54','0','Celestial Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114317','2','4','1','26254','20','7','61','56','0','Celestial Silk Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114318','2','4','1','26288','5','7','63','58','0','Resplendent Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114319','2','4','1','26285','8','7','59','54','0','Resplendent Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114320','2','4','1','26287','9','7','57','52','0','Resplendent Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114321','2','4','1','26299','16','7','55','50','0','Resplendent Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114322','2','4','1','26292','1','7','62','57','0','Resplendent Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114323','2','4','1','26290','10','7','60','55','0','Resplendent Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114324','2','4','1','26300','7','7','60','55','0','Resplendent Sarong','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114325','2','4','1','26298','3','7','61','56','0','Resplendent Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114326','2','4','1','28993','20','7','63','58','0','Resplendent Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114327','2','4','1','26284','6','7','58','53','0','Resplendent Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114328','2','4','1','26219','5','7','65','60','0','Eternal Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114329','2','4','1','26225','8','7','62','57','0','Eternal Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114330','2','4','1','26216','9','7','61','56','0','Eternal Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114331','2','4','1','26227','16','7','58','53','0','Eternal Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114332','2','4','1','26224','1','7','64','59','0','Eternal Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114333','2','4','1','26222','10','7','63','58','0','Eternal Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114334','2','4','1','26223','7','7','63','58','0','Eternal Sarong','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114335','2','4','1','26229','3','7','63','58','0','Eternal Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114336','2','4','1','26226','20','7','65','60','0','Eternal Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114337','2','4','1','26221','6','7','61','56','0','Eternal Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114340','3','4','1','25039','20','7','62','57','0','Freezing Lich Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114364','2','4','1','16802','8','7','18','13','0','Mystic\'s Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114365','2','4','1','25884','16','7','15','10','0','Mystic\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114366','2','4','1','16805','9','7','17','12','0','Mystic\'s Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114367','2','4','1','25885','10','7','19','14','0','Mystic\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114368','1','4','1','25887','3','7','22','17','0','Mystic\'s Shoulder Pads','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114369','2','4','1','25888','5','7','23','18','0','Mystic\'s Wrap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114370','2','4','1','10079','7','7','19','14','0','Mystic\'s Woolies','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114371','2','4','1','25889','20','7','23','18','0','Mystic\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114372','2','4','1','25954','5','7','28','23','0','Sanguine Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114373','2','4','1','25957','6','7','25','20','0','Sanguine Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114374','2','4','1','25966','8','7','24','19','0','Sanguine Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114375','2','4','1','25959','9','7','25','20','0','Sanguine Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114376','2','4','1','25958','16','7','22','17','0','Sanguine Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114377','2','4','1','25961','10','7','26','21','0','Sanguine Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114378','2','4','1','25965','3','7','27','22','0','Sanguine Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114379','2','4','1','25968','7','7','29','24','0','Sanguine Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114380','2','4','1','25956','20','7','28','23','0','Sanguine Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114390','1','4','1','17261','6','7','1','0','0','Durability Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114392','1','2','10','20385','17','2','1','0','2','Durability Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114397','2','4','1','27872','3','7','32','27','0','Resilient Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114398','2','4','1','26003','5','7','33','28','0','Resilient Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114399','2','4','1','25995','8','7','31','26','0','Resilient Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114400','2','4','1','25997','16','7','29','24','0','Resilient Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114401','2','4','1','25996','1','7','33','28','0','Resilient Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114402','2','4','1','25994','9','7','29','24','0','Resilient Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114403','2','4','1','25999','10','7','31','26','0','Resilient Handgrips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114404','2','4','1','12973','7','7','33','28','0','Resilient Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114405','2','4','1','27873','20','7','33','28','0','Resilient Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114406','2','4','1','25998','6','7','30','25','0','Resilient Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114407','2','4','1','26028','5','7','39','34','0','Stonecloth Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114408','2','4','1','26026','8','7','35','30','0','Stonecloth Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114409','2','4','1','26027','16','7','33','28','0','Stonecloth Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114410','2','4','1','26033','1','7','38','33','0','Stonecloth Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114411','2','4','1','26029','10','7','35','30','0','Stonecloth Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114412','2','4','1','26035','3','7','36','31','0','Stonecloth Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114413','2','4','1','26038','20','7','39','34','0','Stonecloth Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114414','2','4','1','26024','6','7','34','29','0','Stonecloth Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114415','2','4','1','11166','7','7','37','32','0','Stonecloth Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114416','2','4','1','26025','9','7','34','29','0','Stonecloth Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114417','2','4','1','26084','5','7','44','39','0','Silksand Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114418','2','4','1','26086','8','7','39','34','0','Silksand Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114419','2','4','1','26079','9','7','38','33','0','Silksand Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114420','2','4','1','26080','16','7','38','33','0','Silksand Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114421','2','4','1','26093','1','7','42','37','0','Silksand Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114422','2','4','1','26081','10','7','40','35','0','Silksand Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114423','2','4','1','26096','3','7','40','35','0','Silksand Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114424','2','4','1','26083','7','7','42','37','0','Silksand Legwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114425','2','4','1','26092','20','7','44','39','0','Silksand Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114426','2','4','1','16781','6','7','39','34','0','Silksand Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114427','2','4','1','26161','5','7','49','44','0','Windchaser Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114428','2','4','1','26153','8','7','44','39','0','Windchaser Footpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114429','2','4','1','26151','9','7','43','38','0','Windchaser Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114430','2','4','1','26175','16','7','42','37','0','Windchaser Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114431','2','4','1','26154','10','7','44','39','0','Windchaser Handguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114432','2','4','1','4904','3','7','45','40','0','Windchaser Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114433','2','4','1','26159','7','7','46','41','0','Windchaser Woolies','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114434','2','4','1','26174','20','7','49','44','0','Windchaser Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114435','2','4','1','26149','6','7','43','38','0','Windchaser Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114436','2','4','1','26150','1','7','46','41','0','Windchaser Coronet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114437','2','4','1','16631','5','7','54','49','0','Venomshroud Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114438','2','4','1','16634','8','7','48','43','0','Venomshroud Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114439','2','4','1','16636','9','7','47','42','0','Venomshroud Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114440','2','4','1','26201','16','7','46','41','0','Venomshroud Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114441','2','4','1','41845','1','7','50','45','0','Venomshroud Mask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114442','2','4','1','16633','10','7','49','44','0','Venomshroud Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114443','2','4','1','16637','3','7','49','44','0','Venomshroud Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114444','2','4','1','16632','7','7','52','47','0','Venomshroud Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114445','2','4','1','19901','20','7','54','49','0','Venomshroud Silk Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114446','2','4','1','21459','6','7','48','43','0','Venomshroud Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114447','2','4','1','26171','8','7','53','48','0','Highborne Footpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114448','2','4','1','26168','9','7','52','47','0','Highborne Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114449','2','4','1','26170','1','7','57','52','0','Highborne Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114450','2','4','1','26184','16','7','51','46','0','Highborne Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114451','2','4','1','18423','10','7','53','48','0','Highborne Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114452','2','4','1','26182','3','7','54','49','0','Highborne Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114453','2','4','1','26157','20','7','59','54','0','Highborne Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114454','2','4','1','26169','6','7','53','48','0','Highborne Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114455','2','4','1','26178','5','7','59','54','0','Highborne Padded Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114456','2','4','1','26240','5','7','64','59','0','Elunarian Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114457','2','4','1','26235','9','7','58','53','0','Elunarian Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114458','2','4','1','26231','8','7','60','55','0','Elunarian Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114459','2','4','1','26233','16','7','57','52','0','Elunarian Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114460','2','4','1','26243','1','7','63','58','0','Elunarian Diadem','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114461','2','4','1','26236','10','7','62','57','0','Elunarian Handgrips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114462','2','4','1','26238','7','7','62','57','0','Elunarian Sarong','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114463','2','4','1','26247','3','7','62','57','0','Elunarian Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114464','2','4','1','27228','20','7','64','59','0','Elunarian Silk Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114465','2','4','1','26230','6','7','60','55','0','Elunarian Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114487','3','2','4','25096','13','2','62','57','3','Bonechill Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114502','3','4','2','28757','6','8','62','57','0','Frostbite Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114503','3','4','2','25104','3','8','62','57','0','Death\'s Clutch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114522','3','4','3','25111','7','5','62','57','0','Maelstrom Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114525','3','4','4','25116','10','6','62','57','0','Boneclenched Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114528','3','4','6','25138','14','1','62','57','4','Rattlecage Buckler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114531','3','2','5','25148','17','2','59','54','1','Frightskull Shaft','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114536','3','4','3','25157','5','5','61','56','0','Bonebrace Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114537','3','4','4','25160','8','6','62','57','0','Corpselight Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114538','3','4','1','28705','3','7','62','57','0','Deadwalker Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114539','3','4','2','25166','1','8','62','57','0','Bone Ring Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114541','3','2','8','25649','17','1','61','56','1','Barovian Family Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114543','3','4','1','28703','10','7','62','57','0','Darkshade Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114545','3','4','2','25169','7','8','62','57','0','Ghostloom Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114548','3','4','3','28817','3','5','62','57','0','Royal Cap Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114549','4','4','4','28276','8','6','45','40','0','Boots of Avoidance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114550','4','4','2','28274','9','8','49','44','0','Bladebane Armguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114551','4','4','3','28280','10','5','49','44','0','Edgemaster\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114552','4','4','4','28282','3','6','55','50','0','Stockade Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114553','4','4','2','28386','6','8','61','56','0','Sash of Mercy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114554','4','4','4','25343','7','6','62','57','0','Cloudkeeper Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114555','4','2','15','25612','13','1','63','58','3','Alcor\'s Sunrazor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114557','4','4','0','6338','12','4','63','58','0','The Lion Horn of Stormwind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114558','4','4','0','9857','2','-1','64','59','0','Lady Maye\'s Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114559','2','4','2','27520','6','8','18','13','0','Prospector\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114560','2','4','2','27524','8','8','19','14','0','Prospector\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114561','2','4','2','17014','9','8','17','12','0','Prospector\'s Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114562','2','4','2','27518','5','8','23','18','0','Prospector\'s Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114563','2','4','1','27525','16','7','17','12','0','Prospector\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114564','2','4','2','27519','10','8','19','14','0','Prospector\'s Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114565','2','4','2','27522','7','8','21','16','0','Prospector\'s Woolies','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114566','2','4','2','27523','3','8','25','20','0','Prospector\'s Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114567','2','4','2','27668','6','8','23','18','0','Bristlebark Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114568','2','4','2','16997','8','8','23','18','0','Bristlebark Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114569','2','4','2','13355','9','8','22','17','0','Bristlebark Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114570','2','4','2','27669','5','8','28','23','0','Bristlebark Blouse','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114571','2','4','1','27673','16','7','21','16','0','Bristlebark Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114572','2','4','2','27672','10','8','24','19','0','Bristlebark Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114573','2','4','2','27667','3','8','27','22','0','Bristlebark Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114574','2','4','2','27670','7','8','26','21','0','Bristlebark Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114576','3','2','7','25173','13','1','59','54','3','Ebon Hilt of Marduk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114577','3','4','1','28715','7','7','61','56','0','Skullsmoke Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114578','2','4','2','27963','6','8','29','24','0','Dokebi Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114579','2','4','2','27965','8','8','31','26','0','Dokebi Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114580','2','4','2','27964','9','8','27','22','0','Dokebi Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114581','2','4','2','27962','5','8','33','28','0','Dokebi Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114582','2','4','1','27584','16','7','28','23','0','Dokebi Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114583','2','4','2','27966','10','8','32','27','0','Dokebi Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114584','2','4','2','27968','1','8','35','30','0','Dokebi Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114585','2','4','2','27967','7','8','32','27','0','Dokebi Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114587','2','4','2','10179','3','8','32','27','0','Dokebi Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114588','2','4','2','27976','6','8','36','31','0','Hawkeye\'s Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114589','2','4','2','9169','8','8','37','32','0','Hawkeye\'s Shoes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114590','2','4','2','14770','9','8','35','30','0','Hawkeye\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114591','2','4','2','21311','1','8','40','35','0','Hawkeye\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114592','2','4','2','27979','5','8','40','35','0','Hawkeye\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114593','2','4','1','27980','16','7','35','30','0','Hawkeye\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114594','2','4','2','27977','10','8','37','32','0','Hawkeye\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114595','2','4','2','27975','7','8','38','33','0','Hawkeye\'s Breeches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114596','2','4','2','27978','3','8','38','33','0','Hawkeye\'s Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114598','2','4','2','27983','6','8','40','35','0','Warden\'s Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114599','2','4','2','27982','8','8','42','37','0','Warden\'s Footpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114600','2','4','2','27985','9','8','40','35','0','Warden\'s Wristbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114601','2','4','2','14995','5','8','44','39','0','Warden\'s Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114602','2','4','1','27986','16','7','39','34','0','Warden\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114603','2','4','2','27988','3','8','41','36','0','Warden\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114604','2','4','2','27987','1','8','45','40','0','Warden\'s Wizard Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114605','2','4','2','27984','7','8','43','38','0','Warden\'s Woolies','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114606','2','4','2','15000','10','8','41','36','0','Warden\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114607','2','4','6','27981','14','1','37','32','4','Hawkeye\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114608','2','4','6','18487','14','1','31','26','4','Dokebi Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114611','3','4','3','25222','5','5','61','56','0','Bloodmail Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114612','3','4','3','25223','7','5','61','56','0','Bloodmail Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114614','3','4','3','25219','6','5','61','56','0','Bloodmail Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114615','3','4','3','25221','10','5','61','56','0','Bloodmail Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114616','3','4','3','25220','8','5','61','56','0','Bloodmail Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114617','1','4','0','25193','4','7','1','0','0','Sawbones Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114620','3','4','4','25225','6','6','61','56','0','Deathbone Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114621','3','4','4','25227','8','6','61','56','0','Deathbone Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114622','3','4','4','25224','10','6','61','56','0','Deathbone Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114623','3','4','4','25226','7','6','61','56','0','Deathbone Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114624','3','4','4','24102','5','6','61','56','0','Deathbone Chestplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114626','3','4','1','25245','20','7','61','56','0','Necropile Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114629','3','4','1','4607','9','7','61','56','0','Necropile Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114631','3','4','1','18863','8','7','61','56','0','Necropile Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114632','3','4','1','25255','7','7','61','56','0','Necropile Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114633','3','4','1','25247','3','7','61','56','0','Necropile Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114636','3','4','2','25248','6','8','61','56','0','Cadaverous Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114637','3','4','2','25249','5','8','61','56','0','Cadaverous Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114638','3','4','2','26966','7','8','61','56','0','Cadaverous Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114640','3','4','2','25253','10','8','61','56','0','Cadaverous Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114641','3','4','2','11571','8','8','61','56','0','Cadaverous Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114652','2','4','2','27579','6','8','45','40','0','Scorpashi Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114653','2','4','2','18944','8','8','46','41','0','Scorpashi Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114654','2','4','2','27582','9','8','44','39','0','Scorpashi Wristbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114655','2','4','2','27576','5','8','49','44','0','Scorpashi Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114656','2','4','1','27584','16','7','44','39','0','Scorpashi Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114657','2','4','2','27577','10','8','46','41','0','Scorpashi Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114658','2','4','2','27581','1','8','49','44','0','Scorpashi Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114659','2','4','2','27578','7','8','47','42','0','Scorpashi Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114660','2','4','2','27580','3','8','47','42','0','Scorpashi Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114661','2','4','2','27566','6','8','49','44','0','Keeper\'s Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114662','2','4','2','27568','8','8','51','46','0','Keeper\'s Hooves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114663','2','4','2','27565','9','8','48','43','0','Keeper\'s Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114664','2','4','2','27564','5','8','54','49','0','Keeper\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114665','2','4','1','27573','16','7','48','43','0','Keeper\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114666','2','4','2','27567','10','8','51','46','0','Keeper\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114667','2','4','2','27572','1','8','53','48','0','Keeper\'s Wreath','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114668','2','4','2','27570','7','8','52','47','0','Keeper\'s Woolies','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114669','2','4','2','27569','3','8','51','46','0','Keeper\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114670','2','4','2','27649','5','8','59','54','0','Pridelord Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114671','2','4','2','18944','8','8','56','51','0','Pridelord Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114672','2','4','2','27582','9','8','53','48','0','Pridelord Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114673','2','4','1','27653','16','7','52','47','0','Pridelord Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114674','2','4','2','27579','6','8','55','50','0','Pridelord Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114675','2','4','2','27648','10','8','56','51','0','Pridelord Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114676','2','4','2','21299','1','8','58','53','0','Pridelord Halo','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114677','2','4','2','27651','7','8','58','53','0','Pridelord Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114678','2','4','2','27652','3','8','57','52','0','Pridelord Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114680','2','4','2','18470','5','8','64','59','0','Indomitable Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114681','2','4','2','17258','8','8','62','57','0','Indomitable Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114682','2','4','2','17259','9','8','59','54','0','Indomitable Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114683','2','4','1','27573','16','7','59','54','0','Indomitable Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114684','2','4','2','15411','6','8','60','55','0','Indomitable Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114685','2','4','2','17263','10','8','62','57','0','Indomitable Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114686','2','4','2','17321','1','8','63','58','0','Indomitable Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114687','2','4','2','17265','7','8','62','57','0','Indomitable Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114688','2','4','2','17267','3','8','61','56','0','Indomitable Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114722','2','4','3','26983','8','5','17','12','0','War Paint Anklewraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114723','2','4','3','26982','9','5','17','12','0','War Paint Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114724','2','4','1','26958','16','7','16','11','0','War Paint Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114725','2','4','3','26987','6','5','17','12','0','War Paint Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114726','2','4','3','26985','10','5','18','13','0','War Paint Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114727','2','4','3','26986','7','5','19','14','0','War Paint Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114728','1','4','3','26988','3','5','22','17','0','War Paint Shoulder Pads','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114729','2','4','6','23835','14','1','20','15','4','War Paint Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114730','2','4','3','26984','5','5','23','18','0','War Paint Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114742','2','4','3','27009','8','5','24','19','0','Hulking Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114743','2','4','3','27007','9','5','22','17','0','Hulking Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114744','2','4','3','27010','5','5','28','23','0','Hulking Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114745','2','4','1','27011','16','7','20','15','0','Hulking Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114746','2','4','3','27008','6','5','22','17','0','Hulking Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114747','2','4','3','27012','10','5','23','18','0','Hulking Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114748','2','4','3','27013','7','5','25','20','0','Hulking Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114749','2','4','3','27014','3','5','26','21','0','Hulking Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114750','2','4','3','27026','9','5','28','23','0','Slayer\'s Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114751','2','4','3','27034','5','5','33','28','0','Slayer\'s Surcoat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114752','2','4','1','27033','16','7','27','22','0','Slayer\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114753','2','4','3','27191','1','5','33','28','0','Slayer\'s Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114754','2','4','3','27027','10','5','29','24','0','Slayer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114755','2','4','3','27029','6','5','28','23','0','Slayer\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114756','2','4','3','27035','8','5','29','24','0','Slayer\'s Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114757','2','4','3','27028','7','5','32','27','0','Slayer\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114758','2','4','3','27030','3','5','31','26','0','Slayer\'s Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114759','2','4','3','27048','9','5','34','29','0','Enduring Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114760','2','4','3','27049','5','5','39','34','0','Enduring Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114761','2','4','3','27046','6','5','34','29','0','Enduring Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114762','2','4','3','27047','8','5','37','32','0','Enduring Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114763','2','4','1','27051','16','7','32','27','0','Enduring Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114764','2','4','3','27053','10','5','35','30','0','Enduring Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114765','2','4','3','27052','1','5','38','33','0','Enduring Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114766','2','4','3','27050','7','5','37','32','0','Enduring Breeches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114767','2','4','3','27054','3','5','38','33','0','Enduring Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114768','2','4','3','27092','5','5','44','39','0','Ravager\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114769','2','4','3','27093','8','5','42','37','0','Ravager\'s Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114770','2','4','3','27091','9','5','40','35','0','Ravager\'s Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114771','2','4','1','26141','16','7','39','34','0','Ravager\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114772','2','4','3','29007','10','5','40','35','0','Ravager\'s Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114773','2','4','3','27094','6','5','39','34','0','Ravager\'s Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114774','2','4','3','28175','1','5','43','38','0','Ravager\'s Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114775','2','4','3','27097','7','5','43','38','0','Ravager\'s Woolies','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114776','2','4','3','27096','3','5','43','38','0','Ravager\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114777','2','4','6','27099','14','1','44','39','4','Ravager\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114778','2','4','3','21756','9','5','45','40','0','Khan\'s Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114779','2','4','3','27147','5','5','49','44','0','Khan\'s Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114780','2','4','6','20833','14','1','49','44','4','Khan\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114781','2','4','1','27152','16','7','44','39','0','Khan\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114782','2','4','3','27148','10','5','45','40','0','Khan\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114783','2','4','3','27146','6','5','46','41','0','Khan\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114784','2','4','3','27149','8','5','46','41','0','Khan\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114785','2','4','3','27151','1','5','48','43','0','Khan\'s Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114786','2','4','3','27150','7','5','47','42','0','Khan\'s Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114787','2','4','3','16079','3','5','47','42','0','Khan\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114788','2','4','3','27154','9','5','49','44','0','Protector Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114789','2','4','3','27155','5','5','54','49','0','Protector Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114790','2','4','6','27162','14','1','54','49','4','Protector Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114791','2','4','1','27161','16','7','48','43','0','Protector Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114792','2','4','3','27156','10','5','50','45','0','Protector Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114793','2','4','3','27159','6','5','50','45','0','Protector Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114794','2','4','3','27158','8','5','50','45','0','Protector Ankleguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114795','2','4','3','26115','1','5','53','48','0','Protector Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114796','2','4','3','27157','7','5','53','48','0','Protector Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114797','2','4','3','27160','3','5','51','46','0','Protector Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114798','2','4','3','27194','5','5','59','54','0','Bloodlust Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114799','2','4','3','27192','8','5','58','53','0','Bloodlust Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114800','2','4','6','27202','14','1','59','54','4','Bloodlust Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114801','2','4','1','27197','16','7','52','47','0','Bloodlust Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114802','2','4','3','27196','10','5','55','50','0','Bloodlust Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114803','2','4','3','27185','6','5','55','50','0','Bloodlust Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114804','2','4','3','29938','1','5','58','53','0','Bloodlust Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114805','2','4','3','27195','7','5','57','52','0','Bloodlust Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114806','2','4','3','23490','3','5','57','52','0','Bloodlust Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114807','2','4','3','27193','9','5','53','48','0','Bloodlust Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114808','2','4','3','27137','6','5','59','54','0','Warstrike Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114809','2','4','3','27827','8','5','62','57','0','Warstrike Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114810','2','4','3','27136','9','5','59','54','0','Warstrike Armsplints','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114811','2','4','3','27138','5','5','64','59','0','Warstrike Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114812','2','4','6','27145','14','1','64','59','4','Warstrike Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114813','2','4','1','27143','16','7','57','52','0','Warstrike Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114814','2','4','3','28986','1','5','63','58','0','Warstrike Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114815','2','4','3','27536','10','5','62','57','0','Warstrike Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114816','2','4','3','27140','7','5','62','57','0','Warstrike Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114817','2','4','3','27142','3','5','62','57','0','Warstrike Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114821','2','4','4','26811','5','6','43','40','0','Symbolic Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114825','2','4','6','25134','14','1','43','38','4','Symbolic Crest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114826','2','4','4','26812','10','6','41','40','0','Symbolic Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114827','2','4','4','26810','6','6','41','40','0','Symbolic Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114828','2','4','4','26813','8','6','42','40','0','Symbolic Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114829','2','4','4','26814','7','6','42','40','0','Symbolic Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114830','2','4','4','26818','3','6','42','40','0','Symbolic Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114831','2','4','4','27182','1','6','43','40','0','Symbolic Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114832','2','4','4','26815','9','6','41','40','0','Symbolic Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114833','2','4','4','29015','10','6','44','40','0','Tyrant\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114834','2','4','4','26685','9','6','43','40','0','Tyrant\'s Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114835','2','4','4','26687','5','6','48','43','0','Tyrant\'s Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114838','2','4','4','26686','6','6','43','40','0','Tyrant\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114839','2','4','4','26690','8','6','44','40','0','Tyrant\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114840','2','4','4','26691','7','6','47','42','0','Tyrant\'s Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114841','2','4','4','26688','3','6','44','40','0','Tyrant\'s Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114842','2','4','6','26693','14','1','48','43','4','Tyrant\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114843','2','4','4','26692','1','6','46','41','0','Tyrant\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114844','2','4','4','26820','5','6','54','49','0','Sunscale Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114846','2','4','4','27190','10','6','50','45','0','Sunscale Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114847','2','4','4','26819','6','6','49','44','0','Sunscale Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114848','2','4','4','26822','8','6','50','45','0','Sunscale Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114849','2','4','4','27186','1','6','53','48','0','Sunscale Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114850','2','4','4','26824','7','6','52','47','0','Sunscale Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114851','2','4','4','26825','3','6','51','46','0','Sunscale Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114852','2','4','6','11925','14','1','54','49','4','Sunscale Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114853','2','4','4','26821','9','6','48','43','0','Sunscale Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114854','2','4','4','26846','5','6','59','54','0','Vanguard Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114855','2','4','4','26847','10','6','55','50','0','Vanguard Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114856','2','4','4','26848','6','6','54','49','0','Vanguard Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114857','2','4','4','26850','8','6','54','49','0','Vanguard Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114858','2','4','4','28985','1','6','58','53','0','Vanguard Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114859','2','4','4','26849','7','6','57','52','0','Vanguard Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114860','2','4','4','27876','3','6','56','51','0','Vanguard Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114861','2','4','4','19760','9','6','52','47','0','Vanguard Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114862','2','4','4','26880','5','6','63','58','0','Warleader\'s Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114863','2','4','4','26881','10','6','60','55','0','Warleader\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114864','2','4','4','26879','6','6','59','54','0','Warleader\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114865','2','4','4','26883','8','6','60','55','0','Warleader\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114866','2','4','4','27180','1','6','62','57','0','Warleader\'s Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114867','2','4','4','26884','7','6','62','57','0','Warleader\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114868','2','4','4','26885','3','6','61','56','0','Warleader\'s Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114869','2','4','4','26878','9','6','58','53','0','Warleader\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114895','2','4','4','26654','5','6','41','40','0','Saltstone Surcoat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114896','2','4','4','26652','8','6','40','40','0','Saltstone Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114897','2','4','4','27838','10','6','40','40','0','Saltstone Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114898','2','4','4','26650','6','6','40','40','0','Saltstone Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114899','2','4','4','26656','1','6','41','40','0','Saltstone Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114900','2','4','4','26651','7','6','40','40','0','Saltstone Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114901','2','4','4','26655','3','6','41','40','0','Saltstone Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114902','2','4','6','23847','14','1','41','36','4','Saltstone Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114903','2','4','4','26646','9','6','40','40','0','Saltstone Armsplints','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114904','2','4','4','27899','5','6','50','45','0','Brutish Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114905','2','4','4','27901','10','6','45','40','0','Brutish Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114906','2','4','4','27902','6','6','44','40','0','Brutish Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114907','2','4','4','27906','1','6','48','43','0','Brutish Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114908','2','4','4','27900','7','6','48','43','0','Brutish Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114909','2','4','4','27904','3','6','45','40','0','Brutish Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114910','2','4','4','27903','9','6','44','40','0','Brutish Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114911','2','4','4','27905','8','6','46','41','0','Brutish Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114912','2','4','6','11925','14','1','50','45','4','Brutish Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114913','2','4','4','26799','8','6','49','44','0','Jade Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114914','2','4','4','26794','9','6','46','41','0','Jade Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114915','2','4','4','26795','5','6','53','48','0','Jade Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114916','2','4','6','22805','14','1','53','48','4','Jade Deflector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114917','2','4','4','26798','10','6','48','43','0','Jade Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114918','2','4','4','26792','6','6','47','42','0','Jade Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114919','2','4','4','27839','1','6','52','47','0','Jade Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114920','2','4','4','26800','7','6','51','46','0','Jade Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114921','2','4','4','26797','3','6','49','44','0','Jade Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114922','2','4','4','26874','8','6','53','48','0','Lofty Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114923','2','4','4','26869','9','6','50','45','0','Lofty Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114924','2','4','4','26871','5','6','57','52','0','Lofty Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114925','2','4','4','28015','1','6','57','52','0','Lofty Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114926','2','4','4','26872','10','6','53','48','0','Lofty Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114927','2','4','4','26870','6','6','52','47','0','Lofty Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114928','2','4','4','26873','7','6','55','50','0','Lofty Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114929','2','4','4','26875','3','6','54','49','0','Lofty Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114930','2','4','6','20974','14','1','57','52','4','Lofty Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114931','2','4','4','27932','5','6','62','57','0','Heroic Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114932','2','4','4','27829','8','6','58','53','0','Heroic Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114933','2','4','4','27934','10','6','58','53','0','Heroic Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114934','2','4','4','27935','6','6','57','52','0','Heroic Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114935','2','4','4','27942','1','6','60','55','0','Heroic Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114936','2','4','4','27938','7','6','61','56','0','Heroic Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114937','2','4','4','27940','3','6','59','54','0','Heroic Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114938','2','4','4','27933','9','6','56','51','0','Heroic Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114939','2','4','4','26636','5','6','46','41','0','Warbringer\'s Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114940','2','4','4','26643','8','6','43','40','0','Warbringer\'s Sabatons ','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114941','2','4','4','26454','9','6','42','40','0','Warbringer\'s Armsplints','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114942','2','4','4','26640','10','6','42','40','0','Warbringer\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114943','2','4','4','26634','6','6','42','40','0','Warbringer\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114944','2','4','4','27512','1','6','45','40','0','Warbringer\'s Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114945','2','4','4','26641','7','6','45','40','0','Warbringer\'s Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114946','2','4','4','26645','3','6','43','40','0','Warbringer\'s Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114947','2','4','6','23825','14','1','46','41','4','Warbringer\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114948','2','4','4','26838','5','6','51','46','0','Bloodforged Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114949','2','4','4','28996','10','6','47','42','0','Bloodforged Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114950','2','4','4','26836','6','6','46','41','0','Bloodforged Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114951','2','4','4','26842','8','6','47','42','0','Bloodforged Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114952','2','4','4','26257','1','6','50','45','0','Bloodforged Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114953','2','4','4','26840','7','6','49','44','0','Bloodforged Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114954','2','4','6','26844','14','1','51','46','4','Bloodforged Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114955','2','4','4','26843','3','6','47','42','0','Bloodforged Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114956','2','4','4','26837','9','6','45','40','0','Bloodforged Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114957','2','4','4','26833','8','6','51','46','0','High Chief\'s Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114958','2','4','4','26827','5','6','56','51','0','High Chief\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114959','2','4','4','26830','10','6','52','47','0','High Chief\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114960','2','4','4','26828','6','6','51','46','0','High Chief\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114961','2','4','4','27835','1','6','55','50','0','High Chief\'s Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114962','2','4','4','26831','7','6','54','49','0','High Chief\'s Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114963','2','4','4','26834','3','6','53','48','0','High Chief\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114964','2','4','6','23419','14','1','56','51','4','High Chief\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114965','2','4','4','26829','9','6','49','44','0','High Chief\'s Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114966','2','4','4','26859','5','6','61','56','0','Glorious Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114967','2','4','4','27833','10','6','56','51','0','Glorious Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114968','2','4','4','26856','6','6','55','50','0','Glorious Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114969','2','4','4','28024','1','6','59','54','0','Glorious Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114970','2','4','4','26861','7','6','58','53','0','Glorious Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114971','2','4','4','26864','3','6','57','52','0','Glorious Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114972','2','4','4','26862','8','6','56','51','0','Glorious Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114973','2','4','6','26868','14','1','60','55','4','Glorious Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114974','2','4','4','26857','9','6','55','50','0','Glorious Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114975','2','4','4','26890','5','6','65','60','0','Exalted Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114976','2','4','4','26888','10','6','61','56','0','Exalted Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114977','2','4','4','26889','6','6','60','55','0','Exalted Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114978','2','4','4','27832','8','6','63','58','0','Exalted Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114979','2','4','4','26893','1','6','64','59','0','Exalted Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114980','2','4','4','26891','7','6','63','58','0','Exalted Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114981','2','4','4','26894','3','6','62','57','0','Exalted Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114982','2','4','6','26911','14','1','65','60','4','Exalted Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('114983','2','4','4','26887','9','6','59','54','0','Exalted Armsplints','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115003','1','4','2','28007','6','8','8','3','0','Primal Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115004','1','4','2','7537','8','8','9','4','0','Primal Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115005','1','4','2','17017','9','8','9','4','0','Primal Bands','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115006','1','4','6','18508','14','1','9','4','4','Primal Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115007','1','4','1','28011','16','7','8','3','0','Primal Cape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115008','1','4','2','28009','10','8','10','5','0','Primal Mitts','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115009','2','4','2','28008','7','8','11','6','0','Primal Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115010','2','4','2','9536','5','8','11','6','0','Primal Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115011','2','4','2','27668','6','8','15','10','0','Lupine Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115012','2','4','2','14276','8','8','16','11','0','Lupine Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115013','1','4','2','27989','9','8','14','9','0','Lupine Cuffs','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115014','2','4','6','28579','14','1','17','12','4','Lupine Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115015','1','4','1','23050','16','7','13','8','0','Lupine Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115016','2','4','2','27990','10','8','16','11','0','Lupine Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115017','2','4','2','27991','7','8','19','14','0','Lupine Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115018','2','4','2','3390','5','8','20','15','0','Lupine Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115019','1','4','2','27667','3','8','21','16','0','Lupine Mantle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115045','3','4','3','25671','5','5','52','47','0','Green Dragonscale Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115046','3','4','3','25673','7','5','54','49','0','Green Dragonscale Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115047','3','4','3','25675','5','5','61','56','0','Red Dragonscale Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115048','3','4','3','25676','5','5','57','52','0','Blue Dragonscale Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115049','3','4','3','25677','3','5','59','54','0','Blue Dragonscale Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115050','3','4','3','27943','5','5','58','53','0','Black Dragonscale Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115051','3','4','3','27945','3','5','60','55','0','Black Dragonscale Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115052','3','4','3','27944','7','5','60','55','0','Black Dragonscale Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115053','2','4','2','25682','5','8','57','52','0','Volcanic Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115054','2','4','2','25683','7','8','54','49','0','Volcanic Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115055','2','4','2','25685','3','8','61','56','0','Volcanic Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115056','3','4','2','8682','5','8','57','52','0','Stormshroud Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115057','3','4','2','25686','7','8','55','50','0','Stormshroud Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115058','3','4','2','25687','3','8','59','54','0','Stormshroud Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115059','3','4','2','25688','5','8','60','55','0','Living Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115060','3','4','2','25694','7','8','57','52','0','Living Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115061','3','4','2','25695','3','8','54','49','0','Living Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115062','3','4','2','26071','7','8','60','55','0','Devilsaur Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115063','3','4','2','26072','10','8','58','53','0','Devilsaur Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115064','3','4','2','12368','5','8','55','50','0','Warbear Harness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115065','3','4','2','14547','7','8','57','52','0','Warbear Woolies','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115066','3','4','2','25699','5','8','58','53','0','Ironfeather Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115067','3','4','2','25700','3','8','54','49','0','Ironfeather Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115068','2','4','2','19012','5','8','62','57','0','Frostsaber Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115069','2','4','2','25701','7','8','57','52','0','Frostsaber Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115070','2','4','2','25702','10','8','59','54','0','Frostsaber Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115071','2','4','2','25703','8','8','55','50','0','Frostsaber Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115072','2','4','2','25705','7','8','56','51','0','Chimeric Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115073','2','4','2','25709','8','8','55','50','0','Chimeric Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115074','2','4','2','25706','10','8','53','48','0','Chimeric Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115075','2','4','2','25704','5','8','58','53','0','Chimeric Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115076','2','4','3','25710','5','5','53','48','0','Heavy Scorpid Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115077','2','4','3','25720','9','5','51','46','0','Heavy Scorpid Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115078','2','4','3','25718','10','5','55','50','0','Heavy Scorpid Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115079','2','4','3','25714','7','5','57','52','0','Heavy Scorpid Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115080','2','4','3','28976','1','5','59','54','0','Heavy Scorpid Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115081','2','4','3','25713','3','5','61','56','0','Heavy Scorpid Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115082','2','4','3','25719','6','5','56','51','0','Heavy Scorpid Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115083','2','4','2','25724','10','8','52','47','0','Wicked Leather Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115084','2','4','2','25726','9','8','53','48','0','Wicked Leather Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115085','2','4','2','25721','5','8','61','56','0','Wicked Leather Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115086','2','4','2','25729','1','8','56','51','0','Wicked Leather Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115087','2','4','2','25722','7','8','58','53','0','Wicked Leather Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115088','2','4','2','25728','6','8','60','55','0','Wicked Leather Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115090','2','4','2','25731','5','8','62','57','0','Runic Leather Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115091','2','4','2','25735','10','8','54','49','0','Runic Leather Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115092','2','4','2','25736','9','8','55','50','0','Runic Leather Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115093','2','4','2','25737','6','8','56','51','0','Runic Leather Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115094','2','4','2','25739','1','8','58','53','0','Runic Leather Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115095','2','4','2','25732','7','8','60','55','0','Runic Leather Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115096','2','4','2','25734','3','8','62','57','0','Runic Leather Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115104','3','4','1','28432','8','7','39','0','0','Wingborne Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115105','2','2','10','28231','17','2','40','0','2','Staff of Noh\'Orahil','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115106','2','2','10','28236','17','2','40','0','2','Staff of Dar\'Orahil','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115107','3','4','0','25072','23','3','40','0','7','Orb of Noh\'Orahil','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115108','3','4','0','25072','23','-1','40','0','7','Orb of Dar\'Orahil','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115109','2','2','10','28225','17','2','25','0','2','Staff of Soran\'ruk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115110','2','4','2','27880','6','8','20','15','0','Rigid Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115111','2','4','2','1981','8','8','21','16','0','Rigid Moccasins','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115112','2','4','2','27879','9','8','20','15','0','Rigid Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115113','2','4','6','2211','14','1','23','18','4','Rigid Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115114','2','4','1','27514','16','7','19','14','0','Rigid Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115115','2','4','2','27878','10','8','22','17','0','Rigid Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115116','2','4','2','11274','3','8','26','21','0','Rigid Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115117','2','4','2','1978','7','8','24','19','0','Rigid Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115118','2','4','2','27877','5','8','26','21','0','Rigid Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115119','2','4','1','26177','7','7','56','51','0','Highborne Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115120','2','4','2','27887','6','8','26','21','0','Robust Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115121','2','4','2','1966','8','8','28','23','0','Robust Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115122','2','4','2','27888','9','8','25','20','0','Robust Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115123','2','4','6','18449','14','1','28','23','4','Robust Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115124','2','4','1','27693','16','7','25','20','0','Robust Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115125','2','4','2','27881','10','8','29','24','0','Robust Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115126','2','4','2','27884','7','8','29','24','0','Robust Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115127','2','4','2','6775','3','8','30','25','0','Robust Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115128','2','4','2','27882','5','8','31','26','0','Robust Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115129','2','4','2','27886','1','8','31','26','0','Robust Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115130','2','4','2','9548','5','8','34','29','0','Cutthroat\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115131','2','4','2','27710','8','8','32','27','0','Cutthroat\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115132','2','4','2','27706','9','8','29','24','0','Cutthroat\'s Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115133','2','4','6','27720','14','1','33','28','4','Cutthroat\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115134','2','4','2','27711','1','8','37','32','0','Cutthroat\'s Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115135','2','4','1','28563','16','7','30','25','0','Cutthroat\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115136','2','4','2','27708','6','8','31','26','0','Cutthroat\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115137','2','4','2','27715','10','8','33','28','0','Cutthroat\'s Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115138','3','4','1','25921','16','7','60','55','0','Onyxia Scale Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115139','2','4','2','27712','7','8','33','28','0','Cutthroat\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115140','2','4','2','27713','3','8','34','29','0','Cutthroat\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115141','4','4','3','27943','5','5','62','57','0','Onyxia Scale Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115142','2','4','2','27685','8','8','35','30','0','Ghostwalker Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115143','2','4','2','3652','9','8','33','28','0','Ghostwalker Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115144','2','4','2','27689','5','8','37','32','0','Ghostwalker Rags','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115145','2','4','6','27690','14','1','36','31','4','Ghostwalker Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115146','2','4','2','27687','1','8','39','34','0','Ghostwalker Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115147','2','4','1','27686','16','7','33','28','0','Ghostwalker Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115148','2','4','2','27684','6','8','34','29','0','Ghostwalker Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115149','2','4','2','3846','10','8','36','31','0','Ghostwalker Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115150','2','4','2','27688','3','8','36','31','0','Ghostwalker Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115151','2','4','2','3442','7','8','36','31','0','Ghostwalker Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115152','2','4','2','27725','8','8','41','36','0','Nocturnal Shoes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115153','2','4','1','23048','16','7','37','32','0','Nocturnal Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115154','2','4','2','27724','6','8','38','33','0','Nocturnal Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115155','2','4','2','27722','10','8','39','34','0','Nocturnal Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115156','2','4','2','27734','1','8','43','38','0','Nocturnal Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115157','2','4','2','27723','7','8','41','36','0','Nocturnal Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115158','2','4','2','27732','3','8','40','35','0','Nocturnal Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115159','2','4','2','27728','5','8','42','37','0','Nocturnal Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115160','2','4','2','27727','9','8','39','34','0','Nocturnal Wristbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115161','2','4','2','18980','6','8','43','38','0','Imposing Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115162','2','4','2','27916','8','8','45','40','0','Imposing Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115163','2','4','2','27922','9','8','43','38','0','Imposing Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115164','2','4','2','27914','5','8','47','42','0','Imposing Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115165','2','4','1','22253','16','7','42','37','0','Imposing Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115166','2','4','2','27921','10','8','45','40','0','Imposing Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115167','2','4','2','28979','1','8','48','43','0','Imposing Bandana','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115168','2','4','2','17153','7','8','45','40','0','Imposing Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115169','2','4','2','27920','3','8','44','39','0','Imposing Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115170','2','4','2','27586','5','8','52','47','0','Potent Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115171','2','4','2','11832','8','8','50','45','0','Potent Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115172','2','4','2','27589','9','8','47','42','0','Potent Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115173','2','4','1','27593','16','7','46','41','0','Potent Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115174','2','4','2','27591','10','8','50','45','0','Potent Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115175','2','4','2','27907','1','8','51','46','0','Potent Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115176','2','4','2','14697','7','8','50','45','0','Potent Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115177','2','4','2','27592','3','8','49','44','0','Potent Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115178','2','4','2','27590','6','8','47','42','0','Potent Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115179','2','4','2','27663','5','8','57','52','0','Praetorian Padded Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115180','2','4','2','27560','6','8','53','48','0','Praetorian Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115181','2','4','2','27562','8','8','55','50','0','Praetorian Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115182','2','4','2','28584','9','8','51','46','0','Praetorian Wristbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115183','2','4','1','24159','16','7','50','45','0','Praetorian Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115184','2','4','2','27661','10','8','54','49','0','Praetorian Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115185','2','4','2','56052','1','8','57','52','0','Praetorian Coif','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115186','2','4','2','27662','7','8','55','50','0','Praetorian Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115187','2','4','2','27664','3','8','54','49','0','Praetorian Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115188','2','4','2','27632','9','8','57','52','0','Grand Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115189','2','4','2','27634','8','8','60','55','0','Grand Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115190','2','4','1','23051','16','7','55','50','0','Grand Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115191','2','4','2','18980','6','8','57','52','0','Grand Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115192','2','4','2','27635','10','8','60','55','0','Grand Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115193','2','4','2','28022','1','8','62','57','0','Grand Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115194','2','4','2','28019','7','8','61','56','0','Grand Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115195','2','4','2','28018','5','8','62','57','0','Grand Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115196','1','4','0','31254','19','4','20','0','0','Private\'s Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115197','1','4','0','31255','19','4','20','0','0','Scout\'s Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115198','1','4','0','31253','19','4','40','0','0','Knight\'s Colors','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115199','1','4','0','31252','19','4','40','0','0','Stone Guard\'s Herald','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115200','3','4','0','30797','2','5','35','30','0','Senior Sergeant\'s Insignia','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115202','2','4','2','7834','7','8','18','0','0','Wildkeeper Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115203','2','4','3','28189','7','5','18','0','0','Guststorm Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115204','2','2','19','28218','26','2','18','0','0','Moonstone Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115205','2','2','3','28229','26','1','20','0','0','Owlsight Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115206','2','4','0','28197','23','-1','20','0','7','Jadefinger Baton','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115207','2','4','6','41117','14','1','20','0','4','Steelcap Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115210','2','2','7','28544','13','1','16','11','3','Raider Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115211','2','2','7','28567','13','1','22','17','3','Militant Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115212','2','2','7','28527','21','1','27','22','3','Fighter Broadsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115213','2','2','7','28570','13','1','36','31','3','Mercenary Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115214','2','2','7','28561','13','1','40','35','3','Nobles Brand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115215','2','2','7','28528','21','1','45','40','3','Furious Falchion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115216','2','2','7','28530','13','1','51','46','3','Rune Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115217','2','2','7','28458','13','1','54','49','3','Widow Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115218','2','2','7','28346','13','1','57','52','3','Crystal Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115219','2','2','7','13078','13','1','59','54','3','Dimensional Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115220','2','2','7','28316','21','1','62','57','3','Battlefell Sabre','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115221','2','2','7','28552','13','1','65','60','3','Holy War Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115222','2','2','4','28314','21','2','19','14','3','Barbed Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115223','2','2','4','28571','21','2','24','19','3','Jagged Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115224','2','2','4','28318','13','2','25','20','3','Battlesmasher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115225','2','2','4','28521','21','2','33','28','3','Sequoia Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115226','2','2','4','28531','21','2','37','32','3','Giant Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115227','2','2','4','28508','13','2','49','44','3','Diamond-Tip Bludgeon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115228','2','2','4','28512','13','2','53','48','3','Smashing Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115229','2','2','4','19735','13','2','55','50','3','Blesswind Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115230','2','2','0','28539','21','1','25','20','3','Ridge Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115231','2','2','0','28469','13','1','31','26','3','Splitting Hatchet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115232','2','2','0','28542','13','1','33','28','3','Hacking Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115233','2','2','0','28525','21','1','39','34','3','Savage Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115234','2','2','0','5640','21','1','40','35','3','Greater Scythe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115235','2','2','0','28341','13','1','48','43','3','Crescent Edge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115236','2','2','0','28566','13','1','52','47','3','Moon Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115237','2','2','0','28338','13','1','55','50','3','Corpse Harvester','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115238','2','2','0','28459','13','1','58','53','3','Warlord\'s Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115239','2','2','0','28523','13','1','61','56','3','Felstone Reaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115240','2','2','0','28504','13','1','64','59','3','Demon\'s Claw','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115241','2','2','15','20414','13','1','26','21','3','Battle Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115242','2','2','15','28568','13','1','30','25','3','Honed Stiletto','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115243','2','2','15','28348','13','1','36','31','3','Deadly Kris','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115244','2','2','15','3175','13','1','42','37','3','Razor Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115245','2','2','15','6448','13','1','50','45','3','Vorpal Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115246','2','2','15','20299','13','1','62','57','3','Demon Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115247','2','2','15','28327','13','1','64','59','3','Bloodstrike Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115248','2','2','8','28535','17','1','20','15','1','Gleaming Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115249','2','2','8','20080','17','1','26','21','1','Polished Zweihander','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115250','2','2','8','28536','17','1','32','27','1','Glimmering Flamberge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115251','2','2','8','28546','17','1','43','38','1','Headstriker Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115252','2','2','8','28465','17','1','49','44','1','Tusker Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115253','2','2','8','28321','17','1','52','47','1','Beheading Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115254','2','2','8','28347','17','1','54','49','1','Dark Espadon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115255','2','2','8','28529','17','1','57','52','1','Gallant Flamberge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115256','2','2','8','28576','17','1','59','54','1','Massacre Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115257','2','2','8','26589','17','1','62','57','1','Shin Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115258','2','2','8','28517','17','1','65','60','1','Divine Warblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115259','2','2','5','28548','17','2','25','20','1','Hefty Battlehammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115260','2','2','5','28468','17','2','38','33','1','Stone Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115261','2','2','5','28524','17','2','40','35','1','Sequoia Branch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115262','2','2','5','28540','17','2','46','41','1','Greater Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115263','2','2','5','28534','17','2','50','45','1','Royal Mallet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115264','2','2','5','28311','17','2','56','51','1','Backbreaker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115265','2','2','5','28499','17','2','58','53','1','Painbringer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115266','2','2','5','28526','17','2','61','56','1','Fierce Mauler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115267','2','2','5','28674','17','2','63','58','1','Brutehammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115268','2','2','1','28460','17','1','16','11','1','Twin-bladed Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115269','2','2','1','28573','17','1','24','19','1','Massive Battle Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115270','2','2','1','28533','17','1','46','41','1','Gigantic War Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115271','2','2','1','28334','17','1','56','51','1','Colossal Great Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115272','2','2','1','28541','17','1','59','54','1','Razor Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115273','2','2','1','28349','17','1','63','58','1','Death Striker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115274','2','2','10','22144','17','2','52','47','2','Diviner Long Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115275','2','2','10','28467','17','2','54','49','2','Thaumaturgist Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115276','2','2','10','28580','17','2','58','53','2','Magus Long Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115278','2','2','10','28502','17','2','60','55','2','Solstice Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115279','2','2','19','28569','26','2','51','46','0','Ivory Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115280','2','2','19','28457','26','2','53','48','0','Wizard\'s Hand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115281','2','2','19','28538','26','2','57','52','0','Glowstar Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115282','2','2','19','28518','26','2','60','55','0','Dragon Finger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115283','2','2','19','28577','26','2','64','59','0','Lunar Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115284','2','2','2','28572','15','2','29','24','0','Long Battle Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115285','2','2','2','28308','15','2','32','27','0','Archer\'s Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115286','2','2','2','28575','15','2','35','30','0','Long Redwood Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115287','2','2','2','28344','15','2','45','40','0','Crusader Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115288','2','2','2','28322','15','2','61','56','0','Blasthorn Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115289','2','2','2','28309','15','2','65','60','0','Archstrike Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115291','2','2','2','28543','15','2','51','46','0','Harpy Needler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115294','2','2','2','28515','15','2','53','48','0','Siege Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115295','2','2','2','28547','15','2','55','50','0','Quillfire Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115296','2','2','2','28545','15','2','63','58','0','Hawkeye Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115297','1','4','2','28013','9','8','11','6','0','Grizzly Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115298','2','4','6','28017','14','1','13','8','4','Grizzly Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115299','1','4','1','23054','16','7','10','5','0','Grizzly Cape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115300','1','4','2','12415','10','8','14','9','0','Grizzly Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115301','1','4','2','28016','8','8','13','8','0','Grizzly Slippers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115302','1','4','2','28012','6','8','11','6','0','Grizzly Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115303','2','4','2','28014','7','8','14','9','0','Grizzly Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115304','2','4','2','12369','5','8','16','11','0','Grizzly Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115305','2','4','2','28039','8','8','18','13','0','Feral Shoes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115306','2','4','2','28045','9','8','16','11','0','Feral Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115307','2','4','6','20826','14','1','19','14','4','Feral Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115308','2','4','2','17114','6','8','17','12','0','Feral Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115309','2','4','1','28042','16','7','15','10','0','Feral Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115310','2','4','2','28046','10','8','18','13','0','Feral Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115311','2','4','2','11382','5','8','22','17','0','Feral Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115312','2','4','2','14522','7','8','20','15','0','Feral Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115313','1','4','2','9527','3','8','24','19','0','Feral Shoulder Pads','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115322','2','2','3','6591','26','1','39','34','0','Smoothbore Gun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115323','2','2','3','28557','26','1','50','45','0','Percussion Shotgun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115324','2','2','3','28331','26','1','56','51','0','Burnside Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115325','2','2','3','8258','26','1','60','55','0','Sharpshooter Harquebus','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115329','2','4','2','27998','6','8','24','19','0','Wrangler\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115330','2','4','2','27999','8','8','25','20','0','Wrangler\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115331','2','4','2','28001','9','8','23','18','0','Wrangler\'s Wristbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115332','2','4','6','18493','14','1','27','22','4','Wrangler\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115333','2','4','1','28006','16','7','22','17','0','Wrangler\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115334','2','4','2','28005','10','8','27','22','0','Wrangler\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115335','2','2','7','28093','13','1','14','0','3','Briarsteel Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115336','2','4','2','28003','7','8','27','22','0','Wrangler\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115337','2','4','2','27683','5','8','29','24','0','Wrangler\'s Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115338','2','4','2','28002','3','8','28','23','0','Wrangler\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115339','2','4','2','27680','1','8','34','29','0','Pathfinder Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115340','2','4','1','27679','16','7','27','22','0','Pathfinder Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115341','2','4','2','27678','8','8','30','25','0','Pathfinder Footpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115342','2','4','6','28583','14','1','30','25','4','Pathfinder Guard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115343','2','4','2','27677','10','8','30','25','0','Pathfinder Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115344','2','4','2','27681','7','8','31','26','0','Pathfinder Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115345','2','4','2','27682','3','8','31','26','0','Pathfinder Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115346','2','4','2','27683','5','8','32','27','0','Pathfinder Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115347','2','4','2','27674','6','8','28','23','0','Pathfinder Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115348','2','4','2','27675','9','8','26','21','0','Pathfinder Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115349','2','4','2','11953','6','8','33','28','0','Headhunter\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115350','2','4','2','27702','8','8','34','29','0','Headhunter\'s Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115351','2','4','2','27699','9','8','30','25','0','Headhunter\'s Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115352','2','4','6','28269','14','1','34','29','4','Headhunter\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115353','2','4','2','29134','1','8','38','33','0','Headhunter\'s Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115354','2','4','1','27700','16','7','32','27','0','Headhunter\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115355','2','4','2','27701','10','8','34','29','0','Headhunter\'s Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115356','2','4','2','18284','5','8','36','31','0','Headhunter\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115357','2','4','2','27703','3','8','35','30','0','Headhunter\'s Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115358','2','4','2','27704','7','8','35','30','0','Headhunter\'s Woolies','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115359','2','4','2','27956','5','8','41','36','0','Trickster\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115360','2','4','2','27954','9','8','38','33','0','Trickster\'s Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115361','2','4','2','27958','6','8','37','32','0','Trickster\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115362','2','4','2','27957','8','8','39','34','0','Trickster\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115363','2','4','2','27959','1','8','42','37','0','Trickster\'s Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115364','2','4','1','27960','16','7','36','31','0','Trickster\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115365','2','4','2','27955','10','8','38','33','0','Trickster\'s Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115366','2','4','2','17155','7','8','40','35','0','Trickster\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115367','2','4','6','28026','14','1','39','34','4','Trickster\'s Protector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115368','2','4','2','12830','3','8','39','34','0','Trickster\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115369','2','4','2','17231','6','8','42','37','0','Wolf Rider\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115370','2','4','2','27969','8','8','44','39','0','Wolf Rider\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115371','2','4','1','27974','16','7','41','36','0','Wolf Rider\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115372','2','4','2','27970','10','8','43','38','0','Wolf Rider\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115373','2','4','2','27973','1','8','47','42','0','Wolf Rider\'s Headgear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115374','2','4','2','17153','7','8','44','39','0','Wolf Rider\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115375','2','4','2','19008','3','8','43','38','0','Wolf Rider\'s Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115376','2','4','2','27971','5','8','46','41','0','Wolf Rider\'s Padded Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115377','2','4','2','27972','9','8','42','37','0','Wolf Rider\'s Wristbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115378','2','4','2','14702','6','8','46','41','0','Rageclaw Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115379','2','4','2','15412','8','8','48','43','0','Rageclaw Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115380','2','4','2','15413','9','8','46','41','0','Rageclaw Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115381','2','4','2','17094','5','8','51','46','0','Rageclaw Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115382','2','4','1','23018','16','7','45','40','0','Rageclaw Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115383','2','4','2','15415','10','8','48','43','0','Rageclaw Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115384','2','4','2','23544','1','8','50','45','0','Rageclaw Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115385','2','4','2','27555','7','8','49','44','0','Rageclaw Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115386','2','4','2','27553','3','8','48','43','0','Rageclaw Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115387','2','4','2','27655','9','8','50','45','0','Jadefire Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115388','2','4','2','27654','6','8','52','47','0','Jadefire Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115389','2','4','2','13343','8','8','53','48','0','Jadefire Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115390','2','4','2','27656','5','8','56','51','0','Jadefire Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115391','2','4','2','27660','1','8','56','51','0','Jadefire Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115392','2','4','1','27658','16','7','49','44','0','Jadefire Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115393','2','4','2','27657','10','8','52','47','0','Jadefire Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115394','2','4','2','32816','7','8','54','49','0','Jadefire Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115395','2','4','2','17190','3','8','53','48','0','Jadefire Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115396','2','2','15','26602','13','1','14','0','3','Curvewood Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115397','2','2','10','10654','17','2','14','0','2','Oakthrush Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115398','1','4','1','28246','8','7','14','0','0','Sandcomber Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115399','2','4','2','28149','6','8','14','0','0','Dryweed Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115400','1','4','3','28130','9','5','14','0','0','Clamshell Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115401','1','4','1','28183','10','7','14','0','0','Welldrip Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115402','1','4','3','28223','10','5','14','0','0','Noosegrip Gauntlets','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115403','2','4','2','28243','9','8','18','0','0','Ridgeback Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115404','2','4','3','8295','6','5','18','0','0','Breakwater Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115405','2','4','2','9529','10','8','17','0','0','Shucking Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115406','2','4','3','28138','8','5','17','0','0','Crustacean Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115411','3','4','0','23716','2','-1','63','0','0','Mark of Fordring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115413','3','4','4','26373','5','6','63','0','0','Ornate Adamantium Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115418','3','2','5','27412','17','2','63','0','1','Shimmering Platinum Warhammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115421','3','4','1','26681','16','7','63','0','0','Shroud of the Exile','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115424','2','2','1','3243','17','1','18','0','1','Axe of Orgrimmar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115425','2','4','2','28033','9','8','55','50','0','Peerless Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115426','2','4','2','28031','8','8','58','53','0','Peerless Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115427','2','4','1','23048','16','7','54','49','0','Peerless Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115428','2','4','2','28030','6','8','56','51','0','Peerless Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115429','2','4','2','28034','10','8','58','53','0','Peerless Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115430','2','4','2','28035','1','8','60','55','0','Peerless Headband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115431','2','4','2','28029','7','8','59','54','0','Peerless Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115432','2','4','2','28037','3','8','58','53','0','Peerless Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115433','2','4','2','28028','5','8','61','56','0','Peerless Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115434','2','4','2','27616','6','8','61','56','0','Supreme Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115435','2','4','2','27617','8','8','63','58','0','Supreme Shoes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115436','2','4','2','27608','9','8','60','55','0','Supreme Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115437','2','4','1','26271','16','7','61','56','0','Supreme Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115438','2','4','2','29013','10','8','63','58','0','Supreme Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115439','2','4','2','28850','1','8','64','59','0','Supreme Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115440','2','4','2','27615','7','8','63','58','0','Supreme Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115441','2','4','2','27618','3','8','63','58','0','Supreme Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115442','2','4','2','27610','5','8','65','60','0','Supreme Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115443','2','2','15','28199','13','1','18','0','3','Kris of Orgrimmar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115444','2','2','10','28228','17','2','18','0','2','Staff of Orgrimmar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115445','2','2','4','28191','13','2','18','0','3','Hammer of Orgrimmar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115449','2','4','1','16850','7','7','18','0','0','Ghastly Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115450','2','4','2','28147','7','8','18','0','0','Dredgemire Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115451','2','4','3','2922','7','5','18','0','0','Gargoyle Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115452','2','4','1','28168','9','7','18','0','0','Featherbead Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115453','2','4','2','28247','9','8','18','0','0','Savannah Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115455','2','4','1','28323','20','7','37','0','0','Dustfall Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115456','2','4','2','17155','7','8','37','0','0','Lightstep Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115457','2','4','1','26012','3','7','28','0','0','Desert Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115458','2','4','2','28192','8','8','28','0','0','Tundra Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115459','2','4','3','28275','9','5','28','0','0','Grimtoll Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115461','2','4','1','26086','8','7','25','0','0','Lightheel Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115462','2','4','2','28286','9','8','25','0','0','Loamflake Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115463','2','4','3','28288','10','5','25','0','0','Palestrider Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115464','2','2','5','28096','17','2','28','0','1','Brute Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115465','2','2','19','28216','26','2','28','0','0','Stingshot Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115466','2','4','6','28269','14','1','28','0','4','Clink Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115467','2','4','0','23728','11','5','31','0','0','Inventor\'s League Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115468','2','4','1','28303','16','7','29','0','0','Windsong Drape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115469','2','4','2','28302','6','8','29','0','0','Windsong Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115470','2','4','3','28290','7','5','29','0','0','Plainsguard Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115471','2','4','2','28266','5','8','29','0','0','Brawnhide Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115472','1','4','3','26937','6','5','9','4','0','Charger\'s Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115473','1','4','3','26939','8','5','10','5','0','Charger\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115474','1','4','3','26938','9','5','8','3','0','Charger\'s Bindings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115475','1','4','1','26980','16','7','8','3','0','Charger\'s Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115476','1','4','3','28998','10','5','10','5','0','Charger\'s Handwraps','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115477','2','4','3','26941','7','5','11','6','0','Charger\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115478','1','4','6','3931','14','1','8','3','4','Charger\'s Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115479','2','4','3','26936','5','5','11','6','0','Charger\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115480','1','4','3','26953','6','5','13','8','0','War Torn Girdle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115481','1','4','3','26956','8','5','13','8','0','War Torn Greaves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115482','1','4','3','26952','9','5','11','6','0','War Torn Bands','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115483','1','4','1','26958','16','7','10','5','0','War Torn Cape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115484','1','4','3','26954','10','5','12','7','0','War Torn Handgrips','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115485','2','4','3','26955','7','5','14','9','0','War Torn Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115486','2','4','6','26959','14','1','12','7','4','War Torn Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115487','2','4','3','26957','5','5','16','11','0','War Torn Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115488','2','4','3','27004','5','5','21','16','0','Bloodspattered Surcoat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115489','2','4','3','27001','8','5','16','11','0','Bloodspattered Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115490','1','4','1','27006','16','7','14','9','0','Bloodspattered Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115491','2','4','3','27000','10','5','15','10','0','Bloodspattered Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115492','2','4','3','27029','6','5','15','10','0','Bloodspattered Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115493','2','4','3','26998','7','5','18','13','0','Bloodspattered Loincloth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115494','2','4','6','23750','14','1','18','13','4','Bloodspattered Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115495','2','4','3','27005','9','5','15','10','0','Bloodspattered Wristbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115496','1','4','3','27003','3','5','21','16','0','Bloodspattered Shoulder Pads','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115497','2','4','3','27127','6','5','19','14','0','Outrunner\'s Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115498','2','4','3','27541','8','5','20','15','0','Outrunner\'s Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115499','2','4','3','26993','9','5','18','13','0','Outrunner\'s Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115500','2','4','3','26990','5','5','24','19','0','Outrunner\'s Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115501','2','4','1','26991','16','7','17','12','0','Outrunner\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115502','2','4','3','26994','10','5','20','15','0','Outrunner\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115503','2','4','3','26995','7','5','22','17','0','Outrunner\'s Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115504','2','4','6','26855','14','1','22','17','4','Outrunner\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115505','1','4','3','26997','3','5','23','18','0','Outrunner\'s Pauldrons','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115506','2','4','3','26970','8','5','21','16','0','Grunt\'s AnkleWraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115507','2','4','3','26971','9','5','19','14','0','Grunt\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115508','2','4','1','26977','16','7','19','14','0','Grunt\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115509','2','4','3','26973','10','5','21','16','0','Grunt\'s Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115510','2','4','3','26969','6','5','20','15','0','Grunt\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115511','2','4','3','26974','7','5','24','19','0','Grunt\'s Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115512','2','4','6','26978','14','1','24','19','4','Grunt\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115513','2','4','3','26975','3','5','25','20','0','Grunt\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115514','2','4','3','26972','5','5','26','21','0','Grunt\'s Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115515','2','4','3','26960','6','5','25','20','0','Spiked Chain Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115516','2','4','3','26964','8','5','27','22','0','Spiked Chain Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115517','2','4','3','24793','9','5','25','20','0','Spiked Chain Wristbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115518','2','4','3','26961','5','5','30','25','0','Spiked Chain Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115519','2','4','1','26962','16','7','23','18','0','Spiked Chain Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115520','2','4','3','26963','10','5','26','21','0','Spiked Chain Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115521','2','4','3','26968','7','5','27','22','0','Spiked Chain Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115522','2','4','6','18775','14','1','29','24','4','Spiked Chain Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115523','2','4','3','26965','3','5','27','22','0','Spiked Chain Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115524','2','4','3','27081','5','5','31','26','0','Sentry\'s Surcoat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115525','2','4','3','27540','8','5','28','23','0','Sentry\'s Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115526','2','4','1','27082','16','7','24','19','0','Sentry\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115527','2','4','3','27075','10','5','27','22','0','Sentry\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115528','2','4','3','27079','6','5','26','21','0','Sentry\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115529','2','4','3','27076','7','5','29','24','0','Sentry\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115530','2','4','6','27084','14','1','31','26','4','Sentry\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115531','2','4','3','27080','3','5','30','25','0','Sentry\'s Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115532','2','4','3','27074','9','5','26','21','0','Sentry\'s Armsplints','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115533','2','4','3','27083','1','5','31','26','0','Sentry\'s Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115534','2','4','3','27037','8','5','31','26','0','Wicked Chain Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115535','2','4','3','27038','9','5','29','24','0','Wicked Chain Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115536','2','4','3','27039','5','5','34','29','0','Wicked Chain Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115537','2','4','1','27040','16','7','28','23','0','Wicked Chain Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115538','2','4','3','27041','10','5','30','25','0','Wicked Chain Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115539','2','4','3','27045','6','5','30','25','0','Wicked Chain Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115540','2','4','3','27042','1','5','34','29','0','Wicked Chain Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115541','2','4','3','27043','7','5','33','28','0','Wicked Chain Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115542','2','4','3','27044','3','5','32','27','0','Wicked Chain Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115543','2','4','6','26060','14','1','34','29','4','Wicked Chain Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115544','2','4','3','27022','8','5','32','27','0','Thick Scale Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115545','2','4','3','27017','9','5','30','25','0','Thick Scale Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115546','2','4','3','27018','5','5','36','31','0','Thick Scale Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115547','2','4','1','26951','16','7','29','24','0','Thick Scale Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115548','2','4','3','27019','10','5','32','27','0','Thick Scale Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115549','2','4','3','27016','6','5','31','26','0','Thick Scale Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115550','2','4','3','30091','1','5','35','30','0','Thick Scale Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115551','2','4','3','27020','7','5','35','30','0','Thick Scale Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115552','2','4','6','27024','14','1','36','31','4','Thick Scale Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115553','2','4','3','27023','3','5','34','29','0','Thick Scale Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115554','2','4','3','27068','6','5','33','28','0','Pillager\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115555','2','4','3','27065','8','5','33','28','0','Pillager\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115556','2','4','3','27066','9','5','32','27','0','Pillager\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115557','2','4','3','27067','5','5','37','32','0','Pillager\'s Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115558','2','4','3','27073','1','5','37','32','0','Pillager\'s Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115559','2','4','1','27072','16','7','31','26','0','Pillager\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115560','2','4','3','27069','10','5','34','29','0','Pillager\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115561','2','4','3','27070','7','5','36','31','0','Pillager\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115562','2','4','3','27071','3','5','36','31','0','Pillager\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115563','2','4','6','20973','14','1','37','32','4','Pillager\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115565','2','4','3','27059','8','5','38','33','0','Marauder\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115566','2','4','3','27058','9','5','35','30','0','Marauder\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115567','2','4','3','27063','5','5','40','35','0','Marauder\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115568','2','4','1','27062','16','7','33','28','0','Marauder\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115569','2','4','6','27064','14','1','40','35','4','Marauder\'s Crest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115570','2','4','3','27060','10','5','36','31','0','Marauder\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115571','2','4','3','27057','6','5','35','30','0','Marauder\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115572','2','4','3','30092','1','5','39','34','0','Marauder\'s Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115573','2','4','3','27061','7','5','38','33','0','Marauder\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115574','2','4','3','25872','3','5','40','35','0','Marauder\'s Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115575','2','4','3','27110','6','5','36','31','0','Sparkleshell Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115576','2','4','3','27115','8','5','39','34','0','Sparkleshell Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115577','2','4','3','27111','9','5','36','31','0','Sparkleshell Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115578','2','4','3','27112','5','5','41','36','0','Sparkleshell Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115579','2','4','1','25910','16','7','35','30','0','Sparkleshell Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115580','2','4','3','15517','1','5','40','35','0','Sparkleshell Headwrap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115581','2','4','3','27113','10','5','38','33','0','Sparkleshell Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115582','2','4','3','27114','7','5','40','35','0','Sparkleshell Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115583','2','4','3','27116','3','5','41','36','0','Sparkleshell Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115584','2','4','6','25911','14','1','41','36','4','Sparkleshell Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115585','2','4','1','28289','10','7','35','0','0','Pardoc Grips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115587','2','4','2','28292','6','8','35','0','0','Ringtail Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115588','2','4','3','28265','6','5','35','0','0','Bracesteel Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115589','2','4','3','27891','8','5','41','36','0','Steadfast Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115590','2','4','3','27895','9','5','37','32','0','Steadfast Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115591','2','4','3','27889','5','5','43','38','0','Steadfast Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115592','2','4','6','27896','14','1','43','38','4','Steadfast Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115593','2','4','3','27898','1','5','42','37','0','Steadfast Coronet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115594','2','4','1','27108','16','7','37','32','0','Steadfast Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115595','2','4','3','27892','10','5','39','34','0','Steadfast Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115596','2','4','3','27890','7','5','41','36','0','Steadfast Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115597','2','4','3','27893','3','5','42','37','0','Steadfast Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115598','2','4','3','27894','6','5','38','33','0','Steadfast Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115599','2','4','3','27120','8','5','44','39','0','Ancient Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115600','2','4','3','27122','9','5','42','37','0','Ancient Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115601','2','4','3','27118','5','5','46','41','0','Ancient Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115602','2','4','3','27124','1','5','45','40','0','Ancient Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115603','2','4','1','27082','16','7','41','36','0','Ancient Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115604','2','4','6','27126','14','1','46','41','4','Ancient Defender','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115605','2','4','3','27119','10','5','42','37','0','Ancient Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115606','2','4','3','27117','6','5','41','36','0','Ancient Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115607','2','4','3','27121','7','5','44','39','0','Ancient Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115608','2','4','3','27123','3','5','44','39','0','Ancient Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115609','2','4','3','27322','5','5','47','42','0','Bonelink Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115610','2','4','3','27324','9','5','43','38','0','Bonelink Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115611','2','4','1','27325','16','7','43','38','0','Bonelink Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115612','2','4','3','27326','10','5','44','39','0','Bonelink Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115613','2','4','3','27323','6','5','42','37','0','Bonelink Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115614','2','4','3','27328','8','5','45','40','0','Bonelink Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115615','2','4','3','26098','1','5','46','41','0','Bonelink Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115616','2','4','3','27327','7','5','46','41','0','Bonelink Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115617','2','4','3','26091','3','5','45','40','0','Bonelink Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115618','2','4','6','26099','14','1','47','42','4','Bonelink Wall Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115619','2','4','3','27127','6','5','48','43','0','Gryphon Mail Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115620','2','4','3','27128','9','5','47','42','0','Gryphon Mail Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115621','2','4','6','27135','14','1','51','46','4','Gryphon Mail Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115622','2','4','3','27129','5','5','51','46','0','Gryphon Mail Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115623','2','4','3','28977','1','5','50','45','0','Gryphon Mail Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115624','2','4','1','28565','16','7','45','40','0','Gryphon Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115625','2','4','3','31382','10','5','47','42','0','Gryphon Mail Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115626','2','4','3','27132','8','5','47','42','0','Gryphon Mail Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115627','2','4','3','27133','7','5','50','45','0','Gryphon Mail Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115628','2','4','3','27134','3','5','48','43','0','Gryphon Mail Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115629','2','4','3','27208','9','5','48','43','0','Formidable Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115630','2','4','3','27215','8','5','49','44','0','Formidable Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115631','2','4','3','27212','5','5','52','47','0','Formidable Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115632','2','4','1','27220','16','7','46','41','0','Formidable Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115633','2','4','6','27222','14','1','52','47','4','Formidable Crest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115634','2','4','3','26330','1','5','52','47','0','Formidable Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115635','2','4','3','27825','10','5','48','43','0','Formidable Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115636','2','4','3','27206','6','5','49','44','0','Formidable Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115637','2','4','3','27214','7','5','51','46','0','Formidable Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115638','2','4','3','27218','3','5','49','44','0','Formidable Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115639','2','4','3','27170','9','5','50','45','0','Ironhide Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115640','2','4','3','27171','5','5','56','51','0','Ironhide Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115641','2','4','3','27169','6','5','51','46','0','Ironhide Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115642','2','4','3','27173','8','5','52','47','0','Ironhide Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115643','2','4','1','27176','16','7','49','44','0','Ironhide Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115644','2','4','3','29006','10','5','52','47','0','Ironhide Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115645','2','4','3','27178','1','5','55','50','0','Ironhide Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115646','2','4','3','27174','7','5','55','50','0','Ironhide Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115647','2','4','3','27177','3','5','53','48','0','Ironhide Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115648','2','4','6','27179','14','1','56','51','4','Ironhide Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115649','2','4','3','27286','9','5','51','46','0','Merciless Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115650','2','4','3','27290','5','5','57','52','0','Merciless Surcoat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115651','2','4','3','27293','1','5','56','51','0','Merciless Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115652','2','4','1','27292','16','7','51','46','0','Merciless Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115653','2','4','3','27287','10','5','53','48','0','Merciless Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115654','2','4','3','27285','6','5','54','49','0','Merciless Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115655','2','4','3','27289','7','5','56','51','0','Merciless Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115656','2','4','3','27291','3','5','54','49','0','Merciless Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115657','2','4','6','27294','14','1','57','52','4','Merciless Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115658','2','4','3','27301','8','5','59','54','0','Impenetrable Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115659','2','4','3','27296','9','5','55','50','0','Impenetrable Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115660','2','4','3','27297','5','5','61','56','0','Impenetrable Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115661','2','4','1','27304','16','7','54','49','0','Impenetrable Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115662','2','4','3','27299','10','5','57','52','0','Impenetrable Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115663','2','4','3','27295','6','5','56','51','0','Impenetrable Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115664','2','4','3','27306','1','5','60','55','0','Impenetrable Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115665','2','4','3','27300','7','5','60','55','0','Impenetrable Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115666','2','4','3','27302','3','5','59','54','0','Impenetrable Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115667','2','4','6','27305','14','1','61','56','4','Impenetrable Wall','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115668','2','4','3','27314','9','5','58','53','0','Magnificent Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115669','2','4','3','27315','5','5','62','57','0','Magnificent Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115670','2','4','3','41846','1','5','61','56','0','Magnificent Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115671','2','4','1','26141','16','7','56','51','0','Magnificent Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115672','2','4','3','27317','10','5','60','55','0','Magnificent Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115673','2','4','3','27313','6','5','58','53','0','Magnificent Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115674','2','4','3','27318','8','5','60','55','0','Magnificent Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115675','2','4','6','26152','14','1','62','57','4','Magnificent Guard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115676','2','4','3','27319','7','5','61','56','0','Magnificent Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115677','2','4','3','27320','3','5','61','56','0','Magnificent Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115678','2','4','3','27312','8','5','63','58','0','Triumphant Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115679','2','4','3','27307','9','5','61','56','0','Triumphant Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115680','2','4','3','27308','5','5','65','60','0','Triumphant Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115681','2','4','1','26259','16','7','58','53','0','Triumphant Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115682','2','4','3','27309','10','5','63','58','0','Triumphant Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115683','2','4','3','27310','6','5','60','55','0','Triumphant Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115684','2','4','3','27151','1','5','64','59','0','Triumphant Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115685','2','4','3','27311','7','5','63','58','0','Triumphant Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115686','2','4','3','16079','3','5','63','58','0','Triumphant Shoulder Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115687','2','4','6','26120','14','1','65','60','4','Triumphant Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115689','2','4','0','26391','11','1','35','0','0','Trader\'s Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115690','2','4','0','9860','2','3','41','0','0','Kodobone Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115691','2','2','3','26411','26','1','38','0','0','Sidegunner Shottie','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115692','2','2','19','26412','26','2','38','0','0','Kodo Brander','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115693','2','4','2','28020','3','8','59','54','0','Grand Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115694','2','4','3','27288','8','5','54','49','0','Merciless Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115695','2','4','6','26413','14','1','38','0','4','Studded Ring Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115697','2','4','1','26415','8','7','38','0','0','Kodo Rustler Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115698','2','4','3','26419','3','5','38','0','0','Wrangling Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115702','2','4','0','6486','11','5','55','0','1','Chemist\'s Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115703','2','4','1','26431','16','7','55','0','0','Chemist\'s Smock','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115704','2','4','0','4841','2','3','60','0','0','Hunter\'s Insignia Medal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115705','2','2','7','26432','13','1','57','0','3','Tidecrest Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115706','2','2','15','26433','13','1','57','0','3','Hunt Tracker Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115707','2','4','1','26435','6','7','58','0','0','Brantwood Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115708','2','4','2','26436','10','8','58','0','0','Blight Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115709','2','4','4','26437','6','6','58','0','0','Gearforge Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115782','2','2','7','26463','13','1','60','0','3','Beaststalker Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115783','2','2','15','26464','13','1','60','0','3','Beasthunter Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115784','2','4','1','26465','3','7','59','0','0','Crystal Breeze Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115786','2','4','2','26466','5','8','59','0','0','Fernpulse Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115787','2','4','3','26467','5','5','59','0','0','Willow Band Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115789','2','4','1','26468','16','7','56','0','0','Deep River Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115791','2','4','1','26470','6','7','58','0','0','Turquoise Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115792','2','4','2','26472','3','8','58','0','0','Plow Wood Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115794','0','4','1','12413','7','-1','10','0','0','Ripped Ogre Loincloth','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115795','2','4','4','26473','10','6','58','0','0','Emerald Mist Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115796','2','4','3','26475','9','5','59','0','0','Seaspray Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115797','2','4','4','26476','9','6','59','0','0','Shining Armplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115799','3','4','0','4841','2','3','58','0','0','Heroic Commendation Medal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115800','3','2','7','26477','13','1','58','0','3','Intrepid Shortsword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115801','3','2','7','26479','13','1','58','0','3','Valiant Shortsword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115802','3','4','1','17256','8','7','56','51','0','Mooncloth Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115804','2','4','1','25958','16','7','56','0','0','Cerise Drape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115805','3','4','0','26491','23','3','61','0','7','Penelope\'s Rose','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115806','3','2','7','26494','13','1','61','0','3','Mirah\'s Song','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115807','1','2','18','10671','26','2','8','3','0','Light Crossbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115808','1','2','18','10671','26','2','21','16','0','Fine Light Crossbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115809','1','2','18','28911','26','2','34','29','0','Heavy Crossbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115810','1','2','6','26500','17','1','25','20','1','Short Spear','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115811','1','2','6','5636','17','1','35','30','1','Heavy Spear','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115812','2','4','1','26501','3','7','56','0','0','Orchid Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115813','2','4','3','26502','6','5','56','0','0','Gold Link Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115814','2','2','7','26503','13','1','60','0','3','Hameya\'s Slayer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115815','2','4','1','23042','16','7','60','0','0','Hameya\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115822','2','4','2','26504','3','8','55','0','0','Shadowskin Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115823','2','4','3','26512','10','5','55','0','0','Bricksteel Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115824','2','4','1','26513','20','7','59','0','0','Astoria Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115825','2','4','2','26514','5','8','59','0','0','Traphook Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115827','2','4','3','26515','5','5','59','0','0','Jadescale Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115853','3','2','0','26535','13','1','60','0','3','Windreaper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115854','3','2','10','26536','17','2','60','0','2','Dancing Sliver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115855','3','4','0','26537','11','5','60','0','0','Ring of Protection','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115856','3','4','0','9657','2','3','60','0','0','Archlight Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115857','3','4','0','26539','23','3','60','0','7','Magebane Scion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115858','2','4','1','26540','10','7','59','0','0','Freewind Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115859','2','4','3','26541','6','5','59','0','0','Seapost Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115860','2','4','4','26542','9','6','60','0','0','Blinkstrike Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115861','2','4','2','26543','8','8','60','0','0','Swiftfoot Treads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115862','2','2','0','26545','13','1','54','0','3','Blitzcleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115863','2','2','4','5205','13','2','54','0','3','Grave Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115864','2','4','1','3658','9','7','39','0','0','Condor Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115865','2','4','6','26548','14','1','39','0','4','Anchorhold Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115866','2','4','0','26549','23','-1','15','0','7','Veildust Medicine Bag','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115867','2','4','0','26551','12','-1','60','0','0','Prismcharm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115873','3','4','0','18119','12','-1','60','0','0','Ragged John\'s Neverending Cup','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115887','2','4','6','26921','14','1','62','57','4','Heroic Guard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115890','2','4','6','26855','14','1','59','54','4','Vanguard Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115891','2','4','6','23825','14','1','26','21','4','Hulking Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115892','2','4','6','27036','14','1','32','27','4','Slayer\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115893','2','4','6','27527','14','1','21','16','4','Prospector\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115894','2','4','6','18483','14','1','25','20','4','Bristlebark Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115895','1','4','6','28449','14','1','8','3','4','Burnt Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115903','1','2','13','26593','21','1','25','20','7','Right-Handed Claw','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115904','1','2','13','26596','21','1','35','30','7','Right-Handed Blades','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115905','1','2','13','26592','21','1','15','10','7','Right-Handed Brass Knuckles','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115906','1','2','13','26592','22','1','15','10','7','Left-Handed Brass Knuckles','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115907','1','2','13','26594','22','1','25','20','7','Left-Handed Claw','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115909','1','2','13','26597','22','1','35','30','7','Left-Handed Blades','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115912','2','4','0','28471','23','-1','23','18','7','Buccaneer\'s Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115918','2','4','0','28472','23','-1','38','33','7','Conjurer\'s Sphere','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115925','2','4','0','28462','23','-1','10','5','7','Journeyman\'s Stave','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115926','2','4','0','28464','23','-1','17','12','7','Spellbinder Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115927','2','4','0','27556','23','-1','27','22','7','Bright Sphere','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115928','2','4','0','28466','23','-1','31','26','7','Silver-thread Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115929','2','4','0','27558','23','-1','37','32','7','Nightsky Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115930','2','4','0','27563','23','-1','56','51','7','Imperial Red Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115931','2','4','0','27575','23','-1','61','56','7','Arcane Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115932','2','4','0','28473','23','-1','12','7','7','Disciple\'s Stein','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115933','2','4','0','27851','23','-1','15','10','7','Simple Branch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115934','2','4','0','28481','23','-1','32','27','7','Sage\'s Stave','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115935','2','4','0','27863','23','-1','34','29','7','Durable Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115936','2','4','0','28475','23','-1','55','50','7','Duskwoven Branch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115937','2','4','0','28455','23','-1','51','46','7','Hibernal Sphere','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115938','2','4','0','28480','23','-1','58','53','7','Mystical Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115939','2','4','0','27612','23','-1','59','54','7','Councillor\'s Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115940','2','4','0','28476','23','-1','62','57','7','Elegant Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115941','2','4','0','27650','23','-1','64','59','7','High Councillor\'s Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115942','2','4','0','28478','23','-1','65','60','7','Master\'s Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115943','2','4','6','27588','14','1','61','56','4','Imbued Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115944','2','4','0','28483','23','-1','12','7','7','Ancestral Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115945','2','4','0','28488','23','-1','18','13','7','Runic Stave','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115946','2','4','0','28487','23','-1','23','18','7','Mystic\'s Sphere','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115947','2','4','0','28489','23','-1','28','23','7','Sanguine Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115962','2','4','0','28492','23','-1','33','28','7','Satyr\'s Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115963','2','4','0','28491','23','-1','39','34','7','Stonecloth Branch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115964','2','4','0','28493','23','-1','44','39','7','Silksand Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115965','2','4','0','28490','23','3','49','44','7','Windchaser Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115966','2','4','0','27874','23','-1','54','49','7','Venomshroud Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115967','2','4','0','28486','23','-1','59','54','7','Highborne Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115968','2','4','0','28484','23','-1','64','59','7','Elunarian Sphere','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115969','2','4','0','28503','23','-1','10','5','7','Beaded Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115970','2','4','0','28554','23','-1','15','10','7','Native Branch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115971','2','4','0','24014','23','-1','20','15','7','Aboriginal Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115972','2','4','0','28562','23','-1','24','19','7','Ritual Stein','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115973','2','4','0','28551','23','-1','30','25','7','Watcher\'s Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115974','2','4','0','5072','23','-1','26','21','7','Pagan Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115975','2','4','0','28514','23','-1','31','26','7','Raincaller Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115976','2','4','0','28555','23','-1','36','31','7','Thistlefur Branch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115977','2','4','0','28025','23','-1','37','32','7','Vital Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115978','2','4','0','28513','23','-1','41','36','7','Geomancer\'s Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115979','2','4','0','18289','23','-1','42','37','7','Embersilk Stave','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115980','2','4','0','28505','23','-1','46','41','7','Darkmist Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115981','2','4','0','28553','23','-1','47','42','7','Lunar Sphere','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115982','2','4','0','28510','23','-1','51','46','7','Bloodwoven Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115983','2','4','0','28516','23','-1','52','47','7','Gaea\'s Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115984','2','4','0','27929','23','-1','56','51','7','Opulent Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115985','2','4','0','28500','23','-1','57','52','7','Arachnidian Branch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115986','2','4','0','20384','23','-1','60','55','7','Bonecaster\'s Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115987','2','4','0','28501','23','-1','61','56','7','Astral Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115988','2','4','0','15884','23','-1','63','58','7','Resplendent Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115989','2','4','0','28511','23','-1','65','60','7','Eternal Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115990','2','4','6','27055','14','1','39','34','4','Enduring Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115991','2','4','6','18775','14','1','63','58','4','Warleader\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115995','2','2','3','26616','26','1','52','47','0','Thorium Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('115999','2','4','1','26614','1','7','54','0','0','Spellpower Goggles Xtreme Plus','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116004','3','2','3','26737','26','1','55','50','0','Dark Iron Rifle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116007','3','2','3','24721','26','1','61','56','0','Flawless Arcanite Rifle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116008','2','4','1','26621','1','7','58','0','0','Master Engineer\'s Goggles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116009','2','4','0','6497','2','3','58','0','0','Voice Amplification Modulator','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116022','3','4','0','60693','12','8','60','50','0','Arcanite Dragonling','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116039','3','2','8','26674','17','1','57','52','1','Ta\'Kierthan Songblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116058','3','4','0','26001','11','5','63','0','0','Fordring\'s Seal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116059','1','4','0','26683','4','7','20','0','0','Common Brown Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116060','1','4','0','10834','4','7','20','0','0','Common White Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116309','3','4','0','26950','2','-1','63','50','0','Drakefire Amulet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116315','3','4','1','27087','16','7','30','25','0','Sergeant Major\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116334','3','4','0','30797','2','5','45','40','0','Sergeant\'s Insignia','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116335','3','4','0','30797','2','5','63','58','0','Senior Sergeant\'s Insignia','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116336','3','4','1','27087','16','7','45','40','0','Sergeant Major\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116337','3','4','1','27087','16','7','60','55','0','Sergeant Major\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116340','3','4','1','27088','16','7','45','40','0','First Sergeant\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116341','3','4','1','27088','16','7','50','45','0','Sergeant\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116342','3','4','1','27087','16','7','63','58','0','Sergeant\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116345','4','2','7','31997','13','1','78','60','3','High Warlord\'s Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116369','3','4','1','31063','8','7','63','58','0','Knight-Lieutenant\'s Silk Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116391','3','4','1','31064','10','7','63','58','0','Knight-Lieutenant\'s Silk Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116392','3','4','2','31068','8','8','63','58','0','Knight-Lieutenant\'s Leather Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116393','3','4','2','31070','8','8','63','58','0','Knight-Lieutenant\'s Dragonhide Footwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116396','3','4','2','31075','10','8','63','58','0','Knight-Lieutenant\'s Leather Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116397','3','4','2','31071','10','8','63','58','0','Knight-Lieutenant\'s Dragonhide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116401','3','4','3','31244','8','5','63','58','0','Knight-Lieutenant\'s Chain Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116403','3','4','3','31245','10','5','63','58','0','Knight-Lieutenant\'s Chain Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116405','3','4','4','26752','8','6','63','58','0','Knight-Lieutenant\'s Plate Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116406','3','4','4','31086','10','6','63','58','0','Knight-Lieutenant\'s Plate Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116409','3','4','4','31082','8','6','63','58','0','Knight-Lieutenant\'s Lamellar Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116410','3','4','4','30321','10','6','63','58','0','Knight-Lieutenant\'s Lamellar Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116413','3','4','1','31057','20','7','63','58','0','Knight-Captain\'s Silk Raiment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116414','3','4','1','27230','7','7','63','58','0','Knight-Captain\'s Silk Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116415','3','4','1','27231','3','7','63','58','0','Lieutenant Commander\'s Silk Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116416','3','4','1','27232','1','7','63','58','0','Lieutenant Commander\'s Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116417','3','4','2','31072','5','8','63','58','0','Knight-Captain\'s Leather Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116418','3','4','2','31077','1','8','63','58','0','Lieutenant Commander\'s Leather Veil','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116419','3','4','2','31073','7','8','63','58','0','Knight-Captain\'s Leather Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116420','3','4','2','31076','3','8','63','58','0','Lieutenant Commander\'s Leather Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116421','3','4','2','31074','5','8','63','58','0','Knight-Captain\'s Dragonhide Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116422','3','4','2','27235','7','8','63','58','0','Knight-Captain\'s Dragonhide Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116423','3','4','2','27236','3','8','63','58','0','Lieutenant Commander\'s Dragonhide Epaulets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116424','3','4','2','27234','1','8','63','58','0','Lieutenant Commander\'s Dragonhide Shroud','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116425','3','4','3','31241','5','5','63','58','0','Knight-Captain\'s Chain Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116426','3','4','3','31242','7','5','63','58','0','Knight-Captain\'s Chain Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116427','3','4','3','31247','3','5','63','58','0','Lieutenant Commander\'s Chain Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116428','3','4','3','31246','1','5','63','58','0','Lieutenant Commander\'s Chain Helmet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116429','3','4','4','28934','1','6','63','58','0','Lieutenant Commander\'s Plate Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116430','3','4','4','31083','5','6','63','58','0','Knight-Captain\'s Plate Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116431','3','4','4','26659','7','6','63','58','0','Knight-Captain\'s Plate Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116432','3','4','4','26662','3','6','63','58','0','Lieutenant Commander\'s Plate Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116433','3','4','4','30315','5','6','63','58','0','Knight-Captain\'s Lamellar Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116434','3','4','4','30316','1','6','63','58','0','Lieutenant Commander\'s Lamellar Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116435','3','4','4','31084','7','6','63','58','0','Knight-Captain\'s Lamellar Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116436','3','4','4','31085','3','6','63','58','0','Lieutenant Commander\'s Lamellar Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116437','4','4','1','33009','8','7','71','60','0','Marshal\'s Silk Footwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116440','4','4','1','32988','10','7','71','60','0','Marshal\'s Silk Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116441','4','4','1','32978','1','7','74','60','0','Field Marshal\'s Coronet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116442','4','4','1','28715','7','7','71','60','0','Marshal\'s Silk Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116443','4','4','1','32981','20','7','74','60','0','Field Marshal\'s Silk Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116444','4','4','1','33004','3','7','74','60','0','Field Marshal\'s Silk Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116446','4','4','2','30333','8','8','71','60','0','Marshal\'s Leather Footguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116448','4','4','2','30334','10','8','71','60','0','Marshal\'s Dragonhide Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116449','4','4','2','30328','3','8','74','60','0','Field Marshal\'s Dragonhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116450','4','4','2','30329','7','8','71','60','0','Marshal\'s Dragonhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116451','4','4','2','30330','1','8','74','60','0','Field Marshal\'s Dragonhide Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116452','4','4','2','30327','5','8','74','60','0','Field Marshal\'s Dragonhide Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116453','4','4','2','30327','5','8','74','60','0','Field Marshal\'s Leather Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116454','4','4','2','30334','10','8','71','60','0','Marshal\'s Leather Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116455','4','4','2','30330','1','8','74','60','0','Field Marshal\'s Leather Mask','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116456','4','4','2','30329','7','8','71','60','0','Marshal\'s Leather Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116457','4','4','2','30328','3','8','74','60','0','Field Marshal\'s Leather Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116459','4','4','2','30333','8','8','71','60','0','Marshal\'s Dragonhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116462','4','4','3','32095','8','5','71','60','0','Marshal\'s Chain Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116463','4','4','3','32098','10','5','71','60','0','Marshal\'s Chain Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116465','4','4','3','32093','1','5','74','60','0','Field Marshal\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116466','4','4','3','32094','5','5','74','60','0','Field Marshal\'s Chain Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116467','4','4','3','32097','7','5','71','60','0','Marshal\'s Chain Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116468','4','4','3','32092','3','5','74','60','0','Field Marshal\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116471','4','4','4','30321','10','6','71','60','0','Marshal\'s Lamellar Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116472','4','4','4','30319','8','6','71','60','0','Marshal\'s Lamellar Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116473','4','4','4','30315','5','6','74','60','0','Field Marshal\'s Lamellar Chestplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116474','4','4','4','30316','1','6','74','60','0','Field Marshal\'s Lamellar Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116475','4','4','4','30317','7','6','71','60','0','Marshal\'s Lamellar Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116476','4','4','4','30318','3','6','74','60','0','Field Marshal\'s Lamellar Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116477','4','4','4','30315','5','6','74','60','0','Field Marshal\'s Plate Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116478','4','4','4','38343','1','6','74','60','0','Field Marshal\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116479','4','4','4','30317','7','6','71','60','0','Marshal\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116480','4','4','4','30318','3','6','74','60','0','Field Marshal\'s Plate Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116483','4','4','4','30319','8','6','71','60','0','Marshal\'s Plate Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116484','4','4','4','30321','10','6','71','60','0','Marshal\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116485','3','4','1','31097','8','7','63','58','0','Blood Guard\'s Silk Footwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116486','3','4','1','27255','9','7','63','58','0','First Sergeant\'s Silk Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116487','3','4','1','31098','10','7','63','58','0','Blood Guard\'s Silk Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116489','3','4','1','31099','1','7','63','58','0','Champion\'s Silk Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116490','3','4','1','26144','7','7','63','58','0','Legionnaire\'s Silk Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116491','3','4','1','31102','20','7','63','58','0','Legionnaire\'s Silk Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116492','3','4','1','31100','3','7','63','58','0','Champion\'s Silk Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116494','3','4','2','27263','8','8','63','58','0','Blood Guard\'s Dragonhide Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116496','3','4','2','27265','10','8','63','58','0','Blood Guard\'s Dragonhide Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116497','3','4','2','30801','9','8','63','58','0','First Sergeant\'s Leather Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116498','3','4','2','31035','8','8','63','58','0','Blood Guard\'s Leather Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116499','3','4','2','31036','10','8','63','58','0','Blood Guard\'s Leather Vices','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116501','3','4','2','28935','3','8','63','58','0','Champion\'s Dragonhide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116502','3','4','2','27267','7','8','63','58','0','Legionnaire\'s Dragonhide Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116503','3','4','2','28106','1','8','63','58','0','Champion\'s Dragonhide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116504','3','4','2','31037','5','8','63','58','0','Legionnaire\'s Dragonhide Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116505','3','4','2','31039','5','8','63','58','0','Legionnaire\'s Leather Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116506','3','4','2','30358','1','8','63','58','0','Champion\'s Leather Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116507','3','4','2','31038','3','8','63','58','0','Champion\'s Leather Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116508','3','4','2','31040','7','8','63','58','0','Legionnaire\'s Leather Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116509','3','4','4','31050','8','6','63','58','0','Blood Guard\'s Plate Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116510','3','4','4','31051','10','6','63','58','0','Blood Guard\'s Plate Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116513','3','4','4','27274','5','6','63','58','0','Legionnaire\'s Plate Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116514','3','4','4','30071','1','6','63','58','0','Champion\'s Plate Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116515','3','4','4','31052','7','6','63','58','0','Legionnaire\'s Plate Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116516','3','4','4','31049','3','6','63','58','0','Champion\'s Plate Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116518','3','4','3','31183','8','5','63','58','0','Blood Guard\'s Mail Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116519','3','4','3','27279','10','5','63','58','0','Blood Guard\'s Mail Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116521','3','4','3','30072','1','5','63','58','0','Champion\'s Mail Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116522','3','4','3','31185','5','5','63','58','0','Legionnaire\'s Mail Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116523','3','4','3','31186','7','5','63','58','0','Legionnaire\'s Mail Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116524','3','4','3','30382','3','5','63','58','0','Champion\'s Mail Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116525','3','4','3','31048','5','5','63','58','0','Legionnaire\'s Chain Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116526','3','4','3','31184','1','5','63','58','0','Champion\'s Chain Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116527','3','4','3','30367','7','5','63','58','0','Legionnaire\'s Chain Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116528','3','4','3','31047','3','5','63','58','0','Champion\'s Chain Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116530','3','4','3','31182','10','5','63','58','0','Blood Guard\'s Chain Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116531','3','4','3','31181','8','5','63','58','0','Blood Guard\'s Chain Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116532','3','4','3','27277','9','5','63','58','0','First Sergeant\'s Mail Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116533','4','4','1','32999','1','7','74','60','0','Warlord\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116534','4','4','1','32998','7','7','71','60','0','General\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116535','4','4','1','33085','20','7','74','60','0','Warlord\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116536','4','4','1','33089','3','7','74','60','0','Warlord\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116539','4','4','1','32996','8','7','71','60','0','General\'s Silk Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116540','4','4','1','32997','10','7','71','60','0','General\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116541','4','4','4','30373','5','6','74','60','0','Warlord\'s Plate Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116542','4','4','4','30374','1','6','74','60','0','Warlord\'s Plate Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116543','4','4','4','30375','7','6','71','60','0','General\'s Plate Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116544','4','4','4','30928','3','6','74','60','0','Warlord\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116545','4','4','4','30370','8','6','71','60','0','General\'s Plate Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116548','4','4','4','30371','10','6','71','60','0','General\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116549','4','4','2','32110','5','8','74','60','0','Warlord\'s Dragonhide Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116550','4','4','2','32134','1','8','74','60','0','Warlord\'s Dragonhide Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116551','4','4','2','32129','3','8','74','60','0','Warlord\'s Dragonhide Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116552','4','4','2','32108','7','8','71','60','0','General\'s Dragonhide Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116554','4','4','2','32106','8','8','71','60','0','General\'s Dragonhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116555','4','4','2','32107','10','8','71','60','0','General\'s Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116558','4','4','2','32114','8','8','71','60','0','General\'s Leather Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116560','4','4','2','32113','10','8','71','60','0','General\'s Leather Mitts','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116561','4','4','2','32132','1','8','74','60','0','Warlord\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116562','4','4','2','32131','3','8','74','60','0','Warlord\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116563','4','4','2','32115','5','8','74','60','0','Warlord\'s Leather Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116564','4','4','2','32112','7','8','71','60','0','General\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116565','4','4','3','32122','5','5','74','60','0','Warlord\'s Chain Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116566','4','4','3','32135','1','5','74','60','0','Warlord\'s Chain Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116567','4','4','3','32120','7','5','71','60','0','General\'s Chain Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116568','4','4','3','32125','3','5','74','60','0','Warlord\'s Chain Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116569','4','4','3','32124','8','5','71','60','0','General\'s Chain Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116571','4','4','3','32119','10','5','71','60','0','General\'s Chain Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116573','4','4','3','32126','8','5','71','60','0','General\'s Mail Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116574','4','4','3','32100','10','5','71','60','0','General\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116577','4','4','3','32103','5','5','74','60','0','Warlord\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116578','4','4','3','32133','1','5','74','60','0','Warlord\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116579','4','4','3','32127','7','5','71','60','0','General\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116580','4','4','3','32128','3','5','74','60','0','Warlord\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116604','2','4','1','27472','20','7','5','0','0','Moon Robes of Elune','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116605','2','4','1','27473','20','7','5','0','0','Friar\'s Robes of the Light','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116606','2','4','1','27477','20','7','5','0','0','Juju Hex Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116607','2','4','1','27479','20','7','5','0','0','Acolyte\'s Sacrificial Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116608','3','4','2','16947','6','8','21','0','0','Aquarius Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116622','2','2','2','27492','15','2','57','0','0','Thornflinger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116623','2','4','0','9857','2','3','57','0','0','Opaline Medallion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116658','2','4','1','27514','16','7','32','0','0','Wildhunter Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116659','2','4','2','28270','6','8','27','0','0','Deftkin Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116660','2','4','6','27517','14','1','27','0','4','Driftmire Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116661','2','4','1','27521','16','7','27','0','0','Soft Willow Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116664','2','4','3','26289','9','5','54','49','0','Ornate Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116666','3','4','3','31416','5','5','63','58','0','Vest of Elements','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116667','3','4','3','45174','1','5','62','57','0','Coif of Elements','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116668','3','4','3','31415','7','5','61','56','0','Kilt of Elements','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116669','3','4','3','30925','3','5','60','55','0','Pauldrons of Elements','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116670','3','4','3','31412','8','5','59','54','0','Boots of Elements','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116671','3','4','3','31411','9','5','57','52','0','Bindings of Elements','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116672','3','4','3','31414','10','5','59','54','0','Gauntlets of Elements','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116673','3','4','3','31413','6','5','58','53','0','Cord of Elements','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116674','3','4','3','31402','5','5','63','58','0','Beaststalker\'s Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116675','3','4','3','31408','8','5','59','54','0','Beaststalker\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116676','3','4','3','31406','10','5','59','54','0','Beaststalker\'s Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116677','3','4','3','31410','1','5','62','57','0','Beaststalker\'s Cap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116678','3','4','3','31403','7','5','61','56','0','Beaststalker\'s Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116679','3','4','3','31409','3','5','60','55','0','Beaststalker\'s Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116680','3','4','3','31404','6','5','58','53','0','Beaststalker\'s Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116681','3','4','3','31405','9','5','57','52','0','Beaststalker\'s Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116682','3','4','1','29594','8','7','59','54','0','Magister\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116683','3','4','1','29597','9','7','57','52','0','Magister\'s Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116684','3','4','1','29593','10','7','59','54','0','Magister\'s Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116685','3','4','1','29596','6','7','58','53','0','Magister\'s Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116686','3','4','1','31087','1','7','62','57','0','Magister\'s Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116687','3','4','1','29273','7','7','61','56','0','Magister\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116688','3','4','1','29591','20','7','63','58','0','Magister\'s Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116689','3','4','1','30211','3','7','60','55','0','Magister\'s Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116690','3','4','1','30422','20','7','63','58','0','Devout Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116691','3','4','1','30430','8','7','59','54','0','Devout Sandals','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116692','3','4','1','30427','10','7','59','54','0','Devout Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116693','3','4','1','31104','1','7','62','57','0','Devout Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116694','3','4','1','30424','7','7','61','56','0','Devout Skirt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116695','3','4','1','31103','3','7','60','55','0','Devout Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116696','3','4','1','30425','6','7','58','53','0','Devout Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116697','3','4','1','30426','9','7','57','52','0','Devout Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116698','3','4','1','31263','1','7','62','57','0','Dreadmist Mask','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116699','3','4','1','29797','7','7','61','56','0','Dreadmist Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116700','3','4','1','29792','20','7','63','58','0','Dreadmist Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116701','3','4','1','29798','3','7','60','55','0','Dreadmist Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116702','3','4','1','29793','6','7','58','53','0','Dreadmist Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116703','3','4','1','29795','9','7','57','52','0','Dreadmist Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116704','3','4','1','29799','8','7','59','54','0','Dreadmist Sandals','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116705','3','4','1','29800','10','7','59','54','0','Dreadmist Wraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116706','3','4','2','29974','5','8','63','58','0','Wildheart Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116707','3','4','2','28180','1','8','62','57','0','Shadowcraft Cap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116708','3','4','2','28179','3','8','60','55','0','Shadowcraft Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116709','3','4','2','28161','7','8','61','56','0','Shadowcraft Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116710','3','4','2','24190','9','8','57','52','0','Shadowcraft Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116711','3','4','2','28162','8','8','59','54','0','Shadowcraft Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116712','3','4','2','28166','10','8','59','54','0','Shadowcraft Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116713','3','4','2','28177','6','8','58','53','0','Shadowcraft Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116714','3','4','2','29977','9','8','57','52','0','Wildheart Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116715','3','4','2','29981','8','8','59','54','0','Wildheart Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116716','3','4','2','29976','6','8','58','53','0','Wildheart Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116717','3','4','2','29979','10','8','59','54','0','Wildheart Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116718','3','4','2','30412','3','8','60','55','0','Wildheart Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116719','3','4','2','29975','7','8','61','56','0','Wildheart Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116720','3','4','2','31228','1','8','62','57','0','Wildheart Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116721','3','4','2','28160','5','8','63','58','0','Shadowcraft Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116722','3','4','4','29968','9','6','57','52','0','Lightforge Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116723','3','4','4','29966','6','6','58','53','0','Lightforge Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116724','3','4','4','29970','10','6','59','54','0','Lightforge Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116725','3','4','4','29967','8','6','59','54','0','Lightforge Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116726','3','4','4','29969','5','6','63','58','0','Lightforge Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116727','3','4','4','31207','1','6','62','57','0','Lightforge Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116728','3','4','4','29972','7','6','61','56','0','Lightforge Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116729','3','4','4','29971','3','6','60','55','0','Lightforge Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116730','3','4','4','29958','5','6','63','58','0','Breastplate of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116731','3','4','4','42241','1','6','62','57','0','Helm of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116732','3','4','4','29963','7','6','61','56','0','Legplates of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116733','3','4','4','29964','3','6','60','55','0','Spaulders of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116734','3','4','4','29960','8','6','59','54','0','Boots of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116735','3','4','4','29961','9','6','57','52','0','Bracers of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116736','3','4','4','29959','6','6','58','53','0','Belt of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116737','3','4','4','29962','10','6','59','54','0','Gauntlets of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116738','2','4','1','27910','10','7','48','0','0','Witherseed Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116739','2','4','2','27911','3','8','48','0','0','Rugwood Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116740','2','4','1','27912','10','7','31','0','0','Shredder Operating Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116741','2','4','2','27913','10','8','31','0','0','Oilrag Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116768','2','4','0','28187','23','3','52','0','7','Furbolg Medicine Pouch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116769','2','2','4','28194','13','2','52','47','3','Furbolg Medicine Totem','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116788','2','4','6','28407','14','1','36','0','4','Captain Rackmore\'s Wheel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116789','2','2','19','28408','26','2','36','0','0','Captain Rackmore\'s Tiller','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116791','2','4','1','26168','9','7','38','0','0','Silkstream Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116792','2','2','4','6794','21','2','37','32','3','Giant Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116793','2','4','3','28454','3','5','38','0','0','Arcmetal Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116794','2','4','3','23729','9','5','38','0','0','Gripsteel Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116795','4','4','1','31517','1','7','66','60','0','Arcanist Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116796','4','4','1','30582','7','7','66','60','0','Arcanist Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116797','4','4','1','30586','3','7','66','60','0','Arcanist Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116798','4','4','1','30581','20','7','66','60','0','Arcanist Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116799','4','4','1','30584','9','7','66','60','0','Arcanist Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116800','4','4','1','30587','8','7','66','60','0','Arcanist Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116801','4','4','1','30585','10','7','66','60','0','Arcanist Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116802','4','4','1','30583','6','7','66','60','0','Arcanist Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116803','4','4','1','31975','8','7','66','60','0','Felheart Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116804','4','4','1','31970','9','7','66','60','0','Felheart Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116805','4','4','1','31971','10','7','66','60','0','Felheart Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116806','4','4','1','31969','6','7','66','60','0','Felheart Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116807','4','4','1','31974','3','7','66','60','0','Felheart Shoulder Pads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116808','4','4','1','31987','1','7','66','60','0','Felheart Horns','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116809','4','4','1','31973','20','7','66','60','0','Felheart Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116810','4','4','1','31972','7','7','66','60','0','Felheart Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116811','4','4','1','31718','8','7','66','60','0','Boots of Prophecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116812','4','4','1','30620','10','7','66','60','0','Gloves of Prophecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116813','4','4','1','31371','1','7','66','60','0','Circlet of Prophecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116814','4','4','1','28198','7','7','66','60','0','Pants of Prophecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116815','4','4','1','31490','20','7','66','60','0','Robes of Prophecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116816','4','4','1','30623','3','7','66','60','0','Mantle of Prophecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116817','4','4','1','30621','6','7','66','60','0','Girdle of Prophecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116818','4','4','1','34046','6','7','76','60','0','Netherwind Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116819','4','4','1','30617','9','7','66','60','0','Vambraces of Prophecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116820','4','4','2','31105','5','8','66','60','0','Nightslayer Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116821','4','4','2','31514','1','8','66','60','0','Nightslayer Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116822','4','4','2','31340','7','8','66','60','0','Nightslayer Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116823','4','4','2','31504','3','8','66','60','0','Nightslayer Shoulder Pads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116824','4','4','2','31109','8','8','66','60','0','Nightslayer Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116825','4','4','2','31106','9','8','66','60','0','Nightslayer Bracelets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116826','4','4','2','31503','10','8','66','60','0','Nightslayer Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116827','4','4','2','31339','6','8','66','60','0','Nightslayer Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116828','4','4','2','31722','6','8','66','60','0','Cenarion Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116829','4','4','2','31724','8','8','66','60','0','Cenarion Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116830','4','4','2','31725','9','8','66','60','0','Cenarion Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116831','4','4','2','31726','10','8','66','60','0','Cenarion Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116832','4','4','2','33653','3','8','76','60','0','Bloodfang Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116833','4','4','2','31797','20','8','66','60','0','Cenarion Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116834','4','4','2','32790','1','8','66','60','0','Cenarion Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116835','4','4','2','31729','7','8','66','60','0','Cenarion Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116836','4','4','2','32016','3','8','66','60','0','Cenarion Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116837','4','4','3','31830','8','5','66','60','0','Earthfury Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116838','4','4','3','31829','6','5','66','60','0','Earthfury Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116839','4','4','3','31834','10','5','66','60','0','Earthfury Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116840','4','4','3','31831','9','5','66','60','0','Earthfury Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116841','4','4','3','31832','20','5','66','60','0','Earthfury Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116842','4','4','3','31835','1','5','66','60','0','Earthfury Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116843','4','4','3','31836','7','5','66','60','0','Earthfury Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116844','4','4','3','31833','3','5','66','60','0','Earthfury Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116845','4','4','3','32022','5','5','66','60','0','Giantstalker\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116846','4','4','3','32028','1','5','66','60','0','Giantstalker\'s Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116847','4','4','3','32029','7','5','66','60','0','Giantstalker\'s Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116848','4','4','3','32030','3','5','66','60','0','Giantstalker\'s Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116849','4','4','3','32040','8','5','66','60','0','Giantstalker\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116850','4','4','3','32021','9','5','66','60','0','Giantstalker\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116851','4','4','3','32019','6','5','66','60','0','Giantstalker\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116852','4','4','3','32024','10','5','66','60','0','Giantstalker\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116853','4','4','4','31505','5','6','66','60','0','Lawbringer Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116854','4','4','4','31506','1','6','66','60','0','Lawbringer Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116855','4','4','4','31352','7','6','66','60','0','Lawbringer Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116856','4','4','4','31510','3','6','66','60','0','Lawbringer Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116857','4','4','4','31509','9','6','66','60','0','Lawbringer Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116858','4','4','4','31353','6','6','66','60','0','Lawbringer Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116859','4','4','4','31354','8','6','66','60','0','Lawbringer Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116860','4','4','4','31507','10','6','66','60','0','Lawbringer Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116861','4','4','4','31020','9','6','66','60','0','Bracers of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116862','4','4','4','31025','8','6','66','60','0','Sabatons of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116863','4','4','4','31022','10','6','66','60','0','Gauntlets of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116864','4','4','4','31019','6','6','66','60','0','Belt of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116865','4','4','4','31021','5','6','66','60','0','Breastplate of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116866','4','4','4','41847','1','6','66','60','0','Helm of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116867','4','4','4','31023','7','6','66','60','0','Legplates of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116868','4','4','4','31024','3','6','66','60','0','Pauldrons of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116873','2','4','2','28522','10','8','38','0','0','Braidfur Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116886','3','2','7','28586','13','1','30','0','3','Outlaw Sabre','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116887','3','4','0','28588','23','1','30','0','7','Witch\'s Finger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116889','2','2','10','28592','17','2','24','0','2','Polished Walking Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116890','2','2','7','28593','13','1','24','0','3','Slatemetal Cutlass','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116891','2','2','7','28608','13','1','21','0','3','Claystone Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116894','2','2','10','28610','17','2','21','0','2','Clear Crystal Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116897','4','4','2','30536','5','8','76','60','0','Stormrage Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116898','4','4','2','30542','8','8','76','60','0','Stormrage Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116899','4','4','2','34016','10','8','76','60','0','Stormrage Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116900','4','4','2','33655','1','8','76','60','0','Stormrage Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116901','4','4','2','30540','7','8','76','60','0','Stormrage Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116902','4','4','2','30546','3','8','76','60','0','Stormrage Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116903','4','4','2','30541','6','8','76','60','0','Stormrage Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116904','4','4','2','30548','9','8','76','60','0','Stormrage Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116905','4','4','2','33650','5','8','76','60','0','Bloodfang Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116906','4','4','2','31111','8','8','76','60','0','Bloodfang Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116907','4','4','2','33651','10','8','76','60','0','Bloodfang Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116908','4','4','2','33743','1','8','76','60','0','Bloodfang Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116909','4','4','2','31115','7','8','76','60','0','Bloodfang Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116910','4','4','2','31110','6','8','76','60','0','Bloodfang Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116911','4','4','2','31127','9','8','76','60','0','Bloodfang Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116912','4','4','1','34044','8','7','76','60','0','Netherwind Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116913','4','4','1','34041','10','7','76','60','0','Netherwind Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116914','4','4','1','34218','1','7','76','60','0','Netherwind Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116915','4','4','1','34039','7','7','76','60','0','Netherwind Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116916','4','4','1','34038','20','7','76','60','0','Netherwind Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116917','4','4','1','34254','3','7','76','60','0','Netherwind Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116918','4','4','1','34045','9','7','76','60','0','Netherwind Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116919','4','4','1','34055','8','7','76','60','0','Boots of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116920','4','4','1','34051','10','7','76','60','0','Handguards of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116921','4','4','1','34233','1','7','76','60','0','Halo of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116922','4','4','1','34049','7','7','76','60','0','Leggings of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116923','4','4','1','34047','20','7','76','60','0','Robes of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116924','4','4','1','34048','3','7','76','60','0','Pauldrons of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116925','4','4','1','34053','6','7','76','60','0','Belt of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116926','4','4','1','34052','9','7','76','60','0','Bindings of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116927','4','4','1','34015','8','7','76','60','0','Nemesis Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116928','4','4','1','34013','10','7','76','60','0','Nemesis Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116929','4','4','1','34369','1','7','76','60','0','Nemesis Skullcap','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116930','4','4','1','29857','7','7','76','60','0','Nemesis Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116931','4','4','1','34014','20','7','76','60','0','Nemesis Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116932','4','4','1','34022','3','7','76','60','0','Nemesis Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116933','4','4','1','34011','6','7','76','60','0','Nemesis Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116934','4','4','1','34012','9','7','76','60','0','Nemesis Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116935','4','4','3','33666','9','5','76','60','0','Dragonstalker\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116936','4','4','3','33665','6','5','76','60','0','Dragonstalker\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116937','4','4','3','34091','3','5','76','60','0','Dragonstalker\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116938','4','4','3','33672','7','5','76','60','0','Dragonstalker\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116939','4','4','3','34367','1','5','76','60','0','Dragonstalker\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116940','4','4','3','33668','10','5','76','60','0','Dragonstalker\'s Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116941','4','4','3','34269','8','5','76','60','0','Dragonstalker\'s Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116942','4','4','3','33667','5','5','76','60','0','Dragonstalker\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116943','4','4','3','34079','9','5','76','60','0','Bracers of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116944','4','4','3','34078','6','5','76','60','0','Belt of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116945','4','4','3','34255','3','5','76','60','0','Epaulets of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116946','4','4','3','34084','7','5','76','60','0','Legplates of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116947','4','4','3','34217','1','5','76','60','0','Helmet of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116948','4','4','3','34082','10','5','76','60','0','Gauntlets of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116949','4','4','3','34083','8','5','76','60','0','Greaves of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116950','4','4','3','34081','5','5','76','60','0','Breastplate of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116951','4','4','4','33634','9','6','76','60','0','Judgement Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116952','4','4','4','33633','6','6','76','60','0','Judgement Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116953','4','4','4','34258','3','6','76','60','0','Judgement Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116954','4','4','4','33637','7','6','76','60','0','Judgement Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116955','4','4','4','45888','1','6','76','60','0','Judgement Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116956','4','4','4','33636','10','6','76','60','0','Judgement Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116957','4','4','4','33639','8','6','76','60','0','Judgement Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116958','4','4','4','33635','5','6','76','60','0','Judgement Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116959','4','4','4','33982','9','6','76','60','0','Bracelets of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116960','4','4','4','33990','6','6','76','60','0','Waistband of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116961','4','4','4','34253','3','6','76','60','0','Pauldrons of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116962','4','4','4','33986','7','6','76','60','0','Legplates of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116963','4','4','4','34215','1','6','76','60','0','Helm of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116964','4','4','4','33984','10','6','76','60','0','Gauntlets of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116965','4','4','4','33989','8','6','76','60','0','Sabatons of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116966','4','4','4','33983','5','6','76','60','0','Breastplate of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116975','3','4','1','28746','6','7','27','0','0','Warsong Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116977','3','4','2','28749','8','8','27','0','0','Warsong Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116978','3','4','3','28750','10','5','27','0','0','Warsong Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116979','4','4','1','28754','10','7','62','57','0','Flarecore Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116980','4','4','1','28756','3','7','61','56','0','Flarecore Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116981','2','4','1','16664','9','7','20','0','0','Owlbeard Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116982','4','4','2','28770','8','8','59','54','0','Corehound Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116983','4','4','2','28856','1','8','60','55','0','Molten Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116984','4','4','3','28760','8','8','61','56','0','Black Dragonscale Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116985','2','4','1','26026','8','7','25','0','0','Windseeker Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116986','2','4','3','28288','10','5','25','0','0','Sandspire Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116987','2','4','2','28767','6','8','27','0','0','Screecher Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116988','4','4','3','28773','3','5','62','57','0','Fiery Chain Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116989','4','4','3','28774','6','6','59','54','0','Fiery Chain Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116990','2','4','1','28775','16','7','27','0','0','Spritekin Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116992','2','2','3','28786','26','1','60','0','0','Smokey\'s Explosive Launcher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116993','2','2','19','28818','26','2','60','0','0','Smokey\'s Fireshooter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116994','2','4','2','28822','10','8','60','0','0','Duskwing Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116995','2','4','2','28823','3','8','60','0','0','Duskwing Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116996','3','2','2','28827','15','2','62','0','0','Gorewood Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116997','3','2','19','28828','26','2','62','0','0','Stormrager','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116998','3','4','6','28829','14','1','62','0','4','Sacred Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('116999','3','4','0','28830','11','-1','59','54','0','Royal Seal of Alexis','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117001','2','4','0','28831','11','-1','62','0','0','Elemental Circle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117002','2','2','0','28834','13','1','61','0','3','Ichor Spitter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117003','2','2','4','28835','13','2','61','0','3','Skullstone Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117004','2','2','10','28836','17','2','61','0','2','Sarah\'s Guide','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117005','2','4','2','28837','5','8','27','0','0','Boorguard Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117006','2','4','3','26995','7','5','27','0','0','Cobalt Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117007','4','4','3','28838','10','5','51','46','0','Stonerender Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117013','4','4','4','28843','7','6','60','55','0','Dark Iron Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117014','4','4','4','28844','9','6','59','54','0','Dark Iron Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117015','3','2','7','28848','13','1','65','60','3','Dark Iron Reaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117016','3','2','0','23276','13','1','65','60','3','Dark Iron Destroyer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117039','2','2','4','28869','13','2','36','0','3','Skullbreaker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117042','2','2','3','28870','26','1','36','0','0','Nail Spitter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117043','2','4','1','28871','20','7','36','0','0','Zealot\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117044','3','4','0','23716','2','5','61','0','0','Will of the Martyr','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117045','3','4','0','28682','11','5','61','0','0','Blood of the Martyr','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117046','2','2','0','28873','13','1','31','0','3','Gutterblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117047','2','4','1','12473','3','7','30','0','0','Luminescent Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117050','3','4','1','28990','20','7','52','47','0','Chan\'s Imperial Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117054','3','2','7','28876','13','1','50','45','3','Joonho\'s Mercy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117055','3','2','4','15887','13','2','50','45','3','Changuk Smasher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117061','3','4','1','28891','16','7','58','53','0','Juno\'s Shadow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117063','4','4','0','9840','11','3','78','60','0','Band of Accuria','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117064','4','4','0','26374','12','2','71','60','0','Shard of the Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117065','4','4','0','4841','2','-1','68','60','0','Medallion of Steadfast Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117066','4','4','6','34110','14','1','67','60','4','Drillborer Disk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117067','4','4','0','29717','23','7','76','60','7','Ancient Cornerstone Grimoire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117068','4','2','0','29161','13','1','75','60','3','Deathbringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117069','4','2','2','30927','15','2','69','60','0','Striker\'s Mark','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117070','4','2','15','29706','21','1','70','60','3','Fang of the Mystics','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117071','4','2','15','34111','13','1','69','60','3','Gutgore Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117072','4','2','3','29163','26','1','70','60','0','Blastershot Launcher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117073','4','2','5','32162','17','2','66','60','1','Earthshaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117074','4','2','6','29176','17','1','63','58','2','Shadowstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117075','4','2','7','32197','13','1','74','60','3','Vis\'kag the Bloodletter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117076','4','2','8','32199','17','1','77','60','1','Bonereaver\'s Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117077','4','2','19','29195','26','2','63','58','0','Crimson Shocker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117078','4','4','1','29719','16','7','72','60','0','Sapphiron Drape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117082','4','4','0','29722','12','2','74','60','0','Shard of the Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117102','4','4','1','29824','16','7','74','60','0','Cloak of the Shrouded Mists','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117103','4','2','7','29677','21','1','71','60','3','Azuresong Mageblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117104','4','2','1','32200','17','1','76','60','1','Spinal Reaper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117105','4','2','4','34109','21','2','69','60','3','Aurastone Hammer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117106','4','4','6','29702','14','1','75','60','4','Malistar\'s Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117107','4','4','1','29827','16','7','73','60','0','Dragon\'s Blood Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117109','4','4','0','9858','2','-1','65','60','0','Choker of Enlightenment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117110','4','4','0','29697','11','3','70','60','0','Seal of the Archmagus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117111','4','4','0','6484','2','-1','68','60','0','Blazefury Medallion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117112','4','2','4','29171','13','2','66','60','3','Empyrean Demolisher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117113','4','2','10','29703','17','2','67','60','2','Amberseal Keeper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117142','5','2','15','29097','13','-1','70','60','1','Shard of the Defiler','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117182','5','2','5','29698','17','1','80','60','1','Sulfuras, Hand of Ragnaros','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117183','1','4','6','2208','14','1','3','1','4','Dented Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117184','1','4','6','18480','14','1','3','1','4','Small Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117185','1','4','6','18509','14','1','8','3','4','Round Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117186','1','4','6','18506','14','1','8','3','4','Small Targe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117187','1','4','6','27782','14','1','14','9','4','Banded Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117188','1','4','6','18468','14','1','19','14','4','Ringed Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117189','1','4','6','18477','14','1','34','29','4','Metal Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117190','1','4','6','18516','14','1','47','42','4','Ornate Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117191','3','2','10','57734','17','4','53','0','2','Scepter of Celebras','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117192','1','4','6','2324','14','1','24','19','4','Reinforced Targe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117193','4','2','5','29699','17','2','67','60','1','Sulfuron Hammer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117223','4','2','6','29191','17','1','63','58','2','Thunderstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117508','2','4','6','4405','14','1','41','0','4','Forcestone Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117523','2','4','1','29630','16','7','58','0','0','Smokey\'s Drape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117562','3','4','1','31059','8','7','63','58','0','Knight-Lieutenant\'s Dreadweave Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117564','3','4','1','31060','10','7','63','58','0','Knight-Lieutenant\'s Dreadweave Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117566','3','4','1','30341','1','7','63','58','0','Lieutenant Commander\'s Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117567','3','4','1','30385','7','7','63','58','0','Knight-Captain\'s Dreadweave Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117568','3','4','1','31053','20','7','63','58','0','Knight-Captain\'s Dreadweave Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117569','3','4','1','31066','3','7','63','58','0','Lieutenant Commander\'s Dreadweave Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117570','3','4','1','27258','1','7','63','58','0','Champion\'s Dreadweave Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117571','3','4','1','31032','7','7','63','58','0','Legionnaire\'s Dreadweave Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117572','3','4','1','27260','20','7','63','58','0','Legionnaire\'s Dreadweave Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117573','3','4','1','30381','3','7','63','58','0','Champion\'s Dreadweave Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117576','3','4','1','31026','8','7','63','58','0','Blood Guard\'s Dreadweave Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117577','3','4','1','27256','10','7','63','58','0','Blood Guard\'s Dreadweave Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117578','4','4','1','32979','1','7','74','60','0','Field Marshal\'s Coronal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117579','4','4','1','33007','7','7','71','60','0','Marshal\'s Dreadweave Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117580','4','4','1','33002','3','7','74','60','0','Field Marshal\'s Dreadweave Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117581','4','4','1','33001','20','7','74','60','0','Field Marshal\'s Dreadweave Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117583','4','4','1','33006','8','7','71','60','0','Marshal\'s Dreadweave Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117584','4','4','1','32995','10','7','71','60','0','Marshal\'s Dreadweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117586','4','4','1','33076','8','7','71','60','0','General\'s Dreadweave Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117588','4','4','1','33077','10','7','71','60','0','General\'s Dreadweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117590','4','4','1','33088','3','7','74','60','0','Warlord\'s Dreadweave Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117591','4','4','1','33071','1','7','74','60','0','Warlord\'s Dreadweave Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117592','4','4','1','33079','20','7','74','60','0','Warlord\'s Dreadweave Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117593','4','4','1','30380','7','7','71','60','0','General\'s Dreadweave Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117594','3','4','1','31061','8','7','63','58','0','Knight-Lieutenant\'s Satin Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117596','3','4','1','31062','10','7','63','58','0','Knight-Lieutenant\'s Satin Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117598','3','4','1','31065','1','7','63','58','0','Lieutenant Commander\'s Diadem','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117599','3','4','1','25198','7','7','63','58','0','Knight-Captain\'s Satin Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117600','3','4','1','31058','20','7','63','58','0','Knight-Captain\'s Satin Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117601','3','4','1','31067','3','7','63','58','0','Lieutenant Commander\'s Satin Amice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117602','4','4','1','32980','1','7','74','60','0','Field Marshal\'s Headdress','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117603','4','4','1','32991','7','7','71','60','0','Marshal\'s Satin Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117604','4','4','1','33005','3','7','74','60','0','Field Marshal\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117605','4','4','1','32984','20','7','74','60','0','Field Marshal\'s Satin Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117607','4','4','1','32992','8','7','71','60','0','Marshal\'s Satin Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117608','4','4','1','32990','10','7','71','60','0','Marshal\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117610','3','4','1','31030','1','7','63','58','0','Champion\'s Satin Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117611','3','4','1','31033','7','7','63','58','0','Legionnaire\'s Satin Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117612','3','4','1','30351','20','7','63','58','0','Legionnaire\'s Satin Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117613','3','4','1','31031','3','7','63','58','0','Champion\'s Satin Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117616','3','4','1','31027','8','7','63','58','0','Blood Guard\'s Satin Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117617','3','4','1','31028','10','7','63','58','0','Blood Guard\'s Satin Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117618','4','4','1','33080','8','7','71','60','0','General\'s Satin Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117620','4','4','1','33081','10','7','71','60','0','General\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117622','4','4','1','33083','3','7','74','60','0','Warlord\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117623','4','4','1','33082','1','7','74','60','0','Warlord\'s Satin Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117624','4','4','1','33084','20','7','74','60','0','Warlord\'s Satin Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117625','4','4','1','26021','7','7','71','60','0','General\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117686','2','2','2','20555','15','2','43','0','0','Master Hunter\'s Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117687','2','2','3','8095','26','1','43','0','0','Master Hunter\'s Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117688','2','4','4','29693','8','6','40','0','0','Jungle Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117690','2','4','0','31475','12','-1','60','0','0','Frostwolf Insignia Rank 1','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117691','2','4','0','31480','12','-1','60','0','0','Stormpike Insignia Rank 1','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117692','2','4','0','4284','11','-1','23','0','0','Horn Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117694','2','4','0','4284','11','-1','25','0','0','Band of the Fist','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117695','2','4','1','16572','3','7','26','0','0','Chestnut Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117704','2','2','0','29759','13','1','38','33','3','Edge of Winter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117705','3','2','7','29769','13','1','53','0','3','Thrash Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117707','3','4','0','29842','2','3','54','48','0','Gemshard Heart','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117710','3','2','15','29872','13','1','54','48','3','Charstone Dirk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117711','3','4','4','29880','7','6','54','48','0','Elemental Rockridge Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117713','3','4','0','23629','11','5','54','48','0','Blackstone Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117714','3','4','3','29890','9','5','54','48','0','Bracers of the Stone Princess','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117715','3','4','1','29894','1','7','54','48','0','Eye of Theradras','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117717','3','2','3','4427','26','1','53','48','0','Megashot Rifle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117718','3','4','6','29896','14','1','53','48','4','Gizlock\'s Hypertech Buckler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117719','3','2','7','29897','13','1','53','48','3','Inventor\'s Focal Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117721','2','4','2','29898','10','8','38','33','0','Gloves of the Greatfather','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117723','1','4','0','29901','4','7','40','0','0','Green Holiday Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117728','3','4','2','30172','8','8','53','48','0','Albino Crocscale Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117730','3','2','1','29907','17','1','53','48','1','Gatorbite Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117732','3','4','1','29908','3','7','53','48','0','Rotgrip Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117733','3','2','4','29910','13','2','53','48','3','Fist of Stone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117734','3','4','4','29911','1','6','53','48','0','Helm of the Mountain','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117736','3','4','3','29912','10','5','53','48','0','Rockgrip Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117737','3','4','0','29914','23','3','53','48','7','Cloud Stone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117738','3','2','13','29915','22','1','52','46','7','Claw of Celebras','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117739','3','4','1','29916','16','7','52','46','0','Grovekeeper\'s Drape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117740','3','4','2','29941','1','8','52','46','0','Soothsayer\'s Headdress','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117741','3','4','1','29918','20','7','51','46','0','Nature\'s Embrace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117742','3','4','2','29919','5','8','51','46','0','Fungus Shroud Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117743','3','2','10','22391','17','2','53','0','2','Resurgence Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117744','3','4','0','29922','12','5','51','46','0','Heart of Noxxion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117745','3','2','19','29924','26','2','51','46','0','Noxious Shooter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117746','3','4','4','29925','9','6','51','46','0','Noxxion\'s Shackles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117748','3','4','1','29927','8','7','51','46','0','Vinerot Sandals','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117749','3','4','2','29928','3','8','51','46','0','Phytoskin Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117750','3','4','1','29929','6','7','51','46','0','Chloromesh Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117751','3','4','2','29930','7','8','51','46','0','Brusslehide Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117752','3','2','15','29931','13','1','50','44','3','Satyr\'s Lash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117753','3','2','2','29932','15','2','53','0','0','Verdant Keeper\'s Aim','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117754','3','4','3','29934','7','5','50','44','0','Infernal Trickster Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117755','3','4','1','14456','6','7','50','44','0','Satyrmane Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117759','3','4','0','23717','12','4','60','0','0','Mark of Resolution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117766','3','2','5','29939','17','2','54','48','1','Princess Theradras\' Scepter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117767','3','4','3','29942','1','5','51','46','0','Bloomsprout Headpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117768','2','4','0','23608','11','5','47','0','0','Woodseed Hoop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117769','2','4','3','29944','3','8','47','0','0','Sagebrush Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117770','2','4','4','30957','10','6','47','0','0','Branchclaw Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117772','2','4','0','15420','2','3','42','0','0','Zealous Shadowshard Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117773','2','4','0','15420','2','3','42','0','0','Prodigious Shadowshard Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117774','2','4','0','29947','12','5','48','0','0','Mark of the Chosen','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117775','2','4','1','29951','20','7','47','0','0','Acumen Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117776','2','4','2','29952','1','8','47','0','0','Sprightring Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117777','2','4','3','29953','5','5','47','0','0','Relentless Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117778','2','4','2','29954','6','8','47','0','0','Sagebrush Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117779','2','4','4','29955','3','6','47','0','0','Hulkstone Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117780','4','2','15','29957','13','1','54','49','3','Blade of Eternal Darkness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117782','5','4','0','6494','2','-1','80','60','0','Talisman of Binding Shard','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117900','2','4','0','31480','12','-1','60','0','0','Stormpike Insignia Rank 2','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117901','2','4','0','31481','12','-1','60','0','0','Stormpike Insignia Rank 3','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117902','3','4','0','31482','12','-1','60','0','0','Stormpike Insignia Rank 4','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117903','3','4','0','31483','12','-1','60','0','0','Stormpike Insignia Rank 5','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117904','4','4','0','31484','12','-1','60','0','0','Stormpike Insignia Rank 6','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117905','2','4','0','31475','12','-1','60','0','0','Frostwolf Insignia Rank 2','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117906','2','4','0','31476','12','-1','60','0','0','Frostwolf Insignia Rank 3','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117907','3','4','0','31477','12','-1','60','0','0','Frostwolf Insignia Rank 4','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117908','3','4','0','31478','12','-1','60','0','0','Frostwolf Insignia Rank 5','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117909','4','4','0','31479','12','-1','60','0','0','Frostwolf Insignia Rank 6','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117922','2','4','2','30171','5','8','10','5','0','Lionfur Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117943','3','2','4','29910','13','2','53','48','3','Fist of Stone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('117982','3','4','0','28682','11','3','65','60','0','Ragnaros Core','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118002','1','2','1','30294','17','1','5','1','1','Forest Mushroom Cap','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118022','3','4','0','28830','11','-1','62','0','0','Royal Seal of Alexis','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118043','3','4','2','2373','8','8','57','52','0','Coal Miner Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118044','3','2','4','30436','13','2','57','52','7','Hurley\'s Tankard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118047','3','4','3','30439','8','5','62','57','0','Flame Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118048','3','2','4','30440','21','2','60','55','3','Mastersmith\'s Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118082','3','2','10','30472','17','2','47','42','2','Zum\'rah\'s Vexing Cane','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118083','3','4','1','30474','10','7','47','42','0','Jumanza Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118102','3','4','1','14617','8','7','63','58','0','Dragonrider Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118103','3','4','0','24022','11','5','63','58','0','Band of Rumination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118104','3','4','3','30492','6','5','63','58','0','Feralsurge Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118168','4','4','6','41067','14','-1','65','60','4','Force Reactive Disk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118202','4','2','13','30594','22','1','66','60','7','Eskhandar\'s Left Claw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118203','4','2','13','30595','21','1','66','60','7','Eskhandar\'s Right Claw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118204','4','4','1','30577','16','7','66','60','0','Eskhandar\'s Pelt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118205','4','4','0','16132','2','-1','71','60','0','Eskhandar\'s Collar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118208','4','4','1','15273','16','7','67','60','0','Drape of Benediction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118231','1','4','0','30605','4','7','1','0','0','Sleeveless T-Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118238','3','4','2','15753','10','8','40','35','0','Shadowskin Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118263','4','4','1','27972','9','7','64','60','0','Flarecore Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118282','4','2','3','31210','26','1','65','60','0','Core Marksman Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118289','3','4','0','9860','2','2','56','51','0','Barbed Thorn Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118295','3','4','1','30639','8','7','55','50','0','Phasing Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118296','3','4','3','30643','9','5','56','51','0','Marksman Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118298','3','4','2','30654','7','8','56','51','0','Unbridled Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118301','2','2','19','30660','26','2','58','53','0','Lethtendris\'s Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118302','2','4','0','30661','11','5','58','53','0','Band of Vigor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118303','3','4','6','4403','14','-1','45','40','4','Nimble Buckler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118304','3','4','3','30663','5','5','45','40','0','Greenroot Mail','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118305','2','4','4','30671','7','6','58','53','0','Breakwater Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118306','2','4','1','30669','10','7','58','53','0','Gloves of Shadowy Mist','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118307','2','4','1','30667','8','7','58','53','0','Riptide Shoes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118308','2','4','2','30670','1','8','58','53','0','Clever Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118309','3','4','2','30672','10','8','59','54','0','Gloves of Restoration','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118310','3','2','7','30673','13','1','59','54','3','Fiendish Machete','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118311','3','2','10','28511','17','2','58','53','2','Quel\'dorei Channeling Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118312','3','4','4','30675','5','6','59','54','0','Energized Chestplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118313','3','4','4','41372','1','6','58','53','0','Helm of Awareness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118314','3','4','0','24646','11','5','59','54','0','Ring of Demonic Guile','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118315','3','4','0','28812','11','5','59','54','0','Ring of Demonic Potency','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118317','3','4','0','9853','2','3','58','53','0','Tempest Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118318','3','4','3','30679','8','5','59','54','0','Merciful Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118319','3','4','3','30680','1','5','58','53','0','Fervent Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118320','3','4','3','30681','3','5','45','40','0','Demonheart Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118321','3','2','4','30915','21','2','59','54','3','Energetic Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118322','3','4','2','6779','8','8','58','53','0','Waterspout Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118323','3','2','2','30683','15','2','58','53','0','Satyr\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118324','3','2','1','13360','17','6','58','53','1','Waveslicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118325','3','4','2','30685','1','8','58','53','0','Felhide Cap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118326','3','4','4','30686','10','6','59','54','0','Razor Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118327','3','4','1','30688','6','8','59','54','0','Whipvine Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118328','3','4','1','30689','16','7','59','54','0','Shadewood Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118337','2','4','1','30693','9','7','59','54','0','Orphic Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118338','3','2','19','21016','26','2','59','54','0','Wand of Arcane Potency','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118339','2','4','1','30703','16','7','59','54','0','Eidolon Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118340','3','4','0','30696','2','3','59','54','0','Eidolon Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118341','3','4','1','30697','6','7','45','40','0','Quel\'dorei Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118342','3','4','6','7559','14','6','45','40','0','Quel\'dorei Guard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118343','2','4','0','9836','11','3','59','59','0','Petrified Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118344','3','4','2','25706','10','8','59','54','0','Stonebark Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118345','2','4','0','9840','11','3','60','55','0','Murmuring Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118346','2','4','1','30698','7','7','60','55','0','Threadbare Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118347','2','2','0','30699','13','1','61','56','3','Well Balanced Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118348','4','2','7','52784','13','1','71','60','3','Quel\'Serrar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118349','2','4','3','30702','10','5','61','56','0','Gauntlets of Accuracy','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118350','2','4','1','15217','16','7','61','56','0','Amplifying Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118351','2','4','4','30704','9','6','61','56','0','Magically Sealed Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118352','2','4','6','30706','14','2','61','56','4','Petrified Bark Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118353','2','2','10','30711','17','2','61','56','2','Stoneflower Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118354','3','4','0','1399','12','3','60','55','0','Pimgib\'s Collar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118366','3','4','4','30721','10','6','60','0','0','Gordok\'s Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118367','3','4','3','30720','10','5','60','0','0','Gordok\'s Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118368','3','4','2','30719','10','8','60','0','0','Gordok\'s Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118369','3','4','1','16710','10','7','60','0','0','Gordok\'s Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118370','3','4','0','30722','12','3','62','57','0','Vigilance Charm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118371','3','4','0','30723','12','3','61','56','0','Mindtap Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118372','3','2','15','30724','13','1','62','57','3','Blade of the New Moon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118373','3','4','2','17099','5','8','62','57','0','Chestplate of Tranquility','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118374','3','4','2','18971','3','8','62','57','0','Flamescarred Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118375','3','4','2','30727','9','8','62','57','0','Bracers of the Eclipse','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118376','3','2','4','30728','13','1','62','57','3','Timeworn Mace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118377','3','4','2','30729','10','8','62','57','0','Quickdraw Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118378','3','4','3','30730','7','5','62','57','0','Silvermoon Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118379','3','4','3','30736','8','5','62','57','0','Odious Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118380','3','4','4','30737','7','6','62','57','0','Eldritch Reinforced Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118381','3','4','0','30738','2','3','62','57','0','Evil Eye Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118382','3','4','1','30739','16','7','62','57','0','Fluctuating Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118383','3','4','4','30740','10','6','61','56','0','Force Imbued Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118384','3','4','4','30743','3','6','62','57','0','Bile-etched Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118385','3','4','1','30744','20','7','62','57','0','Robe of Everlasting Night','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118386','3','4','1','21964','7','7','61','56','0','Padre\'s Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118387','3','4','1','13656','10','7','60','55','0','Brightspark Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118388','3','2','18','30747','26','2','62','57','0','Stoneshatter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118389','3','4','1','15247','16','7','62','57','0','Cloak of the Cosmos','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118390','3','4','2','18935','7','8','61','57','0','Tanglemoss Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118391','3','4','2','30749','6','8','62','57','0','Eyestalk Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118392','3','2','15','6443','22','1','62','57','3','Distracting Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118393','3','4','3','30751','6','2','61','56','0','Warpwood Binding','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118394','3','4','3','30753','9','5','62','57','0','Demon Howl Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118395','3','4','0','9842','11','3','62','57','0','Emerald Flame Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118396','3','2','7','30754','21','6','62','57','3','Mind Carver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118397','3','4','0','9859','2','3','61','56','0','Elder Magus Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118398','3','4','0','9832','11','3','63','0','0','Tidal Loop','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118399','3','4','0','28812','11','3','63','0','0','Ocean\'s Breeze','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118400','2','4','0','26001','11','3','57','0','0','Ring of Living Stone','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118402','2','4','0','29697','11','3','57','0','0','Glowing Crystal Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118403','4','4','0','26391','11','3','74','0','0','Dragonslayer\'s Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118404','4','4','0','9860','2','3','74','0','0','Onyxia Tooth Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118405','4','4','1','30763','6','7','62','57','0','Belt of the Archmage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118406','4','4','0','30764','12','3','74','0','0','Onyxia Blood Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118407','3','4','1','17216','10','7','62','57','0','Felcloth Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118408','3','4','1','30772','10','7','62','57','0','Inferno Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118409','3','4','1','30774','10','7','62','57','0','Mooncloth Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118410','2','2','8','30778','17','6','57','0','1','Sprinter\'s Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118411','2','4','2','31732','8','8','57','0','0','Spry Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118413','3','4','1','30783','16','7','62','57','0','Cloak of Warding','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118420','3','2','5','30792','17','2','63','0','1','Bonecrusher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118421','3','4','3','42211','1','5','63','0','0','Backwood Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118424','3','4','2','30795','8','8','63','0','0','Sedge Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118425','2','4','0','30796','23','3','60','55','7','Kreeg\'s Mug','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118427','3','4','1','27088','16','7','35','30','0','Sergeant\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118428','3','4','0','30797','2','5','50','45','0','Senior Sergeant\'s Insignia','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118429','3','4','4','27273','9','6','63','58','0','First Sergeant\'s Plate Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118430','3','4','4','27273','9','6','50','45','0','First Sergeant\'s Plate Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118432','3','4','3','27277','9','5','50','45','0','First Sergeant\'s Mail Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118434','3','4','2','27262','9','8','63','58','0','First Sergeant\'s Dragonhide Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118435','3','4','2','30801','9','8','50','45','0','First Sergeant\'s Leather Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118436','3','4','2','27262','9','8','50','45','0','First Sergeant\'s Dragonhide Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118437','3','4','1','27255','9','7','50','45','0','First Sergeant\'s Silk Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118440','3','4','1','27087','16','7','35','30','0','Sergeant\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118441','3','4','1','27087','16','7','50','45','0','Sergeant\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118442','3','4','0','30799','2','5','35','30','0','Master Sergeant\'s Insignia','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118443','3','4','0','30799','2','5','63','58','0','Master Sergeant\'s Insignia','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118444','3','4','0','30799','2','5','50','45','0','Master Sergeant\'s Insignia','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118445','3','4','4','27223','9','6','63','58','0','Sergeant Major\'s Plate Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118447','3','4','4','27223','9','6','50','45','0','Sergeant Major\'s Plate Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118448','3','4','3','31248','9','5','63','58','0','Sergeant Major\'s Chain Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118449','3','4','3','31248','9','5','50','45','0','Sergeant Major\'s Chain Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118450','2','4','1','30802','20','7','60','55','0','Robe of Combustion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118451','2','4','2','30803','6','8','60','55','0','Hyena Hide Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118452','3','4','2','30804','9','8','63','58','0','Sergeant Major\'s Leather Armsplints','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118453','3','4','2','30804','9','8','50','45','0','Sergeant Major\'s Leather Armsplints','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118454','3','4','2','30805','9','8','63','58','0','Sergeant Major\'s Dragonhide Armsplints','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118455','3','4','2','30805','9','8','50','45','0','Sergeant Major\'s Dragonhide Armsplints','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118456','3','4','1','30806','9','7','63','58','0','Sergeant Major\'s Silk Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118457','3','4','1','30806','9','7','50','45','0','Sergeant Major\'s Silk Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118458','2','4','3','26103','9','5','60','55','0','Modest Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118459','2','4','4','30807','9','6','60','55','0','Gallant\'s Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118460','2','2','3','30809','26','1','60','55','0','Unsophisticated Hand Cannon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118461','3','4','1','27088','16','7','63','58','0','Sergeant\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118462','2','2','13','30813','13','5','60','55','0','Jagged Bone Fist','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118463','2','2','7','30814','13','6','60','55','3','Ogre Pocket Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118464','2','4','0','9849','11','1','60','55','0','Gordok Nose Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118465','3','4','0','29712','12','-1','62','0','0','Royal Seal of Eldre\'Thalas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118466','3','4','0','29712','12','-1','62','0','0','Royal Seal of Eldre\'Thalas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118467','3','4','0','29712','12','-1','62','0','0','Royal Seal of Eldre\'Thalas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118468','3','4','0','29712','12','-1','62','0','0','Royal Seal of Eldre\'Thalas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118469','3','4','0','29712','12','-1','62','0','0','Royal Seal of Eldre\'Thalas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118470','3','4','0','29712','12','-1','62','0','0','Royal Seal of Eldre\'Thalas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118471','3','4','0','29712','12','-1','62','0','0','Royal Seal of Eldre\'Thalas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118472','3','4','0','29712','12','-1','62','0','0','Royal Seal of Eldre\'Thalas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118473','3','4','0','29712','12','-1','62','0','0','Royal Seal of Eldre\'Thalas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118475','2','4','1','15399','6','7','60','55','0','Oddly Magical Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118476','2','4','2','30817','8','8','60','55','0','Mud Stained Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118477','2','4','2','17142','7','8','60','55','0','Shaggy Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118478','2','4','2','30819','5','8','60','55','0','Hyena Hide Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118479','2','4','3','30820','1','5','60','55','0','Carrion Scorpid Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118480','2','4','4','30821','1','6','60','55','0','Scarab Plate Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118481','2','2','5','5233','17','6','60','55','1','Skullcracking Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118482','2','2','2','8106','15','2','60','55','0','Ogre Toothpick Shooter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118483','3','2','19','25076','26','2','61','56','0','Mana Channeling Wand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118484','3','2','7','30822','13','1','61','56','3','Cho\'Rush\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118485','3','4','6','20900','14','6','61','56','4','Observer\'s Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118486','3','4','1','30824','20','7','61','56','0','Mooncloth Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118490','3','4','2','33293','1','8','61','56','0','Insightful Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118491','3','2','15','30827','13','4','57','0','3','Lorespinner','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118493','3','4','4','30829','3','6','60','55','0','Bulky Iron Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118494','3','4','3','30830','3','5','60','55','0','Denwatcher\'s Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118495','3','4','1','30831','16','7','63','58','0','Redoubt Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118496','3','4','1','30832','16','7','60','55','0','Heliotrope Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118497','3','4','1','30833','9','7','60','55','0','Sublime Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118498','3','2','0','30834','13','1','60','55','3','Hedgecutter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118499','3','4','6','30835','14','6','62','57','4','Barrier Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118500','3','4','0','9823','11','3','61','56','0','Tarnished Elven Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118502','3','2','6','30836','17','6','62','57','1','Monstrous Glaive','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118503','3','4','4','30837','5','6','62','57','0','Kromcrush\'s Chestplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118504','3','4','2','30839','6','8','62','57','0','Girdle of Insight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118505','3','4','2','30838','6','8','62','57','0','Mugger\'s Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118506','3','4','2','9080','8','8','62','57','0','Mongoose Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118507','3','4','1','19921','8','7','62','57','0','Boots of the Full Moon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118508','3','4','3','30848','9','5','62','57','0','Swift Flight Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118509','4','4','1','30849','16','7','62','57','0','Chromatic Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118510','4','4','1','30850','16','7','62','57','0','Hide of the Wild','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118511','4','4','1','30851','16','7','62','57','0','Shifting Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118520','3','2','8','30853','17','1','63','58','1','Barbarous Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118521','3','4','4','30854','8','6','63','58','0','Grimy Metal Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118522','3','4','0','23897','11','3','63','58','0','Band of the Ogre King','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118523','3','4','0','30855','23','3','63','58','7','Brightly Glowing Stone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118524','3','4','3','30857','7','5','63','58','0','Leggings of Destruction','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118525','3','4','2','30859','9','8','63','58','0','Bracers of Prosperity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118526','3','4','1','30860','1','3','63','58','0','Crown of the Ogre King','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118527','3','4','3','30862','10','5','63','58','0','Harmonious Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118528','3','4','2','30864','3','8','61','56','0','Cyclone Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118529','3','4','4','30865','6','6','61','56','0','Elemental Plate Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118530','3','4','3','30866','5','5','62','57','0','Ogre Forged Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118531','3','2','5','30867','17','6','62','57','1','Unyielding Maul','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118532','3','4','1','30868','20','7','62','57','0','Mindsurge Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118533','3','4','4','30869','9','6','63','58','0','Gordok Bracers of Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118534','3','2','10','30870','17','2','63','58','2','Rod of the Ogre Magi','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118535','3','4','6','30872','14','2','59','0','4','Milli\'s Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118536','3','4','0','30875','23','8','59','0','7','Milli\'s Lexicon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118537','3','4','0','21072','12','3','63','58','0','Counterattack Lodestone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118538','4','2','1','30881','17','1','63','58','1','Treant\'s Bane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118541','4','4','1','30882','16','7','70','60','0','Puissant Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118542','4','2','8','30886','17','1','68','60','1','Typhoon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118543','4','4','0','30661','11','3','66','60','0','Ring of Entropy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118544','4','4','2','30893','10','8','71','60','0','Doomhide Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118545','4','4','1','24615','7','7','69','60','0','Leggings of Arcane Supremacy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118546','4','4','3','30889','1','5','69','60','0','Infernal Headcage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118547','4','4','4','30894','6','6','71','60','0','Unmelting Ice Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118582','6','2','7','30936','13','-1','100','70','3','The Twin Blades of Azzinoth','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118583','6','2','7','30934','13','-1','100','70','1','Warglaive of Azzinoth (Right)','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118584','6','2','7','30935','13','-1','100','70','1','Warglaive of Azzinoth (Left)','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118585','3','4','0','9839','11','3','35','0','0','Band of Allegiance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118586','3','4','0','9823','11','3','35','0','0','Lonetree\'s Circle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118602','3','4','0','30875','23','-1','60','0','0','Tome of Sacrifice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118608','4','2','10','31347','17','2','75','60','2','Benediction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118609','4','2','10','31346','17','2','75','60','2','Anathema','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118610','1','2','7','5139','21','1','6','1','3','Keen Machete','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118611','1','4','2','9975','7','8','7','2','0','Gnarlpine Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118612','1','4','3','6845','8','5','8','3','0','Bloody Chain Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118634','3','4','0','31199','12','8','52','47','0','Gyrofreeze Ice Reflector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118637','2','4','0','31204','12','8','55','0','0','Major Recombobulator','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118638','3','4','0','31198','12','8','58','53','0','Hyper-Radiant Flame Reflector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118639','3','4','0','31200','12','8','60','55','0','Ultra-Flash Shadow Reflector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118646','4','4','0','31029','12','-1','71','60','0','The Eye of Divinity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118665','4','4','0','31096','12','-1','71','60','0','The Eye of Shadow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118671','3','2','4','31119','13','1','59','54','3','Baron Charr\'s Sceptre','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118672','2','4','0','31120','23','3','59','54','0','Elemental Ember','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118673','3','4','6','31121','14','1','59','54','4','Avalanchion\'s Stony Hide','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118674','2','4','0','9836','11','1','59','54','0','Hardened Stone Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118676','3','4','3','31122','6','5','61','56','0','Sash of the Windreaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118677','2','4','1','15148','16','7','61','56','0','Zephyr Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118678','3','4','0','9853','2','3','61','56','0','Tempestria\'s Frozen Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118679','2','4','0','28831','11','3','61','56','0','Frigid Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118680','3','2','2','30926','15','2','61','56','0','Ancient Bone Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118681','3','4','1','10177','3','7','61','56','0','Burial Shawl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118682','3','4','2','10006','7','8','61','56','0','Ghoul Skin Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118683','3','2','4','31126','13','1','61','56','3','Hammer of the Vesper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118684','3','4','0','9840','11','3','61','56','0','Dimly Opalescent Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118686','3','4','3','31130','3','2','62','57','0','Bone Golem Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118689','3','4','1','31131','16','7','62','57','0','Phantasmal Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118690','3','4','4','25226','7','6','62','57','0','Wraithplate Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118691','3','4','0','15420','2','3','61','56','0','Dark Advisor\'s Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118692','3','4','4','31133','8','6','59','54','0','Death Knight Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118693','3','4','1','31136','10','7','62','57','0','Shivery Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118694','3','4','3','7002','8','5','62','57','0','Shadowy Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118695','3','4','0','31138','23','8','62','57','0','Spellbound Tome','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118696','3','4','6','18790','14','6','62','57','4','Intricately Runed Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118697','3','4','1','31139','8','7','55','50','0','Coldstone Slippers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118698','3','4','2','21958','1','8','56','51','0','Tattered Leather Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118699','3','4','2','31142','3','8','57','52','0','Icy Tomb Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118700','3','4','2','27048','9','8','58','53','0','Malefic Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118701','3','4','0','28733','11','3','59','54','0','Innervating Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118702','3','4','4','31143','6','6','60','55','0','Belt of the Ordained','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118709','3','4','1','36935','9','6','50','45','0','Arena Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118710','3','4','2','31159','9','6','50','45','0','Arena Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118711','3','4','3','31160','9','6','50','45','0','Arena Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118712','3','4','4','31161','9','6','50','45','0','Arena Vambraces','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118713','4','2','2','31338','15','2','75','60','0','Rhok\'delar, Longbow of the Ancient Keepers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118715','4','2','10','31163','17','-1','75','60','2','Lok\'delar, Stave of the Ancient Keepers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118716','3','4','2','31166','8','8','61','56','0','Ash Covered Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118717','3','2','5','23239','17','1','63','58','1','Hammer of the Grand Crusader','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118718','3','4','4','31167','1','6','63','58','0','Grand Crusader\'s Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118720','3','4','1','13672','3','7','63','58','0','Shroud of the Nathrezim','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118721','3','4','3','31171','6','8','61','56','0','Barrage Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118722','3','4','4','31173','10','6','62','57','0','Death Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118723','3','4','0','6539','2','3','62','57','0','Animated Chain Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118725','3','2','6','31174','17','2','59','54','2','Peacemaker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118726','3','4','2','31175','9','8','59','54','0','Magistrate\'s Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118727','3','4','1','31177','1','7','59','54','0','Crimson Felt Hat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118728','3','4','0','9657','2','3','60','55','0','Anastari Heirloom','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118729','3','2','2','31240','15','2','60','55','0','Screeching Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118730','3','4','1','31180','10','7','60','55','0','Shadowy Laced Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118734','3','4','1','31351','16','7','62','57','0','Pale Moon Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118735','3','4','1','31188','8','7','62','57','0','Maleki\'s Footwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118736','3','4','2','16133','7','8','62','57','0','Plaguehound Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118737','3','2','0','31189','13','1','62','57','3','Bone Slicing Hatchet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118738','3','2','18','31239','26','2','61','56','0','Carapace Spine Crossbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118739','3','4','4','31191','7','6','61','56','0','Chitinous Plate Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118740','3','4','1','31192','6','7','61','56','0','Thuzadin Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118741','3','4','4','31193','9','6','61','56','0','Morlune\'s Bracer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118742','3','4','3','31194','3','5','60','55','0','Stratholme Militia Shoulderguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118743','3','4','1','15163','16','7','59','54','0','Gracious Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118744','3','4','2','31196','10','8','58','53','0','Plaguebat Fur Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118745','3','4','1','2311','7','7','57','52','0','Sacred Cloth Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118754','3','4','4','31213','9','6','62','57','0','Fel Hardened Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118755','3','2','3','31237','26','2','62','57','0','Xorothian Firestick','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118756','3','4','6','31216','14','2','62','57','4','Dreadguard\'s Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118757','3','4','1','31217','3','7','62','57','0','Diabolic Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118758','3','2','15','20574','13','1','62','57','3','Specter\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118759','3','2','1','31219','17','1','62','57','1','Malicious Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118760','3','4','0','9839','11','3','62','57','0','Necromantic Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118761','3','2','19','31677','26','2','62','57','0','Oblivion\'s Touch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118762','3','4','0','31223','23','3','54','0','0','Shard of the Green Flame','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118803','4','2','5','31265','17','1','70','60','1','Finkle\'s Lava Dredger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118805','4','2','15','33626','13','1','70','60','3','Core Hound Tooth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118806','4','4','4','31271','8','6','70','60','0','Core Forged Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118807','3','4','3','37667','1','5','62','0','0','Helm of Latent Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118808','4','4','1','31276','10','7','70','60','0','Gloves of the Hypnotic Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118809','4','4','1','31278','6','7','71','60','0','Sash of Whispered Secrets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118810','4','4','2','16526','3','8','71','60','0','Wild Growth Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118811','4','4','1','24159','16','7','71','60','0','Fireproof Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118812','4','4','3','31280','9','5','71','60','0','Wristguards of True Flight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118813','4','4','0','9823','11','3','73','60','0','Ring of Binding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118814','4','4','0','1399','2','3','78','60','0','Choker of the Fire Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118815','4','4','0','31282','12','-1','75','60','0','Essence of the Pure Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118816','4','2','15','33615','13','1','77','60','3','Perdition\'s Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118817','4','4','3','31286','1','1','76','60','0','Crown of Destruction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118820','4','4','0','31287','12','3','66','60','0','Talisman of Ephemeral Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118821','4','4','0','9835','11','3','67','60','0','Quick Strike Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118822','4','2','8','34112','17','1','68','60','1','Obsidian Edged Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118823','4','4','2','31290','10','8','69','60','0','Aged Core Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118824','4','4','4','31295','8','6','70','60','0','Magma Tempered Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118825','4','4','6','31733','14','1','78','60','4','Grand Marshal\'s Aegis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118826','4','4','6','31746','14','1','78','60','4','High Warlord\'s Shield Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118827','4','2','0','31956','13','1','78','60','3','Grand Marshal\'s Handaxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118828','4','2','0','31957','13','1','78','60','3','High Warlord\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118829','4','4','3','31468','3','5','71','60','0','Deep Earth Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118830','4','2','1','31302','17','1','78','60','1','Grand Marshal\'s Sunderer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118831','4','2','1','31958','17','1','78','60','1','High Warlord\'s Battle Axe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118832','4','2','7','31309','13','1','70','60','3','Brutality Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118833','4','2','2','31759','15','2','78','60','0','Grand Marshal\'s Bullseye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118834','3','4','0','37841','12','-1','60','0','0','Insignia of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118835','4','2','2','31748','15','2','78','60','0','High Warlord\'s Recurve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118836','4','2','18','31757','26','2','78','60','0','Grand Marshal\'s Repeater','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118837','4','2','18','31749','26','2','78','60','0','High Warlord\'s Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118838','4','2','15','31379','13','1','78','60','3','Grand Marshal\'s Dirk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118840','4','2','15','31381','13','1','78','60','3','High Warlord\'s Razor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118842','4','2','10','34114','17','2','70','60','2','Staff of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118843','4','2','13','32033','21','1','78','60','7','Grand Marshal\'s Right Hand Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118844','4','2','13','31754','21','1','78','60','7','High Warlord\'s Right Claw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118845','3','4','0','37841','12','-1','60','0','0','Insignia of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118846','3','4','0','37841','12','-1','60','0','0','Insignia of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118847','4','2','13','32032','22','1','78','60','7','Grand Marshal\'s Left Hand Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118848','4','2','13','31752','22','1','78','60','7','High Warlord\'s Left Claw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118849','3','4','0','37841','12','-1','60','0','0','Insignia of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118850','3','4','0','37841','12','-1','60','0','0','Insignia of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118851','3','4','0','37841','12','-1','60','0','0','Insignia of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118852','3','4','0','37841','12','-1','60','0','0','Insignia of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118853','3','4','0','37841','12','-1','60','0','0','Insignia of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118854','3','4','0','37840','12','-1','60','0','0','Insignia of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118855','4','2','3','31758','26','1','78','60','0','Grand Marshal\'s Hand Cannon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118856','3','4','0','37840','12','-1','60','0','0','Insignia of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118857','3','4','0','37840','12','-1','60','0','0','Insignia of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118858','3','4','0','37840','12','-1','60','0','0','Insignia of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118859','3','4','0','37840','12','-1','60','0','0','Insignia of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118860','4','2','3','31747','26','1','78','60','0','High Warlord\'s Street Sweeper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118861','4','4','4','31320','7','6','61','56','0','Flamewaker Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118862','3','4','0','37840','12','-1','60','0','0','Insignia of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118863','3','4','0','37840','12','-1','60','0','0','Insignia of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118864','3','4','0','37840','12','-1','60','0','0','Insignia of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118865','4','2','4','31955','13','2','78','60','3','Grand Marshal\'s Punisher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118866','4','2','4','31751','13','2','78','60','3','High Warlord\'s Bludgeon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118867','4','2','5','31954','17','2','78','60','1','Grand Marshal\'s Battle Hammer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118868','4','2','5','31750','17','2','78','60','1','High Warlord\'s Pulverizer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118869','4','2','6','31761','17','1','78','60','2','Grand Marshal\'s Glaive','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118870','4','4','3','31327','1','5','62','57','0','Helm of the Lifegiver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118871','4','2','6','31766','17','1','78','60','2','High Warlord\'s Pig Sticker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118872','4','4','1','31331','7','7','63','58','0','Manastorm Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118873','4','2','10','31764','17','2','78','60','2','Grand Marshal\'s Stave','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118874','4','2','10','31765','17','2','78','60','2','High Warlord\'s War Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118875','4','4','2','31333','7','8','64','59','0','Salamander Scale Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118876','4','2','8','31996','17','1','78','60','1','Grand Marshal\'s Claymore','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118877','4','2','8','31998','17','1','78','60','1','High Warlord\'s Greatsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118878','4','2','15','31337','21','1','65','60','3','Sorcerous Dagger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118879','4','4','0','9836','11','1','66','60','0','Heavy Dark Iron Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118948','3','4','2','31385','9','8','32','27','0','Barbaric Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118951','2','4','0','31387','12','7','50','0','0','Evonice\'s Landin\' Pilla','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118957','2','2','7','31400','13','1','10','0','1','Brushwood Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118984','2','4','0','41640','0','-1','55','0','0','Dimensional Ripper - Everlook','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('118986','2','4','0','40162','0','-1','52','0','0','Ultrasafe Transporter: Gadgetzan','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119019','5','2','7','30606','13','1','80','60','1','Thunderfury, Blessed Blade of the Windseeker','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119022','2','2','20','20619','17','2','50','0','1','Nat Pagle\'s Extreme Angler FC-5000','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119024','3','4','0','31499','12','-1','55','0','0','Arena Grand Master','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119028','1','4','0','15966','20','7','30','0','0','Elegant Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119031','1','4','0','31527','19','7','20','0','0','Frostwolf Battle Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119032','1','4','0','31528','19','7','20','0','0','Stormpike Battle Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119037','2','4','4','31523','3','6','48','0','0','Emerald Peak Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119038','2','4','0','224','11','3','48','0','0','Ring of Subtlety','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119039','2','4','2','31675','1','8','48','0','0','Zorbin\'s Water Resistant Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119040','2','2','7','31526','13','1','48','0','3','Zorbin\'s Mega-Slicer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119041','2','4','2','31529','5','8','48','0','0','Pratt\'s Handcrafted Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119042','2','4','2','31531','5','8','48','0','0','Jangdor\'s Handcrafted Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119043','3','4','3','31532','6','-1','58','53','0','Heavy Timbermaw Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119044','3','4','2','34506','6','-1','58','53','0','Might of the Timbermaw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119047','3','4','1','31534','6','-1','58','53','0','Wisdom of the Timbermaw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119048','3','4','3','31538','8','-1','64','59','0','Heavy Timbermaw Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119049','3','4','2','34505','10','-1','64','59','0','Timbermaw Brawlers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119050','3','4','1','36269','3','7','64','59','0','Mantle of the Timbermaw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119051','3','4','4','31565','6','-1','58','53','0','Girdle of the Dawn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119052','3','4','2','34504','8','-1','58','53','0','Dawn Treaders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119056','3','4','1','31557','8','-1','58','53','0','Argent Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119057','3','4','4','31564','10','-1','64','59','0','Gloves of the Dawn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119058','3','4','2','50077','3','-1','64','59','0','Golden Mantle of the Dawn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119059','3','4','1','31828','3','-1','64','59','0','Argent Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119065','3','4','0','31576','11','3','59','0','0','Emerald Circle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119083','3','4','1','26468','16','7','60','55','0','Frostwolf Legionnaire\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119084','3','4','1','27197','16','7','60','55','0','Stormpike Soldier\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119085','3','4','1','31592','16','7','60','55','0','Frostwolf Advisor\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119086','3','4','1','15042','16','7','60','55','0','Stormpike Sage\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119087','3','4','4','31598','6','5','60','55','0','Frostwolf Plate Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119088','3','4','3','31599','6','5','60','55','0','Frostwolf Mail Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119089','3','4','2','30839','6','8','60','55','0','Frostwolf Leather Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119090','3','4','1','14686','6','7','60','55','0','Frostwolf Cloth Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119091','3','4','4','31597','6','5','60','55','0','Stormpike Plate Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119092','3','4','3','31600','6','5','60','55','0','Stormpike Mail Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119093','3','4','2','31601','6','8','60','55','0','Stormpike Leather Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119094','3','4','1','31602','6','7','60','55','0','Stormpike Cloth Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119095','3','4','0','31603','2','3','60','55','0','Frostwolf Legionnaire\'s Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119096','3','4','0','9859','2','3','60','55','0','Frostwolf Advisor\'s Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119097','3','4','0','31604','2','3','60','55','0','Stormpike Soldier\'s Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119098','3','4','0','9857','2','3','60','55','0','Stormpike Sage\'s Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119099','3','2','15','31605','13','1','65','60','3','Glacial Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119100','3','2','15','31606','13','1','65','60','3','Electrified Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119101','3','2','10','31608','17','2','65','60','2','Whiteout Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119102','3','2','10','31610','17','2','65','60','2','Crackling Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119103','3','2','0','31611','13','1','65','60','3','Frostbite','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119104','3','2','4','31612','13','1','65','60','3','Stormstrike Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119105','3','4','1','33462','1','7','63','58','0','Frost Runed Headdress','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119106','3','2','6','31613','17','1','63','0','1','Ice Barbed Spear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119107','3','2','18','32146','26','2','63','0','0','Bloodseeker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119108','3','2','19','15238','26','2','63','0','0','Wand of Biting Cold','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119109','3','4','0','31616','11','3','63','58','0','Deep Rooted Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119110','3','2','7','31617','13','1','63','58','3','Cold Forged Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119111','3','4','3','31618','3','5','63','58','0','Winteraxe Epaulets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119112','3','4','4','31619','9','6','63','58','0','Frozen Steel Vambraces','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119113','3','4','2','31620','9','8','63','58','0','Yeti Hide Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119114','2','2','2','31622','15','2','51','0','0','Highland Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119115','2','4','0','31623','23','3','51','0','0','Flask of Forest Mojo','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119116','2','4','1','31625','10','7','50','0','0','Greenleaf Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119117','2','4','4','31626','7','6','50','0','0','Laquered Wooden Plate Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119118','2','2','19','31628','26','2','50','0','0','Nature\'s Breath','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119119','2','4','2','31630','10','8','50','0','0','Owlbeast Hide Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119120','2','4','0','31631','12','4','51','0','0','Rune of the Guard Captain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119121','3','4','1','31632','16','7','51','0','0','Deep Woodlands Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119123','2','4','1','31634','10','7','48','0','0','Everwarm Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119124','2','4','4','31635','7','6','48','0','0','Slagplate Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119125','2','4','3','27137','6','5','49','0','0','Seared Mail Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119126','2','4','4','31638','10','6','49','0','0','Slagplate Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119127','2','4','2','31639','5','8','50','0','0','Charred Leather Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119128','2','4','3','31641','5','5','50','0','0','Seared Mail Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119129','2','4','1','31644','20','-1','49','0','0','Everglowing Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119130','4','2','19','31645','26','2','70','60','0','Cold Snap','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119131','4','4','1','31649','8','7','69','60','0','Snowblind Shoes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119132','4','4','1','31650','1','3','68','60','0','Crystal Adorned Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119133','4','4','1','31651','7','7','71','60','0','Fel Infused Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119134','4','4','2','31652','6','8','68','60','0','Flayed Doomguard Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119135','4','4','1','14618','9','7','66','60','0','Blacklight Bracer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119136','4','4','1','31653','6','7','71','60','0','Mana Igniting Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119137','4','4','4','31654','6','6','78','60','0','Onslaught Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119138','4','4','0','31655','11','3','78','60','0','Band of Sulfuras','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119139','4','4','2','27664','3','8','71','60','0','Fireguard Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119140','4','4','0','31657','11','3','71','60','0','Cauterizing Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119141','2','4','0','7418','12','7','50','0','0','Luffa','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119142','4','4','0','23321','23','7','70','60','7','Fire Runed Grimoire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119143','4','4','4','31660','10','6','69','60','0','Flameguard Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119144','4','4','3','31662','8','5','68','60','0','Sabatons of the Flamewalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119145','4','4','1','31663','20','7','66','60','0','Robe of Volatile Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119146','4','4','2','6763','9','8','65','60','0','Wristguards of Stability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119147','4','4','0','31664','11','3','66','60','0','Ring of Spell Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119148','4','4','4','31671','1','6','66','60','0','Dark Iron Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119149','4','4','2','31672','6','8','66','60','0','Lava Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119156','4','4','1','31673','20','7','66','60','0','Flarecore Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119157','4','4','3','31680','10','7','70','60','0','Chromatic Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119159','3','4','0','31633','2','8','51','0','0','Woven Ivy Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119162','4','4','2','31681','6','8','70','60','0','Corehound Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119163','4','4','2','31682','6','8','70','60','0','Molten Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119164','4','4','4','31683','10','8','70','60','0','Dark Iron Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119165','4','4','1','31685','7','7','70','60','0','Flarecore Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119166','4','2','15','31686','13','1','66','60','3','Black Amnesty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119167','4','2','6','31720','17','1','66','60','2','Blackfury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119168','4','2','7','31692','13','1','70','60','3','Blackguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119169','4','2','1','31735','17','1','70','60','1','Nightfall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119170','4','2','4','31822','13','1','70','60','3','Ebon Hand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119287','4','4','0','31768','12','4','66','60','0','Darkmoon Card: Heroism','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119288','4','4','0','31769','12','4','66','60','0','Darkmoon Card: Blue Dragon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119289','4','4','0','31770','12','4','66','60','0','Darkmoon Card: Maelstrom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119290','4','4','0','31771','12','4','66','60','0','Darkmoon Card: Twisting Nether','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119292','1','2','4','31777','13','2','34','29','3','Last Month\'s Mutton','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119293','1','2','4','7462','13','2','55','50','3','Last Year\'s Mutton','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119295','1','4','0','31779','23','-1','20','0','0','Darkmoon Flower','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119302','3','4','0','31800','11','-1','55','50','0','Darkmoon Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119303','2','4','0','9657','2','-1','55','50','0','Darkmoon Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119308','4','4','0','31805','23','7','65','60','7','Tome of Arcane Domination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119309','4','4','0','24039','23','7','65','60','7','Tome of Shadow Force','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119310','4','4','0','31806','23','7','65','60','7','Tome of the Ice Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119311','4','4','0','23322','23','7','65','60','7','Tome of Fiery Arcana','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119312','4','4','0','31807','23','4','65','60','0','Lei of the Lifegiver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119315','4','4','0','31809','23','4','65','60','0','Therazane\'s Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119321','4','4','6','31815','14','1','65','60','4','The Immovable Object','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119323','4','2','5','31817','17','1','65','60','1','The Unstoppable Force','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119324','4','2','15','31820','13','1','65','60','3','The Lobotomizer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119325','4','4','0','31616','11','4','65','60','0','Don Julio\'s Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119334','4','2','8','31999','17','1','73','60','1','The Untamed Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119335','4','2','4','31862','13','1','73','60','3','Spineshatter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119336','4','4','0','31838','12','4','76','60','0','Arcane Infused Gem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119337','4','4','0','31848','12','4','76','60','0','The Black Book','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119339','4','4','0','31840','12','4','76','60','0','Mind Quickening Gem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119340','4','4','0','31841','12','4','76','60','0','Rune of Metamorphosis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119341','4','4','0','31843','12','4','76','60','0','Lifegiving Gem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119342','4','4','0','31846','12','4','76','60','0','Venomous Totem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119343','4','4','0','31847','12','4','76','60','0','Scrolls of Blinding Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119344','4','4','0','31845','12','4','76','60','0','Natural Alignment Crystal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119345','4','4','0','31844','12','4','76','60','0','Aegis of Preservation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119346','4','2','15','31864','13','1','74','60','3','Dragonfang Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119347','4','2','15','31865','21','1','77','60','3','Claw of Chromaggus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119348','4','4','6','31851','14','6','74','60','4','Red Dragonscale Protector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119349','4','4','6','31852','14','6','77','60','4','Elementium Reinforced Bulwark','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119350','4','2','2','32080','15','2','75','60','0','Heartstriker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119351','4','2','7','31866','13','1','75','60','3','Maladath, Runed Blade of the Black Flight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119352','4','2','7','31867','13','1','77','60','3','Chromatically Tempered Sword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119353','4','2','1','31857','17','1','75','60','1','Drake Talon Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119354','4','2','1','31858','17','1','71','60','1','Draconic Avenger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119355','4','2','10','31964','17','2','75','60','2','Shadow Wing Focus Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119356','4','2','10','31960','17','2','81','60','2','Staff of the Shadow Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119357','4','2','5','31878','17','1','75','60','1','Herald of Woe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119358','4','2','5','31877','17','1','70','60','1','Draconic Maul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119360','4','2','4','31863','21','1','81','60','3','Lok\'amir il Romathis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119361','4','2','18','32763','26','2','77','60','0','Ashjre\'thul, Crossbow of Smiting','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119362','4','2','0','31869','13','1','70','60','3','Doom\'s Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119363','4','2','0','31870','13','1','81','60','3','Crul\'shorukh, Edge of Chaos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119364','4','2','8','32000','17','1','81','60','1','Ashkandi, Greatsword of the Brotherhood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119365','4','2','13','31880','21','1','75','60','7','Claw of the Black Drake','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119366','4','4','0','31953','23','3','83','60','0','Master Dragonslayer\'s Orb','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119367','4','2','19','32774','26','2','75','60','0','Dragon\'s Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119368','4','2','3','31876','26','2','75','60','0','Dragonbreath Hand Cannon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119369','4','4','1','31888','10','7','73','60','0','Gloves of Rapid Evolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119370','4','4','1','18865','3','7','73','60','0','Mantle of the Blackwing Cabal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119371','4','4','0','31889','2','3','74','60','0','Pendant of the Fallen Dragon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119372','4','4','4','32493','1','6','74','60','0','Helm of Endless Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119373','4','4','3','31194','3','5','75','60','0','Black Brood Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119374','4','4','1','31892','9','7','75','60','0','Bracers of Arcane Accuracy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119375','4','4','1','31898','1','7','83','60','0','Mish\'undare, Circlet of the Mind Flayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119376','4','4','0','31498','11','3','83','60','0','Archimtiros\' Ring of Reckoning','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119377','4','4','0','31899','2','3','83','60','0','Prestor\'s Talisman of Connivery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119378','4','4','1','28891','16','7','83','60','0','Cloak of the Brood Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119379','4','4','0','31901','12','4','83','60','0','Neltharion\'s Tear','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119380','4','4','3','31902','6','5','83','60','0','Therazane\'s Link','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119381','4','4','2','31904','8','8','83','60','0','Boots of the Shadow Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119382','4','4','0','31906','11','4','83','60','0','Pure Elementium Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119383','4','4','0','31907','2','4','83','60','0','Master Dragonslayer\'s Medallion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119384','4','4','0','31908','11','4','83','60','0','Master Dragonslayer\'s Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119385','4','4','1','31911','7','7','77','60','0','Empowered Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119386','4','4','1','31912','16','7','77','60','0','Elementium Threaded Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119387','4','4','4','31914','8','6','77','60','0','Chromatic Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119388','4','4','1','31915','6','7','77','60','0','Angelista\'s Grasp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119389','4','4','2','32082','3','8','77','60','0','Taut Dragonhide Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119390','4','4','2','31919','10','8','77','60','0','Taut Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119391','4','4','1','31921','8','7','77','60','0','Shimmering Geta','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119392','4','4','4','31924','6','6','77','60','0','Girdle of the Fallen Crusader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119393','4','4','3','31925','6','5','77','60','0','Primalist\'s Linked Waistguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119394','4','4','4','31926','3','6','75','60','0','Drake Talon Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119395','4','4','0','20978','12','3','75','60','0','Rejuvenating Gem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119396','4','4','2','31927','6','8','75','60','0','Taut Dragonhide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119397','4','4','0','31905','11','4','75','60','0','Ring of Blackrock','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119398','4','4','1','23422','16','7','75','60','0','Cloak of Firemaw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119399','4','4','1','31930','20','7','75','60','0','Black Ash Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119400','4','4','1','31931','6','7','75','60','0','Firemaw\'s Clutch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119401','4','4','3','31932','7','5','75','60','0','Primalist\'s Linked Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119402','4','4','4','31933','7','6','75','60','0','Legguards of the Fallen Crusader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119403','4','4','0','31800','11','3','75','60','0','Band of Forced Concentration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119405','4','4','2','31934','5','8','75','60','0','Malfurion\'s Blessed Bulwark','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119406','4','4','0','31936','12','4','75','60','0','Drake Fang Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119407','4','4','1','18858','10','7','75','60','0','Ebony Flame Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119426','4','4','0','31603','2','-1','65','60','0','Orb of the Darkmoon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119430','4','4','1','16879','16','7','75','60','0','Shroud of Pure Thought','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119431','4','4','0','31967','12','4','75','60','0','Styleen\'s Impeding Scarab','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119432','4','4','0','31576','11','4','75','60','0','Circle of Applied Force','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119433','4','4','3','31968','7','5','75','60','0','Emberweave Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119434','4','4','0','28733','11','3','70','60','0','Band of Dark Dominion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119435','4','2','19','31977','26','2','70','60','0','Essence Gatherer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119436','4','4','1','31978','16','7','70','60','0','Cloak of Draconic Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119437','4','4','1','31982','8','7','70','60','0','Boots of Pure Thought','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119438','4','4','1','31985','8','7','71','60','0','Ringo\'s Blizzard Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119439','4','4','2','31986','5','8','71','60','0','Interlaced Shadow Jerkin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119491','4','4','0','32008','2','-1','65','60','0','Amulet of the Darkmoon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119505','1','4','0','32031','19','7','20','0','0','Warsong Battle Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119506','1','4','0','32026','19','7','20','0','0','Silverwing Battle Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119507','3','4','1','32034','3','7','41','36','0','Inquisitor\'s Shawl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119508','3','4','2','32036','9','8','41','36','0','Branded Leather Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119509','3','4','3','32038','8','5','41','36','0','Dusty Mail Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119510','3','4','0','29697','11','4','63','58','0','Legionnaire\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119511','3','4','0','29697','11','4','53','48','0','Legionnaire\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119512','3','4','0','29697','11','4','43','38','0','Legionnaire\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119513','3','4','0','29697','11','4','33','28','0','Legionnaire\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119514','3','4','0','9832','11','4','63','58','0','Protector\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119515','3','4','0','9832','11','4','43','38','0','Protector\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119516','3','4','0','9832','11','4','53','48','0','Protector\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119517','3','4','0','9832','11','4','33','28','0','Protector\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119518','3','4','0','30661','11','4','63','58','0','Advisor\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119519','3','4','0','30661','11','4','53','48','0','Advisor\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119520','3','4','0','30661','11','4','43','38','0','Advisor\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119521','3','4','0','30661','11','4','33','28','0','Advisor\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119522','3','4','0','28812','11','4','63','58','0','Lorekeeper\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119523','3','4','0','28812','11','4','53','48','0','Lorekeeper\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119524','3','4','0','28812','11','4','43','38','0','Lorekeeper\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119525','3','4','0','28812','11','4','33','28','0','Lorekeeper\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119526','3','4','1','32066','16','7','63','58','0','Battle Healer\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119527','3','4','1','32069','16','7','53','48','0','Battle Healer\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119528','3','4','1','32070','16','7','43','38','0','Battle Healer\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119529','3','4','1','28042','16','7','33','28','0','Battle Healer\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119530','3','4','1','32067','16','7','63','58','0','Caretaker\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119531','3','4','1','32068','16','7','53','48','0','Caretaker\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119532','3','4','1','32071','16','7','43','38','0','Caretaker\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119533','3','4','1','32072','16','7','33','28','0','Caretaker\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119534','3','4','0','32008','2','4','63','58','0','Scout\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119535','3','4','0','32008','2','4','53','48','0','Scout\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119536','3','4','0','32008','2','4','43','38','0','Scout\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119537','3','4','0','32008','2','4','33','28','0','Scout\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119538','3','4','0','32073','2','4','63','58','0','Sentinel\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119539','3','4','0','32073','2','4','53','48','0','Sentinel\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119540','3','4','0','32073','2','4','43','38','0','Sentinel\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119541','3','4','0','32073','2','4','33','28','0','Sentinel\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119542','3','2','15','32074','13','1','63','58','3','Scout\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119543','3','2','15','32074','13','1','53','48','3','Scout\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119544','3','2','15','32074','13','1','43','38','3','Scout\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119545','3','2','15','32074','13','1','33','28','3','Scout\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119546','3','2','15','32075','13','1','63','58','3','Sentinel\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119547','3','2','15','32075','13','1','53','48','3','Sentinel\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119548','3','2','15','32075','13','1','43','38','3','Sentinel\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119549','3','2','15','32075','13','1','33','28','3','Sentinel\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119550','3','2','7','32076','13','1','63','58','3','Legionnaire\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119551','3','2','7','32076','13','1','53','48','3','Legionnaire\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119552','3','2','7','32076','13','1','43','38','3','Legionnaire\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119553','3','2','7','32076','13','1','33','28','3','Legionnaire\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119554','3','2','7','32077','13','1','63','58','3','Protector\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119555','3','2','7','32077','13','1','53','48','3','Protector\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119556','3','2','7','32077','13','1','43','38','3','Protector\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119557','3','2','7','32077','13','1','33','28','3','Protector\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119558','3','2','2','32079','15','2','63','58','0','Outrider\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119559','3','2','2','32079','15','2','53','48','0','Outrider\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119560','3','2','2','32079','15','2','43','38','0','Outrider\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119561','3','2','2','32079','15','2','33','28','0','Outrider\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119562','3','2','2','32081','15','2','63','58','0','Outrunner\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119563','3','2','2','32081','15','2','53','48','0','Outrunner\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119564','3','2','2','32081','15','2','43','38','0','Outrunner\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119565','3','2','2','32081','15','2','33','28','0','Outrunner\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119566','3','2','10','20330','17','2','63','58','2','Advisor\'s Gnarled Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119567','3','2','10','20330','17','2','53','48','2','Advisor\'s Gnarled Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119568','3','2','10','20330','17','2','43','38','2','Advisor\'s Gnarled Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119569','3','2','10','20330','17','2','33','28','2','Advisor\'s Gnarled Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119570','3','2','10','18289','17','2','63','58','2','Lorekeeper\'s Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119571','3','2','10','18289','17','2','53','48','2','Lorekeeper\'s Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119572','3','2','10','18289','17','2','43','38','2','Lorekeeper\'s Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119573','3','2','10','18289','17','2','33','28','2','Lorekeeper\'s Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119574','2','4','0','32713','2','4','60','0','0','Strength of Mugamba','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119575','3','4','0','32714','2','4','60','0','0','Strength of Mugamba','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119576','3','4','0','32715','2','4','68','0','0','Strength of Mugamba','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119577','4','4','0','32716','2','-1','65','0','0','Rage of Mugamba','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119578','4','4','4','32088','9','6','65','60','0','Berserker Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119579','2','4','0','32713','2','4','60','0','0','Heathen\'s Brand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119580','4','4','4','32088','9','6','55','50','0','Berserker Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119581','4','4','4','32088','9','6','45','40','0','Berserker Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119582','4','4','3','32089','9','5','65','60','0','Windtalker\'s Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119583','4','4','3','32089','9','5','55','50','0','Windtalker\'s Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119584','4','4','3','32089','9','5','45','40','0','Windtalker\'s Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119585','3','4','0','32714','2','4','60','0','0','Heathen\'s Brand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119586','3','4','0','32715','2','4','68','0','0','Heathen\'s Brand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119587','4','4','2','32090','9','8','65','60','0','Forest Stalker\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119588','4','4','0','32716','2','4','65','0','0','Hero\'s Brand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119589','4','4','2','32090','9','8','55','50','0','Forest Stalker\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119590','4','4','2','32090','9','8','45','40','0','Forest Stalker\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119591','2','4','0','32713','2','4','60','0','0','The Eye of Zuldazar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119592','3','4','0','32714','2','-1','60','0','0','The Eye of Zuldazar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119593','3','4','0','32715','2','-1','68','0','0','The Eye of Zuldazar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119594','4','4','0','32716','2','-1','65','0','0','The All-Seeing Eye of Zuldazar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119595','4','4','1','32091','9','7','65','60','0','Dryad\'s Wrist Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119596','4','4','1','32091','9','7','55','50','0','Dryad\'s Wrist Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119597','4','4','1','32091','9','7','45','40','0','Dryad\'s Wrist Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119598','2','4','0','32713','2','-1','60','0','0','Pebble of Kajaro','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119599','3','4','0','32714','2','-1','60','0','0','Pebble of Kajaro','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119600','3','4','0','32715','2','-1','68','0','0','Pebble of Kajaro','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119601','4','4','0','32716','2','-1','65','0','0','Jewel of Kajaro','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119602','2','4','0','32713','2','-1','60','0','0','Kezan\'s Taint','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119603','3','4','0','32714','2','-1','60','0','0','Kezan\'s Taint','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119604','3','4','0','32715','2','-1','68','0','0','Kezan\'s Taint','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119605','4','4','0','32716','2','-1','65','0','0','Kezan\'s Unstoppable Taint','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119606','2','4','0','32713','2','-1','60','0','0','Vision of Voodress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119607','3','4','0','32714','2','-1','60','0','0','Vision of Voodress','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119608','3','4','0','32715','2','-1','68','0','0','Vision of Voodress','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119609','4','4','0','32716','2','-1','65','0','0','Unmarred Vision of Voodress','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119610','2','4','0','32713','2','-1','60','0','0','Enchanted South Seas Kelp','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119611','3','4','0','32714','2','-1','60','0','0','Enchanted South Seas Kelp','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119612','3','4','0','32715','2','-1','68','0','0','Enchanted South Seas Kelp','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119613','4','4','0','32716','2','-1','65','0','0','Pristine Enchanted South Seas Kelp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119614','2','4','0','32713','2','-1','60','0','0','Zandalarian Shadow Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119615','3','4','0','32714','2','-1','60','0','0','Zandalarian Shadow Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119616','3','4','0','32715','2','-1','68','0','0','Zandalarian Shadow Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119617','4','4','0','32716','2','-1','65','0','0','Zandalarian Shadow Mastery Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119618','2','4','0','32713','2','-1','60','0','0','Maelstrom\'s Tendril','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119619','3','4','0','32714','2','-1','60','0','0','Maelstrom\'s Tendril','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119620','3','4','0','32715','2','-1','68','0','0','Maelstrom\'s Tendril','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119621','4','4','0','32716','2','-1','65','0','0','Maelstrom\'s Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119682','3','4','1','32154','5','7','65','60','0','Bloodvine Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119683','3','4','1','32155','7','7','65','60','0','Bloodvine Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119684','3','4','1','32770','8','-1','65','60','0','Bloodvine Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119685','3','4','2','32157','5','8','65','60','0','Primal Batskin Jerkin','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119686','3','4','2','32159','10','8','65','60','0','Primal Batskin Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119687','3','4','2','32158','9','8','65','60','0','Primal Batskin Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119688','3','4','2','25682','5','8','65','60','0','Blood Tiger Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119689','3','4','2','32160','3','8','65','60','0','Blood Tiger Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119690','3','4','3','32163','5','5','65','60','0','Bloodsoul Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119691','3','4','3','32165','3','5','65','60','0','Bloodsoul Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119692','3','4','3','32164','10','5','65','60','0','Bloodsoul Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119693','3','4','4','32166','5','6','65','60','0','Darksoul Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119694','3','4','4','32167','7','6','65','60','0','Darksoul Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119695','3','4','4','32168','3','6','65','60','0','Darksoul Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119697','1','4','0','32171','0','-1','1','0','0','Bounty of the Harvest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119808','2','2','4','32262','13','2','45','40','3','Rockhide Strongfish','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119812','3','4','0','20984','12','-1','61','0','0','Rune of the Dawn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119822','4','4','4','32415','5','6','65','0','0','Zandalar Vindicator\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119823','4','4','4','32416','6','6','61','0','0','Zandalar Vindicator\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119824','4','4','4','32417','9','6','61','0','0','Zandalar Vindicator\'s Armguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119825','4','4','4','32263','5','6','65','0','0','Zandalar Freethinker\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119826','4','4','4','32264','6','6','61','0','0','Zandalar Freethinker\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119827','4','4','4','32265','9','6','61','0','0','Zandalar Freethinker\'s Armguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119828','4','4','3','32748','5','5','65','0','0','Zandalar Augur\'s Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119829','4','4','3','32750','6','5','61','0','0','Zandalar Augur\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119830','4','4','3','32749','9','5','61','0','0','Zandalar Augur\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119831','4','4','3','32270','3','5','68','0','0','Zandalar Predator\'s Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119832','4','4','3','32272','6','5','61','0','0','Zandalar Predator\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119833','4','4','3','28806','9','5','61','0','0','Zandalar Predator\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119834','4','4','2','32273','5','8','65','0','0','Zandalar Madcap\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119835','4','4','2','32274','3','8','61','0','0','Zandalar Madcap\'s Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119836','4','4','2','32275','9','8','61','0','0','Zandalar Madcap\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119838','4','4','2','32285','5','8','65','0','0','Zandalar Haruspex\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119839','4','4','2','32286','6','8','61','0','0','Zandalar Haruspex\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119840','4','4','2','32287','9','8','61','0','0','Zandalar Haruspex\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119841','4','4','1','32567','3','7','68','0','0','Zandalar Confessor\'s Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119842','4','4','1','32289','6','7','61','0','0','Zandalar Confessor\'s Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119843','4','4','1','32290','9','7','61','0','0','Zandalar Confessor\'s Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119845','4','4','1','32292','3','7','61','0','0','Zandalar Illusionist\'s Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119846','4','4','1','32290','9','7','61','0','0','Zandalar Illusionist\'s Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119848','4','4','1','32290','9','7','61','0','0','Zandalar Demoniac\'s Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119849','4','4','1','32566','3','7','61','0','0','Zandalar Demoniac\'s Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119852','4','2','0','34718','13','1','68','60','3','Ancient Hakkari Manslayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119853','4','2','3','32577','26','1','68','60','0','Gurubashi Dwarf Destroyer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119854','4','2','8','32603','17','1','68','60','1','Zin\'rokh, Destroyer of Worlds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119855','4','4','4','32296','7','6','68','60','0','Bloodsoaked Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119856','4','4','0','32297','2','3','68','60','0','The Eye of Hakkar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119857','4','4','1','32298','16','7','68','60','0','Cloak of Consumption','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119859','4','2','15','32575','13','1','68','60','3','Fang of the Faceless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119861','4','2','19','32595','26','2','68','60','0','Touch of Chaos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119862','4','4','6','32561','14','6','68','60','4','Aegis of the Blood God','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119863','3','4','0','32305','11','3','71','60','0','Primalist\'s Seal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119864','4','2','7','32314','21','1','68','60','3','Bloodcaller','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119865','4','2','7','32722','21','1','68','60','1','Warblade of the Hakkari','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119866','4','2','7','32722','22','1','66','60','1','Warblade of the Hakkari','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119867','4','2','7','32581','13','1','66','60','3','Bloodlord\'s Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119869','3','4','2','32340','10','8','71','60','0','Blooddrenched Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119870','3','4','1','32320','16','7','71','60','0','Hakkari Loa Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119871','3','4','0','32321','2','3','68','60','0','Talisman of Protection','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119873','3','4','0','32323','11','3','71','60','0','Overlord\'s Crimson Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119874','4','2','6','32604','17','1','66','60','1','Halberd of Smiting','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119875','3','4','3','32413','1','5','71','60','0','Bloodstained Coif','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119876','4','4','0','32326','2','3','68','60','0','Soul Corrupter\'s Necklace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119877','3','4','2','32405','7','8','71','60','0','Animist\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119878','3','4','4','32409','3','6','71','60','0','Bloodsoaked Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119884','4','2','10','32613','17','2','66','60','2','Jin\'do\'s Judgement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119885','4','4','0','32335','2','3','66','60','0','Jin\'do\'s Evil Eye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119886','3','4','1','32734','1','2','71','60','0','The Hexxer\'s Cover','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119887','3','4','3','32337','7','5','71','60','0','Bloodstained Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119888','3','4','1','32339','16','7','71','60','0','Overlord\'s Embrace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119889','3','4','2','32772','7','8','71','60','0','Blooddrenched Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119890','4','2','4','32588','21','1','66','60','3','Jin\'do\'s Hexxer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119891','4','4','0','32344','23','7','66','60','7','Jin\'do\'s Bag of Whammies','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119892','3','4','2','32406','8','8','71','60','0','Animist\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119893','3','4','0','32347','11','3','71','60','0','Zanzil\'s Seal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119894','3','4','4','32348','10','6','71','60','0','Bloodsoaked Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119895','3','4','1','32401','7','7','71','60','0','Bloodtinged Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119896','4','2','13','32776','21','1','65','60','7','Thekal\'s Grasp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119897','4','4','1','32563','8','7','65','60','0','Betrayer\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119898','3','4','0','32353','11','3','68','60','0','Seal of Jin','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119899','3','4','1','32407','7','7','68','60','0','Ritualistic Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119900','3','2','1','34507','17','1','68','60','1','Zulian Stone Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119901','3','2','7','32356','13','1','68','60','3','Zulian Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119903','4','2','15','32576','21','1','65','60','3','Fang of Venoxis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119904','4','4','3','32360','5','5','65','60','0','Runed Bloodstained Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119905','3','4','0','32347','11','3','68','60','0','Zanzil\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119906','3','4','2','32773','8','8','68','60','0','Blooddrenched Footpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119907','3','4','1','32371','16','7','68','60','0','Zulian Tigerhide Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119908','3','2','4','32600','13','1','65','60','3','Sceptre of Smiting','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119909','4','2','10','32612','17','2','65','60','2','Will of Arlokk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119910','4','2','13','32615','22','1','65','60','7','Arlokk\'s Grasp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119912','3','4','0','32323','11','3','68','60','0','Overlord\'s Onyx Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119913','3','4','4','32379','8','6','68','60','0','Bloodsoaked Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119915','3','4','6','32560','14','6','68','60','4','Zulian Defender','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119918','4','2','5','32782','17','1','65','60','1','Jeklik\'s Crusher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119919','3','4','3','32389','8','5','68','60','0','Bloodstained Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119920','3','4','0','32305','11','3','68','60','0','Primalist\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119921','3','2','0','26535','13','1','65','60','3','Zulian Hacker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119922','3','4','0','32784','23','3','68','60','7','Arlokk\'s Hoodoo Stick','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119923','3','4','0','32395','2','3','68','60','0','Jeklik\'s Opaline Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119925','3','4','0','32353','11','3','68','60','0','Band of Jin','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119927','4','2','19','32582','26','2','65','60','0','Mar\'li\'s Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119928','3','4','2','32404','3','8','68','60','0','Animist\'s Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119929','3','4','1','32410','10','7','71','60','0','Bloodtinged Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119930','3','4','0','32745','12','3','68','60','0','Mar\'li\'s Eye','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119944','4','2','10','32450','17','2','65','60','1','Nat Pagle\'s Fish Terminator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119945','4','4','2','21701','1','8','65','60','0','Foror\'s Eyepatch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119946','3','2','6','32430','17','3','68','60','1','Tigule\'s Harpoon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119947','3','4','0','20625','12','1','68','60','0','Nat Pagle\'s Broken Reel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119948','4','4','0','32431','12','3','68','0','0','Zandalarian Hero Badge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119949','4','4','0','32431','12','3','68','0','0','Zandalarian Hero Medallion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119950','4','4','0','32431','12','3','68','0','0','Zandalarian Hero Charm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119951','4','4','0','32326','12','1','65','60','0','Gri\'lek\'s Charm of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119952','4','4','0','32326','12','1','65','60','0','Gri\'lek\'s Charm of Valor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119953','4','4','0','32326','12','1','65','60','0','Renataki\'s Charm of Beasts','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119954','4','4','0','32326','12','1','65','60','0','Renataki\'s Charm of Trickery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119955','4','4','0','32326','12','1','65','60','0','Wushoolay\'s Charm of Nature','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119956','4','4','0','32326','12','1','65','60','0','Wushoolay\'s Charm of Spirits','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119957','4','4','0','32326','12','1','65','60','0','Hazza\'rah\'s Charm of Destruction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119958','4','4','0','32326','12','1','65','60','0','Hazza\'rah\'s Charm of Healing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119959','4','4','0','32326','12','1','65','60','0','Hazza\'rah\'s Charm of Magic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119961','3','2','4','32780','13','1','68','60','3','Gri\'lek\'s Grinder','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119962','3','2','1','36762','17','1','68','60','1','Gri\'lek\'s Carver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119963','3','2','6','32446','17','1','68','60','1','Pitchfork of Madness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119964','3','2','7','32438','21','1','68','60','3','Renataki\'s Soul Conduit','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119965','3','2','15','32439','21','1','68','60','3','Wushoolay\'s Poker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119967','3','2','19','32584','26','3','68','60','0','Thoughtblighter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119968','3','2','7','32443','13','1','68','60','3','Fiery Retributer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119969','2','4','1','32449','8','7','40','35','0','Nat Pagle\'s Extreme Anglin\' Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119970','3','2','20','20619','17','1','20','0','1','Arcanite Fishing Pole','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119972','2','4','1','16548','1','7','40','0','0','Lucky Fishing Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119979','3','4','0','8233','12','-1','65','0','0','Hook of the Master Angler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119982','3','4','1','32503','16','7','52','0','0','Duskbat Drape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119984','3','4','2','43777','1','-1','52','0','0','Ebon Mask','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119986','3','4','2','21701','1','-1','52','0','0','Pirate\'s Eye Patch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119990','3','4','0','9657','12','-1','52','0','0','Blessed Prayer Beads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119991','3','4','0','1504','12','-1','52','0','0','Devilsaur Eye','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119992','3','4','0','13806','12','-1','52','0','0','Devilsaur Tooth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119993','3','2','2','32571','15','2','68','60','0','Hoodoo Hunting Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119998','3','4','2','32536','1','7','65','60','0','Bloodvine Lens','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('119999','3','4','1','26614','1','7','65','60','0','Bloodvine Goggles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120003','3','2','13','32538','21','-1','52','0','0','Devilsaur Claws','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120005','3','2','13','32539','22','-1','52','0','0','Devilsaur Claws','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120006','3','4','0','32678','11','-1','52','0','0','Circle of Hope','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120032','4','4','1','12675','20','7','65','60','0','Flowing Ritual Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120033','4','4','1','32564','20','7','65','0','0','Zandalar Demoniac\'s Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120034','4','4','1','32565','20','7','65','0','0','Zandalar Illusionist\'s Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120035','3','2','15','32592','13','-1','52','0','3','Glacial Spike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120036','3','4','0','7122','12','4','52','0','0','Fire Ruby','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120037','3','4','0','18707','2','-1','52','0','0','Arcane Crystal Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120038','4','2','2','32570','15','2','66','60','0','Mandokir\'s Sting','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120039','4','4','4','42672','8','8','70','60','0','Dark Iron Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120041','3','4','4','32644','6','6','63','58','0','Highlander\'s Plate Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120042','3','4','4','32644','6','6','63','58','0','Highlander\'s Lamellar Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120043','3','4','3','34241','6','5','63','58','0','Highlander\'s Chain Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120044','3','4','3','34241','6','5','63','58','0','Highlander\'s Mail Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120045','3','4','2','34244','6','8','63','58','0','Highlander\'s Leather Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120046','3','4','2','34244','6','8','63','58','0','Highlander\'s Lizardhide Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120047','3','4','1','34244','6','7','63','58','0','Highlander\'s Cloth Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120048','3','4','4','32822','8','6','63','58','0','Highlander\'s Plate Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120049','3','4','4','32822','8','6','63','58','0','Highlander\'s Lamellar Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120050','3','4','3','34242','8','5','63','58','0','Highlander\'s Chain Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120051','3','4','3','34242','8','5','63','58','0','Highlander\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120052','3','4','2','34247','8','8','63','58','0','Highlander\'s Leather Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120053','3','4','2','34248','8','8','63','58','0','Highlander\'s Lizardhide Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120054','3','4','1','34240','8','7','63','58','0','Highlander\'s Cloth Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120055','4','4','3','34243','3','6','65','60','0','Highlander\'s Chain Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120056','4','4','3','34249','3','6','65','60','0','Highlander\'s Mail Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120057','4','4','4','34245','3','5','65','60','0','Highlander\'s Plate Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120058','4','4','4','34245','3','5','65','60','0','Highlander\'s Lamellar Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120059','4','4','2','18971','3','8','65','60','0','Highlander\'s Leather Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120060','4','4','2','18971','3','8','65','60','0','Highlander\'s Lizardhide Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120061','4','4','1','32740','3','7','65','60','0','Highlander\'s Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120068','4','4','1','23140','16','7','65','60','0','Deathguard\'s Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120069','4','2','10','32677','17','2','65','60','2','Ironbark Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120070','4','2','15','32648','21','1','65','60','3','Sageclaw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120071','3','4','0','6502','12','4','63','58','0','Talisman of Arathor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120072','3','4','0','6502','12','4','63','58','0','Defiler\'s Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120073','4','4','1','23140','16','7','65','60','0','Cloak of the Honor Guard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120082','3','2','19','32685','26','-1','52','0','0','Woestave','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120083','3','2','6','32717','17','-1','52','0','1','Hunting Spear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120088','3','4','3','34241','6','5','53','48','0','Highlander\'s Chain Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120089','3','4','3','34241','6','5','43','40','0','Highlander\'s Chain Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120090','3','4','2','34392','6','5','33','28','0','Highlander\'s Padded Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120091','3','4','3','34242','8','5','53','48','0','Highlander\'s Chain Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120092','3','4','3','34242','8','5','43','40','0','Highlander\'s Chain Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120093','3','4','2','34393','8','5','33','28','0','Highlander\'s Padded Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120094','3','4','1','34240','8','7','53','48','0','Highlander\'s Cloth Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120095','3','4','1','34240','8','7','43','38','0','Highlander\'s Cloth Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120096','3','4','1','34240','8','7','33','28','0','Highlander\'s Cloth Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120097','3','4','1','34244','6','7','53','48','0','Highlander\'s Cloth Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120098','3','4','1','34244','6','7','43','38','0','Highlander\'s Cloth Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120099','3','4','1','34244','6','7','33','28','0','Highlander\'s Cloth Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120100','3','4','2','34248','8','8','53','48','0','Highlander\'s Lizardhide Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120101','3','4','2','34248','8','8','43','38','0','Highlander\'s Lizardhide Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120102','3','4','2','34248','8','8','33','28','0','Highlander\'s Lizardhide Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120103','3','4','2','34244','6','8','53','48','0','Highlander\'s Lizardhide Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120104','3','4','2','34244','6','8','43','38','0','Highlander\'s Lizardhide Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120105','3','4','2','34244','6','8','33','28','0','Highlander\'s Lizardhide Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120106','3','4','4','32644','6','6','53','48','0','Highlander\'s Lamellar Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120107','3','4','4','32644','6','6','43','40','0','Highlander\'s Lamellar Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120108','3','4','3','32644','6','6','33','28','0','Highlander\'s Lamellar Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120109','3','4','4','32822','8','6','53','48','0','Highlander\'s Lamellar Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120110','3','4','4','32822','8','6','43','40','0','Highlander\'s Lamellar Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120111','3','4','3','32822','8','6','33','28','0','Highlander\'s Lamellar Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120112','3','4','2','34247','8','8','53','48','0','Highlander\'s Leather Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120113','3','4','2','34247','8','8','43','38','0','Highlander\'s Leather Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120114','3','4','2','34247','8','8','33','28','0','Highlander\'s Leather Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120115','3','4','2','34244','6','8','53','48','0','Highlander\'s Leather Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120116','3','4','2','34244','6','8','43','38','0','Highlander\'s Leather Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120117','3','4','2','34244','6','8','33','28','0','Highlander\'s Leather Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120118','3','4','3','34241','6','5','53','48','0','Highlander\'s Mail Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120119','3','4','3','34241','6','5','43','40','0','Highlander\'s Mail Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120120','3','4','2','34392','6','5','33','28','0','Highlander\'s Mail Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120121','3','4','3','34242','8','5','53','48','0','Highlander\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120122','3','4','3','34242','8','5','43','40','0','Highlander\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120123','3','4','2','34393','8','5','33','28','0','Highlander\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120124','3','4','4','32644','6','6','53','48','0','Highlander\'s Plate Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120125','3','4','4','32644','6','6','43','40','0','Highlander\'s Plate Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120126','3','4','3','34394','6','6','33','28','0','Highlander\'s Mail Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120127','3','4','4','32822','8','6','53','48','0','Highlander\'s Plate Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120128','3','4','4','32822','8','6','43','40','0','Highlander\'s Plate Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120129','3','4','3','34395','8','6','33','28','0','Highlander\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120130','3','4','0','18059','12','-1','52','0','0','Diamond Flask','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120131','1','4','0','32694','19','7','20','0','0','Battle Tabard of the Defilers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120132','1','4','0','32695','19','7','20','0','0','Arathor Battle Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120134','4','4','3','32735','1','5','62','0','0','Skyfury Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120150','3','4','3','34241','6','5','63','58','0','Defiler\'s Chain Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120151','3','4','3','34241','6','5','53','48','0','Defiler\'s Chain Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120152','3','4','2','34392','6','5','33','28','0','Defiler\'s Chain Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120153','3','4','3','34241','6','5','43','40','0','Defiler\'s Chain Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120154','3','4','3','34242','8','5','63','58','0','Defiler\'s Chain Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120155','3','4','3','34242','8','5','53','48','0','Defiler\'s Chain Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120156','3','4','3','34242','8','5','43','40','0','Defiler\'s Chain Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120157','3','4','2','34393','8','8','33','28','0','Defiler\'s Chain Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120158','4','4','3','34243','3','6','65','60','0','Defiler\'s Chain Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120159','3','4','1','34240','8','7','63','58','0','Defiler\'s Cloth Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120160','3','4','1','34240','8','7','53','48','0','Defiler\'s Cloth Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120161','3','4','1','34240','8','7','43','38','0','Defiler\'s Cloth Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120162','3','4','1','34240','8','7','33','28','0','Defiler\'s Cloth Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120163','3','4','1','34244','6','7','63','58','0','Defiler\'s Cloth Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120164','3','4','1','34244','6','7','33','28','0','Defiler\'s Cloth Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120165','3','4','1','34244','6','7','53','48','0','Defiler\'s Cloth Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120166','3','4','1','34244','6','7','43','38','0','Defiler\'s Cloth Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120167','3','4','2','34248','8','8','63','58','0','Defiler\'s Lizardhide Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120168','3','4','2','34248','8','8','43','38','0','Defiler\'s Lizardhide Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120169','3','4','2','34248','8','8','33','28','0','Defiler\'s Lizardhide Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120170','3','4','2','34248','8','8','53','48','0','Defiler\'s Lizardhide Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120171','3','4','2','34244','6','8','63','58','0','Defiler\'s Lizardhide Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120172','3','4','2','34244','6','8','33','28','0','Defiler\'s Lizardhide Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120173','3','4','2','34244','6','8','43','38','0','Defiler\'s Lizardhide Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120174','3','4','2','34244','6','8','53','48','0','Defiler\'s Lizardhide Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120175','4','4','2','18971','3','8','65','60','0','Defiler\'s Lizardhide Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120176','4','4','1','32740','3','7','65','60','0','Defiler\'s Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120177','3','4','4','32644','6','6','63','58','0','Defiler\'s Lamellar Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120178','3','4','3','32644','6','6','33','28','0','Defiler\'s Lamellar Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120179','3','4','4','32644','6','6','53','48','0','Defiler\'s Lamellar Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120180','3','4','4','32644','6','6','43','40','0','Defiler\'s Lamellar Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120181','3','4','4','32822','8','6','63','58','0','Defiler\'s Lamellar Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120182','3','4','3','32822','8','6','33','28','0','Defiler\'s Lamellar Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120183','3','4','4','32822','8','6','43','40','0','Defiler\'s Lamellar Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120184','4','4','4','32739','3','5','65','60','0','Defiler\'s Lamellar Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120185','3','4','4','32822','8','6','53','48','0','Defiler\'s Lamellar Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120186','3','4','2','34247','8','8','63','58','0','Defiler\'s Leather Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120187','3','4','2','34247','8','8','43','38','0','Defiler\'s Leather Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120188','3','4','2','34247','8','8','33','28','0','Defiler\'s Leather Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120189','3','4','2','34247','8','8','53','48','0','Defiler\'s Leather Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120190','3','4','2','34244','6','8','63','58','0','Defiler\'s Leather Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120191','3','4','2','34244','6','8','33','28','0','Defiler\'s Leather Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120192','3','4','2','34244','6','8','43','38','0','Defiler\'s Leather Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120193','3','4','2','34244','6','8','53','48','0','Defiler\'s Leather Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120194','4','4','2','18971','3','8','65','60','0','Defiler\'s Leather Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120195','3','4','3','34241','6','5','63','58','0','Defiler\'s Mail Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120196','3','4','3','34241','6','5','53','48','0','Defiler\'s Mail Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120197','3','4','2','34392','6','5','33','28','0','Defiler\'s Padded Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120198','3','4','3','34241','6','5','43','40','0','Defiler\'s Mail Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120199','3','4','3','34242','8','5','63','58','0','Defiler\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120200','3','4','3','34242','8','5','43','40','0','Defiler\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120201','3','4','2','34393','8','5','33','28','0','Defiler\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120202','3','4','3','34242','8','5','53','48','0','Defiler\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120203','4','4','3','34249','3','6','65','60','0','Defiler\'s Mail Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120204','3','4','4','32644','6','6','63','58','0','Defiler\'s Plate Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120205','3','4','4','32644','6','6','53','48','0','Defiler\'s Plate Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120206','3','4','4','32644','6','6','43','40','0','Defiler\'s Plate Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120207','3','4','3','34394','6','6','33','28','0','Defiler\'s Mail Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120208','3','4','4','32822','8','6','63','58','0','Defiler\'s Plate Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120209','3','4','4','32822','8','6','43','40','0','Defiler\'s Plate Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120210','3','4','3','34395','8','6','33','28','0','Defiler\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120211','3','4','4','32822','8','6','53','48','0','Defiler\'s Plate Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120212','4','4','4','34245','3','5','65','60','0','Defiler\'s Plate Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120213','3','4','4','32718','6','6','70','0','0','Belt of Shrunken Heads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120214','4','2','15','32648','21','1','65','60','3','Mindfang','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120215','3','4','3','32721','6','5','70','0','0','Belt of Shriveled Heads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120216','3','4','2','32720','6','8','70','0','0','Belt of Preserved Heads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120217','3','4','1','32724','6','7','70','0','0','Belt of Tiny Heads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120218','3','4','1','32726','16','7','59','0','0','Faded Hakkari Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120219','3','4','1','32727','16','7','59','0','0','Tattered Hakkari Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120220','4','2','10','32677','17','2','65','60','2','Ironbark Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120255','3','4','2','32732','8','8','52','0','0','Whisperwalk Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120257','4','4','3','32751','10','5','68','60','0','Seafury Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120258','3','2','10','32587','17','2','65','60','2','Zulian Ceremonial Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120259','3','4','2','32752','10','8','65','60','0','Shadow Panther Hide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120260','3','4','3','32753','7','5','68','60','0','Seafury Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120261','3','4','2','30749','6','8','65','60','0','Shadow Panther Hide Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120262','3','4','3','32755','8','5','68','60','0','Seafury Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120263','3','4','4','32900','1','6','65','60','0','Gurubashi Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120264','4','4','4','32757','10','5','68','60','0','Peacekeeper Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120265','3','4','4','32758','8','5','68','60','0','Peacekeeper Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120266','3','4','4','32756','7','5','68','60','0','Peacekeeper Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120295','3','4','3','32760','7','5','60','55','0','Blue Dragonscale Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120296','3','4','3','32762','10','5','54','49','0','Green Dragonscale Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120368','3','2','2','30926','15','2','60','60','0','Bland Bow of Steadiness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120369','3','4','3','32890','10','6','52','0','0','Azurite Fists','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120380','4','4','3','32818','5','5','68','60','0','Dreamscale Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120391','1','4','0','41729','1','-1','1','0','0','Flimsy Male Gnome Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120392','1','4','0','41721','1','-1','1','0','0','Flimsy Female Gnome Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120406','2','4','1','33129','3','7','60','60','0','Twilight Cultist Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120407','2','4','1','32841','20','7','60','60','0','Twilight Cultist Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120408','2','4','1','33073','1','7','60','60','0','Twilight Cultist Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120425','3','2','10','20330','17','2','23','18','2','Advisor\'s Gnarled Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120426','3','4','0','30661','11','4','23','18','0','Advisor\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120427','3','4','1','28042','16','7','23','18','0','Battle Healer\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120428','3','4','1','32072','16','7','23','18','0','Caretaker\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120429','3','4','0','29697','11','4','23','18','0','Legionnaire\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120430','3','2','7','32076','13','1','23','18','3','Legionnaire\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120431','3','4','0','28812','11','4','23','18','0','Lorekeeper\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120434','3','2','10','18289','17','2','23','18','2','Lorekeeper\'s Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120437','3','2','2','32079','15','2','23','18','0','Outrider\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120438','3','2','2','32081','15','2','23','18','0','Outrunner\'s Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120439','3','4','0','9832','11','4','23','18','0','Protector\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120440','3','2','7','32077','13','1','23','18','3','Protector\'s Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120441','3','2','15','32074','13','1','23','18','3','Scout\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120442','3','4','0','32008','2','4','23','18','0','Scout\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120443','3','2','15','32075','13','1','23','18','3','Sentinel\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120444','3','4','0','32073','2','4','23','18','0','Sentinel\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120476','3','4','3','32871','9','5','62','57','0','Sandstalker Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120477','3','4','3','32874','10','5','62','57','0','Sandstalker Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120478','3','4','3','32872','5','5','62','57','0','Sandstalker Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120479','3','4','3','32876','5','5','62','57','0','Spitfire Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120480','3','4','3','32877','10','5','62','57','0','Spitfire Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120481','3','4','3','32875','9','5','62','57','0','Spitfire Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120487','4','2','10','31163','17','-1','75','60','2','Lok\'delar, Stave of the Ancient Keepers DEP','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120488','4','2','2','31338','15','2','75','60','0','Rhok\'delar, Longbow of the Ancient Keepers DEP','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120502','3','4','6','32888','14','2','52','0','4','Ironbark Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120503','3','4','0','7143','12','-1','52','0','0','Enamored Water Spirit','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120504','3','2','8','33033','17','1','52','47','1','Lightforged Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120505','3','4','0','31905','11','5','52','0','0','Chivalrous Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120512','3','4','0','24730','12','-1','52','0','0','Sanctified Orb','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120517','3','4','4','32903','3','6','52','0','0','Razorsteel Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120521','3','4','4','32906','1','6','52','0','0','Fury Visor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120522','3','2','10','32909','17','2','52','0','2','Feral Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120524','3','4','2','32910','7','-1','52','0','0','Shadowhide Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120530','3','4','1','33150','20','7','52','0','0','Robes of Servitude','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120534','3','4','0','30690','12','-1','52','0','0','Abyss Shard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120536','3','2','10','33087','17','2','52','0','2','Soul Harvester','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120537','3','4','1','18863','8','7','63','58','0','Runed Stygian Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120538','3','4','1','32927','7','7','63','58','0','Runed Stygian Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120539','3','4','1','38344','6','7','63','58','0','Runed Stygian Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120549','3','4','4','57569','10','-1','63','58','0','Darkrune Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120550','3','4','4','32945','5','6','63','58','0','Darkrune Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120551','3','4','4','33195','1','6','63','58','0','Darkrune Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120556','3','2','10','24014','17','2','52','0','2','Wildstaff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120561','1','4','0','41728','1','-1','1','0','0','Flimsy Male Dwarf Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120562','1','4','0','41720','1','-1','1','0','0','Flimsy Female Dwarf Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120563','1','4','0','41723','1','-1','1','0','0','Flimsy Female Night Elf Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120564','1','4','0','41731','1','-1','1','0','0','Flimsy Male Night Elf Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120565','1','4','0','41722','1','-1','1','0','0','Flimsy Female Human Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120566','1','4','0','41730','1','-1','1','0','0','Flimsy Male Human Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120567','1','4','0','41726','1','-1','1','0','0','Flimsy Female Troll Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120568','1','4','0','41734','1','-1','1','0','0','Flimsy Male Troll Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120569','1','4','0','41724','1','-1','1','0','0','Flimsy Female Orc Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120570','1','4','0','41732','1','-1','1','0','0','Flimsy Male Orc Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120571','1','4','0','41725','1','-1','1','0','0','Flimsy Female Tauren Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120572','1','4','0','41733','1','-1','1','0','0','Flimsy Male Tauren Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120573','1','4','0','41735','1','-1','1','0','0','Flimsy Male Undead Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120574','1','4','0','41727','1','-1','1','0','0','Flimsy Female Undead Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120575','2','4','2','32974','5','8','20','15','0','Black Whelp Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120577','4','2','7','33097','13','1','71','60','3','Nightmare Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120578','4','2','15','33095','13','1','71','60','3','Emerald Dragonfang','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120579','4','4','1','33096','16','7','71','60','0','Green Dragonskin Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120580','4','2','4','33017','13','1','71','60','3','Hammer of Bestial Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120581','4','2','10','33015','17','2','71','60','2','Staff of Rampant Growth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120582','4','4','0','33018','23','3','71','60','0','Trance Stone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120591','2','4','0','41728','1','-1','45','0','0','Sturdy Male Dwarf Mask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120596','2','4','0','41733','1','-1','45','0','0','Sturdy Male Tauren Mask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120599','4','2','18','33020','26','2','71','60','0','Polished Ironwood Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120600','4','4','0','31576','11','4','72','60','0','Malfurion\'s Signet Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120615','4','4','2','33028','9','8','71','60','0','Dragonspur Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120616','4','4','4','18378','9','1','71','60','0','Dragonbone Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120617','4','4','3','33029','7','5','72','60','0','Ancient Corroded Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120618','4','4','1','33031','10','7','72','60','0','Gloves of Delusional Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120619','4','4','4','33034','8','6','72','60','0','Acid Inscribed Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120621','4','4','3','33036','8','5','71','60','0','Boots of the Endless Moor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120622','4','4','0','31907','2','4','71','60','0','Dragonheart Necklace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120623','4','4','2','33161','1','8','72','60','0','Circlet of Restless Dreams','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120624','4','4','0','31664','11','1','72','60','0','Ring of the Unliving','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120625','4','4','1','33040','6','7','71','60','0','Belt of the Dark Bog','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120626','4','4','1','16892','9','7','71','60','0','Black Bark Wristbands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120627','4','4','2','33042','7','8','71','60','0','Dark Heart Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120628','4','4','2','33162','1','8','72','60','0','Deviate Growth Cap','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120629','4','4','3','33045','8','5','72','60','0','Malignant Footguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120630','4','4','4','33047','10','6','72','60','0','Gauntlets of the Shining Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120631','4','4','1','33049','8','7','71','60','0','Mendicant\'s Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120632','4','4','0','9834','11','4','71','60','0','Mindtear Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120633','4','4','2','33051','3','8','72','60','0','Unnatural Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120634','4','4','2','30845','8','8','72','60','0','Boots of Fright','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120635','4','4','1','33054','20','7','71','60','0','Jade Inlaid Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120636','4','4','0','1262','12','3','71','60','0','Hibernation Crystal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120637','4','4','4','33056','3','6','72','60','0','Acid Inscribed Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120638','4','4','3','33057','7','5','72','60','0','Leggings of the Demented Mind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120639','4','4','4','33059','7','6','72','60','0','Strangely Glyphed Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120640','2','4','4','34495','1','6','45','0','0','Southsea Head Bucket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120641','2','4','1','18863','8','7','45','0','0','Southsea Mojo Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120642','2','4','1','33062','5','7','47','0','0','Antiquated Nobleman\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120643','2','4','2','35629','1','8','47','0','0','Undercity Reservist\'s Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120645','2','4','0','6539','2','4','60','0','0','Nature\'s Whisper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120646','3','2','2','33068','15','2','59','0','0','Sandstrider\'s Mark','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120647','3','2','15','33069','21','1','59','0','3','Black Crystal Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120648','3','2','4','33072','13','1','63','0','3','Cold Forged Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120649','2','4','0','31604','2','3','60','0','0','Sunprism Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120650','2','4','4','33092','10','6','60','0','0','Desert Wind Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120652','2','4','1','33098','8','7','60','55','0','Abyssal Cloth Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120653','2','4','4','33100','10','6','60','55','0','Abyssal Plate Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120654','3','2','10','18368','17','2','60','55','2','Amethyst War Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120655','2','4','1','33101','10','7','60','55','0','Abyssal Cloth Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120656','2','4','3','33105','8','5','60','55','0','Abyssal Mail Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120657','3','2','15','33107','13','1','60','55','3','Crystal Tipped Stiletto','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120658','2','4','2','33112','8','8','60','55','0','Abyssal Leather Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120659','2','4','3','33110','10','5','60','55','0','Abyssal Mail Handguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120660','3','2','6','33113','17','1','60','55','1','Stonecutting Glaive','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120661','2','4','2','33132','10','8','60','55','0','Abyssal Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120662','2','4','4','33117','8','6','60','55','0','Abyssal Plate Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120663','3','2','2','28547','15','2','60','55','0','Deep Strike Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120664','2','4','1','16767','6','7','65','60','0','Abyssal Cloth Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120665','3','4','2','33119','7','8','62','57','0','Abyssal Leather Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120666','3','2','4','33120','21','1','62','57','3','Hardened Steel Warhammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120667','2','4','2','33121','6','8','65','60','0','Abyssal Leather Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120668','3','4','3','33122','7','5','62','57','0','Abyssal Mail Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120669','3','2','8','33123','17','1','62','57','1','Darkstone Claymore','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120670','2','4','3','27137','6','5','65','60','0','Abyssal Mail Clutch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120671','3','4','4','33124','7','6','62','57','0','Abyssal Plate Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120672','3','2','19','33125','26','2','62','57','0','Sparkling Crystal Wand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120673','2','4','4','33126','6','7','65','60','0','Abyssal Plate Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120674','3','4','1','33127','7','7','62','57','0','Abyssal Cloth Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120675','3','2','0','33128','13','1','62','57','3','Soulrender','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120680','3','4','3','26919','3','5','68','60','0','Abyssal Mail Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120681','3','4','2','33131','9','8','68','60','0','Abyssal Leather Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120682','4','4','0','24087','11','4','65','60','0','Elemental Focus Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120683','3','4','4','33133','3','6','68','60','0','Abyssal Plate Epaulets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120684','3','4','3','33134','9','5','68','60','0','Abyssal Mail Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120685','4','4','0','33135','2','4','65','60','0','Wavefront Necklace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120686','3','4','1','33136','3','7','68','60','0','Abyssal Cloth Amice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120687','3','4','4','33137','9','6','68','60','0','Abyssal Plate Vambraces','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120688','4','4','6','33138','14','6','65','60','4','Earthen Guard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120689','3','4','2','33139','3','8','68','60','0','Abyssal Leather Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120690','3','4','1','33141','9','7','68','60','0','Abyssal Cloth Wristbands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120691','4','4','1','26137','16','7','65','60','0','Windshear Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120692','2','4','0','963','11','7','60','55','0','Multicolored Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120693','2','4','1','33142','16','7','60','55','0','Weighted Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120694','2','4','0','24122','23','3','60','55','0','Glowing Black Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120695','3','4','0','9852','2','4','63','58','0','Abyssal War Beads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120696','3','2','5','33143','17','1','63','58','1','Crystal Spiked Maul','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120697','3','4','1','33144','16','7','63','58','0','Crystalline Threaded Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120698','4','2','7','33145','21','3','63','58','3','Elemental Attuned Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120699','3','4','4','33146','7','6','63','0','0','Cenarion Reservist\'s Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120700','3','4','4','33146','7','6','63','0','0','Cenarion Reservist\'s Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120701','3','4','3','33147','7','5','63','0','0','Cenarion Reservist\'s Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120702','3','4','3','33147','7','5','63','0','0','Cenarion Reservist\'s Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120703','3','4','2','33148','7','8','63','0','0','Cenarion Reservist\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120704','3','4','2','33148','7','8','63','0','0','Cenarion Reservist\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120705','3','4','1','33149','7','7','63','0','0','Cenarion Reservist\'s Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120706','3','4','1','33149','7','7','63','0','0','Cenarion Reservist\'s Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120707','3','4','1','33149','7','7','63','0','0','Cenarion Reservist\'s Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120710','3','4','4','33152','8','6','63','0','0','Crystal Encrusted Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120711','3','4','4','33152','8','6','63','0','0','Crystal Lined Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120712','3','4','3','33154','10','5','63','0','0','Wastewalker\'s Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120713','3','4','3','33154','10','5','63','0','0','Desertstalkers\'s Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120714','3','4','2','33155','8','8','63','0','0','Sandstorm Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120715','3','4','2','33155','8','8','63','0','0','Dunestalker\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120716','3','4','1','33160','10','7','63','0','0','Sandworm Skin Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120717','3','4','1','33160','10','7','63','0','0','Desert Bloom Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120720','3','2','15','21620','21','1','65','60','3','Dark Whisper Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120721','3','4','0','26391','11','4','65','60','0','Band of the Cultist','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120722','3','2','3','31237','26','2','65','60','0','Crystal Slugthrower','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120723','2','2','0','33171','13','1','62','0','3','Brann\'s Trusty Pick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120724','2','2','10','33172','17','2','62','0','2','Corrupted Blackwood Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120818','2','4','0','3666','11','1','22','17','0','Elegant Silver Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120820','2','4','0','28812','11','-1','22','17','0','Simple Pearl Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120821','2','4','0','24087','11','-1','20','15','0','Inlaid Malachite Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120823','2','4','0','24022','11','5','24','19','0','Gloom Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120826','3','4','0','26537','11','1','27','22','1','Heavy Silver Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120827','2','4','0','9837','11','5','26','21','0','Ring of Silver Might','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120828','2','4','0','31800','11','4','28','23','0','Ring of Twilight Shadows','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120830','2','4','0','9657','2','3','30','25','0','Amulet of the Moon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120831','2','4','0','9857','2','3','35','30','0','Heavy Golden Necklace of Battle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120832','3','4','1','43894','1','5','31','26','0','Moonsoul Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120833','2','4','0','6012','11','1','32','27','0','Wicked Moonstone Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120835','1','2','7','33236','21','1','5','0','3','Sunstrider Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120836','1','2','15','33237','13','1','5','0','3','Sunstrider Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120837','1','2','0','33235','21','1','5','0','1','Sunstrider Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120838','1','2','2','20723','15','2','5','0','0','Sunstrider Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120839','1','2','10','38291','17','2','5','0','2','Sunstrider Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120840','1','2','4','5194','21','1','5','0','3','Sunstrider Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120841','1','4','6','33291','14','1','5','0','4','Sunstrider Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120849','1','2','7','33220','13','1','4','1','3','Arcane Forged Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120850','1','2','0','33255','13','1','4','1','3','Arcane Forged Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120851','1','2','4','33308','13','2','4','1','3','Arcane Forged Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120852','1','2','15','33253','13','1','4','1','3','Arcane Forged Dirk','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120853','1','2','10','33254','17','2','4','1','2','Mana Gathering Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120891','0','4','1','33256','20','7','1','1','0','Neophyte\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120892','0','4','1','33257','20','7','1','1','0','Acolyte\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120893','0','4','1','33258','20','7','1','1','0','Apprentice\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120894','0','4','1','33259','7','7','1','1','0','Apprentice\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120895','1','4','0','33260','8','7','1','0','0','Apprentice\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120896','0','4','1','33342','7','7','1','0','0','Lookout\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120897','0','4','0','33353','4','7','1','0','0','Lookout\'s Tunic','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120898','0','4','1','36764','8','7','1','0','0','Lookout\'s Shoes','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120899','0','4','1','33351','7','7','1','1','0','Warder\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120900','0','4','1','33350','8','7','1','0','0','Warder\'s Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120901','0','4','0','33352','4','7','1','0','0','Warder\'s Shirt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120902','1','4','1','33359','7','7','1','1','0','Recruit\'s Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120903','1','4','1','33348','8','7','1','0','0','Recruit\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120904','1','4','3','33346','5','7','1','0','0','Recruit\'s Tunic','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120906','2','4','0','9823','11','1','15','10','0','Braided Copper Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120907','2','4','0','9836','11','1','22','17','0','Solid Bronze Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120909','2','4','0','33262','2','3','30','25','0','Barbaric Iron Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120910','1','2','2','20723','15','2','4','1','0','Stiff Shortbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120911','1','4','6','33309','14','1','3','1','4','Light Guard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120912','1','4','6','33307','14','1','5','1','4','Large Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120913','1','4','6','18662','14','1','5','1','4','Medium Guard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120914','1','4','3','33264','6','5','5','1','0','Unadorned Chain Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120915','1','4','3','33270','8','5','5','1','0','Unadorned Chain Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120916','1','4','3','33266','9','5','5','1','0','Unadorned Chain Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120917','1','4','3','33269','10','5','5','1','0','Unadorned Chain Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120918','1','4','3','33263','7','5','5','1','0','Unadorned Chain Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120919','1','4','3','33268','5','5','5','1','0','Unadorned Chain Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120920','1','4','2','33271','6','8','5','1','0','Sun Cured Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120921','1','4','2','33272','8','8','5','1','0','Sun Cured Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120922','1','4','2','33275','9','8','5','1','0','Sun Cured Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120923','1','4','2','33276','10','8','5','1','0','Sun Cured Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120924','1','4','2','33273','7','8','5','1','0','Sun Cured Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120925','1','4','2','33274','5','8','5','1','0','Sun Cured Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120950','2','4','0','33288','2','3','31','26','0','Pendant of the Agate Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120954','2','2','13','26592','13','1','32','27','7','Heavy Iron Knuckles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120955','2','4','0','31498','11','-1','33','28','0','Golden Dragon Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120956','2','4','0','33287','2','3','34','29','0','Silver Rose Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120958','2','4','0','30661','11','5','35','30','1','Blazing Citrine Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120959','2','4','0','9842','11','-1','37','32','0','The Jade Eye','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120960','2','4','0','31616','11','-1','37','32','0','Engraved Truesilver Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120961','2','4','0','28831','11','-1','38','33','0','Citrine Ring of Rapid Healing','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120964','3','4','0','9837','11','-1','42','37','0','Aquamarine Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120966','2','4','0','6539','2','3','36','31','0','Jade Pendant of Blasting','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120967','2','4','0','15420','2','3','39','34','0','Citrine Pendant of Golden Healing','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120969','3','4','1','43895','1','8','45','40','0','Ruby Crown of Restoration','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120977','1','2','7','33304','21','1','1','1','3','Recruit\'s Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120978','1','2','10','33299','17','2','2','1','2','Apprentice\'s Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120979','1','2','0','33300','21','1','2','1','3','Warder\'s Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120980','1','2','2','8106','15','2','2','1','0','Warder\'s Shortbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120981','1','2','4','37294','21','2','2','1','3','Neophyte\'s Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120982','1','2','15','37170','13','1','2','1','3','Sharp Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120983','1','2','15','37171','13','1','2','1','3','Acolyte\'s Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120984','1','4','6','33305','14','1','1','1','4','Recruit\'s Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120985','1','4','1','16576','8','7','5','1','0','Light Cloth Shoes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120986','1','4','1','8969','7','7','5','1','0','Light Cloth Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120987','1','4','1','16969','10','7','5','1','0','Light Cloth Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120988','1','4','1','16929','9','7','5','1','0','Light Cloth Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120989','1','4','1','16832','6','7','5','1','0','Light Cloth Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120990','1','4','1','16575','5','7','5','1','0','Light Cloth Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120991','1','4','1','15196','16','7','5','0','0','Daylight Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120992','1','4','1','33319','9','7','5','0','0','Sunrise Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120993','1','4','2','36955','10','8','5','0','0','Lynxskin Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120994','1','4','3','33322','5','5','5','1','0','Green Chain Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120995','1','4','1','33323','10','7','5','0','0','Well Watcher Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120996','1','4','2','33324','6','8','5','0','0','Sunspire Cord','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120997','1','4','3','33325','8','5','5','0','0','Green Chain Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120998','1','4','1','33326','6','7','5','0','0','Wyrm Sash','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('120999','1','4','3','33327','10','5','5','0','0','Green Chain Gauntlets','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121000','1','4','2','33328','9','8','5','0','0','Vigorous Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121001','1','4','1','33329','7','7','5','0','0','Striding Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121002','0','4','1','33330','6','7','3','1','0','Unkempt Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121003','0','4','1','33331','9','7','5','1','0','Unkempt Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121004','0','4','1','33356','16','7','5','1','0','Unkempt Cloak','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121005','0','4','1','33333','10','7','3','1','0','Unkempt Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121006','0','4','1','33334','7','7','2','1','0','Unkempt Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121007','0','4','1','16696','20','7','4','1','0','Unkempt Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121008','0','4','1','14403','8','7','4','1','0','Unkempt Shoes','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121009','0','4','2','14335','6','8','5','1','0','Scraggy Leather Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121010','0','4','2','14354','8','8','3','1','0','Scraggy Leather Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121011','0','4','2','14336','9','8','4','1','0','Scraggy Leather Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121012','0','4','2','17184','10','8','4','1','0','Scraggy Leather Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121013','0','4','2','14338','7','8','2','1','0','Scraggy Leather Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121014','0','4','2','14339','5','8','5','1','0','Scraggy Leather Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121015','0','4','3','27951','6','5','2','1','0','Shoddy Chain Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121016','0','4','3','33340','5','5','5','1','0','Shoddy Chain Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121017','0','4','3','3519','7','5','2','1','0','Shoddy Chain Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121018','0','4','3','33341','10','5','4','1','0','Shoddy Chain Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121019','0','4','3','6828','9','5','4','1','0','Shoddy Chain Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121020','0','4','3','6827','8','5','3','1','0','Shoddy Chain Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121021','0','4','6','3931','14','1','4','1','4','Battered Shield','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121022','0','4','6','2552','14','1','2','1','4','Weather Beaten Buckler','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121039','1','4','0','33401','0','-1','1','0','0','Narain\'s Turban','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121040','1','4','0','33402','20','-1','1','0','0','Narain\'s Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121115','3','4','0','6502','12','4','53','48','0','Defiler\'s Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121116','3','4','0','6502','12','4','43','38','0','Defiler\'s Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121117','3','4','0','6502','12','4','53','48','0','Talisman of Arathor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121118','3','4','0','6502','12','4','43','38','0','Talisman of Arathor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121119','3','4','0','6502','12','4','33','28','0','Talisman of Arathor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121120','3','4','0','6502','12','4','33','28','0','Defiler\'s Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121126','4','2','15','34513','13','1','84','60','3','Death\'s Sting','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121128','4','2','10','33429','17','2','75','60','2','Staff of the Qiraji Prophets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121134','4','2','1','33435','17','1','84','60','1','Dark Edge of Insanity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121154','1','4','1','34096','20','0','1','0','0','Festival Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121157','1','4','0','34093','20','4','1','0','0','Festive Green Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121178','3','4','2','33519','10','8','62','0','0','Gloves of Earthen Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121179','3','4','0','23608','11','-1','62','0','0','Band of Earthen Wrath','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121180','4','4','0','33520','12','3','66','0','0','Earthstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121181','3','4','0','33522','12','3','66','0','0','Grace of Earth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121182','3','4','0','26001','11','-1','66','0','0','Band of Earthen Might','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121183','3','4','1','33527','5','7','66','0','0','Earthpower Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121184','4','4','4','33528','9','6','62','0','0','Deeprock Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121185','4','4','0','33529','23','3','62','0','7','Earthcalm Orb','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121186','4','4','1','33530','9','7','62','0','0','Rockfury Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121187','3','4','1','33531','16','7','62','0','0','Earthweave Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121188','4','2','5','33533','17','2','66','60','1','Fist of Cenarius','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121189','4','4','0','31908','11','-1','62','0','0','Might of Cenarius','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121190','4','4','0','31498','11','-1','66','0','0','Wrath of Cenarius','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121196','4','4','0','33537','11','3','60','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121197','4','4','0','33537','11','3','65','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121198','4','4','0','33537','11','3','70','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121199','4','4','0','33537','11','3','75','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121200','4','4','0','33537','11','3','80','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121201','4','4','0','33537','11','3','60','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121202','4','4','0','33537','11','3','65','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121203','4','4','0','33537','11','3','70','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121204','4','4','0','33537','11','3','75','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121205','4','4','0','33537','11','3','80','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121206','4','4','0','33537','11','3','60','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121207','4','4','0','33537','11','3','65','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121208','4','4','0','33537','11','3','70','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121209','4','4','0','33537','11','3','75','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121210','4','4','0','33537','11','3','80','60','0','Signet Ring of the Bronze Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121242','4','2','0','34178','13','1','79','60','3','Blessed Qiraji War Axe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121244','4','2','15','34142','13','1','79','60','3','Blessed Qiraji Pugio','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121268','4','2','4','33830','13','1','79','60','3','Blessed Qiraji War Hammer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121269','4','4','6','34137','14','1','79','60','4','Blessed Qiraji Bulwark','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121272','4','2','3','34139','26','1','79','60','0','Blessed Qiraji Musket','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121273','4','2','10','34134','17','2','79','60','2','Blessed Qiraji Acolyte Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121275','4','2','10','34135','17','2','79','60','2','Blessed Qiraji Augur Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121278','3','4','2','4318','10','-1','55','50','0','Stormshroud Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121311','2','4','1','33590','5','7','48','0','0','Earth Warder\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121312','2','4','3','33591','6','5','48','0','0','Belt of the Den Watcher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121316','2','4','4','33604','7','6','55','0','0','Leggings of the Ursa','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121317','2','4','2','42880','1','8','55','0','0','Helm of the Pathfinder','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121318','2','4','1','18271','10','7','58','0','0','Earth Warder\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121319','2','4','2','33599','10','7','58','0','0','Gloves of the Pathfinder','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121320','2','4','3','33601','5','7','58','0','0','Vest of the Den Watcher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121322','2','4','4','33603','5','7','58','0','0','Ursa\'s Embrace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121326','4','4','0','33702','12','-1','62','0','0','Defender of the Timbermaw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121329','4','4','4','34486','1','1','81','60','0','Conqueror\'s Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121330','4','4','4','34256','3','6','78','60','0','Conqueror\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121331','4','4','4','33709','5','6','88','60','0','Conqueror\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121332','4','4','4','33713','7','1','81','60','0','Conqueror\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121333','4','4','4','33714','8','1','78','60','0','Conqueror\'s Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121334','4','4','1','34061','20','7','88','60','0','Doomcaller\'s Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121335','4','4','1','34018','3','7','78','60','0','Doomcaller\'s Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121336','4','4','1','33618','7','7','81','60','0','Doomcaller\'s Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121337','4','4','1','34351','1','7','81','60','0','Doomcaller\'s Circlet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121338','4','4','1','33625','8','7','78','60','0','Doomcaller\'s Footwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121343','4','4','1','37266','20','7','88','60','0','Enigma Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121344','4','4','1','33641','8','7','78','60','0','Enigma Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121345','4','4','1','34020','3','7','78','60','0','Enigma Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121346','4','4','1','33643','7','7','81','60','0','Enigma Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121347','4','4','1','34370','1','7','81','60','0','Enigma Circlet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121348','4','4','1','34348','1','7','81','60','0','Tiara of the Oracle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121349','4','4','1','33647','8','7','78','60','0','Footwraps of the Oracle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121350','4','4','1','34021','3','7','78','60','0','Mantle of the Oracle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121351','4','4','1','34063','20','7','88','60','0','Vestments of the Oracle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121352','4','4','1','33652','7','7','81','60','0','Trousers of the Oracle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121353','4','4','2','34609','1','8','81','60','0','Genesis Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121354','4','4','2','34037','3','8','78','60','0','Genesis Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121355','4','4','2','33661','8','8','78','60','0','Genesis Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121356','4','4','2','33662','7','8','81','60','0','Genesis Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121357','4','4','2','34086','5','8','88','60','0','Genesis Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121359','4','4','2','33673','8','8','78','60','0','Deathdealer\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121360','4','4','2','34608','1','8','81','60','0','Deathdealer\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121361','4','4','2','34077','3','8','78','60','0','Deathdealer\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121362','4','4','2','33678','7','8','81','60','0','Deathdealer\'s Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121364','4','4','2','34087','5','8','88','60','0','Deathdealer\'s Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121365','4','4','3','33690','8','5','78','60','0','Striker\'s Footguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121366','4','4','3','34221','1','5','81','60','0','Striker\'s Diadem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121367','4','4','3','34904','3','5','81','60','0','Striker\'s Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121368','4','4','3','33700','7','5','81','60','0','Striker\'s Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121370','4','4','3','33691','5','5','88','60','0','Striker\'s Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121372','4','4','3','34222','1','5','81','60','0','Stormcaller\'s Diadem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121373','4','4','3','33696','8','5','78','60','0','Stormcaller\'s Footguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121374','4','4','3','33697','5','5','88','60','0','Stormcaller\'s Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121375','4','4','3','33701','7','5','81','60','0','Stormcaller\'s Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121376','4','4','3','34056','3','5','78','60','0','Stormcaller\'s Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121387','4','4','4','34487','1','6','81','60','0','Avenger\'s Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121388','4','4','4','33708','8','6','78','60','0','Avenger\'s Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121389','4','4','4','33705','5','6','88','60','0','Avenger\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121390','4','4','4','33706','7','6','81','60','0','Avenger\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121391','4','4','4','34257','3','6','78','60','0','Avenger\'s Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121392','4','2','0','33727','13','1','70','60','7','Sickle of Unyielding Strength','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121393','4','4','0','33856','11','4','65','60','0','Signet of Unyielding Strength','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121394','4','4','1','24013','16','7','67','60','0','Drape of Unyielding Strength','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121395','4','2','7','33839','13','1','70','60','3','Blade of Eternal Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121396','4','4','0','33856','11','4','65','60','0','Ring of Eternal Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121397','4','4','1','33730','16','7','67','60','0','Cape of Eternal Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121398','4','2','4','33731','21','1','70','60','3','Hammer of the Gathering Storm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121399','4','4','0','33856','11','4','65','60','0','Ring of the Gathering Storm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121400','4','4','1','33732','16','7','67','60','0','Cloak of the Gathering Storm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121401','4','2','0','33727','13','1','70','60','7','Scythe of the Unseen Path','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121402','4','4','0','33856','11','4','65','60','0','Signet of the Unseen Path','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121403','4','4','1','33733','16','7','67','60','0','Cloak of the Unseen Path','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121404','4','2','15','33734','13','1','70','60','3','Dagger of Veiled Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121405','4','4','0','33856','11','4','65','60','0','Band of Veiled Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121406','4','4','1','33735','16','7','67','60','0','Cloak of Veiled Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121407','4','2','5','33731','17','1','70','60','1','Mace of Unending Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121408','4','4','0','33856','11','4','65','60','0','Band of Unending Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121409','4','4','1','33736','16','7','67','60','0','Cloak of Unending Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121410','4','2','4','33731','21','1','70','60','3','Gavel of Infinite Wisdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121411','4','4','0','33856','11','4','65','60','0','Ring of Infinite Wisdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121412','4','4','1','33737','16','7','67','60','0','Shroud of Infinite Wisdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121413','4','2','7','33839','21','1','70','60','3','Blade of Vaulted Secrets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121414','4','4','0','33856','11','4','65','60','0','Band of Vaulted Secrets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121415','4','4','1','33144','16','7','67','60','0','Drape of Vaulted Secrets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121416','4','2','15','33734','21','1','70','60','3','Kris of Unspoken Names','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121417','4','4','0','33856','11','4','65','60','0','Ring of Unspoken Names','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121418','4','4','1','26202','16','7','67','60','0','Shroud of Unspoken Names','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121452','4','2','10','33809','17','2','72','60','2','Staff of the Ruins','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121453','4','4','4','33810','3','6','72','60','0','Mantle of the Horusath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121454','4','4','3','33812','3','5','72','60','0','Runic Stone Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121455','3','4','2','33880','1','8','74','60','0','Southwind Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121456','4','4','1','33814','16','7','72','60','0','Sandstorm Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121457','4','4','4','33818','9','6','72','60','0','Bracers of Brutality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121458','4','4','2','33819','10','8','72','60','0','Gauntlets of New Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121459','4','2','18','33828','26','2','72','60','0','Crossbow of Imminent Doom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121460','4','4','4','33822','1','6','72','60','0','Helm of Domination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121461','4','4','1','33823','7','7','72','60','0','Leggings of the Black Blizzard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121462','4','4','1','19128','10','7','72','60','0','Gloves of Dark Wisdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121463','4','4','3','33824','6','5','72','60','0','Ossirian\'s Binding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121464','4','4','1','33825','9','7','72','60','0','Shackles of the Unscarred','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121466','4','2','4','33838','21','1','69','60','3','Stinger of Ayamiss','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121467','4','4','2','33840','5','8','69','60','0','Thick Silithid Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121468','3','4','1','33841','3','7','74','60','0','Mantle of Maz\'Nadir','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121469','3','4','2','33842','10','8','74','60','0','Gauntlets of Southwind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121470','3','4','1','28951','16','7','74','60','0','Cloak of the Savior','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121471','4','4','0','33845','23','3','69','60','7','Talon of Furious Concentration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121472','4','4','1','33848','1','7','69','60','0','Dustwind Turban','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121473','3','4','0','33973','12','4','74','60','0','Eye of Moam','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121474','3','4','2','33852','3','8','74','60','0','Chitinous Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121475','3','4','4','33853','7','6','74','60','0','Legplates of the Destroyer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121476','3','4','3','33854','7','5','74','60','0','Obsidian Scaled Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121477','3','4','0','33855','11','4','74','60','0','Ring of Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121478','4','2','2','33857','15','2','68','60','0','Bow of Taut Sinew','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121479','4','4','4','33903','10','6','68','60','0','Gauntlets of the Immovable','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121480','3','4','3','29833','10','5','73','60','0','Scaled Silithid Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121481','3','4','4','22757','8','6','73','60','0','Boots of the Desert Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121482','3','4','3','33863','8','5','73','60','0','Boots of the Fiery Sands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121483','3','4','0','33864','11','4','73','60','0','Ring of the Desert Winds','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121484','3','4','2','33901','1','8','73','60','0','Helm of Regrowth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121485','4','4','6','33867','14','6','68','60','4','Buru\'s Skull Fragment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121486','4','4','4','33868','10','6','68','60','0','Gloves of the Swarm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121487','4','4','3','33870','10','5','68','60','0','Slimy Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121488','3','4','0','33849','12','4','73','60','0','Fetish of Chitinous Spikes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121489','3','4','1','33873','8','7','73','60','0','Quicksand Waders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121490','3','4','4','33876','8','6','73','60','0','Slime Kickers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121491','3','4','2','33879','9','8','73','60','0','Scaled Bracers of the Gorger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121492','4','2','8','33882','17','1','66','60','1','Manslayer of the Qiraji','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121493','4','4','2','31166','8','8','66','60','0','Boots of the Vanguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121494','3','4','2','33885','6','8','71','60','0','Southwind\'s Grasp','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121495','3','4','4','33888','7','6','71','60','0','Legplates of the Qiraji Command','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121496','3','4','1','33889','9','7','71','60','0','Bracers of Qiraji Command','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121497','3','4','3','33892','8','5','71','60','0','Boots of the Qiraji General','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121498','4','2','15','33894','13','1','66','60','3','Qiraji Sacrificial Dagger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121499','4','4','1','33895','20','7','66','60','0','Vestments of the Shifting Sands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121500','3','4','1','14174','6','7','71','60','0','Belt of the Inquisition','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121501','3','4','2','33897','10','8','71','60','0','Toughened Silithid Hide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121502','3','4','3','33902','9','5','71','60','0','Sand Reaver Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121503','3','4','4','33905','6','6','71','60','0','Belt of the Sand Reaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121504','4','4','0','33906','2','4','70','60','0','Charm of the Shifting Sands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121505','4','4','0','33906','2','4','70','60','0','Choker of the Shifting Sands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121506','4','4','0','33906','2','4','70','60','0','Pendant of the Shifting Sands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121507','4','4','0','33906','2','4','70','60','0','Amulet of the Shifting Sands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121517','4','4','1','34353','1','7','75','60','0','Gnomish Turban of Psychic Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121520','4','2','7','31866','13','1','76','60','3','Ravencrest\'s Legacy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121521','4','2','7','33994','21','1','76','60','3','Runesword of the Red','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121522','4','2','15','33992','13','4','76','60','3','Shadowsong\'s Sorrow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121523','4','2','15','33991','21','4','76','60','3','Fang of Korialstrasz','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121524','2','4','1','33998','1','-1','1','0','0','Red Winter Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121525','2','4','1','33999','1','-1','1','0','0','Green Winter Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121526','4','4','0','31616','11','4','77','60','0','Band of Icy Depths','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121527','4','4','1','33980','20','7','77','60','0','Darkwater Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121529','4','4','0','31899','2','3','77','60','0','Amulet of Shadow Shielding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121530','4','4','3','34031','7','5','77','60','0','Onyx Embedded Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121531','4','4','0','34034','2','4','77','60','0','Drake Tooth Necklace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121532','4','4','2','28627','8','8','77','60','0','Drudge Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121538','1','4','0','34094','20','4','1','0','0','Festive Pink Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121539','1','4','0','34095','20','4','1','0','0','Festive Purple Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121541','1','4','0','62893','20','4','1','0','0','Festive Black Pant Suit','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121542','1','4','0','34099','20','0','1','0','0','Festival Suit','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121543','1','4','0','62895','20','4','1','0','0','Festive Teal Pant Suit','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121544','1','4','0','62894','20','4','1','0','0','Festive Blue Pant Suit','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121563','4','4','0','31800','11','4','65','60','0','Don Rodrigo\'s Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121565','3','4','0','34188','12','4','45','40','0','Rune of Perfection','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121566','3','4','0','34188','12','4','25','20','0','Rune of Perfection','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121567','3','4','0','7248','12','4','45','40','0','Rune of Duty','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121568','3','4','0','7248','12','4','25','20','0','Rune of Duty','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121579','4','4','0','34132','12','4','88','60','0','Vanquished Tentacle of C\'Thun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121581','4','4','4','34165','10','6','88','60','0','Gauntlets of Annihilation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121582','4','4','1','34176','6','7','88','60','0','Grasp of the Old God','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121583','4','4','1','34179','16','7','88','60','0','Cloak of Clarity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121584','4','4','3','34181','9','5','88','60','0','Bracers of Eternal Reckoning','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121585','4','4','1','34183','10','7','88','60','0','Dark Storm Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121586','4','4','2','34184','6','5','88','60','0','Belt of Never-ending Agony','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121587','4','4','4','34185','9','6','88','60','0','Wristguards of Castigation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121588','4','4','3','34186','9','5','88','60','0','Wristguards of Elemental Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121594','4','4','2','34187','9','8','88','60','0','Bracers of the Fallen Son','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121596','4','4','0','34189','11','4','88','60','0','Ring of the Godslayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121597','4','4','0','34190','23','3','81','60','0','Royal Scepter of Vek\'lor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121598','4','4','4','34191','6','6','81','60','0','Royal Qiraji Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121599','4','4','3','34193','10','5','81','60','0','Vek\'lor\'s Gloves of Devastation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121600','4','4','1','34195','8','7','81','60','0','Boots of Epiphany','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121601','4','4','0','33808','11','4','81','60','0','Ring of Emperor Vek\'lor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121602','4','4','2','34197','9','8','81','60','0','Qiraji Execution Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121603','4','2','19','34198','26','2','78','60','0','Wand of Qiraji Nobility','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121604','4','4','1','34199','9','7','81','60','0','Bracelets of Royal Redemption','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121605','4','4','2','34260','10','8','81','60','0','Gloves of the Hidden Temple','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121606','4','4','4','34202','6','6','81','60','0','Belt of the Fallen Emperor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121607','4','4','3','34203','6','5','81','60','0','Grasp of the Fallen Emperor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121608','4','4','0','34204','2','4','81','60','0','Amulet of Vek\'nilash','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121609','4','4','2','34205','6','8','81','60','0','Regenerating Belt of Vek\'nilash','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121610','4','4','6','34206','14','2','81','60','4','Wormscale Blocker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121611','4','4','1','34207','9','7','81','60','0','Burrower Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121612','4','4','3','34208','8','5','81','60','0','Wormscale Stompers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121613','4','4','2','34210','8','8','81','60','0','Wormhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121614','4','4','2','34606','1','8','81','60','0','Wormhide Protector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121615','4','4','1','30670','1','7','81','60','0','Don Rigoberto\'s Lost Hat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121616','4','2','2','34223','15','2','78','60','0','Huhuran\'s Stinger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121617','4','4','2','34226','10','8','78','60','0','Wasphide Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121618','4','4','4','34227','9','6','78','60','0','Hive Defiler Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121619','4','4','1','34230','10','7','78','60','0','Gloves of the Messiah','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121620','4','4','0','33808','11','4','78','60','0','Ring of the Martyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121621','4','4','1','34231','16','7','78','60','0','Cloak of the Golden Hive','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121622','4','2','7','41490','21','1','78','60','3','Sharpened Silithid Femur','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121623','4','4','4','34235','10','6','78','60','0','Gauntlets of the Righteous Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121624','4','4','3','34236','10','5','78','60','0','Gauntlets of Kalimdor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121625','4','4','0','34237','12','4','78','60','0','Scarab Brooch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121626','4','4','3','34238','7','5','78','60','0','Slime-coated Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121627','4','4','1','34239','16','7','77','60','0','Cloak of Untold Secrets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121635','4','2','6','34250','17','1','77','60','1','Barb of the Sand Reaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121639','4','4','4','34252','3','6','77','60','0','Pauldrons of the Unrelenting','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121645','4','4','2','34259','8','8','77','60','0','Hive Tunneler\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121647','4','4','0','34261','12','4','77','60','0','Fetish of the Sand Reaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121648','4','4','1','34263','8','7','76','60','0','Recomposed Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121650','4','2','7','41491','13','1','77','60','3','Ancient Qiraji Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121651','4','4','3','34266','7','5','77','60','0','Scaled Sand Reaver Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121652','4','4','4','34268','5','6','77','60','0','Silithid Carapace Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121663','4','4','1','34270','20','7','77','60','0','Robes of the Guardian Saint','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121664','4','4','0','34274','2','4','77','60','0','Barbed Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121665','4','4','2','34278','3','8','77','60','0','Mantle of Wicked Revenge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121666','4','4','0','34288','23','1','76','60','0','Sartura\'s Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121667','4','4','4','34292','7','6','76','60','0','Legplates of Blazing Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121668','4','4','3','32760','7','5','76','60','0','Scaled Leggings of Qiraji Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121669','4','4','2','34711','1','8','76','60','0','Creeping Vine Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121670','4','4','0','33851','12','4','76','60','0','Badge of the Swarmguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121671','4','4','1','34294','20','7','76','60','0','Robes of the Battleguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121672','4','4','2','34295','10','8','76','60','0','Gloves of Enforcement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121673','4','2','13','34296','21','1','76','60','7','Silithid Claw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121674','4','4','4','34298','10','2','76','60','0','Gauntlets of Steadfast Determination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121675','4','4','2','34299','6','8','76','60','0','Thick Qirajihide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121676','4','4','1','34302','7','3','76','60','0','Leggings of the Festering Swarm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121677','4','4','0','33808','11','4','78','60','0','Ring of the Qiraji Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121678','4','4','0','34303','2','7','76','60','0','Necklace of Purity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121679','4','2','8','34304','17','1','81','60','1','Kalimdor\'s Revenge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121680','4','4','2','34305','5','8','78','60','0','Vest of Swift Execution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121681','4','4','0','33864','11','4','78','60','0','Ring of the Devoured','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121682','4','4','2','34306','10','8','78','60','0','Bile-Covered Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121683','4','4','4','34310','3','6','76','60','0','Mantle of the Desert Crusade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121684','4','4','3','34312','3','5','76','60','0','Mantle of the Desert\'s Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121685','4','4','0','33871','12','4','76','60','0','Petrified Scarab','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121686','4','4','1','34314','3','7','76','60','0','Mantle of Phrenic Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121687','4','4','0','28733','11','4','76','60','0','Ukko\'s Ring of Darkness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121688','4','4','4','34315','8','6','75','60','0','Boots of the Fallen Hero','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121689','4','4','2','34317','10','8','75','60','0','Gloves of Ebru','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121690','4','4','0','34318','2','4','75','60','0','Angelista\'s Charm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121691','4','4','4','34319','10','6','75','60','0','Ooze-ridden Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121692','4','4','4','34320','6','6','75','60','0','Triad Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121693','4','4','2','34607','1','8','75','60','0','Guise of the Devourer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121694','4','4','1','34323','3','7','75','60','0','Ternary Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121695','4','4','0','33855','11','4','75','60','0','Angelista\'s Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121696','4','4','1','34325','20','7','75','60','0','Robes of the Triumvirate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121697','4','4','1','18948','16','7','75','60','0','Cape of the Trinity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121698','4','4','2','34326','7','8','73','60','0','Leggings of Immersion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121699','4','4','3','34419','3','5','73','60','0','Barrage Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121700','4','4','0','34204','2','4','73','60','0','Pendant of the Qiraji Guardian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121701','4','4','1','34329','16','7','73','60','0','Cloak of Concentrated Hatred','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121702','4','4','0','31889','2','4','73','60','0','Amulet of Foul Warding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121703','4','2','5','34331','17','1','73','60','1','Hammer of Ji\'zhi','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121704','4','4','4','34332','8','6','73','60','0','Boots of the Redeemed Prophecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121705','4','4','3','34333','8','5','73','60','0','Boots of the Fallen Prophet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121706','4','4','4','34334','8','6','73','60','0','Boots of the Unwavering Will','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121707','4','4','0','33855','11','4','73','60','0','Ring of Swarming Thought','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121708','4','4','2','34335','9','8','73','60','0','Beetle Scaled Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121709','4','4','0','34336','11','4','88','60','0','Ring of the Fallen God','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121710','4','4','1','34337','16','7','88','60','0','Cloak of the Fallen God','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121712','4','4','0','34274','2','4','88','60','0','Amulet of the Fallen God','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121713','1','2','14','34365','0','-1','1','0','0','Elune\'s Candle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121715','4','2','4','34339','13','1','72','60','3','Sand Polished Hammer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121748','2','4','0','39914','12','-1','40','35','0','Figurine - Jade Owl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121753','3','4','0','31576','11','-1','50','45','0','Gem Studded Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121754','2','4','0','28831','11','3','49','44','0','The Aquamarine Ward','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121755','2','4','0','31603','2','3','44','39','0','Aquamarine Pendant of the Warrior','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121756','2','4','0','39920','12','-1','40','35','0','Figurine - Golden Hare','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121758','2','4','0','39915','12','-1','43','38','0','Figurine - Black Pearl Panther','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121760','2','4','0','39916','12','-1','45','40','0','Figurine - Truesilver Crab','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121763','2','4','0','39917','12','-1','47','42','0','Figurine - Truesilver Boar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121764','2','4','0','31604','2','3','47','42','0','Ruby Pendant of Fire','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121765','2','4','0','26537','11','5','48','43','1','Truesilver Healing Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121766','3','4','0','32008','2','5','50','45','0','Opal Necklace of Impact','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121767','2','4','0','23629','11','5','52','47','0','Simple Opal Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121768','3','4','0','28831','11','-1','55','50','0','Sapphire Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121769','2','4','0','39918','12','-1','52','47','0','Figurine - Ruby Serpent','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121774','3','4','1','43893','1','8','55','50','0','Emerald Crown of Destruction','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121775','2','4','0','26391','11','5','56','51','0','Onslaught Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121777','2','4','0','39914','12','-1','55','50','0','Figurine - Emerald Owl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121778','2','4','0','33808','11','3','57','52','0','Ring of Bitter Shadows','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121779','3','4','0','31908','11','-1','62','57','0','Band of Natural Fire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121780','3','4','1','43892','1','8','65','60','0','Blood Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121784','3','4','0','39916','12','-1','60','55','0','Figurine - Black Diamond Crab','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121789','3','4','0','61338','12','-1','60','55','0','Figurine - Dark Iron Scorpid','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121790','2','4','0','9657','2','3','56','51','0','Sapphire Pendant of Winter Night','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121791','3','4','0','6539','2','3','58','53','0','Living Emerald Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121792','3','4','0','39214','2','3','61','56','0','Necklace of the Diamond Tower','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121793','3','4','0','39215','2','-1','63','58','0','Arcanite Sword Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121800','3','2','3','34484','26','1','68','60','0','Silithid Husked Launcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121801','3','2','19','35017','26','2','68','60','0','Antenna of Invigoration','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121802','3','2','15','34478','21','1','68','60','3','The Lost Kris of Zedd','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121803','3','4','4','35222','1','6','68','60','0','Helm of the Holy Avenger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121804','3','4','3','36715','1','5','68','60','0','Coif of Elemental Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121805','3','4','4','34482','3','6','68','60','0','Polished Obsidian Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121806','3','2','5','34474','17','1','71','60','1','Gavel of Qiraji Authority','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121809','3','4','0','32008','2','-1','71','60','0','Fury of the Forgotten Swarm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121810','3','4','1','34479','8','7','71','60','0','Treads of the Wandering Nomad','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121814','4','4','4','34483','5','6','73','60','0','Breastplate of Annihilation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121836','4','4','0','31800','11','4','71','60','0','Ritssyn\'s Ring of Chaos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121837','4','2','4','34468','13','1','71','60','3','Anubisath Warhammer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121838','4','4','1','34469','20','7','71','60','0','Garb of Royal Ascension','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121839','4','2','4','34485','21','1','84','60','3','Scepter of the False Prophet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121846','4','4','1','43295','6','6','105','70','0','Spellfire Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121847','4','4','1','43296','10','7','105','70','0','Spellfire Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121848','4','4','1','44953','20','7','105','70','0','Spellfire Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121849','2','4','1','16892','9','7','93','61','0','Netherweave Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121850','2','4','1','27830','6','7','93','61','0','Netherweave Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121851','2','4','1','16642','10','7','99','63','0','Netherweave Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121852','2','4','1','27822','7','7','102','64','0','Netherweave Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121853','2','4','1','4272','8','7','108','62','0','Netherweave Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121854','2','4','1','28479','20','7','111','67','0','Netherweave Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121855','2','4','1','27821','5','7','114','68','0','Netherweave Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121856','4','2','1','34481','17','1','71','60','1','Neretzek, The Blood Drinker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121859','3','4','1','38942','7','8','106','67','0','Imbued Netherweave Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121860','3','4','1','38102','8','6','109','69','0','Imbued Netherweave Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121861','3','4','1','38920','20','7','114','70','0','Imbued Netherweave Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121862','3','4','1','38941','5','7','114','70','0','Imbued Netherweave Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121863','4','4','1','42158','10','7','100','70','0','Soulcloth Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121864','4','4','1','42159','3','7','100','70','0','Soulcloth Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121865','4','4','1','42157','5','7','100','70','0','Soulcloth Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121866','3','4','1','42714','9','5','112','69','0','Arcanoweave Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121867','3','4','1','38102','8','6','114','70','0','Arcanoweave Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121868','3','4','1','38926','20','7','115','70','0','Arcanoweave Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121869','4','4','1','43297','3','7','105','70','0','Frozen Shadoweave Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121870','4','4','1','43298','8','6','105','70','0','Frozen Shadoweave Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121871','4','4','1','44952','20','7','105','70','0','Frozen Shadoweave Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121873','4','4','1','43300','6','6','115','70','0','Primal Mooncloth Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121874','4','4','1','43319','3','7','105','70','0','Primal Mooncloth Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121875','4','4','1','43301','20','7','120','70','0','Primal Mooncloth Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121888','4','4','1','29736','10','7','71','60','0','Gloves of the Immortal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121889','4','4','4','34466','10','6','75','60','0','Gloves of the Redeemed Prophecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121890','4','4','3','34467','10','5','75','60','0','Gloves of the Fallen Prophet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121891','4','4','0','34471','12','1','75','60','0','Shard of the Fallen Star','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121931','2','4','0','9833','11','1','15','10','0','Woven Copper Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121932','2','4','0','9833','11','1','17','12','0','Heavy Copper Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121933','2','4','0','34491','2','3','22','17','0','Thick Bronze Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121934','2','4','0','9854','2','3','20','15','0','Ornate Tigerseye Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121994','3','4','4','34610','6','6','65','0','0','Belt of Heroism','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121995','4','4','4','34611','8','6','60','0','0','Boots of Heroism','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121996','3','4','4','34612','9','6','65','0','0','Bracers of Heroism','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121997','4','4','4','34617','5','6','60','0','0','Breastplate of Heroism','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121998','4','4','4','34613','10','6','60','0','0','Gauntlets of Heroism','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('121999','4','4','4','42240','1','6','60','0','0','Helm of Heroism','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122000','3','4','4','34615','7','6','66','0','0','Legplates of Heroism','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122001','3','4','4','34616','3','6','65','0','0','Spaulders of Heroism','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122002','3','4','2','34699','6','8','65','0','0','Darkmantle Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122003','4','4','2','34684','8','8','60','0','0','Darkmantle Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122004','3','4','2','34685','9','8','65','0','0','Darkmantle Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122005','4','4','2','34700','1','8','60','0','0','Darkmantle Cap','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122006','4','4','2','34686','10','8','60','0','0','Darkmantle Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122007','3','4','2','34687','7','8','66','0','0','Darkmantle Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122008','3','4','2','34688','3','8','65','0','0','Darkmantle Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122009','4','4','2','34689','5','8','60','0','0','Darkmantle Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122010','3','4','3','34646','6','5','65','0','0','Beastmaster\'s Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122011','3','4','3','34647','9','5','65','0','0','Beastmaster\'s Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122013','4','4','3','34649','1','5','60','0','0','Beastmaster\'s Cap','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122015','4','4','3','34650','10','5','60','0','0','Beastmaster\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122016','3','4','3','34651','3','5','65','0','0','Beastmaster\'s Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122017','3','4','3','34652','7','5','66','0','0','Beastmaster\'s Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122060','4','4','3','34645','5','5','60','0','0','Beastmaster\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122061','4','4','3','34648','8','5','60','0','0','Beastmaster\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122062','3','4','1','34599','6','7','65','0','0','Sorcerer\'s Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122063','3','4','1','34601','9','7','65','0','0','Sorcerer\'s Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122064','4','4','1','34782','8','7','60','0','0','Sorcerer\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122065','4','4','1','34602','1','7','60','0','0','Sorcerer\'s Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122066','4','4','1','34600','10','7','60','0','0','Sorcerer\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122067','3','4','1','34598','7','7','66','0','0','Sorcerer\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122068','3','4','1','34597','3','7','65','0','0','Sorcerer\'s Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122069','4','4','1','34596','20','7','60','0','0','Sorcerer\'s Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122070','3','4','1','34620','6','7','65','0','0','Deathmist Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122071','3','4','1','34621','9','7','65','0','0','Deathmist Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122072','3','4','1','34622','7','7','66','0','0','Deathmist Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122073','3','4','1','34623','3','7','65','0','0','Deathmist Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122074','4','4','1','34624','1','7','60','0','0','Deathmist Mask','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122075','4','4','1','34625','20','7','60','0','0','Deathmist Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122076','4','4','1','34626','8','7','60','0','0','Deathmist Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122077','4','4','1','34627','10','7','60','0','0','Deathmist Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122078','3','4','1','34628','6','7','65','0','0','Virtuous Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122079','3','4','1','34629','9','7','65','0','0','Virtuous Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122080','4','4','1','34630','1','7','60','0','0','Virtuous Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122081','4','4','1','34631','10','7','60','0','0','Virtuous Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122082','3','4','1','34632','3','7','65','0','0','Virtuous Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122083','4','4','1','34633','20','7','60','0','0','Virtuous Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122084','4','4','1','34634','8','7','60','0','0','Virtuous Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122085','3','4','1','34635','7','7','66','0','0','Virtuous Skirt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122086','3','4','4','34520','6','6','65','0','0','Soulforge Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122087','4','4','4','34521','8','6','60','0','0','Soulforge Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122088','3','4','4','34522','9','6','65','0','0','Soulforge Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122089','4','4','4','34519','5','6','60','0','0','Soulforge Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122090','4','4','4','34523','10','6','60','0','0','Soulforge Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122091','4','4','4','34524','1','6','60','0','0','Soulforge Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122092','3','4','4','34525','7','6','66','0','0','Soulforge Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122093','3','4','4','34526','3','6','65','0','0','Soulforge Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122095','3','4','3','34691','9','5','65','0','0','Bindings of The Five Thunders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122096','4','4','3','34692','8','5','60','0','0','Boots of The Five Thunders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122097','4','4','3','34693','1','5','60','0','0','Coif of The Five Thunders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122098','3','4','3','34694','6','5','65','0','0','Cord of The Five Thunders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122099','4','4','3','34695','10','5','60','0','0','Gauntlets of The Five Thunders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122100','3','4','3','34696','7','5','66','0','0','Kilt of The Five Thunders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122101','3','4','3','34697','3','5','65','0','0','Pauldrons of The Five Thunders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122102','4','4','3','34698','5','5','60','0','0','Vest of The Five Thunders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122106','3','4','2','34637','6','8','65','0','0','Feralheart Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122107','4','4','2','34638','8','8','60','0','0','Feralheart Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122108','3','4','2','34641','9','8','65','0','0','Feralheart Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122109','4','4','2','34639','1','8','60','0','0','Feralheart Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122110','4','4','2','34640','10','8','60','0','0','Feralheart Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122111','3','4','2','34642','7','8','66','0','0','Feralheart Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122112','3','4','2','34643','3','8','65','0','0','Feralheart Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122113','4','4','2','34644','5','8','60','0','0','Feralheart Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122149','3','4','0','1399','2','3','63','0','0','Beads of Ogre Mojo','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122150','3','4','0','1399','2','3','63','0','0','Beads of Ogre Might','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122191','4','4','3','34515','5','5','72','60','0','Obsidian Mail Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122194','4','4','3','34516','10','5','70','60','0','Black Grasp of the Destroyer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122195','3','4','3','36968','6','-1','68','60','0','Light Obsidian Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122196','4','4','4','34518','5','5','72','60','0','Thick Obsidian Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122197','3','4','4','36967','6','-1','68','60','0','Heavy Obsidian Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122198','4','4','6','34533','14','6','70','60','4','Jagged Obsidian Shield','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122204','3','4','2','34549','9','8','60','55','0','Wristguards of Renown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122205','3','4','4','34550','9','6','57','52','0','Black Steel Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122206','2','4','0','34553','23','-1','1','0','0','Bouquet of Red Roses','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122207','3','4','3','34555','6','5','60','55','0','Sash of the Grand Hunt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122208','3','2','5','34556','17','1','58','53','1','Lavastone Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122212','3','4','3','34558','3','5','56','51','0','Golem Fitted Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122223','3','4','4','34564','1','6','55','50','0','Foreman\'s Head Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122225','3','4','1','35922','1','-1','60','55','0','Dragonskin Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122230','3','4','1','23081','16','7','52','0','0','Frightmaw Hide','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122231','3','4','1','34593','8','-1','61','56','0','Kayser\'s Boots of Precision','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122232','3','4','3','34577','6','5','61','56','0','Marksman\'s Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122234','3','4','1','34579','3','7','53','48','0','Mantle of Lost Hope','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122240','3','4','3','34585','8','5','53','48','0','Greaves of Withering Despair','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122241','3','4','2','34590','3','8','57','52','0','Dark Warder\'s Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122242','3','4','3','34594','6','5','56','51','0','Verek\'s Leash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122245','3','4','1','34595','8','7','56','51','0','Soot Encrusted Footwear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122247','3','4','1','34605','8','7','63','58','0','Faith Healer\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122253','3','4','0','31138','23','8','63','58','0','Tome of the Lost','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122254','3','2','19','34636','26','2','57','52','0','Wand of Eternal Light','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122255','3','4','0','9834','11','1','57','52','0','Magma Forged Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122256','3','4','1','30774','10','7','57','52','0','Mana Shaping Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122257','3','4','0','31655','11','4','57','52','0','Bloodclot Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122266','3','2','15','6555','13','1','57','52','3','Flarethorn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122267','3','4','1','34690','1','7','63','60','0','Spellweaver\'s Turban','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122268','3','4','0','23713','12','3','63','58','0','Draconic Infused Emblem','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122269','3','4','1','24013','16','7','63','58','0','Shadow Prowler\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122270','3','4','4','34708','8','6','55','50','0','Entrenching Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122271','3','4','2','34710','7','8','57','52','0','Leggings of Frenzied Magic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122272','3','4','2','34714','5','8','52','0','0','Forest\'s Embrace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122273','3','4','2','34715','1','8','52','0','0','Moonshadow Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122274','3','4','2','34717','5','8','52','0','0','Grizzled Pelt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122275','3','4','2','6762','8','8','57','52','0','Firemoss Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122276','1','4','0','34726','20','4','1','0','0','Lovely Red Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122277','1','4','0','62921','20','4','1','0','0','Red Dinner Suit','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122278','1','4','0','34725','20','7','1','0','0','Lovely Blue Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122279','1','4','0','34727','20','7','1','0','0','Lovely Black Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122280','1','4','0','34728','20','7','1','0','0','Lovely Purple Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122281','1','4','0','62919','20','4','1','0','0','Blue Dinner Suit','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122282','1','4','0','62920','20','4','1','0','0','Purple Dinner Suit','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122301','3','4','1','34799','20','7','63','58','0','Ironweave Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122302','3','4','1','34781','1','7','63','58','0','Ironweave Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122303','3','4','1','34788','7','7','62','57','0','Ironweave Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122304','3','4','1','34789','10','7','61','56','0','Ironweave Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122305','3','4','1','34791','3','7','61','56','0','Ironweave Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122306','3','4','1','34790','6','7','61','56','0','Ironweave Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122311','3','4','1','34792','8','7','61','56','0','Ironweave Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122313','3','4','1','34793','9','7','61','56','0','Ironweave Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122314','3','2','6','34794','17','1','61','56','1','Huntsman\'s Harpoon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122315','3','2','4','6798','21','2','61','56','3','Hammer of Revitalization','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122317','3','2','13','23742','13','1','61','56','7','Lefty\'s Brass Knuckle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122318','3','2','2','34800','15','2','61','56','0','Malgen\'s Long Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122319','3','4','0','34802','23','8','61','56','7','Tome of Divine Right','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122321','3','4','0','6006','12','-1','61','56','0','Heart of Wyrmthalak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122322','3','2','4','5199','13','2','61','56','3','The Jaw Breaker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122325','3','4','2','14389','6','8','61','56','0','Belt of the Trickster','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122326','3','4','0','26001','11','5','63','58','0','Amalgam\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122327','3','4','0','9857','2','3','63','58','0','Amulet of the Redeemed','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122328','3','4','4','21961','7','6','63','58','0','Legplates of Vigilance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122329','3','4','0','34807','23','8','63','58','0','Scepter of Interminable Focus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122330','3','4','1','34808','16','7','61','56','0','Shroud of Arcane Mastery','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122331','3','4','0','24569','11','3','62','57','0','Band of the Steadfast Hero','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122332','3','2','7','34810','13','1','62','57','3','Blade of Necromancy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122333','3','2','5','2440','17','1','62','57','1','Hammer of Divine Might','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122334','3','4','0','9837','11','5','62','57','0','Band of Mending','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122335','3','2','10','34891','17','2','63','58','2','Lord Valthalak\'s Staff of Command','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122336','3','4','6','18790','14','1','63','58','4','Draconian Aegis of the Legion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122337','3','4','1','34812','16','7','63','58','0','Shroud of Domination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122339','3','4','0','31616','11','5','63','58','0','Rune Band of Wizardry','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122340','3','4','0','9852','2','3','63','58','0','Pendant of Celerity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122342','3','4','1','24354','7','7','63','58','0','Leggings of Torment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122343','3','4','3','33154','10','5','63','58','0','Handguards of Savagery','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122345','3','4','9','34958','28','2','62','57','0','Totem of Rebirth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122347','3','2','18','22929','26','2','65','0','0','Fahrad\'s Reloading Repeater','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122348','3','2','5','35010','17','1','65','0','1','Doomulus Prime','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122377','3','2','15','34849','13','1','65','0','3','The Thunderwood Poker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122378','3','2','7','34850','13','1','65','0','3','Ravenholdt Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122379','3','2','15','34859','21','1','65','0','3','Shivsprocket\'s Shiv','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122380','3','2','4','34860','21','1','65','0','3','Simone\'s Cultivating Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122383','4','2','7','36970','21','-1','64','59','3','Sageblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122384','4','2','4','36969','13','1','63','58','3','Persuader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122385','4','4','4','34890','7','6','60','55','0','Titanic Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122394','3','2','10','34894','17','2','62','57','2','Staff of Metanoia','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122395','3','4','9','34957','28','2','57','52','0','Totem of Rage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122396','4','4','9','34956','28','2','78','60','0','Totem of Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122397','3','4','8','34955','28','2','57','52','0','Idol of Ferocity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122398','3','4','8','34954','28','2','62','57','0','Idol of Rejuvenation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122399','4','4','8','34953','28','2','78','60','0','Idol of Health','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122400','3','4','7','34961','28','2','57','52','0','Libram of Truth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122401','3','4','7','34960','28','2','62','57','0','Libram of Hope','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122402','4','4','7','34959','28','2','78','60','0','Libram of Grace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122403','3','4','0','9858','2','3','61','56','0','Diana\'s Pearl Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122404','3','2','13','34896','21','1','61','56','7','Willey\'s Back Scratcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122405','3','4','1','34897','3','7','61','56','0','Mantle of the Scarlet Crusade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122406','3','2','10','20384','17','2','61','56','2','Redemption','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122407','3','4','2','42208','1','8','61','56','0','Helm of the New Moon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122408','3','2','19','34899','26','2','63','58','0','Ritssyn\'s Wand of Bad Mojo','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122409','3','4','2','34900','5','8','63','58','0','Tunic of the Crescent Moon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122410','3','4','3','34901','10','5','63','58','0','Gauntlets of Deftness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122411','3','4','4','34902','1','6','63','58','0','Helm of the Executioner','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122412','3','4','1','15014','3','7','63','58','0','Thuzadin Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122416','4','4','4','35049','5','1','92','60','0','Dreadnaught Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122417','4','4','4','35051','7','1','88','60','0','Dreadnaught Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122418','4','4','4','36730','1','1','88','60','0','Dreadnaught Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122419','4','4','4','35177','3','1','86','60','0','Dreadnaught Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122420','4','4','4','35067','8','1','86','60','0','Dreadnaught Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122421','4','4','4','35050','10','1','88','60','0','Dreadnaught Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122422','4','4','4','35058','6','1','88','60','0','Dreadnaught Waistguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122423','4','4','4','35044','9','1','88','60','0','Dreadnaught Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122424','4','4','4','35619','9','1','88','60','0','Redemption Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122425','4','4','4','35618','5','1','92','60','0','Redemption Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122426','4','4','4','35615','10','1','88','60','0','Redemption Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122427','4','4','4','35616','7','1','88','60','0','Redemption Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122428','4','4','4','36972','1','1','88','60','0','Redemption Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122429','4','4','4','35617','3','1','86','60','0','Redemption Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122430','4','4','4','35613','8','1','86','60','0','Redemption Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122431','4','4','4','35614','6','1','88','60','0','Redemption Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122433','3','4','0','24022','11','5','63','58','0','Don Mauricio\'s Band of Domination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122436','4','4','3','35415','5','5','92','60','0','Cryptstalker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122437','4','4','3','35413','7','5','88','60','0','Cryptstalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122438','4','4','3','35601','1','5','88','60','0','Cryptstalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122439','4','4','3','35611','3','5','86','60','0','Cryptstalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122440','4','4','3','35409','8','5','86','60','0','Cryptstalker Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122441','4','4','3','35411','10','5','88','60','0','Cryptstalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122442','4','4','3','35410','6','5','88','60','0','Cryptstalker Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122443','4','4','3','35416','9','5','88','60','0','Cryptstalker Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122458','3','2','10','18289','17','2','52','0','2','Moonshadow Stave','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122464','4','4','3','35752','5','5','92','60','0','Earthshatter Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122465','4','4','3','35754','7','5','88','60','0','Earthshatter Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122466','4','4','3','42115','1','5','88','60','0','Earthshatter Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122467','4','4','3','35751','3','5','86','60','0','Earthshatter Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122468','4','4','3','35746','8','5','86','60','0','Earthshatter Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122469','4','4','3','35748','10','5','88','60','0','Earthshatter Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122470','4','4','3','35747','6','5','88','60','0','Earthshatter Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122471','4','4','3','35753','9','5','88','60','0','Earthshatter Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122472','3','4','2','9653','8','8','61','56','0','Boots of Ferocity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122476','4','4','2','35054','5','8','92','60','0','Bonescythe Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122477','4','4','2','35065','7','8','88','60','0','Bonescythe Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122478','4','4','2','41849','1','8','88','60','0','Bonescythe Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122479','4','4','2','35064','3','8','86','60','0','Bonescythe Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122480','4','4','2','36351','8','8','86','60','0','Bonescythe Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122481','4','4','2','35055','10','8','88','60','0','Bonescythe Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122482','4','4','2','36349','6','8','88','60','0','Bonescythe Waistguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122483','4','4','2','35053','9','8','88','60','0','Bonescythe Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122488','4','4','2','35159','5','8','92','60','0','Dreamwalker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122489','4','4','2','35161','7','8','88','60','0','Dreamwalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122490','4','4','2','35162','1','8','88','60','0','Dreamwalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122491','4','4','2','35160','3','8','86','60','0','Dreamwalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122492','4','4','2','35173','8','8','86','60','0','Dreamwalker Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122493','4','4','2','35167','10','8','88','60','0','Dreamwalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122494','4','4','2','35164','6','8','88','60','0','Dreamwalker Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122495','4','4','2','35158','9','8','88','60','0','Dreamwalker Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122496','4','4','1','35523','20','7','92','60','0','Frostfire Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122497','4','4','1','35522','7','7','88','60','0','Frostfire Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122498','4','4','1','36440','1','7','88','60','0','Frostfire Circlet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122499','4','4','1','35326','3','7','86','60','0','Frostfire Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122500','4','4','1','35525','8','7','86','60','0','Frostfire Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122501','4','4','1','35521','10','7','88','60','0','Frostfire Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122502','4','4','1','35519','6','7','88','60','0','Frostfire Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122503','4','4','1','35677','9','7','88','60','0','Frostfire Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122504','4','4','1','35185','20','7','92','60','0','Plagueheart Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122505','4','4','1','35184','7','7','88','60','0','Plagueheart Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122506','4','4','1','35182','1','7','88','60','0','Plagueheart Circlet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122507','4','4','1','35187','3','7','86','60','0','Plagueheart Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122508','4','4','1','35186','8','7','86','60','0','Plagueheart Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122509','4','4','1','35183','10','7','88','60','0','Plagueheart Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122510','4','4','1','35179','6','7','88','60','0','Plagueheart Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122511','4','4','1','35180','9','7','88','60','0','Plagueheart Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122512','4','4','1','36354','20','7','92','60','0','Robe of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122513','4','4','1','35154','7','7','88','60','0','Leggings of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122514','4','4','1','56051','1','7','88','60','0','Circlet of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122515','4','4','1','35149','3','7','86','60','0','Shoulderpads of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122516','4','4','1','35148','8','7','86','60','0','Sandals of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122517','4','4','1','35145','10','7','88','60','0','Gloves of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122518','4','4','1','35143','6','7','88','60','0','Belt of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122519','4','4','1','35144','9','7','88','60','0','Bindings of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122589','5','2','10','35632','17','2','90','60','2','Atiesh, Greatstaff of the Guardian','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122630','5','2','10','35631','17','2','90','60','2','Atiesh, Greatstaff of the Guardian','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122631','5','2','10','35634','17','2','90','60','2','Atiesh, Greatstaff of the Guardian','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122632','5','2','10','35633','17','2','90','60','2','Atiesh, Greatstaff of the Guardian','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122651','4','4','4','35069','7','6','65','60','0','Outrider\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122652','4','4','1','35302','5','7','80','60','0','Glacial Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122654','4','4','1','35286','10','7','80','60','0','Glacial Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122655','4','4','1','35283','9','7','80','60','0','Glacial Wrists','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122656','4','2','3','35071','26','1','60','0','0','The Purifier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122657','4','4','0','6543','2','-1','60','0','0','Amulet of the Dawn','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122658','4','4','1','35076','16','7','80','60','0','Glacial Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122659','4','4','0','6543','2','-1','60','0','0','Medallion of the Dawn','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122660','3','4','1','35077','16','7','70','60','0','Gaea\'s Embrace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122661','4','4','2','35290','5','7','80','60','0','Polar Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122662','4','4','2','35303','10','7','80','60','0','Polar Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122663','4','4','2','35287','9','7','80','60','0','Polar Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122664','4','4','3','36436','5','7','80','60','0','Icy Scale Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122665','4','4','3','36435','9','7','80','60','0','Icy Scale Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122666','4','4','3','36437','10','7','80','60','0','Icy Scale Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122667','4','4','1','35090','9','7','60','0','0','Bracers of Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122668','4','4','2','35091','9','8','60','0','0','Bracers of Subterfuge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122669','4','4','4','35276','5','7','80','60','0','Icebane Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122670','4','4','4','35277','10','7','80','60','0','Icebane Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122671','4','4','4','35275','9','7','80','60','0','Icebane Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122672','4','4','4','35069','7','6','65','60','0','Sentinel\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122673','4','4','3','35093','7','5','65','60','0','Outrider\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122676','4','4','3','35093','7','5','65','60','0','Outrider\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122678','4','4','0','24730','12','3','60','0','0','Talisman of Ascendance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122680','3','4','0','3666','11','-1','66','0','0','Band of Resolution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122681','3','4','0','24569','11','-1','66','0','0','Band of Piety','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122688','3','2','15','35094','21','1','66','0','3','Verimonde\'s Last Resort','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122689','3','4','2','35095','1','8','66','0','0','Sanctified Leather Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122690','3','4','3','35096','7','5','66','0','0','Leggings of the Plague Hunter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122691','4','2','8','35097','17','1','86','60','1','Corrupted Ashbringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122699','4','4','4','35278','7','6','80','0','0','Icebane Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122700','4','4','1','35282','7','7','80','0','0','Glacial Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122701','4','4','2','35289','7','8','80','0','0','Polar Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122702','4','4','3','36438','7','5','80','0','0','Icy Scale Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122707','4','4','0','31616','11','4','80','0','0','Ramaladni\'s Icy Grasp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122711','3','4','1','35114','16','7','68','60','0','Cloak of the Hakkari Worshippers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122712','3','4','1','35115','16','7','68','60','0','Might of the Tribe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122713','3','2','4','35116','21','1','68','60','3','Zulian Scepter of Rites','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122714','3','4','4','35118','10','6','68','60','0','Sacrificial Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122715','3','4','3','35119','10','5','68','60','0','Gloves of the Tormented','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122716','3','4','1','35120','6','7','68','60','0','Belt of Untapped Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122718','3','4','2','41850','1','8','68','60','0','Blooddrenched Mask','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122720','3','4','1','35125','1','7','68','60','0','Zulian Headdress','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122721','4','4','0','24022','11','3','65','60','0','Band of Servitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122722','4','4','0','30661','11','3','65','60','0','Seal of the Gurubashi Berserker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122725','3','4','0','9842','11','4','70','0','0','Band of Cenarius','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122730','4','4','1','35138','6','7','88','60','0','Eyestalk Waist Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122731','4','4','1','35139','16','7','88','60','0','Cloak of the Devoured','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122732','4','4','0','34303','2','4','88','60','0','Mark of C\'Thun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122736','5','2','7','35152','21','1','100','60','1','Andonisus, Reaper of Souls','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122740','4','4','2','35157','7','8','65','60','0','Outrider\'s Leather Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122741','4','4','2','18962','7','8','65','60','0','Outrider\'s Lizardhide Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122742','1','4','1','35169','5','-1','1','1','0','Bloodsail Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122744','1','4','1','19950','8','-1','1','1','0','Bloodsail Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122745','1','4','1','36971','7','-1','1','1','0','Bloodsail Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122747','4','4','1','32927','7','7','65','60','0','Outrider\'s Silk Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122748','4','4','3','35093','7','5','65','60','0','Sentinel\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122749','4','4','2','35157','7','8','65','60','0','Sentinel\'s Leather Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122750','4','4','2','18962','7','8','65','60','0','Sentinel\'s Lizardhide Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122752','4','4','1','32927','7','7','65','60','0','Sentinel\'s Silk Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122753','4','4','4','35175','7','6','65','60','0','Sentinel\'s Lamellar Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122756','3','4','1','35207','5','5','70','60','0','Sylvan Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122757','3','4','1','35206','1','5','70','60','0','Sylvan Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122758','3','4','1','35209','3','5','70','60','0','Sylvan Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122759','3','4','2','42883','1','5','70','60','0','Bramblewood Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122760','3','4','2','35214','8','5','70','60','0','Bramblewood Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122761','3','4','2','35213','6','5','70','60','0','Bramblewood Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122762','3','4','4','35216','5','5','70','60','0','Ironvine Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122763','3','4','4','35217','10','5','70','60','0','Ironvine Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122764','3','4','4','35219','6','5','70','60','0','Ironvine Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122782','2','4','1','15120','16','7','20','0','0','Sin\'dorei Cloak of Warding','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122783','2','2','7','20014','13','1','20','0','3','Sunwell Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122784','2','4','0','28464','23','-1','20','1','7','Sunwell Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122798','4','2','5','35239','17','1','89','60','1','Might of Menethil','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122799','4','2','10','35240','17','2','89','60','2','Soulseeker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122800','4','2','10','35241','17','2','83','60','2','Brimstone Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122801','4','2','10','35242','17','2','83','60','2','Spire of Twilight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122802','4','2','15','35819','13','1','89','60','3','Kingsfall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122803','4','2','15','35244','21','1','81','60','3','Midnight Haze','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122804','4','2','15','35709','13','1','83','60','3','Maexxna\'s Fang','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122806','4','2','7','35247','13','1','81','60','3','Widow\'s Remorse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122807','4','2','7','36371','21','1','83','60','3','Wraith Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122808','4','2','4','35250','13','1','83','60','3','The Castigator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122809','4','2','5','36518','17','1','83','60','1','Maul of the Redeemed Crusader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122810','4','2','3','35370','26','1','81','60','0','Toxin Injector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122811','4','2','2','35870','15','2','83','60','0','Soulstring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122812','4','2','18','35253','26','2','89','60','0','Nerubian Slavemaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122813','4','2','8','35255','17','1','81','60','1','Claymore of Unholy Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122815','4','2','1','35371','17','1','81','60','1','Severance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122816','4','2','0','35258','13','1','83','60','3','Hatchet of Sundered Bone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122818','4','4','6','35577','14','6','83','60','4','The Plague Bearer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122819','4','4','6','35573','14','6','92','60','4','Shield of Condemnation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122820','4','2','19','35262','26','2','83','60','0','Wand of Fates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122821','4','2','19','35263','26','2','92','60','0','Doomfinger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122843','3','4','3','31181','8','5','66','60','0','Blood Guard\'s Chain Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122852','3','4','2','27263','8','8','66','60','0','Blood Guard\'s Dragonhide Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122855','3','4','1','31026','8','7','66','60','0','Blood Guard\'s Dreadweave Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122856','3','4','2','31035','8','8','66','60','0','Blood Guard\'s Leather Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122857','3','4','3','31183','8','5','66','60','0','Blood Guard\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122858','3','4','4','31050','8','6','66','60','0','Blood Guard\'s Plate Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122859','3','4','1','31027','8','7','66','60','0','Blood Guard\'s Satin Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122860','3','4','1','31097','8','7','66','60','0','Blood Guard\'s Silk Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122862','3','4','3','31182','10','5','66','60','0','Blood Guard\'s Chain Vices','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122863','3','4','2','27265','10','8','66','60','0','Blood Guard\'s Dragonhide Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122864','3','4','2','31036','10','8','66','60','0','Blood Guard\'s Leather Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122865','3','4','1','27256','10','7','66','60','0','Blood Guard\'s Dreadweave Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122867','3','4','3','27279','10','5','66','60','0','Blood Guard\'s Mail Vices','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122868','3','4','4','31051','10','6','66','60','0','Blood Guard\'s Plate Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122869','3','4','1','31028','10','7','66','60','0','Blood Guard\'s Satin Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122870','3','4','1','31098','10','7','66','60','0','Blood Guard\'s Silk Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122872','3','4','4','27274','5','6','68','60','0','Legionnaire\'s Plate Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122873','3','4','4','31052','7','6','68','60','0','Legionnaire\'s Plate Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122874','3','4','3','31048','5','5','68','60','0','Legionnaire\'s Chain Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122875','3','4','3','30367','7','5','68','60','0','Legionnaire\'s Chain Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122876','3','4','3','31185','5','5','68','60','0','Legionnaire\'s Mail Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122877','3','4','2','31037','5','8','68','60','0','Legionnaire\'s Dragonhide Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122878','3','4','2','27267','7','8','68','60','0','Legionnaire\'s Dragonhide Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122879','3','4','2','31039','5','8','68','60','0','Legionnaire\'s Leather Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122880','3','4','2','31040','7','8','68','60','0','Legionnaire\'s Leather Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122881','3','4','1','31032','7','7','68','60','0','Legionnaire\'s Dreadweave Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122882','3','4','1','31033','7','7','68','60','0','Legionnaire\'s Satin Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122883','3','4','1','26144','7','7','68','60','0','Legionnaire\'s Silk Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122884','3','4','1','27260','20','7','68','60','0','Legionnaire\'s Dreadweave Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122885','3','4','1','30351','20','7','68','60','0','Legionnaire\'s Satin Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122886','3','4','1','31102','20','7','68','60','0','Legionnaire\'s Silk Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122887','3','4','3','31186','7','5','68','60','0','Legionnaire\'s Mail Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122935','4','4','0','19763','2','3','83','60','0','Touch of Frost','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122936','4','4','4','35310','9','1','83','60','0','Wristguards of Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122937','4','4','0','35817','23','3','83','60','0','Gem of Nerubis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122938','4','4','1','35312','16','7','83','60','0','Cryptfiend Silk Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122939','4','4','0','35313','11','3','83','60','0','Band of Unanswered Prayers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122940','4','4','4','35324','3','7','83','60','0','Icebane Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122941','4','4','2','35325','3','7','83','60','0','Polar Shoulder Pads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122942','4','2','4','35642','21','1','81','60','3','The Widow\'s Embrace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122943','4','4','0','35358','2','4','83','60','0','Malice Stone Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122947','4','4','0','35359','2','3','85','60','0','Pendant of Forgotten Names','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122951','1','4','2','9975','7','8','7','0','0','Springpaw Hide Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122952','1','4','1','23130','16','7','7','0','0','Springpaw Hide Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122953','1','4','3','2967','5','5','7','0','0','Fur Lined Chain Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122954','4','4','0','35361','12','4','85','60','0','Kiss of the Spider','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122956','1','2','4','36924','13','1','7','0','3','Rusty Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122957','1','2','7','1544','21','1','7','0','3','Rusty Sin\'dorei Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122958','1','2','8','20084','17','1','10','0','1','Farstrider Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122959','1','2','10','35363','17','2','10','0','2','Smooth Metal Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122960','4','4','1','35366','16','7','83','60','0','Cloak of Suturing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122961','4','4','0','35367','11','4','83','60','0','Band of Reanimation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122963','1','2','15','3006','13','1','10','0','3','Ranger\'s Pocketknife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122964','1','4','3','9644','9','5','8','0','0','Sunsail Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122965','1','4','2','3708','9','8','8','0','0','Longshoreman\'s Bindings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122966','1','4','1','16906','9','7','8','0','0','Silk Wristbands','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122967','4','4','3','36434','3','5','83','0','0','Icy Scale Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122968','4','4','1','35369','3','5','83','0','0','Glacial Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122969','2','2','2','7603','15','2','11','0','0','Ven\'jashi\'s Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122971','2','2','19','28159','26','2','11','0','0','Hoodoo Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122979','2','4','0','6011','11','4','21','0','0','Slayer\'s Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122980','3','2','10','44339','17','2','21','0','2','Staff of the Sun','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122981','4','4','0','35373','2','4','83','60','0','Gluth\'s Missing Collar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122982','3','2','2','20674','15','2','21','0','0','Farstrider\'s Longbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122983','4','4','1','36424','3','7','83','60','0','Rime Covered Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122984','3','2','15','35390','13','1','21','0','3','Dawnblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122985','2','4','3','33322','5','5','15','10','0','Suncrown Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122986','2','4','1','12718','20','7','15','10','0','Apothecary\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122987','2','4','2','36996','5','8','15','10','0','Deathstalker\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122988','4','2','4','35710','21','1','83','60','3','The End of Dreams','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122990','3','4','1','35378','16','7','21','16','0','Tranquillien Champion\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122991','2','4','1','35380','8','7','15','10','0','Apprentice Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122992','2','4','2','35381','8','7','15','10','0','Bogwalker Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122993','2','4','3','35399','8','7','15','10','0','Volunteer\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122994','4','4','0','35383','23','1','83','60','0','Digested Hand of Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122995','3','2','8','35392','17','1','21','0','1','Sin\'dorei Warblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122996','2','4','6','41470','14','1','20','0','4','Reforged Quel\'dorei Crest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122997','2','2','19','20903','26','2','20','0','0','Ley-Keeper\'s Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122998','2','4','2','35395','7','8','20','0','0','Ghostclaw Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('122999','1','4','0','35396','19','7','60','0','0','Tabard of the Argent Dawn','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123000','4','4','4','35398','5','6','85','60','0','Plated Abomination Ribcage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123001','4','4','0','35400','12','4','85','60','0','Eye of Diminution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123004','4','4','8','34953','28','2','83','60','0','Idol of Longevity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123005','4','4','9','34956','28','2','83','60','0','Totem of Flowing Water','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123006','4','4','7','34959','28','2','83','60','0','Libram of Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123009','4','2','19','35262','26','2','83','60','0','Wand of the Whispering Dead','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123014','4','2','7','36376','13','1','81','60','3','Iblis, Blade of the Fallen Seraph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123017','4','4','1','35408','16','7','83','60','0','Veil of Eclipse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123018','4','4','0','35313','11','3','83','60','0','Signet of the Fallen Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123019','4','4','4','35419','1','7','83','60','0','Icebane Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123020','4','4','2','35421','1','7','83','60','0','Polar Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123021','4','4','1','35422','9','7','83','60','0','The Soul Harvester\'s Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123023','4','4','0','35358','2','4','83','60','0','Sadist\'s Collar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123025','4','4','0','35423','11','3','85','60','0','Seal of the Damned','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123027','4','4','0','35429','12','4','85','60','0','Warmth of Forgiveness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123028','4','4','0','31616','11','4','83','60','0','Hailstone Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123029','4','4','0','35813','23','3','83','60','0','Noth\'s Frigid Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123030','4','4','1','35430','16','7','83','60','0','Cloak of the Scourge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123031','4','4','0','35431','11','3','83','60','0','Band of the Inevitable','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123032','4','4','1','35432','1','7','83','60','0','Glacial Headdress','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123033','4','4','3','36433','1','5','83','60','0','Icy Scale Coif','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123034','4','4','4','35434','3','1','83','60','0','Nax PH Crit Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123035','4','4','1','42767','1','7','83','60','0','Preceptor\'s Hat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123036','4','4','0','35437','2','3','83','60','0','Necklace of Necropsy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123037','4','4','0','35438','11','3','85','60','0','Ring of Spiritual Fervor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123038','4','4','0','35423','11','3','85','60','0','Band of Unnatural Forces','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123039','4','2','6','35259','17','1','83','60','1','The Eye of Nerub','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123040','4','4','0','35439','12','4','90','60','0','Glyph of Deflection','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123041','4','4','0','35442','12','4','90','60','0','Slayer\'s Crest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123042','4','4','0','35439','12','4','85','60','0','Loatheb\'s Reflection','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123043','4','4','6','35576','14','6','90','60','4','The Face of Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123044','4','2','15','35246','13','1','83','60','3','Harbinger of Doom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123045','4','4','1','35444','16','7','90','60','0','Shroud of Dominion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123046','4','4','0','35445','12','4','90','60','0','The Restrained Essence of Sapphiron','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123047','4','4','0','35429','12','4','90','60','0','Eye of the Dead','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123048','4','4','0','35816','23','3','90','60','0','Sapphiron\'s Right Eye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123049','4','4','0','35792','23','3','90','60','0','Sapphiron\'s Left Eye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123050','4','4','1','35446','16','7','90','60','0','Cloak of the Necropolis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123051','5','2','2','35450','15','2','86','60','0','Glaive of the Defender','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123053','4','4','0','35359','2','4','92','60','0','Stormrage\'s Talisman of Seething','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123054','4','2','7','36378','13','1','89','60','3','Gressil, Dawn of Ruin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123056','4','2','4','35574','21','1','89','60','3','Hammer of the Twisting Nether','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123057','4','4','0','35358','2','4','92','60','0','Gem of Trapped Innocents','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123058','4','4','0','35437','2','3','92','60','0','Life Channeling Necklace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123059','4','4','0','35472','11','3','92','60','0','Ring of the Dreadnaught','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123060','4','4','0','35472','11','3','92','60','0','Bonescythe Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123061','4','4','0','35472','11','3','92','60','0','Ring of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123062','4','4','0','35472','11','3','92','60','0','Frostfire Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123063','4','4','0','35472','11','3','92','60','0','Plagueheart Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123064','4','4','0','35472','11','3','92','60','0','Ring of the Dreamwalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123065','4','4','0','35472','11','3','92','60','0','Ring of the Earthshatterer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123066','4','4','0','35472','11','3','92','60','0','Ring of Redemption','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123067','4','4','0','35472','11','3','92','60','0','Ring of the Cryptstalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123068','4','4','4','35508','7','1','83','60','0','Legplates of Carnage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123069','4','4','1','36370','20','7','85','60','0','Necro-Knight\'s Garb','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123070','4','4','1','35514','7','7','85','60','0','Leggings of Polarity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123071','4','4','2','36478','7','8','83','60','0','Leggings of Apocalypse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123072','4','4','4','36279','10','1','90','60','0','Fists of the Unrelenting','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123073','4','4','2','6720','8','8','83','60','0','Boots of Displacement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123075','4','4','6','35654','14','6','83','60','4','Death\'s Bargain','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123078','3','4','4','35550','10','1','63','0','0','Gauntlets of Undead Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123081','3','4','2','36479','10','8','63','0','0','Handwraps of Undead Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123082','3','4','3','35542','10','5','63','0','0','Handguards of Undead Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123084','3','4','1','35545','10','7','63','0','0','Gloves of Undead Cleansing','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123085','3','4','1','35544','20','7','63','58','0','Robe of Undead Cleansing','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123087','3','4','4','36077','5','1','63','58','0','Breastplate of Undead Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123088','3','4','3','35554','5','5','63','58','0','Chestguard of Undead Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123089','3','4','2','36480','5','8','63','58','0','Tunic of Undead Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123090','3','4','4','35555','9','1','63','58','0','Bracers of Undead Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123091','3','4','1','35556','9','7','63','58','0','Bracers of Undead Cleansing','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123092','3','4','3','35557','9','5','63','58','0','Wristguards of Undead Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123093','3','4','2','36481','9','8','63','58','0','Wristwraps of Undead Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123124','3','2','10','35563','17','2','60','55','2','Staff of Balzaphon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123125','3','4','0','18172','2','3','60','55','0','Chains of the Lich','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123126','3','4','1','35564','6','7','60','55','0','Waistband of Balzaphon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123127','3','4','1','35565','16','7','63','58','0','Cloak of Revanchion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123128','3','4','1','35569','10','7','62','57','0','The Shadow\'s Grasp','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123129','3','4','1','30833','9','7','62','57','0','Bracers of Mending','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123132','3','2','7','35571','13','1','62','57','3','Lord Blackwood\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123139','3','4','6','2456','14','1','62','57','4','Lord Blackwood\'s Buckler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123156','3','4','0','28647','23','1','62','57','7','Blackwood\'s Thigh','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123168','3','2','15','35589','21','1','35','30','3','Scorn\'s Focal Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123169','3','4','0','9853','2','3','35','30','0','Scorn\'s Icy Choker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123170','3','4','3','18339','10','5','35','30','0','The Frozen Clutch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123171','3','2','1','28804','17','1','25','20','1','The Axe of Severing','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123173','3','4','1','28648','7','7','25','20','0','Abomination Skin Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123177','3','2','19','35593','26','2','41','36','0','Lady Falther\'ess\' Finger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123178','3','4','1','22994','16','7','41','36','0','Mantle of Lady Falther\'ess','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123192','2','4','0','15817','19','7','1','0','0','Tabard of the Scarlet Crusade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123197','3','4','8','34954','28','2','65','60','0','Idol of the Moon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123198','3','4','8','34955','28','2','65','60','0','Idol of Brutality','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123199','3','4','9','34957','28','2','65','60','0','Totem of the Storm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123200','3','4','9','34956','28','2','65','60','0','Totem of Sustaining','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123201','3','4','7','34960','28','2','65','60','0','Libram of Divinity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123203','3','4','7','34961','28','2','65','60','0','Libram of Fervor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123206','4','4','0','35649','12','-1','90','0','0','Mark of the Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123207','4','4','0','35621','12','-1','90','0','0','Mark of the Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123219','4','4','4','30535','6','6','85','60','0','Girdle of the Mentor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123220','4','4','1','36369','20','7','85','60','0','Crystal Webbed Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123221','4','2','4','35643','13','2','83','60','3','Misplaced Servo Arm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123226','4','4','2','35713','5','8','83','60','0','Ghoul Skin Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123229','2','2','7','20009','13','1','41','0','3','Sword of Sockety Goodness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123237','4','4','0','35423','11','3','83','60','0','Ring of the Eternal Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123238','4','4','6','35719','14','6','83','60','4','Stygian Buckler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123242','4','2','13','35818','22','1','88','60','7','Claw of the Frost Wyrm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123243','3','4','4','31049','3','6','71','60','0','Champion\'s Plate Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123244','3','4','4','30071','1','6','71','60','0','Champion\'s Plate Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123251','3','4','3','31184','1','5','71','60','0','Champion\'s Chain Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123252','3','4','3','31047','3','5','71','60','0','Champion\'s Chain Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123253','3','4','2','28106','1','8','71','60','0','Champion\'s Dragonhide Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123254','3','4','2','28935','3','8','71','60','0','Champion\'s Dragonhide Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123255','3','4','1','27258','1','7','71','60','0','Champion\'s Dreadweave Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123256','3','4','1','30381','3','7','71','60','0','Champion\'s Dreadweave Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123257','3','4','2','30358','1','8','71','60','0','Champion\'s Leather Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123258','3','4','2','31038','3','8','71','60','0','Champion\'s Leather Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123259','3','4','3','30072','1','5','71','60','0','Champion\'s Mail Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123260','3','4','3','30382','3','5','71','60','0','Champion\'s Mail Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123261','3','4','1','31030','1','7','71','60','0','Champion\'s Satin Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123262','3','4','1','31031','3','7','71','60','0','Champion\'s Satin Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123263','3','4','1','31099','1','7','71','60','0','Champion\'s Silk Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123264','3','4','1','31100','3','7','71','60','0','Champion\'s Silk Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123265','1','4','3','8295','6','5','11','0','0','Blackened Chain Girdle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123266','1','4','2','33372','5','8','11','0','0','Ranger\'s Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123267','1','4','1','6777','8','8','11','0','0','Satin Lined Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123272','3','4','4','30315','5','6','68','60','0','Knight-Captain\'s Lamellar Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123273','3','4','4','31084','7','6','68','60','0','Knight-Captain\'s Lamellar Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123274','3','4','4','30321','10','6','66','60','0','Knight-Lieutenant\'s Lamellar Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123275','3','4','4','31082','8','6','66','60','0','Knight-Lieutenant\'s Lamellar Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123276','3','4','4','30316','1','6','71','60','0','Lieutenant Commander\'s Lamellar Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123277','3','4','4','31085','3','6','71','60','0','Lieutenant Commander\'s Lamellar Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123278','3','4','3','36006','8','5','66','60','0','Knight-Lieutenant\'s Chain Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123279','3','4','3','35798','10','5','66','60','0','Knight-Lieutenant\'s Chain Vices','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123280','3','4','2','36003','10','8','66','60','0','Knight-Lieutenant\'s Dragonhide Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123281','3','4','2','36004','8','8','66','60','0','Knight-Lieutenant\'s Dragonhide Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123282','3','4','1','31060','10','7','66','60','0','Knight-Lieutenant\'s Dreadweave Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123283','3','4','1','36007','8','7','66','60','0','Knight-Lieutenant\'s Dreadweave Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123284','3','4','2','31075','10','8','66','60','0','Knight-Lieutenant\'s Leather Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123285','3','4','2','31068','8','8','66','60','0','Knight-Lieutenant\'s Leather Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123286','3','4','4','35808','10','6','66','60','0','Knight-Lieutenant\'s Plate Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123287','3','4','4','26752','8','6','66','60','0','Knight-Lieutenant\'s Plate Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123288','3','4','1','36010','10','7','66','60','0','Knight-Lieutenant\'s Satin Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123289','3','4','1','36008','8','7','66','60','0','Knight-Lieutenant\'s Satin Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123290','3','4','1','36013','10','7','66','60','0','Knight-Lieutenant\'s Silk Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123291','3','4','1','31063','8','7','66','60','0','Knight-Lieutenant\'s Silk Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123292','3','4','3','35799','5','5','68','60','0','Knight-Captain\'s Chain Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123293','3','4','3','35800','7','5','68','60','0','Knight-Captain\'s Chain Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123294','3','4','2','35805','5','8','68','60','0','Knight-Captain\'s Dragonhide Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123295','3','4','2','27235','7','8','68','60','0','Knight-Captain\'s Dragonhide Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123296','3','4','1','30385','7','7','68','60','0','Knight-Captain\'s Dreadweave Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123297','3','4','1','36017','20','7','68','60','0','Knight-Captain\'s Dreadweave Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123298','3','4','2','36015','5','8','68','60','0','Knight-Captain\'s Leather Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123299','3','4','2','36014','7','8','68','60','0','Knight-Captain\'s Leather Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123300','3','4','4','31083','5','6','68','60','0','Knight-Captain\'s Plate Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123301','3','4','4','26659','7','6','68','60','0','Knight-Captain\'s Plate Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123302','3','4','1','36018','7','7','68','60','0','Knight-Captain\'s Satin Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123303','3','4','1','36021','20','7','68','60','0','Knight-Captain\'s Satin Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123304','3','4','1','36022','7','7','68','60','0','Knight-Captain\'s Silk Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123305','3','4','1','36024','20','7','68','60','0','Knight-Captain\'s Silk Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123306','3','4','3','35801','1','5','71','60','0','Lieutenant Commander\'s Chain Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123307','3','4','3','35802','3','5','71','60','0','Lieutenant Commander\'s Chain Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123308','3','4','2','40407','1','8','71','60','0','Lieutenant Commander\'s Dragonhide Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123309','3','4','2','35807','3','8','71','60','0','Lieutenant Commander\'s Dragonhide Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123310','3','4','1','36040','1','7','71','60','0','Lieutenant Commander\'s Dreadweave Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123311','3','4','1','36027','3','7','71','60','0','Lieutenant Commander\'s Dreadweave Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123312','3','4','2','36669','1','8','71','60','0','Lieutenant Commander\'s Leather Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123313','3','4','2','36044','3','8','71','60','0','Lieutenant Commander\'s Leather Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123314','3','4','4','35810','1','6','71','60','0','Lieutenant Commander\'s Plate Helmet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123315','3','4','4','35811','3','6','71','60','0','Lieutenant Commander\'s Plate Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123316','3','4','1','36042','1','7','71','60','0','Lieutenant Commander\'s Satin Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123317','3','4','1','36038','3','7','71','60','0','Lieutenant Commander\'s Satin Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123318','3','4','1','36041','1','7','71','60','0','Lieutenant Commander\'s Silk Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123319','3','4','1','27231','3','7','71','60','0','Lieutenant Commander\'s Silk Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123321','0','4','1','12647','20','7','1','1','0','Recruit\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123322','0','4','1','36138','20','7','1','1','0','Acolyte\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123323','1','4','1','41462','1','-1','1','0','0','Crown of the Fire Festival','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123324','1','4','0','44563','3','4','1','0','0','Mantle of the Fire Festival','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123344','0','4','1','36120','7','7','1','1','0','Scout\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123345','1','4','0','36118','4','7','1','0','0','Scout\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123346','1','2','8','2380','17','1','2','1','1','Battleworn Claymore','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123347','1','2','18','10671','26','2','2','1','0','Weathered Crossbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123348','1','4','0','36122','8','7','1','0','0','Scout\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123350','1','4','1','9975','7','7','1','1','0','Battleworn Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123362','4','2','4','35992','21','0','90','60','0','Hammer of the Sun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123363','4','4','4','35991','5','0','90','60','0','Titanic Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123365','1','4','6','18698','14','1','5','0','4','Steel Rimmed Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123367','1','4','1','12661','20','7','5','0','0','Light Silk Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123368','1','4','2','8308','8','8','5','0','0','Soft Leather Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123370','1','2','7','35898','13','1','6','0','3','Ley-Keeper\'s Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123371','1','2','10','3405','17','2','6','0','2','Velania\'s Walking Stick','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123372','1','2','8','37415','17','1','7','0','1','Bloodhawk Claymore','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123373','1','2','7','36958','13','1','7','0','3','Long Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123375','1','4','2','35903','5','8','6','0','0','Black Leather Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123376','1','4','3','6954','10','5','6','0','0','Gatewatcher\'s Chain Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123377','1','4','1','16847','7','7','6','0','0','Guard\'s Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123390','1','2','8','20084','17','1','5','0','1','Exodar Bastard Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123391','1','2','15','6432','13','1','5','0','3','Exodar Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123392','1','2','4','19772','21','2','5','0','3','Exodar Maul','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123393','1','2','7','20176','21','1','5','0','3','Exodar Shortsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123395','1','4','6','18698','14','1','9','0','4','Farstrider\'s Buckler','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123396','1','2','7','1544','21','1','9','0','3','Slightly Used Ranger\'s Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123397','1','4','1','16817','10','7','9','0','0','Satin Lined Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123398','1','2','2','20722','15','2','9','0','0','Worn Ranger\'s Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123399','2','4','1','19011','20','7','10','0','0','Fallen Apprentice\'s Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123400','2','4','1','23044','16','7','16','0','0','Sylastor\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123401','2','4','0','28464','23','-1','16','0','7','Divining Crystal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123402','2','2','15','35932','13','1','14','0','3','Arcanist\'s Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123403','2','4','3','22687','7','5','14','0','0','Salvaged Mail Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123404','2','4','2','6777','8','8','14','0','0','Padded Running Shoes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123405','2','4','2','9502','5','8','12','0','0','Farstrider\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123406','2','4','3','25766','9','5','19','0','0','Sentry Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123407','2','4','1','16805','9','7','19','0','0','Supple Cotton Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123408','2','4','2','17014','9','8','19','0','0','Farstrider\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123409','2','2','2','20550','15','2','20','0','0','Well Crafted Long Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123410','2','2','7','36960','13','2','20','0','3','Well Crafted Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123411','2','2','10','20401','17','2','20','0','2','Well Crafted Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123412','2','4','3','10434','8','5','17','0','0','Troll Kickers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123413','2','4','1','14552','8','7','17','0','0','Troll Kickers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123414','2','4','2','14276','8','8','17','0','0','Troll Kickers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123415','2','2','15','3006','13','1','15','0','3','Survival Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123420','2','2','1','35959','17','1','15','0','1','Engraved Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123421','2','2','7','5145','13','1','15','0','3','Engraved Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123422','2','2','15','35961','13','1','15','0','3','Engraved Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123423','2','2','8','35962','17','1','10','0','1','Mercenary Greatsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123429','2','2','5','35968','17','1','10','0','1','Mercenary Clout','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123430','2','2','7','5145','13','1','10','0','3','Mercenary Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123431','2','2','15','35961','13','1','10','0','3','Mercenary Stiletto','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123432','2','2','8','35962','17','1','15','0','3','Engraved Greatsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123433','2','4','1','35974','20','7','15','0','0','Blood Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123434','2','4','1','35975','20','7','15','0','0','Robes of the Shard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123451','4','2','15','36045','21','1','78','60','3','Grand Marshal\'s Mageblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123452','4','4','0','36265','23','7','78','60','7','Grand Marshal\'s Tome of Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123453','4','4','0','36266','23','7','78','60','7','Grand Marshal\'s Tome of Restoration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123454','4','2','4','36064','21','2','78','60','3','Grand Marshal\'s Warhammer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123455','4','2','5','36065','17','2','78','60','1','Grand Marshal\'s Demolisher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123456','4','2','7','36066','13','1','78','60','3','Grand Marshal\'s Swiftblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123457','4','2','5','36067','17','2','78','60','1','High Warlord\'s Destroyer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123458','4','2','15','36068','21','1','78','60','3','High Warlord\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123459','4','2','4','36069','21','2','78','60','3','High Warlord\'s Battle Mace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123461','4','2','7','36073','13','1','78','60','3','High Warlord\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123462','4','4','0','36267','23','3','78','60','7','High Warlord\'s Tome of Destruction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123464','4','2','4','36078','21','2','78','60','3','High Warlord\'s Battle Mace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123465','4','2','5','36079','17','2','78','60','1','High Warlord\'s Destroyer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123466','4','2','15','36080','21','1','78','60','3','High Warlord\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123467','4','2','7','36081','13','1','78','60','3','High Warlord\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123468','4','4','0','36267','23','3','78','60','7','High Warlord\'s Tome of Destruction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123469','4','4','0','36268','23','3','78','60','7','High Warlord\'s Tome of Mending','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123471','1','4','1','36104','7','7','1','1','0','Rugged Trapper\'s Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123473','1','4','0','36124','4','7','1','0','0','Recruit\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123474','0','4','1','36125','7','7','1','1','0','Recruit\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123475','1','4','0','36126','8','7','1','0','0','Recruit\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123476','1','4','0','36133','4','7','1','0','0','Squire\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123477','0','4','1','36134','7','7','1','1','0','Squire\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123478','0','4','1','36125','7','7','1','1','0','Recruit\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123479','0','4','1','36140','20','7','1','1','0','Recruit\'s Robe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123482','2','4','4','38318','10','-1','90','61','0','Fel Iron Plate Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123484','2','4','4','38319','6','-1','90','61','0','Fel Iron Plate Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123487','2','4','4','39451','8','-1','96','62','0','Fel Iron Plate Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123488','2','4','4','38316','7','-1','96','62','0','Fel Iron Plate Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123489','2','4','4','38321','5','-1','102','64','0','Fel Iron Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123490','2','4','3','38327','5','-1','99','63','0','Fel Iron Chain Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123491','2','4','3','38328','10','-1','93','61','0','Fel Iron Chain Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123493','2','4','3','44656','1','-1','90','60','0','Fel Iron Chain Coif','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123494','2','4','3','39177','9','-1','96','62','0','Fel Iron Chain Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123497','2','2','0','39450','13','1','93','61','3','Fel Iron Hatchet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123498','2','2','4','39376','13','1','96','62','3','Fel Iron Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123499','2','2','8','39449','17','1','99','63','1','Fel Iron Greatsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123502','2','2','5','38681','17','1','102','64','1','Adamantite Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123503','2','2','1','38682','17','1','105','65','1','Adamantite Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123504','2','2','15','38683','13','1','105','65','3','Adamantite Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123505','2','2','7','20076','13','1','108','66','3','Adamantite Rapier','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123506','3','4','4','38684','9','-1','103','66','0','Adamantite Plate Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123507','3','4','4','36206','5','-1','106','67','0','Adamantite Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123508','3','4','4','38685','10','-1','103','66','0','Adamantite Plate Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123509','3','4','4','38686','5','-1','114','70','0','Enchanted Adamantite Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123510','3','4','4','38687','6','-1','113','70','0','Enchanted Adamantite Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123511','3','4','4','38689','8','-1','113','70','0','Enchanted Adamantite Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123512','3','4','4','38690','7','-1','115','70','0','Enchanted Adamantite Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123513','3','4','4','42874','5','-1','115','70','0','Flamebane Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123514','3','4','4','42875','10','-1','114','70','0','Flamebane Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123515','3','4','4','42877','9','-1','112','69','0','Flamebane Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123516','3','4','4','42876','1','-1','113','70','0','Flamebane Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123517','3','4','4','38695','10','-1','114','70','0','Felsteel Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123518','3','4','4','38696','7','-1','114','70','0','Felsteel Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123519','3','4','4','38697','1','-1','115','70','0','Felsteel Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123520','3','4','4','38698','10','-1','115','70','0','Ragesteel Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123521','3','4','4','38699','1','-1','115','70','0','Ragesteel Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123522','3','4','4','38700','5','-1','115','70','0','Ragesteel Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123523','3','4','4','36230','7','-1','114','70','0','Khorium Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123524','3','4','4','38701','6','-1','114','70','0','Khorium Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123525','3','4','4','38702','8','-1','115','70','0','Khorium Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123526','3','4','3','38703','10','-1','115','70','0','Swiftsteel Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123527','3','4','3','44089','5','-1','115','70','0','Earthpeace Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123531','4','4','3','34236','10','-1','105','70','0','Felfury Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123532','4','4','4','38705','10','-1','105','70','0','Gauntlets of the Iron Tower','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123533','4','4','4','38706','10','-1','105','70','0','Steelgrip Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123534','4','4','3','36416','1','-1','105','70','0','Storm Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123535','4','4','4','44880','1','-1','105','70','0','Helm of the Stalwart Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123536','4','4','4','44877','1','-1','105','70','0','Oathkeeper\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123537','4','4','4','36248','9','-1','105','70','0','Black Felsteel Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123538','4','4','4','36249','9','-1','105','70','0','Bracers of the Green Fortress','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123539','4','4','4','36250','9','-1','105','70','0','Blessed Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123540','4','2','7','36253','13','1','105','70','1','Felsteel Longblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123541','4','2','8','36255','17','1','105','70','1','Khorium Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123542','4','2','0','41709','13','1','105','70','1','Fel Edged Battleaxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123543','4','2','1','36259','17','1','105','70','1','Felsteel Reaper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123544','4','2','4','36261','13','1','105','70','3','Runic Hammer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123546','4','2','5','36263','17','1','105','70','1','Fel Hardened Maul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123553','1','2','10','36317','17','2','10','0','1','Living Branch','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123554','4','2','15','36283','21','1','105','70','3','Eternium Runed Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123555','4','2','15','36285','13','1','105','70','3','Dirge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123556','4','2','4','45615','21','1','105','70','3','Hand of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123557','4','2','3','34484','26','1','81','60','0','Larvae of the Great Worm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123558','4','4','0','36290','12','4','81','60','0','The Burrower\'s Shell','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123563','4','4','3','45805','5','-1','107','70','0','Nether Chain Shirt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123564','4','4','3','45806','5','-1','127','70','0','Twisting Nether Chain Shirt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123565','4','4','3','45807','5','-1','146','70','0','Embrace of the Twisting Nether','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123570','4','4','0','36338','12','4','81','60','0','Jom Gabbar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123577','4','2','7','35575','13','1','89','60','3','The Hungering Cold','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123587','2','4','1','39942','1','7','90','0','0','Mirren\'s Drinking Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123663','4','4','3','34203','6','5','85','60','0','Girdle of Elemental Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123664','4','4','3','36425','3','5','85','60','0','Pauldrons of Elemental Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123665','4','4','3','36426','7','5','85','60','0','Leggings of Elemental Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123666','4','4','4','36430','6','6','85','60','0','Belt of the Grand Crusader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123667','4','4','4','36429','3','6','85','60','0','Spaulders of the Grand Crusader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123668','4','4','4','22985','7','6','85','60','0','Leggings of the Grand Crusader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123705','4','4','0','38283','19','7','1','0','0','Tabard of Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123709','4','4','0','38284','19','7','1','0','0','Tabard of Frost','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123714','4','4','0','34282','12','-1','20','0','0','Perpetual Purple Firework','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123716','4','4','0','36471','12','-1','1','0','0','Carved Ogre Idol','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123717','1','4','0','963','11','-1','1','0','0','Pitted Gold Band','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123742','2','2','3','43685','26','1','99','63','0','Fel Iron Musket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123746','2','2','3','43687','26','1','117','69','0','Adamantite Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123747','3','2','3','43688','26','1','108','70','0','Felsteel Boomstick','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123748','3','2','3','43690','26','1','115','70','0','Ornate Khorium Rifle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123758','3','4','2','43889','1','7','106','0','0','Cogspinner Goggles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123761','3','4','1','40545','1','7','89','0','0','Power Amplification Goggles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123762','3','4','1','43890','1','7','112','0','0','Ultra-Spectropic Detection Goggles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123763','3','4','2','43891','1','7','112','0','0','Hyper-Vision Goggles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123824','3','4','2','46155','8','7','112','0','0','Rocket Boots Xtreme','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123825','3','4','1','36539','6','8','109','0','0','Nigh Invulnerability Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123828','4','4','1','43887','1','7','95','0','0','Gnomish Power Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123829','4','4','2','43886','1','7','95','0','0','Gnomish Battle Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123835','3','4','0','36568','12','8','68','0','0','Gnomish Poultryizer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123836','3','4','0','40556','12','8','70','0','0','Goblin Rocket Launcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123838','4','4','1','20814','1','7','95','0','0','Foreman\'s Enchanted Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123839','4','4','3','20814','1','7','95','0','0','Foreman\'s Reinforced Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123844','2','4','0','36575','23','-1','17','0','7','Nolkai\'s Lantern','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123909','1','4','0','42479','1','-1','5','5','0','Blood Elf Bandit Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123923','1','2','15','36650','13','1','17','12','3','Amani Sacrificial Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123924','2','4','1','27472','20','7','5','0','0','Robes of Silvermoon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123931','2','4','1','36676','20','7','5','0','0','Azure Watch Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('123999','1','4','0','36701','19','7','20','0','0','Honor Hold Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124004','1','4','0','35933','19','7','20','0','0','Thrallmar Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124020','3','2','7','39374','13','1','85','60','3','Shadowrend Longblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124021','3','4','4','43142','5','6','85','60','0','Light-Touched Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124022','3','4','3','43149','7','5','85','60','0','Scale Leggings of the Skirmisher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124023','3','4','2','43166','9','8','85','60','0','Bracers of Finesse','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124024','3','4','1','43187','3','7','85','60','0','Pauldrons of Arcane Rage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124044','3','2','6','36729','17','1','85','60','1','Hellreaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124045','3','4','0','26537','11','5','85','60','0','Band of Renewal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124046','3','4','3','43160','7','5','85','60','0','Kilt of Rolling Thunders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124063','3','4','2','43167','6','8','85','60','0','Shifting Sash of Midnight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124064','3','4','4','43135','8','6','85','60','0','Ironsole Clompers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124069','3','2','10','39050','17','2','85','60','2','Crystalfire Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124071','3','2','15','36741','13','0','69','0','0','Bland Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124073','3','4','0','34034','2','-1','85','60','0','Garrote-String Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124074','2','4','0','31657','11','5','93','61','0','Fel Iron Blood Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124075','2','4','0','39129','11','5','93','61','0','Golden Draenite Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124076','2','4','0','35313','11','5','99','63','0','Azure Moonstone Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124077','2','4','0','35358','2','5','83','66','0','Thick Adamantite Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124078','2','4','0','39128','11','5','83','66','0','Heavy Adamantite Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124079','3','4','0','39121','11','5','112','69','0','Khorium Band of Shadows','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124080','3','4','0','39123','11','5','113','70','0','Khorium Band of Frost','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124082','3','4','0','39120','11','5','113','70','0','Khorium Inferno Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124083','3','4','1','43182','7','7','85','60','0','Lifegiver Britches','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124085','3','4','0','39122','11','5','114','70','0','Khorium Band of Leaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124086','3','4','0','39124','11','5','115','70','0','Arcane Khorium Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124087','3','4','0','39125','11','5','109','68','0','Heavy Felsteel Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124088','3','4','0','39127','11','5','101','70','0','Delicate Eternium Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124089','3','4','0','39126','11','5','115','70','0','Blazing Eternium Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124090','3','4','3','43151','10','5','85','60','0','Bloodstained Ravager Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124091','3','4','4','43136','6','6','85','60','0','Tenacious Defender','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124092','3','4','0','39162','2','5','114','70','0','Pendant of Frozen Flame','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124093','3','4','0','39210','2','5','114','70','0','Pendant of Thawing','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124094','3','2','5','38823','17','1','85','60','1','Heart Fire Warhammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124095','3','4','0','39211','2','5','114','70','0','Pendant of Withering','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124096','3','4','0','38544','2','3','85','60','0','Heartblood Prayer Beads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124097','3','4','0','39209','2','5','114','70','0','Pendant of Shadow\'s End','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124098','3','4','0','39212','2','5','114','70','0','Pendant of the Null Rune','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124100','1','2','15','33302','13','1','2','1','3','Warder\'s Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124103','1','4','2','36767','8','7','8','0','0','Moongraze Hide Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124104','1','4','1','23050','16','7','9','0','0','Moongraze Fur Cloak','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124106','3','4','0','31899','2','5','113','70','0','Thick Felsteel Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124107','2','4','3','36997','5','8','10','0','0','Ravager Chitin Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124108','2','4','2','14346','7','5','10','0','0','Ravager Hide Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124109','2','4','1','17119','6','7','10','0','0','Thick Ravager Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124110','3','4','0','31604','2','5','113','70','0','Living Ruby Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124111','2','4','2','36771','5','8','10','0','0','Kurken Hide Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124112','2','4','1','16855','8','7','10','0','0','Kurkenstoks','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124113','2','4','1','28013','9','8','10','0','0','Cowlen\'s Bracers of Kinship','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124114','3','4','0','9859','2','5','102','70','0','Braided Eternium Chain','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124116','3','4','0','36755','2','5','114','70','0','Eye of the Night','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124117','3','4','0','35358','2','5','115','70','0','Embrace of the Dawn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124118','2','4','0','9847','11','1','32','0','0','Signet of Argas','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124119','2','4','0','9832','11','1','32','0','0','Band of Argas','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124120','2','4','0','9847','11','1','32','0','0','Seal of Argas','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124121','3','4','0','34274','2','5','115','70','0','Chain of the Twilight Owl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124122','4','4','1','27606','1','8','100','70','0','Coronet of Verdant Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124123','4','4','1','36772','1','8','100','70','0','Circlet of Arcane Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124124','3','4','0','39917','12','-1','115','70','0','Figurine - Felsteel Boar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124125','3','4','0','39916','12','-1','115','70','0','Figurine - Dawnstone Crab','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124126','3','4','0','39918','12','-1','115','70','0','Figurine - Living Ruby Serpent','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124127','3','4','0','39914','12','-1','115','70','0','Figurine - Talasite Owl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124128','3','4','0','39915','12','-1','115','70','0','Figurine - Nightseye Panther','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124129','1','4','2','14443','6','8','5','0','0','Salvaged Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124130','1','4','1','16587','8','7','5','0','0','Worn Slippers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124131','1','4','3','6904','9','5','5','0','0','Slightly Rusted Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124133','1','4','3','36775','5','5','5','0','0','Weathered Mail Tunic','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124134','1','4','2','36776','5','8','5','0','0','Weathered Leather Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124135','1','4','1','40713','5','7','5','0','0','Weathered Cloth Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124136','2','2','2','18350','15','2','12','0','0','Farstrider\'s Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124137','3','4','4','36780','1','6','86','0','0','PH Plate Ramparts Reward','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124138','2','2','18','11247','26','2','12','0','0','Silver Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124141','1','4','3','36786','10','5','8','0','0','Battle Worn Gauntlets','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124142','1','4','2','36787','10','7','8','0','0','Battle Worn Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124143','0','4','0','36789','4','7','1','0','0','Initiate\'s Shirt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124144','1','4','1','36788','10','7','8','0','0','Battle Worn Handguards','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124145','0','4','1','36790','7','7','1','1','0','Initiate\'s Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124146','0','4','1','36793','8','7','1','0','0','Initiate\'s Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124150','3','4','1','38813','16','7','85','60','0','Mok\'Nathal Wildercloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124151','3','4','0','23629','11','4','85','60','0','Mok\'Nathal Clan Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124154','3','4','0','28733','11','5','85','60','0','Witching Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124155','3','2','10','40357','17','2','85','60','2','Ursol\'s Claw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124222','3','2','15','30724','13','1','57','52','3','The Shadowfoot Stabber','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124227','1','4','2','36906','6','8','5','0','0','Soft Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124241','1','4','3','37154','6','5','5','0','0','Green Chain Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124249','3','4','1','38923','9','7','112','69','0','Unyielding Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124250','3','4','1','38922','9','7','112','69','0','Bracers of Havok','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124251','3','4','1','38921','9','7','112','69','0','Blackstrike Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124252','3','4','1','26202','16','7','112','69','0','Cloak of the Black Void','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124253','3','4','1','38973','16','7','112','69','0','Cloak of Eternity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124254','3','4','1','36937','16','7','112','69','0','White Remedy Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124255','4','4','1','36938','6','6','105','70','0','Unyielding Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124256','4','4','1','38974','6','6','105','70','0','Girdle of Ruination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124257','4','4','1','38975','6','6','105','70','0','Black Belt of Knowledge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124258','4','4','1','29719','16','7','105','70','0','Resolute Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124259','4','4','1','38976','16','7','105','70','0','Vengeance Wrap','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124260','4','4','1','38977','16','7','105','70','0','Manaweave Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124261','4','4','1','43304','7','7','105','70','0','Whitemend Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124262','4','4','1','38958','7','7','105','70','0','Spellstrike Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124263','4','4','1','43421','7','7','105','70','0','Battlecast Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124264','4','4','1','43883','1','7','105','70','0','Whitemend Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124265','4','4','1','36945','1','7','105','70','0','Old Spellstrike Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124266','4','4','1','38956','1','7','105','70','0','Spellstrike Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124267','4','4','1','43884','1','7','105','70','0','Battlecast Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124334','2','4','6','18456','14','1','19','0','4','Wheel of the Lost Hope','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124339','2','2','7','31400','13','1','11','0','1','Stung','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124340','2','4','1','14498','7','7','11','0','0','Vandril\'s Hand Me Down Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124341','2','4','3','7000','10','5','11','0','0','Fortified Oven Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124342','2','2','19','28633','26','2','13','0','0','Stillpine Shocker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124343','2','2','4','8572','13','2','13','0','3','The Thumper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124344','1','4','0','37080','19','-1','20','0','0','Tabard of the Hand','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124346','2','4','1','37046','20','7','18','0','0','Robe of the Dragon Slayer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124347','2','4','2','37047','5','8','18','0','0','Vest of the Dragon Slayer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124348','2','4','3','37048','5','5','18','0','0','Tunic of the Dragon Slayer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124349','2','4','0','23608','11','-1','20','0','0','Signet Ring of the Hand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124350','2','4','0','26001','11','-1','20','0','0','Signet Ring of the Hand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124351','2','2','4','37049','13','1','20','0','3','Mace of the Hand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124352','2','2','8','37050','17','1','20','0','1','Blade of the Hand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124353','2','2','18','37057','26','2','20','0','0','Crossbow of the Hand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124354','2','2','10','37054','17','2','20','0','2','Staff of the Hand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124356','3','2','15','43194','13','1','91','62','3','Wastewalker Shiv','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124357','3','4','3','43161','5','5','91','62','0','Vest of Living Lightning','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124359','3','4','1','42315','7','7','91','62','0','Princely Reign Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124360','3','4','3','43153','6','5','91','62','0','Tracker\'s Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124361','3','2','7','43733','21','1','91','62','3','Spellfire Longsword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124362','3','4','1','43197','16','7','91','62','0','Spore-Soaked Vaneer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124363','3','4','4','43140','5','6','91','62','0','Unscarred Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124364','3','4','4','43144','7','6','91','62','0','Azureplate Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124365','3','4','2','43170','10','8','91','62','0','Deft Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124366','3','4','3','43156','3','5','91','62','0','Scorpid-Sting Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124376','3','4','0','39055','12','4','91','62','0','Runed Fungalcap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124378','3','2','4','43195','21','2','91','62','3','Coilfang Hammer of Renewal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124379','3','4','1','38548','16','7','91','62','0','Bogstrok Scale Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124380','3','2','19','39057','26','2','91','62','0','Calming Spore Reed','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124381','3','2','18','39059','26','2','91','62','0','Coilfang Needler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124384','3','2','4','38827','21','1','88','61','3','Diamond-Core Sledgemace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124385','3','4','0','31899','2','3','88','61','0','Pendant of Battle-Lust','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124386','3','4','7','36578','28','2','88','61','0','Libram of Saints Departed','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124387','3','4','4','43134','10','6','88','61','0','Ironblade Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124388','3','4','3','43159','6','5','88','61','0','Girdle of the Gale Storm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124389','3','2','3','41427','26','1','88','61','0','Legion Blunderbuss','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124390','3','4','0','38837','12','3','88','61','0','Auslese\'s Light Channeler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124391','3','4','2','43175','7','8','88','61','0','Kilt of the Night Strider','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124392','3','4','1','43188','9','7','88','61','0','Arcing Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124393','3','4','1','40042','10','7','88','61','0','Bloody Surgeon\'s Mitts','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124394','3','2','1','40900','17','1','88','61','1','Warsong Howling Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124395','3','4','1','43189','6','7','88','61','0','Mindfire Waistband','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124396','3','4','2','43168','5','8','88','61','0','Vest of Vengeance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124397','3','4','1','43183','20','7','88','61','0','Raiments of Divine Authority','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124398','3','4','2','43169','3','8','88','61','0','Mantle of the Dusk-Dweller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124413','3','4','9','43198','28','2','94','63','0','Totem of the Thunderhead','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124423','1','4','3','37184','7','5','5','0','0','Beaten Chain Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124424','1','4','2','37185','7','8','5','0','0','Rough Leather Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124425','1','4','1','37186','7','7','5','0','0','Hand Sewn Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124430','1','2','8','37191','17','1','10','0','1','Seafarer\'s Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124431','1','2','4','37192','21','2','10','0','3','McWeaksauce\'s Meat Tenderizer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124432','1','2','5','37193','17','2','10','0','1','The Shell Cracker','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124433','1','2','18','37057','26','2','10','0','0','Crossbow of the Albatross','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124434','1','2','10','37195','17','2','10','0','2','The Discipline Stick','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124435','1','4','3','37196','8','5','7','0','0','Reinforced Mail Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124436','1','4','2','37197','9','8','7','0','0','Huntsman\'s Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124437','1','4','1','37198','9','7','7','0','0','Slightly Worn Bracer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124438','2','4','1','37199','20','7','11','0','0','Fur Covered Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124439','2','4','2','37185','7','8','11','0','0','Savage Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124440','2','4','3','37200','7','5','11','0','0','Heavy Chain Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124441','1','2','18','37201','26','2','5','0','0','Exodar Crossbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124442','1','4','3','37202','6','5','10','0','0','Mail Belt of the Silverpine','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124443','1','4','2','37203','9','8','10','1','0','Bracers of Shed Fur','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124444','1','4','1','37204','7','7','10','0','0','Newly Weaved Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124445','1','4','3','37205','9','5','10','0','0','Fortified Wristguards','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124446','1','4','2','37206','6','8','10','0','0','Sturdy Leather Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124447','1','4','3','37207','8','5','10','0','0','Naga Scale Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124450','3','4','1','43190','10','7','94','63','0','Manaspark Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124451','3','4','3','43152','9','5','94','63','0','Lykul Bloodbands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124452','3','4','2','43176','10','8','94','63','0','Starlight Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124453','3','2','15','39074','21','1','94','63','3','Zangartooth Shortblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124454','3','4','1','39075','16','7','94','63','0','Cloak of Enduring Swiftness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124455','3','4','2','43177','5','8','94','63','0','Tunic of the Nightwatcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124456','3','4','4','43138','7','6','94','63','0','Greaves of the Iron Guardian','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124457','3','4','4','43199','3','6','94','63','0','Truth Bearer Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124458','3','4','4','43143','6','6','94','63','0','Studded Girdle of Virtue','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124459','3','4','1','39078','16','7','94','63','0','Cloak of Healing Rays','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124460','3','4','0','38555','2','3','94','63','0','Talisman of Tenacity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124461','3','2','5','43200','17','2','94','63','1','Hatebringer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124462','3','4','0','9858','2','3','94','63','0','Luminous Pearls of Insight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124463','3','4','4','43139','3','6','94','63','0','Pauldrons of Brute Force','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124464','3','2','15','39081','13','1','94','63','3','The Stalker\'s Fangs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124465','3','4','3','43154','5','5','94','63','0','Shamblehide Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124466','3','4','2','43171','7','8','94','63','0','Skulldugger\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124481','3','4','1','43191','20','7','94','63','0','Robes of the Augurer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124544','4','4','4','39539','5','6','123','70','0','Gladiator\'s Plate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124545','4','4','4','44561','1','6','123','70','0','Gladiator\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124546','4','4','4','39543','3','6','123','70','0','Gladiator\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124547','4','4','4','45932','7','6','123','70','0','Gladiator\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124549','4','4','4','39540','10','6','123','70','0','Gladiator\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124550','4','2','8','41561','17','1','123','70','1','Gladiator\'s Greatsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124551','4','4','0','23713','12','4','90','70','0','Talisman of the Horde','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124552','4','4','1','41717','20','7','123','70','0','Gladiator\'s Dreadweave Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124553','4','4','1','45148','1','7','123','70','0','Gladiator\'s Dreadweave Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124554','4','4','1','41716','3','7','123','70','0','Gladiator\'s Dreadweave Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124555','4','4','1','41715','7','7','123','70','0','Gladiator\'s Dreadweave Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124556','4','4','1','41714','10','7','123','70','0','Gladiator\'s Dreadweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124557','4','2','10','41557','17','2','123','70','2','Gladiator\'s War Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124575','2','4','1','37970','6','7','81','57','0','Outlander\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124576','0','4','1','37327','6','7','66','61','0','Loosely Threaded Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124577','0','4','1','37328','8','7','66','61','0','Loosely Threaded Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124578','0','4','1','37329','9','7','66','61','0','Loosely Threaded Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124580','0','4','1','42766','1','7','66','61','0','Loosely Threaded Hat','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124582','2','4','1','39623','8','7','81','57','0','Outlander\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124583','2','4','1','40693','5','7','81','57','0','Outlander\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124584','2','4','1','12865','10','7','81','57','0','Outlander\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124585','2','4','1','41844','1','7','81','57','0','Outlander\'s Facewrap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124586','2','4','1','40692','7','7','81','57','0','Outlander\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124587','2','4','1','1058','3','7','81','57','0','Outlander\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124588','2','4','1','16566','9','7','81','57','0','Outlander\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124589','2','4','1','7881','6','7','84','58','0','Fireheart Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124590','2','4','1','40700','8','7','84','58','0','Fireheart Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124591','2','4','1','40698','5','7','84','58','0','Fireheart Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124592','2','4','1','40702','10','7','84','58','0','Fireheart Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124593','2','4','1','40703','1','7','84','58','0','Fireheart Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124594','2','4','1','40312','7','7','84','58','0','Fireheart Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124595','2','4','1','16786','3','7','84','58','0','Fireheart Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124596','2','4','1','40701','9','7','84','58','0','Fireheart Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124597','2','4','1','38064','6','7','87','59','0','Starfire Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124598','2','4','1','40706','8','7','87','59','0','Starfire Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124599','2','4','1','40708','5','7','87','59','0','Starfire Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124600','2','4','1','40704','10','7','87','59','0','Starfire Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124601','2','4','1','19990','1','7','87','59','0','Starfire Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124602','2','4','1','40707','7','7','87','59','0','Starfire Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124603','2','4','1','13672','3','7','87','59','0','Starfire Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124604','2','4','1','40709','9','7','87','59','0','Starfire Wristwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124605','2','4','1','16807','6','7','90','60','0','Laughing Skull Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124606','2','4','1','38437','8','7','90','60','0','Laughing Skull Boot','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124607','2','4','1','38444','5','7','90','60','0','Laughing Skull Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124608','2','4','1','38441','10','7','90','60','0','Laughing Skull Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124609','2','4','1','42766','1','7','90','60','0','Laughing Skull Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124610','2','4','1','38442','7','7','90','60','0','Laughing Skull Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124611','2','4','1','9999','3','7','90','60','0','Laughing Skull Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124612','2','4','1','16790','9','7','90','60','0','Laughing Skull Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124613','2','4','1','38736','6','7','93','61','0','Vindicator Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124614','2','4','1','38737','8','7','93','61','0','Vindicator Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124615','2','4','1','38740','5','7','93','61','0','Vindicator Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124616','2','4','1','9555','10','7','93','61','0','Vindicator Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124617','2','4','1','44718','1','7','93','61','0','Vindicator Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124618','2','4','1','38739','7','7','93','61','0','Vindicator Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124619','2','4','1','38741','3','7','93','61','0','Vindicator Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124620','2','4','1','16555','9','7','93','61','0','Vindicator Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124621','2','4','1','7881','6','7','96','62','0','Slavehandler Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124622','2','4','1','39008','8','7','96','62','0','Slavehandler Footpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124623','2','4','1','39009','5','7','96','62','0','Slavehandler Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124624','2','4','1','16797','10','7','96','62','0','Slavehandler Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124625','2','4','1','42386','1','7','96','62','0','Slavehandler Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124626','2','4','1','39010','7','7','96','62','0','Slavehandler Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124627','2','4','1','39011','3','7','96','62','0','Slavehandler Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124628','2','4','1','16804','9','7','96','62','0','Slavehandler Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124629','2','4','1','39093','6','7','99','63','0','Feralfen Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124630','2','4','1','39089','8','7','99','63','0','Feralfen Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124631','2','4','1','39092','5','7','99','63','0','Feralfen Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124632','2','4','1','39090','10','7','99','63','0','Feralfen Hand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124633','2','4','1','39091','1','7','99','63','0','Feralfen Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124634','2','4','1','14529','7','7','99','63','0','Feralfen Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124635','2','4','1','39094','3','7','99','63','0','Feralfen Amice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124636','2','4','1','39088','9','7','99','63','0','Feralfen Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124637','2','4','1','29929','6','7','102','64','0','Mistyreed Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124638','2','4','1','39334','8','7','102','64','0','Mistyreed Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124639','2','4','1','39337','5','7','102','64','0','Mistyreed Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124640','2','4','1','39335','10','7','102','64','0','Mistyreed Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124641','2','4','1','16638','1','7','102','64','0','Mistyreed Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124642','2','4','1','39336','7','7','102','64','0','Mistyreed Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124643','2','4','1','39338','3','7','102','64','0','Mistyreed Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124644','2','4','1','16905','9','7','102','64','0','Mistyreed Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124645','2','4','1','39395','6','7','105','65','0','Astralaan Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124646','2','4','1','39396','8','7','105','65','0','Astralaan Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124647','2','4','1','39976','5','7','105','65','0','Astralaan Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124648','2','4','1','39398','10','7','105','65','0','Astralaan Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124649','2','4','1','39405','1','7','105','65','0','Astralaan Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124650','2','4','1','39399','7','7','105','65','0','Astralaan Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124651','2','4','1','39403','3','7','105','65','0','Astralaan Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124652','2','4','1','39397','9','7','105','65','0','Astralaan Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124653','2','4','1','16819','6','7','108','66','0','Consortium Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124654','2','4','1','14403','8','7','108','66','0','Consortium Boot','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124655','2','4','1','39509','5','7','108','66','0','Consortium Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124656','2','4','1','14404','10','7','108','66','0','Consortium Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124657','2','4','1','39511','1','7','108','66','0','Consortium Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124658','2','4','1','39507','7','7','108','66','0','Consortium Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124659','2','4','1','39510','3','7','108','66','0','Consortium Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124660','2','4','1','39506','9','7','108','66','0','Consortium Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124661','2','4','1','39778','6','7','111','67','0','Shadow Council Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124662','2','4','1','39777','8','7','111','67','0','Shadow Council Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124663','2','4','1','39781','5','7','111','67','0','Shadow Council Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124664','2','4','1','39779','10','7','111','67','0','Shadow Council Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124665','2','4','1','39783','1','7','111','67','0','Shadow Council Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124666','2','4','1','39780','7','7','111','67','0','Shadow Council Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124667','2','4','1','39782','3','7','111','67','0','Shadow Council Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124668','2','4','1','16892','9','7','111','67','0','Shadow Council Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124669','2','4','1','39882','6','7','114','68','0','Eldr\'naan Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124670','2','4','1','39883','8','7','114','68','0','Eldr\'naan Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124671','2','4','1','39885','5','7','114','68','0','Eldr\'naan Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124672','2','4','1','39884','10','7','114','68','0','Eldr\'naan Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124673','2','4','1','39887','1','7','114','68','0','Eldr\'naan Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124674','2','4','1','39886','7','7','114','68','0','Eldr\'naan Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124675','2','4','1','16637','3','7','114','68','0','Eldr\'naan Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124676','2','4','1','16636','9','7','114','68','0','Eldr\'naan Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124677','2','4','1','16704','6','7','117','69','0','Archmage Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124678','2','4','1','16703','8','7','117','69','0','Archmage Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124679','2','4','1','39977','5','7','117','69','0','Archmage Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124680','2','4','1','16702','10','7','117','69','0','Archmage Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124681','2','4','1','44265','1','7','117','69','0','Archmage Headpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124682','2','4','1','16701','7','7','117','69','0','Archmage Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124683','2','4','1','16706','3','7','117','69','0','Archmage Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124684','2','4','1','9894','9','7','117','69','0','Archmage Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124685','2','4','1','16704','6','7','120','70','0','Elementalist Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124686','2','4','1','16703','8','7','120','70','0','Elementalist Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124687','2','4','1','16700','5','7','120','70','0','Elementalist Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124688','2','4','1','16702','10','7','120','70','0','Elementalist Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124689','2','4','1','42386','1','7','120','70','0','Elementalist Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124690','2','4','1','16701','7','7','120','70','0','Elementalist Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124691','2','4','1','16706','3','7','120','70','0','Elementalist Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124692','2','4','1','9894','9','7','120','70','0','Elementalist Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124693','2','4','2','40154','6','8','81','57','0','Bonechewer Pelt-Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124694','2','4','2','40720','8','8','81','57','0','Bonechewer Shredboots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124695','2','4','2','40718','5','8','81','57','0','Bonechewer Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124696','2','4','2','40722','10','8','81','57','0','Bonechewer Spikegloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124697','2','4','2','41852','1','8','81','57','0','Bonechewer Skincloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124698','2','4','2','40719','7','8','81','57','0','Bonechewer Ripleggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124699','2','4','2','38830','3','8','81','57','0','Bonechewer Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124700','2','4','2','40717','9','8','81','57','0','Bonechewer Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124701','2','4','2','40724','6','8','84','58','0','Haal\'eshi Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124702','2','4','2','40723','8','8','84','58','0','Haal\'eshi Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124703','2','4','2','40727','5','8','84','58','0','Haal\'eshi Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124704','2','4','2','40726','10','8','84','58','0','Haal\'eshi Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124705','2','4','2','42209','1','8','84','58','0','Haal\'eshi Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124706','2','4','2','40728','7','8','84','58','0','Haal\'eshi Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124707','2','4','2','40729','3','8','84','58','0','Haal\'eshi Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124708','2','4','2','17010','9','8','84','58','0','Haal\'eshi Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124709','2','4','2','17124','6','8','87','59','0','Vengeance Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124710','2','4','2','38351','8','8','87','59','0','Vengeance Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124711','2','4','2','38352','5','8','87','59','0','Vengeance Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124712','2','4','2','38354','10','8','87','59','0','Vengeance Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124713','2','4','2','39671','1','8','87','59','0','Vengeance Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124714','2','4','2','38356','7','8','87','59','0','Vengeance Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124715','2','4','2','38355','3','8','87','59','0','Vengeance Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124716','2','4','2','38350','9','8','87','59','0','Vengeance Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124717','2','4','2','38415','6','8','90','60','0','Dreghood Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124718','2','4','2','38416','8','8','90','60','0','Dreghood Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124719','2','4','2','9511','5','8','90','60','0','Dreghood Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124720','2','4','2','14383','10','8','90','60','0','Dreghood Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124721','2','4','2','44882','1','8','90','60','0','Dreghood Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124722','2','4','2','2628','7','8','90','60','0','Dreghood Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124723','2','4','2','14205','3','8','90','60','0','Dreghood Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124724','2','4','2','38414','9','8','90','60','0','Dreghood Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124725','2','4','2','38658','6','8','93','61','0','Dementia Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124726','2','4','2','38657','8','8','93','61','0','Dementia Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124727','2','4','2','38663','5','8','93','61','0','Dementia Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124728','2','4','2','38661','10','8','93','61','0','Dementia Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124729','2','4','2','44657','1','8','93','61','0','Dementia Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124730','2','4','2','17031','7','8','93','61','0','Dementia Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124731','2','4','2','38664','3','8','93','61','0','Dementia Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124732','2','4','2','38654','9','8','93','61','0','Dementia Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124733','2','4','2','38862','6','8','96','62','0','Sunroc Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124734','2','4','2','38857','8','8','96','62','0','Sunroc Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124735','2','4','2','38856','5','8','96','62','0','Sunroc Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124736','2','4','2','38858','10','8','96','62','0','Sunroc Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124737','2','4','2','41853','1','8','96','62','0','Sunroc Mask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124738','2','4','2','38860','7','8','96','62','0','Sunroc Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124739','2','4','2','38861','3','8','96','62','0','Sunroc Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124740','2','4','2','14803','9','8','96','62','0','Sunroc Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124741','2','4','2','39096','6','8','99','63','0','Ranger Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124742','2','4','2','39097','8','8','99','63','0','Ranger Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124743','2','4','2','8701','5','8','99','63','0','Ranger Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124744','2','4','2','14400','10','8','99','63','0','Ranger Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124745','2','4','2','39098','1','8','99','63','0','Ranger Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124746','2','4','2','43404','7','8','99','63','0','Ranger Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124747','2','4','2','27667','3','8','99','63','0','Ranger Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124748','2','4','2','39095','9','8','99','63','0','Ranger Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124749','2','4','2','39319','6','8','102','64','0','Daggerfen Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124750','2','4','2','13864','8','8','102','64','0','Daggerfen Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124751','2','4','2','39670','5','8','102','64','0','Daggerfen Battlevest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124752','2','4','2','39320','10','8','102','64','0','Daggerfen Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124753','2','4','2','16137','1','8','102','64','0','Daggerfen Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124754','2','4','2','39321','7','8','102','64','0','Daggerfen Stitchpants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124755','2','4','2','39322','3','8','102','64','0','Daggerfen Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124756','2','4','2','17172','9','8','102','64','0','Daggerfen Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124757','2','4','2','39469','6','8','105','65','0','Umbrafen Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124758','2','4','2','39466','8','8','105','65','0','Umbrafen Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124759','2','4','2','39468','5','8','105','65','0','Umbrafen Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124760','2','4','2','14583','10','8','105','65','0','Umbrafen Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124761','2','4','2','39471','1','8','105','65','0','Umbrafen Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124762','2','4','2','39467','7','8','105','65','0','Umbrafen Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124763','2','4','2','39470','3','8','105','65','0','Umbrafen Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124764','2','4','2','9546','9','8','105','65','0','Umbrafen Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124765','2','4','2','16947','6','8','108','66','0','Clefthoof Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124766','2','4','2','39496','8','8','108','66','0','Clefthoof Wanderboots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124767','2','4','2','39494','5','8','108','66','0','Clefthoof Hidemantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124768','2','4','2','39493','10','8','108','66','0','Clefthoof Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124769','2','4','2','45166','1','8','108','66','0','Clefthoof Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124770','2','4','2','39492','7','8','108','66','0','Clefthoof Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124771','2','4','2','39498','3','8','108','66','0','Clefthoof Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124772','2','4','2','17024','9','8','108','66','0','Clefthoof Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124773','2','4','2','39736','6','8','111','67','0','Boneshredder Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124774','2','4','2','39737','8','8','111','67','0','Boneshredder Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124775','2','4','2','39746','5','8','111','67','0','Boneshredder Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124776','2','4','2','39744','10','8','111','67','0','Boneshredder Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124777','2','4','2','35629','1','8','111','67','0','Boneshredder Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124778','2','4','2','39738','7','8','111','67','0','Boneshredder Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124779','2','4','2','26035','3','8','111','67','0','Boneshredder Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124780','2','4','2','3652','9','8','111','67','0','Boneshredder Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124781','2','4','2','39895','6','8','114','68','0','Murkblood Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124782','0','4','1','37332','10','7','66','61','0','Loosely Threaded Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124783','2','4','2','39896','8','8','114','68','0','Murkblood Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124784','2','4','2','9548','5','8','114','68','0','Murkblood Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124785','2','4','2','39897','10','8','114','68','0','Murkblood Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124786','2','4','2','40149','1','8','114','68','0','Murkblood Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124787','2','4','2','39898','7','8','114','68','0','Murkblood Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124788','2','4','2','39900','3','8','114','68','0','Murkblood Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124789','2','4','2','27706','9','8','114','68','0','Murkblood Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124790','2','4','2','16704','6','8','117','69','0','Expedition Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124791','2','4','2','16703','8','8','117','69','0','Expedition Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124792','2','4','2','16700','5','8','117','69','0','Expedition Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124793','2','4','2','16702','10','8','117','69','0','Expedition Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124794','2','4','2','18422','1','8','117','69','0','Expedition Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124795','2','4','2','16701','7','8','117','69','0','Expedition Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124796','2','4','2','16706','3','8','117','69','0','Expedition Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124797','2','4','2','9894','9','8','117','69','0','Expedition Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124798','2','4','2','16704','6','8','120','70','0','Dragonhawk Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124799','2','4','2','16703','8','8','120','70','0','Dragonhawk Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124800','2','4','2','16700','5','8','120','70','0','Dragonhawk Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124801','2','4','2','16702','10','8','120','70','0','Dragonhawk Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124802','2','4','2','42460','1','8','120','70','0','Dragonhawk Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124803','2','4','2','16701','7','8','120','70','0','Dragonhawk Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124804','2','4','2','16706','3','8','120','70','0','Dragonhawk Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124805','2','4','2','9894','9','8','120','70','0','Dragonhawk Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124806','2','4','3','40737','6','5','81','57','0','Unyielding Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124807','2','4','3','40734','8','5','81','57','0','Unyielding Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124808','2','4','3','40731','5','5','81','57','0','Unyielding Chain Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124809','2','4','3','40732','10','5','81','57','0','Unyielding Fists','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124810','2','4','3','40733','1','5','81','57','0','Unyielding Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124811','2','4','3','40735','7','5','81','57','0','Unyielding Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124812','2','4','3','40736','3','5','81','57','0','Unyielding Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124813','2','4','3','40730','9','5','81','57','0','Unyielding Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124814','2','4','3','40745','6','5','84','58','0','Felstone Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124815','2','4','3','40741','8','5','84','58','0','Felstone Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124816','2','4','3','40739','5','5','84','58','0','Felstone Chain Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124817','2','4','3','40740','10','5','84','58','0','Felstone Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124818','2','4','3','40742','1','5','84','58','0','Felstone Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124819','2','4','3','40129','7','5','84','58','0','Felstone Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124820','2','4','3','40744','3','5','84','58','0','Felstone Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124821','2','4','3','40738','9','5','84','58','0','Felstone Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124822','2','4','3','42104','6','5','87','59','0','Netherstalker Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124823','2','4','3','42107','8','5','87','59','0','Netherstalker Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124824','2','4','3','42105','5','5','87','59','0','Netherstalker Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124825','2','4','3','42106','10','5','87','59','0','Netherstalker Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124826','2','4','3','42103','1','5','87','59','0','Netherstalker Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124827','2','4','3','42108','7','5','87','59','0','Netherstalker Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124828','2','4','3','42109','3','5','87','59','0','Netherstalker Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124829','2','4','3','39787','9','5','87','59','0','Netherstalker Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124830','2','4','3','49703','6','5','90','60','0','Nexus-Strider Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124831','2','4','3','38627','8','5','90','60','0','Nexus-Strider Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124832','2','4','3','38608','5','5','90','60','0','Nexus-Strider Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124833','2','4','3','38626','10','5','90','60','0','Nexus-Strider Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124834','2','4','3','38628','1','5','90','60','0','Nexus-Strider Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124835','2','4','3','38629','7','5','90','60','0','Nexus-Strider Legwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124836','2','4','3','38630','3','5','90','60','0','Nexus-Strider Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124837','2','4','3','38625','9','5','90','60','0','Nexus-Strider Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124838','2','4','3','38851','6','5','93','61','0','Wrathfin Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124839','2','4','3','38845','8','5','93','61','0','Wrathfin Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124840','2','4','3','16725','5','5','93','61','0','Wrathfin Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124841','2','4','3','38844','10','5','93','61','0','Wrathfin Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124842','2','4','3','42201','1','5','93','61','0','Wrathfin Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124843','2','4','3','32337','7','5','93','61','0','Wrathfin Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124844','2','4','3','38848','3','5','93','61','0','Wrathfin Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124845','2','4','3','38843','9','5','93','61','0','Wrathfin Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124846','2','4','3','38873','6','5','96','62','0','Fenclaw Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124847','2','4','3','38868','8','5','96','62','0','Fenclaw Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124848','2','4','3','38865','5','5','96','62','0','Fenclaw Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124849','2','4','3','38867','10','5','96','62','0','Fenclaw Fists','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124850','2','4','3','41377','1','5','96','62','0','Fenclaw Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124851','2','4','3','38871','7','5','96','62','0','Fenclaw Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124852','2','4','3','38872','3','5','96','62','0','Fenclaw Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124853','2','4','3','38866','9','5','96','62','0','Fenclaw Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124854','2','4','3','25775','6','5','99','63','0','Marshcreeper Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124855','2','4','3','40252','8','5','99','63','0','Marshcreeper Sludgeboots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124856','2','4','3','13011','5','5','99','63','0','Marshcreeper Fen-Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124857','2','4','3','40254','10','5','99','63','0','Marshcreeper Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124858','2','4','3','40255','1','5','99','63','0','Marshcreeper Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124859','2','4','3','40256','7','5','99','63','0','Marshcreeper Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124860','2','4','3','40257','3','5','99','63','0','Marshcreeper Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124861','2','4','3','40258','9','5','99','63','0','Marshcreeper Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124862','2','4','3','39302','6','5','102','64','0','Blood Knight Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124863','2','4','3','39305','8','5','102','64','0','Blood Knight Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124864','2','4','3','39304','5','5','102','64','0','Blood Knight Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124865','2','4','3','39306','10','5','102','64','0','Blood Knight Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124866','2','4','3','44677','1','5','102','64','0','Blood Knight Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124867','2','4','3','39307','7','5','102','64','0','Blood Knight Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124868','2','4','3','39308','3','5','102','64','0','Blood Knight Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124869','2','4','3','39303','9','5','102','64','0','Blood Knight Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124870','2','4','3','39436','6','5','105','65','0','Ironspine Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124871','2','4','3','39442','8','5','105','65','0','Ironspine Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124872','2','4','3','11497','5','5','105','65','0','Ironspine Chain Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124873','2','4','3','39441','10','5','105','65','0','Ironspine Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124874','2','4','3','25791','1','5','105','65','0','Ironspine Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124875','2','4','3','39443','7','5','105','65','0','Ironspine Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124876','2','4','3','39445','3','5','105','65','0','Ironspine Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124877','2','4','3','28596','9','5','105','65','0','Ironspine Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124878','2','4','3','39513','6','5','108','66','0','Der\'izu Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124879','2','4','3','41953','8','5','108','66','0','Der\'izu Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124880','2','4','3','39514','5','5','108','66','0','Der\'izu Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124881','2','4','3','39515','10','5','108','66','0','Der\'izu Fists','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124882','2','4','3','42439','1','5','108','66','0','Der\'izu Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124883','2','4','3','39518','7','5','108','66','0','Der\'izu Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124884','2','4','3','39520','3','5','108','66','0','Der\'izu Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124885','2','4','3','13508','9','5','108','66','0','Der\'izu Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124886','2','4','3','39786','6','5','111','67','0','Skettis Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124887','2','4','3','39789','8','5','111','67','0','Skettis Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124888','2','4','3','39788','5','5','111','67','0','Skettis Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124889','2','4','3','39790','10','5','111','67','0','Skettis Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124890','2','4','3','39793','1','5','111','67','0','Skettis Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124891','2','4','3','39792','7','5','111','67','0','Skettis Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124892','2','4','3','39794','3','5','111','67','0','Skettis Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124893','2','4','3','39787','9','5','111','67','0','Skettis Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124894','2','4','3','39983','6','5','114','68','0','Sundered Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124895','2','4','3','39980','8','5','114','68','0','Sundered Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124896','2','4','3','39979','5','5','114','68','0','Sundered Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124897','2','4','3','39981','10','5','114','68','0','Sundered Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124898','2','4','3','39986','1','5','114','68','0','Sundered Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124899','2','4','3','39982','7','5','114','68','0','Sundered Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124900','2','4','3','39985','3','5','114','68','0','Sundered Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124901','2','4','3','39988','9','5','114','68','0','Tortured Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124902','2','4','3','39809','6','5','117','69','0','Talhide Stitched-Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124903','2','4','3','39812','8','5','117','69','0','Talhide Lined-Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124904','2','4','3','39810','5','5','117','69','0','Talhide Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124905','2','4','3','39814','10','5','117','69','0','Talhide Lined-Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124906','2','4','3','42461','1','5','117','69','0','Talhide Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124907','2','4','3','39704','7','5','117','69','0','Talhide Lined-Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124908','2','4','3','39815','3','5','117','69','0','Talhide Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124909','2','4','3','39813','9','5','117','69','0','Talhide Lined-Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124910','2','4','3','16704','6','5','120','70','0','Netherstorm Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124911','2','4','3','40183','8','5','120','70','0','Netherstorm Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124912','2','4','3','16700','5','5','120','70','0','Netherstorm Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124913','2','4','3','16702','10','5','120','70','0','Netherstorm Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124914','2','4','3','42462','1','5','120','70','0','Netherstorm Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124915','2','4','3','39171','7','5','120','70','0','Netherstorm Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124916','2','4','3','16706','3','5','120','70','0','Netherstorm Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124917','2','4','3','9894','9','5','120','70','0','Netherstorm Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124918','2','4','4','40748','6','6','81','57','0','Grimscale Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124919','2','4','4','40758','8','6','81','57','0','Grimscale Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124920','2','4','4','40746','5','6','81','57','0','Grimscale Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124921','2','4','4','40747','10','6','81','57','0','Grimscale Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124922','2','4','4','42214','1','6','81','57','0','Grimscale Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124923','2','4','4','40756','7','6','81','57','0','Grimscale Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124924','2','4','4','40757','3','6','81','57','0','Grimscale Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124925','2','4','4','40759','9','6','81','57','0','Grimscale Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124926','2','4','4','40761','6','6','84','58','0','Ango\'rosh Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124927','2','4','4','40765','8','6','84','58','0','Ango\'rosh Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124928','2','4','4','40762','5','6','84','58','0','Ango\'rosh Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124929','2','4','4','40763','10','6','84','58','0','Ango\'rosh Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124930','2','4','4','44883','1','6','84','58','0','Ango\'rosh Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124931','2','4','4','40764','7','6','84','58','0','Ango\'rosh Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124932','2','4','4','28403','3','6','84','58','0','Ango\'rosh Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124933','2','4','4','40766','9','6','84','58','0','Ango\'rosh Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124934','2','4','4','40767','6','6','87','59','0','Darkcrest Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124935','2','4','4','40774','8','6','87','59','0','Darkcrest Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124936','2','4','4','40769','5','6','87','59','0','Darkcrest Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124937','2','4','4','40770','10','6','87','59','0','Darkcrest Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124938','2','4','4','40771','1','6','87','59','0','Darkcrest Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124939','2','4','4','40772','7','6','87','59','0','Darkcrest Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124940','2','4','4','40773','3','6','87','59','0','Darkcrest Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124941','2','4','4','40768','9','6','87','59','0','Darkcrest Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124942','2','4','4','38357','6','6','90','60','0','Bloodscale Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124943','2','4','4','40352','8','6','90','60','0','Bloodscale Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124944','2','4','4','38359','5','6','90','60','0','Bloodscale Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124945','2','4','4','38360','10','6','90','60','0','Bloodscale Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124946','2','4','4','45182','1','6','90','60','0','Bloodscale Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124947','2','4','4','38362','7','6','90','60','0','Bloodscale Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124948','2','4','4','40303','3','6','90','60','0','Bloodscale Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124949','2','4','4','38358','9','6','90','60','0','Bloodscale Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124950','2','4','4','39174','6','6','93','61','0','Bogslayer Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124951','2','4','4','49767','8','6','93','61','0','Bogslayer Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124952','2','4','4','49764','5','6','93','61','0','Bogslayer Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124953','2','4','4','49765','10','6','93','61','0','Bogslayer Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124954','2','4','4','44684','1','6','93','61','0','Bogslayer Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124955','2','4','4','49766','7','6','93','61','0','Bogslayer Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124956','2','4','4','16106','3','6','93','61','0','Bogslayer Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124957','2','4','4','44766','9','6','93','61','0','Bogslayer Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124958','2','4','4','44274','6','6','96','62','0','Khan\'aish Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124959','2','4','4','44277','8','6','96','62','0','Khan\'aish Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124960','2','4','4','44273','5','6','96','62','0','Khan\'aish Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124961','2','4','4','44275','10','6','96','62','0','Khan\'aish Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124962','2','4','4','44278','1','6','96','62','0','Khan\'aish Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124963','2','4','4','44279','7','6','96','62','0','Khan\'aish Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124964','2','4','4','40303','3','6','96','62','0','Khan\'aish Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124965','2','4','4','44272','9','6','96','62','0','Khan\'aish Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124966','2','4','4','39803','6','6','99','63','0','Talonguard Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124967','2','4','4','39805','8','6','99','63','0','Talonguard Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124968','2','4','4','39800','5','6','99','63','0','Talonguard Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124969','2','4','4','39804','10','6','99','63','0','Talonguard Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124970','2','4','4','42215','1','6','99','63','0','Talonguard Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124971','2','4','4','39807','7','6','99','63','0','Talonguard Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124972','2','4','4','39802','3','6','99','63','0','Talonguard Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124973','2','4','4','39801','9','6','99','63','0','Talonguard Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124974','2','4','4','44280','6','6','102','64','0','Reaver Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124975','2','4','4','39384','8','6','102','64','0','Reaver Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124976','2','4','4','39377','5','6','102','64','0','Reaver Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124977','2','4','4','39382','10','6','102','64','0','Reaver Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124978','2','4','4','39386','1','6','102','64','0','Reaver Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124979','2','4','4','39385','7','6','102','64','0','Reaver Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124980','2','4','4','39379','3','6','102','64','0','Reaver Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124981','2','4','4','39378','9','6','102','64','0','Reaver Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124982','2','4','4','39410','6','6','105','65','0','Boulderfist Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124983','2','4','4','39414','8','6','105','65','0','Boulderfist Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124984','2','4','4','39409','5','6','105','65','0','Boulderfist Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124985','2','4','4','39412','10','6','105','65','0','Boulderfist Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124986','2','4','4','45181','1','6','105','65','0','Boulderfist Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124987','2','4','4','40772','7','6','105','65','0','Boulderfist Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124988','2','4','4','39416','3','6','105','65','0','Boulderfist Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124989','2','4','4','39411','9','6','105','65','0','Boulderfist Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124990','2','4','4','39612','6','6','108','66','0','Warmaul Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124991','2','4','4','39615','8','6','108','66','0','Warmaul Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124992','2','4','4','39613','5','6','108','66','0','Warmaul Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124993','2','4','4','39614','10','6','108','66','0','Warmaul Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124994','2','4','4','44686','1','6','108','66','0','Warmaul Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124995','2','4','4','39617','7','6','108','66','0','Warmaul Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124996','2','4','4','39620','3','6','108','66','0','Warmaul Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124997','2','4','4','39618','9','6','108','66','0','Warmaul Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124998','2','4','4','39643','6','6','111','67','0','Bloodfist Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('124999','2','4','4','39646','8','6','111','67','0','Bloodfist Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125000','2','4','4','39641','5','6','111','67','0','Bloodfist Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125001','2','4','4','39644','10','6','111','67','0','Bloodfist Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125002','2','4','4','45183','1','6','111','67','0','Bloodfist Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125003','2','4','4','39647','7','6','111','67','0','Bloodfist Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125004','2','4','4','39651','3','6','111','67','0','Bloodfist Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125005','2','4','4','39648','9','6','111','67','0','Bloodfist Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125006','2','4','4','39868','6','6','114','68','0','Conqueror\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125007','2','4','4','39869','8','6','114','68','0','Conqueror\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125008','2','4','4','39865','5','6','114','68','0','Conqueror\'s Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125009','2','4','4','39866','10','6','114','68','0','Conqueror\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125010','2','4','4','39873','1','6','114','68','0','Conqueror\'s Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125011','2','4','4','39870','7','6','114','68','0','Conqueror\'s Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125012','2','4','4','39867','3','6','114','68','0','Conqueror\'s Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125013','2','4','4','39871','9','6','114','68','0','Conqueror\'s Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125014','2','4','4','44334','6','6','117','69','0','Shattered Hand Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125015','2','4','4','44340','8','6','117','69','0','Shattered Hand Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125016','2','4','4','40688','5','6','117','69','0','Shattered Hand Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125017','2','4','4','44336','10','6','117','69','0','Shattered Hand Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125018','2','4','4','48246','1','6','117','69','0','Shattered Hand Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125019','2','4','4','44279','7','6','117','69','0','Shattered Hand Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125020','2','4','4','44335','3','6','117','69','0','Shattered Hand Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125021','2','4','4','39170','9','6','117','69','0','Shattered Hand Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125022','2','4','4','44346','6','6','120','70','0','Warlord\'s Iron-Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125023','2','4','4','44349','8','6','120','70','0','Warlord\'s Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125024','2','4','4','44341','5','6','120','70','0','Warlord\'s Iron-Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125025','2','4','4','44345','10','6','120','70','0','Warlord\'s Iron-Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125026','2','4','4','42390','1','6','120','70','0','Warlord\'s Iron-Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125027','2','4','4','44347','7','6','120','70','0','Warlord\'s Iron-Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125028','2','4','4','39651','3','6','120','70','0','Warlord\'s Iron-Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125029','2','4','4','44348','9','6','120','70','0','Warlord\'s Iron-Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125030','2','4','1','40775','16','7','81','57','0','Silky Velvet Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125031','2','4','1','40776','16','7','84','58','0','Silvermoon Royal Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125032','2','4','1','40777','16','7','87','59','0','Hellfire Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125033','2','4','1','38589','16','7','90','60','0','Scavenger\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125034','2','4','1','38665','16','7','93','61','0','Elementalist Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125035','2','4','1','26027','16','7','96','62','0','Silver-Lined Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125036','2','4','1','27974','16','7','99','63','0','Boulderfist Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125037','2','4','1','39391','16','7','102','64','0','Patched Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125038','2','4','1','30689','16','7','105','65','0','Forest Shroud','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125039','2','4','1','29630','16','7','108','66','0','Farseer Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125040','2','4','1','25958','16','7','111','67','0','Murkblood Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125041','2','4','1','15236','16','7','114','68','0','Ambusher\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125042','2','4','1','16707','16','7','117','69','0','Nether Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125043','2','4','1','16707','16','7','120','70','0','Amber Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125044','2','4','0','31655','11','3','81','57','0','Rubellite Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125045','2','4','0','24569','11','3','84','58','0','Azurite Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125046','2','4','0','31616','11','3','87','59','0','Spined Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125047','2','4','0','9839','11','3','90','60','0','Tourmaline Loop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125048','2','4','0','23629','11','3','93','61','0','Smoky Quartz Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125049','2','4','0','24569','11','3','96','62','0','Scheelite Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125050','2','4','0','23608','11','3','99','63','0','Moldavite Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125051','2','4','0','28831','11','3','102','64','0','Blue Topaz Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125052','2','4','0','31616','11','3','105','65','0','Hauyne Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125053','2','4','0','23728','11','3','108','66','0','Lazuli Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125054','2','4','0','9832','11','3','111','67','0','Sodalite Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125055','2','4','0','24569','11','3','114','68','0','Alexandrite Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125056','2','4','0','9834','11','3','117','69','0','Almandine Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125057','2','4','0','9834','11','3','120','70','0','Amber Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125058','2','4','0','31889','2','3','81','57','0','Anglesite Choker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125059','2','4','0','31604','2','3','84','58','0','Fire Opal Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125060','2','4','0','38348','2','3','87','59','0','Sunstone Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125061','2','4','0','9657','2','3','90','60','0','Hiddenite Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125062','2','4','0','38809','2','3','93','61','0','Zircon Amulet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125063','2','4','0','39000','2','3','96','62','0','Multi-Colored Beads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125064','2','4','0','39023','2','3','99','63','0','Amethyst Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125065','2','4','0','39390','2','3','102','64','0','Turquoise Brooch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125066','2','4','0','39023','2','3','105','65','0','Pink Sapphire Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125067','2','4','0','6539','2','3','108','66','0','Diopside Beads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125068','2','4','0','9857','2','3','111','67','0','Kunzite Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125069','2','4','0','39877','2','3','114','68','0','Epidote Stone Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125070','2','4','0','4841','2','3','117','69','0','Coral Beads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125071','2','4','0','4841','2','3','120','70','0','Tanzanite Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125072','2','4','6','26046','14','1','81','57','4','Northman\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125073','2','4','6','40781','14','1','84','58','4','Emperor Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125074','2','4','6','40782','14','1','87','59','4','Telaari Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125075','2','4','6','27222','14','1','90','60','4','Hardened Steel Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125076','2','4','6','38728','14','1','93','61','4','Screaming Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125077','2','4','6','4743','14','1','96','62','4','Modani War-Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125078','2','4','6','39044','14','1','99','63','4','Zangari Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125079','2','4','6','33305','14','1','102','64','4','Outland Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125080','2','4','6','38728','14','1','105','65','4','Spell-Breaker Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125081','2','4','6','38728','14','1','108','66','4','Bayeaux Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125082','2','4','6','20974','14','1','111','67','4','Fel-Iron Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125083','2','4','6','3931','14','1','114','68','4','Smouldering Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125084','2','4','6','20900','14','1','117','69','4','Zeth\'Gor Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125085','2','4','6','23835','14','1','120','70','4','Dragonscale Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125086','2','4','0','41455','23','7','81','57','7','Dreamseeker Dandelion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125087','2','4','0','40785','23','3','84','58','7','Bleeding Eye','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125088','2','4','0','40786','23','2','87','59','7','Laughing Skull Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125089','2','4','0','41458','23','2','90','60','7','Supplicant\'s Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125090','2','4','0','38729','23','3','93','61','7','Slavehandler Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125091','2','4','0','38999','23','2','96','62','7','Mistyreed Torch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125092','2','4','0','39037','23','3','99','63','7','Consortium Crystal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125093','2','4','0','39339','23','3','102','64','7','Shadow Council Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125094','2','4','0','41457','23','3','105','65','7','Eldr\'naan Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125095','2','4','0','39472','23','3','108','66','7','Archmage Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125096','2','4','0','38729','23','3','111','67','7','Elementalist Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125097','2','4','0','39863','23','3','114','68','7','Astralaan Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125098','2','4','0','22923','23','3','117','69','7','Tuurik Torch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125099','2','4','0','22923','23','3','120','70','7','Draenei Crystal Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125100','2','2','15','40787','13','1','81','57','3','Liege Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125101','2','2','15','40788','13','1','84','58','3','Cross Pommel Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125102','2','2','15','40789','13','1','87','59','3','Jaedenis Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125103','2','2','15','38457','13','1','90','60','3','Nightstalker Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125104','2','2','15','38633','13','1','93','61','3','Anzac Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125105','2','2','15','38853','13','1','96','62','3','Arachnid Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125106','2','2','15','39029','13','1','99','63','3','Cobra Shortblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125107','2','2','15','20273','13','1','102','64','3','Draconic Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125108','2','2','15','39423','13','1','105','65','3','Grave Keeper Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125109','2','2','15','39604','13','1','108','66','3','Moon Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125110','2','2','15','40711','13','1','111','67','3','Sharp Bowie Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125111','2','2','15','39892','13','1','114','68','3','Lionhead Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125112','2','2','15','40182','13','1','117','69','3','Fel Ripper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125113','2','2','15','41469','13','1','120','70','3','Phantom Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125114','2','2','4','39004','13','2','81','57','3','Doomsayer\'s Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125115','2','2','4','5205','13','2','84','58','3','Riversong Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125116','2','2','4','40791','13','2','87','59','3','Pneumatic War Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125117','2','2','4','38418','13','2','90','60','3','Flanged Battle Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125118','2','2','4','5199','13','2','93','61','3','Battle Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125119','2','2','4','38854','13','2','96','62','3','Silvermoon War-Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125120','2','2','4','39045','13','2','99','63','3','Rockshard Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125121','2','2','4','5205','13','2','102','64','3','Dreaded Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125122','2','2','4','39427','13','2','105','65','3','Khorium Plated Bludgeon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125123','2','2','4','39488','13','2','108','66','3','Boneshredder Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125124','2','2','4','39750','13','2','111','67','3','Footman Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125125','2','2','4','39610','13','2','114','68','3','Retro-Spike Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125126','2','2','4','22118','13','2','117','69','3','Anvilmar Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125127','2','2','4','40823','13','2','120','70','3','Knight\'s War Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125128','2','2','5','40792','17','2','81','57','1','Shining Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125129','2','2','5','19622','17','2','84','58','1','Giant\'s Leg Bone','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125130','2','2','5','44768','17','2','87','59','1','Gronn-Bone Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125131','2','2','5','38423','17','2','90','60','1','Hateful Bludgeon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125132','2','2','5','38726','17','2','93','61','1','Thrallmar War Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125133','2','2','5','39001','17','2','96','62','1','Stormwind Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125134','2','2','5','39255','17','2','99','63','1','Highmountain Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125135','2','2','5','39311','17','2','102','64','1','Clefthoof Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125136','2','2','5','39408','17','2','105','65','1','Blood Stained Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125137','2','2','5','39527','17','2','108','66','1','Draenethyst Mallet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125138','2','2','5','39633','17','2','111','67','1','Blood Knight Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125139','2','2','5','39861','17','2','114','68','1','Algaz Battle Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125140','2','2','5','40824','17','2','117','69','1','Commanding Mallet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125141','2','2','5','41952','17','2','120','70','1','Halaani Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125142','2','2','7','40794','13','1','81','57','3','Telaari Longblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125143','2','2','7','7526','13','1','84','58','3','Silver Hand Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125144','2','2','7','40795','13','1','87','59','3','Skettis Curved Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125145','2','2','7','4802','13','1','90','60','3','Wisdom Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125146','2','2','7','38635','13','1','93','61','3','Light-Etched Longsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125147','2','2','7','38863','13','1','96','62','3','Skystrider Katana','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125148','2','2','7','39025','13','1','99','63','3','Bone Collector Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125149','2','2','7','39310','13','1','102','64','3','Baron\'s Broadsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125150','2','2','7','7485','13','1','105','65','3','Honor Hold Saber','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125151','2','2','7','39474','13','1','108','66','3','Assassins\' Short Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125152','2','2','7','39752','13','1','111','67','3','Howling Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125153','2','2','7','39890','13','1','114','68','3','Gladiator Greatblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125154','2','2','7','41950','13','1','117','69','3','Blood Groove Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125155','2','2','7','40686','13','1','120','70','3','Iron Skull Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125156','2','2','8','40796','17','1','81','57','1','Royal Crusader Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125157','2','2','8','44329','17','1','84','58','1','Serpentlord Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125158','2','2','8','40798','17','1','87','59','1','Skeletal Broadsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125159','2','2','8','38606','17','1','90','60','1','Thunderstrike Falchion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125160','2','2','8','38735','17','1','93','61','1','Vengeance Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125161','2','2','8','38864','17','1','96','62','1','Dragon Wing Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125162','2','2','8','39039','17','1','99','63','1','Darkened Broadsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125163','2','2','8','39329','17','1','102','64','1','Elexorien Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125164','2','2','8','39428','17','1','105','65','1','Crude Umbrafen Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125165','2','2','8','39491','17','1','108','66','1','Boulderfist Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125166','2','2','8','39758','17','1','111','67','1','Mok\'Nathal Warblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125167','2','2','8','39906','17','1','114','68','1','Nethersteel Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125168','2','2','8','40691','17','1','117','69','1','Sha\'tari Longsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125169','2','2','8','44330','17','1','120','70','1','Fel Orc Brute Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125170','2','2','10','40799','17','2','81','57','2','Rattan Bo Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125171','2','2','10','39172','17','2','84','58','2','Straight Hardwood Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125172','2','2','10','38347','17','2','87','59','2','Jinbali Warp-Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125173','2','2','10','5074','17','2','90','60','2','Master\'s Bo Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125174','2','2','10','38713','17','2','93','61','2','Hanbo Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125175','2','2','10','38995','17','2','96','62','2','Demoniac Longstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125176','2','2','10','39105','17','2','99','63','2','Taiji Quarterstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125177','2','2','10','5120','17','2','102','64','2','Tanjo Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125178','2','2','10','4995','17','2','105','65','2','Bata Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125179','2','2','10','5111','17','2','108','66','2','Nguni Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125180','2','2','10','39748','17','2','111','67','2','Calenda Fighting Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125181','2','2','10','39987','17','2','114','68','2','Tapered Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125182','2','2','10','38347','17','2','117','69','2','Crystal-Etched Warstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125183','2','2','10','21514','17','2','120','70','2','Voodoo Hex-Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125184','2','2','13','40801','21','1','81','57','7','Ravager Claws','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125185','2','2','13','40802','22','1','84','58','7','Thrasher Blades','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125186','2','2','13','40803','21','1','87','59','7','Vampiric Handscythes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125187','2','2','13','40431','22','1','90','60','7','Shekketh Talons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125188','2','2','13','8379','21','1','93','61','7','Spleenripper Claws','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125189','2','2','13','30572','22','1','96','62','7','Ironspine Point','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125190','2','2','13','40432','21','1','99','63','7','Wight\'s Claws','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125191','2','2','13','40434','22','1','102','64','7','Dread Fangs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125192','2','2','13','40177','13','1','105','65','7','Gutrippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125193','2','2','13','40178','13','1','108','66','7','Deathclaw Talons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125194','2','2','13','40179','13','1','111','67','7','Serpent\'s Fangs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125195','2','2','13','40180','13','1','114','68','7','Diamond Tipped Claws','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125196','2','2','13','40426','21','1','117','69','7','Boneshredder Claws','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125197','2','2','13','40427','22','1','120','70','7','Razor Scythes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125198','2','2','0','40804','13','1','81','57','3','Karaborian Battle Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125199','2','2','0','40805','13','1','84','58','3','Knight\'s War Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125200','2','2','0','40806','13','1','87','59','3','Jagged Broadaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125201','2','2','0','14029','13','1','90','60','3','Reaver\'s Sickle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125202','2','2','0','38723','13','1','93','61','3','Kingly Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125203','2','2','0','38997','13','1','96','62','3','Chipped Woodchopper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125204','2','2','0','39739','13','1','99','63','3','Colossal War Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125205','2','2','0','39387','13','1','102','64','3','Silvermoon Crescent Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125206','2','2','0','39406','13','1','105','65','3','Berserker Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125207','2','2','0','39608','13','1','108','66','3','Shadowmoon Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125208','2','2','0','39632','13','1','111','67','3','Bladespire Broadaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125209','2','2','0','39862','13','1','114','68','3','Amani Tomahawk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125210','2','2','0','40313','13','1','117','69','3','Double-Bladed Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125211','2','2','0','44332','13','1','120','70','3','Rockbiter Cutter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125212','2','2','1','40295','17','1','81','57','1','Lucky Strike Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125213','2','2','1','40294','17','1','84','58','1','Fel-Touched Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125214','2','2','1','40296','17','1','87','59','1','Mok\'Nathal Battleaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125215','2','2','1','40299','17','1','90','60','1','Spiked Battle Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125216','2','2','1','40297','17','1','93','61','1','Ogre Splitting Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125217','2','2','1','40300','17','1','96','62','1','Sundering Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125218','2','2','1','40298','17','1','99','63','1','Silver-Edged Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125219','2','2','1','40939','17','1','102','64','1','Rending Claw','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125220','2','2','1','39421','17','1','105','65','1','Glorious War-Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125221','2','2','1','39603','17','1','108','66','1','Ghostly Battle Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125222','2','2','1','39749','17','1','111','67','1','Ceremonial Slayer\'s Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125223','2','2','1','40302','17','1','114','68','1','Windcaller Hatchet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125224','2','2','1','40938','17','1','117','69','1','Slavemaster Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125225','2','2','1','40940','17','1','120','70','1','Deepforge Broadaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125226','2','2','6','40807','17','1','81','57','1','War Scythe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125227','2','2','6','40808','17','1','84','58','1','Sha\'tari Longspear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125228','2','2','6','40809','17','1','87','59','1','Halberd Polearm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125229','2','2','6','38461','17','1','90','60','1','Partisan Polearm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125230','2','2','6','38742','17','1','93','61','1','Voulge Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125231','2','2','6','39003','17','1','96','62','1','Fel-Wrought Halberd','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125232','2','2','6','39258','17','1','99','63','1','War Glaive','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125233','2','2','6','39287','17','1','102','64','1','Battle Scythe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125234','2','2','6','39425','17','1','105','65','1','Telaari Polearm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125235','2','2','6','39531','17','1','108','66','1','Ethereal-Etched Glaive','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125236','2','2','6','39751','17','1','111','67','1','Grim Scythe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125237','2','2','6','39894','17','1','114','68','1','Nether Trident','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125238','2','2','6','40401','17','1','117','69','1','Hellfire War Spear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125239','2','2','6','40825','17','1','120','70','1','Legend\'s Glaive','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125240','2','2','2','44659','15','2','81','57','0','Azerothian Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125241','2','2','2','2786','15','2','84','58','0','Ashenvale Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125242','2','2','2','44682','15','2','87','59','0','Telaari Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125243','2','2','2','38632','15','2','90','60','0','Windtalker Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125244','2','2','2','6233','15','2','93','61','0','Viper Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125245','2','2','2','39007','15','2','96','62','0','Razorsong Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125246','2','2','2','39040','15','2','99','63','0','Thalassian Compound Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125247','2','2','2','39331','15','2','102','64','0','Expert\'s Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125248','2','2','2','39431','15','2','105','65','0','Talbuk Hunting Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125249','2','2','2','39607','15','2','108','66','0','Ranger\'s Recurved Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125250','2','2','2','39775','15','2','111','67','0','Rocslayer Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125251','2','2','2','39975','15','2','114','68','0','Orc Flatbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125252','2','2','2','2786','15','2','117','69','0','Dream Catcher Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125253','2','2','2','2786','15','2','120','70','0','Windspear Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125254','2','2','18','11247','26','2','81','57','0','Tower Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125255','2','2','18','42482','26','2','84','58','0','Ram\'s Head Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125256','2','2','18','10671','26','2','87','59','0','Stronghold Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125257','2','2','18','38419','26','2','90','60','0','Citadel Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125258','2','2','18','38651','26','2','93','61','0','Repeater Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125259','2','2','18','39002','26','2','96','62','0','Collapsible Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125260','2','2','18','38651','26','2','99','63','0','Archer\'s Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125261','2','2','18','39333','26','2','102','64','0','Mighty Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125262','2','2','18','39434','26','2','105','65','0','Battle Damaged Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125263','2','2','18','39434','26','2','108','66','0','Assassins\' Silent Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125264','2','2','18','39773','26','2','111','67','0','Pocket Ballista','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125265','2','2','18','39864','26','2','114','68','0','Barreled Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125266','2','2','18','10671','26','2','117','69','0','Well-Balanced Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125267','2','2','18','10671','26','2','120','70','0','Rampant Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125268','2','2','3','44662','26','1','81','57','0','Lead-Slug Shotgun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125269','2','2','3','44660','26','1','84','58','0','Longbeard Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125270','2','2','3','41603','26','1','87','59','0','Gnomish Assault Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125271','2','2','3','44564','26','1','90','60','0','Croc-Hunter\'s Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125272','2','2','3','44663','26','1','93','61','0','PC-54 Shotgun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125273','2','2','3','39005','26','1','96','62','0','Sawed-Off Shotgun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125274','2','2','3','48592','26','1','99','63','0','Cliffjumper Shotgun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125275','2','2','3','44661','26','1','102','64','0','Dragonbreath Musket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125276','2','2','3','44665','26','1','105','65','0','Tauren Runed Musket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125277','2','2','3','44664','26','1','108','66','0','Sporting Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125278','2','2','3','2792','26','1','111','67','0','Nesingwary Longrifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125279','2','2','3','13060','26','1','114','68','0','Sen\'jin Longrifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125280','2','2','3','39087','26','1','117','69','0','Game Hunter Musket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125281','2','2','3','36494','26','1','120','70','0','Big-Boar Battle Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125282','2','2','19','40815','26','2','81','57','0','Mahogany Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125283','2','2','19','40816','26','2','84','58','0','Crystallized Ebony Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125284','2','2','19','40144','26','2','87','59','0','Purpleheart Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125285','2','2','19','40131','26','2','90','60','0','Bloodwood Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125286','2','2','19','40146','26','2','93','61','0','Yew Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125287','2','2','19','40139','26','2','96','62','0','Magician\'s Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125288','2','2','19','40133','26','2','99','63','0','Conjurer\'s Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125289','2','2','19','40155','26','2','102','64','0','Majestic Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125290','2','2','19','40145','26','2','105','65','0','Solitaire Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125291','2','2','19','40143','26','2','108','66','0','Nobility Torch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125292','2','2','19','40142','26','2','111','67','0','Mechano-Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125293','2','2','19','40136','26','2','114','68','0','Draenethyst Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125294','2','2','19','40156','26','2','117','69','0','Dragonscale Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125295','2','2','19','44333','26','2','120','70','0','Flawless Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125296','2','2','15','40214','21','1','81','57','3','Absorption Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125297','2','2','15','40817','21','1','84','58','3','Tuning Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125298','2','2','15','40818','21','1','87','59','3','Combustion Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125299','2','2','15','38601','21','1','90','60','3','Siphoning Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125300','2','2','15','38724','21','1','93','61','3','Lightning Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125301','2','2','15','39006','21','1','96','62','3','Shattering Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125302','2','2','15','39101','21','1','99','63','3','Soul-Drain Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125303','2','2','15','39282','21','1','102','64','3','Amplifying Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125304','2','2','15','39419','21','1','105','65','3','Destructo-Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125305','2','2','15','39530','21','1','108','66','3','Elemental Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125306','2','2','15','39769','21','1','111','67','3','Permafrost Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125307','2','2','15','39978','21','1','114','68','3','Shadow Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125308','2','2','15','41471','21','1','117','69','3','Thunder Spike','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125309','2','2','15','40158','21','1','120','70','3','Warpdagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125310','2','2','4','6207','21','2','81','57','3','Naaru Lightmace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125311','2','2','4','39427','21','2','84','58','3','Revitalizing Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125312','2','2','4','38346','21','2','87','59','3','Glorious Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125313','2','2','4','24033','21','2','90','60','3','Cold-Iron Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125314','2','2','4','16498','21','2','93','61','3','Ceremonial Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125315','2','2','4','39004','21','2','96','62','3','Restorative Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125316','2','2','4','39102','21','2','99','63','3','Spirit-Clad Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125317','2','2','4','39389','21','2','102','64','3','Lesser Sledgemace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125318','2','2','4','39394','21','2','105','65','3','Ancestral Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125319','2','2','4','39611','21','2','108','66','3','Tranquility Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125320','2','2','4','39774','21','2','111','67','3','Queen\'s Insignia','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125321','2','2','4','39875','21','2','114','68','3','Divine Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125322','2','2','4','40159','21','2','117','69','3','Lordly Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125323','2','2','4','41637','21','2','120','70','3','Ascendant\'s Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125324','2','2','10','35363','17','2','81','57','2','Angerstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125325','2','2','10','20373','17','2','84','58','2','Brutal Scar-Limb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125326','2','2','10','38345','17','2','87','59','2','Primal Lore-Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125327','2','2','10','35363','17','2','90','60','2','Frenzied Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125328','2','2','10','38666','17','2','93','61','2','Faerie-Kind Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125329','2','2','10','34939','17','2','96','62','2','Tranquility Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125330','2','2','10','39104','17','2','99','63','2','Starshine Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125331','2','2','10','39392','17','2','102','64','2','Vengeance Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125332','2','2','10','39429','17','2','105','65','2','Reflective Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125333','2','2','10','22145','17','2','108','66','2','Purification Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125334','2','2','10','39753','17','2','111','67','2','Intimidating Greatstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125335','2','2','10','39878','17','2','114','68','2','Feral Warp-Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125336','2','2','10','21968','17','2','117','69','2','Splintering Greatstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125337','2','2','10','44331','17','2','120','70','2','Swarming Sting-Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125338','0','4','1','37333','7','7','66','61','0','Loosely Threaded Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125339','0','4','1','37334','3','7','66','61','0','Loosely Threaded Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125340','0','4','1','37335','5','7','66','61','0','Loosely Threaded Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125341','0','4','1','37327','6','7','72','67','0','Dilapidated Cloth Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125342','0','4','1','37328','8','7','72','67','0','Dilapidated Cloth Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125343','0','4','1','37329','9','7','72','67','0','Dilapidated Cloth Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125344','0','4','1','37332','10','7','72','67','0','Dilapidated Cloth Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125345','0','4','1','42766','1','7','72','67','0','Dilapidated Cloth Hat','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125346','0','4','1','43405','7','7','72','67','0','Dilapidated Cloth Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125347','0','4','1','37334','3','7','72','67','0','Dilapidated Cloth Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125348','0','4','1','37335','5','7','72','67','0','Dilapidated Cloth Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125349','0','4','2','14935','5','8','66','61','0','Moldy Leather Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125350','0','4','2','37336','6','8','66','61','0','Moldy Leather Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125351','0','4','2','37337','8','8','66','61','0','Moldy Leather Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125352','0','4','2','37338','9','8','66','61','0','Moldy Leather Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125353','0','4','2','27946','10','8','66','61','0','Moldy Leather Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125354','0','4','2','37339','1','8','66','61','0','Moldy Leather Helmet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125355','0','4','2','27947','7','8','66','61','0','Moldy Leather Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125356','0','4','2','37340','3','8','66','61','0','Moldy Leather Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125357','0','4','2','14935','5','8','72','67','0','Decaying Leather Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125358','0','4','2','37336','6','8','72','67','0','Decaying Leather Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125359','0','4','2','37337','8','8','72','67','0','Decaying Leather Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125360','0','4','2','37338','9','8','72','67','0','Decaying Leather Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125361','0','4','2','27946','10','8','72','67','0','Decaying Leather Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125362','0','4','2','37339','1','8','72','67','0','Decaying Leather Helmet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125363','0','4','2','27947','7','8','72','67','0','Decaying Leather Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125364','0','4','2','37340','3','8','72','67','0','Decaying Leather Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125365','0','4','3','37341','5','5','66','61','0','Eroded Mail Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125366','0','4','3','37342','6','5','66','61','0','Eroded Mail Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125367','0','4','3','6876','8','5','66','61','0','Eroded Mail Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125368','0','4','3','6915','9','5','66','61','0','Eroded Mail Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125369','0','4','3','28391','1','5','66','61','0','Eroded Mail Circlet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125370','0','4','3','37343','10','5','66','61','0','Eroded Mail Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125371','0','4','3','3043','7','5','66','61','0','Eroded Mail Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125372','0','4','3','37344','3','5','66','61','0','Eroded Mail Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125373','0','4','3','37341','5','5','72','67','0','Corroded Mail Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125374','0','4','3','37342','6','5','72','67','0','Corroded Mail Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125375','0','4','3','6876','8','5','72','67','0','Corroded Mail Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125376','0','4','3','6915','9','5','72','67','0','Corroded Mail Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125377','0','4','3','28391','1','5','72','67','0','Corroded Mail Circlet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125378','0','4','3','37343','10','5','72','67','0','Corroded Mail Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125379','0','4','3','3043','7','5','72','67','0','Corroded Mail Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125380','0','4','3','37344','3','5','72','67','0','Corroded Mail Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125381','0','4','4','37348','6','6','66','61','0','Tarnished Plate Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125382','0','4','4','37349','8','6','66','61','0','Tarnished Plate Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125383','0','4','4','37350','9','6','66','61','0','Tarnished Plate Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125384','0','4','4','25846','5','6','66','61','0','Tarnished Plate Chestpiece','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125385','0','4','4','37351','10','6','66','61','0','Tarnished Plate Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125386','0','4','4','42216','1','5','66','61','0','Tarnished Plate Helmet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125387','0','4','4','37353','7','6','66','61','0','Tarnished Plate Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125388','0','4','4','37355','3','6','66','61','0','Tarnished Plate Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125389','0','4','4','37348','6','6','72','67','0','Deteriorating Plate Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125390','0','4','4','37349','8','6','72','67','0','Deteriorating Plate Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125391','0','4','4','37350','9','6','72','67','0','Deteriorating Plate Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125392','0','4','4','25846','5','6','72','67','0','Deteriorating Plate Chestpiece','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125393','0','4','4','37351','10','6','72','67','0','Deteriorating Plate Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125394','0','4','4','42216','1','5','72','67','0','Deteriorating Plate Helmet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125395','0','4','4','37353','7','6','72','67','0','Deteriorating Plate Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125396','0','4','4','37355','3','6','72','67','0','Deteriorating Plate Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125397','0','2','0','8478','21','1','69','64','3','Eroded Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125398','0','2','1','19374','17','1','69','64','1','Stone Reaper','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125399','0','2','7','20225','21','1','69','64','3','Deteriorating Blade','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125400','0','2','8','20195','17','1','69','64','1','Tarnished Claymore','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125401','0','2','4','19716','21','2','69','64','3','Corroded Mace','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125402','0','2','5','28691','17','2','69','64','1','The Stoppable Force','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125403','0','2','15','4119','13','1','69','64','3','Sharpened Stilleto','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125404','0','2','10','20309','17','2','69','64','2','Dense War Staff','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125405','0','2','3','20721','26','1','69','64','0','Rusted Musket','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125406','0','2','2','20550','15','2','69','64','0','Broken Longbow','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125407','0','4','6','18472','14','1','69','64','4','The Movable Object','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125438','2','4','0','6539','2','3','18','13','0','Malachite Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125439','2','4','0','29697','11','1','18','13','0','Tigerseye Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125464','3','2','6','37410','17','1','27','0','1','Blood-Tempered Ranseur','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125478','2','4','4','37441','10','6','93','0','0','Defender\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125479','2','4','3','37440','8','5','93','0','0','Boots of the Earthcaller','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125480','2','4','1','37437','6','7','93','0','0','Wastewalker\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125481','2','4','4','37444','10','6','93','0','0','Sunstrider\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125482','2','4','3','37438','8','5','93','0','0','Venn\'ren\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125483','2','4','1','37436','6','7','93','0','0','Fine Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125484','2','4','0','39682','2','7','93','0','0','Telhamat Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125485','2','4','0','39681','11','6','93','0','0','Amaan\'s Signet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125486','2','4','2','37433','9','8','93','0','0','Demonslayer\'s Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125487','2','4','0','32297','2','3','93','0','0','Wind Dancer\'s Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125488','2','4','0','37430','11','3','93','0','0','Signet of Aeranas','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125489','2','4','1','37429','16','7','93','0','0','Windtalker\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125492','2','2','4','23267','21','2','93','0','3','Earthcaller\'s Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125494','2','2','10','28580','17','2','93','0','2','Totemic Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125495','2','2','15','20299','13','1','93','0','3','Wolfrider\'s Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125496','2','2','2','28309','15','2','93','0','0','Mag\'har Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125499','2','4','0','9834','11','-1','93','0','0','Felblood Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125500','2','4','0','9858','2','3','93','0','0','Felforce Medallion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125501','2','4','1','27721','16','7','93','0','0','Lost Anchorite\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125502','2','4','4','37445','10','6','90','0','0','Lightbearer\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125503','2','4','1','37446','10','7','90','0','0','Flamehandler\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125504','2','4','2','37447','6','8','90','0','0','Pilgrim\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125505','2','4','0','31906','11','3','90','0','0','Carinda\'s Wedding Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125506','2','4','3','37448','1','5','93','0','0','Vindicator\'s Chain Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125507','2','4','2','37449','7','8','93','0','0','Leggings of Telhamat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125508','2','4','2','37450','5','8','93','0','0','Omenai Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125510','2','4','1','37451','20','7','93','0','0','Ceremonial Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125511','2','4','4','27938','7','6','93','0','0','Thunderforge Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125512','2','4','3','37454','5','5','93','0','0','Tribal Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125513','2','4','2','41854','1','8','93','0','0','Clefthoof Hide Mask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125514','2','4','3','27160','3','5','87','0','0','Ikeyen\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125515','2','4','2','37457','8','8','87','0','0','Mud Encrusted Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125516','2','4','1','37459','8','7','87','0','0','Ikeyen\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125517','2','4','0','9859','2','3','93','0','0','Preserver\'s Medallion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125518','2','4','2','37460','7','8','93','0','0','Explorer\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125519','2','2','4','28262','13','2','93','0','3','Warden\'s Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125522','2','4','4','27940','3','6','93','0','0','Marshstrider\'s Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125523','2','4','3','37472','10','5','93','0','0','Windcaller\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125524','2','4','2','37473','8','8','93','0','0','Cenarion Expedition Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125525','2','4','1','37474','3','7','96','0','0','Zangar Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125530','2','4','4','44327','1','6','96','0','0','Helm of Natural Purity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125534','2','4','3','37476','6','5','96','0','0','Marsh Survivalist\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125536','3','2','4','19735','21','2','94','0','3','Sporeggar Smasher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125537','3','2','1','28207','17','1','94','0','1','Hewing Axe of the Marsh','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125538','3','2','13','40181','13','1','94','0','7','Sporeling Claw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125540','3','4','1','40130','16','7','94','0','0','Dark Cloak of the Marsh','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125541','3','4','0','28733','11','5','94','0','0','Cenarion Ring of Casting','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125542','2','4','0','9837','11','5','96','0','0','Lucky Circle of the Fool','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125543','2','2','15','16130','21','1','105','0','3','Talbuk Sticker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125544','2','2','3','28557','26','1','105','0','0','Zerid\'s Vintage Musket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125545','2','2','15','6448','13','1','105','0','3','Talbuk Dirk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125549','1','4','0','37484','19','-1','60','0','0','Blood Knight Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125553','1','2','10','20446','17','2','5','0','2','Exodar Staff','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125556','2','4','3','37490','5','5','102','0','0','Oversized Ogre Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125557','2','4','4','37491','3','6','102','0','0','Salvaged Ango\'rosh Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125558','2','4','1','37492','1','7','102','0','0','Ango\'rosh Souleater\'s Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125559','2','4','2','37493','5','8','79','0','0','Lo\'ap\'s Tunic of Muck Diving','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125560','2','4','3','37494','3','5','79','0','0','Lo\'ap\'s Muck Diving Pads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125561','2','4','4','45985','8','-1','79','0','0','Muck-ridden Galoshes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125562','3','4','0','15420','2','3','100','0','0','Earthen Mark of Razing','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125563','3','4','0','32395','2','3','100','0','0','Earthen Mark of Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125564','3','4','0','9657','2','3','100','0','0','Earthen Mark of Health','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125565','2','4','2','37496','3','8','105','0','0','Spaulders of the Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125566','2','4','4','37498','10','6','105','0','0','Judicator\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125567','2','4','3','37500','6','5','105','0','0','Cord of the Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125568','2','4','3','37501','7','5','105','0','0','Warcaster\'s Scaled Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125569','2','4','4','27427','5','6','105','0','0','Murkblood Avenger\'s Chestplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125570','2','4','2','39364','1','8','105','0','0','Melia\'s Lustrous Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125574','2','4','1','23711','7','7','105','0','0','Greenkeeper\'s Pantaloons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125575','2','4','3','37504','1','5','105','0','0','Thunderbringer\'s Guard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125576','2','4','2','37505','10','8','105','0','0','Smuggler\'s Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125577','2','4','1','23711','7','7','105','0','0','Greenblood Pantaloons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125578','2','4','2','37505','10','8','105','0','0','Caustic Feelers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125579','2','4','3','41069','1','5','105','0','0','Dark Shaman\'s Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125583','2','4','2','39363','6','8','105','0','0','Eighty Silver Links','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125584','2','4','3','37509','10','5','105','0','0','Murkblood Oven Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125585','2','4','4','37508','7','6','105','0','0','Murkblood Avenger\'s Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125589','2','4','4','37533','1','6','105','0','0','Clefthoof Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125591','2','4','2','37534','10','8','105','0','0','Clefthoof Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125592','2','4','3','37535','9','5','105','0','0','Clefthoof Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125593','2','4','4','37561','8','6','105','0','0','Windroc Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125594','2','4','3','26326','8','5','105','0','0','Windroc Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125595','2','4','1','37537','20','7','105','0','0','Windroc Shroud','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125597','2','4','4','37542','6','6','90','0','0','Vindicator\'s Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125598','2','4','3','37543','9','5','90','0','0','Fen Strider\'s Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125599','2','4','2','37544','9','8','90','0','0','Explorer\'s Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125600','2','4','2','37544','9','8','90','0','0','Bog Walker\'s Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125601','2','4','3','37543','9','5','90','0','0','Murk-Darkened Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125602','2','4','4','37542','6','6','90','0','0','Bog Walker\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125603','3','2','6','22792','17','1','97','0','2','Lantresor\'s Warblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125605','3','4','2','37547','6','8','97','0','0','Burning Blade Devotee\'s Cinch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125606','3','4','0','28682','11','1','97','0','0','Burning Blade Cultist Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125607','3','4','0','28682','11','1','97','0','0','Burning Blade Cultist Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125608','3','2','6','22792','17','1','97','0','2','Lantresor\'s Warblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125609','3','4','2','37547','6','8','97','0','0','Burning Blade Devotee\'s Cinch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125610','2','4','4','37548','8','6','80','0','0','Fen Strider\'s Footguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125611','2','4','1','15008','10','7','80','0','0','The Witch Doctor\'s Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125612','2','4','3','25882','5','5','84','0','0','Daggerfen Mail','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125613','2','4','1','15008','10','7','96','0','0','Feralfen Mystic\'s Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125614','2','4','3','25882','5','5','102','0','0','Feralfen Beastmaster\'s Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125615','2','4','4','37548','8','6','96','0','0','Feralfen Champion\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125616','2','4','2','21304','1','8','96','0','0','Tim\'s Trusty Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125617','2','4','2','21304','1','8','96','0','0','Captain Krosh\'s Crash Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125618','2','4','1','26323','16','7','96','0','0','Telaar Courier\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125619','2','4','0','37549','12','8','96','0','0','Glowing Crystal Insignia','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125620','2','4','0','37549','12','8','96','0','0','Ancient Crystal Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125621','2','4','1','26323','16','7','96','0','0','Serpent Spirit\'s Drape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125622','2','2','10','39281','17','2','102','0','2','Staff of the Four Golden Coins','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125623','2','4','4','30704','9','6','102','0','0','Bracers of the Battle Cleric','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125624','2','4','6','39283','14','1','102','0','4','King\'s Bulwark','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125628','2','4','0','37552','12','8','102','0','0','Ogre Mauler\'s Badge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125629','2','2','19','30660','26','2','102','0','0','Ogre Handler\'s Shooter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125630','2','4','1','37553','8','7','102','0','0','Ogre Basher\'s Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125631','2','4','1','37553','8','7','102','0','0','Boots of the Specialist','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125632','2','2','19','30660','26','2','102','0','0','Wand of Happiness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125633','2','4','0','37552','12','8','102','0','0','Uniting Charm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125634','2','4','0','3026','12','8','105','0','0','Oshu\'gun Relic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125636','2','4','1','37556','16','7','105','0','0','Talbuk Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125637','2','4','1','30697','6','7','105','0','0','Ethereal Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125639','3','2','3','37557','26','1','103','0','0','Hemet\'s Elekk Gun','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125640','3','2','19','44594','26','2','103','0','0','Nesingwary Safari Stick','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125643','3','4','8','34954','28','2','103','0','0','Harold\'s Rejuvenating Broach','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125644','3','4','7','34960','28','2','103','0','0','Blessed Book of Nagrand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125645','3','4','9','34956','28','2','103','0','0','Totem of the Plains','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125653','3','4','0','39186','12','4','70','69','0','Riding Crop','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125654','2','4','3','38982','10','5','84','57','0','Felscale Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125655','2','4','3','38983','8','5','93','61','0','Felscale Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125656','2','4','3','38980','7','5','99','63','0','Felscale Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125657','2','4','3','38981','5','5','108','66','0','Felscale Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125659','2','4','3','40164','8','5','108','66','0','Scaled Draenic Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125660','2','4','3','38984','5','5','102','64','0','Scaled Draenic Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125661','2','4','3','38988','10','5','93','61','0','Scaled Draenic Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125662','2','4','3','38985','7','5','84','57','0','Scaled Draenic Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125667','3','4','8','40160','28','2','79','64','0','ObsoleteIdol of the Beast','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125668','2','4','2','41553','8','5','99','63','0','Thick Draenic Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125669','2','4','2','15684','10','5','84','57','0','Thick Draenic Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125670','2','4','2','41551','7','5','96','62','0','Thick Draenic Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125671','2','4','2','8664','5','8','105','65','0','Thick Draenic Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125673','2','4','2','37607','8','5','84','57','0','Wild Draenish Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125674','2','4','2','37606','10','5','93','61','0','Wild Draenish Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125675','2','4','2','37605','7','5','99','63','0','Wild Draenish Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125676','2','4','2','37604','5','8','105','65','0','Wild Draenish Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125680','3','4','2','37616','1','5','112','69','0','Stylin\' Purple Hat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125681','3','4','3','37619','1','5','112','69','0','Stylin\' Adventure Hat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125682','3','4','2','37617','1','5','112','69','0','Stylin\' Jungle Hat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125683','3','4','3','37618','1','5','112','69','0','Stylin\' Crimson Hat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125685','3','4','2','38992','10','5','106','67','0','Fel Leather Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125686','3','4','2','38993','8','8','112','69','0','Fel Leather Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125687','3','4','2','38991','7','8','112','69','0','Fel Leather Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125689','3','4','2','37633','5','8','114','70','0','Heavy Clefthoof Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125690','3','4','2','37631','7','8','113','70','0','Heavy Clefthoof Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125691','3','4','2','37634','8','8','113','69','0','Heavy Clefthoof Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125692','3','4','3','44833','7','8','106','67','0','Netherfury Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125693','3','4','3','45372','8','8','100','69','0','Netherfury Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125694','3','4','3','45371','6','5','106','67','0','Netherfury Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125695','3','4','3','37648','6','5','112','69','0','Felstalker Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125696','3','4','3','37775','5','8','114','70','0','Felstalker Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125697','3','4','3','37647','9','8','114','70','0','Felstalker Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125701','3','4','4','24102','5','6','88','0','0','Breastplate of Retribution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125702','3','4','3','25111','7','5','88','0','0','Scaled Legs of Ruination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125710','3','4','2','23544','1','8','88','0','0','Moonkin Headdress','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125711','3','4','1','16632','7','7','88','0','0','Deadly Borer Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125712','3','4','1','30851','16','7','88','0','0','Perfectly Balanced Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125713','3','4','0','31616','11','-1','88','0','0','Holy Healing Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125714','3','4','0','9854','2','-1','88','0','0','Crimson Pendant of Clarity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125715','3','4','4','27422','3','6','85','0','0','Jade Warrior Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125716','3','4','3','30862','10','5','85','0','0','Handguards of Precision','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125717','3','4','2','32732','8','8','85','0','0','Sure-Step Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125718','3','4','1','26229','3','7','85','0','0','Mantle of Magical Might','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125759','3','2','4','44606','21','2','103','0','3','Mogor\'s Anointing Club','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125760','3','2','10','34891','17','2','103','0','2','Battle Mage\'s Baton','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125761','3','2','10','39296','17','2','103','0','2','Staff of Beasts','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125762','3','2','1','41636','17','1','103','0','1','Honed Voidaxe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125763','3','2','15','48502','13','1','103','0','3','Ceremonial Warmaul Blood-blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125764','3','2','13','40169','13','1','103','0','7','Mag\'hari Fury Brand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125772','3','2','7','39359','13','1','100','0','3','Crystalline Kopesh','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125773','3','2','4','43642','13','2','100','0','3','Hungering Bone Cudgel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125774','3','2','15','39357','21','1','100','0','3','Azure Lightblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125775','3','4','0','4284','11','-1','100','0','0','Ogre Slayer\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125776','3','4','0','9853','2','3','100','0','0','Ogre Slayer\'s Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125777','3','4','1','29719','16','7','100','0','0','Ogre Slayer\'s Cover','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125778','2','4','1','16892','9','7','105','0','0','Manacles of Remembrance','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125779','2','4','0','41951','11','8','105','0','0','Warmaul Slayer\'s Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125780','2','4','1','52783','16','6','105','0','0','Warmaul Defender\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125781','2','4','4','27372','5','6','93','0','0','Segmented Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125782','2','4','3','34031','7','5','93','0','0','Sunstrider Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125783','2','4','1','39103','1','7','93','0','0','Pilgrim\'s Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125784','2','4','0','15420','2','3','87','0','0','Imbued Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125785','2','4','0','9839','11','3','87','0','0','Adept\'s Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125786','2','4','0','26551','12','-1','93','0','0','Hypnotist\'s Watch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125787','2','4','0','6502','12','3','93','0','0','Charm of Alacrity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125788','3','4','4','29000','10','6','114','0','0','Dauntless Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125789','3','4','3','27323','6','5','114','0','0','Rune-Engraved Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125790','3','4','2','19020','3','8','114','0','0','Expedition Scout\'s Epaulets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125791','3','4','2','17263','10','8','114','0','0','Gloves of Preservation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125792','3','4','1','26261','8','7','114','0','0','Curate\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125793','2','4','1','37798','8','7','114','0','0','Curate\'s Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125794','2','4','3','37799','6','5','114','0','0','Bone Studded Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125795','2','4','2','14698','10','8','114','0','0','Gloves of Preservation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125796','2','4','2','37800','3','8','114','0','0','Lurking Shadow Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125797','2','4','4','37801','10','6','114','0','0','Crushing Grasp','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125803','3','4','0','33135','2','5','109','0','0','Medallion of the Valiant Guardian','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125804','3','4','0','24022','11','3','109','0','0','Naliko\'s Revenge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125805','3','4','1','34812','16','7','109','0','0','Mantle of Vivification','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125806','3','2','19','44596','26','2','109','0','0','Nethekurse\'s Rod of Torment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125808','3','2','19','37803','26','3','109','0','0','Rod of Dire Shadows','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125809','3','4','0','31899','2','5','109','0','0','Maimfist\'s Choker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125810','3','4','1','37805','16','7','109','0','0','Vicar\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125811','3','4','0','31905','11','3','109','0','0','Conqueror\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125819','3','4','4','39288','5','6','103','0','0','Breastplate of the Warbringer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125820','3','4','3','25826','1','5','103','0','0','Metallic Headband of Simm\'onz','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125821','3','4','2','17137','7','8','103','0','0','Leggings of Unending Assault','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125822','3','4','1','39286','5','7','103','0','0','Watcher\'s Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125823','3','2','0','30699','13','1','85','60','3','Grunt\'s Waraxe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125824','3','4','0','23629','11','-1','85','60','0','Farseer\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125825','3','2','7','28561','13','1','85','60','3','Footman\'s Longsword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125826','3','4','0','9842','11','-1','85','60','0','Sage\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125827','3','4','1','35077','16','7','97','64','0','Muck-Covered Drape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125828','3','4','6','22805','14','1','91','62','4','Petrified Lichen Guard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125829','4','4','0','23714','12','4','90','70','0','Talisman of the Alliance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125830','4','4','2','44876','1','8','123','70','0','Gladiator\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125831','4','4','2','41143','5','8','123','70','0','Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125832','4','4','2','41142','3','8','123','70','0','Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125833','4','4','2','41140','7','8','123','70','0','Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125834','4','4','2','41138','10','8','123','70','0','Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125835','3','2','10','20269','17','2','91','62','2','Explorer\'s Walking Stick','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125836','3','2','4','28194','21','2','91','62','3','Preserver\'s Cudgel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125838','3','4','2','31934','5','8','91','62','0','Warden\'s Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125854','4','4','1','40622','3','7','123','70','0','Gladiator\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125855','4','4','1','41234','1','7','123','70','0','Gladiator\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125856','4','4','1','40056','20','7','123','70','0','Gladiator\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125857','4','4','1','40059','10','7','123','70','0','Gladiator\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125858','4','4','1','39952','7','7','123','70','0','Gladiator\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125861','1','2','16','20777','25','1','3','1','0','Crude Throwing Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125872','1','2','16','16752','25','1','8','3','0','Balanced Throwing Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125873','1','2','16','20779','25','1','16','11','0','Keen Throwing Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125874','1','2','16','39740','25','-1','20','15','0','Large Throwing Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125875','1','2','16','20783','25','1','27','22','0','Deadly Throwing Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125876','1','2','16','26358','25','1','40','35','0','Gleaming Throwing Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125877','1','2','16','26361','25','-1','65','60','0','Master\'s Throwing Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125878','2','2','16','20773','25','1','52','0','0','Dusksteel Throwing Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125913','2','4','0','31616','11','3','93','0','0','Ring of the Slain Anchorite','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125914','2','4','0','32395','2','3','93','0','0','Broken Choker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125915','2','2','7','32077','21','1','93','0','3','Fallen Vindicator\'s Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125916','2','2','0','42669','13','1','96','0','3','Terokkar Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125917','2','2','10','28345','17','2','96','0','2','Healer\'s Staff of the Forest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125918','2','2','15','20601','13','1','96','0','3','Blood-Guided Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125919','2','4','0','38098','2','3','93','0','0','Sedai\'s Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125920','2','2','7','38099','21','1','93','0','3','Sedai\'s Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125921','2','4','0','28831','11','3','93','0','0','Sedai\'s Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125922','2','4','4','28364','6','6','99','0','0','Fearless Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125923','2','4','3','27106','3','5','99','0','0','Fierce Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125924','2','4','2','44456','8','8','99','0','0','Swamprunner\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125925','2','4','1','44462','3','7','99','0','0','Terrorcloth Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125926','2','4','0','9834','11','3','99','0','0','Nexus-Stalker\'s Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125927','2','4','1','38101','16','3','99','0','0','Consortium Cloak of the Quick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125928','2','4','0','9857','2','3','99','0','0','Ethereal Healing Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125929','2','4','4','26651','7','6','93','0','0','Cenarion Thicket Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125930','2','4','3','30889','1','5','93','0','0','Cenarion Thicket Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125931','2','4','1','19000','1','7','93','0','0','Cenarion Thicket Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125932','2','4','2','14278','5','8','93','0','0','Cenarion Thicket Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125933','2','2','7','26572','13','1','99','0','3','Extra Sharp Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125934','2','2','5','6808','17','2','99','0','1','Spiked Destroyer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125935','2','2','10','20257','17','2','99','0','2','Invincible Stave','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125936','2','4','0','31287','12','3','99','0','0','Terokkar Tablet of Vim','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125937','2','4','0','31287','12','3','99','0','0','Terokkar Tablet of Precision','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125939','3','2','19','39208','26','2','97','64','0','Voidfire Wand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125940','3','4','8','34955','28','2','97','64','0','Idol of the Claw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125941','3','4','3','43158','8','5','97','64','0','Boots of the Outlander','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125942','3','4','4','43146','10','6','97','64','0','Faith Bearer\'s Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125943','3','2','13','39218','21','1','97','64','7','Creepjacker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125944','3','2','8','47478','17','1','97','64','1','Shaarde the Greater','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125945','3','4','1','43201','16','7','97','64','0','Cloak of Revival','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125946','3','4','2','43173','8','8','97','64','0','Nethershade Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125947','3','4','3','43162','3','5','97','64','0','Lightning-Rod Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125948','2','4','4','26437','6','6','99','0','0','Girdle of the Penitent','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125949','2','4','2','18929','10','8','99','0','0','Gloves of the Afterlife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125950','3','2','10','39226','17','2','97','64','2','Staff of Polarities','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125951','2','4','3','22680','8','5','99','0','0','Fleet Refugee\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125952','3','2','7','39228','13','1','97','64','3','Scimitar of the Nexus-Stalkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125953','3','2','2','43202','15','2','97','64','0','Ethereal Warp-Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125954','3','4','0','38560','2','3','97','64','0','Sigil of Shaffar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125955','3','4','3','45175','1','5','97','64','0','Mask of the Howling Storm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125956','3','4','4','43141','9','6','97','64','0','Nexus-Bracers of Vigor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125957','3','4','1','43192','8','7','97','64','0','Ethereal Boots of the Skystrider','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125958','2','4','4','27420','9','6','96','0','0','Eagle Engraved Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125959','2','4','3','39485','9','5','96','0','0','Feathered Armbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125960','2','4','2','19806','9','8','96','0','0','Talonstalker Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125961','2','4','1','26205','9','7','96','0','0','Feathered Wrist Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125962','3','4','0','33534','11','5','97','64','0','Longstrider\'s Loop','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125963','2','4','0','35423','11','3','96','0','0','Kokorek\'s Signet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125964','3','2','7','41428','13','1','100','65','3','Shaarde the Lesser','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125965','2','4','1','44372','16','3','96','0','0','Cloak of Grasping Talons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125966','2','4','1','33732','16','7','96','0','0','Arakkoa Sage\'s Shawl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125967','3','4','4','27336','3','6','91','0','0','Eagle Crested Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125968','3','4','3','26965','3','5','91','0','0','Shalassi Sentry\'s Epaulets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125969','3','4','2','27766','10','8','91','0','0','Rapscallion\'s Touch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125970','3','4','1','16881','8','7','91','0','0','Shalassi Oracle\'s Sandals','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125971','2','2','2','25606','15','2','80','0','0','Stout Oak Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125972','2','2','3','28331','26','1','80','0','0','Deadeye\'s Piece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125973','2','2','19','20851','26','2','80','0','0','Dark Augur\'s Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125974','2','4','1','45177','1','8','96','0','0','Helm of Lupine Cunning','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125975','2','4','2','45176','1','8','96','0','0','Wolf Hunter\'s Guise','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125976','2','4','3','45178','1','8','96','0','0','Helm of Lupine Grace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125977','2','4','4','45179','1','8','96','0','0','Helm of Lupine Ferocity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125978','2','2','20','20619','17','2','60','0','1','Seth\'s Graphite Fishing Pole','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125979','2','4','4','21961','7','6','87','0','0','Flintlocke\'s Piloting Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125980','2','4','3','28069','5','5','87','0','0','Aerodynamic Scaled Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125981','2','4','2','28590','1','8','87','0','0','Dirigible Crash Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125982','2','4','1','28421','6','7','87','0','0','Foreman\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125983','2','4','3','27206','6','5','87','0','0','Heavy Miner\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125984','2','4','2','33139','3','8','87','0','0','Miner\'s Brace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125985','2','2','10','42613','17','2','93','0','2','Cenarion Naturalist\'s Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125986','2','2','5','35968','17','1','93','0','1','Dreadtusk\'s Fury','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125987','2','2','8','26589','17','1','93','0','1','Helboar Carving Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125988','2','4','0','24646','11','3','87','0','0','Glowing Alabaster Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125989','2','4','0','9657','2','3','87','0','0','Draenethyst Chaplet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125990','2','4','0','23728','11','3','87','0','0','Smooth Soapstone Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125991','2','4','0','28830','11','3','87','0','0','Seamless Stone Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125992','2','4','0','9657','2','3','87','0','0','Enforcer\'s Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125993','2','4','0','9657','2','3','87','0','0','Finely Wrought Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125994','2','4','0','38129','12','3','87','0','0','Rune of Force','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125995','2','4','0','38127','12','3','87','0','0','Star of Sha\'naar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125996','2','4','0','38130','12','3','87','0','0','Emblem of Perseverance','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125997','4','4','3','41144','5','5','123','70','0','Gladiator\'s Linked Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125998','4','4','3','44009','1','5','123','70','0','Gladiator\'s Linked Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('125999','4','4','3','41149','3','5','123','70','0','Gladiator\'s Linked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126000','4','4','3','41145','10','5','123','70','0','Gladiator\'s Linked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126001','4','4','3','41148','7','5','123','70','0','Gladiator\'s Linked Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126004','2','4','1','16551','5','7','11','0','0','Farmhand\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126005','2','4','1','38266','5','7','16','0','0','Jessera\'s Fungus Lined Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126006','2','4','1','7533','7','7','12','0','0','Crystal-Flecked Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126007','2','4','1','14450','7','7','17','0','0','Vindicator\'s Woolies','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126008','2','4','1','25867','10','7','13','0','0','Scholar\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126009','2','4','1','12865','10','7','20','0','0','Flutterer Silk Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126010','2','4','1','16821','8','7','14','0','0','Vindicator\'s Soft Sole Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126011','2','4','1','16563','8','7','19','0','0','Cryo-Core Attendant\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126012','2','4','1','16554','6','7','15','0','0','Kessel\'s Cinch Wrap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126013','2','4','1','28051','6','7','20','0','0','Cincture of Woven Reeds','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126014','2','4','1','16927','9','7','13','0','0','Jessera\'s Fungus Lined Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126015','2','4','1','28168','9','7','18','0','0','Anchorite Neophyte\'s Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126016','2','4','1','23050','16','7','14','0','0','Surveyor\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126017','2','4','1','15248','16','7','19','0','0','Venomous Silk Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126018','2','4','2','19029','5','8','11','0','0','Elekk Handler\'s Leathers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126019','2','4','2','38267','5','8','16','0','0','Jessera\'s Fungus Lined Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126020','2','4','2','19030','7','8','12','0','0','Shard-Covered Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126021','2','4','2','7834','7','8','17','0','0','Vindicator\'s Leather Chaps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126022','2','4','2','41379','10','8','13','0','0','Researcher\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126023','2','4','2','19032','10','8','20','0','0','Ravager Hide Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126024','2','4','2','19033','8','8','14','0','0','Vindicator\'s Leather Moccasins','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126025','2','4','2','16991','8','8','19','0','0','Technician\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126026','2','4','2','19034','6','8','20','0','0','Ornately Tooled Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126027','2','4','2','14533','6','8','15','0','0','Kessel\'s Sweat Stained Elekk Leash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126028','2','4','2','25864','9','7','13','0','0','Jessera\'s Fungus Lined Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126029','2','4','2','16566','9','7','18','0','0','Watchman\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126030','2','4','3','38268','5','5','16','0','0','Jessera\'s Fungus Lined Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126031','2','4','3','26936','5','5','11','0','0','Elekk Rider\'s Mail','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126032','2','4','3','26932','7','5','12','0','0','Crystal-Studded Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126033','2','4','3','4339','7','5','17','0','0','Vindicator\'s Iron Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126034','2','4','3','27175','10','5','13','0','0','Protective Field Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126035','2','4','3','28998','10','5','20','0','0','Corin\'s Handguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126036','2','4','3','26927','8','5','14','0','0','Vindicator\'s Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126037','2','4','3','26939','8','5','19','0','0','Lightweight Mesh Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126038','2','4','3','26930','6','5','20','0','0','Segmented Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126039','2','4','3','6864','6','5','15','0','0','Kessel\'s Sturdy Riding Handle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126040','2','4','3','26928','9','5','13','0','0','Jessera\'s Fungus Lined Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126041','2','4','3','26938','9','5','18','0','0','Vigilant Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126049','2','2','4','12992','13','2','11','0','3','Old Elekk Prod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126050','2','2','4','37192','13','2','16','0','3','Fist of Argus','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126052','2','2','5','38269','17','2','16','0','1','Vindicator\'s Smasher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126053','2','2','7','1547','13','1','11','0','3','Elekk Handler\'s Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126054','2','2','7','38265','13','1','16','0','3','Blade of Argus','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('126055','3','4','0','32335','12','-1','100','65','0','Oculus of the Hidden Eye','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127002','3','4','3','16706','3','5','0','0','0','Spojka Black Shirt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127007','3','4','3','16702','10','5','0','0','0','Spojka Rich Purple Shirt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127389','2','2','8','20074','17','1','11','0','1','Surplus Bastard Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127390','2','2','8','38270','17','1','16','0','1','Vindicator\'s Letter Opener','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127398','2','4','0','28503','23','-1','17','0','7','Carved Crystalline Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127399','2','4','6','38258','14','1','12','0','4','Stillpine Defender','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127400','2','4','6','18523','14','1','17','0','4','Peacekeeper\'s Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127401','2','2','18','38260','26','2','12','0','0','Arugoo\'s Crossbow of Destruction','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127402','2','2','18','22929','26','2','17','0','0','Huntsman\'s Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127403','2','2','19','39743','26','2','12','0','0','Stillpine Stinger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127404','2','2','19','28218','26','2','17','0','0','Lightspark','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127408','3','4','4','44873','1','6','100','65','0','Hope Bearer Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127409','3','4','2','43180','1','8','100','65','0','Raven-Heart Headdress','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127410','3','4','1','43184','1','7','100','65','0','Collar of Command','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127411','3','4','1','43185','8','7','100','65','0','Slippers of Serenity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127412','3','2','10','43210','17','2','100','65','2','Ironstaff of Regeneration','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127413','3','4','0','31800','11','4','100','65','0','Ring of the Exarchs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127414','3','4','3','44407','1','5','100','65','0','Mok\'Nathal Beast-Mask','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127415','3','4','2','45101','1','8','100','65','0','Darkguard Face Mask','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127416','3','4','0','39365','12','4','100','65','0','Fetish of the Fallen','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127417','3','4','2','43181','3','8','103','66','0','Ravenwing Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127418','3','4','1','43193','7','7','103','66','0','Stormreaver Shadow-Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127420','3','4','4','43147','8','6','103','66','0','Uther\'s Ceremonial Warboots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127423','3','4','1','38794','16','7','103','66','0','Cloak of Impulsiveness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127424','3','2','0','38797','13','1','103','66','3','Amani Venom-Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127426','3','2','4','43204','21','2','103','66','3','Northshire Battlemace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127427','3','4','4','43205','5','6','103','66','0','Durotan\'s Battle Harness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127428','3','4','3','43164','10','5','103','66','0','Stormfront Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127430','3','4','3','43206','7','5','103','66','0','Scaled Greaves of Patience','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127431','3','2','15','43207','21','1','103','66','3','Time-Shifted Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127432','3','4','0','35431','11','3','103','66','0','Broxigar\'s Ring of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127433','3','4','1','43186','3','7','103','66','0','Pauldrons of Sufferance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127434','3','4','2','43209','3','8','103','66','0','Mantle of Perenolde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127436','3','4','0','28830','11','5','103','66','1','Iron Band of the Unbreakable','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127440','3','4','0','38809','2','3','103','66','0','Diamond Prism of Recurrence','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127447','3','4','4','42865','9','6','115','70','0','Bracers of Just Rewards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127448','3','4','1','26431','16','7','115','70','0','Cloak of the Everliving','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127449','3','4','6','41645','14','1','115','70','4','Blood Knight Defender','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127450','3','4','3','43008','8','5','115','70','0','Wild Stalker Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127451','3','4','1','43084','8','7','115','70','0','Boots of the Darkwalker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127452','3','4','1','42996','9','7','115','70','0','Light Scribe Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127453','3','4','0','31664','11','5','115','70','0','Averinn\'s Ring of Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127454','3','4','3','42910','3','5','115','70','0','Volcanic Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127455','3','4','4','44408','1','6','115','70','0','Irondrake Faceguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127456','3','4','2','42953','20','8','115','70','0','Raiments of Nature\'s Breath','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127457','3','4','4','43639','10','6','115','70','0','Life Bearer\'s Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127458','3','4','3','42927','7','5','115','70','0','Oceansong Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127459','3','4','4','42832','9','6','115','70','0','Vambraces of Daring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127460','3','4','0','40034','11','3','115','70','0','Reavers\' Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127461','3','4','2','43015','5','8','115','70','0','Chestguard of the Prowler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127462','3','4','1','42896','9','7','115','70','0','Crimson Bracers of Gloom','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127463','3','2','15','41881','13','1','115','70','3','Terror Flame Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127464','3','4','0','31899','2','3','115','70','0','Omor\'s Unyielding Will','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127465','3','4','1','43073','10','7','115','70','0','Mana-Etched Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127466','3','4','1','49090','1','-1','115','70','0','Headdress of Alacrity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127467','3','4','2','43017','8','8','115','70','0','Silent-Strider Kneeboots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127468','3','4','2','42452','10','8','115','70','0','Moonglade Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127469','4','4','3','41144','5','5','123','70','0','Gladiator\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127470','4','4','3','41145','10','5','123','70','0','Gladiator\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127471','4','4','3','44009','1','5','123','70','0','Gladiator\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127472','4','4','3','41148','7','5','123','70','0','Gladiator\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127473','4','4','3','41149','3','5','123','70','0','Gladiator\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127474','3','4','3','42581','10','5','115','70','0','Beast Lord Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127475','3','4','4','40830','10','6','115','70','0','Gauntlets of the Bold','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127476','3','2','4','41769','13','2','115','70','3','Truncheon of Five Hells','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127477','3','4','0','41655','23','8','115','70','0','Faol\'s Signet of Cleansing','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127478','3','4','3','43045','6','5','115','70','0','Girdle of the Blasted Reaches','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127483','3','4','2','42965','9','8','115','70','0','Moon-Touched Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127484','3','4','7','5563','28','2','115','70','0','Libram of Avengement','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127485','3','4','1','15163','16','7','115','70','0','Embroidered Cape of Mysteries','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127487','3','4','4','42839','7','6','115','70','0','Bloodlord Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127488','3','4','1','44409','1','7','115','70','0','Mage-Collar of the Firestorm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127489','3','4','4','42851','9','6','115','70','0','Virtue Bearer\'s Vambraces','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127490','3','2','0','39964','13','1','115','70','3','Firebrand Battleaxe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127491','3','4','0','39128','11','3','115','70','0','Signet of Repose','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127492','3','4','2','42966','7','8','115','70','0','Moonchild Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127493','3','4','1','42903','10','7','115','70','0','Gloves of the Deadwatcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127494','3','4','3','42885','9','5','115','70','0','Emerald Eye Bracer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127495','3','4','0','43085','2','3','115','70','0','Soldier\'s Dog Tags','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127497','3','4','4','43035','10','1','115','70','0','Doomplate Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127505','3','4','4','42867','1','6','115','70','0','Ruby Helm of the Just','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127506','3','4','1','42997','20','7','115','70','0','Robe of Effervescent Light','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127507','3','2','18','41423','26','2','115','70','0','Adamantine Repeater','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127508','3','4','1','42371','10','7','115','70','0','Incanter\'s Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127509','3','4','2','42410','10','8','115','70','0','Handgrips of Assassination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127510','3','4','3','42568','10','5','115','70','0','Tidefury Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127512','3','2','7','41418','21','1','115','70','3','The Willbreaker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127514','3','4','2','42945','7','8','115','70','0','Leggings of the Unrepentant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127517','3','4','1','42975','9','7','112','68','0','Bands of Nethekurse','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127518','3','4','8','39645','28','2','112','68','0','Ivory Idol of the Moongoddess','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127519','3','4','1','43086','16','7','112','68','0','Cloak of Malice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127520','3','4','4','42829','1','6','112','68','0','Greathelm of the Unbreakable','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127521','3','4','3','43009','6','5','115','70','0','Telaari Hunting Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127522','3','4','3','42908','9','5','115','70','0','World\'s End Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127523','3','4','0','39126','11','5','115','70','0','Exarch\'s Diamond Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127524','3','2','5','44954','17','1','112','68','1','Firemaul of Destruction','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127525','3','4','1','43087','8','7','112','68','0','Jeweled Boots of Sanctification','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127526','3','2','2','40908','15','2','112','68','0','Skyfire Hawk-Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127527','3','4','4','42831','7','6','115','70','0','Greaves of the Shatterer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127528','3','4','3','43052','10','5','115','70','0','Gauntlets of Desolation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127529','3','4','0','40039','12','3','115','70','0','Figurine of the Colossus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127531','3','4','2','43064','10','8','115','70','0','Wastewalker Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127533','3','2','13','41452','21','1','115','70','7','Demonblood Eviscerator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127534','3','4','0','41654','23','3','115','70','7','Hortus\' Seal of Brilliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127535','3','4','4','42355','10','1','115','70','0','Gauntlets of the Righteous','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127536','3','4','1','42576','10','7','115','70','0','Hallowed Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127537','3','4','1','42446','10','7','115','70','0','Gloves of Oblivion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127538','3','2','4','44612','21','2','115','70','3','Lightsworn Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127539','3','4','4','42853','3','6','115','70','0','Justice Bearer\'s Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127540','3','2','19','43088','26','2','115','70','0','Nexus Torch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127541','3','4','3','42887','6','5','115','70','0','Archery Belt of the Broken','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127542','3','4','1','42999','6','6','115','70','0','Cord of Belief','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127543','3','2','15','42825','21','1','115','70','3','Starlight Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127544','3','4','9','39639','28','2','115','70','0','Totem of Spontaneous Regrowth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127545','3','4','2','43018','7','8','115','70','0','Mennu\'s Scaled Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127546','3','4','0','40035','2','3','115','70','0','Traitor\'s Noose','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127547','3','4','1','42987','6','7','115','70','0','Coldwhisper Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127548','3','4','4','42862','6','6','115','70','0','Girdle of Many Blessings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127549','3','4','3','42931','8','5','115','70','0','Wavefury Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127550','3','4','1','43089','16','7','115','70','0','Ironscale War Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127551','3','4','0','40036','2','3','115','70','0','Skeletal Necklace of Battlerage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127552','1','4','2','28249','5','8','5','0','0','Soft Leather Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127631','3','2','16','38370','25','1','94','63','0','Needle Shrike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127637','3','4','2','38261','6','8','100','66','0','Shadowstalker\'s Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127638','3','4','1','34244','6','7','100','66','0','Hierophant\'s Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127639','3','4','4','38286','6','6','100','66','0','Slayer\'s Waistguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127640','2','2','18','38263','26','1','16','0','0','Hand of Argus Crossfire','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127641','2','2','10','38264','17','1','16','0','2','Vindicator\'s Walking Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127643','3','4','3','34241','6','5','100','66','0','Stormbreaker\'s Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127644','3','4','4','38286','6','6','100','66','0','Avenger\'s Waistguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127645','3','4','2','34244','6','8','100','66','0','Dreamstalker Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127646','3','4','3','34241','6','5','100','66','0','Marksman\'s Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127647','3','4','3','38278','7','5','100','66','0','Marksman\'s Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127648','3','4','2','38280','7','8','100','66','0','Dreamstalker Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127649','3','4','1','38276','7','7','100','66','0','Hierophant\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127650','3','4','2','33041','7','8','100','66','0','Shadowstalker\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127652','3','4','3','38279','7','5','100','66','0','Stormbreaker\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127653','3','4','4','38285','7','6','100','66','0','Slayer\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127654','3','4','4','38285','7','6','100','66','0','Avenger\'s Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127672','3','4','4','42833','6','6','115','70','0','Girdle of the Immovable','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127673','3','2','7','43090','13','1','115','70','3','Phosphorescent Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127683','3','4','0','16209','12','-1','115','70','0','Quagmirran\'s Eye','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127702','4','4','4','41133','5','6','123','70','0','Gladiator\'s Lamellar Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127703','4','4','4','41134','10','6','123','70','0','Gladiator\'s Lamellar Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127704','4','4','4','41135','1','6','123','70','0','Gladiator\'s Lamellar Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127705','4','4','4','41136','7','6','123','70','0','Gladiator\'s Lamellar Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127706','4','4','4','41137','3','6','123','70','0','Gladiator\'s Lamellar Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127707','4','4','1','41154','10','7','123','70','0','Gladiator\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127708','4','4','1','41794','1','7','123','70','0','Gladiator\'s Satin Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127709','4','4','1','41155','7','7','123','70','0','Gladiator\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127710','4','4','1','42171','3','7','123','70','0','Gladiator\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127711','4','4','1','41157','20','7','123','70','0','Gladiator\'s Satin Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127712','3','4','2','31620','9','8','115','70','0','Shackles of Quagmirran','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127713','3','4','3','43044','3','5','115','70','0','Pauldrons of Desolation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127714','3','4','0','43091','23','8','115','70','0','Swamplight Lantern','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127715','2','4','4','42217','1','5','90','0','0','Circle\'s Stalwart Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127716','2','4','4','19730','5','6','87','0','0','Refuge Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127717','2','4','3','687','7','5','90','0','0','Expedition Forager Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127718','2','4','4','24506','7','6','99','0','0','Aldor Defender\'s Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127719','2','4','2','17137','7','8','99','0','0','Aldor Leggings of Puissance','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127720','2','4','1','19141','20','7','99','0','0','Robes of the Aldor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127721','2','4','4','34708','8','6','93','0','0','Expedition Footgear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127722','2','4','3','27791','10','5','93','0','0','Gloves of Marshmanship','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127723','2','4','2','29954','6','8','93','0','0','Belt of the Moonkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127724','2','4','2','27569','3','8','93','0','0','Wild Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127725','2','4','4','44422','3','6','93','0','0','Expedition Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127726','2','4','3','27057','6','5','93','0','0','Hearty Cenarion Cincture','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127727','2','4','2','18367','8','8','93','0','0','Swift Cenarion Footwear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127728','2','4','1','13051','8','7','93','0','0','Cushy Cenarion Walkers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127730','2','4','1','28303','16','7','93','0','0','Watcher\'s Cloak of Vigilance','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127731','2','4','1','23118','16','7','90','0','0','Vindicator\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127732','2','4','1','24928','16','7','90','0','0','Infiltrator\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127733','2','4','0','31905','11','-1','93','0','0','Warden\'s Ring of Precision','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127734','2','4','0','963','11','-1','93','0','0','Expedition Caster\'s Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127735','2','4','0','6497','2','-1','93','0','0','Pendant of the Marsh','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127737','3','4','2','42454','3','8','115','70','0','Moonglade Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127738','3','4','1','42372','3','7','115','70','0','Incanter\'s Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127739','3','4','4','42351','3','6','115','70','0','Spaulders of the Righteous','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127740','3','4','0','28733','11','-1','115','70','0','Band of Ursol','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127741','3','2','4','41771','21','2','115','70','3','Bleeding Hollow Warhammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127742','3','4','1','43026','6','7','115','70','0','Mage-Fury Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127743','3','4','3','42911','6','5','115','70','0','Girdle of Living Flame','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127744','3','4','8','39640','28','2','115','70','0','Idol of Ursoc','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127745','3','4','3','42886','10','5','115','70','0','Hungarhide Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127746','3','4','1','43025','9','7','115','70','0','Arcanium Signet Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127747','3','2','13','42408','22','1','115','70','7','Boggspine Knuckles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127748','3','4','4','42859','7','6','115','70','0','Cassock of the Loyal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127749','2','2','10','20293','17','2','99','0','2','Staff of the Wild','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127750','2','2','5','28629','17','2','99','0','1','Hammer of the Sporelings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127751','2','2','6','25630','17','1','99','0','2','Survivalist\'s Pike','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127752','2','2','8','20072','17','1','99','0','1','Zangarmarsh Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127753','2','2','15','40214','21','1','93','0','3','Ensorcelled Marshfang Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127754','2','2','7','26572','13','1','93','0','3','Keen Marshfang Slicer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127755','3','4','4','42868','6','6','115','70','0','Girdle of Gallantry','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127756','2','2','0','16126','13','1','93','0','3','Marshfang Blade Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127757','3','2','10','40358','17','2','115','70','2','Greatstaff of the Leviathan','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127758','3','4','0','39210','2','3','115','70','0','Hydra-fang Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127759','3','4','3','44410','1','5','115','70','0','Headdress of the Tides','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127760','3','4','2','43065','6','8','115','70','0','Dunewind Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127761','3','4','0','33808','11','-1','115','70','0','Ring of the Shadow Deeps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127762','3','4','0','33534','11','-1','115','70','0','Weathered Band of the Swamplord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127763','3','4','2','44411','1','8','115','70','0','Crown of the Forest Lord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127764','3','4','1','42985','10','7','115','70','0','Hands of the Sun','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127765','3','4','2','42948','9','8','115','70','0','Armwraps of Disdain','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127766','3','4','0','40038','2','5','115','70','0','Swampstone Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127767','3','2','0','41772','13','1','115','70','3','Bogreaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127768','3','4','1','42977','6','7','115','70','0','Oracle Belt of Timeless Mystery','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127769','3','2','8','41773','17','1','115','70','1','Endbringer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127770','3','4','0','43092','12','3','115','70','0','Argussian Compass','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127771','3','4','4','43034','3','6','115','70','0','Doomplate Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127772','3','4','6','42409','14','6','115','70','4','Stormshield of Renewal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127773','3','4','3','43010','7','5','115','70','0','Barbaric Legstraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127775','3','4','1','42577','3','7','115','70','0','Hallowed Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127776','3','4','2','42414','3','8','115','70','0','Shoulderpads of Assassination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127778','3','4','1','42447','3','7','115','70','0','Spaulders of Oblivion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127779','3','4','0','32087','2','3','115','70','0','Bone Chain Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127780','3','4','0','24646','11','5','115','70','0','Ring of Fabled Hope','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127781','3','4','1','45147','1','7','115','70','0','Demonfang Ritual Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127783','3','4','2','42967','6','8','112','68','0','Moonrage Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127784','3','4','0','39121','11','3','112','68','0','Scintillating Coral Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127787','3','4','2','42946','5','8','112','68','0','Chestguard of No Remorse','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127788','3','4','4','42841','8','6','112','68','0','Bloodsworn Warboots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127789','3','4','1','43093','16','7','112','68','0','Cloak of Whispering Shells','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127790','3','4','4','42860','1','6','112','68','0','Mask of Penance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127791','3','2','10','40836','17','2','112','68','2','Serpentcrest Life-Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127792','3','4','0','40040','2','3','112','68','0','Steam-Hinge Chain of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127793','3','4','3','42912','10','5','112','68','0','Earth Mantle Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127794','3','2','3','41431','26','1','112','68','0','Recoilless Rocket Ripper X-54','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127795','3','4','1','42897','6','7','115','70','0','Sash of Serpentra','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127796','3','4','1','42443','3','7','115','70','0','Mana-Etched Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127797','3','4','2','43066','3','8','115','70','0','Wastewalker Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127798','3','4','4','42869','10','1','115','70','0','Gauntlets of Vindication','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127799','3','4','1','42898','20','7','115','70','0','Vermillion Robes of the Dominant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127800','3','4','2','42955','7','8','115','70','0','Earthsoul Britches','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127801','3','4','3','42583','3','5','115','70','0','Beast Lord Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127802','3','4','3','42573','3','5','115','70','0','Tidefury Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127803','3','4','4','42360','3','6','115','70','0','Shoulderguards of the Bold','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127804','3','4','1','43094','16','7','115','70','0','Devilshark Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127805','3','4','0','43407','11','-1','115','70','0','Ring of the Silver Hand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127806','3','4','3','42932','10','5','115','70','0','Fathomheart Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127813','3','4','4','42835','8','6','115','70','0','Boots of the Colossus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127814','3','2','15','41884','13','1','115','70','3','Twinblade of Mastery','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127815','3','4','9','40043','28','2','115','70','0','Totem of the Astral Winds','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127816','3','4','1','43027','3','7','115','70','0','Mindrage Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127817','3','2','2','39230','15','2','115','70','0','Starbolt Longbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127818','3','4','2','42969','20','8','115','70','0','Starry Robes of the Crescent','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127821','3','4','1','42902','8','7','115','70','0','Extravagant Boots of Malice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127822','3','4','0','40044','11','3','115','70','0','Crystal Band of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127823','3','4','3','42891','5','5','115','70','0','Shard Encrusted Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127824','3','4','1','42978','20','7','115','70','0','Robe of the Great Dark Beyond','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127825','3','4','2','43020','10','8','115','70','0','Predatory Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127826','3','4','3','42933','3','5','115','70','0','Mantle of the Sea Wolf','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127827','3','4','2','42956','9','8','115','70','0','Lucid Dream Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127828','3','4','0','40045','12','-1','115','70','0','Warp-Scarab Brooch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127829','3','2','1','41776','17','1','115','70','1','Axe of the Nexus-Kings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127830','3','4','0','31655','11','4','80','60','0','Circlet of the Victor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127831','3','4','2','42949','3','8','115','70','0','Mantle of the Unforgiven','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127832','3','4','0','31655','11','4','80','60','0','Band of the Victor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127833','3','4','0','31655','11','4','80','60','0','Band of the Victor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127834','3','4','0','31655','11','4','80','60','0','Circlet of the Victor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127835','3','4','3','42936','6','5','115','70','0','Stillwater Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127837','3','4','2','43067','7','8','115','70','0','Wastewalker Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127838','3','4','1','42369','7','7','115','70','0','Incanter\'s Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127839','3','4','4','42354','7','6','115','70','0','Legplates of the Righteous','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127840','3','2','5','41777','17','1','115','70','1','Scepter of Sha\'tar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127842','3','2','10','40359','17','2','115','70','2','Grand Scepter of the Nexus-Kings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127843','3','4','1','43078','6','7','115','70','0','Glyph-Lined Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127844','3','4','4','42872','3','6','115','70','0','Pauldrons of Swift Retribution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127845','3','4','3','42915','8','5','115','70','0','Magma Plume Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127846','3','2','13','42172','21','1','115','70','7','Claw of the Watcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127847','3','4','4','42836','3','6','115','70','0','Fanblade Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127848','3','4','1','43024','8','7','115','70','0','Embroidered Spellpyre Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127865','3','4','3','43012','9','5','115','70','0','Bracers of Shirrak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127866','3','4','1','44412','1','-1','115','70','0','Scintillating Headdress of Second Sight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127867','3','4','2','42950','8','8','115','70','0','Boots of the Unjust','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127868','3','2','15','42561','21','1','112','68','3','Runesong Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127869','3','4','0','31664','11','3','115','70','0','Soulpriest\'s Ring of Resolve','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127870','3','4','4','43037','7','6','115','70','0','Doomplate Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127871','3','4','0','40047','2','3','115','70','0','Maladaar\'s Blessed Chaplet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127872','3','2','0','39965','13','1','115','70','3','The Harvester of Souls','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127873','3','4','2','42453','7','8','115','70','0','Moonglade Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127874','3','4','3','42582','7','5','115','70','0','Beast Lord Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127875','3','4','1','42578','7','7','115','70','0','Hallowed Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127876','3','2','4','41778','21','2','115','70','3','Will of the Fallen Exarch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127877','3','2','10','40371','17','2','115','70','2','Draenic Wildstaff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127878','3','4','1','43096','16','7','115','70','0','Auchenai Death Shroud','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127879','4','4','4','41133','5','6','123','70','0','Gladiator\'s Scaled Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127880','4','4','4','41134','10','6','123','70','0','Gladiator\'s Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127881','4','4','4','41135','1','6','123','70','0','Gladiator\'s Scaled Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127882','4','4','4','41136','7','6','123','70','0','Gladiator\'s Scaled Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127883','4','4','4','41137','3','6','123','70','0','Gladiator\'s Scaled Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127884','3','4','4','42870','8','6','112','68','0','Ornate Boots of the Sanctified','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127885','3','2','19','41671','26','2','112','68','0','Soul-Wand of the Aldor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127886','3','4','8','40048','28','2','112','68','0','Idol of the Emerald Queen','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127887','3','4','6','43238','14','1','112','68','4','Platinum Shield of the Valorous','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127888','3','4','3','42889','1','5','112','68','0','Dream-Wing Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127889','3','4','1','42985','10','7','112','68','0','Jaedenfire Gloves of Annihilation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127890','3','2','19','43449','26','2','112','68','0','Wand of the Netherwing','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127891','3','4','0','40049','12','3','112','68','0','Adamantine Figurine','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127892','3','4','1','29827','16','7','112','68','0','Cloak of the Inciter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127893','3','4','4','42871','7','6','112','68','0','Ornate Leggings of the Venerated','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127895','3','4','0','35313','11','3','112','68','0','Band of Many Prisms','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127896','3','4','0','40050','12','-1','115','70','0','Alembic of Infernal Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127897','3','4','4','42863','5','6','112','68','0','Breastplate of Many Graces','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127898','3','2','3','41432','26','1','112','68','0','Wrathfire Hand-Cannon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127899','3','2','7','41787','21','1','115','70','3','Mana Wrath','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127900','3','4','0','40051','12','3','112','68','0','Jewel of Charismatic Mystique','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127901','3','2','4','41780','13','2','112','68','3','Blackout Truncheon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127902','3','4','1','42982','8','7','115','70','0','Silent Slippers of Meditation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127903','3','2','6','40367','17','1','115','70','2','Sonic Spear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127904','3','4','0','39125','11','-1','115','70','0','Resounding Ring of Glory','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127905','3','2','7','41781','21','1','115','70','3','Greatsword of Horrid Dreams','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127906','3','4','4','42845','5','6','115','70','0','Crimsonforge Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127907','3','4','1','43076','7','7','115','70','0','Mana-Etched Pantaloons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127908','3','4','2','42413','7','8','115','70','0','Leggings of Assassination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127909','3','4','3','42572','7','5','115','70','0','Tidefury Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127910','3','4','6','42285','14','6','115','70','4','Silvermoon Crest Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127911','3','4','2','43021','6','8','115','70','0','Epoch\'s Whispering Cinch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127912','3','4','3','42944','5','5','115','70','0','Harness of the Deep Currents','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127913','3','2','15','43097','13','1','115','70','3','Whispering Blade of Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127914','3','4','2','42972','8','8','112','68','0','Moonstrider Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127915','3','4','3','42894','8','5','112','68','0','Sky-Hunter Swift Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127916','3','2','16','38370','25','1','112','68','0','Sethekk Feather-Darts','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127917','3','4','7','34961','28','2','112','68','0','Libram of the Eternal Rest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127918','3','4','4','42847','9','6','112','68','0','Bands of Syth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127919','3','4','1','43003','8','7','112','68','0','Light-Woven Slippers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127920','3','4','0','38571','12','4','91','62','0','Mark of Conquest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127921','3','4','0','38572','12','4','91','62','0','Mark of Conquest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127922','3','4','0','31603','12','4','91','62','0','Mark of Defiance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127924','3','4','0','31603','12','4','91','62','0','Mark of Defiance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127925','3','4','0','24022','11','5','115','68','0','Ravenclaw Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127926','3','4','0','38556','12','4','91','62','0','Mark of Vindication','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127927','3','4','0','38556','12','4','91','62','0','Mark of Vindication','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127928','3','2','16','38679','25','1','91','62','0','Terminal Edge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127929','3','2','16','38679','25','1','91','62','0','Terminal Edge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127930','3','2','2','28827','15','2','91','62','0','Splintermark','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127931','3','2','2','28827','15','2','91','62','0','Splintermark','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127936','3','4','3','43055','7','5','115','68','0','Greaves of Desolation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127937','3','2','4','39833','21','2','115','68','3','Sky Breaker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127938','3','4','2','44904','1','8','115','70','0','Savage Mask of the Lynx Lord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127939','3','2','19','44558','26','2','91','62','0','Incendic Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127940','1','4','0','32008','2','-1','70','0','0','Marvelous Madstone of Immortality','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127941','1','4','0','4841','2','-1','30','1','0','Compassionate Critter\'s Friend','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127942','3','2','19','44558','26','2','91','62','0','Incendic Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127944','1','4','0','31889','2','-1','60','0','0','Talisman of True Treasure Tracking','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127945','1','4','0','9860','2','-1','20','1','0','Shark\'s Tooth of Bona Fide Fluidic Mobility','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127946','3','4','1','43099','16','7','115','68','0','Avian Cloak of Feathers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127947','3','4','9','25246','28','2','91','62','0','Totem of Impact','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127948','3','4','1','42448','7','7','115','68','0','Trousers of Oblivion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127949','3','4','7','34961','28','2','91','62','0','Libram of Zeal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127976','1','4','0','6510','2','-1','40','0','0','Polished Pendant of Edible Energy','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127977','3','4','4','42363','7','6','115','68','0','Legplates of the Bold','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127978','1','4','0','9858','2','-1','1','1','0','Soap on a Rope','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127979','1','4','0','31603','2','-1','10','0','0','Stone of Stupendous Springing Strides','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127980','3','2','4','41871','13','2','115','68','3','Terokk\'s Nightmace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127981','3','4','1','31351','16','7','115','68','0','Sethekk Oracle Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127982','1','4','0','6484','2','-1','50','0','0','Charm of Potent and Powerful Passions','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127983','3','4','7','34961','28','2','91','62','0','Libram of Zeal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127984','3','4','9','25246','28','2','91','62','0','Totem of Impact','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127985','3','4','4','43042','6','6','115','68','0','Deathforge Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127986','3','2','1','39958','17','1','115','68','1','Crow Wing Reaper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127987','3','2','2','41791','15','2','112','68','0','Melmorta\'s Twilight Longbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127988','3','4','1','43100','16','7','112','68','0','Burnoose of Shifting Ages','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127989','3','4','8','34955','28','2','91','62','0','Idol of Savagery','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127990','3','4','8','34955','28','2','91','62','0','Idol of Savagery','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127992','1','4','0','32073','2','-1','5','0','0','Infallible Tikbalang Ward','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127993','3','4','3','44874','1','5','112','68','0','Mask of Inner Fire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127994','3','4','1','42900','3','7','112','68','0','Mantle of Three Terrors','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127995','3','4','2','43019','3','8','112','68','0','Sun-Gilded Shouldercaps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('127996','3','4','0','39128','11','3','112','68','0','Ring of Spiritual Precision','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128026','2','4','1','44599','16','7','96','0','0','Crazy Cenarion Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128027','2','4','0','39689','2','5','96','0','0','Lunatic\'s Choker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128028','2','4','2','28247','9','8','96','0','0','Moonstruck Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128029','3','4','1','19915','9','7','94','0','0','Goldenvine Wraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128030','3','4','1','39271','16','7','97','0','0','Spell-slinger\'s Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128031','3','4','1','39277','16','7','97','0','0','Nomad\'s Woven Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128032','3','4','1','39279','16','7','97','0','0','Delicate Green Poncho','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128033','3','2','10','40838','17','2','112','68','2','Epoch-Mender','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128034','3','4','0','43101','12','-1','112','68','0','Hourglass of the Unraveller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128040','3','4','0','38671','12','3','88','0','0','Vengeance of the Illidari','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128041','3','4','0','38671','12','3','88','0','0','Bladefist\'s Breadth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128042','3','4','0','38671','12','3','88','0','0','Regal Protectorate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128043','2','4','0','36755','2','3','90','0','0','Demon Stalker Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128044','2','4','0','38674','11','4','90','0','0','Band of the Demon Stalker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128045','2','4','1','23031','16','7','90','0','0','Cloak of the Demon Stalker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128050','3','4','2','8660','5','8','85','0','0','Sacred Feather Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128051','3','4','2','27739','5','8','85','0','0','Jerkin of the Untamed Spirit','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128052','3','4','1','27866','5','7','85','0','0','Goldweave Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128054','3','4','4','26871','5','6','85','0','0','Fleshripper\'s Bladed Chestplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128055','3','4','4','38359','5','6','85','0','0','Gilded Crimson Chestplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128057','3','4','3','25742','5','5','85','0','0','Bonechewer Berserker\'s Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128062','2','2','18','40715','26','2','93','0','0','Expedition Repeater','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128063','2','2','19','28747','26','2','93','0','0','Survivalist\'s Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128064','2','4','8','39635','28','2','93','0','0','Idol of the Wild','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128065','2','4','7','34961','28','2','93','0','0','Libram of Wracking','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128066','2','4','9','34957','28','2','93','0','0','Totem of Lightning','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128069','3','4','4','38711','8','5','91','0','0','Golden Cenarion Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128070','3','4','3','30862','10','5','91','0','0','Verdant Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128074','3','4','2','19912','8','8','91','0','0','Studded Green Anklewraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128075','3','4','1','33841','3','7','91','0','0','Destroyers\' Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128108','3','4','0','15853','12','4','97','0','0','Power Infused Mushroom','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128109','3','4','0','15853','12','4','97','0','0','Essence Infused Mushroom','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128111','3','4','0','38766','0','-1','100','0','0','Everlasting Underspore Frond','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128121','3','4','0','40037','12','-1','115','70','0','Icon of Unyielding Courage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128124','3','4','2','42947','6','8','115','70','0','Liar\'s Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128126','4','4','2','41443','10','8','123','70','0','Gladiator\'s Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128127','4','4','2','47172','1','8','123','70','0','Gladiator\'s Dragonhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128128','4','4','2','41445','7','8','123','70','0','Gladiator\'s Dragonhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128129','4','4','2','41758','3','8','123','70','0','Gladiator\'s Dragonhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128130','4','4','2','41446','5','8','123','70','0','Gladiator\'s Dragonhide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128134','3','4','0','43423','2','3','112','68','0','Brooch of Heightened Potential','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128136','4','4','2','41443','10','8','123','70','0','Gladiator\'s Wyrmhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128137','4','4','2','47172','1','8','123','70','0','Gladiator\'s Wyrmhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128138','4','4','2','41445','7','8','123','70','0','Gladiator\'s Wyrmhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128139','4','4','2','41758','3','8','123','70','0','Gladiator\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128140','4','4','2','41446','5','8','123','70','0','Gladiator\'s Wyrmhide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128141','2','4','1','16554','6','7','15','0','0','Ranger\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128142','2','4','2','17113','6','8','15','0','0','Farstrider\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128143','2','4','3','6864','6','5','15','0','0','Rusted Chain Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128144','2','4','1','20476','10','7','12','0','0','Troll Handler Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128145','2','4','2','17051','10','8','13','0','0','Tranquillien Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128146','2','4','1','16918','9','7','10','0','0','Courier\'s Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128147','2','4','2','28045','9','8','10','0','0','Tranquillien Scout\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128148','2','4','3','22685','9','5','10','0','0','Bronze Mail Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128149','2','4','2','7560','7','8','11','0','0','Tranquillien Breeches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128150','2','4','1','15248','16','7','13','0','0','Renzithen\'s Dusty Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128151','2','2','19','28159','26','2','14','0','0','Arcanist\'s Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128152','2','2','2','20550','15','2','11','0','0','Quel\'Thalas Recurve','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128153','2','4','6','18659','14','1','12','0','4','Farstrider\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128154','2','4','1','14458','7','7','16','0','0','Red Silk Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128155','2','4','1','4511','6','7','17','12','0','Apothecary\'s Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128156','2','4','1','28056','10','7','17','0','0','Rotting Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128157','2','4','2','16868','5','8','16','0','0','Black Leather Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128158','2','4','2','28012','6','8','17','12','0','Batskin Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128159','2','4','2','28046','10','8','17','0','0','Undertaker\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128160','2','4','3','11563','5','5','16','0','0','An\'telas Scale Shirt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128161','2','4','3','4339','7','5','16','0','0','Tranquillien Scale Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128162','2','4','3','6864','6','5','17','12','0','Tranquillien Defender\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128163','2','4','3','6905','10','5','17','0','0','Maltendis\'s Handguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128164','2','2','8','20087','17','1','15','10','1','Tranquillien Flamberge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128166','3','4','6','20900','14','6','97','64','4','Shield of the Void','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128167','3','4','4','28824','9','6','115','0','0','Sha\'tari Wrought Armguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128168','3','4','0','39210','2','3','103','0','0','Insignia of the Mag\'hari Hero','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128169','3','4','1','41972','1','7','103','0','0','Mag\'hari Ritualist\'s Horns','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128170','3','4','3','24793','9','5','115','0','0','Auchenai Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128171','3','4','2','31620','9','8','115','0','0','Spymistress\'s Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128172','3','4','2','31639','5','8','103','0','0','Mag\'hari Scout\'s Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128173','3','4','3','39666','7','5','103','0','0','Mag\'hari Huntsman\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128174','3','4','1','4607','9','7','115','0','0','Shattrath Wraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128175','3','4','4','32167','7','6','103','0','0','Mag\'hari Warlord\'s Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128176','3','4','4','38702','8','-1','115','0','0','Sha\'tari Wrought Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128177','3','4','3','32755','8','5','115','0','0','Auchenai Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128178','3','4','2','11571','8','8','115','0','0','Spymistress\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128179','3','4','1','31140','8','7','115','0','0','Shattrath Jumpers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128180','3','4','4','32900','1','6','115','0','0','Myrmidon\'s Headdress','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128181','3','4','3','42213','1','5','115','0','0','Earthwarden\'s Coif','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128182','3','4','2','33901','1','8','115','0','0','Helm of the Claw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128183','3','4','1','34690','1','7','115','0','0','Hydromancer\'s Headwrap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128184','3','2','7','41782','13','1','112','68','3','Millennium Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128185','3','4','1','42980','7','7','112','68','0','Khadgar\'s Kilt of Abjuration','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128186','3','4','3','43011','5','5','112','68','0','Laughing Skull Battle-Harness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128187','3','4','0','43102','23','3','112','68','7','Star-Heart Lamp','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128188','3','2','10','37290','17','2','115','70','2','Bloodfire Greatstaff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128189','3','2','7','41417','13','1','115','70','3','Latro\'s Shifting Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128190','3','4','0','43103','12','-1','115','70','0','Scarab of the Infinite Cycle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128191','3','4','1','43075','20','7','115','70','0','Mana-Etched Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128192','3','4','3','43057','1','5','115','70','0','Helm of Desolation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128193','3','4','1','43759','1','7','115','70','0','Mana-Etched Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128194','3','4','3','42939','9','5','115','70','0','Primal Surge Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128202','3','4','2','42456','20','8','115','70','0','Moonglade Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128203','3','4','4','42352','5','6','115','70','0','Breastplate of the Righteous','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128204','3','4','2','42411','5','8','115','70','0','Tunic of Assassination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128205','3','4','4','42359','5','6','115','70','0','Breastplate of the Bold','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128206','3','4','2','44609','1','8','115','70','0','Cowl of the Guiltless','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128207','3','4','4','42846','3','6','115','70','0','Pauldrons of the Crimson Flight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128210','3','2','4','42212','13','2','115','70','3','Bloodskull Destroyer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128211','3','4','0','43104','11','3','115','70','0','Lieutenant\'s Signet of Lordaeron','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128212','3','4','1','43028','7','7','115','70','0','Aran\'s Sorcerous Slacks','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128213','3','4','0','42566','23','7','115','70','7','Lordaeron Medical Guide','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128214','3','4','2','42971','10','8','115','70','0','Grips of the Lunar Eclipse','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128215','3','4','3','43013','1','5','115','70','0','Mok\'Nathal Mask of Battle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128216','3','2','4','41783','21','2','115','70','3','Dathrohan\'s Ceremonial Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128217','3','4','0','43105','2','3','115','70','0','Tarren Mill Vitality Locket','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128218','3','4','1','43002','7','7','115','70','0','Pontiff\'s Pantaloons of Prophecy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128219','3','4','3','42892','7','5','115','70','0','Emerald-Scale Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128220','3','4','2','64903','1','8','115','70','0','Moon-Crown Antlers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128221','3','4','4','42864','8','6','115','70','0','Boots of the Watchful Heart','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128222','3','2','1','41784','17','1','115','70','1','Reaver of the Infinites','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128223','3','4','0','43108','12','-1','115','70','0','Arcanist\'s Stone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128224','3','4','2','47897','1','8','115','70','0','Wastewalker Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128225','3','4','4','43040','1','6','115','70','0','Doomplate Warhelm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128226','3','2','15','42560','13','1','115','70','3','Timeslicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128227','3','4','0','39124','11','5','115','70','0','Sparking Arcanite Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128228','3','4','3','42579','5','5','115','70','0','Beast Lord Cuirass','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128229','3','4','1','42367','20','7','115','70','0','Incanter\'s Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128230','3','4','1','42574','20','7','115','70','0','Hallowed Garments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128231','3','4','3','42567','5','5','115','70','0','Tidefury Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128232','3','4','1','42449','20','7','115','70','0','Robe of Oblivion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128233','3','4','0','31889','2','3','115','70','0','Necklace of Resplendent Hope','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128234','3','4','0','37840','12','4','115','70','0','Medallion of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128235','3','4','0','37840','12','4','115','70','0','Medallion of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128236','3','4','0','37840','12','4','115','70','0','Medallion of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128237','3','4','0','37840','12','4','115','70','0','Medallion of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128238','3','4','0','37840','12','4','115','70','0','Medallion of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128239','3','4','0','37841','12','4','115','70','0','Medallion of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128240','3','4','0','37841','12','4','115','70','0','Medallion of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128241','3','4','0','37841','12','4','115','70','0','Medallion of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128242','3','4','0','37841','12','4','115','70','0','Medallion of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128243','3','4','0','37841','12','4','115','70','0','Medallion of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128244','4','4','0','39162','2','5','113','70','0','Pendant of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128245','4','4','0','39162','2','5','113','70','0','Pendant of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128246','3','4','0','39129','11','5','100','70','0','Band of Triumph','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128247','3','4','0','39129','11','5','100','70','0','Band of Dominance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128248','3','4','9','43109','28','2','115','70','0','Totem of the Void','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128249','3','4','1','43110','16','7','115','70','0','Capacitus\' Cloak of Calibration','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128250','3','4','1','43004','3','7','115','70','0','Vestia\'s Pauldrons of Inner Grace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128251','3','4','2','42961','8','8','115','70','0','Boots of the Glade-Keeper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128252','3','4','1','43029','20','7','115','70','0','Bloodfyre Robes of Annihilation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128253','3','2','6','41554','17','1','115','70','2','Plasma Rat\'s Hyper-Scythe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128254','3','4','0','35437','2','3','115','70','0','Warp Engineer\'s Prismatic Chain','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128255','3','4','2','42974','3','8','115','70','0','Lunar-Claw Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128256','3','4','1','26431','16','7','115','70','0','Thoriumweave Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128257','3','2','4','41785','21','2','115','70','3','Hammer of the Penitent','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128258','3','2','16','43111','25','1','115','70','0','Nethershrike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128259','3','4','0','39121','11','3','115','70','0','Cosmic Lifeband','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128260','3','4','0','42564','23','7','115','70','7','Manual of the Nethermancer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128262','3','4','4','42838','5','6','115','70','0','Jade-Skull Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128263','3','2','0','41786','13','1','115','70','3','Stellaris','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128264','3','4','2','43069','5','8','115','70','0','Wastewalker Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128265','3','4','0','41448','11','3','115','70','0','Dath\'Remar\'s Ring of Defense','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128266','3','4','3','42919','7','5','115','70','0','Molten Earth Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128267','3','2','7','40855','13','1','115','70','3','Edge of the Cosmos','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128268','3','4','2','42963','10','8','115','70','0','Natural Mender\'s Wraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128269','3','4','1','41396','16','7','115','70','0','Baba\'s Cloak of Arcanistry','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128275','3','4','3','48247','1','5','115','70','0','Beast Lord Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128278','3','4','1','42370','1','-1','115','70','0','Incanter\'s Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128285','3','4','4','42353','1','6','115','70','0','Helm of the Righteous','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128286','3','2','3','41433','26','1','115','70','0','Telescopic Sharprifle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128288','3','4','0','41449','12','-1','115','70','0','Abacus of Violent Odds','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128293','3','2','8','42069','17','1','115','70','1','High Warlord\'s Claymore','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128294','4','2','18','42385','26','2','123','70','0','Gladiator\'s Heavy Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128295','4','2','7','42379','13','1','123','70','3','Gladiator\'s Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128296','3','4','7','39650','28','2','115','70','0','Libram of the Lightbringer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128297','4','2','15','67267','21','1','123','70','3','Gladiator\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128298','4','2','1','41560','17','1','123','70','1','Gladiator\'s Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128299','4','2','5','41558','17','1','123','70','1','Gladiator\'s Bonegrinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128300','4','2','6','41562','17','1','123','70','1','Gladiator\'s Painsaw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128301','3','4','1','35430','16','7','115','70','0','Syrannis\' Mystic Sheen','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128302','4','2','4','39278','22','1','123','70','3','Gladiator\'s Bonecracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128303','2','4','0','28682','11','4','21','0','0','Invoker\'s Signet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128304','3','4','1','43005','10','7','115','70','0','Prismatic Mittens of Mending','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128305','4','2','4','39278','13','1','123','70','3','Gladiator\'s Pummeler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128306','3','4','3','43014','3','5','115','70','0','Towering Mantle of the Hunt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128307','4','2','7','42379','22','1','123','70','3','Gladiator\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128308','4','2','0','41559','13','1','123','70','3','Gladiator\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128309','4','2','0','41559','22','1','123','70','3','Gladiator\'s Hacker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128310','4','2','15','42380','22','1','123','70','3','Gladiator\'s Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128311','3','2','7','40856','13','1','115','70','3','Revenger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128312','4','2','15','42380','13','1','123','70','3','Gladiator\'s Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128313','4','2','13','42759','21','1','123','70','7','Gladiator\'s Right Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128314','4','2','13','42760','22','1','123','70','7','Gladiator\'s Left Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128315','3','2','13','42173','22','1','115','70','7','Stormreaver Warblades','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128316','3','4','6','43239','14','1','115','70','4','Aegis of the Sunbird','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128317','3','4','1','42984','10','7','115','70','0','Energis Armwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128318','3','4','4','43043','8','6','115','70','0','Obsidian Clodstompers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128319','4','2','16','38679','25','1','123','70','0','Gladiator\'s War Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128320','4','2','19','46606','26','2','123','70','0','Gladiator\'s Touch of Defeat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128321','3','4','0','33808','2','3','115','70','0','Enchanted Thorium Torque','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128322','3','2','15','43112','21','1','115','70','3','Runed Dagger of Solace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128323','3','4','0','24022','11','5','115','70','0','Ring of Umbral Doom','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128324','3','4','4','42849','10','6','115','70','0','Gauntlets of Cruel Intention','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128325','3','2','10','40355','17','2','115','70','2','Dreamer\'s Dragonstaff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128327','3','4','0','39121','11','5','115','70','0','Arcane Netherband','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128328','3','4','1','43113','16','7','115','70','0','Mithril-Bark Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128331','4','4','3','42882','1','5','123','70','0','Gladiator\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128332','4','4','3','40626','7','5','123','70','0','Gladiator\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128333','4','4','3','40628','3','5','123','70','0','Gladiator\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128334','4','4','3','40623','5','5','123','70','0','Gladiator\'s Chain Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128335','4','4','3','40624','10','5','123','70','0','Gladiator\'s Chain Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128337','3','4','4','42873','5','6','115','70','0','Breastplate of Righteous Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128338','3','4','1','42904','7','7','115','70','0','Devil-Stitched Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128339','3','4','2','43071','8','8','115','70','0','Boots of the Shifting Sands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128340','3','4','2','42964','3','8','115','70','0','Mantle of Autumn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128341','3','2','10','41788','17','2','115','70','2','Warpstaff of Arcanum','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128342','3','4','1','30868','20','7','115','70','0','Warp Infused Drape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128343','3','4','0','31899','2','3','115','70','0','Jagged Bark Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128344','3','4','3','42895','3','5','115','70','0','Wyrmfury Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128345','3','2','15','43917','13','1','115','70','3','Warp Splinter\'s Thorn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128346','4','4','0','39505','23','3','123','70','7','Gladiator\'s Endgame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128347','3','4','2','43114','7','8','115','70','0','Warpscale Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128348','3','4','2','44610','1','8','115','70','0','Moonglade Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128349','3','4','3','42571','1','5','115','70','0','Tidefury Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128350','3','4','4','42362','1','6','115','70','0','Warhelm of the Bold','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128355','4','4','8','34953','28','2','115','70','0','Gladiator\'s Idol of Tenacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128356','4','4','7','34960','28','2','115','70','0','Gladiator\'s Libram of Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128357','4','4','9','25246','28','2','115','70','0','Gladiator\'s Totem of the Third Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128358','4','4','6','42376','14','1','123','70','4','Gladiator\'s Shield Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128367','3','2','8','41789','17','1','115','70','1','Greatsword of Forlorn Visions','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128370','3','4','0','40413','12','-1','115','70','0','Bangle of Endless Blessings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128371','3','4','1','43115','16','7','115','70','0','Netherfury Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128372','3','4','8','43117','28','2','115','70','0','Idol of Feral Shadows','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128373','3','4','1','23119','16','7','115','70','0','Cloak of Scintillating Auras','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128374','3','4','1','42983','3','7','115','70','0','Mana-Sphere Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128375','3','4','4','42848','6','6','115','70','0','Rubium War-Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128377','4','4','1','27088','16','7','123','70','0','Sergeant\'s Heavy Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128378','4','4','1','27088','16','7','123','70','0','Sergeant\'s Heavy Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128379','4','4','1','27088','16','7','123','70','0','Sergeant\'s Heavy Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128380','4','4','1','27088','16','7','123','70','0','Sergeant\'s Heavy Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128381','4','4','4','30369','9','6','113','70','0','General\'s Plate Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128383','4','4','4','39546','8','6','123','70','0','General\'s Plate Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128384','3','4','3','43059','8','5','115','70','0','Outland Striders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128385','4','4','4','39544','6','6','123','70','0','General\'s Plate Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128386','3','2','19','44799','26','2','115','70','0','Nether Core\'s Control Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128387','3','4','0','21962','23','3','115','70','3','Lamp of Peaceful Repose','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128390','3','4','4','42837','10','-1','115','70','0','Thatia\'s Self-Correcting Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128391','3','4','3','42918','5','5','115','70','0','Worldfire Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128392','3','2','13','42174','21','1','115','70','7','Reflex Blades','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128393','3','2','5','39847','17','1','115','70','1','Warmaul of Infused Light','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128394','3','4','0','35423','11','3','115','70','0','Ryngo\'s Band of Ingenuity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128396','3','4','2','42952','10','8','115','70','0','Gloves of the Unbound','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128397','3','2','18','41424','26','2','115','70','0','Emberhawk Crossbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128398','3','4','2','42962','6','8','115','70','0','The Sleeper\'s Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128400','3','2','7','41790','13','1','115','70','3','Warp-Storm Warblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128401','3','4','3','43054','5','5','115','70','0','Hauberk of Desolation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128402','4','4','1','41164','8','7','123','70','0','General\'s Dreadweave Stalkers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128403','3','4','4','43039','5','6','115','70','0','Doomplate Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128404','4','4','1','41475','6','7','123','70','0','General\'s Dreadweave Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128405','4','4','1','41255','9','7','113','70','0','General\'s Dreadweave Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128406','3','4','1','43082','8','7','115','70','0','Sigil-Laced Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128407','3','4','0','43120','11','3','115','70','0','Elementium Band of the Sentry','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128408','2','2','16','20772','25','1','37','0','0','Broken Silver Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128409','4','4','1','40090','6','7','123','70','0','General\'s Silk Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128410','4','4','1','47914','8','7','123','70','0','General\'s Silk Footguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128411','4','4','1','41265','9','7','113','70','0','General\'s Silk Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128412','3','4','0','43118','23','3','115','70','7','Lamp of Peaceful Radiance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128413','3','4','1','42764','1','-1','115','70','0','Hallowed Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128414','3','4','2','42722','1','8','115','70','0','Helm of Assassination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128415','3','4','1','44903','1','7','115','70','0','Hood of Oblivion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128416','3','2','15','43246','13','1','115','70','3','Hungering Spineripper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128418','3','4','0','43122','12','-1','115','70','0','Shiffar\'s Nexus-Horn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128419','3','4','0','35437','2','5','115','70','0','Choker of Fluid Thought','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128422','4','4','2','41480','8','8','123','70','0','General\'s Leather Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128423','4','4','2','41476','6','8','123','70','0','General\'s Leather Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128424','4','4','2','30801','9','8','113','70','0','General\'s Leather Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128425','4','2','7','41118','13','1','107','70','3','Fireguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128426','4','2','7','41390','13','1','123','70','3','Blazeguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128427','4','2','7','41389','13','1','136','70','3','Blazefury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128428','4','2','8','39570','17','1','107','70','1','Lionheart Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128429','4','2','8','39572','17','1','123','70','1','Lionheart Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128430','4','2','8','39571','17','1','136','70','1','Lionheart Executioner','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128431','4','2','0','41628','13','1','107','70','3','The Planar Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128432','4','2','0','41629','13','1','123','70','3','Black Planar Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128433','4','2','0','41630','13','1','136','70','3','Wicked Edge of the Planes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128434','4','2','1','39576','17','1','107','70','1','Lunar Crescent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128435','4','2','1','39577','17','1','123','70','1','Mooncleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128436','4','2','1','39578','17','1','136','70','1','Bloodmoon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128437','4','2','4','39579','13','1','107','70','3','Drakefist Hammer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128438','4','2','4','45769','13','1','123','70','3','Dragonmaw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128439','4','2','4','39581','13','1','136','70','3','Dragonstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128440','4','2','5','39582','17','1','107','70','1','Thunder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128441','4','2','5','39583','17','1','123','70','1','Deep Thunder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128442','4','2','5','39584','17','1','136','70','1','Stormherald','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128443','4','4','2','41474','6','8','123','70','0','General\'s Dragonhide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128444','4','4','2','41478','8','8','123','70','0','General\'s Dragonhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128445','4','4','2','41253','9','8','113','70','0','General\'s Dragonhide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128446','4','4','2','41474','6','8','123','70','0','General\'s Wyrmhide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128447','4','4','2','41482','8','8','123','70','0','General\'s Wyrmhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128448','4','4','2','41253','9','8','113','70','0','General\'s Wyrmhide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128449','4','4','3','40631','8','5','123','70','0','General\'s Chain Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128450','4','4','3','40630','6','5','123','70','0','General\'s Chain Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128451','4','4','3','41250','9','5','113','70','0','General\'s Chain Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128453','4','4','2','40492','9','8','115','70','0','Bracers of the White Stag','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128454','4','4','3','40494','9','5','115','70','0','Stalker\'s War Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128476','4','2','5','41558','17','1','123','70','1','Gladiator\'s Maul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128477','4','4','1','40489','9','7','115','70','0','Harbinger Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128483','4','4','4','39661','5','-1','107','70','0','Breastplate of Kings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128484','4','4','4','39660','5','-1','127','70','0','Bulwark of Kings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128485','4','4','4','39659','5','-1','146','70','0','Bulwark of the Ancient Kings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128491','3','4','1','39368','8','7','94','63','0','Windwalker\'s Footwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128492','3','4','2','39694','8','7','94','63','0','Talonite\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128493','3','4','3','39706','8','7','94','63','0','Dreadhawk\'s Schynbald','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128494','3','4','4','39709','8','7','94','63','0','Ravenguard\'s Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128495','2','4','1','39700','6','7','99','63','0','Windwalker\'s Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128496','2','4','2','39701','6','7','99','63','0','Talonite\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128497','2','4','3','39705','6','7','99','63','0','Dreadhawk\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128498','2','4','4','39708','6','7','99','63','0','Ravenguard\'s Baldric','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128502','4','4','4','40496','9','6','115','70','0','Vambraces of Courage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128503','4','4','3','40495','9','5','115','70','0','Whirlwind Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128504','4','2','18','41421','26','2','115','70','0','Steelhawk Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128505','4','4','4','45870','10','1','115','70','0','Gauntlets of Renewed Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128506','4','4','2','43427','10','8','115','70','0','Gloves of Dexterous Manipulation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128507','4','4','1','43428','10','7','115','70','0','Handwraps of Flowing Thought','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128508','4','4','1','43429','10','7','115','70','0','Gloves of Saintly Blessings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128509','4','4','0','34034','2','4','115','70','0','Worgen Claw Necklace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128510','4','4','0','24646','11','3','115','70','0','Spectral Band of Innervation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128511','4','4','1','40490','9','7','115','70','0','Bands of Indwelling','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128512','4','4','4','40497','9','1','115','70','0','Bracers of Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128514','4','4','2','42248','9','8','115','70','0','Bracers of Maliciousness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128515','4','4','1','40491','9','7','115','70','0','Bands of Nefarious Deeds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128516','4','4','0','34274','2','4','115','70','0','Barbed Choker of Discipline','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128517','4','4','1','42327','8','7','115','70','0','Boots of Foretelling','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128518','4','4','4','45860','10','6','115','70','0','Iron Gauntlets of the Maiden','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128519','4','4','3','45878','10','5','115','70','0','Gloves of Quickening','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128520','4','4','3','45877','10','5','115','70','0','Gloves of Centering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128521','4','4','2','43441','10','8','115','70','0','Mitts of the Treemender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128522','4','2','4','45798','21','1','115','70','3','Shard of the Virtuous','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128523','4','4','9','43430','28','2','115','70','0','Totem of Healing Rains','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128524','4','2','15','37063','13','1','115','70','3','Emerald Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128525','4','4','0','41657','23','3','115','70','0','Signet of Unshakable Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128528','4','4','0','43431','12','4','115','70','0','Moroes\' Lucky Pocket Watch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128529','4','4','1','34337','16','7','115','70','0','Royal Cloak of Arathi Kings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128530','4','4','0','34303','2','3','115','70','0','Brooch of Unquenchable Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128531','2','2','16','39991','25','2','81','57','0','Barbed Shrike','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128532','2','2','16','39992','25','2','84','58','0','Silver Throwing Knives','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128533','2','2','16','41459','25','2','87','59','0','Wooden Boomerang','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128534','2','2','16','39995','25','2','90','60','0','Fel Tipped Dart','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128535','2','2','16','39996','25','2','93','61','0','Amani Throwing Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128536','2','2','16','39997','25','2','96','62','0','Jagged Guillotine','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128537','2','2','16','39998','25','2','99','63','0','Wildhammer Throwing Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128538','2','2','16','39999','25','2','102','64','0','Forked Shuriken','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128539','2','2','16','44586','25','2','105','65','0','Razor-Edged Boomerang','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128540','2','2','16','40001','25','2','108','66','0','Arakkoa Talon-Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128541','2','2','16','40002','25','2','111','67','0','Sawshrike','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128542','2','2','16','40003','25','2','114','68','0','Heartseeker Knives','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128543','2','2','16','40004','25','2','117','69','0','Dreghood Throwing Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128544','2','2','16','40005','25','2','120','70','0','Assassin\'s Shuriken','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128545','4','4','2','43442','8','8','115','70','0','Edgewalker Longboots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128553','4','4','0','39129','11','5','95','67','0','Band of the Exorcist','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128555','4','4','0','39129','11','5','95','67','0','Seal of the Exorcist','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128559','3','4','4','27338','1','6','100','66','0','Exorcist\'s Plate Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128560','3','4','4','27338','1','6','100','66','0','Exorcist\'s Lamellar Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128561','3','4','2','37894','1','8','100','66','0','Exorcist\'s Leather Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128565','4','4','1','40507','6','7','115','70','0','Nethershard Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128566','4','4','4','40515','6','1','115','70','0','Crimson Girdle of the Indomitable','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128567','4','4','3','40513','6','5','115','70','0','Belt of Gale Force','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128568','4','4','8','43434','28','2','115','70','0','Idol of the Avian Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128569','4','4','4','42332','8','1','115','70','0','Boots of Valiance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128570','4','4','1','34239','16','7','115','70','0','Shadow-Cloak of Dalaran','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128572','4','2','15','42286','13','1','115','70','3','Blade of the Unrequited','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128573','4','2','8','39957','17','1','115','70','1','Despair','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128574','3','4','2','37894','1','8','100','66','0','Exorcist\'s Dragonhide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128575','3','4','2','37894','1','8','100','66','0','Exorcist\'s Wyrmhide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128576','3','4','3','32133','1','5','100','66','0','Exorcist\'s Chain Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128577','3','4','3','32133','1','5','100','66','0','Exorcist\'s Linked Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128578','4','4','1','43448','20','7','115','70','0','Masquerade Gown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128579','4','4','0','39888','12','4','115','70','0','Romulo\'s Poison Vial','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128581','4','2','3','41430','26','1','115','70','0','Wolfslayer Sniper Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128582','4','4','1','38976','16','7','115','70','0','Red Riding Hood\'s Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128583','4','4','3','31117','1','5','115','70','0','Big Bad Wolf\'s Head','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128584','4','2','13','30595','21','1','115','70','7','Big Bad Wolf\'s Paw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128585','4','4','1','39899','8','7','115','70','0','Ruby Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128586','4','4','1','45369','1','7','115','70','0','Wicked Witch\'s Hat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128587','4','2','1','39421','17','1','115','70','1','Legacy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128588','4','2','19','43491','26','2','115','70','0','Blue Diamond Witchwand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128589','4','4','3','45856','3','5','115','70','0','Beastmaw Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128590','4','4','0','43456','12','4','115','70','0','Ribbon of Sacrifice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128591','4','4','2','43451','7','8','115','70','0','Earthsoul Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128592','4','4','7','34959','28','2','115','70','0','Libram of Souls Redeemed','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128593','4','4','4','45858','1','-1','115','70','0','Eternium Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128594','4','4','1','43453','7','7','115','70','0','Trial-Fire Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128597','4','4','4','45864','5','1','115','70','0','Panzar\'Thar Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128599','4','4','3','45881','5','5','115','70','0','Scaled Breastplate of Carnage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128600','4','4','2','43462','5','8','115','70','0','Stonebough Jerkin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128601','4','4','2','43463','5','8','115','70','0','Chestguard of the Conniver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128602','4','4','1','43469','20','7','115','70','0','Robe of the Elder Scribes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128603','4','4','0','42562','23','3','115','70','0','Talisman of Nightbane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128604','4','2','10','40899','17','2','115','70','2','Nightstaff of the Everliving','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128605','4','4','3','41259','9','5','113','70','0','General\'s Linked Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128606','4','4','6','40865','14','6','115','70','4','Shield of Impenetrable Darkness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128608','4','4','4','45861','8','6','115','70','0','Ironstriders of Urgency','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128609','4','4','0','31899','2','4','115','70','0','Emberspur Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128610','4','4','3','45876','8','5','115','70','0','Ferocious Swift-Kickers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128611','4','4','6','42406','14','6','115','70','4','Dragonheart Flameshield','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128612','4','4','1','45873','3','7','115','70','0','Pauldrons of the Solace-Giver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128613','3','4','3','41196','5','5','115','70','0','Grand Marshal\'s Chain Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128614','3','4','3','41198','10','5','115','70','0','Grand Marshal\'s Chain Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128615','3','4','3','41200','1','5','115','70','0','Grand Marshal\'s Chain Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128616','3','4','3','41201','7','5','115','70','0','Grand Marshal\'s Chain Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128617','3','4','3','41202','3','5','115','70','0','Grand Marshal\'s Chain Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128618','3','4','2','43573','10','8','115','70','0','Grand Marshal\'s Dragonhide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128619','3','4','2','41796','1','8','115','70','0','Grand Marshal\'s Dragonhide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128620','3','4','2','41210','7','8','115','70','0','Grand Marshal\'s Dragonhide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128621','4','4','4','45867','7','1','115','70','0','Wrynn Dynasty Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128622','3','4','2','41211','3','8','115','70','0','Grand Marshal\'s Dragonhide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128623','3','4','2','41212','5','8','115','70','0','Grand Marshal\'s Dragonhide Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128624','3','4','1','41203','10','7','115','70','0','Grand Marshal\'s Dreadweave Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128625','3','4','1','42194','1','7','115','70','0','Grand Marshal\'s Dreadweave Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128626','3','4','1','41205','7','7','115','70','0','Grand Marshal\'s Dreadweave Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128627','3','4','1','41206','3','7','115','70','0','Grand Marshal\'s Dreadweave Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128628','3','4','1','41207','20','7','115','70','0','Grand Marshal\'s Dreadweave Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128629','4','4','3','41477','6','5','123','70','0','General\'s Linked Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128630','4','4','3','41481','8','5','123','70','0','General\'s Linked Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128631','4','4','3','45882','3','5','115','70','0','Dragon-Quake Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128633','4','2','10','40370','17','2','115','70','2','Staff of Infinite Mysteries','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128638','4','4','3','41259','9','5','113','70','0','General\'s Mail Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128639','4','4','3','41477','6','5','123','70','0','General\'s Mail Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128640','4','4','3','41481','8','5','123','70','0','General\'s Mail Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128641','4','4','4','41165','6','6','123','70','0','General\'s Lamellar Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128642','4','4','4','41167','8','6','123','70','0','General\'s Lamellar Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128643','4','4','4','41257','9','6','113','70','0','General\'s Lamellar Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128644','4','4','4','41165','6','6','123','70','0','General\'s Scaled Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128645','4','4','4','41167','8','6','123','70','0','General\'s Scaled Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128646','4','4','4','41262','9','6','113','70','0','General\'s Scaled Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128647','4','4','2','43476','3','8','115','70','0','Forest Wind Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128649','4','4','0','33728','11','3','115','70','0','Garona\'s Signet Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128652','4','4','1','40509','6','7','115','70','0','Cincture of Will','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128653','4','4','1','41396','16','7','115','70','0','Shadowvine Cloak of Infusion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128654','4','4','1','40508','6','7','115','70','0','Malefic Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128655','4','4','2','40512','6','8','115','70','0','Cord of Nature\'s Sustenance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128656','4','4','3','40514','6','5','115','70','0','Girdle of the Prowler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128657','4','2','4','44823','13','1','115','70','3','Fool\'s Bane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128658','4','2','10','40369','17','2','115','70','2','Terestian\'s Stranglestaff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128659','4','2','16','45739','25','1','115','70','0','Xavian Stiletto','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128660','4','4','1','24160','16','7','115','70','0','Gilded Thorium Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128661','4','4','0','31655','11','3','115','70','0','Mender\'s Heart-Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128662','4','4','4','45868','5','1','115','70','0','Breastplate of the Lightbinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128663','4','4','1','40500','8','7','115','70','0','Boots of the Incorrupt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128666','4','4','4','45865','3','1','115','70','0','Pauldrons of the Justice-Seeker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128669','4','4','2','59593','8','8','115','70','0','Rapscallion Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128670','4','4','1','41484','8','7','115','70','0','Boots of the Infernal Coven','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128671','4','4','3','43842','1','5','115','70','0','Steelspine Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128672','4','4','1','43488','16','7','115','70','0','Drape of the Dark Reavers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128673','4','2','19','43916','26','2','115','70','0','Tirisfal Wand of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128674','4','4','0','39210','2','3','115','70','0','Saberclaw Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128675','4','4','0','26001','11','3','115','70','0','Shermanar Great-Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128679','3','4','4','38292','5','6','115','70','0','Grand Marshal\'s Lamellar Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128680','3','4','4','30321','10','6','115','70','0','Grand Marshal\'s Lamellar Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128681','3','4','4','38294','1','6','115','70','0','Grand Marshal\'s Lamellar Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128683','3','4','4','38296','3','6','115','70','0','Grand Marshal\'s Lamellar Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128684','3','4','2','41213','10','8','115','70','0','Grand Marshal\'s Leather Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128685','3','4','2','41797','1','8','115','70','0','Grand Marshal\'s Leather Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128686','3','4','2','41215','7','8','115','70','0','Grand Marshal\'s Leather Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128687','3','4','2','41216','3','8','115','70','0','Grand Marshal\'s Leather Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128688','3','4','2','41217','5','8','115','70','0','Grand Marshal\'s Leather Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128689','3','4','3','32103','5','5','115','70','0','Grand Marshal\'s Linked Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128690','3','4','3','32100','10','5','115','70','0','Grand Marshal\'s Linked Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128691','3','4','3','32133','1','5','115','70','0','Grand Marshal\'s Linked Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128692','3','4','3','32127','7','5','115','70','0','Grand Marshal\'s Linked Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128693','3','4','3','32128','3','5','115','70','0','Grand Marshal\'s Linked Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128694','3','4','3','32103','5','5','115','70','0','Grand Marshal\'s Mail Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128695','3','4','3','32100','10','5','115','70','0','Grand Marshal\'s Mail Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128696','3','4','3','32133','1','5','115','70','0','Grand Marshal\'s Mail Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128697','3','4','3','32127','7','5','115','70','0','Grand Marshal\'s Mail Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128698','3','4','3','32128','3','5','115','70','0','Grand Marshal\'s Mail Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128699','3','4','4','41183','5','6','115','70','0','Grand Marshal\'s Plate Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128700','3','4','4','26753','10','6','115','70','0','Grand Marshal\'s Plate Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128701','3','4','4','41184','1','6','115','70','0','Grand Marshal\'s Plate Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128702','3','4','4','41185','7','6','115','70','0','Grand Marshal\'s Plate Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128703','3','4','4','41186','3','6','115','70','0','Grand Marshal\'s Plate Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128704','3','4','1','41218','10','7','115','70','0','Grand Marshal\'s Satin Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128705','3','4','1','42195','1','7','115','70','0','Grand Marshal\'s Satin Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128706','3','4','1','41220','7','7','115','70','0','Grand Marshal\'s Satin Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128707','3','4','1','41221','3','7','115','70','0','Grand Marshal\'s Satin Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128708','3','4','1','41222','20','7','115','70','0','Grand Marshal\'s Satin Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128709','3','4','4','38292','5','6','115','70','0','Grand Marshal\'s Scaled Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128710','3','4','4','30321','10','6','115','70','0','Grand Marshal\'s Scaled Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128711','3','4','4','38294','1','6','115','70','0','Grand Marshal\'s Scaled Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128712','3','4','4','38295','7','6','115','70','0','Grand Marshal\'s Scaled Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128713','3','4','4','38296','3','6','115','70','0','Grand Marshal\'s Scaled Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128714','3','4','1','41187','3','7','115','70','0','Grand Marshal\'s Silk Amice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128715','3','4','1','42196','1','7','115','70','0','Grand Marshal\'s Silk Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128716','3','4','1','41189','10','7','115','70','0','Grand Marshal\'s Silk Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128717','3','4','1','41190','20','7','115','70','0','Grand Marshal\'s Silk Raiment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128718','3','4','1','41191','7','7','115','70','0','Grand Marshal\'s Silk Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128719','3','4','2','43573','10','8','115','70','0','Grand Marshal\'s Wyrmhide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128720','3','4','2','41796','1','8','115','70','0','Grand Marshal\'s Wyrmhide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128721','3','4','2','41210','7','8','115','70','0','Grand Marshal\'s Wyrmhide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128722','3','4','2','41211','3','8','115','70','0','Grand Marshal\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128723','3','4','2','41212','5','8','115','70','0','Grand Marshal\'s Wyrmhide Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128724','3','4','4','38295','7','6','115','70','0','Grand Marshal\'s Lamellar Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128726','4','4','1','45872','3','7','115','70','0','Mantle of the Mind Flayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128727','4','4','0','35400','12','4','115','70','0','Pendant of the Violet Eye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128728','4','4','0','41454','23','3','115','70','0','Aran\'s Soothing Sapphire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128729','4','2','7','41414','13','1','115','70','1','Spiteblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128730','4','4','0','28733','11','3','115','70','0','Mithril Band of the Unscarred','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128731','4','4','0','39212','2','4','115','70','0','Shining Chain of the Afterworld','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128732','4','4','2','44608','1','8','115','70','0','Cowl of Defiance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128733','4','4','4','40516','6','1','115','70','0','Girdle of Truth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128734','4','4','0','41453','23','3','115','70','0','Jewel of Infinite Possibilities','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128735','4','4','3','45875','5','5','115','70','0','Earthblood Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128740','4','4','3','45880','7','5','115','70','0','Rip-Flayer Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128741','4','4','2','43499','7','8','115','70','0','Skulker\'s Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128742','4','4','1','43500','7','7','115','70','0','Pantaloons of Repentance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128743','4','4','4','45863','3','1','115','70','0','Mantle of Abrahmis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128744','4','4','1','45874','1','7','115','70','0','Uni-Mind Headdress','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128745','4','4','0','15420','2','4','115','70','0','Mithril Chain of Heroism','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128746','4','4','3','42331','8','5','115','70','0','Fiend Slayer Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128747','4','4','4','42329','8','1','115','70','0','Battlescar Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128748','4','4','4','45862','7','1','115','70','0','Legplates of the Innocent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128749','4','2','7','41416','13','1','115','70','3','King\'s Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128750','4','4','2','40511','6','5','115','70','0','Girdle of Treachery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128751','4','4','3','45879','7','5','115','70','0','Heart-Flame Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128752','4','4','2','47479','8','8','115','70','0','Forestlord Striders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128753','4','4','0','9846','11','3','115','70','0','Ring of Recurrence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128754','4','4','6','40867','14','6','115','70','4','Triptych Shield of the Ancients','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128755','4','4','2','43511','3','8','115','70','0','Bladed Shoulderpads of the Merciless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128756','4','4','1','45871','1','7','115','70','0','Headdress of the High Potentate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128757','4','4','0','33864','11','4','125','70','0','Ring of a Thousand Marks','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128758','3','4','3','32133','1','5','100','66','0','Exorcist\'s Mail Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128759','3','4','1','37311','1','7','100','66','0','Exorcist\'s Dreadweave Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128760','3','4','1','37311','1','7','100','66','0','Exorcist\'s Silk Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128761','3','4','4','27338','1','6','100','66','0','Exorcist\'s Scaled Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128762','4','4','0','35358','2','4','125','70','0','Adornment of Stolen Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128763','4','4','0','9847','11','3','125','70','0','Jade Ring of the Everliving','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128764','4','4','1','33096','16','7','125','70','0','Farstrider Wildercloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128765','4','4','1','43292','16','7','125','70','0','Stainless Cloak of the Pure Hearted','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128766','4','4','1','38976','16','7','125','70','0','Ruby Drape of the Mysticant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128767','4','2','0','40066','13','1','125','70','3','The Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128768','4','2','15','40937','13','1','125','70','3','Malchazeen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128770','4','2','15','43098','21','1','125','70','3','Nathrezim Mindblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128771','4','2','4','40923','21','1','125','70','3','Light\'s Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128772','4','2','2','40859','15','2','125','70','0','Sunfury Bow of the Phoenix','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128773','4','2','1','40922','17','1','125','70','1','Gorehowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128774','4','2','6','40366','17','1','125','70','1','Glaive of the Pit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128775','4','4','4','44840','1','1','125','70','0','Thundering Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128776','4','4','2','43523','10','8','125','70','0','Liar\'s Tongue Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128777','4','4','1','43525','16','7','125','70','0','Cloak of the Pit Stalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128778','4','4','3','43524','6','5','125','70','0','Terror Pit Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128779','4','4','4','43522','6','1','125','70','0','Girdle of the Endless Pit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128780','4','4','1','43527','10','7','125','70','0','Soul-Eater\'s Handwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128781','4','4','0','40783','23','3','125','70','0','Karaborian Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128782','4','2','10','41555','17','2','125','70','2','Crystalheart Pulse-Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128783','4','2','19','43915','26','2','125','70','0','Eredar Wand of Obliteration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128785','4','4','0','35445','12','4','115','70','0','The Lightning Capacitor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128788','1','4','0','35396','19','7','60','0','0','Tabard of the Protector','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128789','4','4','0','43528','12','4','125','70','0','Eye of Magtheridon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128790','4','4','0','44357','11','3','125','0','0','Naaru Lightwarden\'s Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128791','4','4','0','44841','11','3','125','0','0','Ring of the Recalcitrant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128792','4','4','0','39126','11','3','125','0','0','A\'dal\'s Signet of Defense','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128793','4','4','0','39127','11','3','125','0','0','Band of Crimson Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128794','4','2','1','45804','17','1','125','70','1','Axe of the Gronn Lords','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128795','4','4','4','43529','9','1','125','70','0','Bladespire Warbands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128796','4','4','2','44608','1','8','125','70','0','Malefic Mask of the Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128797','4','4','1','29719','16','7','125','70','0','Brute Cloak of the Ogre-Magi','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128799','4','4','1','42649','6','7','125','70','0','Belt of Divine Inspiration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128800','4','2','5','43531','17','1','125','70','1','Hammer of the Naaru','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128801','4','4','3','44884','1','5','125','70','0','Maulgar\'s Warhelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128802','4','2','7','43036','21','1','125','70','3','Bloodmaw Magus-Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128803','4','4','2','44896','1','8','125','70','0','Cowl of Nature\'s Breath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128804','4','4','1','44566','1','7','125','70','0','Collar of Cho\'gall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128805','3','4','3','32103','5','5','115','70','0','High Warlord\'s Chain Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128806','3','4','3','32100','10','5','115','70','0','High Warlord\'s Chain Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128807','3','4','3','32133','1','5','115','70','0','High Warlord\'s Chain Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128808','3','4','3','32127','7','5','115','70','0','High Warlord\'s Chain Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128809','3','4','3','32128','3','5','115','70','0','High Warlord\'s Chain Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128810','4','4','3','42334','8','5','125','70','0','Windshear Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128811','3','4','2','43571','10','8','115','70','0','High Warlord\'s Dragonhide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128812','3','4','2','39032','1','8','115','70','0','High Warlord\'s Dragonhide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128813','3','4','2','39033','7','8','115','70','0','High Warlord\'s Dragonhide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128814','3','4','2','39034','3','8','115','70','0','High Warlord\'s Dragonhide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128815','3','4','2','39035','5','8','115','70','0','High Warlord\'s Dragonhide Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128817','3','4','1','37308','10','7','115','70','0','High Warlord\'s Dreadweave Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128818','3','4','1','37311','1','7','115','70','0','High Warlord\'s Dreadweave Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128819','3','4','1','41223','7','7','115','70','0','High Warlord\'s Dreadweave Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128820','3','4','1','37312','3','7','115','70','0','High Warlord\'s Dreadweave Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128821','3','4','1','37313','20','7','115','70','0','High Warlord\'s Dreadweave Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128822','4','4','0','43535','2','4','125','70','0','Teeth of Gruul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128823','4','4','0','31839','12','4','125','70','0','Eye of Gruul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128824','4','4','4','43435','10','6','125','70','0','Gauntlets of Martial Perfection','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128825','4','4','6','40862','14','6','125','70','4','Aldori Legacy Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128826','4','2','16','43543','25','1','125','70','0','Shuriken of Negation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128827','4','4','3','43436','10','5','125','70','0','Gauntlets of the Dragonslayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128828','4','4','2','43542','6','5','125','70','0','Gronn-Stitched Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128830','4','4','0','1503','12','4','125','70','0','Dragonspine Trophy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128831','3','4','4','41247','5','6','115','70','0','High Warlord\'s Lamellar Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128832','3','4','4','41248','10','6','115','70','0','High Warlord\'s Lamellar Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128833','3','4','4','42199','1','6','115','70','0','High Warlord\'s Lamellar Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128834','3','4','4','41249','7','6','115','70','0','High Warlord\'s Lamellar Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128835','3','4','4','41228','3','6','115','70','0','High Warlord\'s Lamellar Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128836','3','4','2','37893','10','8','115','70','0','High Warlord\'s Leather Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128837','3','4','2','37894','1','8','115','70','0','High Warlord\'s Leather Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128838','3','4','2','37895','7','8','115','70','0','High Warlord\'s Leather Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128839','3','4','2','37898','3','8','115','70','0','High Warlord\'s Leather Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128840','3','4','2','37897','5','8','115','70','0','High Warlord\'s Leather Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128841','3','4','3','32103','5','5','115','70','0','High Warlord\'s Linked Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128842','3','4','3','32100','10','5','115','70','0','High Warlord\'s Linked Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128843','3','4','3','32133','1','5','115','70','0','High Warlord\'s Linked Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128844','3','4','3','32127','7','5','115','70','0','High Warlord\'s Linked Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128845','3','4','3','32128','3','5','115','70','0','High Warlord\'s Linked Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128846','3','4','3','32103','5','5','115','70','0','High Warlord\'s Mail Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128847','3','4','3','32100','10','5','115','70','0','High Warlord\'s Mail Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128848','3','4','3','32133','1','5','115','70','0','High Warlord\'s Mail Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128849','3','4','3','32127','7','5','115','70','0','High Warlord\'s Mail Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128850','3','4','3','32128','3','5','115','70','0','High Warlord\'s Mail Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128851','3','4','4','37299','5','6','115','70','0','High Warlord\'s Plate Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128852','3','4','4','37303','10','6','115','70','0','High Warlord\'s Plate Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128853','3','4','4','37300','1','6','115','70','0','High Warlord\'s Plate Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128854','3','4','4','37301','7','6','115','70','0','High Warlord\'s Plate Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128855','3','4','4','37302','3','6','115','70','0','High Warlord\'s Plate Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128856','3','4','1','37308','10','7','115','70','0','High Warlord\'s Satin Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128857','3','4','1','37311','1','7','115','70','0','High Warlord\'s Satin Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128858','3','4','1','37310','7','7','115','70','0','High Warlord\'s Satin Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128859','3','4','1','37312','3','7','115','70','0','High Warlord\'s Satin Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128860','3','4','1','37313','20','7','115','70','0','High Warlord\'s Satin Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128861','3','4','4','41229','5','6','115','70','0','High Warlord\'s Scaled Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128862','3','4','4','41230','10','6','115','70','0','High Warlord\'s Scaled Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128863','3','4','4','41933','1','6','115','70','0','High Warlord\'s Scaled Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128864','3','4','4','41231','7','6','115','70','0','High Warlord\'s Scaled Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128865','3','4','4','41232','3','6','115','70','0','High Warlord\'s Scaled Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128866','3','4','1','33089','3','7','115','70','0','High Warlord\'s Silk Amice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128867','3','4','1','32999','1','7','115','70','0','High Warlord\'s Silk Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128868','3','4','1','32997','10','7','115','70','0','High Warlord\'s Silk Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128869','3','4','1','33085','20','7','115','70','0','High Warlord\'s Silk Raiment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128870','3','4','1','41182','7','7','115','70','0','High Warlord\'s Silk Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128871','3','4','2','43571','10','8','115','70','0','High Warlord\'s Wyrmhide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128872','3','4','2','39032','1','8','115','70','0','High Warlord\'s Wyrmhide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128873','3','4','2','39033','7','8','115','70','0','High Warlord\'s Wyrmhide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128874','3','4','2','39034','3','8','115','70','0','High Warlord\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128875','3','4','2','39035','5','8','115','70','0','High Warlord\'s Wyrmhide Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128917','3','2','5','42068','17','1','115','70','1','High Warlord\'s Bonegrinder','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128918','3','2','1','39261','17','1','115','70','1','High Warlord\'s Decapitator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128919','3','2','5','40981','17','1','115','70','1','High Warlord\'s Maul','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128920','3','2','0','42070','13','1','115','70','3','High Warlord\'s Cleaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128921','3','2','0','42070','13','1','115','70','3','High Warlord\'s Hacker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128922','3','2','13','42072','22','1','115','70','7','High Warlord\'s Left Ripper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128923','3','2','6','42073','17','1','115','70','1','High Warlord\'s Painsaw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128924','3','2','4','42067','13','1','115','70','3','High Warlord\'s Bonecracker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128925','3','2','4','42067','13','1','115','70','3','High Warlord\'s Pummeler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128926','3','2','7','42074','13','1','115','70','3','High Warlord\'s Quickblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128928','3','2','13','42075','21','1','115','70','7','High Warlord\'s Right Ripper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128929','3','2','15','42076','13','1','115','70','3','High Warlord\'s Shanker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128930','3','2','15','42076','13','1','115','70','3','High Warlord\'s Shiv','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128931','3','2','15','42077','21','1','115','70','3','High Warlord\'s Spellblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128933','3','2','18','42071','26','2','115','70','0','High Warlord\'s Heavy Crossbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128935','3','2','10','42078','17','2','115','70','2','High Warlord\'s War Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128937','3','2','7','42074','13','1','115','70','3','High Warlord\'s Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128938','3','4','0','42079','23','3','115','70','7','High Warlord\'s Battletome','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128939','3','4','6','31746','14','1','115','70','4','High Warlord\'s Barricade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128940','3','4','6','40976','14','1','115','70','4','Grand Marshal\'s Barricade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128941','3','4','0','42092','23','7','115','70','7','Grand Marshal\'s Battletome','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128942','3','2','5','42081','17','1','115','70','1','Grand Marshal\'s Bonegrinder','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128943','3','2','8','31996','17','1','115','70','1','Grand Marshal\'s Warblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128944','3','2','0','42082','13','1','115','70','3','Grand Marshal\'s Cleaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128945','3','2','1','42083','17','1','115','70','1','Grand Marshal\'s Decapitator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128946','3','2','0','40960','13','1','115','70','3','Grand Marshal\'s Hacker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128947','3','2','13','42085','22','1','115','70','7','Grand Marshal\'s Left Ripper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128948','3','2','5','40958','17','1','115','70','1','Grand Marshal\'s Maul','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128949','3','2','6','42086','17','1','115','70','1','Grand Marshal\'s Painsaw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128950','3','2','4','42080','13','1','115','70','3','Grand Marshal\'s Bonecracker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128951','3','2','4','42080','13','1','115','70','3','Grand Marshal\'s Pummeler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128952','3','2','7','42087','13','1','115','70','3','Grand Marshal\'s Quickblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128953','3','2','13','42088','21','1','115','70','7','Grand Marshal\'s Right Ripper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128954','3','2','15','42090','13','1','115','70','3','Grand Marshal\'s Shanker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128955','3','2','15','42090','13','1','115','70','3','Grand Marshal\'s Shiv','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128956','3','2','7','42087','13','1','115','70','3','Grand Marshal\'s Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128957','3','2','15','31379','21','1','115','70','3','Grand Marshal\'s Spellblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128959','3','2','10','42091','17','2','115','70','2','Grand Marshal\'s War Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128960','3','2','18','42084','26','2','115','70','0','Grand Marshal\'s Heavy Crossbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128963','4','4','1','40480','1','7','120','70','0','Voidheart Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128964','4','4','1','40482','20','7','120','70','0','Voidheart Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128966','4','4','1','40481','7','7','120','70','0','Voidheart Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128967','4','4','1','40684','3','7','120','70','0','Voidheart Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128968','4','4','1','40479','10','7','120','70','0','Voidheart Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128972','3','2','16','23723','25','1','60','55','0','Flightblade Throwing Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128973','4','4','3','41266','9','5','113','70','0','Marshal\'s Chain Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128974','4','4','3','40630','6','5','123','70','0','Marshal\'s Chain Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128975','4','4','3','40631','8','5','123','70','0','Marshal\'s Chain Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128976','4','4','2','41474','6','8','123','70','0','Marshal\'s Dragonhide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128977','4','4','2','41482','8','8','123','70','0','Marshal\'s Dragonhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128978','4','4','2','41270','9','8','113','70','0','Marshal\'s Dragonhide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128979','1','2','16','40187','25','1','3','1','0','Light Throwing Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128980','4','4','1','41475','6','7','123','70','0','Marshal\'s Dreadweave Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128981','4','4','1','41272','9','7','113','70','0','Marshal\'s Dreadweave Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128982','4','4','1','41484','8','7','123','70','0','Marshal\'s Dreadweave Stalkers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128983','4','4','4','41165','6','6','123','70','0','Marshal\'s Lamellar Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128984','4','4','4','41275','9','6','113','70','0','Marshal\'s Lamellar Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128985','4','4','4','41167','8','6','123','70','0','Marshal\'s Lamellar Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128986','4','4','2','41476','6','8','123','70','0','Marshal\'s Leather Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128987','4','4','2','41480','8','8','123','70','0','Marshal\'s Leather Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128988','4','4','2','30804','9','8','113','70','0','Marshal\'s Leather Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128989','4','4','3','41259','9','5','113','70','0','Marshal\'s Linked Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128990','4','4','3','41477','6','5','123','70','0','Marshal\'s Linked Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128991','4','4','3','41481','8','5','123','70','0','Marshal\'s Linked Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128992','4','4','3','41259','9','5','113','70','0','Marshal\'s Mail Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128993','4','4','3','41477','6','5','123','70','0','Marshal\'s Mail Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128994','4','4','3','41481','8','5','123','70','0','Marshal\'s Mail Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128995','4','4','4','39544','6','6','123','70','0','Marshal\'s Plate Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128996','4','4','4','41285','9','6','113','70','0','Marshal\'s Plate Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128997','4','4','4','39546','8','6','123','70','0','Marshal\'s Plate Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128998','4','4','4','41165','6','6','123','70','0','Marshal\'s Scaled Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('128999','4','4','4','41275','9','6','113','70','0','Marshal\'s Scaled Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129000','4','4','4','41167','8','6','123','70','0','Marshal\'s Scaled Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129001','4','4','1','40090','6','7','123','70','0','Marshal\'s Silk Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129002','4','4','1','41288','9','7','113','70','0','Marshal\'s Silk Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129003','4','4','1','41483','8','7','123','70','0','Marshal\'s Silk Footguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129004','4','4','2','41474','6','8','123','70','0','Marshal\'s Wyrmhide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129005','4','4','2','41482','8','8','123','70','0','Marshal\'s Wyrmhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129006','4','4','2','41270','9','8','113','70','0','Marshal\'s Wyrmhide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129007','1','2','16','40190','25','1','8','3','0','Weighted Throwing Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129008','1','2','16','40191','25','1','16','11','0','Sharp Throwing Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129009','1','2','16','40192','25','1','27','22','0','Heavy Throwing Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129010','1','2','16','40193','25','1','40','35','0','Wicked Throwing Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129011','4','4','4','47568','1','1','120','70','0','Warbringer Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129012','4','4','4','40484','5','1','120','70','0','Warbringer Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129013','1','2','16','40194','25','1','55','50','0','Jagged Throwing Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129014','1','2','16','40195','25','1','55','50','0','Blacksteel Throwing Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129015','4','4','4','40487','7','1','120','70','0','Warbringer Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129016','4','4','4','40488','3','1','120','70','0','Warbringer Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129017','4','4','4','40485','10','1','120','70','0','Warbringer Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129019','4','4','4','40484','5','1','120','70','0','Warbringer Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129020','4','4','4','40485','10','1','120','70','0','Warbringer Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129021','4','4','4','47568','1','1','120','70','0','Warbringer Battle-Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129022','4','4','4','40487','7','1','120','70','0','Warbringer Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129023','4','4','4','40488','3','1','120','70','0','Warbringer Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129028','4','4','3','44008','1','5','120','70','0','Cyclone Headdress','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129029','4','4','3','40445','5','5','120','70','0','Cyclone Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129030','4','4','3','40447','7','5','120','70','0','Cyclone Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129031','4','4','3','40641','3','5','120','70','0','Cyclone Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129032','4','4','3','41381','10','5','120','70','0','Cyclone Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129033','4','4','3','40445','5','5','120','70','0','Cyclone Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129034','4','4','3','41381','10','5','120','70','0','Cyclone Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129035','4','4','3','44008','1','5','120','70','0','Cyclone Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129036','4','4','3','40447','7','5','120','70','0','Cyclone Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129037','4','4','3','40641','3','5','120','70','0','Cyclone Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129038','4','4','3','40445','5','5','120','70','0','Cyclone Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129039','4','4','3','41381','10','5','120','70','0','Cyclone Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129040','4','4','3','44008','1','5','120','70','0','Cyclone Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129042','4','4','3','40447','7','5','120','70','0','Cyclone War-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129043','4','4','3','40641','3','5','120','70','0','Cyclone Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129044','4','4','2','45810','1','8','120','70','0','Netherblade Facemask','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129045','4','4','2','45812','5','8','120','70','0','Netherblade Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129046','4','4','2','45814','7','8','120','70','0','Netherblade Breeches','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129047','4','4','2','45811','3','8','120','70','0','Netherblade Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129048','4','4','2','45813','10','8','120','70','0','Netherblade Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129049','4','4','1','45819','1','7','120','70','0','Light-Collar of the Incarnate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129050','4','4','1','40455','20','7','120','70','0','Robes of the Incarnate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129053','4','4','1','42288','7','7','120','70','0','Trousers of the Incarnate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129054','4','4','1','40459','3','7','120','70','0','Light-Mantle of the Incarnate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129055','4','4','1','40456','10','7','120','70','0','Handwraps of the Incarnate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129056','4','4','1','40455','20','7','120','70','0','Shroud of the Incarnate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129057','4','4','1','42287','10','7','120','70','0','Gloves of the Incarnate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129058','4','4','1','45819','1','7','120','70','0','Soul-Collar of the Incarnate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129059','4','4','1','42288','7','7','120','70','0','Leggings of the Incarnate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129060','4','4','1','40459','3','7','120','70','0','Soul-Mantle of the Incarnate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129061','4','4','4','40646','1','1','120','70','0','Justicar Diadem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129062','4','4','4','40474','5','1','120','70','0','Justicar Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129063','4','4','4','40478','7','1','120','70','0','Justicar Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129064','4','4','4','40651','3','1','120','70','0','Justicar Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129065','4','4','4','40473','10','1','120','70','0','Justicar Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129066','4','4','4','40474','5','1','120','70','0','Justicar Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129067','4','4','4','40473','10','1','120','70','0','Justicar Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129068','4','4','4','40646','1','1','120','70','0','Justicar Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129069','4','4','4','40478','7','1','120','70','0','Justicar Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129070','4','4','4','40651','3','1','120','70','0','Justicar Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129071','4','4','4','40474','5','1','120','70','0','Justicar Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129072','4','4','4','40473','10','1','120','70','0','Justicar Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129073','4','4','4','40646','1','1','120','70','0','Justicar Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129074','4','4','4','40478','7','1','120','70','0','Justicar Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129075','4','4','4','40651','3','1','120','70','0','Justicar Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129076','4','4','1','41063','1','7','120','70','0','Collar of the Aldor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129077','4','4','1','40468','20','7','120','70','0','Vestments of the Aldor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129078','4','4','1','41384','7','7','120','70','0','Legwraps of the Aldor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129079','4','4','1','40645','3','7','120','70','0','Pauldrons of the Aldor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129080','4','4','1','41385','10','7','120','70','0','Gloves of the Aldor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129081','4','4','3','40451','1','5','120','70','0','Demon Stalker Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129082','4','4','3','40448','5','5','120','70','0','Demon Stalker Harness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129083','4','4','3','40454','7','5','120','70','0','Demon Stalker Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129084','4','4','3','40453','3','5','120','70','0','Demon Stalker Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129085','4','4','3','40831','10','5','120','70','0','Demon Stalker Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129086','4','4','2','46214','1','8','120','70','0','Crown of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129087','4','4','2','40460','5','8','120','70','0','Chestguard of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129088','4','4','2','40833','7','8','120','70','0','Legguards of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129089','4','4','2','40642','3','8','120','70','0','Shoulderguards of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129090','4','4','2','41383','10','8','120','70','0','Handguards of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129091','4','4','2','40460','5','8','120','70','0','Chestpiece of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129092','4','4','2','41383','10','8','120','70','0','Gloves of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129093','4','4','2','46214','1','8','120','70','0','Antlers of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129094','4','4','2','40833','7','8','120','70','0','Britches of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129095','4','4','2','40642','3','8','120','70','0','Pauldrons of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129096','4','4','2','40460','5','8','120','70','0','Breastplate of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129097','4','4','2','41383','10','8','120','70','0','Gauntlets of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129098','4','4','2','46214','1','8','120','70','0','Stag-Helm of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129099','4','4','2','40833','7','8','120','70','0','Greaves of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129100','4','4','2','40642','3','8','120','70','0','Mantle of Malorne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129108','2','2','7','13078','13','1','87','0','3','Blade of the Unyielding','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129109','2','2','10','28236','17','2','87','0','2','Rod of the Unyielding','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129115','3','2','3','41948','26','1','115','70','0','Consortium Blaster','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129116','3','4','2','6786','7','8','115','70','0','Nomad\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129117','3','4','1','40315','5','7','115','70','0','Stormspire Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129119','4','4','0','35358','2','3','105','70','0','Haramad\'s Bargain','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129121','4','2','15','42061','13','1','100','70','3','Guile of Khoraazi','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129122','4','4','1','38932','1','7','105','70','0','Nether Runner\'s Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129123','4','4','0','6494','2','3','105','70','0','Medallion of the Lightbearer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129124','4','2','7','42065','13','1','100','70','3','Vindicator\'s Brand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129125','4','2','15','42060','13','1','100','70','3','Retainer\'s Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129126','4','4','0','35438','11','3','105','70','0','Seer\'s Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129127','3','4','4','44551','5','6','115','70','0','Vindicator\'s Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129128','3','4','0','35423','11','5','115','70','0','Lightwarden\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129129','3','4','1','40870','20','7','115','70','0','Anchorite\'s Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129130','3','2','10','40322','17','2','115','70','2','Auchenai Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129131','3','4','2','40323','7','8','115','70','0','Retainer\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129132','3','4','0','7122','12','-1','115','70','0','Scryer\'s Bloodgem','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129133','3','2','10','35363','17','2','115','70','2','Seer\'s Cane','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129134','3','4','4','44413','10','1','115','70','0','Gauntlets of the Chosen','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129135','3','4','3','40327','1','5','115','70','0','Earthcaller\'s Headdress','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129136','3','4','3','40329','1','5','115','70','0','Far Seer\'s Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129137','3','2','1','42056','17','1','115','70','1','Hellscream\'s Will','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129138','3','2','5','40904','17','1','115','70','1','Arechron\'s Gift','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129139','3','4','1','40918','16','7','115','70','0','Ceremonial Cover','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129140','3','4','1','40917','16','7','115','70','0','Cloak of the Ancient Spirits','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129141','3','4','2','40335','7','8','115','70','0','Tempest Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129142','3','4','2','41949','7','8','115','70','0','Kurenai Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129145','3','4','0','9840','11','5','115','70','0','Band of Ancestral Spirits','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129146','3','4','0','31616','11','5','115','70','0','Band of Elemental Spirits','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129147','3','4','2','28179','3','8','115','70','0','Talbuk Hide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129148','3','4','2','40915','3','8','115','70','0','Blackened Leather Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129149','3','2','19','40876','26','2','91','62','0','Sporeling\'s Firestick','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129150','3','2','15','40920','13','1','91','62','3','Hardened Stone Shard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129151','4','2','3','41915','26','1','100','70','0','Veteran\'s Musket','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129152','4','2','2','30926','15','2','100','70','0','Marksman\'s Bow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129153','4','2','7','42542','21','1','100','70','3','Blade of the Archmage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129155','4','2','7','42544','21','1','100','70','3','Stormcaller','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129156','4','2','7','41929','13','1','100','70','3','Honor\'s Call','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129157','3','4','0','38541','11','-1','36','31','0','Golden Ring of Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129158','3','4','0','28830','11','-1','40','35','0','Truesilver Commander\'s Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129159','2','4','0','31616','11','5','56','51','0','Glowing Thorium Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129160','2','4','0','23608','11','5','58','53','0','Emerald Lion Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129165','4','2','0','40914','13','1','100','70','3','Warbringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129166','3','2','6','42057','17','1','115','70','2','Hellforged Halberd','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129167','3','2','6','42064','17','1','115','70','2','Blackened Spear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129168','3','4','0','23728','11','5','115','70','0','Ancestral Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129169','3','4','0','31905','11','5','115','70','0','Ring of Convalescence','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129170','4','4','0','41914','23','3','105','70','0','Windcaller\'s Orb','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129171','4','2','5','41913','17','4','100','70','1','Earthwarden','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129172','4','4','0','35472','11','3','105','70','0','Ashyen\'s Gift','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129173','3','4','0','15420','2','3','115','70','0','Strength of the Untamed','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129174','3','4','1','42481','1','8','115','70','0','Watcher\'s Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129175','4','2','4','42289','21','1','100','70','3','Gavel of Pure Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129176','4','4','6','40901','14','6','105','70','4','Crest of the Sha\'tar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129177','4','4','0','35423','11','3','105','70','0','A\'dal\'s Command','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129179','3','4','0','40386','12','-1','115','70','0','Xi\'ri\'s Gift','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129180','3','4','3','40387','6','5','115','70','0','Blessed Scale Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129181','4','4','0','36597','12','4','105','70','0','Timelapse Shard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129182','4','2','15','40947','13','1','100','70','3','Riftmaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129183','4','4','1','40390','9','7','105','70','0','Bindings of the Timewalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129184','3','4','4','40391','7','6','115','70','0','Timewarden\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129185','3','2','7','40392','21','1','115','70','3','Continuum Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129200','2','2','3','20729','26','1','31','0','0','Falfindel\'s Blaster','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129201','2','2','16','40409','25','1','20','15','0','Thick Bronze Darts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129202','2','2','16','40410','25','1','40','35','0','Whirling Steel Axes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129203','2','2','16','40411','25','1','60','55','0','Enchanted Thorium Blades','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129204','3','2','16','40412','25','1','110','70','0','Felsteel Whisper Knives','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129210','3','2','16','26358','25','1','63','58','0','Assassin\'s Throwing Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129211','3','2','16','23723','25','1','103','0','0','Fitz\'s Throwing Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129212','2','2','16','32693','25','1','93','0','0','Balanced Stone Dirk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129237','4','4','4','42366','9','6','110','70','0','Warpath Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129238','4','4','4','42606','6','1','110','70','0','Lion\'s Heart Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129239','4','4','4','42607','8','1','110','70','0','Eaglecrest Warboots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129240','4','4','1','42591','9','7','110','70','0','Bands of Negation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129241','4','4','1','42590','6','7','110','70','0','Belt of Depravity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129242','4','4','1','42592','8','7','110','70','0','Boots of Blasphemy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129243','4','4','3','42595','9','5','110','70','0','Wave-Fury Vambraces','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129244','4','4','3','42593','6','5','110','70','0','Wave-Song Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129245','4','4','3','42594','8','5','110','70','0','Wave-Crest Striders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129246','4','4','2','46559','9','8','110','70','0','Nightfall Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129247','4','4','2','46574','6','8','110','70','0','Girdle of the Deathdealer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129248','4','4','2','67447','8','8','110','70','0','Shadowstep Striders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129249','4','4','1','42589','9','7','110','70','0','Bands of the Benevolent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129250','4','4','1','42587','6','7','110','70','0','Cord of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129251','4','4','1','42588','8','7','110','70','0','Boots of the Pious','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129252','4','4','4','42605','9','1','110','70','0','Bracers of Dignity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129253','4','4','4','42603','6','1','110','70','0','Girdle of Valorous Deeds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129254','4','4','4','42604','8','1','110','70','0','Boots of the Righteous Path','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129255','4','4','1','42602','9','7','110','70','0','Bands of Rarefied Magic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129257','4','4','1','42600','6','7','110','70','0','Sash of Arcane Visions','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129258','4','4','1','42601','8','7','110','70','0','Boots of Ethereal Manipulation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129259','4','4','3','42586','9','5','110','70','0','Bracers of the Hunt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129261','4','4','3','42584','6','5','110','70','0','Girdle of Ferocity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129262','4','4','3','42585','8','5','110','70','0','Boots of the Endless Hunt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129263','4','4','2','42598','9','8','110','70','0','Forestheart Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129264','4','4','2','42596','6','8','110','70','0','Tree-Mender\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129265','4','4','2','42597','8','8','110','70','0','Barkchip Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129266','4','4','6','42622','14','6','110','70','4','Azure-Shield of Coldarra','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129267','4','4','6','42621','14','6','110','70','4','Light-Bearer\'s Faith Shield','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129268','4','4','6','42620','14','6','110','70','4','Mazthoril Honor Shield','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129269','4','4','0','42630','23','3','110','70','0','Sapphiron\'s Wing Bone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129270','4','4','0','42624','23','3','110','70','0','Flametongue Seal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129271','4','4','0','42563','23','3','110','70','0','Talisman of Kalecgos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129272','4','4','0','42626','23','3','110','70','0','Orb of the Soul-Eater','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129273','4','4','0','42625','23','3','110','70','0','Khadgar\'s Knapsack','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129274','4','4','0','42628','23','3','110','70','0','Tears of Heaven','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129275','4','2','15','42617','22','1','110','70','3','Searing Sunblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129276','3','4','0','40518','11','3','115','0','0','Violet Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129277','4','4','0','40518','11','3','110','0','0','Violet Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129278','4','4','0','40518','11','3','120','0','0','Violet Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129279','4','4','0','40518','11','3','130','0','0','Violet Signet of the Great Protector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129280','3','4','0','40518','11','3','115','0','0','Violet Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129281','4','4','0','40518','11','3','110','0','0','Violet Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129282','4','4','0','40518','11','3','120','0','0','Violet Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129283','4','4','0','40518','11','3','130','0','0','Violet Signet of the Master Assassin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129284','3','4','0','40518','11','3','115','0','0','Violet Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129285','4','4','0','40518','11','3','110','0','0','Violet Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129286','4','4','0','40518','11','3','120','0','0','Violet Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129287','4','4','0','40518','11','3','130','0','0','Violet Signet of the Archmage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129288','3','4','0','40518','11','3','115','0','0','Violet Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129289','4','4','0','40518','11','3','110','0','0','Violet Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129290','4','4','0','40518','11','3','130','0','0','Violet Signet of the Grand Restorer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129291','4','4','0','40518','11','3','120','0','0','Violet Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129294','4','4','0','43095','11','3','128','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129295','4','4','0','43095','11','3','136','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129296','4','4','0','43095','11','3','144','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129297','4','4','0','39126','11','3','152','0','0','Band of the Eternal Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129298','4','4','0','43095','11','3','128','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129299','4','4','0','43095','11','3','136','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129300','4','4','0','43095','11','3','135','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129301','4','4','0','39126','11','3','152','0','0','Band of the Eternal Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129302','4','4','0','43095','11','3','128','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129303','4','4','0','43095','11','3','136','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129304','4','4','0','43095','11','3','135','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129305','4','4','0','39126','11','3','152','0','0','Band of the Eternal Sage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129306','4','4','0','43095','11','3','136','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129307','4','4','0','43095','11','3','128','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129308','4','4','0','43095','11','3','144','0','0','Band of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129309','4','4','0','39126','11','3','152','0','0','Band of the Eternal Restorer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129312','3','4','4','40537','1','6','97','0','0','Cover of Righteous Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129313','3','4','3','30438','8','5','97','0','0','Earthbreaker\'s Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129314','3','4','2','33148','7','8','97','0','0','Leggings of the Third Coin','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129315','3','4','1','40539','10','7','97','0','0','Gloves of Penitence','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129316','3','4','4','39080','3','6','103','0','0','Warchief\'s Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129317','3','4','1','39068','10','7','103','0','0','Tempest\'s Touch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129318','3','4','2','39223','8','8','103','0','0','Southshore Sneakers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129319','3','4','3','38545','6','5','103','0','0','Tarren Mill Defender\'s Cinch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129320','3','4','0','31664','11','5','115','0','0','Band of the Guardian','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129321','3','4','0','31664','11','5','115','0','0','Time-bending Gem','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129322','3','4','0','31664','11','5','115','0','0','Keeper\'s Ring of Piety','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129323','3','4','0','31906','11','5','115','0','0','Andormu\'s Tear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129325','3','4','4','38784','8','6','97','0','0','Flesh Beast\'s Metal Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129326','3','4','3','39065','3','5','97','0','0','Consortium Mantle of Phasing','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129327','3','4','2','39064','10','8','97','0','0','Cryo-mitts','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129328','3','4','1','38542','6','7','97','0','0','Consortium Prince\'s Wrap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129329','3','2','6','40563','17','1','115','0','2','Terokk\'s Quill','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129330','3','4','0','40565','23','8','115','0','0','The Saga of Terokk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129332','3','4','2','42478','1','8','115','0','0','Terokk\'s Mask','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129333','3','4','0','35358','2','3','115','0','0','Torc of the Sethekk Prophet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129334','3','4','0','31889','2','3','115','0','0','Sethekk Oracle\'s Focus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129335','3','4','0','9852','2','3','115','0','0','Talon Lord\'s Collar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129336','3','4','0','39210','2','3','115','0','0','Mark of the Ravenguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129337','3','4','4','40585','5','-1','100','0','0','The Exarch\'s Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129339','3','4','3','38704','5','-1','100','0','0','Auchenai Tracker\'s Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129340','3','4','2','31639','5','8','100','0','0','Auchenai Monk\'s Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129341','3','4','1','25039','20','7','100','0','0','Auchenai Anchorite\'s Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129342','3','4','4','30737','7','6','97','0','0','Consortium Plated Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129343','3','4','2','33148','7','8','97','0','0','Haramad\'s Leggings of the Third Coin','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129344','3','4','3','27944','7','5','97','0','0','Haramad\'s Linked Chain Pantaloons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129345','3','4','1','38787','7','7','97','0','0','Haramad\'s Leg Wraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129346','4','2','15','42225','13','1','110','70','3','Feltooth Eviscerator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129347','4','4','0','43125','2','3','110','70','0','Talisman of the Breaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129348','4','2','13','42348','21','1','105','70','7','The Bladefist','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129349','4','4','0','15420','2','3','110','70','0','Adamantine Chain of the Unbroken','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129350','4','2','19','35262','26','2','110','70','0','The Black Stalk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129351','4','2','2','42220','15','2','105','70','0','Wrathtide Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129352','4','4','0','39123','11','3','110','70','0','Cobalt Band of Tyrigosa','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129353','4','2','4','42218','21','1','105','70','3','Shockwave Truncheon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129354','4','4','1','43292','16','7','110','70','0','Light-Touched Stole of Altruism','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129355','4','2','10','42203','17','2','105','70','2','Terokk\'s Shadowstaff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129356','4','2','8','42219','17','1','105','70','1','Quantum Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129357','4','4','2','43107','10','8','110','70','0','Master Thief\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129359','4','2','10','43116','17','2','105','70','2','Feral Staff of Lashing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129360','4','2','15','42224','13','1','105','70','3','Vileblade of the Betrayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129362','4','2','7','36716','13','1','105','70','3','The Sun Eater','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129367','4','4','0','39122','11','3','110','70','0','Ring of Cryptic Dreams','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129368','4','4','0','35437','2','3','110','70','0','Manasurge Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129369','4','4','1','42615','16','7','110','70','0','Shawl of Shifting Probabilities','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129370','4','4','0','42608','12','4','110','70','0','Icon of the Silver Crescent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129371','2','2','13','40607','21','1','108','66','7','Nexus-Claw','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129372','2','2','13','40608','22','1','108','66','7','Void-Talon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129373','4','4','0','35431','11','3','110','70','0','Band of Halos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129374','4','4','0','39211','2','3','110','70','0','Necklace of Eternal Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129375','4','4','1','42611','16','7','110','70','0','Bishop\'s Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129376','4','4','0','42609','12','4','110','70','0','Essence of the Martyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129377','2','2','6','40616','17','1','108','66','1','Ethereum Phase-Spear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129378','2','2','19','40612','26','2','108','66','0','Starheart Baton','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129379','4','4','0','33808','11','3','110','70','0','Ring of Arathi Warlords','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129380','2','2','7','40614','21','1','108','66','1','Ethereum Phase Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129381','4','4','0','9852','2','3','110','70','0','Choker of Vile Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129382','4','4','1','40592','16','7','110','70','0','Blood Knight War Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129383','4','4','0','42610','12','4','110','70','0','Bloodlust Brooch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129384','4','4','0','38541','11','3','110','70','0','Ring of Unyielding Force','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129385','4','4','1','35366','16','7','110','70','0','Farstrider Defender\'s Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129386','4','4','0','33906','2','3','110','70','0','Necklace of the Juggernaut','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129387','4','4','0','42612','12','4','110','70','0','Gnomeregan Auto-Blocker 600','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129388','4','4','7','34960','28','2','110','70','0','Libram of Repentance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129389','4','4','9','42614','28','2','110','70','0','Totem of the Pulsing Earth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129390','4','4','8','34953','28','2','110','70','0','Everbloom Idol','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129391','2','2','15','44593','13','1','108','66','3','Pulse Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129398','2','4','0','31664','11','5','93','0','0','Circle of Banishing','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129399','2','2','10','40650','17','2','93','0','2','Rod of the Void Caller','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129400','2','4','1','40648','16','7','93','0','0','Abyssal Shroud','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129456','3','2','7','39310','13','1','94','63','3','Gift of the Ethereal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129457','3','2','15','40881','21','1','94','63','3','Nethershard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129458','4','4','6','45817','14','6','125','70','4','Aegis of the Vindicator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129463','4','4','4','43425','9','1','110','70','0','Amber Bands of the Aggressor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129489','3','4','3','40988','7','8','112','69','0','Enchanted Felscale Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129490','3','4','3','40989','10','8','112','69','0','Enchanted Felscale Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129491','3','4','3','40990','8','8','112','69','0','Enchanted Felscale Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129492','3','4','3','44266','7','5','112','69','0','Flamescale Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129493','3','4','3','44267','8','5','112','69','0','Flamescale Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129494','3','4','3','44268','6','5','112','69','0','Flamescale Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129495','3','4','2','34710','7','8','112','69','0','Enchanted Clefthoof Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129496','3','4','2','40998','10','8','112','69','0','Enchanted Clefthoof Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129497','3','4','2','40997','8','8','112','69','0','Enchanted Clefthoof Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129498','3','4','2','42855','7','8','112','69','0','Blastguard Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129499','3','4','2','42857','8','8','112','69','0','Blastguard Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129500','3','4','2','42858','6','8','112','69','0','Blastguard Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129502','4','4','2','45844','1','7','105','70','0','Cobrascale Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129503','4','4','2','41014','10','7','105','70','0','Cobrascale Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129504','4','4','2','45802','1','7','105','70','0','Windscale Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129505','4','4','2','45801','1','7','105','70','0','Hood of Primal Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129506','4','4','2','41021','10','7','105','70','0','Gloves of the Living Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129507','4','4','2','41024','10','7','105','70','0','Windslayer Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129508','4','4','3','44092','1','7','105','70','0','Living Dragonscale Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129509','4','4','3','41038','10','7','105','70','0','Windstrike Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129510','4','4','3','41037','1','7','105','70','0','Netherdrake Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129511','4','4','3','41036','10','7','105','70','0','Netherdrake Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129512','4','4','3','41034','8','7','105','70','0','Earthen Netherscale Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129514','4','4','3','44595','5','7','105','70','0','Thick Netherscale Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129515','4','4','3','43455','5','7','120','70','0','Ebon Netherscale Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129516','4','4','3','43414','6','7','115','70','0','Ebon Netherscale Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129517','4','4','3','43413','9','7','105','70','0','Ebon Netherscale Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129518','1','2','7','22079','13','1','21','16','3','Amani Scimitar','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129519','4','4','3','45937','5','7','120','70','0','Netherstrike Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129520','4','4','3','44103','6','7','115','70','0','Netherstrike Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129521','4','4','3','44102','9','7','115','70','0','Netherstrike Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129522','4','4','2','45820','5','7','120','70','0','Windhawk Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129523','4','4','2','45822','9','7','115','70','0','Windhawk Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129524','4','4','2','45823','6','7','115','70','0','Windhawk Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129525','4','4','2','45057','5','7','120','70','0','Primalstrike Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129526','4','4','2','45056','6','7','115','70','0','Primalstrike Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129527','4','4','2','45055','9','7','115','70','0','Primalstrike Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129583','2','2','7','41179','13','1','20','15','3','Sinister Scimitar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129584','2','2','16','41181','25','1','19','14','0','Throat Piercers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129592','3','4','0','37841','12','-1','60','0','0','Insignia of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129593','3','4','0','37840','12','-1','60','0','0','Insignia of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129594','3','4','3','31183','8','5','66','60','0','Knight-Lieutenant\'s Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129595','3','4','3','27279','10','5','66','60','0','Knight-Lieutenant\'s Mail Vices','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129596','3','4','3','31185','5','5','68','60','0','Knight-Captain\'s Mail Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129597','3','4','3','31186','7','5','68','60','0','Knight-Captain\'s Mail Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129598','3','4','3','30072','1','5','71','60','0','Lieutenant Commander\'s Mail Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129599','3','4','3','30382','3','5','71','60','0','Lieutenant Commander\'s Mail Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129600','3','4','4','41954','10','6','66','60','0','Blood Guard\'s Lamellar Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129601','3','4','4','41236','8','6','66','60','0','Blood Guard\'s Lamellar Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129602','3','4','4','41237','5','6','68','60','0','Legionnaire\'s Lamellar Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129603','3','4','4','41238','7','6','68','60','0','Legionnaire\'s Lamellar Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129604','3','4','4','42200','1','6','71','60','0','Champion\'s Lamellar Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129605','3','4','4','41240','3','6','71','60','0','Champion\'s Lamellar Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129606','4','4','3','32126','8','5','71','60','0','Marshal\'s Mail Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129607','4','4','3','32100','10','5','71','60','0','Marshal\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129608','4','4','3','32127','7','5','71','60','0','Marshal\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129609','4','4','3','32103','5','5','74','60','0','Field Marshal\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129610','4','4','3','32133','1','5','74','60','0','Field Marshal\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129611','4','4','3','32128','3','5','74','60','0','Field Marshal\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129612','4','4','4','41241','8','6','71','60','0','General\'s Lamellar Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129613','4','4','4','41242','10','6','71','60','0','General\'s Lamellar Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129614','4','4','4','41243','7','6','71','60','0','General\'s Lamellar Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129615','4','4','4','41244','5','6','74','60','0','Warlord\'s Lamellar Chestplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129616','4','4','4','42200','1','6','74','60','0','Warlord\'s Lamellar Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129617','4','4','4','41245','3','6','74','60','0','Warlord\'s Lamellar Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129771','2','4','1','16603','6','7','111','0','0','Kirin\'Var Journeyman\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129772','2','4','2','4532','6','8','111','0','0','Kirin\'Var Scout\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129773','2','4','3','38338','1','5','111','0','0','Battle-Mage\'s Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129774','2','4','4','26824','7','6','111','0','0','Kirin\'Var Defender\'s Chausses','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129775','2','4','0','9854','2','3','108','0','0','Pendant of the Battle-Mage','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129776','2','4','0','33520','12','3','108','0','0','Core of Ar\'kelos','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129777','2','4','1','39391','16','7','108','0','0','Cloak of the Valiant Defender','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129779','2','2','19','31628','26','2','108','0','0','Rejuvenating Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129780','3','4','1','25834','20','7','109','0','0','Kirin Tor Apprentice\'s Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129781','3','4','2','29919','5','8','106','0','0','Lifewarden\'s Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129782','3','4','3','15810','1','5','106','0','0','Coif of the Wicked','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129783','3','4','4','25226','7','6','106','0','0','Legguards of the Resolute Defender','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129784','2','4','2','31630','10','8','111','0','0','Harmony\'s Touch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129785','2','4','3','27314','9','5','111','0','0','Crimson Mail Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129786','2','4','4','26874','8','6','111','0','0','Kirin\'Var Defender\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129787','2','2','4','28262','13','2','111','0','3','Master Smith\'s Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129788','2','4','3','16487','7','5','111','0','0','Finely Wrought Scale Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129789','2','4','4','26332','5','6','111','0','0','Andrethan\'s Masterwork','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129791','2','4','4','27511','1','6','111','0','0','Reinforced Heaume','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129792','2','4','1','27176','16','7','111','0','0','Dawnstrike\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129793','2','4','0','23728','11','3','111','0','0','Signet of the Violet Tower','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129794','2','4','0','31604','2','3','111','0','0','Strength of the Violet Tower','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129804','2','4','2','27741','8','8','111','0','0','Wrangler\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129806','2','4','3','25811','10','5','111','0','0','Cowpoke\'s Riding Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129807','2','4','4','24514','6','6','111','0','0','Engraved Cattleman\'s Buckle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129808','2','4','1','26268','8','7','111','0','0','Shimmering Azure Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129810','2','4','2','18939','3','8','111','0','0','Dragon Crested Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129811','2','4','3','25800','9','5','111','0','0','Goldenlink Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129812','2','4','4','26872','10','6','111','0','0','Blued Steel Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129813','3','4','1','33144','16','7','106','0','0','Cloak of Woven Energy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129814','3','4','0','9837','11','5','106','0','0','Celestial Jewel Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129815','3','4','0','9852','2','3','106','0','0','Chain of Glowing Tendrils','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129908','2','2','1','28334','17','1','81','0','1','Rage Reaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129909','2','2','15','20299','13','1','81','0','3','Screaming Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129910','2','2','10','20298','17','2','81','0','2','The Staff of Twin Worlds','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129911','2','2','10','24015','17','2','81','0','2','Agamaggan\'s Quill','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129913','2','2','7','28561','13','1','81','0','3','Foe Reaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129914','2','2','15','41494','22','1','81','0','3','Hellfire Skiver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129915','2','2','19','39876','26','2','81','0','0','Desolation Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129916','2','2','18','42393','26','2','81','0','0','Ironstar Repeater','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129917','2','4','6','40895','14','1','81','0','4','Landslide Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129918','4','4','1','42645','9','7','128','70','0','Mindstorm Wristbands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129919','2','4','6','41496','14','1','81','0','4','Adamantine Kite Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129920','4','4','0','35472','11','3','128','70','0','Phoenix-Ring of Rebirth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129921','4','4','3','46088','5','5','128','70','0','Fire Crest Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129922','4','4','0','39120','11','3','128','70','0','Band of Al\'ar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129923','4','4','0','42176','23','3','128','70','0','Talisman of the Sun King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129924','4','2','0','42177','13','1','134','70','3','Netherbane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129925','4','4','1','46126','16','7','128','70','0','Phoenix-Wing Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129926','2','4','1','43935','5','7','81','0','0','Whispering Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129927','2','4','1','44579','1','7','81','0','0','Shadowbrim Travel Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129928','2','4','1','43932','7','7','81','0','0','Wanderer\'s Stitched Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129929','2','4','2','43928','5','7','81','0','0','Raging Spirit Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129930','2','4','2','43927','7','7','81','0','0','Nature-Stitched Kilt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129931','2','4','2','42398','1','7','81','0','0','Phantasmal Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129932','2','4','3','43919','5','7','81','0','0','Arcane Ringed Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129933','2','4','3','43918','7','7','81','0','0','Arcane Ringed Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129934','2','4','3','43922','1','7','81','0','0','Helm of Affinity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129935','2','4','4','41517','5','7','81','0','0','Fire Scarred Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129936','2','4','4','41518','7','7','81','0','0','Skyfire Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129937','2','4','4','43923','1','7','81','0','0','Helm of Infinite Visions','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129938','2','4','2','42396','5','7','81','0','0','Battle Seeker Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129939','2','4','2','43921','7','7','81','0','0','Flayer-Hide Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129940','2','4','2','21294','1','7','81','0','0','Veteran\'s Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129941','2','4','3','41525','5','7','81','0','0','Scale Brand Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129942','2','4','3','43920','7','7','81','0','0','Battle Scarred Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129943','2','4','3','44607','1','7','81','0','0','Legionnaire\'s Studded Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129944','2','4','4','41531','5','7','81','0','0','Protectorate Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129945','2','4','4','41532','7','7','81','0','0','Magistrate\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129946','2','4','4','19769','1','7','81','0','0','Invader\'s Greathelm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129947','4','4','2','43562','10','8','128','70','0','Gloves of the Searing Grip','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129948','4','2','13','42823','22','1','134','70','7','Claw of the Phoenix','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129949','4','2','3','42178','26','1','134','70','0','Arcanite Steam-Pistol','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129950','4','4','4','46074','7','1','128','70','0','Greaves of the Bloodwarder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129951','4','4','3','45912','8','5','128','70','0','Star-Strider Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129954','2','4','1','41548','3','7','108','0','0','Spiritbinder\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129955','2','4','2','41549','9','8','108','0','0','Mana Infused Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129959','2','4','4','41550','10','1','108','0','0','Spiritualist\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129962','4','2','15','42179','13','1','134','70','3','Heartrazor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129964','3','4','2','41569','7','-1','52','45','0','Blackstorm Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129965','4','4','4','42699','6','1','128','70','0','Girdle of the Righteous Path','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129966','4','4','2','45022','9','8','128','70','0','Vambraces of Ending','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129967','2','4','2','41827','5','8','108','0','0','Nether Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129968','2','4','3','22481','7','5','108','0','0','Nether Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129969','2','4','4','42995','1','5','108','0','0','Sparky\'s Discarded Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129970','3','4','2','41574','7','-1','52','45','0','Wildfeather Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129971','3','4','3','41605','7','-1','52','45','0','Dragonstrike Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129972','4','4','1','46127','7','7','128','70','0','Trousers of the Astromancer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129973','3','4','2','41580','5','8','100','65','0','Primalstorm Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129974','3','4','2','44156','5','8','100','65','0','Living Crystal Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129975','3','4','3','41583','5','8','100','65','0','Golden Dragonstrike Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129976','4','4','3','46094','10','5','128','70','0','Worldstorm Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129977','4','4','1','46128','7','7','128','70','0','Star-Soul Breeches','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129978','2','4','1','41828','20','7','114','0','0','Consortium Combatant\'s Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129979','2','4','2','21701','1','8','114','0','0','Netherstorm Eyepatch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129980','2','4','4','26814','7','6','114','0','0','Midrealm Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129981','4','2','10','42180','17','2','134','70','2','Ethereum Life-Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129982','4','2','19','42181','26','2','134','70','0','Wand of the Forgotten Star','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129983','4','4','4','46577','1','-1','128','70','0','Fel-Steel Warhelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129984','4','4','2','46105','6','8','128','70','0','Girdle of Zaetar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129985','4','4','3','46093','7','5','128','70','0','Void Reaver Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129986','4','4','1','46216','1','7','128','70','0','Cowl of the Grand Engineer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129987','4','4','1','46119','10','7','138','70','0','Gauntlets of the Sun King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129988','4','2','10','47435','17','2','141','70','2','The Nexus Key','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129989','4','4','1','46123','16','7','138','70','0','Sunshower Light Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129990','4','4','1','46506','1','7','138','70','0','Crown of the Sun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129991','4','4','3','46092','7','5','138','70','0','Sunhawk Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129992','4','4','1','46124','16','7','138','70','0','Royal Cloak of the Sunstriders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129993','4','2','8','42183','17','1','141','70','1','Twinblade of the Phoenix','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129994','4','4','1','46125','16','7','138','70','0','Thalassian Wildercloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129995','4','4','2','46106','7','8','138','70','0','Leggings of Murderous Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129996','4','2','4','41873','13','1','141','70','3','Rod of the Sun King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129997','4','4','0','39126','11','3','138','70','0','Band of the Ranger-General','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129998','4','4','4','46076','10','6','138','70','0','Royal Gauntlets of Silvermoon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('129999','2','4','2','41830','3','8','108','0','0','After Hours Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130000','2','4','1','13195','10','7','108','0','0','Mixologist\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130001','2','4','3','41831','6','5','108','0','0','Doc\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130002','2','4','4','41829','8','6','108','0','0','Boot\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130003','2','4','2','17223','10','8','114','0','0','Gloves of the Nether-Stalker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130004','2','4','3','41596','8','5','114','0','0','Landing Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130005','2','4','4','18497','3','6','114','0','0','Overmaster\'s Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130006','2','4','0','963','11','7','114','0','0','Wind Trader\'s Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130007','4','4','0','34303','2','4','138','0','0','The Darkener\'s Grasp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130008','4','4','0','31889','2','3','128','70','0','Pendant of the Lost Ages','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130009','3','2','1','43952','17','1','109','0','1','The Burning Crusader','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130010','3','2','10','41598','17','2','109','0','2','Fleshling Simulation Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130011','3','2','10','41599','17','2','109','0','2','Ameer\'s Impulse Taser','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130012','3','2','10','41600','17','2','109','0','2','Ameer\'s Judgement','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130013','3','2','15','44767','13','1','109','0','3','Twin-Bladed Ripper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130014','3','4','2','41838','7','-1','106','0','0','X-52 Pilot\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130015','4','4','0','32008','2','4','138','0','0','The Sun King\'s Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130016','3','4','4','42994','1','6','106','0','0','X-52 Technician\'s Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130017','4','4','0','35437','2','3','138','0','0','Telonicus\'s Pendant of Mayhem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130018','4','4','0','35358','2','4','138','0','0','Lord Sanguinar\'s Claim','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130019','3','4','3','32760','7','5','106','0','0','Area 52 Defender\'s Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130020','4','4','1','46114','6','7','128','70','0','Fire-Cord of the Magus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130021','4','2','10','42184','17','2','134','70','2','Wildfury Greatstaff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130022','4','4','0','34204','2','4','128','70','0','Pendant of the Perilous','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130023','4','4','9','39638','28','2','128','70','0','Totem of the Maelstrom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130024','4','4','1','46120','3','7','128','70','0','Mantle of the Elven Kings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130025','4','2','16','38370','25','1','134','70','0','Serpentshrine Shuriken','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130026','4','4','3','46085','9','5','128','70','0','Bands of the Celestial Archer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130027','4','4','4','44966','8','1','128','70','0','Boots of Courage Unending','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130028','4','4','0','28733','11','3','128','70','0','Seventh Ring of the Tirisfalen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130029','4','4','2','46103','10','8','128','70','0','Bark-Gloves of Ancient Wisdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130030','4','4','3','46089','6','5','128','70','0','Girdle of Fallen Stars','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130031','4','4','4','45920','8','1','128','70','0','Red Havoc Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130032','4','4','4','46075','6','1','128','70','0','Red Belt of Battle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130033','4','4','4','45913','8','1','128','70','0','Boots of the Protector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130034','4','4','4','46072','6','1','128','70','0','Belt of the Guardian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130035','4','4','1','45917','8','7','128','70','0','Boots of the Long Road','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130036','4','4','1','46115','6','7','128','70','0','Belt of the Long Road','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130037','4','4','1','46116','8','7','128','70','0','Boots of Blasting','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130038','4','4','1','46112','6','7','128','70','0','Belt of Blasting','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130039','4','4','2','45915','8','8','128','70','0','Boots of Utter Darkness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130040','4','4','2','46102','6','5','128','70','0','Belt of Deep Shadow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130041','4','4','2','45914','8','8','128','70','0','Boots of Natural Grace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130042','4','4','2','46104','6','5','128','70','0','Belt of Natural Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130043','4','4','3','45919','8','5','128','70','0','Hurricane Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130044','4','4','3','46090','6','5','128','70','0','Monsoon Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130045','4','4','3','46091','8','5','128','70','0','Boots of the Crimson Hawk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130046','4','4','3','46087','6','5','128','70','0','Belt of the Black Eagle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130047','4','4','3','46095','9','5','128','70','0','Blackfathom Warbands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130048','4','4','4','46078','1','-1','128','70','0','Brighthelm of Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130049','4','4','0','42185','23','3','128','70','0','Fathomstone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130050','4','4','1','42701','8','7','128','70','0','Boots of the Shifting Nightmare','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130051','4','4','8','43580','28','2','128','70','0','Idol of the Crescent Goddess','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130052','4','4','0','35472','11','3','128','70','0','Ring of Lethality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130053','4','4','4','46348','3','1','128','70','0','Pauldrons of the Wardancer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130054','4','4','3','46099','5','5','128','70','0','Ranger-General\'s Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130055','4','4','2','46353','3','8','128','70','0','Shoulderpads of the Stranger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130056','4','4','1','46130','20','7','128','70','0','Robe of Hateful Echoes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130057','4','4','4','42650','9','6','128','70','0','Bracers of Eradication','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130058','4','2','4','42193','13','1','134','70','3','Mallet of the Tides','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130059','4','4','0','33906','2','3','128','70','0','Choker of Animalistic Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130060','4','4','2','45821','8','8','128','70','0','Boots of Effortless Striking','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130061','4','4','0','31908','11','3','128','70','0','Ancestral Ring of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130062','4','4','2','43584','9','8','128','70','0','Grove-Bands of Remulos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130063','4','4','7','34961','28','2','128','70','0','Libram of Absolute Truth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130064','4','4','1','42702','6','7','128','70','0','Cord of Screaming Terrors','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130065','4','4','4','46080','5','1','128','70','0','Glowing Breastplate of Truth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130066','4','4','3','44951','8','5','128','70','0','Tempest-Strider Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130067','4','4','1','45911','8','7','128','70','0','Velvet Boots of the Guardian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130068','4','4','3','46097','6','5','128','70','0','Girdle of the Tidal Call','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130069','3','4','4','41604','7','-1','52','47','0','Earthforged Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130070','3','4','3','41607','7','-1','52','47','0','Windforged Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130071','3','2','7','41615','13','1','52','47','3','Light Earthforged Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130072','3','2','0','41614','13','1','52','47','3','Light Skyforged Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130073','3','2','4','41613','13','1','52','47','3','Light Emberforged Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130074','3','4','4','41616','5','8','100','65','0','Heavy Earthforged Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130075','4','4','2','43589','5','8','128','70','0','Gnarled Chestpiece of the Ancients','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130076','3','4','3','41617','5','8','100','65','0','Stormforged Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130077','3','2','7','41620','13','1','100','65','3','Windforged Rapier','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130079','4','4','1','46131','3','7','128','70','0','Illidari Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130080','4','2','19','41668','26','2','134','70','0','Luminescent Rod of the Naaru','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130081','4','4','4','42168','8','6','128','70','0','Warboots of Obliteration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130082','4','2','7','42187','13','1','134','70','3','Talon of Azshara','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130083','4','4','0','24646','11','3','128','70','0','Ring of Sundered Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130084','4','4','4','46349','3','1','128','70','0','Pauldrons of the Argent Sentinel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130085','4','4','3','46355','3','5','128','70','0','Mantle of the Tireless Tracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130086','3','2','8','44893','17','1','100','65','1','Stoneforged Claymore','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130087','3','2','0','42713','13','1','100','65','3','Stormforged Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130088','3','2','1','41631','17','1','100','65','1','Skyforged Great Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130089','3','2','4','41635','13','1','100','65','3','Lavaforged Warhammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130090','4','2','5','41558','17','1','134','70','1','World Breaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130091','4','4','3','46100','9','5','128','70','0','True-Aim Stalker Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130092','4','4','2','45909','8','8','128','70','0','Orca-Hide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130093','3','2','5','41638','17','1','100','65','1','Great Earthforged Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130095','4','2','7','42188','21','1','134','70','3','Fang of the Leviathan','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130096','4','4','4','42651','6','1','128','70','0','Girdle of the Invulnerable','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130097','4','4','3','46096','3','5','128','70','0','Coral-Barbed Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130098','4','4','1','43597','16','7','128','70','0','Razor-Scale Battlecloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130099','4','4','0','43599','2','4','128','70','0','Frayed Tether of the Drowned','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130100','4','4','1','45910','8','7','128','70','0','Soul-Strider Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130101','4','4','2','47437','5','8','128','70','0','Bloodsea Brigand\'s Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130102','4','4','4','46082','5','1','138','70','0','Krakken-Heart Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130103','4','2','15','42189','13','1','141','70','3','Fang of Vashj','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130104','4','4','3','45845','8','5','138','70','0','Cobra-Lash Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130105','4','2','2','43834','15','2','141','70','0','Serpent Spine Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130106','4','4','2','42636','6','5','138','70','0','Belt of One-Hundred Deaths','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130107','4','4','1','46133','20','7','138','70','0','Vestments of the Sea-Witch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130108','4','2','4','47438','21','1','141','70','3','Lightfathom Scepter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130109','4','4','0','33534','11','3','138','70','0','Ring of Endless Coils','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130110','4','4','0','31616','11','3','138','70','0','Coral Band of the Revived','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130111','4','4','2','46110','3','8','138','70','0','Runetotem\'s Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130112','4','4','4','46079','10','1','138','70','0','Glorious Gauntlets of Crestfall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130113','4','4','4','42297','5','1','133','70','0','Destroyer Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130114','4','4','4','42299','10','1','133','70','0','Destroyer Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130115','4','4','4','47594','1','1','133','70','0','Destroyer Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130116','4','4','4','42298','7','1','133','70','0','Destroyer Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130117','4','4','4','42300','3','1','133','70','0','Destroyer Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130118','4','4','4','42297','5','1','133','70','0','Destroyer Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130119','4','4','4','42299','10','1','133','70','0','Destroyer Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130120','4','4','4','47594','1','1','133','70','0','Destroyer Battle-Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130121','4','4','4','42298','7','1','133','70','0','Destroyer Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130122','4','4','4','42300','3','1','133','70','0','Destroyer Shoulderblades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130123','4','4','4','42306','5','1','133','70','0','Crystalforge Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130124','4','4','4','42307','10','1','133','70','0','Crystalforge Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130125','4','4','4','44050','1','1','133','70','0','Crystalforge Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130126','4','4','4','42309','7','1','133','70','0','Crystalforge Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130127','4','4','4','42310','3','1','133','70','0','Crystalforge Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130129','4','4','4','42306','5','1','133','70','0','Crystalforge Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130130','4','4','4','42307','10','1','133','70','0','Crystalforge Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130131','4','4','4','44050','1','1','133','70','0','Crystalforge War-Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130132','4','4','4','42309','7','1','133','70','0','Crystalforge Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130133','4','4','4','42310','3','1','133','70','0','Crystalforge Shoulderbraces','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130134','4','4','4','42306','5','1','133','70','0','Crystalforge Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130135','4','4','4','42307','10','1','133','70','0','Crystalforge Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130136','4','4','4','44050','1','1','133','70','0','Crystalforge Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130137','4','4','4','42309','7','1','133','70','0','Crystalforge Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130138','4','4','4','42310','3','1','133','70','0','Crystalforge Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130139','4','4','3','42698','5','5','133','70','0','Rift Stalker Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130140','4','4','3','43749','10','5','133','70','0','Rift Stalker Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130141','4','4','3','43750','1','5','133','70','0','Rift Stalker Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130142','4','4','3','43751','7','5','133','70','0','Rift Stalker Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130143','4','4','3','43752','3','5','133','70','0','Rift Stalker Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130144','4','4','2','45017','5','8','133','70','0','Deathmantle Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130145','4','4','2','45016','10','8','133','70','0','Deathmantle Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130146','4','4','2','45018','1','8','133','70','0','Deathmantle Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130148','4','4','2','45019','7','8','133','70','0','Deathmantle Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130149','4','4','2','45020','3','8','133','70','0','Deathmantle Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130150','4','4','1','42290','20','7','133','70','0','Vestments of the Avatar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130151','4','4','1','42291','10','7','133','70','0','Gloves of the Avatar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130152','4','4','1','42879','1','7','133','70','0','Cowl of the Avatar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130153','4','4','1','42295','7','7','133','70','0','Breeches of the Avatar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130154','4','4','1','42294','3','7','133','70','0','Mantle of the Avatar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130159','4','4','1','42290','20','7','133','70','0','Shroud of the Avatar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130160','4','4','1','42291','10','7','133','70','0','Handguards of the Avatar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130161','4','4','1','45797','1','7','133','70','0','Hood of the Avatar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130162','4','4','1','42295','7','7','133','70','0','Leggings of the Avatar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130163','4','4','1','42294','3','7','133','70','0','Wings of the Avatar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130164','4','4','3','43613','5','5','133','70','0','Cataclysm Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130165','4','4','3','43698','10','5','133','70','0','Cataclysm Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130166','4','4','3','44516','1','5','133','70','0','Cataclysm Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130167','4','4','3','43618','7','5','133','70','0','Cataclysm Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130168','4','4','3','43617','3','5','133','70','0','Cataclysm Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130169','4','4','3','43613','5','5','133','70','0','Cataclysm Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130170','4','4','3','43698','10','5','133','70','0','Cataclysm Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130171','4','4','3','63412','1','5','133','70','0','Cataclysm Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130172','4','4','3','43619','7','5','133','70','0','Cataclysm Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130173','4','4','3','43617','3','5','133','70','0','Cataclysm Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130185','4','4','3','43613','5','5','133','70','0','Cataclysm Chestplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130186','4','4','1','41706','3','7','123','70','0','Gladiator\'s Felweave Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130187','4','4','1','45149','1','7','123','70','0','Gladiator\'s Felweave Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130188','4','4','1','45236','10','7','123','70','0','Gladiator\'s Felweave Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130189','4','4','3','43698','10','5','133','70','0','Cataclysm Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130190','4','4','3','63411','1','5','133','70','0','Cataclysm Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130192','4','4','3','43619','7','5','133','70','0','Cataclysm Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130194','4','4','3','43617','3','5','133','70','0','Cataclysm Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130196','4','4','1','42640','20','7','133','70','0','Robes of Tirisfal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130200','4','4','1','44788','20','7','123','70','0','Gladiator\'s Felweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130201','4','4','1','41713','7','7','123','70','0','Gladiator\'s Felweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130205','4','4','1','42641','10','7','133','70','0','Gloves of Tirisfal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130206','4','4','1','44020','1','7','133','70','0','Cowl of Tirisfal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130207','4','4','1','42643','7','7','133','70','0','Leggings of Tirisfal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130210','4','4','1','42644','3','7','133','70','0','Mantle of Tirisfal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130211','4','4','1','42302','10','7','133','70','0','Gloves of the Corruptor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130212','4','4','1','42305','1','7','133','70','0','Hood of the Corruptor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130213','4','4','1','42303','7','7','133','70','0','Leggings of the Corruptor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130214','4','4','1','42313','20','7','133','70','0','Robe of the Corruptor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130215','4','4','1','42304','3','7','133','70','0','Mantle of the Corruptor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130216','4','4','2','43620','5','8','133','70','0','Nordrassil Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130217','4','4','2','43621','10','8','133','70','0','Nordrassil Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130218','2','4','2','41756','3','8','108','0','0','Junior Technician 3rd Grade Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130219','4','4','2','50531','1','8','133','70','0','Nordrassil Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130220','4','4','2','43623','7','8','133','70','0','Nordrassil Life-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130221','4','4','2','43624','3','8','133','70','0','Nordrassil Life-Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130222','4','4','2','43620','5','8','133','70','0','Nordrassil Chestplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130223','4','4','2','43621','10','8','133','70','0','Nordrassil Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130224','2','4','3','41757','10','5','108','0','0','Junior Technician 3rd Grade Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130225','2','4','4','26829','9','6','108','0','0','Junior Technician 3rd Grade Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130226','2','2','2','41779','15','2','108','0','0','Alley\'s Recurve','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130227','2','2','16','39999','25','2','108','0','0','Mark V\'s Throwing Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130228','4','4','2','50531','1','8','133','70','0','Nordrassil Headdress','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130229','4','4','2','43623','7','8','133','70','0','Nordrassil Feral-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130230','4','4','2','43624','3','8','133','70','0','Nordrassil Feral-Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130231','4','4','2','43620','5','8','133','70','0','Nordrassil Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130232','4','4','2','43621','10','8','133','70','0','Nordrassil Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130233','4','4','2','50531','1','8','133','70','0','Nordrassil Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130234','4','4','2','43623','7','8','133','70','0','Nordrassil Wrath-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130235','4','4','2','43624','3','8','133','70','0','Nordrassil Wrath-Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130252','2','2','19','21018','26','2','108','0','0','Unearthed Enkaat Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130253','2','4','1','16633','10','7','114','0','0','Ethereal Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130254','2','4','4','41836','6','6','114','0','0','Zephyrion\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130255','2','4','3','27155','5','5','114','0','0','Chestguard of the Stormspire','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130256','3','4','1','31910','7','7','109','0','0','Pants of the Naaru','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130257','3','4','2','41799','7','8','109','0','0','Shattrath Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130258','3','4','4','41800','5','5','109','0','0','Chestplate of A\'dal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130262','2','4','2','41839','3','8','108','0','0','Trep\'s Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130263','2','4','3','41803','8','5','108','0','0','Heavy-Duty Engineering Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130264','2','4','4','41840','10','6','108','0','0','Area 52 Engineering Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130265','2','4','1','41805','9','7','111','0','0','Zaxxis Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130266','2','4','2','41806','8','8','111','0','0','Zaxxis Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130267','2','4','4','41807','10','6','111','0','0','Zaxxis Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130268','2','4','1','41808','7','7','108','0','0','Heap Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130269','2','4','2','41810','1','8','108','0','0','Warp-Raider\'s Eyepatch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130270','2','4','4','26351','5','1','108','0','0','Scavenged Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130271','2','4','1','41811','1','7','111','0','0','Midrealm Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130272','2','4','2','42515','7','8','111','0','0','Eco-Dome Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130273','2','4','3','41813','8','5','111','0','0','Duro Footgear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130274','2','4','3','41814','9','5','108','0','0','Papa\'s Armbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130275','2','4','4','42668','3','6','108','0','0','Mech Tech Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130276','2','4','0','9858','2','3','108','0','0','Wheeler Family Heirloom','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130277','2','2','13','41816','21','1','111','0','7','Ripfang Paw','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130278','2','2','7','41856','13','1','111','0','1','Pilfered Ethereal Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130279','2','2','3','8258','26','1','111','0','0','Mama\'s Insurance','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130284','2','4','1','41817','8','7','111','0','0','Audi\'s Embroidered Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130285','2','4','2','41818','6','8','111','0','0','B.O.O.M. Operative\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130286','2','4','3','41819','3','5','111','0','0','Otherworldly Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130287','2','4','1','17234','3','7','111','0','0','Mantle of Arcane Mastery','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130288','2','4','2','42516','10','8','111','0','0','Cenarion Warden\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130289','2','4','3','41821','6','5','111','0','0','Cenarion Warden\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130290','2','4','2','13206','7','6','111','0','0','Leggings of Concentrated Power','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130291','2','4','4','41835','3','6','111','0','0','Nexus-Guard\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130293','2','4','0','41858','12','3','111','0','0','Heavenly Inspiration','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130294','2','4','1','41859','1','7','108','0','0','Red Pointy Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130295','2','4','3','41860','3','5','108','0','0','Exotic Spiked Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130296','2','4','4','41861','5','6','108','0','0','Lost Chestplate of the Reverent','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130297','3','4','2','41938','1','8','109','0','0','Circlet of the Starcaller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130298','3','4','3','28663','5','5','109','0','0','Void Slayer\'s Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130299','3','4','4','33888','7','6','109','0','0','Starcaller\'s Plated Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130300','3','4','0','41916','12','3','109','0','0','Dabiri\'s Enigma','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130311','5','2','7','41867','13','1','175','70','3','Warp Slicer','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130312','5','2','15','41872','13','1','175','70','3','Infinity Blade','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130313','5','2','10','41895','17','1','175','70','2','Staff of Disintegration','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130314','5','4','6','40867','14','6','175','70','4','Phaseshift Bulwark','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130316','5','2','1','41560','17','1','175','70','1','Devastation','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130317','5','2','4','41873','21','1','175','70','3','Cosmic Infuser','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130318','5','2','2','41875','15','2','175','70','2','Netherstrand Longbow','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130328','2','4','2','41917','5','8','114','0','0','Protectorate Assassin\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130329','2','4','3','41918','1','5','114','0','0','Flesh Handler\'s Headpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130330','2','4','4','27418','6','6','114','0','0','Starcaller\'s Plated Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130331','2','4','1','9912','6','7','114','0','0','Diviner\'s Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130332','2','4','2','4494','9','8','114','0','0','Ferocious Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130333','2','4','3','41919','3','5','114','0','0','Spaulders of the Protectorate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130334','2','4','4','41920','8','6','114','0','0','Starcaller\'s Plated Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130335','2','4','2','41925','8','8','114','0','0','Druidic Force Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130336','2','4','3','41926','10','5','114','0','0','Surger\'s Hand Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130337','2','4','4','41928','1','6','114','0','0','Protectorate Headplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130338','2','4','1','27152','16','7','114','0','0','Diviner\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130339','2','4','0','2854','11','1','114','0','0','Protectorate Assassin\'s Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130340','2','4','0','41936','12','3','114','0','0','Starkiller\'s Bauble','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130341','2','4','2','39897','10','8','114','0','0','Flesh Handler\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130342','2','4','3','22678','6','5','114','0','0','Protectorate Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130343','3','4','0','37841','12','4','115','70','0','Medallion of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130344','3','4','0','37841','12','4','115','70','0','Medallion of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130345','3','4','0','37841','12','4','115','70','0','Medallion of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130346','3','4','0','37841','12','4','115','70','0','Medallion of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130348','3','4','0','37840','12','4','115','70','0','Medallion of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130349','3','4','0','37840','12','4','115','70','0','Medallion of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130350','3','4','0','37840','12','4','115','70','0','Medallion of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130351','3','4','0','37840','12','4','115','70','0','Medallion of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130352','2','4','4','26794','9','6','114','0','0','Demolisher\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130362','2','4','2','15550','1','8','108','0','0','Energized Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130363','2','4','3','12723','5','5','108','0','0','Warp-Shielded Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130364','2','2','0','41974','13','1','108','0','3','Resonating Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130365','3','4','0','28733','11','1','109','0','0','Overseer\'s Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130366','3','4','0','9839','11','1','109','0','0','Manastorm Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130368','3','4','1','41959','8','7','109','0','0','Slippers of the High Priestess','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130369','3','4','2','41960','3','8','109','0','0','Cleansed Fel Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130370','3','4','3','41961','10','5','109','0','0','Gauntlets of the Redeemed Vindicator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130371','3','4','4','41962','6','5','109','0','0','Lightwarden\'s Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130372','3','4','2','33885','6','8','109','0','0','Socrethar\'s Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130373','3','4','2','17197','3','8','109','0','0','Netherfused Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130374','3','4','3','41963','8','8','109','0','0','Greaves of Spellpower','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130375','3','4','4','41964','10','6','109','0','0','Gauntlets of the Vanquisher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130377','3','4','0','9657','2','1','109','0','0','Karja\'s Medallion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130378','3','4','0','33135','2','1','109','0','0','Thalodien\'s Charm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130379','2','4','2','41967','5','8','114','0','0','Vindicator\'s Light Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130380','2','4','4','26158','6','5','114','0','0','Girdle of the Lost Vindicator','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130381','2','4','4','26875','3','6','114','0','0','Kaylaan\'s Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130382','2','4','1','30693','9','7','114','0','0','Aldor Ceremonial Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130383','2','4','1','25998','6','8','108','0','0','Belt of the Sage','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130384','2','4','2','17014','9','8','108','0','0','Brightdawn Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130386','2','4','4','41968','8','6','108','0','0','Bloodguard\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130394','2','2','8','20167','17','1','114','0','1','Sunfury Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130395','2','2','5','28499','17','2','114','0','1','Warp-Master\'s Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130396','2','2','6','25632','17','1','114','0','2','Jeweled Halberd','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130397','2','2','18','41969','26','2','108','0','0','Spymaster\'s Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130398','2','4','1','42519','8','6','111','0','0','Boots of the Beneficent','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130399','2','4','2','27706','9','8','111','0','0','Nightstalker\'s Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130400','2','4','4','37350','9','6','111','0','0','Thadell\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130401','2','4','2','42517','8','8','108','0','0','Farahlite Studded Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130402','2','4','4','24511','9','6','108','0','0','Field Agent\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130418','3','2','6','41999','17','1','60','55','2','Darkspear (Purple Glow)','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130419','2','4','0','6539','2','3','25','20','0','Brilliant Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130420','2','4','0','9842','11','4','29','24','0','Heavy Jade Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130421','2','4','0','28682','11','5','46','41','1','Red Ring of Destruction','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130422','2','4','0','31906','11','5','53','48','0','Diamond Focus Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130446','4','4','0','43551','12','4','128','70','0','Solarian\'s Sapphire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130447','4','4','0','43547','12','4','128','70','0','Tome of Fiery Redemption','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130448','4','4','0','43548','12','4','128','70','0','Talon of Al\'ar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130449','4','4','0','43553','12','4','128','70','0','Void Star Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130450','4','4','0','43560','12','4','128','70','0','Warp-Spring Coil','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130459','3','4','1','42100','20','7','110','70','0','Netherflame Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130460','3','4','1','42102','6','6','110','70','0','Netherflame Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130461','3','4','1','42101','8','6','110','70','0','Netherflame Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130463','3','4','1','13678','6','6','110','70','0','Lifeblood Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130464','3','4','1','4063','9','7','112','69','0','Lifeblood Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130465','3','4','1','42110','7','8','106','67','0','Lifeblood Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130486','4','4','4','45972','5','6','136','70','0','Merciless Gladiator\'s Plate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130487','4','4','4','45973','10','6','136','70','0','Merciless Gladiator\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130488','4','4','4','47593','1','6','136','70','0','Merciless Gladiator\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130489','4','4','4','45971','7','6','136','70','0','Merciless Gladiator\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130490','4','4','4','45970','3','6','136','70','0','Merciless Gladiator\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130491','4','4','4','42168','8','6','123','70','0','General\'s Plate Greaves Tier 2','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130497','4','4','3','35093','7','5','65','60','0','Sentinel\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130498','4','4','4','35175','7','6','65','60','0','Outrider\'s Lamellar Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130504','2','2','15','20425','13','1','19','0','3','Leafblade Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130505','2','4','2','14739','5','7','19','0','0','Ghostclaw Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130514','2','4','1','28756','3','7','108','0','0','Nether Guards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130515','2','4','1','42279','1','7','108','0','0','Junior Technician 3rd Grade Goggles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130516','2','4','1','43150','6','7','108','0','0','Chief Engineer\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130517','2','4','1','15823','7','7','114','0','0','Netherfarer\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130518','2','4','1','8720','5','7','114','0','0','Warpthread Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130519','2','4','1','4272','8','7','114','0','0','Boots of the Nexus Warden','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130520','2','4','1','16892','9','7','111','0','0','Gold-Trimmed Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130521','2','4','1','31634','10','7','108','0','0','Warpweaver\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130522','2','2','10','20298','17','2','114','0','2','Conjurer\'s Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130523','2','2','19','42278','26','2','111','0','0','Hotshot Cattle Prod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130531','4','4','1','42316','7','7','110','70','0','Breeches of the Occultist','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130532','4','4','1','42315','7','7','110','70','0','Kirin Tor Master\'s Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130533','4','4','4','42326','7','6','110','70','0','Vanquisher\'s Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130534','4','4','3','42325','7','5','110','70','0','Wyrmscale Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130535','4','4','2','42314','7','8','110','70','0','Forestwalker Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130536','4','4','4','42318','7','6','110','70','0','Greaves of the Martyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130538','4','4','2','42319','7','8','110','70','0','Midnight Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130541','4','4','3','42324','7','5','110','70','0','Stormsong Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130542','2','4','0','41640','0','-1','65','0','0','Dimensional Ripper - Area 52','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130543','4','4','1','43424','7','7','110','70','0','Pontifex Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130544','2','4','0','40162','0','-1','65','0','0','Ultrasafe Transporter: Toshley\'s Station','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130568','2','2','16','40002','25','2','108','66','0','The Sharp Cookie','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130569','0','2','7','5129','13','1','70','64','3','Proximo\'s Rudius','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130570','2','2','8','42336','17','1','114','66','1','Arkadian Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130597','2','2','8','42336','17','1','114','66','1','Halaani Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130599','2','2','16','40002','25','2','108','66','0','Avenging Blades','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130619','4','4','0','43559','12','4','128','70','0','Fel Reaver\'s Piston','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130620','4','4','0','43609','12','4','128','70','0','Spyglass of the Hidden Fleet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130621','4','4','0','43605','12','4','138','70','0','Prism of Inner Calm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130626','4','4','0','43601','12','4','128','70','0','Sextant of Unstable Currents','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130627','4','4','0','43595','12','4','128','70','0','Tsunami Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130629','4','4','0','35439','12','4','128','70','0','Scarab of Displacement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130641','4','4','4','40499','8','6','115','70','0','Boots of Elusion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130642','4','4','1','42491','16','7','115','70','0','Drape of the Righteous','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130643','4','4','3','40513','6','5','115','70','0','Belt of the Tracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130644','4','4','2','42492','10','8','115','70','0','Grips of Deftness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130663','4','4','0','43598','12','4','128','70','0','Fathom-Brooch of the Tidewalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130664','4','4','0','43579','12','4','128','70','0','Living Root of the Wildheart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130665','4','4','0','43585','12','4','128','70','0','Earring of Soulful Meditation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130666','4','4','0','35437','2','3','115','70','0','Ritssyn\'s Lost Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130667','4','4','0','35472','11','3','115','70','0','Ring of Unrelenting Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130668','4','4','1','35183','10','7','115','70','0','Grasp of the Dead','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130673','4','4','1','40508','6','7','115','70','0','Inferno Waist Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130674','4','4','2','42247','8','8','115','70','0','Zierhut\'s Lost Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130675','4','4','1','40508','6','7','115','70','0','Lurker\'s Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130676','4','4','2','29954','6','5','115','70','0','Lurker\'s Grasp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130677','4','4','3','41041','6','7','115','70','0','Lurker\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130678','4','4','4','35614','6','1','115','70','0','Lurker\'s Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130680','4','4','1','41483','8','7','115','70','0','Glider\'s Foot-Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130681','4','4','2','41899','8','8','115','70','0','Glider\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130682','4','4','3','42334','8','5','115','70','0','Glider\'s Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130683','4','4','4','40499','8','6','115','70','0','Glider\'s Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130684','4','4','1','40390','9','7','115','70','0','Ravager\'s Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130685','4','4','2','45055','9','7','115','70','0','Ravager\'s Wrist-Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130686','4','4','3','40494','9','5','115','70','0','Ravager\'s Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130687','4','4','4','36248','9','-1','115','70','0','Ravager\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130696','3','4','0','38758','12','-1','52','0','0','Scourgebane','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130705','3','4','4','30829','3','6','115','70','0','Spaulders of Slaughter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130707','3','4','2','11571','8','8','115','70','0','Nimble-foot Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130708','3','4','3','30492','6','5','115','70','0','Belt of Flowing Thought','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130709','3','4','1','42681','7','7','115','70','0','Pantaloons of Flaming Wrath','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130710','3','4','0','32087','2','3','115','70','0','Blood Guard\'s Necklace of Ferocity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130719','1','4','0','42708','1','-1','70','0','0','Spectrecles','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130720','4','4','0','43588','12','4','128','70','0','Serpent-Coil Braid','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130721','1','4','0','42708','1','-1','70','0','0','Spectrecles','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130722','4','2','1','43263','17','1','120','70','1','Ethereum Nexus-Reaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130723','4','2','15','43267','21','1','120','70','3','Talon of the Tempest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130724','4','2','3','41433','26','1','120','70','0','Barrel-Blade Longrifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130725','4','4','1','43269','10','7','120','70','0','Anger-Spark Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130726','4','4','0','35358','2','4','120','70','0','Archaic Charm of Presence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130727','4','4','1','43284','7','7','120','70','0','Gilded Trousers of Benediction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130728','4','4','3','44683','1','5','120','70','0','Fathom-Helm of the Deeps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130729','4','4','1','28891','16','7','120','70','0','Black-Iron Battlecloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130730','4','4','2','44598','5','8','120','70','0','Terrorweave Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130731','4','4','4','44879','1','1','120','70','0','Faceguard of the Endless Watch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130732','4','2','10','43253','17','2','120','70','2','Exodar Life-Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130733','4','2','7','43259','13','1','120','70','1','Hope Ender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130734','4','4','1','43249','7','7','120','70','0','Leggings of the Seventh Circle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130735','4','4','1','22995','16','7','120','70','0','Ancient Spellcloak of the Highborne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130736','4','4','0','39129','11','3','120','70','0','Ring of Flowing Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130737','4','4','2','43251','8','8','120','70','0','Gold-Leaf Wildboots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130738','4','4','0','9834','11','3','120','70','0','Ring of Reciprocity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130739','4','4','3','43254','7','5','120','70','0','Scaled Greaves of the Marksman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130740','4','4','4','43258','3','1','120','70','0','Ripfiend Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130741','4','4','4','43261','10','1','120','70','0','Topaz-Studded Battlegrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130749','1','2','7','42751','13','1','69','60','3','Draenic Sparring Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130750','1','2','8','42750','17','1','72','60','1','Draenic Warblade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130751','1','2','0','42749','21','1','70','60','3','Mag\'hari Light Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130752','1','2','1','42748','17','1','70','60','1','Mag\'hari Battleaxe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130753','2','2','6','42754','17','2','83','60','2','Warphorn Spear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130754','1','2','4','42757','13','2','71','60','3','Ancient Bone Mace','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130755','2','2','13','42758','21','8','80','60','7','Mag\'hari Fighting Claw','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130757','1','2','18','44885','26','-1','71','60','0','Draenic Light Crossbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130758','1','2','3','44723','26','-1','70','60','0','Aldor Guardian Rifle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130759','1','2','2','44724','15','-1','69','60','0','Mag\'hari Light Recurve','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130760','1','4','1','42771','20','0','70','60','0','Formal Draenic Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130761','4','4','1','31685','7','7','115','70','0','Infernoweave Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130762','4','4','1','31673','20','7','115','70','0','Infernoweave Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130763','4','4','1','41901','8','7','115','70','0','Infernoweave Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130764','4','4','1','28754','10','7','115','70','0','Infernoweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130765','1','4','4','42775','5','6','90','70','0','Heavy Draenic Breastplate','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130766','4','4','4','28843','7','6','115','70','0','Inferno Tempered Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130767','4','4','4','43447','10','8','115','70','0','Inferno Tempered Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130768','4','4','4','42672','8','8','115','70','0','Inferno Tempered Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130769','4','4','4','21580','5','6','115','70','0','Inferno Tempered Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130770','4','4','3','33690','8','5','115','70','0','Inferno Forged Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130771','1','4','4','42777','9','0','90','70','0','Heavy Draenic Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130772','4','4','3','36426','7','5','115','70','0','Inferno Forged Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130773','4','4','3','32360','5','5','115','70','0','Inferno Forged Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130774','4','4','3','42778','10','7','115','70','0','Inferno Forged Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130775','1','4','6','44270','14','2','90','70','4','Layered Bone Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130776','4','4','2','33840','5','8','115','70','0','Inferno Hardened Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130777','1','4','4','42782','6','0','90','70','0','Aldor Heavy Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130778','4','4','2','42783','7','8','115','70','0','Inferno Hardened Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130779','4','4','2','42784','8','8','115','70','0','Inferno Hardened Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130780','4','4','2','42787','10','8','115','70','0','Inferno Hardened Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130781','1','4','3','42786','5','0','90','70','0','Mag\'hari Chain Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130784','1','4','3','42788','10','0','90','70','0','Worn Mag\'hari Gauntlets','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130787','3','2','15','40855','21','1','115','0','3','Illidari-Bane Mageblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130788','3','2','7','41428','13','1','115','0','3','Illidari-Bane Broadsword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130789','3','2','8','47478','17','1','115','0','1','Illidari-Bane Claymore','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130804','3','4','0','31800','11','-1','23','18','0','Bronze Band of Force','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130825','3','4','0','44358','11','5','114','70','0','Ring of Arcane Shielding','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130830','4','2','6','42906','17','1','100','70','2','Trident of the Outcast Tribe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130831','3','4','1','42907','16','7','112','69','0','Cloak of Arcane Evasion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130832','4','2','4','42909','21','1','100','70','3','Gavel of Unearthed Secrets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130834','4','4','0','31908','11','3','100','70','0','Shapeshifter\'s Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130835','3','4','3','42916','5','-1','115','70','0','Salvager\'s Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130836','3','4','1','42917','7','7','115','70','0','Leggings of the Skettis Exile','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130837','3','4','1','42942','9','5','112','69','0','Flameheart Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130838','3','4','1','42941','10','6','114','70','0','Flameheart Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130839','3','4','1','41580','5','7','115','70','0','Flameheart Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130841','3','4','0','1317','12','1','115','70','0','Lower City Prayerbook','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130847','2','4','1','67050','1','5','108','0','0','X-52 Rocket Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130855','2','2','0','18377','13','1','84','0','3','Shatterstone Pick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130856','2','4','4','43000','1','6','84','0','0','Underworld Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130857','2','4','0','7557','23','3','84','0','0','Deep Core Lantern','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130859','3','2','19','43007','26','2','109','0','0','Wand of the Seer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130860','3','4','0','31800','11','4','109','0','0','Kaylaan\'s Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130861','4','4','4','45748','9','1','141','70','0','Furious Shackles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130862','4','4','4','45741','9','1','141','70','0','Blessed Adamantite Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130863','4','4','2','45746','9','8','141','70','0','Deadly Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130864','4','4','3','45744','9','5','141','70','0','Bracers of the Pathfinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130865','4','2','15','45233','13','1','141','70','3','Tracker\'s Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130866','4','4','4','45759','3','6','141','70','0','Blood-stained Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130868','4','4','2','45753','9','8','141','70','0','Rejuvenating Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130869','4','4','3','45750','9','5','141','70','0','Howling Wind Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130870','4','4','1','45745','9','7','141','70','0','Cuffs of Devastation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130871','4','4','1','45743','9','7','141','70','0','Bracers of Martyrdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130872','4','4','0','45211','23','3','141','70','0','Chronicle of Dark Secrets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130873','4','4','3','45240','8','5','141','70','0','Stillwater Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130874','4','2','7','45232','13','1','141','70','1','The Unbreakable Will','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130878','4','4','4','45212','3','1','141','70','0','Glimmering Steel Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130879','4','4','2','45245','6','5','141','70','0','Don Alejandro\'s Money Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130880','4','4','3','45239','8','5','141','70','0','Quickstrider Moccasins','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130881','4','2','7','45799','13','1','141','70','3','Blade of Infamy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130882','4','4','6','44863','14','6','141','70','4','Bastion of Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130883','4','2','10','45224','17','2','141','70','2','Pillar of Ferocity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130884','4','4','1','45749','3','7','141','70','0','Hatefury Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130885','4','4','1','45737','8','7','141','70','0','Archbishop\'s Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130886','4','4','2','45238','8','8','141','70','0','Enchanted Leather Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130887','4','4','3','45767','5','5','141','70','0','Golden Links of Restoration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130888','4','4','1','45241','6','7','141','70','0','Anetheron\'s Noose','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130889','4','4','6','44865','14','6','141','70','4','Kaz\'rogal\'s Hardened Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130891','4','4','2','45800','8','8','141','70','0','Black Featherlight Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130892','4','4','3','45735','3','5','141','70','0','Beast-tamer\'s Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130893','4','4','3','45229','7','5','141','70','0','Sun-touched Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130894','4','4','1','45742','8','7','141','70','0','Blue Suede Shoes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130895','4','4','1','45242','6','7','141','70','0','Angelista\'s Sash','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130896','4','4','4','45222','5','1','141','70','0','Glory of the Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130897','4','4','4','48291','6','1','141','70','0','Girdle of Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130898','4','4','2','45227','7','8','141','70','0','Shady Dealer\'s Pantaloons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130899','4','4','2','45755','5','7','141','70','0','Don Rodrigo\'s Poncho','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130900','4','4','3','47778','7','5','141','70','0','Bow-stitched Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130901','4','2','15','45209','13','1','141','70','3','Boundless Agony','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130902','4','2','8','45776','17','1','151','70','1','Cataclysm\'s Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130903','4','4','4','46359','7','1','151','70','0','Legguards of Endless Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130904','4','4','4','46351','5','1','151','70','0','Savior\'s Grasp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130905','4','4','2','46352','5','8','151','70','0','Midnight Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130906','4','2','2','45265','15','2','151','70','0','Bristleblitz Striker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130907','4','4','3','46356','5','5','151','70','0','Mail of Fevered Pursuit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130908','4','2','10','45205','17','2','151','70','2','Apostle of Argus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130909','4','4','6','45204','14','6','151','70','4','Antonidas\'s Aegis of Rapt Concentration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130910','4','2','7','45360','21','1','151','70','3','Tempest of Chaos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130911','4','4','0','39420','23','3','151','70','0','Scepter of Purification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130912','4','4','1','45218','7','7','151','70','0','Leggings of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130913','4','4','1','45771','20','7','151','70','0','Robes of Rhonin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130914','4','4','2','45244','6','8','141','70','0','Belt of the Crescent Moon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130915','4','4','4','45243','6','1','141','70','0','Belt of Seething Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130916','4','4','1','45219','7','7','141','70','0','Leggings of Channeled Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130917','4','4','2','45752','3','8','141','70','0','Razorfury Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130918','4','2','4','45346','21','1','141','70','3','Hammer of Atonement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130919','4','4','3','45247','6','5','141','70','0','Valestalker Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130922','2','4','1','43213','1','7','114','0','0','Ata\'mal Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130923','2','4','1','43214','6','7','114','0','0','Grom\'tor\'s Bloodied Bandage','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130924','3','4','1','30768','10','7','106','0','0','Gloves of the High Magus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130925','3','4','1','43346','3','7','109','0','0','Spaulders of the Torn-heart','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130926','2','4','1','43216','8','7','111','0','0','Ashwalker\'s Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130927','2','4','1','43217','9','5','114','0','0','Earthmender\'s Bracer of Shattering','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130928','2','4','1','43218','5','7','111','0','0','Sketh\'lon Survivor\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130929','2','4','1','43219','7','7','111','0','0','Soothsayer\'s Kilt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130930','2','4','1','43220','10','7','114','0','0','Grips of the Void','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130931','2','4','1','43221','1','7','114','0','0','Ghostly Headwrap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130932','3','4','1','26435','6','7','109','0','0','Akama\'s Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130933','3','4','2','43222','5','8','109','0','0','Hauberk of Karabor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130936','2','4','2','38516','6','-1','114','0','0','Eva\'s Strap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130937','2','4','2','43343','10','8','114','0','0','Earthmender\'s Fists of Undoing','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130938','2','4','2','43227','3','5','111','0','0','Azurestrike Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130939','3','4','2','43347','8','8','109','0','0','Felboar Hide Shoes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130940','2','4','2','34685','9','8','114','0','0','Aged Leather Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130941','2','4','2','43231','7','8','111','0','0','Ash Tempered Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130942','2','4','2','44550','6','-1','114','0','0','Manimal\'s Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130943','3','4','2','43235','10','8','109','0','0','Verdant Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130944','3','4','2','43233','9','8','109','0','0','Umberhowl\'s Collar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130945','2','4','2','43236','5','8','114','0','0','Grom\'tor\'s Friend\'s Cousin\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130946','2','4','2','43237','1','8','111','0','0','Mooncrest Headdress','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130947','2','4','3','43241','5','5','111','0','0','Crimson Mail Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130948','3','4','3','44018','7','5','109','0','0','Sunfury Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130950','2','4','3','43247','6','5','111','0','0','Darkhunter\'s Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130951','3','4','3','43348','10','5','109','0','0','Ar\'tor\'s Mainstay','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130952','2','4','3','43250','3','5','114','0','0','Earthmender\'s Crimson Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130953','2','4','3','43252','8','5','114','0','0','Boots of the Skybreaker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130955','2','4','3','44732','1','7','111','0','0','Crown of Cinders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130956','2','4','3','28806','9','5','114','0','0','Oronok\'s Old Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130957','2','4','3','43260','7','5','114','0','0','Oronok\'s Old Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130958','2','4','3','43262','8','5','114','0','0','Blackened Chain Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130959','2','4','4','43272','5','6','114','0','0','Torn-heart Family Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130960','2','4','4','43274','7','6','111','0','0','Runed Sketh\'lon Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130961','2','4','4','43277','1','6','114','0','0','Ash-Covered Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130962','3','4','4','43345','6','1','109','0','0','Borak\'s Belt of Bravery','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130964','2','4','4','43344','3','6','114','0','0','Skybreaker\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130966','2','4','4','43283','9','6','111','0','0','Singed Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130967','3','4','4','43349','10','6','109','0','0','The Hands of Fate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130968','2','4','4','43287','8','6','114','0','0','Earthmender\'s Plated Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130969','4','4','4','45659','10','1','146','70','0','Onslaught Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130970','4','4','4','45659','10','1','146','70','0','Onslaught Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130971','2','4','1','15163','16','7','114','0','0','Torn-heart Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130972','4','4','4','49684','1','1','146','70','0','Onslaught Battle-Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130973','3','4','0','33534','11','4','106','0','0','Band of Anguish','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130974','4','4','4','49684','1','1','146','70','0','Onslaught Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130975','4','4','4','45658','5','1','146','70','0','Onslaught Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130976','4','4','4','45658','5','1','146','70','0','Onslaught Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130977','4','4','4','45660','7','1','146','70','0','Onslaught Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130978','4','4','4','45660','7','1','146','70','0','Onslaught Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130979','4','4','4','45661','3','1','146','70','0','Onslaught Shoulderblades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130980','4','4','4','45661','3','1','146','70','0','Onslaught Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130981','2','4','0','35358','2','3','114','0','0','Grom\'tor\'s Pendant of Conquest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130982','4','4','4','45685','10','1','146','70','0','Lightbringer Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130983','4','4','4','46357','10','1','146','70','0','Lightbringer Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130984','3','4','6','42285','14','1','109','0','4','Spellbreaker\'s Buckler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130985','4','4','4','45685','10','1','146','70','0','Lightbringer Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130986','2','4','6','41645','14','1','111','0','4','Bloodforged Guard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130987','4','4','4','45684','1','1','146','70','0','Lightbringer Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130988','4','4','4','46358','1','1','146','70','0','Lightbringer Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130989','4','4','4','45684','1','1','146','70','0','Lightbringer War-Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130990','4','4','4','46350','5','1','146','70','0','Lightbringer Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130991','4','4','4','45683','5','1','146','70','0','Lightbringer Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130992','4','4','4','45683','5','1','146','70','0','Lightbringer Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130993','4','4','4','45686','7','1','146','70','0','Lightbringer Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130994','4','4','4','45686','7','1','146','70','0','Lightbringer Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130995','4','4','4','45686','7','1','146','70','0','Lightbringer Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130996','4','4','4','45884','3','1','146','70','0','Lightbringer Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130997','4','4','4','45884','3','1','146','70','0','Lightbringer Shoulderbraces','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130998','4','4','4','45884','3','1','146','70','0','Lightbringer Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('130999','3','2','15','43309','13','1','109','0','3','Ashtongue Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131000','3','2','3','43312','26','1','109','0','0','Bloodwarder\'s Rifle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131001','4','4','3','45679','10','5','146','70','0','Gronnstalker\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131002','3','2','7','1930','21','1','109','0','3','Summoner\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131003','4','4','3','45680','1','5','146','70','0','Gronnstalker\'s Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131004','4','4','3','45678','5','5','146','70','0','Gronnstalker\'s Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131005','4','4','3','45681','7','5','146','70','0','Gronnstalker\'s Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131006','4','4','3','45682','3','5','146','70','0','Gronnstalker\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131007','4','4','3','45670','10','5','146','70','0','Skyshatter Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131008','4','4','3','45670','10','5','146','70','0','Skyshatter Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131009','3','2','10','43313','17','2','109','0','2','Wildcaller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131010','3','2','1','44011','17','1','109','0','1','Slayer\'s Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131011','4','4','3','45670','10','5','146','70','0','Skyshatter Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131012','4','4','3','45669','1','5','146','70','0','Skyshatter Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131013','3','2','15','43315','21','1','109','0','3','Ceremonial Kris','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131014','4','4','3','45669','1','5','146','70','0','Skyshatter Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131015','4','4','3','45669','1','5','146','70','0','Skyshatter Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131016','4','4','3','45668','20','5','146','70','0','Skyshatter Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131017','4','4','3','45668','20','5','146','70','0','Skyshatter Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131018','4','4','3','45668','20','5','146','70','0','Skyshatter Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131019','4','4','3','45671','7','5','146','70','0','Skyshatter Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131020','4','4','3','45671','7','5','146','70','0','Skyshatter Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131021','4','4','3','45671','7','5','146','70','0','Skyshatter Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131022','4','4','3','45672','3','5','146','70','0','Skyshatter Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131023','4','4','3','45672','3','5','146','70','0','Skyshatter Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131024','4','4','3','45672','3','5','146','70','0','Skyshatter Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131025','3','4','8','43316','28','2','106','0','0','Idol of the Avenger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131026','4','4','2','45426','10','8','146','70','0','Slayer\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131027','4','4','2','45434','1','8','146','70','0','Slayer\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131028','4','4','2','45425','5','8','146','70','0','Slayer\'s Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131029','4','4','2','45428','7','8','146','70','0','Slayer\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131030','4','4','2','45436','3','8','146','70','0','Slayer\'s Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131031','3','4','9','43317','28','2','106','0','0','Stormfury Totem','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131032','4','4','2','45664','10','8','146','70','0','Thunderheart Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131033','3','4','7','43318','28','2','106','0','0','Libram of Righteous Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131034','4','4','2','45664','10','8','146','70','0','Thunderheart Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131035','4','4','2','45664','10','8','146','70','0','Thunderheart Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131036','3','2','10','43323','17','2','108','0','2','Oronok\'s Ancient Scepter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131037','4','4','2','45663','1','8','146','70','0','Thunderheart Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131038','3','2','10','43353','17','2','108','0','2','Staff of the Redeemer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131039','4','4','2','45663','1','8','146','70','0','Thunderheart Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131040','4','4','2','45663','1','8','146','70','0','Thunderheart Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131041','4','4','2','45662','20','8','146','70','0','Thunderheart Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131042','4','4','2','45662','20','8','146','70','0','Thunderheart Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131043','4','4','2','45662','20','8','146','70','0','Thunderheart Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131044','4','4','2','45665','7','8','146','70','0','Thunderheart Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131045','4','4','2','45666','7','8','146','70','0','Thunderheart Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131046','4','4','2','45665','7','8','146','70','0','Thunderheart Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131047','4','4','2','45667','3','8','146','70','0','Thunderheart Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131048','4','4','2','45667','3','8','146','70','0','Thunderheart Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131049','4','4','2','45667','3','8','146','70','0','Thunderheart Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131050','4','4','1','45673','10','7','146','70','0','Gloves of the Malefic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131051','4','4','1','45674','1','7','146','70','0','Hood of the Malefic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131052','4','4','1','45677','20','7','146','70','0','Robe of the Malefic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131053','4','4','1','45675','7','7','146','70','0','Leggings of the Malefic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131054','4','4','1','45676','3','7','146','70','0','Mantle of the Malefic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131055','4','4','1','45121','10','7','146','70','0','Gloves of the Tempest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131056','4','4','1','45449','1','7','146','70','0','Cowl of the Tempest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131057','4','4','1','45119','20','7','146','70','0','Robes of the Tempest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131058','4','4','1','45122','7','7','146','70','0','Leggings of the Tempest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131059','4','4','1','45126','3','7','146','70','0','Mantle of the Tempest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131060','4','4','1','44977','10','7','146','70','0','Gloves of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131061','4','4','1','44977','10','7','146','70','0','Handguards of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131062','3','2','1','43355','17','1','109','0','1','Torn-heart Axe of Battle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131063','4','4','1','45770','1','7','146','70','0','Cowl of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131064','4','4','1','45770','1','7','146','70','0','Hood of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131065','4','4','1','44979','20','7','146','70','0','Shroud of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131066','4','4','1','44979','20','7','146','70','0','Vestments of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131067','4','4','1','44976','7','7','146','70','0','Leggings of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131068','4','4','1','44976','7','7','146','70','0','Breeches of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131069','4','4','1','44978','3','7','146','70','0','Mantle of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131070','4','4','1','44978','3','7','146','70','0','Shoulderpads of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131071','3','2','0','43356','13','1','109','0','3','Grom\'tor\'s Charge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131072','3','2','2','43384','15','2','109','0','0','Lohn\'goron, Bow of the Torn-heart','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131073','3','2','15','43645','13','1','109','0','3','Borak\'s Reminder','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131074','3','4','0','31899','2','3','109','0','0','Amulet of the Torn-heart','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131075','3','4','0','43332','11','6','109','0','0','Evoker\'s Mark of the Redemption','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131076','3','4','0','43335','11','6','109','0','0','Spellsword\'s Mark of the Redemption','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131077','3','4','0','43339','11','6','109','0','0','Slayer\'s Mark of the Redemption','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131078','3','4','0','43340','11','6','109','0','0','Protector\'s Mark of the Redemption','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131080','2','4','0','43360','12','1','105','65','0','Mercurial Stone','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131104','3','4','1','43514','1','7','109','0','0','Evoker\'s Helmet of Second Sight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131105','3','4','4','45168','1','1','109','0','0','Overlord\'s Helmet of Second Sight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131106','3','4','3','43517','1','5','109','0','0','Stalker\'s Helmet of Second Sight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131107','3','4','3','43516','1','5','109','0','0','Shamanistic Helmet of Second Sight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131109','3','4','2','44680','1','8','109','0','0','Stealther\'s Helmet of Second Sight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131110','3','4','2','43501','1','8','109','0','0','Druidic Helmet of Second Sight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131111','2','4','1','31135','10','7','114','0','0','Uvuros Hide Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131112','2','4','2','43478','8','8','114','0','0','Uvuros Hide Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131113','4','4','0','31029','12','-1','115','0','0','Violet Badge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131114','2','4','3','43483','6','5','114','0','0','Uvuros Hide Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131115','2','4','4','43490','3','6','114','0','0','Uvuros Plated Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131125','3','4','4','43043','8','6','85','60','0','Boots of the Decimator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131126','3','4','2','43235','10','8','85','60','0','Gloves of Ferocity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131127','3','4','3','43626','5','-1','85','60','0','Hauberk of Totemic Rage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131131','3','4','2','43065','6','8','85','60','0','Sash of Silent Blades','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131133','3','4','1','21963','7','7','85','60','0','Leggings of Concentrated Darkness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131134','3','2','8','43638','17','1','85','60','1','Blade of Misfortune','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131136','3','4','4','43140','5','6','88','61','0','Breastplate of Blade Turning','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131137','3','4','4','43640','10','6','88','61','0','Gauntlets of Purification','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131138','3','4','3','43045','6','5','88','61','0','Storm Lord\'s Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131139','3','2','4','43644','13','2','88','61','3','Fist of Reckoning','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131140','3','4','1','42907','16','7','88','61','0','Cloak of Entropy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131142','3','2','15','43649','21','1','88','61','3','Blade of Trapped Knowledge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131143','3','4','1','23422','16','7','91','62','0','Shroud of Frenzy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131145','3','4','2','43653','1','8','91','62','0','Headdress of the Sleeper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131147','3','4','0','15420','2','-1','91','62','0','Pendant of Cunning','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131148','3','4','2','28179','3','8','91','61','0','Demon Hide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131149','3','4','1','43073','10','7','91','62','0','Gloves of Pandemonium','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131150','3','4','1','43654','10','7','91','62','0','Gloves of Piety','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131151','3','4','4','42848','6','6','94','63','0','Girdle of Siege','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131152','3','4','4','27407','5','6','94','63','0','Chestguard of Illumination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131153','3','2','0','43655','13','1','94','63','3','Axe of the Legion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131154','2','4','0','35358','2','3','26','21','0','Bronze Torc','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131155','3','4','4','43666','5','6','109','68','0','Drakescale Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131156','3','4','3','43665','5','5','109','68','0','Drakescale Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131157','3','4','2','16482','5','8','109','68','0','Drakehide Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131158','3','4','1','43667','5','7','109','68','0','Drakeweave Raiment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131159','3','4','4','43661','3','6','109','68','0','Felstone Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131160','3','4','3','26273','3','5','109','68','0','Felstone Epaulets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131161','3','4','2','43669','3','8','109','68','0','Felstone Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131162','3','4','1','43668','3','7','109','68','0','Felstone Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131163','3','4','4','43672','10','6','103','66','0','Nethersteel Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131164','3','4','3','43671','10','5','103','66','0','Nethersteel Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131165','3','4','2','43673','10','8','103','66','0','Nethersteel-Reinforced Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131166','3','4','1','43675','10','8','103','66','0','Nethersteel-Lined Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131168','3','4','4','43676','5','6','82','60','0','Demon-Forged Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131170','3','4','3','43679','5','5','82','60','0','Demon-Forged Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131172','3','4','2','43681','5','8','82','60','0','Demon-Cured Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131173','3','4','3','30438','8','5','94','63','0','Boots of Savagery','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131174','3','4','1','43682','5','7','82','60','0','Demonweave Raiment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131175','3','4','2','43166','9','8','94','63','0','Blade Dancer\'s Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131176','3','4','4','43684','10','6','91','62','0','Rockwurm Plate Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131177','3','4','3','43686','10','5','91','62','0','Rockwurm Scale Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131178','3','4','0','40413','2','3','94','63','0','Amulet of Unstable Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131179','3','4','2','43689','10','8','91','62','0','Rockwurm Hide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131180','3','4','4','41964','10','6','97','64','0','Gauntlets of the Skullsplitter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131181','3','4','1','43691','10','7','91','62','0','Rockwurm Hide Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131182','3','4','4','43692','1','6','85','60','0','Legion Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131183','3','4','3','43695','1','5','85','60','0','Legion Coif','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131184','3','4','2','43697','1','8','85','60','0','Legion Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131185','3','4','1','27293','1','7','85','60','0','Legion Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131186','3','2','10','43313','17','2','97','64','2','Braxxis\' Staff of Slumber','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131187','3','4','3','32755','8','5','97','64','0','Boots of the Pathfinder','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131188','3','4','4','43699','9','6','94','63','0','Crocolisk Scale Vambraces','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131189','3','4','3','43700','9','5','94','63','0','Crocolisk Scale Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131190','3','4','2','43669','3','8','97','68','0','The Dreamer\'s Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131191','3','4','2','32090','9','8','94','63','0','Crocolisk Hide Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131192','3','4','1','27601','9','7','94','63','0','Crocolisk Hide Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131193','3','2','15','43645','13','1','97','64','3','Blade of Unquenched Thirst','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131194','3','4','0','43701','2','3','97','64','0','Gronn-Blessed Warbeads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131195','3','4','4','43702','6','6','103','66','0','Voidplate Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131196','3','4','0','39211','2','3','97','64','0','Amulet of Sanctification','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131197','3','4','3','43703','6','5','103','66','0','Voidscale Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131198','3','4','2','43704','6','8','103','66','0','Voidhide Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131199','3','4','1','43214','6','8','103','66','0','Voidweave Cilice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131200','3','4','6','4404','14','1','100','65','4','Shield of the Wayward Footman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131201','3','4','1','43705','16','7','103','66','0','Illidari Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131202','3','4','4','41962','6','5','100','65','0','Girdle of Divine Blessing','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131203','3','4','0','43706','11','3','103','66','0','Arcane Loop','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131204','3','2','3','43708','26','1','100','65','0','The Gunblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131209','3','4','4','43713','7','6','109','68','0','Chimaerascale Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131210','3','4','3','33029','7','5','109','68','0','Chimaerascale Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131211','3','4','2','43714','7','8','109','68','0','Chimaerahide Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131212','3','4','1','33149','7','7','109','68','0','Chimaerahide Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131213','3','4','4','43715','8','6','109','68','0','Abyssal Plate Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131214','3','4','3','33045','8','5','109','68','0','Abyssal Mail Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131215','3','4','2','43717','8','8','109','68','0','Abyssal Leather Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131216','3','4','1','43718','8','7','109','68','0','Abyssal Cloth Footwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131217','3','4','4','43719','1','6','109','68','0','Crimson Beholder Eye','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131218','3','4','3','43721','1','5','109','68','0','Fiery Beholder Eye','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131219','3','4','2','43723','1','8','109','68','0','Emerald Beholder Eye','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131220','3','4','1','43724','1','7','109','68','0','Amethyst Beholder Eye','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131221','3','4','4','43725','9','6','103','66','0','Illidari Vambraces','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131222','3','4','3','45175','1','5','100','65','0','Headdress of Inner Rage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131223','3','4','3','43726','9','5','103','66','0','Illidari Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131224','3','4','2','43727','9','8','103','66','0','Illidari Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131225','3','4','1','33328','9','7','103','66','0','Illidari Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131226','3','4','2','42966','7','8','100','65','0','Leggings of the Sly','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131227','3','4','4','43730','6','6','91','62','0','Feathered Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131228','3','4','3','43729','6','5','91','62','0','Feathered Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131229','3','4','2','43731','6','8','91','62','0','Feathered Waistband','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131230','3','4','1','43718','8','7','100','65','0','Abyss Walker\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131231','3','4','1','43732','6','7','91','62','0','Feathered Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131232','3','4','4','43734','8','6','91','62','0','Grim Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131233','3','4','3','43735','8','5','91','62','0','Grim Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131234','3','2','7','43736','13','1','103','66','3','Crystalblade of the Draenei','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131235','3','4','2','28617','8','8','91','62','0','Grim Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131236','3','4','1','43737','8','7','91','62','0','Grim Slippers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131237','3','4','2','43738','7','8','103','66','0','Elekk Hide Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131238','3','4','0','43407','11','3','94','63','0','Dragonbone Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131240','3','4','3','42842','7','8','103','66','0','Scales of the Beast','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131242','3','4','4','43740','7','6','88','61','0','Nagascale Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131243','3','4','3','43741','7','5','88','61','0','Nagascale Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131244','3','4','2','43742','7','8','88','61','0','Nagahide Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131246','3','4','1','39886','7','7','88','61','0','Nagahide Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131247','3','4','4','43743','3','6','88','61','0','Bog Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131248','3','4','3','43744','3','5','88','61','0','Bog Epaulets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131249','3','4','2','43745','3','8','88','61','0','Bog Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131250','3','4','1','43747','3','7','88','61','0','Bog Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131254','3','4','1','26233','16','7','97','64','0','Striderhide Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131255','3','4','1','26202','16','7','103','66','0','Cloak of the Craft','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131256','2','4','3','44431','5','5','18','13','0','Silvermoon Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131258','3','4','0','43120','11','3','103','66','0','Band of Sorrow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131263','2','4','2','44432','5','8','18','13','0','Silvermoon Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131264','2','4','1','44430','20','7','18','13','0','Silvermoon Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131268','2','2','0','8466','13','1','18','13','3','Abomination Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131269','2','2','4','43772','13','1','18','13','3','Ghoul Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131270','2','2','19','43774','26','2','18','13','0','Banshee Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131272','3','4','1','43761','1','8','103','66','0','Crown of Endless Knowledge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131275','3','4','0','43701','2','5','106','67','0','Necklace of Trophies','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131276','3','4','4','42841','8','6','106','67','0','Boots of Zealotry','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131277','3','4','0','33808','11','3','106','67','0','Pathfinder\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131279','1','4','0','43794','19','-1','1','0','0','Enchanted Illidari Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131280','3','4','3','42932','10','5','106','67','0','Thundercaller\'s Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131281','3','4','2','45101','1','8','106','67','0','Mask of Veiled Death','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131282','3','4','1','43183','20','7','106','67','0','Shroud of Spiritual Purity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131283','3','4','1','43732','6','7','106','67','0','Sash of Sealed Fate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131284','3','4','4','42847','9','6','109','68','0','Bracers of Recklessness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131285','3','4','2','8660','5','8','109','68','0','Chestguard of the Talon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131286','3','4','3','38704','5','-1','109','68','0','Breastplate of Rapid Striking','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131287','3','4','6','43792','14','6','109','68','4','Draenei Honor Guard Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131288','3','4','2','38993','8','8','109','68','0','The Master\'s Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131289','3','2','10','43796','17','2','109','68','2','Staff of Divine Infusion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131290','3','4','0','28733','11','-1','109','70','0','Band of Dominion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131291','3','2','1','43799','17','1','112','69','1','Crystalforged War Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131292','3','4','6','43800','14','1','112','69','4','Crystal Pulse Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131293','3','4','3','43159','6','5','112','69','0','Girdle of Gale Force','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131294','3','4','3','43801','3','5','112','69','0','Pauldrons of Surging Mana','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131295','3','4','2','43222','5','8','112','69','0','Chestguard of the Dark Stalker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131297','3','4','1','12675','20','7','112','69','0','Robe of the Crimson Order','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131298','3','4','4','32167','7','6','115','70','0','Legguards of the Shattered Hand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131299','3','2','5','43830','17','1','115','68','1','The Oathkeeper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131303','3','2','2','43809','15','2','115','70','0','Valanos\' Longbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131304','3','2','4','43812','21','2','115','70','3','The Essence Focuser','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131305','3','2','15','43813','13','1','115','70','3','Ced\'s Carver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131306','3','4','1','43814','7','7','115','70','0','Leggings of the Sacred Crest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131308','3','2','10','43817','17','2','115','70','2','The Bringer of Death','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131312','2','4','1','43821','8','7','108','0','0','Sinister Area 52 Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131313','2','4','2','43822','10','8','108','0','0','Nether-Rocket Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131314','2','4','3','43823','3','5','108','0','0','Rocket-Chief Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131315','2','4','4','43824','6','6','108','0','0','Goblin Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131318','4','2','1','43828','17','1','100','70','1','Singing Crystal Axe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131319','4','4','0','33808','11','4','100','70','0','Band of Impenetrable Defenses','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131320','4','4','4','43829','5','1','100','70','0','Chestguard of Exile','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131321','4','4','0','39209','2','4','100','70','0','Choker of Repentance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131322','4','2','5','43831','17','1','100','70','1','The Hammer of Destiny','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131323','4','2','3','43836','26','2','100','70','0','Don Santos\' Famous Hunting Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131326','4','4','0','43837','11','3','100','70','0','Truestrike Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131328','4','4','3','42325','7','5','100','70','0','Leggings of Beast Mastery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131329','4','4','1','42615','16','7','100','70','0','Lifegiving Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131330','4','4','3','43843','1','7','100','70','0','Lightning Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131331','4','2','15','43846','13','1','100','70','3','The Night Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131332','4','2','7','41417','13','1','100','70','3','Blinkstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131333','4','4','2','45167','1','7','100','70','0','The Night Watchman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131334','4','2','10','43858','17','2','100','70','2','Staff of Natural Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131335','4','4','2','42314','7','8','100','70','0','Pants of Living Growth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131336','4','2','7','43859','21','1','100','70','3','Blade of Wizardry','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131338','4','4','0','39162','2','3','100','70','0','Charlotte\'s Ivy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131339','4','4','0','39122','11','3','100','70','0','Lola\'s Eve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131340','4','4','1','43861','20','7','100','70','0','Will of Edward the Odd','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131341','2','4','1','43867','16','7','108','67','0','Wyrmcultist\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131342','4','2','4','43866','21','1','100','70','3','The Ancient Scepter of Sue-Min','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131343','4','4','1','43424','7','7','100','70','0','Kamaei\'s Cerulean Skirt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131364','4','4','4','43902','5','-1','115','70','0','Wildguard Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131367','4','4','4','43907','7','-1','115','70','0','Wildguard Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131368','4','4','4','43906','1','-1','115','70','0','Wildguard Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131369','4','4','4','43941','5','-1','115','70','0','Iceguard Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131370','4','4','4','43940','7','-1','100','70','0','Iceguard Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131371','4','4','4','43939','1','-1','100','70','0','Iceguard Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131375','4','4','2','41443','10','8','123','70','0','Gladiator\'s Kodohide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131376','4','4','2','47172','1','8','123','70','0','Gladiator\'s Kodohide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131377','4','4','2','41445','7','8','123','70','0','Gladiator\'s Kodohide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131378','4','4','2','41758','3','8','123','70','0','Gladiator\'s Kodohide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131379','4','4','2','41446','5','8','123','70','0','Gladiator\'s Kodohide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131380','3','4','0','39125','11','3','109','0','0','Acrobat\'s Mark of the Sha\'tar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131381','3','4','0','39127','11','3','109','0','0','Aggressor\'s Mark of the Sha\'tar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131382','3','4','0','39124','11','3','109','0','0','Mage\'s Mark of the Sha\'tar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131383','3','4','0','39126','11','3','109','0','0','Spiritualist\'s Mark of the Sha\'tar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131396','4','4','3','41144','5','5','123','70','0','Gladiator\'s Ringmail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131397','4','4','3','41145','10','5','123','70','0','Gladiator\'s Ringmail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131398','4','4','0','44357','11','3','100','70','0','The Frozen Eye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131399','4','4','0','44086','11','3','115','70','0','The Natural Ward','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131400','4','4','3','41147','1','5','123','70','0','Gladiator\'s Ringmail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131404','2','4','0','43794','19','-1','1','0','0','Green Trophy Tabard of the Illidari','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131405','2','4','0','43950','19','-1','1','0','0','Purple Trophy Tabard of the Illidari','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131406','4','4','3','41148','7','5','123','70','0','Gladiator\'s Ringmail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131407','4','4','3','41149','3','5','123','70','0','Gladiator\'s Ringmail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131409','4','4','1','41154','10','7','123','70','0','Gladiator\'s Mooncloth Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131410','4','4','1','41794','1','7','123','70','0','Gladiator\'s Mooncloth Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131411','4','4','1','41155','7','7','123','70','0','Gladiator\'s Mooncloth Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131412','4','4','1','42171','3','7','123','70','0','Gladiator\'s Mooncloth Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131413','4','4','1','41157','20','7','123','70','0','Gladiator\'s Mooncloth Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131414','2','2','10','43951','17','2','108','0','2','Wild Wood Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131415','2','4','6','43953','14','1','111','0','4','Iron Oak Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131416','2','2','2','25604','15','2','108','0','0','Scorch Wood Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131417','3','2','10','43954','17','2','109','0','2','Staff of the Ashtongue Deathsworn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131418','2','4','1','26540','10','7','102','0','0','Sylvanaar Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131419','2','4','2','43989','3','8','102','0','0','Living Grove Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131420','2','4','3','43991','8','5','102','0','0','Protector\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131421','2','4','4','43992','9','6','102','0','0','Sentinel Armbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131422','2','2','15','43994','13','1','102','0','3','Heavy Elven Dirk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131423','2','2','0','43995','13','1','102','0','3','Wolf Hewer\'s Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131424','2','2','19','43993','26','2','102','0','0','Arcane Wand of Sylvanaar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131425','2','4','1','43997','6','7','102','0','0','Ogre Vanquisher\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131426','2','4','2','3658','9','8','102','0','0','Agile Mountain Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131427','2','4','3','43998','3','5','102','0','0','Sylvanaar Defender\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131428','2','4','4','43996','10','6','102','0','0','Commander Skyshadow\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131429','2','4','1','44001','3','7','102','0','0','Spelunker\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131430','2','4','2','44000','10','8','102','0','0','Miner\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131431','2','4','3','26103','9','5','102','0','0','All-Weather Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131432','2','4','4','43999','8','6','102','0','0','Explorer\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131433','2','4','1','43965','5','7','105','0','0','Sylvanaar Elite Caster\'s Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131434','2','4','2','44002','7','8','105','0','0','Ogre Assassin\'s Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131435','2','4','3','43987','1','5','108','0','0','Gurn\'s Horned Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131436','2','4','4','43968','3','6','108','0','0','Sylvanaar Champion\'s Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131438','2','4','1','44004','3','7','105','0','0','Fizit\'s Mantle of Drake Hunting','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131439','2','4','2','44005','10','8','105','0','0','Precise Gloves of Alacrity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131440','2','4','3','44003','6','5','105','0','0','Devolved Drake Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131441','2','4','4','43988','8','1','105','0','0','Clocktock\'s Jumpers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131442','2','4','1','43972','7','7','105','0','0','Metro\'s Slimming Legs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131443','2','4','2','44006','5','8','105','0','0','Nickwinkle\'s Harness Experiment','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131444','2','4','3','43974','1','5','105','0','0','Party Hat Mistake','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131445','2','4','4','44007','6','6','105','0','0','Last Year\'s \"In\" Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131446','2','2','15','43976','13','1','105','0','3','Vibro Shanker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131447','2','2','15','43977','21','1','105','0','3','Vibro Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131448','2','2','7','43978','21','1','105','0','3','Vibro Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131452','2','4','1','44016','9','7','105','0','0','Energized Wristwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131453','2','4','2','44017','8','8','105','0','0','Charged Footwear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131454','2','4','3','43982','10','5','105','0','0','Scalewing Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131455','2','4','4','44019','6','6','105','0','0','Muscle Toning Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131456','2','4','1','43984','8','7','108','0','0','Gnomish Casting Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131457','2','4','2','44021','1','8','108','0','0','Toshley\'s Station Hero\'s Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131458','2','4','3','44022','7','5','108','0','0','Razaani-Buster Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131459','2','4','4','19730','5','6','108','0','0','Soul Saver\'s Chest Plate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131460','3','4','4','42862','6','6','115','0','0','Sha\'tari Vindicator\'s Waistguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131461','3','4','1','34628','6','7','115','0','0','A\'dal\'s Gift','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131462','3','4','3','44028','6','5','115','0','0','Shattrath\'s Champion Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131464','3','4','2','44027','6','8','115','0','0','Naaru Belt of Precision','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131465','3','4','1','27325','16','7','115','0','0','Sha\'tari Anchorite\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131470','2','4','1','44119','5','7','102','0','0','Witch Doctor\'s Beads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131471','2','4','2','44120','7','8','102','0','0','T\'chali\'s Kilt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131472','2','4','3','44121','6','5','102','0','0','Hexxer\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131473','2','4','4','44122','10','6','102','0','0','Ogre Defiler\'s Handguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131474','2','2','19','44118','26','2','105','0','0','Wand of the Ancestors','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131475','2','2','15','44116','21','1','105','0','3','Thunderlord Scalpel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131476','2','2','15','44117','13','1','105','0','3','Slow Death Dirk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131477','2','4','1','44112','10','7','102','0','0','Red Hands of the Thunderlord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131478','2','4','2','44114','8','8','102','0','0','Tor\'chunk\'s Foot Covers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131479','2','4','3','44113','9','5','102','0','0','Rugged Mountain Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131480','2','4','4','44111','6','6','102','0','0','Ogre Beater\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131481','2','4','1','44108','9','7','102','0','0','Thunderlord Armbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131482','2','4','2','18981','10','8','102','0','0','Dire Wolf Handler Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131483','2','4','4','44325','3','5','102','0','0','Gor\'drek\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131484','2','4','3','44110','6','5','102','0','0','Wolf Chaps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131485','2','4','1','44107','7','7','102','0','0','Dark Deed Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131486','2','4','2','44105','5','8','102','0','0','Bear-Strength Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131487','2','4','3','43987','1','5','102','0','0','Wild Horned Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131488','2','4','4','44106','8','6','102','0','0','Boots of the Ancient-Killer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131490','3','4','6','44294','14','1','109','0','4','Netherwing Protector\'s Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131491','3','4','6','44293','14','1','109','0','4','Netherwing Defender\'s Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131492','3','2','15','44292','13','1','108','0','3','Claw of the Netherwing Flight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131493','3','4','0','44041','23','3','108','0','7','Netherwing Spiritualist\'s Charm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131494','3','4','0','44042','23','3','108','0','7','Netherwing Sorceror\'s Charm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131508','2','4','1','32924','7','7','108','0','0','Coven Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131509','2','4','1','38932','1','7','108','0','0','Wyrmcultist\'s Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131510','2','4','1','44124','10','7','105','0','0','Hewing Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131511','2','4','2','44129','5','8','108','0','0','Chest of the Wyrmcult','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131512','2','4','2','14774','6','8','105','0','0','Tree Warden\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131513','2','4','2','44126','6','8','105','0','0','Blackwhelp Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131514','2','4','3','44130','5','5','108','0','0','Dragonkin Shirt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131515','2','4','3','44127','10','5','108','0','0','Whelpscale Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131516','2','4','3','44125','9','5','105','0','0','Bracers of the Weald','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131519','2','4','4','44128','7','6','108','0','0','Inkling\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131520','2','4','4','44131','1','-1','108','0','0','Blackwing Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131521','2','4','4','44123','3','6','105','0','0','Expedition Defender\'s Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131523','2','4','0','9851','11','3','108','0','0','Treebole\'s Hoop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131526','2','4','0','44086','11','3','108','0','0','Raven\'s Wood Exorciser\'s Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131527','2','4','0','31576','11','3','108','0','0','Leafbeard Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131528','2','4','0','35431','11','3','108','0','0','Ring of the Stonebark','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131531','2','4','1','44066','9','7','108','0','0','Wraithcloth Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131532','2','4','2','44067','8','8','108','0','0','Supple Leather Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131533','2','4','3','44068','3','5','108','0','0','Diluvian Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131534','2','4','4','29014','10','6','108','0','0','Whiteknuckle Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131537','2','4','1','44069','8','7','105','0','0','Darktread Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131538','2','4','2','44070','3','8','105','0','0','Twin Moon Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131539','2','4','3','44071','6','5','105','0','0','Chaintwine Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131540','2','4','4','44072','9','6','105','0','0','Fairweather\'s Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131541','2','2','7','25640','13','1','108','0','3','Whistling Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131542','2','2','1','44073','17','1','108','0','1','Fanged Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131543','2','2','10','28511','17','2','108','0','2','Adjudicator\'s Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131544','3','4','2','44074','7','8','109','0','0','Clefthoof Hide Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131545','3','4','2','44075','7','8','109','0','0','Oilcloth Breeches','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131546','3','4','1','44076','1','7','109','0','0','Tourmaline Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131547','3','4','3','44077','1','5','109','0','0','Malefactor\'s Eyepatch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131548','3','4','4','44078','5','6','109','0','0','Blackened Chestplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131549','3','4','4','44079','5','6','109','0','0','Leonine Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131552','3','4','1','30588','1','7','115','70','0','Windchanneller\'s Miter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131553','3','4','1','44163','3','7','115','70','0','Windchanneller\'s Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131554','3','4','1','44159','5','7','115','70','0','Windchanneller\'s Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131555','3','4','1','44167','6','7','115','70','0','Windchanneller\'s Ceinture','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131556','3','4','1','44161','7','7','115','70','0','Windchanneller\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131557','3','4','1','44162','8','7','109','70','0','Windchanneller\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131558','3','4','1','44168','9','7','115','70','0','Windchanneller\'s Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131559','3','4','1','44164','10','7','115','70','0','Windchanneller\'s Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131560','3','4','2','44881','1','8','115','70','0','Skystalker\'s Shroud','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131561','3','4','2','44183','3','8','115','70','0','Skystalker\'s Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131562','3','4','2','44178','5','8','115','70','0','Skystalker\'s Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131563','3','4','2','44192','6','8','115','70','0','Skystalker\'s Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131564','3','4','2','44180','7','8','115','70','0','Skystalker\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131565','3','4','2','44187','8','8','109','70','0','Skystalker\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131566','3','4','2','44186','9','8','115','70','0','Skystalker\'s Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131567','3','4','2','44185','10','8','115','70','0','Skystalker\'s Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131568','3','4','3','44575','1','5','115','70','0','Mistshroud Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131569','3','4','3','44206','3','5','115','70','0','Mistshroud Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131570','3','4','3','44199','5','-1','115','70','0','Mistshroud Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131571','3','4','3','44208','6','5','115','70','0','Mistshroud Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131572','3','4','3','44198','7','5','115','70','0','Mistshroud Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131573','3','4','3','44200','8','5','109','70','0','Mistshroud Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131574','3','4','3','44207','9','5','115','70','0','Mistshroud Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131575','3','4','3','44201','10','5','115','70','0','Mistshroud Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131584','3','4','2','43571','10','8','115','70','0','High Warlord\'s Kodohide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131585','3','4','2','39032','1','8','115','70','0','High Warlord\'s Kodohide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131586','3','4','2','39033','7','8','115','70','0','High Warlord\'s Kodohide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131587','3','4','2','39034','3','8','115','70','0','High Warlord\'s Kodohide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131588','3','4','2','39035','5','8','115','70','0','High Warlord\'s Kodohide Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131589','3','4','2','43573','10','8','115','70','0','Grand Marshal\'s Kodohide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131590','3','4','2','41796','1','8','115','70','0','Grand Marshal\'s Kodohide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131591','3','4','2','41210','7','8','115','70','0','Grand Marshal\'s Kodohide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131592','3','4','2','41211','3','8','115','70','0','Grand Marshal\'s Kodohide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131593','3','4','2','41212','5','8','115','70','0','Grand Marshal\'s Kodohide Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131594','4','4','2','41474','6','8','123','70','0','General\'s Kodohide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131595','4','4','2','41482','8','8','123','70','0','General\'s Kodohide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131596','4','4','2','41474','6','8','123','70','0','Marshal\'s Kodohide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131597','4','4','2','41482','8','8','123','70','0','Marshal\'s Kodohide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131598','4','4','2','41253','9','8','113','70','0','General\'s Kodohide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131599','4','4','2','41270','9','8','113','70','0','Marshal\'s Kodohide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131613','4','4','4','41133','5','6','123','70','0','Gladiator\'s Ornamented Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131614','4','4','4','41134','10','6','123','70','0','Gladiator\'s Ornamented Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131615','2','4','0','44237','12','3','102','0','0','Ancient Draenei Arcane Relic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131616','4','4','4','41135','1','6','123','70','0','Gladiator\'s Ornamented Headcover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131617','2','4','0','30696','12','3','102','0','0','Ancient Draenei War Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131618','4','4','4','41136','7','6','123','70','0','Gladiator\'s Ornamented Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131619','4','4','4','41137','3','6','123','70','0','Gladiator\'s Ornamented Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131620','3','4','1','41218','10','7','115','70','0','Grand Marshal\'s Mooncloth Mitts','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131621','3','4','1','37308','10','7','115','70','0','High Warlord\'s Mooncloth Mitts','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131622','3','4','1','42195','1','7','115','70','0','Grand Marshal\'s Mooncloth Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131623','3','4','1','41220','7','7','115','70','0','Grand Marshal\'s Mooncloth Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131624','3','4','1','41221','3','7','115','70','0','Grand Marshal\'s Mooncloth Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131625','3','4','1','41222','20','7','115','70','0','Grand Marshal\'s Mooncloth Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131626','3','4','1','37311','1','7','115','70','0','High Warlord\'s Mooncloth Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131627','3','4','1','37310','7','7','115','70','0','High Warlord\'s Mooncloth Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131628','3','4','1','37312','3','7','115','70','0','High Warlord\'s Mooncloth Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131629','3','4','1','37313','20','7','115','70','0','High Warlord\'s Mooncloth Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131630','3','4','4','38292','5','6','115','70','0','Grand Marshal\'s Ornamented Chestplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131631','3','4','4','30321','10','6','115','70','0','Grand Marshal\'s Ornamented Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131632','3','4','4','38294','1','6','115','70','0','Grand Marshal\'s Ornamented Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131633','3','4','4','38295','7','6','115','70','0','Grand Marshal\'s Ornamented Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131634','3','4','4','38296','3','6','115','70','0','Grand Marshal\'s Ornamented Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131635','3','4','4','41247','5','6','115','70','0','High Warlord\'s Ornamented Chestplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131636','3','4','4','41248','10','6','115','70','0','High Warlord\'s Ornamented Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131637','3','4','4','42199','1','6','115','70','0','High Warlord\'s Ornamented Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131638','3','4','4','41249','7','6','115','70','0','High Warlord\'s Ornamented Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131639','3','4','4','41228','3','6','115','70','0','High Warlord\'s Ornamented Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131640','3','4','3','32103','5','5','115','70','0','Grand Marshal\'s Ringmail Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131641','3','4','3','32100','10','5','115','70','0','Grand Marshal\'s Ringmail Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131642','3','4','3','32133','1','5','115','70','0','Grand Marshal\'s Ringmail Headpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131643','3','4','3','32127','7','5','115','70','0','Grand Marshal\'s Ringmail Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131644','3','4','3','32128','3','5','115','70','0','Grand Marshal\'s Ringmail Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131646','3','4','3','32103','5','5','115','70','0','High Warlord\'s Ringmail Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131647','3','4','3','32100','10','5','115','70','0','High Warlord\'s Ringmail Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131648','3','4','3','32133','1','5','115','70','0','High Warlord\'s Ringmail Headpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131649','3','4','3','32127','7','5','115','70','0','High Warlord\'s Ringmail Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131650','3','4','3','32128','3','5','115','70','0','High Warlord\'s Ringmail Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131657','2','4','1','44326','5','7','90','0','0','Chemise of Rebirth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131658','2','4','2','44254','1','8','90','0','0','Scout\'s Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131659','2','4','1','44255','3','7','90','0','0','Researcher\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131660','2','4','2','44257','6','8','102','0','0','Feralfen Skulker\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131661','2','4','2','6739','9','8','96','0','0','Leesa\'oh\'s Wristbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131683','2','4','1','44304','6','7','108','0','0','Dreadwing Skin Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131684','2','4','2','44305','10','8','108','0','0','Netherhide Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131685','2','4','3','44022','7','5','108','0','0','Brood Mother Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131686','2','4','4','26846','5','6','108','0','0','Nether Protector\'s Chest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131687','2','4','1','44307','3','7','108','0','0','Mok\'Nathal Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131688','2','4','2','45180','1','8','108','0','0','Spiritcaller\'s Mask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131689','2','4','3','44312','7','5','108','0','0','Mok\'Nathal Hero\'s Pantaloons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131690','2','4','4','44313','6','6','108','0','0','Belt of the Soul Saver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131691','3','4','0','39211','2','3','103','0','0','Natasha\'s Guardian Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131692','3','4','0','39214','2','3','103','0','0','Natasha\'s Ember Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131693','3','4','0','39212','2','3','103','0','0','Natasha\'s Arcane Filament','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131694','3','4','0','39209','2','3','103','0','0','Natasha\'s Pack Collar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131695','3','4','0','39210','2','3','103','0','0','Natasha\'s Choker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131696','3','4','0','39162','2','3','103','0','0','Natasha\'s Battle Chain','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131699','2','4','0','44308','23','3','108','0','7','Imbued Draenethyst Crystal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131700','2','2','10','21968','17','2','108','0','2','Runed Silver Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131701','2','2','1','44310','17','1','108','0','1','Saboteur\'s Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131703','2','2','15','44314','13','1','108','0','3','Nether-Stalker\'s Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131711','2','4','1','44322','8','7','105','0','0','Nether-Empowered Footgear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131712','2','4','2','44323','3','8','105','0','0','Mok\'Nathal Champion\'s Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131713','2','4','3','15431','1','5','105','0','0','Ritualist\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131714','2','4','4','44324','9','6','105','0','0','Nether Drake Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131715','2','4','0','44316','23','8','87','0','7','Demoniac Soul Prison','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131717','3','4','1','44557','5','7','88','0','0','Shadowcast Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131718','3','4','2','44319','5','8','88','0','0','Darkstorm Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131719','3','4','3','44556','5','5','88','0','0','Stormstrike Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131720','3','4','4','44555','5','6','88','0','0','Battlemaster\'s Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131723','2','2','15','20331','13','1','96','0','3','Madman\'s Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131724','2','2','19','21027','26','2','99','0','0','Arakkoa Divining Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131725','2','4','1','16603','6','7','99','0','0','Cilice of Suffering','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131726','3','4','0','43701','2','3','94','0','0','Necklace of Bloodied Feathers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131727','3','4','0','34318','2','3','94','0','0','Choker of Bloodied Feathers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131728','2','4','0','9839','11','3','99','0','0','Heirloom Signet of Willpower','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131729','2','4','0','9865','11','3','99','0','0','Heirloom Signet of Valor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131730','2','4','0','9847','11','3','99','0','0','Heirloom Signet of Convalescence','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131731','2','4','0','28493','23','-1','99','0','7','Mekeda\'s Gift','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131732','2','4','0','44351','23','-1','99','0','7','Unearthed Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131733','2','2','15','2708','13','1','99','0','3','Akuno\'s Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131734','2','4','6','44369','14','1','99','0','4','Ancient Draenei Crest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131745','3','2','15','44375','13','1','115','0','3','Illidari-Bane Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131746','4','4','0','31655','11','3','115','0','0','Phoenix-fire Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131747','3','4','0','31889','2','3','115','0','0','Potent Sha\'tari Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131748','3','4','0','31889','2','3','115','0','0','Shattrath Choker of Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131749','3','4','0','31889','2','3','115','0','0','A\'dal\'s Recovery Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131756','3','2','15','44417','13','1','94','0','3','Dib\'Muad\'s Crysknife','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131758','3','2','15','44418','21','1','94','0','3','Revered Mother\'s Crysknife','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131759','3','2','15','44417','13','1','94','0','3','Shani\'s Crysknife','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131761','2','2','19','44419','26','2','96','0','0','Talonbranch Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131762','2','2','2','44420','15','2','96','0','0','Feather-Wrapped Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131764','2','4','3','44423','7','5','99','0','0','Stillfire Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131765','2','4','4','44424','5','6','99','0','0','Redeemer\'s Plate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131766','2','4','1','45370','1','7','99','0','0','Skywitch Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131768','2','4','1','44450','16','7','90','0','0','Deep Mire Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131770','2','4','1','44451','9','7','96','0','0','Marsh Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131773','1','4','0','44433','19','7','20','0','0','Mag\'har Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131774','1','4','0','44434','19','7','20','0','0','Kurenai Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131775','1','4','0','44435','19','7','20','0','0','Sporeggar Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131776','1','4','0','44436','19','7','20','0','0','Consortium Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131777','1','4','0','44437','19','7','20','0','0','Keepers of Time Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131778','1','4','0','44438','19','7','20','0','0','Lower City Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131779','1','4','0','44439','19','7','20','0','0','Aldor Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131780','1','4','0','44440','19','7','20','0','0','Scryers Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131781','1','4','0','44441','19','7','20','0','0','Sha\'tar Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131782','2','4','3','44472','5','5','99','0','0','Warpstalker Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131783','2','4','1','34302','7','7','99','0','0','Bloodfire Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131784','2','4','2','45164','1','8','99','0','0','Ancient Terokkar Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131785','2','2','1','44470','17','1','99','0','1','Edge of Inevitability','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131786','2','4','3','44484','3','5','90','0','0','Blacksting Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131787','2','4','4','44447','6','6','90','0','0','Stalwart Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131788','2','4','2','44478','10','8','90','0','0','Blacksting Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131789','2','4','1','44483','8','7','90','0','0','Marshfang Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131790','2','4','0','7570','2','3','108','0','0','Expedition Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131791','2','4','0','43837','11','3','108','0','0','Wildlord\'s Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131792','2','4','1','44458','16','7','108','0','0','Evergrove Ranger\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131793','2','4','2','41549','9','8','108','0','0','Ruuan Weald Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131794','2','4','4','44479','7','6','99','0','0','Sha\'tari Vindicator\'s Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131796','2','4','3','44480','10','5','99','0','0','Sha\'tari Marksman\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131797','2','4','2','44482','3','8','99','0','0','Elekk Hide Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131798','2','4','1','44485','5','7','99','0','0','Death-Speaker\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131802','3','2','10','44490','13','1','109','0','7','Fleshling Simulation Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131804','1','4','0','44494','19','7','20','0','0','Cenarion Expedition Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131816','2','2','8','44530','17','1','102','0','1','Dragonbone Greatsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131817','2','4','3','44533','3','5','102','0','0','Dragonbone Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131818','2','4','0','9852','2','3','102','0','0','Dragonbone Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131819','2','4','4','44536','3','5','102','0','0','Noble Plate Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131820','2','4','0','31905','11','-1','102','0','0','Blessed Signet Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131821','2','2','7','44546','21','1','102','0','3','Blade of Retribution','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131823','2','4','0','44544','23','-1','102','0','7','Book of Many Blessings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131856','4','4','0','44707','12','4','100','70','0','Darkmoon Card: Crusade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131857','4','4','0','44709','12','4','100','70','0','Darkmoon Card: Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131858','4','4','0','44708','12','4','100','70','0','Darkmoon Card: Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131859','4','4','0','44706','12','4','100','70','0','Darkmoon Card: Madness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131919','4','4','0','35431','11','3','100','70','0','Nexus-Prince\'s Ring of Balance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131920','4','4','0','35472','11','3','100','70','0','Shaffar\'s Band of Brutality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131921','4','4','0','35423','11','3','100','70','0','Yor\'s Collapsing Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131922','4','4','0','35367','11','3','100','70','0','Ring of Conflict Survival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131923','4','4','0','35438','11','3','100','70','0','Band of the Crystalline Void','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131924','4','4','0','35313','11','3','100','70','0','Yor\'s Revenge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131925','3','4','0','28682','11','-1','109','70','0','Fiery Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131926','3','4','0','31616','11','-1','109','70','0','Frigid Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131927','3','4','0','33534','11','-1','109','70','0','Living Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131928','3','4','0','24022','11','-1','109','70','0','Dark Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131929','3','4','0','38541','11','-1','109','70','0','Enigmatic Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131935','3','4','1','44633','16','7','109','70','0','Frigid Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131936','3','4','1','44632','16','7','109','70','0','Fiery Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131937','3','4','1','27658','16','7','109','70','0','Living Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131938','3','4','1','44631','16','7','109','70','0','Enigmatic Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131939','3','4','1','44630','16','7','109','70','0','Dark Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131940','3','4','0','35358','2','3','115','70','0','Ethereum Torque','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131942','3','4','1','44634','16','7','115','70','0','Deathwing Brood Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131943','3','4','0','39128','11','-1','109','70','0','Ethereum Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131958','4','2','4','39278','22','1','136','70','3','Merciless Gladiator\'s Bonecracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131959','4','2','5','41558','17','1','136','70','1','Merciless Gladiator\'s Bonegrinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131960','4','4','3','45963','5','5','136','70','0','Merciless Gladiator\'s Chain Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131961','4','4','3','45964','10','5','136','70','0','Merciless Gladiator\'s Chain Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131962','4','4','3','45965','1','5','136','70','0','Merciless Gladiator\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131963','4','4','3','45966','7','5','136','70','0','Merciless Gladiator\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131964','4','4','3','45967','3','5','136','70','0','Merciless Gladiator\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131965','4','2','0','41559','13','1','136','70','3','Merciless Gladiator\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131966','4','2','1','41560','17','1','136','70','1','Merciless Gladiator\'s Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131967','4','4','2','45993','10','8','136','70','0','Merciless Gladiator\'s Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131968','4','4','2','45998','1','8','136','70','0','Merciless Gladiator\'s Dragonhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131969','4','4','2','47129','7','8','136','70','0','Merciless Gladiator\'s Dragonhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131971','4','4','2','45996','3','8','136','70','0','Merciless Gladiator\'s Dragonhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131972','4','4','2','45997','5','8','136','70','0','Merciless Gladiator\'s Dragonhide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131973','4','4','1','45974','10','7','136','70','0','Merciless Gladiator\'s Dreadweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131974','4','4','1','45975','1','7','136','70','0','Merciless Gladiator\'s Dreadweave Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131975','4','4','1','46107','7','7','136','70','0','Merciless Gladiator\'s Dreadweave Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131976','4','4','1','45976','3','7','136','70','0','Merciless Gladiator\'s Dreadweave Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131977','4','4','1','45978','20','7','136','70','0','Merciless Gladiator\'s Dreadweave Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131978','4','4','0','39505','23','3','136','70','7','Merciless Gladiator\'s Endgame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131979','4','4','1','45979','3','7','136','70','0','Merciless Gladiator\'s Felweave Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131980','4','4','1','45980','1','7','136','70','0','Merciless Gladiator\'s Felweave Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131981','4','4','1','45981','10','7','136','70','0','Merciless Gladiator\'s Felweave Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131982','4','4','1','45982','20','7','136','70','0','Merciless Gladiator\'s Felweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131983','4','4','1','46108','7','7','136','70','0','Merciless Gladiator\'s Felweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131984','4','2','8','41561','17','1','136','70','1','Merciless Gladiator\'s Greatsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131985','4','2','0','41559','22','1','136','70','3','Merciless Gladiator\'s Hacker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131986','4','2','18','42385','26','2','136','70','0','Merciless Gladiator\'s Crossbow of the Phoenix','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131987','4','4','2','45993','10','8','136','70','0','Merciless Gladiator\'s Kodohide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131988','4','4','2','45998','1','8','136','70','0','Merciless Gladiator\'s Kodohide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131989','4','4','2','47129','7','8','136','70','0','Merciless Gladiator\'s Kodohide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131990','4','4','2','45996','3','8','136','70','0','Merciless Gladiator\'s Kodohide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131991','4','4','2','45997','5','8','136','70','0','Merciless Gladiator\'s Kodohide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131992','4','4','4','46009','5','6','136','70','0','Merciless Gladiator\'s Lamellar Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131993','4','4','4','46010','10','6','136','70','0','Merciless Gladiator\'s Lamellar Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131995','4','4','4','46008','7','6','136','70','0','Merciless Gladiator\'s Lamellar Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131996','4','4','4','46012','3','6','136','70','0','Merciless Gladiator\'s Lamellar Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131997','4','4','4','46224','1','6','136','70','0','Merciless Gladiator\'s Lamellar Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131998','4','4','2','45958','10','8','136','70','0','Merciless Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('131999','4','4','2','45959','1','8','136','70','0','Merciless Gladiator\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132000','4','4','2','45960','7','8','136','70','0','Merciless Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132001','4','4','2','45961','3','8','136','70','0','Merciless Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132002','4','4','2','45962','5','8','136','70','0','Merciless Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132003','4','2','13','42760','22','1','136','70','7','Merciless Gladiator\'s Left Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132004','4','4','3','46017','5','5','136','70','0','Merciless Gladiator\'s Linked Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132005','4','4','3','46109','10','5','136','70','0','Merciless Gladiator\'s Linked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132006','4','4','3','46507','1','5','136','70','0','Merciless Gladiator\'s Linked Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132007','4','4','3','46022','7','5','136','70','0','Merciless Gladiator\'s Linked Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132008','4','4','3','46023','3','5','136','70','0','Merciless Gladiator\'s Linked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132009','4','4','3','46017','5','5','136','70','0','Merciless Gladiator\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132010','4','4','3','46109','10','5','136','70','0','Merciless Gladiator\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132011','4','4','3','46507','1','5','136','70','0','Merciless Gladiator\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132012','4','4','3','46022','7','5','136','70','0','Merciless Gladiator\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132013','4','4','3','46023','3','5','136','70','0','Merciless Gladiator\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132014','4','2','5','41558','17','1','136','70','1','Merciless Gladiator\'s Maul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132015','4','4','1','46029','10','7','136','70','0','Merciless Gladiator\'s Mooncloth Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132016','4','4','1','46188','1','7','136','70','0','Merciless Gladiator\'s Mooncloth Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132017','4','4','1','46032','7','7','136','70','0','Merciless Gladiator\'s Mooncloth Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132018','4','4','1','46033','3','7','136','70','0','Merciless Gladiator\'s Mooncloth Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132019','4','4','1','46035','20','7','136','70','0','Merciless Gladiator\'s Mooncloth Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132020','4','4','4','46009','5','6','136','70','0','Merciless Gladiator\'s Ornamented Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132021','4','4','4','46010','10','6','136','70','0','Merciless Gladiator\'s Ornamented Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132022','4','4','4','46224','1','6','136','70','0','Merciless Gladiator\'s Ornamented Headcover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132023','4','4','4','46008','7','6','136','70','0','Merciless Gladiator\'s Ornamented Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132024','4','4','4','46012','3','6','136','70','0','Merciless Gladiator\'s Ornamented Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132025','4','2','6','41562','17','1','136','70','1','Merciless Gladiator\'s Painsaw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132026','4','2','4','39278','13','1','136','70','3','Merciless Gladiator\'s Pummeler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132027','4','2','7','42379','22','1','136','70','3','Merciless Gladiator\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132028','4','2','13','42759','21','1','136','70','7','Merciless Gladiator\'s Right Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132029','4','4','3','46017','5','5','136','70','0','Merciless Gladiator\'s Ringmail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132030','4','4','3','46109','10','5','136','70','0','Merciless Gladiator\'s Ringmail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132031','4','4','3','46507','1','5','136','70','0','Merciless Gladiator\'s Ringmail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132032','4','4','3','46022','7','5','136','70','0','Merciless Gladiator\'s Ringmail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132033','4','4','3','46023','3','5','136','70','0','Merciless Gladiator\'s Ringmail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132034','4','4','1','46029','10','7','136','70','0','Merciless Gladiator\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132035','4','4','1','46188','1','7','136','70','0','Merciless Gladiator\'s Satin Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132036','4','4','1','46032','7','7','136','70','0','Merciless Gladiator\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132037','4','4','1','46033','3','7','136','70','0','Merciless Gladiator\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132038','4','4','1','46035','20','7','136','70','0','Merciless Gladiator\'s Satin Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132039','4','4','4','46009','5','6','136','70','0','Merciless Gladiator\'s Scaled Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132040','4','4','4','46010','10','6','136','70','0','Merciless Gladiator\'s Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132041','4','4','4','46224','1','6','136','70','0','Merciless Gladiator\'s Scaled Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132042','4','4','4','46008','7','6','136','70','0','Merciless Gladiator\'s Scaled Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132043','4','4','4','46012','3','6','136','70','0','Merciless Gladiator\'s Scaled Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132044','4','2','15','42380','13','1','136','70','3','Merciless Gladiator\'s Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132045','4','4','6','42376','14','1','136','70','4','Merciless Gladiator\'s Shield Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132046','4','2','15','42380','22','1','136','70','3','Merciless Gladiator\'s Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132047','4','4','1','45953','3','7','136','70','0','Merciless Gladiator\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132048','4','4','1','45954','1','7','136','70','0','Merciless Gladiator\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132049','4','4','1','45955','10','7','136','70','0','Merciless Gladiator\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132050','4','4','1','45956','20','7','136','70','0','Merciless Gladiator\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132051','4','4','1','45957','7','7','136','70','0','Merciless Gladiator\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132052','4','2','7','42379','13','1','136','70','3','Merciless Gladiator\'s Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132053','4','2','15','67267','21','1','136','70','3','Merciless Gladiator\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132054','4','2','16','38679','25','1','136','70','0','Merciless Gladiator\'s War Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132055','4','2','10','41557','17','2','136','70','2','Merciless Gladiator\'s War Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132056','4','4','2','45993','10','8','136','70','0','Merciless Gladiator\'s Wyrmhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132057','4','4','2','45998','1','8','136','70','0','Merciless Gladiator\'s Wyrmhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132058','4','4','2','47129','7','8','136','70','0','Merciless Gladiator\'s Wyrmhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132059','4','4','2','45996','3','8','136','70','0','Merciless Gladiator\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132060','4','4','2','45997','5','8','136','70','0','Merciless Gladiator\'s Wyrmhide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132072','4','4','4','44697','10','1','110','70','0','Gauntlets of Dissension','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132073','4','4','4','44698','3','1','110','70','0','Spaulders of Dementia','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132076','4','4','3','34516','10','5','110','70','0','Handguards of the Steady','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132077','4','4','3','42547','10','5','110','70','0','Wrath Infused Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132078','4','4','3','44699','3','5','110','70','0','Pauldrons of Wild Magic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132080','4','4','2','44700','3','8','110','70','0','Mantle of Shadowy Embrace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132081','4','4','0','44703','11','3','110','70','0','Eye of the Stalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132082','4','4','6','44710','14','6','110','70','4','The Fel Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132083','4','4','4','44711','1','1','110','70','0','Faceguard of Determination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132084','4','4','4','45803','1','6','110','70','0','Helmet of the Steadfast Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132085','4','4','3','43013','1','5','110','70','0','Warpstalker Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132086','4','4','3','34217','1','5','110','70','0','Storm Master\'s Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132087','4','4','2','44904','1','8','110','70','0','Mask of the Deceiver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132088','4','4','2','47180','1','7','110','70','0','Cowl of Beastly Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132089','4','4','1','38932','1','7','110','70','0','Mana-Binders Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132090','4','4','1','38932','1','7','110','70','0','Cowl of Naaru Blessings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132093','4','4','1','41203','10','7','105','70','0','Chancellor\'s Dreadweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132094','4','4','1','42194','1','7','105','70','0','Chancellor\'s Dreadweave Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132095','4','4','1','41205','7','7','105','70','0','Chancellor\'s Dreadweave Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132096','4','4','1','41206','3','7','105','70','0','Chancellor\'s Dreadweave Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132097','4','4','1','41207','20','7','105','70','0','Chancellor\'s Dreadweave Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132098','4','4','1','42195','1','7','105','70','0','Chancellor\'s Mooncloth Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132099','4','4','1','41220','7','7','105','70','0','Chancellor\'s Mooncloth Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132100','4','4','1','41218','10','7','105','70','0','Chancellor\'s Mooncloth Mitts','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132101','4','4','1','41221','3','7','105','70','0','Chancellor\'s Mooncloth Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132102','4','4','1','41222','20','7','105','70','0','Chancellor\'s Mooncloth Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132103','4','4','1','41218','10','7','105','70','0','Chancellor\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132104','4','4','1','42195','1','7','105','70','0','Chancellor\'s Satin Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132105','4','4','1','41220','7','7','105','70','0','Chancellor\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132106','4','4','1','41221','3','7','105','70','0','Chancellor\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132107','4','4','1','41222','20','7','105','70','0','Chancellor\'s Satin Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132108','4','4','1','41187','3','7','105','70','0','Chancellor\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132109','4','4','1','42196','1','7','105','70','0','Chancellor\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132110','4','4','1','41189','10','7','105','70','0','Chancellor\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132111','4','4','1','41190','20','7','105','70','0','Chancellor\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132112','4','4','1','41191','7','7','105','70','0','Chancellor\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132113','4','4','2','43573','10','8','105','70','0','Chancellor\'s Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132114','4','4','2','41796','1','8','105','70','0','Chancellor\'s Dragonhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132115','4','4','2','41210','7','8','105','70','0','Chancellor\'s Dragonhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132116','4','4','2','41211','3','8','105','70','0','Chancellor\'s Dragonhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132117','4','4','2','41212','5','8','105','70','0','Chancellor\'s Dragonhide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132118','4','4','2','43573','10','8','105','70','0','Chancellor\'s Kodohide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132119','4','4','2','41796','1','8','105','70','0','Chancellor\'s Kodohide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132120','4','4','2','41215','7','8','105','70','0','Chancellor\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132121','4','4','2','41211','3','8','105','70','0','Chancellor\'s Kodohide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132122','4','4','2','41210','7','8','105','70','0','Chancellor\'s Kodohide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132123','4','4','2','41212','5','8','105','70','0','Chancellor\'s Kodohide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132124','4','4','2','41213','10','8','105','70','0','Chancellor\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132125','4','4','2','41797','1','8','105','70','0','Chancellor\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132126','4','4','2','41216','3','8','105','70','0','Chancellor\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132127','4','4','2','41217','5','8','105','70','0','Chancellor\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132128','4','4','2','43573','10','8','105','70','0','Chancellor\'s Wyrmhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132129','4','4','2','41796','1','8','105','70','0','Chancellor\'s Wyrmhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132130','4','4','2','41210','7','8','105','70','0','Chancellor\'s Wyrmhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132131','4','4','2','41211','3','8','105','70','0','Chancellor\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132132','4','4','2','41212','5','8','105','70','0','Chancellor\'s Wyrmhide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132133','4','4','3','41196','5','5','105','70','0','Chancellor\'s Chain Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132134','4','4','3','41198','10','5','105','70','0','Chancellor\'s Chain Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132135','4','4','3','41200','1','5','105','70','0','Chancellor\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132136','4','4','3','41201','7','5','105','70','0','Chancellor\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132137','4','4','3','41202','3','5','105','70','0','Chancellor\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132138','4','4','3','32103','5','5','105','70','0','Chancellor\'s Linked Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132139','4','4','3','32100','10','5','105','70','0','Chancellor\'s Linked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132140','4','4','3','32133','1','5','105','70','0','Chancellor\'s Linked Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132141','4','4','3','32127','7','5','105','70','0','Chancellor\'s Linked Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132142','4','4','3','32128','3','5','105','70','0','Chancellor\'s Linked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132143','4','4','3','32103','5','5','105','70','0','Chancellor\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132144','4','4','3','32100','10','5','105','70','0','Chancellor\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132145','4','4','3','32133','1','5','105','70','0','Chancellor\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132146','4','4','3','32127','7','5','105','70','0','Chancellor\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132147','4','4','3','32128','3','5','105','70','0','Chancellor\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132148','4','4','3','32103','5','5','105','70','0','Chancellor\'s Ringmail Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132149','4','4','3','32100','10','5','105','70','0','Chancellor\'s Ringmail Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132150','4','4','3','32133','1','5','105','70','0','Chancellor\'s Ringmail Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132151','4','4','3','32127','7','5','105','70','0','Chancellor\'s Ringmail Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132152','4','4','3','32128','3','5','105','70','0','Chancellor\'s Ringmail Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132153','4','4','4','38292','5','6','105','70','0','Chancellor\'s Lamellar Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132154','4','4','4','30321','10','6','105','70','0','Chancellor\'s Lamellar Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132155','4','4','4','38294','1','6','105','70','0','Chancellor\'s Lamellar Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132156','4','4','4','38295','7','6','105','70','0','Chancellor\'s Lamellar Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132157','4','4','4','38296','3','6','105','70','0','Chancellor\'s Lamellar Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132158','4','4','4','38292','5','6','105','70','0','Chancellor\'s Ornamented Chestplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132159','4','4','4','30321','10','6','105','70','0','Chancellor\'s Ornamented Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132160','4','4','4','38294','1','6','105','70','0','Chancellor\'s Ornamented Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132161','4','4','4','38295','7','6','105','70','0','Chancellor\'s Ornamented Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132162','4','4','4','38296','3','6','105','70','0','Chancellor\'s Ornamented Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132163','4','4','4','41183','5','6','105','70','0','Chancellor\'s Plate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132164','4','4','4','26753','10','6','105','70','0','Chancellor\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132165','4','4','4','41184','1','6','105','70','0','Chancellor\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132166','4','4','4','41185','7','6','105','70','0','Chancellor\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132167','4','4','4','41186','3','6','105','70','0','Chancellor\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132168','4','4','4','38292','5','6','105','70','0','Chancellor\'s Scaled Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132169','4','4','4','30321','10','6','105','70','0','Chancellor\'s Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132170','4','4','4','38294','1','6','105','70','0','Chancellor\'s Scaled Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132171','4','4','4','38295','7','6','105','70','0','Chancellor\'s Scaled Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132172','4','4','4','38296','3','6','105','70','0','Chancellor\'s Scaled Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132173','4','2','4','42080','13','1','105','70','3','Chancellor\'s Bonecracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132174','4','2','0','42082','13','1','105','70','3','Chancellor\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132175','4','2','0','40960','13','1','105','70','3','Chancellor\'s Hacker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132176','4','2','4','42080','13','1','105','70','3','Chancellor\'s Pummeler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132177','4','2','7','42087','13','1','105','70','3','Chancellor\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132178','4','2','15','42090','13','1','105','70','3','Chancellor\'s Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132179','4','2','15','42090','13','1','105','70','3','Chancellor\'s Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132180','4','2','7','42087','13','1','105','70','3','Chancellor\'s Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132181','4','2','5','42081','17','1','105','70','1','Chancellor\'s Bonegrinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132182','4','2','1','42083','17','1','105','70','1','Chancellor\'s Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132183','4','2','5','40958','17','1','105','70','1','Chancellor\'s Maul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132184','4','2','6','42086','17','1','105','70','1','Chancellor\'s Painsaw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132185','4','2','10','42091','17','2','105','70','2','Chancellor\'s War Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132186','4','2','8','31996','17','1','105','70','1','Chancellor\'s Warblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132187','4','2','18','42084','26','2','105','70','0','Chancellor\'s Heavy Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132188','4','2','13','42085','22','1','105','70','7','Chancellor\'s Left Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132189','4','2','13','42088','21','1','105','70','7','Chancellor\'s Right Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132190','4','2','15','31379','21','1','105','70','3','Chancellor\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132192','4','4','6','40976','14','1','105','70','4','Chancellor\'s Barricade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132232','4','4','4','45289','9','1','141','70','0','Eternium Shell Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132234','4','4','3','45712','10','5','141','70','0','Fists of Mukoa','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132235','4','4','2','52634','1','8','151','70','0','Cursed Vision of Sargeras','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132236','4','2','0','44959','13','1','141','70','3','Rising Tide','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132237','4','2','15','45294','21','1','141','70','3','The Maelstrom\'s Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132238','4','4','0','39123','11','3','141','70','0','Ring of Calming Waves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132239','4','4','1','45732','8','7','141','70','0','Slippers of the Seacaller','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132240','4','4','2','45721','1','8','141','70','0','Guise of the Tidal Lurker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132241','4','4','3','45764','1','5','141','70','0','Helm of Soothing Currents','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132242','4','4','3','45278','8','5','141','70','0','Boots of Oceanic Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132243','4','4','4','45332','8','1','141','70','0','Pearl Inlaid Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132245','4','4','4','45349','8','6','141','70','0','Tide-stomper\'s Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132247','4','4','0','39129','11','3','141','70','0','Ring of Captured Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132248','4','2','6','45318','17','1','141','70','1','Halberd of Desolation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132250','4','4','4','45760','3','1','141','70','0','Pauldrons of Abyssal Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132251','4','4','3','45358','9','5','141','70','0','Wraps of Precise Flight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132252','4','4','2','45327','5','8','141','70','0','Nether Shadow Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132253','4','2','18','45491','26','2','141','70','0','Legionkiller','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132254','4','2','0','44960','13','1','141','70','3','The Brutalizer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132255','4','4','6','44869','14','6','141','70','4','Felstone Bulwark','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132256','4','4','1','45356','6','7','141','70','0','Waistwrap of Infinity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132257','4','4','8','45315','28','2','141','70','0','Idol of the White Stag','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132258','4','4','3','45765','6','5','141','70','0','Naturalist\'s Preserving Cinch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132259','4','4','3','45762','9','5','141','70','0','Bands of the Coming Storm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132260','4','4','0','39214','2','3','141','70','0','Choker of Endless Nightmares','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132261','4','4','0','44357','11','3','141','70','0','Band of the Abyssal Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132262','4','2','4','45345','13','1','141','70','3','Syphon of the Nathrezim','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132263','4','4','4','45334','7','1','141','70','0','Praetorian\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132264','4','4','3','45731','3','5','141','70','0','Shoulders of the Hidden Predator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132265','4','4','2','45730','6','5','141','70','0','Shadow-walker\'s Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132266','4','4','0','44358','11','3','141','70','0','Ring of Deceitful Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132267','4','4','4','45918','8','1','128','70','0','Boots of the Resilient','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132268','4','4','4','45324','8','1','141','70','0','Myrmidon\'s Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132269','4','2','15','47605','13','1','141','70','3','Messenger of Fate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132270','4','4','1','45292','9','7','141','70','0','Focused Mana Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132271','4','4','2','45724','7','8','141','70','0','Kilt of Immortal Nature','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132273','4','4','1','45704','3','7','141','70','0','Amice of Brilliant Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132275','4','4','3','45670','10','5','141','70','0','Spiritwalker Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132276','4','4','3','45763','6','5','141','70','0','Flashfire Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132278','4','4','4','46487','10','1','141','70','0','Grips of Silent Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132279','4','4','4','45347','9','1','141','70','0','The Seeker\'s Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132280','4','4','4','45715','10','1','141','70','0','Gauntlets of Enforcement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132323','4','4','1','45886','16','7','141','70','0','Shadowmoon Destroyer\'s Drape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132324','4','4','2','47436','9','8','141','70','0','Insidious Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132325','4','2','3','44962','26','1','141','70','0','Rifle of the Stoic Guardian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132326','4','2','16','45738','25','1','141','70','0','Twisted Blades of Zarak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132327','4','4','1','45335','20','7','141','70','0','Robe of the Shadow Council','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132328','4','4','2','45707','10','8','141','70','0','Botanist\'s Gloves of Growth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132329','4','4','1','47433','1','7','141','70','0','Cowl of Benevolence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132330','4','4','9','43430','28','2','141','70','0','Totem of Ancestral Guidance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132331','4','4','1','45885','16','7','141','70','0','Cloak of the Illidari Council','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132332','4','2','5','45350','17','1','141','70','1','Torch of the Damned','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132333','4','4','4','45299','6','1','141','70','0','Girdle of Stability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132334','4','4','3','45355','5','5','141','70','0','Vest of Mounting Assault','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132335','4','4','0','44841','11','3','141','70','0','Unstoppable Aggressor\'s Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132336','4','2','2','45485','15','1','151','70','0','Black Bow of the Betrayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132337','4','4','1','46490','16','7','141','70','0','Shroud of Forgiveness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132338','4','4','1','45705','3','7','141','70','0','Blood-cursed Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132339','4','4','2','45264','6','8','141','70','0','Belt of Primal Majesty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132340','4','4','1','45714','20','7','141','70','0','Garments of Temperance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132341','4','4','4','46488','7','1','141','70','0','Leggings of Divine Retribution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132342','4','4','4','45298','6','1','141','70','0','Girdle of Mighty Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132343','4','2','19','45357','26','2','141','70','0','Wand of Prismatic Focus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132344','4','2','10','47434','17','2','141','70','2','Staff of Immaculate Recovery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132345','4','4','4','45287','8','6','141','70','0','Dreadboots of the Legion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132346','4','4','3','45277','6','5','141','70','0','Boneweave Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132347','4','4','2','45718','10','8','141','70','0','Grips of Damnation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132348','4','2','1','45492','17','1','141','70','1','Soul Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132349','4','4','0','45351','2','3','141','70','0','Translucent Spellthread Necklace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132350','4','4','0','41453','23','3','141','70','0','Touch of Inspiration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132351','4','4','2','45288','9','8','141','70','0','Elunite Empowered Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132352','4','4','2','45326','8','8','141','70','0','Naturewarden\'s Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132353','4','4','1','45716','10','7','141','70','0','Gloves of Unfailing Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132354','4','4','4','45843','1','-1','141','70','0','Crown of Empowered Fate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132361','4','4','0','45275','23','3','141','70','0','Blind-Seers Icon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132362','4','4','0','4841','2','4','141','70','0','Pendant of Titans','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132363','4','2','19','41668','26','2','141','70','0','Naaru-Blessed Life Rod','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132365','4','4','4','45311','5','1','141','70','0','Heartshatter Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132366','4','4','2','45729','8','8','141','70','0','Shadowmaster\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132367','4','4','1','45319','7','7','141','70','0','Leggings of Devastation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132368','4','4','7','34960','28','2','141','70','0','Tome of the Lightbringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132369','4','2','7','47226','13','1','141','70','3','Blade of Savagery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132370','4','4','0','39212','2','4','141','70','0','Nadina\'s Pendant of Purity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132373','4','4','4','45722','1','-1','141','70','0','Helm of the Illidari Shatterer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132374','4','2','10','45161','17','2','151','70','2','Zhar\'doom, Greatstaff of the Devourer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132375','4','4','6','45653','14','6','151','70','4','Bulwark of Azzinoth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132376','4','4','3','45713','1','5','141','70','0','Forest Prowler\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132377','4','4','2','45816','3','8','141','70','0','Mantle of Darkness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132378','2','2','16','20772','25','1','37','0','0','Silver Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132387','3','4','8','45754','28','2','115','0','0','Idol of the Raven Goddess','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132389','4','4','1','42917','7','7','130','70','0','Soulguard Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132390','4','4','1','44824','6','7','130','70','0','Soulguard Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132391','4','4','1','45787','8','7','130','70','0','Soulguard Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132392','4','4','1','44826','9','7','130','70','0','Soulguard Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132393','4','4','2','44829','6','8','130','70','0','Redeemed Soul Cinch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132394','4','4','2','44830','8','8','130','70','0','Redeemed Soul Moccasins','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132395','4','4','2','44831','9','8','130','70','0','Redeemed Soul Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132396','4','4','2','44828','7','8','130','70','0','Redeemed Soul Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132397','4','4','3','44836','6','5','130','70','0','Waistguard of Shackled Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132398','4','4','3','45786','8','5','130','70','0','Boots of Shackled Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132399','4','4','3','44835','9','5','130','70','0','Bracers of Shackled Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132400','4','4','3','44833','7','5','130','70','0','Greaves of Shackled Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132401','4','4','4','27429','6','6','130','70','0','Shadesteel Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132402','4','4','4','45785','8','6','130','70','0','Shadesteel Sabots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132403','4','4','4','44839','9','6','130','70','0','Shadesteel Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132404','4','4','4','44837','7','6','130','70','0','Shadesteel Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132407','3','2','11','44842','21','1','115','70','3','Creature - Maiev\'s Glaive','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132420','4','4','1','45480','16','7','130','70','0','Night\'s End','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132445','1','4','0','44852','19','7','20','70','0','Skyguard Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132450','4','2','4','44858','21','1','123','70','3','Gladiator\'s Gavel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132451','4','2','4','44858','21','1','123','70','3','Gladiator\'s Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132452','4','4','0','39505','23','3','123','70','7','Gladiator\'s Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132461','4','4','4','45779','1','7','127','62','0','Furious Gizmatic Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132466','4','2','7','41428','13','1','350','0','3','Bland Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132471','4','2','15','45487','13','1','151','70','3','Shard of Azzinoth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132472','4','4','4','43889','1','7','127','62','0','Justicebringer 2000 Specs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132473','4','4','4','43886','1','7','127','62','0','Tankatronic Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132474','4','4','3','45783','1','7','127','62','0','Surestrike Goggles v2.0','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132475','4','4','3','45780','1','7','127','62','0','Living Replicator Specs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132476','4','4','3','45778','1','7','127','62','0','Gadgetstorm Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132478','4','4','2','44949','1','7','127','62','0','Deathblow X11 Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132479','4','4','2','45782','1','7','127','62','0','Wonderheal XT40 Shades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132480','4','4','2','43886','1','7','127','62','0','Magnified Moon Specs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132481','3','4','0','43430','12','2','70','0','0','Charm of Swift Flight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132482','4','2','19','41367','26','2','130','70','0','Touch of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132483','4','4','0','45364','12','4','151','70','0','The Skull of Gul\'dan','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132485','4','4','0','44974','12','4','141','0','0','Ashtongue Talisman of Valor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132486','4','4','0','45849','12','4','141','0','0','Ashtongue Talisman of Equilibrium','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132487','4','4','0','45853','12','4','141','0','0','Ashtongue Talisman of Swiftness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132488','4','4','0','45850','12','4','141','0','0','Ashtongue Talisman of Insight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132489','4','4','0','35130','12','4','141','0','0','Ashtongue Talisman of Zeal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132490','4','4','0','45854','12','4','141','0','0','Ashtongue Talisman of Acumen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132491','4','4','0','45855','12','4','141','0','0','Ashtongue Talisman of Vision','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132492','4','4','0','45851','12','4','141','0','0','Ashtongue Talisman of Lethality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132493','4','4','0','45852','12','4','141','0','0','Ashtongue Talisman of Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132494','4','4','1','43891','1','7','127','62','0','Destruction Holo-gogs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132495','4','4','1','45781','1','7','127','62','0','Powerheal 4000 Lens','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132496','4','4','0','45488','12','4','151','70','0','Memento of Tyrande','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132497','4','4','0','45362','11','3','151','70','0','Stormrage Signet Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132500','4','2','4','45365','21','1','151','70','3','Crystal Spire of Karabor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132501','4','4','0','45337','12','4','141','70','0','Shadowmoon Insignia','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132505','4','4','0','45322','12','4','141','70','0','Madness of the Betrayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132508','3','4','0','32395','2','4','100','65','0','Necklace of the Deep','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132510','4','4','3','45733','8','5','141','70','0','Softstep Boots of Tracking','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132512','4','4','4','44866','6','1','141','70','0','Girdle of Lordaeron\'s Fallen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132513','4','4','1','45359','9','7','141','70','0','Wristbands of Divine Influence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132514','3','4','0','24022','11','1','115','70','0','Skettis Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132515','4','4','4','42650','9','6','128','70','0','Wristguards of Determination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132516','4','4','1','40490','9','7','128','70','0','Wraps of Purification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132517','4','4','3','45757','3','5','141','70','0','The Wavemender\'s Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132518','4','4','2','45758','3','8','141','70','0','Veil of Turning Leaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132519','4','4','1','45263','6','7','141','70','0','Belt of Divine Guidance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132520','3','4','0','45003','23','3','109','70','0','Manaforged Sphere','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132521','4','4','4','46205','1','1','151','70','0','Faceplate of the Impenetrable','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132522','3','4','6','45006','14','6','115','70','4','Demonic Bulwark','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132524','4','4','1','45476','16','7','151','70','0','Shroud of the Highborne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132525','4','4','1','45702','1','7','151','70','0','Cowl of the Illidari High Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132526','4','4','0','31616','11','3','151','70','0','Band of Devastation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132527','4','4','0','31616','11','3','151','70','0','Ring of Ancient Knowledge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132528','4','4','0','31616','11','3','151','70','0','Blessed Band of Karabor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132529','3','4','4','45008','10','6','115','70','0','Heretic\'s Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132531','3','4','0','9860','2','3','115','70','0','Gezzarak\'s Fang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132532','3','4','2','45029','9','8','115','70','0','Windrager\'s Coils','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132533','3','4','0','45030','23','3','115','70','0','Karrog\'s Shard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132534','3','4','0','36755','12','3','115','70','0','Brooch of the Immortal King','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132535','3','4','0','28733','11','3','115','70','0','Gift of the Talonpriests','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132536','3','2','4','45040','13','2','115','70','3','Terokk\'s Gavel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132537','3','2','4','31321','21','2','115','70','3','Terokk\'s Gavel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132538','3','4','1','45042','16','7','115','70','0','Skywitch\'s Drape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132539','3','4','1','45043','16','7','115','70','0','Skyguard\'s Drape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132540','4','4','1','45048','16','7','105','70','0','Terokk\'s Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132541','4','4','1','45050','16','7','105','70','0','Terokk\'s Wisdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132568','4','4','4','45404','9','1','141','70','0','Swiftsteel Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132570','4','4','4','45413','3','1','141','70','0','Swiftsteel Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132571','4','4','4','45402','9','1','141','70','0','Dawnsteel Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132573','4','4','4','45407','3','1','141','70','0','Dawnsteel Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132574','4','4','3','45399','9','5','141','70','0','Bindings of Lightning Reflexes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132575','4','4','3','45408','3','5','141','70','0','Shoulders of Lightning Reflexes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132577','4','4','3','45403','9','5','141','70','0','Living Earth Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132579','4','4','3','45408','3','5','141','70','0','Living Earth Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132580','4','4','2','45775','9','8','141','70','0','Swiftstrike Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132581','4','4','2','45773','3','8','141','70','0','Swiftstrike Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132582','4','4','2','45401','9','8','141','70','0','Bracers of Renewed Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132583','4','4','2','45774','3','8','141','70','0','Shoulderpads of Renewed Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132584','4','4','1','45400','9','7','141','70','0','Swiftheal Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132585','4','4','1','45412','3','7','141','70','0','Swiftheal Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132586','4','4','1','45400','9','7','141','70','0','Bracers of Nimble Thought','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132587','4','4','1','45409','3','7','141','70','0','Mantle of Nimble Thought','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132589','4','4','0','31899','2','3','141','70','0','Hellfire-Encased Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132590','4','4','1','46124','16','7','141','70','0','Nethervoid Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132591','4','4','0','39210','2','3','141','70','0','Choker of Serrated Blades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132592','4','4','3','45283','5','5','141','70','0','Chestguard of Relentless Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132593','4','4','2','45352','8','8','141','70','0','Treads of the Den Mother','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132606','4','4','4','44866','6','1','141','70','0','Girdle of the Lightbearer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132608','4','4','4','45728','10','1','141','70','0','Pillager\'s Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132609','4','4','1','45706','8','7','141','70','0','Boots of the Divine Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132645','4','2','18','45154','26','2','100','70','0','Crystalline Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132647','4','4','2','45155','9','7','105','70','0','Shard-bound Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132648','4','4','4','45472','8','6','105','70','0','Vortex Walking Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132650','3','2','19','45159','26','2','115','70','0','Cerulean Crystal Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132651','4','4','0','45160','23','3','105','70','0','Crystal Orb of Enlightenment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132652','3','4','6','45163','14','6','115','70','4','Ogri\'la Aegis','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132653','3','4','1','15120','16','7','115','70','0','Apexis Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132654','3','4','0','36540','12','3','115','70','0','Crystalforged Trinket','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132655','4','4','1','46204','9','7','105','70','0','Crystalweave Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132656','4','4','3','45185','10','5','105','70','0','Crystalhide Handwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132658','3','4','0','45197','12','-1','115','70','0','Badge of Tenacity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132659','3','2','15','45187','13','1','115','70','3','Crystal-Infused Shiv','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132660','3','2','7','12284','21','1','115','70','3','Crystalforged Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132661','3','2','4','45188','13','2','115','70','3','Apexis Crystal Mace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132662','3','2','10','45189','17','2','115','70','2','Flaming Quartz Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132663','3','2','1','40300','17','1','115','70','1','Apexis Cleaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132664','3','4','0','9847','11','5','115','70','0','Dreamcrystal Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132665','3','4','1','45191','16','7','115','70','0','Crystalweave Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132694','2','4','0','43551','12','-1','70','0','0','Overseer\'s Badge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132695','3','4','0','43551','12','-1','70','0','0','Captain\'s Badge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132756','4','2','3','45445','26','1','105','70','0','Gyro-Balanced Khorium Destroyer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132769','3','4','2','43021','6','8','115','70','0','Belt of the Raven Lord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132770','4','4','0','45453','12','4','105','70','0','Skyguard Silver Cross','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132771','4','4','0','45452','12','4','105','70','0','Airman\'s Ribbon of Gallantry','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132772','3','4','0','9837','11','5','97','64','0','Brilliant Pearl Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132774','3','4','0','24022','11','5','100','65','0','The Black Pearl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132776','3','4','1','26680','1','7','115','70','0','Crown of the Sea Witch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132778','3','4','4','43043','8','6','115','70','0','Boots of Righteous Fortitude','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132779','3','4','0','39124','11','5','115','70','0','Band of Frigid Elements','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132780','3','2','3','41433','26','1','115','70','0','The Boomstick','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132781','3','2','15','21620','13','1','115','70','3','Talon of Anzu','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132782','3','4','0','34149','12','3','70','68','0','Time-Lost Figurine','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132785','4','4','3','46053','8','5','136','70','0','Veteran\'s Chain Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132786','4','4','2','46059','8','8','136','70','0','Veteran\'s Dragonhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132787','4','4','1','46064','8','7','136','70','0','Veteran\'s Dreadweave Stalkers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132788','4','4','2','46059','8','8','136','70','0','Veteran\'s Kodohide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132789','4','4','4','46044','8','6','136','70','0','Veteran\'s Lamellar Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132790','4','4','2','46056','8','8','136','70','0','Veteran\'s Leather Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132791','4','4','3','46049','8','5','136','70','0','Veteran\'s Linked Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132792','4','4','3','46049','8','5','136','70','0','Veteran\'s Mail Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132793','4','4','4','46041','8','6','136','70','0','Veteran\'s Plate Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132794','4','4','4','46044','8','6','136','70','0','Veteran\'s Scaled Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132795','4','4','1','46067','8','7','136','70','0','Veteran\'s Silk Footguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132796','4','4','2','46059','8','8','136','70','0','Veteran\'s Wyrmhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132797','4','4','3','46052','6','5','136','70','0','Veteran\'s Chain Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132798','4','4','2','46058','6','8','136','70','0','Veteran\'s Dragonhide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132799','4','4','1','46062','6','7','136','70','0','Veteran\'s Dreadweave Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132800','4','4','2','46058','6','8','136','70','0','Veteran\'s Kodohide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132801','4','4','4','46042','6','6','136','70','0','Veteran\'s Lamellar Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132802','4','4','2','46054','6','8','136','70','0','Veteran\'s Leather Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132803','4','4','3','46048','6','5','136','70','0','Veteran\'s Linked Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132804','4','4','3','46048','6','5','136','70','0','Veteran\'s Mail Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132805','4','4','4','46039','6','6','136','70','0','Veteran\'s Plate Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132806','4','4','4','46042','6','6','136','70','0','Veteran\'s Scaled Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132807','4','4','1','46065','6','7','136','70','0','Veteran\'s Silk Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132808','4','4','2','46058','6','8','136','70','0','Veteran\'s Wyrmhide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132809','4','4','3','46051','9','5','126','70','0','Veteran\'s Chain Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132810','4','4','2','46060','9','8','126','70','0','Veteran\'s Dragonhide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132811','4','4','1','46063','9','7','126','70','0','Veteran\'s Dreadweave Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132812','4','4','2','46060','9','8','126','70','0','Veteran\'s Kodohide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132813','4','4','4','46043','9','6','126','70','0','Veteran\'s Lamellar Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132814','4','4','2','46057','9','8','126','70','0','Veteran\'s Leather Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132816','4','4','3','46047','9','5','126','70','0','Veteran\'s Linked Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132817','4','4','3','46047','9','5','126','70','0','Veteran\'s Mail Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132818','4','4','4','46040','9','6','126','70','0','Veteran\'s Plate Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132819','4','4','4','46043','9','6','126','70','0','Veteran\'s Scaled Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132820','4','4','1','46066','9','7','126','70','0','Veteran\'s Silk Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132821','4','4','2','46060','9','8','126','70','0','Veteran\'s Wyrmhide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132824','6','2','8','23875','17','1','1','1','1','Tigole\'s Trashbringer','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132828','1','4','0','45495','19','7','20','0','0','Ogri\'la Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132829','3','2','6','45475','17','1','109','0','2','Windcharger\'s Lance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132830','3','2','10','28513','17','2','109','0','2','Severin\'s Cane','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132831','3','2','19','47595','26','2','109','0','0','Jeweled Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132832','3','2','16','45474','25','1','109','0','0','Scout\'s Throwing Knives','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132837','5','2','7','45479','21','1','156','70','1','Warglaive of Azzinoth','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132838','5','2','7','45481','22','1','156','70','1','Warglaive of Azzinoth','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132854','4','2','5','45496','17','2','105','70','2','Hammer of Righteous Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132863','3','4','0','45500','12','4','70','0','0','Skybreaker Whip','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132864','3','4','0','43551','12','-1','109','0','0','Commander\'s Badge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132865','2','4','2','45503','10','8','114','0','0','Drake Tamer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132866','2','4','4','45505','8','6','114','0','0','Ascendant\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132867','2','4','1','45502','6','7','114','0','0','Dragonmaw Augur\'s Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132868','2','4','3','45504','3','5','114','0','0','Skybreaker\'s Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132869','2','4','2','45506','5','8','114','0','0','Illidari Lord\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132870','2','4','3','45507','7','5','114','0','0','Legguards of Contemplation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132871','2','4','4','43277','1','6','114','0','0','Horns of the Illidari','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132872','2','2','19','45508','26','2','114','0','0','Illidari Rod of Discipline','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132912','3','2','14','47520','13','2','5','1','7','Yellow Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132914','4','2','15','36741','13','0','100','0','0','Bland Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132915','3','2','14','47477','13','2','5','1','7','Filled Yellow Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132917','3','2','14','47477','13','2','5','1','7','Filled Yellow Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132918','3','2','14','47477','13','2','5','1','7','Filled Yellow Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132919','3','2','14','47477','13','2','5','1','7','Filled Yellow Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132920','3','2','14','47477','13','2','5','1','7','Filled Yellow Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132941','4','4','0','24087','11','3','105','70','0','Corruptor\'s Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132942','4','4','0','23728','11','3','105','70','0','Ring of the Overseer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132943','4','2','4','45345','13','1','141','70','3','Swiftsteel Bludgeon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132944','4','2','13','45689','21','1','134','70','7','Talon of the Phoenix','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132945','4','2','13','45890','22','1','141','70','7','Fist of Molten Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132946','4','2','13','45889','21','1','141','70','7','Claw of Molten Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132949','3','2','7','45692','13','6','115','0','0','Unusually Slow Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132950','3','2','4','45693','13','6','100','0','0','Unusually Slow Mace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132961','4','4','0','39505','23','3','136','70','7','Merciless Gladiator\'s Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132962','4','2','19','46606','26','2','136','70','0','Merciless Gladiator\'s Touch of Defeat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132963','4','2','4','44858','21','1','136','70','3','Merciless Gladiator\'s Gavel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132964','4','2','4','44858','21','1','136','70','3','Merciless Gladiator\'s Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132972','1','4','0','45840','1','-1','10','0','0','Beer Goggles','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132973','4','4','1','41255','9','7','113','70','0','General\'s Mooncloth Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132974','4','4','1','41475','6','7','123','70','0','General\'s Mooncloth Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132975','4','4','1','41164','8','7','123','70','0','General\'s Mooncloth Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132976','4','4','1','41475','6','7','123','70','0','Marshal\'s Mooncloth Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132977','4','4','1','41272','9','7','113','70','0','Marshal\'s Mooncloth Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132978','4','4','1','41484','8','7','123','70','0','Marshal\'s Mooncloth Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132979','4','4','1','46068','6','7','136','70','0','Veteran\'s Mooncloth Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132980','4','4','1','46069','9','7','126','70','0','Veteran\'s Mooncloth Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132981','4','4','1','46071','8','7','136','70','0','Veteran\'s Mooncloth Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132982','4','4','4','41165','6','6','123','70','0','General\'s Ornamented Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132983','4','4','4','41257','9','6','113','70','0','General\'s Ornamented Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132984','4','4','4','41167','8','6','123','70','0','General\'s Ornamented Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132985','4','4','4','41165','6','6','123','70','0','Marshal\'s Ornamented Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132986','4','4','4','41275','9','6','113','70','0','Marshal\'s Ornamented Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132987','4','4','4','41167','8','6','123','70','0','Marshal\'s Ornamented Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132988','4','4','4','46042','6','6','136','70','0','Veteran\'s Ornamented Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132989','4','4','4','46043','9','6','126','70','0','Veteran\'s Ornamented Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132990','4','4','4','46044','8','6','136','70','0','Veteran\'s Ornamented Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132991','4','4','3','41259','9','5','113','70','0','General\'s Ringmail Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132992','4','4','3','41477','6','5','123','70','0','General\'s Ringmail Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132993','4','4','3','41481','8','5','123','70','0','General\'s Ringmail Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132994','4','4','3','41259','9','5','113','70','0','Marshal\'s Ringmail Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132995','4','4','3','41477','6','5','123','70','0','Marshal\'s Ringmail Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132996','4','4','3','41481','8','5','123','70','0','Marshal\'s Ringmail Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132997','4','4','3','46047','9','5','126','70','0','Veteran\'s Ringmail Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132998','4','4','3','46048','6','5','136','70','0','Veteran\'s Ringmail Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('132999','4','4','3','46049','8','5','136','70','0','Veteran\'s Ringmail Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133006','4','2','18','46964','26','2','146','70','0','Vengeful Gladiator\'s Heavy Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133012','1','4','0','45907','23','-1','20','0','0','Terokkar Lilac','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133014','1','4','0','45908','23','-1','20','0','0','Fine Poking Stick','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133016','3','2','14','49972','13','2','5','1','7','Blue Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133017','3','2','14','49974','13','1','5','1','7','Filled Blue Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133018','3','2','14','49974','13','1','5','1','7','Filled Blue Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133019','3','2','14','49974','13','1','5','1','7','Filled Blue Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133020','3','2','14','49974','13','1','5','1','7','Filled Blue Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133021','3','2','14','49974','13','1','5','1','7','Filled Blue Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133047','1','4','0','45840','1','-1','10','0','0','Belbi\'s Eyesight Enhancing Romance Goggles','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133054','4','4','0','31657','11','3','128','70','0','The Seal of Danzalar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133055','4','4','0','44841','11','3','128','70','0','Band of Vile Aggression','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133056','4','4','0','39129','11','5','128','70','0','Veteran\'s Band of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133057','4','4','0','39129','11','5','128','70','0','Veteran\'s Band of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133058','4','4','0','31905','11','3','128','70','0','Band of the Vigilant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133064','4','4','0','39129','11','5','128','70','0','Veteran\'s Band of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133065','4','4','0','39162','2','5','128','70','0','Veteran\'s Pendant of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133066','4','4','0','39162','2','5','128','70','0','Veteran\'s Pendant of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133067','4','4','0','39162','2','5','128','70','0','Veteran\'s Pendant of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133068','4','4','0','39162','2','5','128','70','0','Veteran\'s Pendant of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133076','4','4','8','9659','28','2','136','70','0','Merciless Gladiator\'s Idol of Tenacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133077','4','4','7','1103','28','2','136','70','0','Merciless Gladiator\'s Libram of Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133078','4','4','9','46045','28','2','136','70','0','Merciless Gladiator\'s Totem of the Third Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133080','4','2','0','46081','26','1','40','40','0','Elixir of Water Elementals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133105','1','4','0','41734','1','-1','1','0','0','Budd\'s Guise of Zul\'aman','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133122','4','4','1','26202','16','7','120','70','0','Cloak of Darkness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133173','3','4','4','46324','3','-1','115','70','0','Ragesteel Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133191','4','4','4','46781','8','1','128','70','0','Jungle Stompers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133192','4','2','19','48216','26','2','132','70','0','Carved Witch Doctor\'s Stick','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133197','2','4','0','9858','2','1','103','66','0','Mossy Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133203','4','4','1','47159','20','7','128','70','0','Robes of Heavenly Purpose','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133204','4','4','2','46382','5','8','105','70','0','Shadowprowler\'s Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133206','4','4','3','47032','3','5','128','70','0','Pauldrons of Primal Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133207','4','4','4','46784','8','1','128','70','0','Implacable Guardian Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133211','4','4','2','46785','6','5','128','70','0','Bladeangel\'s Money Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133214','4','2','7','46789','13','1','132','70','1','Akil\'zon\'s Talonblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133215','4','4','4','47020','5','1','128','70','0','Bloodstained Elven Battlevest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133216','4','4','4','49359','5','1','128','70','0','Chestguard of Hidden Purpose','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133222','4','4','2','46792','8','8','128','70','0','Nyn\'jah\'s Tabi Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133228','2','4','1','46430','5','7','36','0','0','Crimson Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133229','2','4','1','46431','5','7','36','0','0','Mordant\'s Travel Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133230','2','4','1','46432','7','7','39','0','0','Leggings of the Long Road','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133231','2','4','1','46433','1','8','40','0','0','Oversized Stonemaul Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133232','2','4','1','46434','1','8','37','0','0','Journeyman\'s Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133233','2','4','1','46435','10','7','40','0','0','Cobalt-threaded Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133235','2','4','1','13675','3','7','40','0','0','Journeyman\'s Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133237','2','4','2','46437','5','8','40','0','0','Brogg\'s Battle Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133239','2','4','2','46438','5','8','40','0','0','Marshwarden\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133240','2','4','2','8712','5','8','39','0','0','Grimtotem Earthbinder\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133241','2','4','2','46439','7','8','40','0','0','Oiled Leather Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133242','2','4','2','46440','7','8','40','0','0','Raptorhide Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133243','2','4','2','46441','1','8','39','0','0','Skirmisher\'s Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133244','2','4','2','46442','1','8','39','0','0','The Wanderer\'s Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133245','2','4','2','46443','6','8','36','0','0','Grimsby\'s Gaudy Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133247','2','4','2','46444','3','8','36','0','0','Swift Wind Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133248','2','4','2','38664','3','8','37','0','0','Crested Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133249','2','4','2','46445','8','8','37','0','0','Boots of the Skirmisher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133250','2','4','2','46446','9','8','37','0','0','Archer\'s Wristguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133251','2','4','3','46447','5','5','39','0','0','Steel-banded Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133252','2','4','3','46448','5','5','37','0','0','Gleaming Scale Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133253','2','4','3','46449','1','5','36','0','0','Golden Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133255','2','4','4','46462','6','5','40','0','0','Rustproof Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133256','2','4','4','46461','10','5','40','0','0','Refitted Bruiser Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133257','2','4','3','46452','8','5','36','0','0','Scaled Marshwalkers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133258','2','4','4','46463','7','5','40','0','0','Protective Engineer\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133259','2','4','3','46454','1','5','38','0','0','Crimson Barbut','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133260','2','4','1','46455','16','7','39','0','0','Spellbound Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133261','2','4','1','35076','16','7','39','0','0','Destroyer\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133262','2','4','0','9837','11','1','39','0','0','Morlann\'s Seal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133263','2','4','0','9834','11','1','40','0','0','Raptor Eye Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133264','2','4','0','9847','11','1','38','0','0','Glowing Tourmaline Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133265','2','4','0','9854','2','3','37','0','0','Pendant of Ferocity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133266','2','4','0','46456','23','3','37','0','7','Book of the Adept','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133267','2','2','15','46457','13','1','38','0','3','Fleshripper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133268','2','2','15','46458','13','1','38','0','3','Bone Dirk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133269','2','2','15','46459','13','1','37','0','3','Bejeweled Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133270','2','2','7','20214','13','1','38','0','3','Mariner\'s Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133271','2','2','7','20110','13','1','40','0','3','Battlecaster\'s Edge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133272','2','2','0','46460','13','1','38','0','3','Biting Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133273','2','2','2','20667','15','2','39','0','0','Seasoned Marshwood Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133274','2','2','18','38651','26','2','37','0','0','Mercenary\'s Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133279','4','4','4','42651','6','1','128','70','0','Iron-tusk Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133280','4','4','3','46793','6','5','128','70','0','War-Feathered Loop','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133281','4','4','0','33906','2','4','128','70','0','Brooch of Nature\'s Mercy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133283','4','2','4','46801','21','1','132','70','3','Amani Punisher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133285','4','4','1','42602','9','7','128','70','0','Fury of the Ursine','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133286','4','4','3','47037','1','5','128','70','0','Mojo-mender\'s Mask','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133287','4','4','2','46803','3','8','128','70','0','Gnarled Ironwood Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133291','4','4','1','46804','6','7','128','70','0','Voodoo-woven Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133292','3','4','1','46514','1','7','1','0','0','Hallowed Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133293','4','4','0','44358','11','3','128','70','0','Signet of Ancient Magics','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133296','4','4','0','46805','2','4','128','70','0','Brooch of Deftness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133297','4','4','0','43701','2','3','128','70','0','The Savage\'s Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133298','4','2','15','47127','13','1','132','70','3','Prowler\'s Strikeblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133299','4','4','4','46807','3','1','128','70','0','Spaulders of the Advocate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133300','4','4','2','46809','3','8','128','70','0','Shoulderpads of Dancing Blades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133303','4','4','4','46810','8','1','128','70','0','Skullshatter Warboots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133304','4','4','1','46812','16','7','136','70','0','Cloak of Subjugated Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133309','4','4','6','42376','14','1','136','70','4','Merciless Gladiator\'s Redoubt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133313','4','4','6','42376','14','1','136','70','4','Merciless Gladiator\'s Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133317','4','4','1','48222','20','7','128','70','0','Robe of Departed Spirits','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133322','4','4','2','46813','5','8','128','70','0','Shimmer-pelt Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133324','4','4','3','47038','8','5','128','70','0','Treads of the Life Path','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133325','4','4','0','46817','23','3','128','70','0','Voodoo Shaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133326','4','4','6','48211','14','6','128','70','4','Bulwark of the Amani Empire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133327','4','4','4','47898','1','-1','128','70','0','Mask of Introspection','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133328','4','4','3','46978','5','5','128','70','0','Arrow-fall Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133329','4','4','2','46979','5','8','128','70','0','Shadowtooth Trollskin Cuirass','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133331','4','4','4','47021','6','1','128','70','0','Chain of Unleashed Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133332','4','4','6','48212','14','6','128','70','4','Enamelled Disc of Mojo','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133333','4','4','1','43292','16','7','136','70','0','Kharmaa\'s Shroud of Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133334','4','4','0','46981','23','3','128','70','0','Fetish of the Primal Gods','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133350','3','2','8','46609','17','1','300','100','1','Frostmourne Art Demo','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133354','4','2','15','46982','21','1','132','70','3','Wub\'s Cursed Hexblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133356','4','4','2','46983','1','8','128','70','0','Helm of Natural Regeneration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133357','4','4','1','41484','8','7','128','70','0','Footpads of Madness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133358','0','4','1','46613','6','7','118','71','0','Thread-Bare Cloth Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133359','0','4','1','4615','8','7','118','71','0','Thread-Bare Cloth Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133360','0','4','1','9894','9','7','118','71','0','Thread-Bare Cloth Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133361','0','4','1','46614','10','7','118','71','0','Thread-Bare Cloth Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133362','0','4','1','46615','7','7','118','71','0','Thread-Bare Cloth Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133363','0','4','1','46616','3','7','118','71','0','Thread-Bare Cloth Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133364','0','4','1','46617','5','7','118','71','0','Thread-Bare Cloth Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133365','0','4','1','6306','6','7','132','77','0','Frost-Rimed Cloth Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133366','0','4','1','4614','8','7','132','77','0','Frost-Rimed Cloth Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133367','0','4','1','46618','9','7','132','77','0','Frost-Rimed Cloth Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133368','0','4','1','46619','10','7','132','77','0','Frost-Rimed Cloth Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133369','0','4','1','46620','7','7','132','77','0','Frost-Rimed Cloth Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133370','0','4','1','46621','3','7','132','77','0','Frost-Rimed Cloth Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133371','0','4','1','46622','5','7','132','77','0','Frost-Rimed Cloth Vest','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133372','0','4','2','46629','5','8','118','71','0','Fur-Lined Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133373','0','4','2','46630','6','8','118','71','0','Fur-Lined Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133374','0','4','2','46631','8','8','118','71','0','Fur-Lined Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133375','0','4','2','46632','9','8','118','71','0','Fur-Lined Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133376','0','4','2','46633','10','8','118','71','0','Fur-Lined Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133377','0','4','2','46634','7','8','118','71','0','Fur-Lined Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133378','0','4','2','10179','3','8','118','71','0','Fur-Lined Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133379','0','4','2','9726','5','8','132','77','0','Frozen Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133380','0','4','2','46623','6','8','132','77','0','Frozen Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133381','0','4','2','5401','8','8','132','77','0','Frozen Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133382','0','4','2','46624','9','8','132','77','0','Frozen Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133383','0','4','2','46625','10','8','132','77','0','Frozen Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133384','0','4','2','46626','7','8','132','77','0','Frozen Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133385','0','4','2','46628','3','8','132','77','0','Frozen Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133386','4','4','3','47036','6','5','128','70','0','Man\'kin\'do\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133388','4','2','7','46985','13','1','132','70','3','Heartless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133389','4','2','15','46986','13','1','132','70','3','Dagger of Bad Mojo','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133390','0','4','3','46642','5','5','118','71','0','Icy Mail Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133391','0','4','3','46643','6','5','118','71','0','Icy Mail Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133392','0','4','3','46644','8','5','118','71','0','Icy Mail Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133393','0','4','3','46645','9','5','118','71','0','Icy Mail Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133394','0','4','3','46646','10','5','118','71','0','Icy Mail Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133395','0','4','3','46647','7','5','118','71','0','Icy Mail Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133396','0','4','3','37344','3','5','118','71','0','Icy Mail Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133397','0','4','3','46635','5','5','132','77','0','Frigid Mail Armor','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133398','0','4','3','46636','6','5','132','77','0','Frigid Mail Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133399','0','4','3','46637','8','5','132','77','0','Frigid Mail Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133400','0','4','3','46638','9','5','132','77','0','Frigid Mail Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133401','0','4','3','46639','10','5','132','77','0','Frigid Mail Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133402','0','4','3','46640','7','5','132','77','0','Frigid Mail Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133403','0','4','3','46641','3','5','132','77','0','Frigid Mail Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133404','0','4','4','46649','6','6','118','71','0','Ice-Bound Plate Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133405','0','4','4','46650','8','6','118','71','0','Ice-Bound Plate Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133406','0','4','4','46651','9','6','118','71','0','Ice-Bound Plate Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133407','0','4','4','46648','5','6','118','71','0','Ice-Bound Plate Chestpiece','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133408','0','4','4','46652','10','6','118','71','0','Ice-Bound Plate Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133409','0','4','4','46653','7','6','118','71','0','Ice-Bound Plate Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133410','0','4','4','46654','3','6','118','71','0','Ice-Bound Plate Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133412','0','4','4','46655','6','6','132','77','0','Frost-Worn Plate Belt','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133413','0','4','4','46656','8','6','132','77','0','Frost-Worn Plate Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133414','0','4','4','46657','9','6','132','77','0','Frost-Worn Plate Bracers','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133415','0','4','4','40746','5','6','132','77','0','Frost-Worn Plate Chestpiece','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133416','0','4','4','46658','10','6','132','77','0','Frost-Worn Plate Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133417','0','4','4','46659','7','6','132','77','0','Frost-Worn Plate Pants','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133419','0','4','4','46660','3','6','132','77','0','Frost-Worn Plate Shoulderpads','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133421','4','4','4','46987','1','-1','133','70','0','Battleworn Tuskguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133422','0','2','2','46666','15','2','125','74','0','Shattered Bow','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133423','0','2','4','5009','21','2','125','74','3','Rime-Covered Mace','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133424','0','2','10','20446','17','2','125','74','2','Cracked Iron Staff','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133425','0','2','7','46665','21','1','125','74','3','Ice-Pitted Blade','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133426','0','2','0','8479','21','1','125','74','3','Chipped Timber Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133427','0','2','3','46664','26','1','125','74','0','Frost-Encrusted Rifle','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133428','0','2','15','46663','13','1','125','74','3','Dulled Shiv','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133429','0','2','1','8537','17','1','125','74','1','Ice Cleaver','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133430','0','2','8','46661','17','1','125','74','1','Abandoned Greatsword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133431','0','2','5','8694','17','2','125','74','1','Icesmashing Mace','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133432','4','4','3','47173','1','5','133','70','0','Coif of the Jungle Stalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133433','0','4','3','46668','1','5','132','77','0','Frigid Mail Circlet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133434','0','4','2','46671','1','8','132','77','0','Frozen Leather Helmet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133435','0','4','4','50806','1','5','132','77','0','Frost-Worn Plate Helmet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133436','0','4','1','46669','1','7','132','77','0','Frost-Rimed Cloth Hat','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133437','0','4','3','46673','1','5','118','71','0','Icy Mail Circlet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133438','0','4','1','46674','1','7','118','71','0','Thread-Bare Hat','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133439','0','4','2','46672','1','8','118','71','0','Fur-Lined Leather Helmet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133440','0','4','4','42217','1','5','118','71','0','Ice-Bound Plate Helmet','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133446','4','4','4','46989','6','1','128','70','0','Girdle of Stromgarde\'s Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133453','4','4','1','48434','1','7','133','70','0','Hood of Hexing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133463','4','4','1','48436','1','7','133','70','0','Hood of the Third Eye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133464','4','4','3','46990','3','5','133','70','0','Hex Lord\'s Voodoo Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133465','4','2','10','46991','17','2','132','70','2','Staff of Primal Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133466','4','4','0','9852','2','3','133','70','0','Loop of Cursed Bones','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133467','4','2','7','46992','21','1','138','70','3','Blade of Twisted Visions','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133468','4','2','4','46994','21','1','138','70','3','Dark Blessing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133469','4','4','3','46995','5','5','133','70','0','Hauberk of the Empire\'s Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133471','4','4','1','46996','8','7','133','70','0','Two-toed Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133473','4','4','4','46998','5','1','133','70','0','Chestguard of the Warlord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133474','4','2','2','48215','15','2','132','70','0','Ancient Amani Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133475','6','2','8','46609','17','-1','296','80','1','Frostmourne','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133476','4','2','0','46999','13','1','138','70','3','Cleaver of the Unforgiving','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133478','4','2','8','47042','17','1','138','70','1','Jin\'rohk, The Great Apocalypse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133479','4','4','2','47001','1','8','133','70','0','Grimgrin Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133480','4','4','1','47002','6','7','128','70','0','Cord of Braided Troll Hair','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133481','4','4','4','47003','3','1','128','70','0','Pauldrons of Stone Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133482','4','4','3','45845','8','5','128','70','0','Cobra-Lash Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133483','4','4','2','47005','6','8','128','70','0','Life-step Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133484','4','4','1','47589','16','7','136','70','0','Dory\'s Embrace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133489','4','4','1','47007','3','7','128','70','0','Mantle of Ill Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133490','4','2','10','47008','17','2','132','70','2','Staff of Dark Mending','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133491','4','2','3','47010','26','1','132','70','0','Tuskbreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133492','4','2','1','47011','17','1','132','70','1','Trollbane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133493','4','2','15','47012','13','1','132','70','3','Umbral Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133494','4','2','10','46916','17','2','132','70','2','Amani Divining Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133495','4','2','13','47176','21','1','132','70','7','Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133496','4','4','0','33534','11','3','141','70','0','Signet of Primal Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133497','4','4','0','35313','11','3','141','70','0','Mana Attuned Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133498','4','4','0','31576','11','3','141','70','0','Signet of the Quiet Forest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133499','4','4','0','45362','11','3','141','70','0','Signet of the Last Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133500','4','4','0','39120','11','3','141','70','0','Signet of Eternal Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133501','4','4','4','47015','7','1','128','70','0','Bloodthirster\'s Wargreaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133502','4','4','7','34961','28','2','128','70','0','Libram of Mending','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133503','4','4','7','34959','28','2','128','70','0','Libram of Divine Judgement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133504','4','4','7','34960','28','2','128','70','0','Libram of Divine Purpose','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133505','4','4','9','46045','28','2','128','70','0','Totem of Living Water','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133506','4','4','9','47071','28','2','128','70','0','Skycall Totem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133507','4','4','9','47072','28','2','128','70','0','Stonebreaker\'s Totem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133508','4','4','8','47073','28','2','128','70','0','Idol of Budding Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133509','4','4','8','39640','28','2','128','70','0','Idol of Terror','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133510','4','4','8','47088','28','2','128','70','0','Idol of the Unseen Moon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133512','4','4','4','47016','10','1','128','70','0','Furious Deathgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133513','4','4','4','47017','9','1','128','70','0','Eternium Rage-shackles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133514','4','4','4','47018','3','1','128','70','0','Pauldrons of Gruesome Fate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133515','4','4','4','47022','7','1','128','70','0','Unwavering Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133516','4','4','4','47023','9','6','128','70','0','Bracers of the Ancient Phalanx','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133517','4','4','4','47024','10','1','128','70','0','Bonefist Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133518','4','4','4','47025','7','1','128','70','0','High Justicar\'s Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133519','4','4','4','47026','10','1','128','70','0','Handguards of the Templar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133520','4','4','4','47027','9','1','128','70','0','Vambraces of the Naaru','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133522','4','4','4','49359','5','1','128','70','0','Chestguard of the Stoic Guardian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133523','4','4','4','46784','8','1','128','70','0','Sabatons of the Righteous Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133524','4','4','4','40515','6','1','128','70','0','Girdle of the Protector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133527','4','4','3','47029','7','5','128','70','0','Shifting Camouflage Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133528','4','4','3','47030','10','5','128','70','0','Gauntlets of Sniping','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133529','4','4','3','47031','9','5','128','70','0','Steadying Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133530','4','4','3','47177','7','5','128','70','0','Natural Life Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133531','4','4','3','47034','10','5','128','70','0','Polished Waterscale Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133532','4','4','3','47035','9','5','128','70','0','Gleaming Earthen Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133533','4','4','3','47160','7','5','128','70','0','Avalanche Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133534','4','4','3','47034','10','5','128','70','0','Grips of Nature\'s Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133535','4','4','3','47035','9','5','128','70','0','Earthquake Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133536','4','4','3','46089','6','5','128','70','0','Stormwrap','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133537','4','4','3','47041','8','5','128','70','0','Treads of Booming Thunder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133538','4','4','2','47045','7','8','128','70','0','Shallow-grave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133539','4','4','2','47044','10','8','128','70','0','Trickster\'s Stickyfingers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133540','4','4','2','47043','9','8','128','70','0','Master Assassin Wristwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133552','4','4','2','47049','7','8','128','70','0','Pants of Splendid Recovery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133557','4','4','2','45753','9','8','128','70','0','Gargon\'s Bracers of Peaceful Slumber','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133559','4','4','2','46105','6','8','128','70','0','Starfire Waistband','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133566','4','4','2','47050','5','8','128','70','0','Blessed Elunite Coverings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133577','4','4','2','47054','8','8','128','70','0','Moon-walkers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133578','4','4','2','47055','9','8','128','70','0','Armwraps of the Kaldorei Protector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133579','4','4','2','47056','5','8','128','70','0','Vestments of Hibernation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133580','4','4','2','47057','9','8','128','70','0','Band of the Swift Paw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133582','4','4','2','49057','8','8','128','70','0','Footwraps of Wild Encroachment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133583','4','4','2','47060','6','8','128','70','0','Waistguard of the Great Beast','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133584','4','4','1','47061','7','7','128','70','0','Pantaloons of Arcane Annihilation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133585','4','4','1','48224','7','7','128','70','0','Achromic Trousers of the Naaru','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133586','4','4','1','48227','10','7','128','70','0','Studious Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133587','4','4','1','48226','10','7','128','70','0','Light-Blessed Bonds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133588','4','4','1','47062','9','7','128','70','0','Runed Spell-cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133589','4','4','1','47065','9','7','128','70','0','Wristguards of Tranquil Thought','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133590','4','4','1','47067','16','7','128','70','0','Cloak of Fiends','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133591','4','4','1','47068','16','7','128','70','0','Shadowcaster\'s Drape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133592','4','4','1','42615','16','7','128','70','0','Cloak of Ancient Rituals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133593','4','4','1','47069','16','7','128','70','0','Slikk\'s Cloak of Placation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133640','4','2','13','47175','22','1','132','70','7','Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133661','4','4','6','42376','14','1','146','70','4','Vengeful Gladiator\'s Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133662','4','2','4','47606','22','1','146','70','3','Vengeful Gladiator\'s Bonecracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133663','4','2','5','47742','17','1','146','70','1','Vengeful Gladiator\'s Bonegrinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133664','4','4','3','46880','5','5','146','70','0','Vengeful Gladiator\'s Chain Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133665','4','4','3','46883','10','5','146','70','0','Vengeful Gladiator\'s Chain Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133666','4','4','3','47951','1','5','146','70','0','Vengeful Gladiator\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133667','4','4','3','46882','7','5','146','70','0','Vengeful Gladiator\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133668','4','4','3','46881','3','5','146','70','0','Vengeful Gladiator\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133669','4','2','0','46962','13','1','146','70','3','Vengeful Gladiator\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133670','4','2','1','47732','17','1','146','70','1','Vengeful Gladiator\'s Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133671','4','4','2','46941','10','8','146','70','0','Vengeful Gladiator\'s Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133672','4','4','2','48262','1','8','146','70','0','Vengeful Gladiator\'s Dragonhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133673','4','4','2','46946','7','8','146','70','0','Vengeful Gladiator\'s Dragonhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133674','4','4','2','46944','3','8','146','70','0','Vengeful Gladiator\'s Dragonhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133675','4','4','2','46945','5','8','146','70','0','Vengeful Gladiator\'s Dragonhide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133676','4','4','1','48285','10','7','146','70','0','Vengeful Gladiator\'s Dreadweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133677','4','4','1','46871','1','7','146','70','0','Vengeful Gladiator\'s Dreadweave Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133678','4','4','1','46872','7','7','146','70','0','Vengeful Gladiator\'s Dreadweave Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133679','4','4','1','46876','3','7','146','70','0','Vengeful Gladiator\'s Dreadweave Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133680','4','4','1','46873','20','7','146','70','0','Vengeful Gladiator\'s Dreadweave Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133681','4','4','0','39505','23','3','146','70','7','Vengeful Gladiator\'s Endgame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133682','4','4','1','46876','3','7','146','70','0','Vengeful Gladiator\'s Felweave Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133683','4','4','1','46871','1','7','146','70','0','Vengeful Gladiator\'s Felweave Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133684','4','4','1','48285','10','7','146','70','0','Vengeful Gladiator\'s Felweave Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133685','4','4','1','46873','20','7','146','70','0','Vengeful Gladiator\'s Felweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133686','4','4','1','46872','7','7','146','70','0','Vengeful Gladiator\'s Felweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133687','4','2','4','47740','21','1','146','70','3','Vengeful Gladiator\'s Gavel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133688','4','2','8','46900','17','1','146','70','1','Vengeful Gladiator\'s Greatsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133689','4','2','0','46962','22','1','146','70','3','Vengeful Gladiator\'s Hacker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133690','4','4','2','46941','10','8','146','70','0','Vengeful Gladiator\'s Kodohide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133691','4','4','2','48261','1','8','146','70','0','Vengeful Gladiator\'s Kodohide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133692','4','4','2','46946','7','8','146','70','0','Vengeful Gladiator\'s Kodohide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133693','4','4','2','46944','3','8','146','70','0','Vengeful Gladiator\'s Kodohide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133694','4','4','2','46945','5','8','146','70','0','Vengeful Gladiator\'s Kodohide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133695','4','4','4','47949','5','6','146','70','0','Vengeful Gladiator\'s Lamellar Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133696','4','4','4','46949','10','6','146','70','0','Vengeful Gladiator\'s Lamellar Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133697','4','4','4','47759','1','6','146','70','0','Vengeful Gladiator\'s Lamellar Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133698','4','4','4','46951','7','6','146','70','0','Vengeful Gladiator\'s Lamellar Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133699','4','4','4','46953','3','6','146','70','0','Vengeful Gladiator\'s Lamellar Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133700','4','4','2','46940','10','8','146','70','0','Vengeful Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133701','4','4','2','47825','1','8','146','70','0','Vengeful Gladiator\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133702','4','4','2','46937','7','8','146','70','0','Vengeful Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133703','4','4','2','46938','3','8','146','70','0','Vengeful Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133704','4','4','2','46939','5','8','146','70','0','Vengeful Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133705','4','2','13','46967','22','1','146','70','7','Vengeful Gladiator\'s Left Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133706','4','4','3','46891','20','5','146','70','0','Vengeful Gladiator\'s Linked Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133707','4','4','3','46892','10','5','146','70','0','Vengeful Gladiator\'s Linked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133708','4','4','3','46894','1','5','146','70','0','Vengeful Gladiator\'s Linked Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133709','4','4','3','46895','7','5','146','70','0','Vengeful Gladiator\'s Linked Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133710','4','4','3','46890','3','5','146','70','0','Vengeful Gladiator\'s Linked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133711','4','4','3','46891','20','5','146','70','0','Vengeful Gladiator\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133712','4','4','3','46892','10','5','146','70','0','Vengeful Gladiator\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133713','4','4','3','46894','1','5','146','70','0','Vengeful Gladiator\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133714','4','4','3','46895','7','5','146','70','0','Vengeful Gladiator\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133715','4','4','3','46890','3','5','146','70','0','Vengeful Gladiator\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133716','4','2','10','47744','17','1','146','70','2','Vengeful Gladiator\'s Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133717','4','4','1','46932','10','7','146','70','0','Vengeful Gladiator\'s Mooncloth Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133718','4','4','1','48113','1','7','146','70','0','Vengeful Gladiator\'s Mooncloth Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133719','4','4','1','46925','7','7','146','70','0','Vengeful Gladiator\'s Mooncloth Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133720','4','4','1','46926','3','7','146','70','0','Vengeful Gladiator\'s Mooncloth Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133721','4','4','1','46927','20','7','146','70','0','Vengeful Gladiator\'s Mooncloth Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133722','4','4','4','47949','5','6','146','70','0','Vengeful Gladiator\'s Ornamented Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133723','4','4','4','46949','10','6','146','70','0','Vengeful Gladiator\'s Ornamented Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133724','4','4','4','47759','1','6','146','70','0','Vengeful Gladiator\'s Ornamented Headcover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133725','4','4','4','46951','7','6','146','70','0','Vengeful Gladiator\'s Ornamented Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133726','4','4','4','46953','3','6','146','70','0','Vengeful Gladiator\'s Ornamented Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133727','4','2','6','40368','17','1','146','70','1','Vengeful Gladiator\'s Painsaw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133728','4','4','4','46867','5','6','146','70','0','Vengeful Gladiator\'s Plate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133729','4','4','4','46868','10','6','146','70','0','Vengeful Gladiator\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133730','4','4','4','49686','1','6','146','70','0','Vengeful Gladiator\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133731','4','4','4','46866','7','6','146','70','0','Vengeful Gladiator\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133732','4','4','4','46865','3','6','146','70','0','Vengeful Gladiator\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133733','4','2','4','47606','13','1','146','70','3','Vengeful Gladiator\'s Pummeler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133734','4','2','7','46970','22','1','146','70','3','Vengeful Gladiator\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133735','4','4','6','42376','14','1','146','70','4','Vengeful Gladiator\'s Redoubt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133736','4','4','0','39505','23','3','146','70','7','Vengeful Gladiator\'s Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133737','4','2','13','46966','21','1','146','70','7','Vengeful Gladiator\'s Right Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133738','4','4','3','46891','20','5','146','70','0','Vengeful Gladiator\'s Ringmail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133739','4','4','3','46892','10','5','146','70','0','Vengeful Gladiator\'s Ringmail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133740','4','4','3','46894','1','5','146','70','0','Vengeful Gladiator\'s Ringmail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133741','4','4','3','46895','7','5','146','70','0','Vengeful Gladiator\'s Ringmail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133742','4','4','3','46890','3','5','146','70','0','Vengeful Gladiator\'s Ringmail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133743','4','2','4','47740','21','1','146','70','3','Vengeful Gladiator\'s Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133744','4','4','1','46932','10','7','146','70','0','Vengeful Gladiator\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133745','4','4','1','48113','1','7','146','70','0','Vengeful Gladiator\'s Satin Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133746','4','4','1','46925','7','7','146','70','0','Vengeful Gladiator\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133747','4','4','1','46926','3','7','146','70','0','Vengeful Gladiator\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133748','4','4','1','46927','20','7','146','70','0','Vengeful Gladiator\'s Satin Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133749','4','4','4','47949','5','6','146','70','0','Vengeful Gladiator\'s Scaled Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133750','4','4','4','46949','10','6','146','70','0','Vengeful Gladiator\'s Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133751','4','4','4','47759','1','6','146','70','0','Vengeful Gladiator\'s Scaled Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133752','4','4','4','46951','7','6','146','70','0','Vengeful Gladiator\'s Scaled Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133753','4','4','4','46953','3','6','146','70','0','Vengeful Gladiator\'s Scaled Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133754','4','2','15','47733','13','1','146','70','3','Vengeful Gladiator\'s Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133755','4','4','6','42376','14','1','146','70','4','Vengeful Gladiator\'s Shield Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133756','4','2','15','47733','22','1','146','70','3','Vengeful Gladiator\'s Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133757','4','4','1','46928','3','7','146','70','0','Vengeful Gladiator\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133758','4','4','1','47799','1','7','146','70','0','Vengeful Gladiator\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133759','4','4','1','46930','10','7','146','70','0','Vengeful Gladiator\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133760','4','4','1','46931','20','7','146','70','0','Vengeful Gladiator\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133761','4','4','1','46933','7','7','146','70','0','Vengeful Gladiator\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133762','4','2','7','46970','13','1','146','70','3','Vengeful Gladiator\'s Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133763','4','2','15','46973','21','1','146','70','3','Vengeful Gladiator\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133764','4','2','19','46606','26','2','146','70','0','Vengeful Gladiator\'s Touch of Defeat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133765','4','2','16','38679','25','1','146','70','0','Vengeful Gladiator\'s War Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133766','4','2','10','47743','17','2','146','70','2','Vengeful Gladiator\'s War Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133767','4','4','2','46941','10','8','146','70','0','Vengeful Gladiator\'s Wyrmhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133768','4','4','2','48262','1','8','146','70','0','Vengeful Gladiator\'s Wyrmhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133769','4','4','2','46946','7','8','146','70','0','Vengeful Gladiator\'s Wyrmhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133770','4','4','2','46944','3','8','146','70','0','Vengeful Gladiator\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133771','4','4','2','46945','5','8','146','70','0','Vengeful Gladiator\'s Wyrmhide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133791','2','2','7','46839','13','1','11','6','1','Heavy Copper Longsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133801','4','2','15','47733','22','1','146','70','3','Vengeful Gladiator\'s Mutilator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133805','4','4','3','47004','8','5','128','70','0','Shadowhunter\'s Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133808','4','4','4','51920','1','8','110','70','0','The Horseman\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133810','4','4','4','47019','1','-1','128','70','0','Amani Mask of Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133811','4','4','4','47047','6','6','146','70','0','Vindicator\'s Plate Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133812','4','4','4','44735','8','6','146','70','0','Vindicator\'s Plate Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133813','4','4','4','47092','9','6','141','70','0','Vindicator\'s Plate Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133820','3','4','1','47051','1','7','115','70','0','Weather-Beaten Fishing Hat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133828','4','4','0','47091','12','4','133','70','0','Tome of Diabolic Remedy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133829','4','4','0','47093','12','4','133','70','0','Hex Shrunken Head','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133830','4','4','0','35439','12','4','133','70','0','Ancient Aqir Artifact','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133831','4','4','0','47094','12','4','133','70','0','Berserker\'s Call','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133832','4','4','0','47095','12','4','133','70','0','Battlemaster\'s Determination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133841','4','4','8','9659','28','2','146','70','0','Vengeful Gladiator\'s Idol of Tenacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133842','4','4','7','1103','28','2','146','70','0','Vengeful Gladiator\'s Libram of Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133843','4','4','9','46045','28','2','146','70','0','Vengeful Gladiator\'s Totem of the Third Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133853','4','4','0','39129','11','5','141','70','0','Vindicator\'s Band of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133855','0','4','0','26001','11','5','1','0','0','Tarnished Silver Ring','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133862','1','4','0','47130','20','-1','1','0','0','Brewfest Regalia','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133863','1','4','0','47220','20','-1','1','0','0','Brewfest Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133864','1','4','0','47255','1','-1','1','0','0','Brown Brewfest Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133868','1','4','0','51758','8','-1','1','0','0','Brewfest Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133876','4','4','3','47405','9','5','141','70','0','Vindicator\'s Chain Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133877','4','4','3','47406','6','5','146','70','0','Vindicator\'s Chain Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133878','4','4','3','47408','8','5','146','70','0','Vindicator\'s Chain Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133879','4','4','2','47409','6','8','146','70','0','Vindicator\'s Dragonhide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133880','4','4','2','47428','8','8','146','70','0','Vindicator\'s Dragonhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133881','4','4','2','47411','9','8','141','70','0','Vindicator\'s Dragonhide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133882','4','4','1','47412','6','7','146','70','0','Vindicator\'s Dreadweave Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133883','4','4','1','47413','9','7','141','70','0','Vindicator\'s Dreadweave Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133884','4','4','1','47414','8','7','146','70','0','Vindicator\'s Dreadweave Stalkers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133885','4','4','2','47409','6','8','146','70','0','Vindicator\'s Kodohide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133886','4','4','2','47428','8','8','146','70','0','Vindicator\'s Kodohide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133887','4','4','2','47411','9','8','141','70','0','Vindicator\'s Kodohide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133888','4','4','4','47415','6','6','146','70','0','Vindicator\'s Lamellar Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133889','4','4','4','47416','9','6','141','70','0','Vindicator\'s Lamellar Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133890','4','4','4','47417','8','6','146','70','0','Vindicator\'s Lamellar Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133891','4','4','2','47900','6','8','146','70','0','Vindicator\'s Leather Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133892','4','4','2','47403','8','8','146','70','0','Vindicator\'s Leather Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133893','4','4','2','46057','9','8','141','70','0','Vindicator\'s Leather Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133894','4','4','3','47418','9','5','141','70','0','Vindicator\'s Linked Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133895','4','4','3','47419','6','5','146','70','0','Vindicator\'s Linked Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133896','4','4','3','47420','8','5','146','70','0','Vindicator\'s Linked Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133897','4','4','3','47418','9','5','141','70','0','Vindicator\'s Mail Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133898','4','4','3','47419','6','5','146','70','0','Vindicator\'s Mail Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133899','4','4','3','47420','8','5','146','70','0','Vindicator\'s Mail Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133900','4','4','1','47421','6','7','146','70','0','Vindicator\'s Mooncloth Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133901','4','4','1','47422','9','7','141','70','0','Vindicator\'s Mooncloth Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133902','4','4','1','47423','8','7','146','70','0','Vindicator\'s Mooncloth Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133903','4','4','4','47415','6','6','146','70','0','Vindicator\'s Ornamented Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133904','4','4','4','47416','9','6','141','70','0','Vindicator\'s Ornamented Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133905','4','4','4','47417','8','6','146','70','0','Vindicator\'s Ornamented Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133906','4','4','3','47418','9','5','141','70','0','Vindicator\'s Ringmail Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133907','4','4','3','47419','6','5','146','70','0','Vindicator\'s Ringmail Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133908','4','4','3','47420','8','5','146','70','0','Vindicator\'s Ringmail Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133909','4','4','4','47415','6','6','146','70','0','Vindicator\'s Scaled Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133910','4','4','4','47416','9','6','141','70','0','Vindicator\'s Scaled Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133911','4','4','4','47417','8','6','146','70','0','Vindicator\'s Scaled Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133912','4','4','1','47425','6','7','146','70','0','Vindicator\'s Silk Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133913','4','4','1','47426','9','7','141','70','0','Vindicator\'s Silk Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133914','4','4','1','47427','8','7','146','70','0','Vindicator\'s Silk Footguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133915','4','4','2','47409','6','8','146','70','0','Vindicator\'s Wyrmhide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133916','4','4','2','47428','8','8','146','70','0','Vindicator\'s Wyrmhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133917','4','4','2','47411','9','8','141','70','0','Vindicator\'s Wyrmhide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133918','4','4','0','39129','11','5','141','70','0','Vindicator\'s Band of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133919','4','4','0','39129','11','5','141','70','0','Vindicator\'s Band of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133920','4','4','0','39162','2','5','141','70','0','Vindicator\'s Pendant of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133921','4','4','0','39162','2','5','141','70','0','Vindicator\'s Pendant of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133922','4','4','0','39162','2','5','141','70','0','Vindicator\'s Pendant of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133923','4','4','0','39162','2','5','141','70','0','Vindicator\'s Pendant of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133936','4','4','7','34960','28','2','115','70','0','Gladiator\'s Libram of Fortitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133937','4','4','7','34960','28','2','136','70','0','Merciless Gladiator\'s Libram of Fortitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133938','4','4','7','34960','28','2','146','70','0','Vengeful Gladiator\'s Libram of Fortitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133939','4','4','9','25246','28','2','115','70','0','Gladiator\'s Totem of Indomitability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133940','4','4','9','25246','28','2','136','70','0','Merciless Gladiator\'s Totem of Indomitability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133941','4','4','9','25246','28','2','146','70','0','Vengeful Gladiator\'s Totem of Indomitability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133942','4','4','8','34953','28','2','115','70','0','Gladiator\'s Idol of Steadfastness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133943','4','4','8','34953','28','2','136','70','0','Merciless Gladiator\'s Idol of Steadfastness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133944','4','4','8','34953','28','2','146','70','0','Vengeful Gladiator\'s Idol of Steadfastness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133945','4','4','8','34953','28','2','115','70','0','Gladiator\'s Idol of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133946','4','4','8','34953','28','2','136','70','0','Merciless Gladiator\'s Idol of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133947','4','4','8','34953','28','2','146','70','0','Vengeful Gladiator\'s Idol of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133948','4','4','7','34960','28','2','115','70','0','Gladiator\'s Libram of Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133949','4','4','7','34960','28','2','136','70','0','Merciless Gladiator\'s Libram of Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133950','4','4','7','34960','28','2','146','70','0','Vengeful Gladiator\'s Libram of Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133951','4','4','9','25246','28','2','115','70','0','Gladiator\'s Totem of Survival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133952','4','4','9','25246','28','2','136','70','0','Merciless Gladiator\'s Totem of Survival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133953','4','4','9','25246','28','2','146','70','0','Vengeful Gladiator\'s Totem of Survival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133957','4','4','0','47144','11','3','110','70','0','Witches Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133959','4','4','0','47144','11','3','110','70','0','Ring of Ghoulish Delight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133964','4','4','3','47037','1','5','128','70','0','Helm of the Stormcaller','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133965','4','4','3','46995','5','5','128','70','0','Hauberk of the Furious Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133966','1','4','0','47221','8','-1','1','0','0','Brewfest Slippers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133967','1','4','0','47170','1','-1','1','0','0','Green Brewfest Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133968','1','4','0','47254','1','-1','1','0','0','Blue Brewfest Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133969','1','4','0','47256','1','-1','1','0','0','Purple Brewfest Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133970','4','4','3','46990','3','5','128','70','0','Pauldrons of the Furious Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133971','4','4','2','47049','7','8','128','70','0','Elunite Imbued Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133972','4','4','2','46983','1','8','128','70','0','Mask of Primal Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133973','4','4','2','46803','3','8','128','70','0','Pauldrons of Tribal Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133974','4','4','2','47171','10','8','128','70','0','Grasp of the Moonkin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133987','4','4','0','26537','11','5','130','70','0','Indalamar\'s Ring of 200 Spell Crit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('133997','4','4','0','26537','11','5','130','70','0','Indalamar\'s Ring of 400 Attack Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134000','1','4','0','50842','1','-1','1','0','0','Flimsy Female Blood Elf Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134001','1','4','0','50845','1','-1','1','0','0','Flimsy Female Draenei Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134002','1','4','0','50843','1','-1','1','0','0','Flimsy Male Blood Elf Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134003','1','4','0','50844','1','-1','1','0','0','Flimsy Male Draenei Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134008','1','4','0','45840','1','-1','10','0','0','Blix\'s Eyesight Enhancing Romance Goggles','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134009','4','2','4','47248','21','1','141','70','3','Hammer of Judgement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134010','4','4','1','47249','16','7','141','70','0','Pepe\'s Shroud of Pacification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134011','4','4','6','47250','14','6','141','70','4','Illidari Runeshield','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134012','4','4','1','47252','16','7','141','70','0','Shroud of the Final Stand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134014','4','2','1','47771','17','1','146','70','1','Vengeful Gladiator\'s Waraxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134015','4','2','0','46962','22','1','146','70','3','Vengeful Gladiator\'s Chopper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134016','4','2','13','46967','22','1','146','70','7','Vengeful Gladiator\'s Left Render','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134029','4','4','0','47330','12','-1','128','70','0','Tiny Voodoo Mask','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134033','4','4','0','39505','23','3','146','70','7','Vengeful Gladiator\'s Grimoire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134049','4','4','0','47294','12','4','133','70','0','Battlemaster\'s Audacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134050','4','4','0','47696','12','4','133','70','0','Battlemaster\'s Perseverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134059','4','2','19','46606','26','2','146','70','0','Vengeful Gladiator\'s Baton of Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134066','4','2','19','46606','26','2','146','70','0','Vengeful Gladiator\'s Piercing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134073','4','4','0','47325','11','3','110','70','0','The Horseman\'s Signet Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134074','4','4','0','47325','11','3','110','70','0','Witches Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134075','4','4','0','47325','11','3','110','70','0','Ring of Ghoulish Delight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134085','1','4','1','48130','20','7','1','0','0','Red Winter Clothes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134086','1','4','1','47629','8','8','1','0','0','Winter Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134087','1','4','1','48131','20','7','1','0','0','Green Winter Clothes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134107','3','4','1','47454','3','8','21','16','0','Tattered Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134138','3','2','19','47487','26','2','175','75','0','Enchanted White Wand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134139','3','2','19','47488','26','2','175','75','0','Enchanted Crimson Wand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134140','3','4','0','47492','23','2','59','0','7','Dark Iron Tankard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134144','4','2','19','47488','26','2','175','80','0','Branch of Destruction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134145','4','2','19','55480','26','2','190','80','0','Rod of Devastation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134146','4','2','19','47488','26','2','210','80','0','Red Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134147','4','2','19','47487','26','2','175','80','0','Silverstave','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134148','4','2','19','47487','26','2','190','80','0','Purified Silverstave','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134149','4','2','19','47487','26','2','210','80','0','Lightstave','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134158','1','4','0','44439','19','7','1','0','0','Team A Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134162','4','4','0','47521','12','4','133','70','0','Battlemaster\'s Depravity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134163','4','4','0','47522','12','4','133','70','0','Battlemaster\'s Cruelty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134164','4','2','7','48078','13','1','154','70','1','Dragonscale-Encrusted Longblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134165','4','2','15','49970','13','1','154','70','3','Fang of Kalecgos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134166','4','4','0','39123','11','3','154','70','0','Band of Lucent Beams','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134167','4','4','4','47988','7','1','159','70','0','Legplates of the Holy Juggernaut','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134168','4','4','3','47990','7','5','159','70','0','Starstalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134169','4','4','2','47975','7','8','159','70','0','Breeches of Natural Aggression','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134170','4','4','1','48295','7','7','159','70','0','Pantaloons of Calming Strife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134176','4','2','4','47992','21','1','154','70','3','Reign of Misery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134177','4','4','0','48511','2','3','154','70','0','Clutch of Demise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134178','4','4','0','48507','2','4','154','70','0','Collar of the Pit Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134179','4','4','0','48894','23','3','154','70','0','Heart of the Pit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134180','4','4','4','47991','7','1','159','70','0','Felfury Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134181','4','4','1','48296','7','7','159','70','0','Leggings of Calamity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134182','4','2','10','49132','17','2','154','70','2','Grand Magister\'s Staff of Torrents','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134183','4','2','6','47996','17','1','154','70','1','Shivering Felspine','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134184','4','4','0','48509','2','4','154','70','0','Brooch of the Highborne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134185','4','4','6','48907','14','6','154','70','4','Sword Breaker\'s Bulwark','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134186','4','4','3','47993','7','5','159','70','0','Chain Links of the Tumultuous Storm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134187','1','4','0','47526','1','0','1','0','0','Dragon Skull','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134188','4','4','2','47995','7','8','159','70','0','Leggings of the Immortal Night','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134189','4','4','0','31655','11','3','154','70','0','Band of Ruinous Delight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134190','4','4','1','48869','16','7','154','70','0','Crimson Paragon\'s Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134192','4','4','4','50016','3','1','159','70','0','Pauldrons of Perseverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134193','4','4','4','50017','3','1','159','70','0','Spaulders of the Thalassian Savior','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134194','4','4','3','47998','3','5','159','70','0','Mantle of the Golden Forest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134195','4','4','2','47999','3','8','159','70','0','Shoulderpads of Vehemence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134196','4','2','2','48294','15','1','154','70','0','Golden Bow of Quel\'Thalas','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134197','4','2','15','49971','13','1','154','70','3','Shiv of Exsanguination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134198','4','2','10','48290','17','2','154','70','2','Stanchion of Primal Instinct','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134199','4','2','4','48908','21','1','154','70','3','Archon\'s Gavel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134202','4','4','1','50013','3','7','159','70','0','Shawl of Wonderment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134203','4','2','13','48002','22','1','154','70','7','Grip of Mannoroth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134204','4','4','0','48512','2','3','154','70','0','Amulet of Unfettered Magics','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134205','4','4','1','48870','16','7','154','70','0','Shroud of Redeemed Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134206','4','4','0','48895','23','3','154','70','0','Book of Highborne Hymns','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134208','4','4','3','48004','3','5','159','70','0','Equilibrium Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134209','4','4','2','48005','3','8','159','70','0','Spaulders of Reclamation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134210','4','4','1','50012','3','7','159','70','0','Amice of the Convoker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134211','4','4','2','48011','5','8','159','70','0','Harness of Carnal Instinct','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134212','4','4','2','48012','5','7','159','70','0','Sunglow Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134213','4','4','0','45948','11','3','154','70','0','Ring of Hardened Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134214','4','2','7','48079','13','1','154','70','3','Muramasa','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134215','4','4','4','48015','5','1','159','70','0','Warharness of Reckless Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134216','4','4','4','48016','5','1','159','70','0','Heroic Judicator\'s Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134227','4','4','0','43407','11','1','36','29','0','Deadman\'s Hand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134228','4','4','3','48014','5','5','159','70','0','Vicious Hawkstrider Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134229','4','4','3','48013','5','5','159','70','0','Garments of Serene Shores','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134230','4','4','0','44358','11','3','154','70','0','Ring of Omnipotence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134231','4','4','6','48906','14','6','154','70','4','Aegis of Angelic Fortune','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134232','4','4','1','48299','20','7','159','70','0','Fel Conquerer Raiments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134233','4','4','1','48300','20','7','154','70','0','Robes of Faltered Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134234','4','4','2','48018','10','8','159','70','0','Shadowed Gauntlets of Paroxysm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134240','4','4','4','48905','10','1','159','70','0','Gauntlets of the Soothed Soul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134241','4','4','1','48868','16','7','164','70','0','Cloak of Unforgivable Sin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134242','4','4','1','48871','16','7','164','70','0','Tattered Cape of Antonidas','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134243','4','4','4','48022','1','-1','164','70','0','Helm of Burning Righteousness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134244','4','4','2','48020','1','8','164','70','0','Duplicitous Guise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134245','4','4','2','48019','1','8','164','70','0','Cover of Ursol the Wise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134247','4','2','8','48023','17','1','164','70','1','Apolyon, the Soul-Render','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134249','1','4','0','47772','2','-1','70','0','0','Hula Girl Doll','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134329','4','2','15','48026','13','1','164','70','3','Crux of the Apocalypse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134331','4','2','13','48028','21','1','164','70','7','Hand of the Deceiver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134332','4','4','3','48025','1','5','164','70','0','Cowl of Gul\'dan','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134333','4','4','3','48024','1','5','164','70','0','Coif of Alleria','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134334','5','2','2','48902','15','1','164','70','0','Thori\'dal, the Stars\' Fury','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134335','4','2','4','48029','21','1','164','70','3','Hammer of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134336','4','2','15','48031','21','1','164','70','3','Sunflare','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134337','4','2','10','48030','17','2','164','70','2','Golden Staff of the Sin\'dorei','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134339','4','4','1','50018','1','7','164','70','0','Cowl of Light\'s Purity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134340','4','4','1','50019','1','7','164','70','0','Dark Conjuror\'s Collar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134341','4','4','4','48032','10','1','164','70','0','Borderland Paingrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134342','4','4','1','48305','10','7','164','70','0','Handguards of the Dawn','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134343','4','4','3','48034','10','5','164','70','0','Thalassian Ranger Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134344','4','4','1','48306','10','7','164','70','0','Handguards of Defiled Worlds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134345','4','4','4','48033','1','-1','164','70','0','Crown of Anasterian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134346','4','2','13','48038','22','1','154','70','7','Mounting Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134347','4','2','19','48040','26','2','154','70','0','Wand of the Demonsoul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134348','4','2','19','48042','26','2','154','70','0','Wand of Cleansing Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134349','4','2','16','48035','25','1','154','70','0','Blade of Life\'s Inevitability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134350','4','4','3','48037','10','5','154','70','0','Gauntlets of the Ancient Shadowmoon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134351','4','4','2','48039','10','8','154','70','0','Tranquil Majesty Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134352','4','4','4','48036','10','1','156','70','0','Borderland Fortress Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134353','4','4','2','44949','1','7','159','70','0','Quad Deathblow X44 Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134354','4','4','4','45779','1','7','159','70','0','Mayhem Projection Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134355','4','4','3','45778','1','7','159','70','0','Lightning Etched Specs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134356','4','4','3','45783','1','7','159','70','0','Surestrike Goggles v3.0','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134357','4','4','4','43886','1','7','159','70','0','Hard Khorium Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134358','4','4','0','39214','2','3','159','70','0','Hard Khorium Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134359','4','4','0','45351','2','3','159','70','0','Pendant of Sunfire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134360','4','4','0','45351','2','3','159','70','0','Amulet of Flowing Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134361','4','4','0','39126','11','3','159','70','0','Hard Khorium Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134362','4','4','0','31616','11','3','159','70','0','Loop of Forged Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134363','4','4','0','31616','11','3','159','70','0','Ring of Flowing Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134364','4','4','1','48925','20','7','159','70','0','Sunfire Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134365','4','4','1','48921','20','7','159','70','0','Robe of Eternal Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134366','4','4','1','48923','10','7','159','70','0','Sunfire Handwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134367','4','4','1','48920','10','7','159','70','0','Hands of Eternal Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134369','4','4','2','48912','5','8','159','70','0','Carapace of Sun and Shadow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134370','4','4','2','48018','10','8','159','70','0','Gloves of Immortal Dusk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134371','4','4','2','48916','5','7','159','70','0','Leather Chestguard of the Sun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134372','4','4','2','48917','10','8','159','70','0','Leather Gauntlets of the Sun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134373','4','4','3','48913','5','5','159','70','0','Embrace of the Phoenix','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134374','4','4','3','48914','10','5','159','70','0','Fletcher\'s Gloves of the Phoenix','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134375','4','4','3','48918','5','5','159','70','0','Sun-Drenched Scale Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134376','4','4','3','48919','10','5','159','70','0','Sun-Drenched Scale Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134377','4','4','4','48927','5','1','159','70','0','Hard Khorium Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134378','4','4','4','48926','10','1','159','70','0','Hard Khorium Battlefists','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134379','4','4','4','48928','5','1','159','70','0','Sunblessed Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134380','4','4','4','48905','10','1','159','70','0','Sunblessed Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134381','4','4','4','48043','7','1','159','70','0','Felstrength Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134382','4','4','4','48045','7','1','159','70','0','Judicator\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134383','4','4','3','48050','7','5','159','70','0','Kilt of Spiritual Reconstruction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134384','4','4','2','47975','7','8','159','70','0','Breeches of Natural Splendor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134385','4','4','2','47975','7','8','159','70','0','Leggings of the Immortal Beast','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134386','4','4','1','48307','7','7','159','70','0','Pantaloons of Growing Strife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134388','4','4','4','50015','3','6','159','70','0','Pauldrons of Berserking','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134389','4','4','4','50017','3','1','159','70','0','Spaulders of the Thalassian Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134390','4','4','3','48004','3','5','159','70','0','Erupting Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134391','4','4','2','48005','3','8','159','70','0','Spaulders of Devastation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134392','4','4','2','48052','3','8','159','70','0','Demontooth Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134393','4','4','1','50014','3','7','159','70','0','Shoulderpads of Knowledge\'s Pursuit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134394','4','4','4','48015','5','1','159','70','0','Breastplate of Agony\'s Aversion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134395','4','4','4','48053','5','1','159','70','0','Noble Judicator\'s Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134396','4','4','3','48013','5','5','159','70','0','Garments of Crashing Shores','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134397','4','4','2','48054','5','8','159','70','0','Bladed Chaos Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134398','4','4','2','48055','5','7','159','70','0','Utopian Tunic of Elune','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134399','4','4','1','48384','20','7','159','70','0','Robes of Ghostly Hatred','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134400','4','4','4','48058','1','1','159','70','0','Crown of Dath\'Remar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134401','4','4','4','48057','1','1','159','70','0','Helm of Uther\'s Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134402','4','4','3','48025','1','5','159','70','0','Shroud of Chieftain Ner\'zhul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134403','4','4','2','48019','1','8','159','70','0','Cover of Ursoc the Mighty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134404','4','4','2','48019','1','8','159','70','0','Mask of the Fury Hunter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134405','4','4','1','50020','1','7','164','70','0','Helm of Arcane Purity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134406','4','4','1','48387','10','7','164','70','0','Gloves of Tyri\'s Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134407','4','4','2','48059','10','8','154','70','0','Tranquil Moonlight Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134408','4','4','2','48059','10','8','159','70','0','Gloves of the Forest Drifter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134409','4','4','3','48060','10','5','159','70','0','Gauntlets of the Ancient Frostwolf','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134415','3','4','6','25134','14','1','50','0','4','Crystaline Shard Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134416','3','4','1','18999','10','7','46','0','0','Gloves of the Dune','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134417','3','4','2','28688','10','8','46','0','0','Marauder\'s Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134418','3','2','19','47699','26','2','50','0','0','Scrying Wand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134419','3','2','16','26358','25','1','50','0','0','Thorium Flight Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134421','3','4','3','28439','8','5','50','0','0','Cave Crawler\'s Mail Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134422','3','4','4','34708','8','6','50','0','0','Tempered Thorium Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134423','3','4','0','47700','12','-1','59','0','0','Strength of the High Chief','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134424','3','4','0','47701','12','-1','59','0','0','Power of the High Chief','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134427','4','4','0','48503','12','4','154','70','0','Blackened Naaru Sliver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134428','4','4','0','48506','12','4','154','70','0','Steely Naaru Sliver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134429','4','4','0','48505','12','4','154','70','0','Shifting Naaru Sliver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134430','4','4','0','48504','12','4','154','70','0','Glimmering Naaru Sliver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134431','4','4','4','48313','9','1','154','70','0','Lightbringer Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134432','4','4','4','48312','9','1','154','70','0','Lightbringer Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134433','4','4','4','48314','9','1','154','70','0','Lightbringer Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134434','4','4','1','48321','9','7','154','70','0','Bracers of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134435','4','4','1','48321','9','7','154','70','0','Cuffs of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134436','4','4','1','48349','9','7','154','70','0','Bracers of the Malefic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134437','4','4','3','48325','9','5','154','70','0','Skyshatter Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134438','4','4','3','48325','9','5','154','70','0','Skyshatter Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134439','4','4','3','48326','9','5','154','70','0','Skyshatter Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134441','4','4','4','48347','9','1','154','70','0','Onslaught Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134442','4','4','4','48348','9','1','154','70','0','Onslaught Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134443','4','4','3','48315','9','5','154','70','0','Gronnstalker\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134444','4','4','2','48311','9','8','154','70','0','Thunderheart Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134445','4','4','2','48322','9','8','154','70','0','Thunderheart Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134446','4','4','2','48322','9','8','154','70','0','Thunderheart Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134447','4','4','1','48316','9','7','154','70','0','Bracers of the Tempest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134448','4','4','2','48324','9','8','154','70','0','Slayer\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134470','4','4','0','48163','12','4','115','70','0','Timbal\'s Focusing Crystal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134471','4','4','0','48177','12','4','115','70','0','Vial of the Sunwell','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134472','4','4','0','48172','12','4','115','70','0','Shard of Contempt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134473','4','4','0','48158','12','4','115','70','0','Commendation of Kael\'thas','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134485','4','4','4','48355','6','1','154','70','0','Lightbringer Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134487','4','4','4','48355','6','1','154','70','0','Lightbringer Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134488','4','4','4','48355','6','1','154','70','0','Lightbringer Waistguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134527','4','4','1','48356','6','7','154','70','0','Belt of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134528','4','4','1','48356','6','7','154','70','0','Cord of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134529','4','2','2','43083','15','2','146','70','0','Vengeful Gladiator\'s Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134530','4','2','3','48183','26','1','146','70','0','Vengeful Gladiator\'s Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134540','4','2','10','47743','17','2','146','70','2','Vengeful Gladiator\'s Battle Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134541','4','4','1','48359','6','7','154','70','0','Belt of the Malefic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134542','4','4','3','48358','6','5','154','70','0','Skyshatter Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134543','4','4','3','48358','6','5','154','70','0','Skyshatter Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134545','4','4','3','48358','6','5','154','70','0','Skyshatter Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134546','4','4','4','48360','6','1','154','70','0','Onslaught Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134547','4','4','4','48361','6','1','154','70','0','Onslaught Waistguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134549','4','4','3','48353','6','5','154','70','0','Gronnstalker\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134554','4','4','2','48352','6','8','154','70','0','Thunderheart Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134555','4','4','2','48352','6','8','154','70','0','Thunderheart Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134556','4','4','2','48352','6','8','154','70','0','Thunderheart Waistguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134557','4','4','1','48354','6','7','154','70','0','Belt of the Tempest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134558','4','4','2','48357','6','5','154','70','0','Slayer\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134559','4','4','4','48366','8','1','154','70','0','Lightbringer Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134560','4','4','4','48366','8','1','154','70','0','Lightbringer Stompers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134561','4','4','4','48366','8','1','154','70','0','Lightbringer Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134562','4','4','1','48367','8','7','154','70','0','Boots of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134563','4','4','1','48368','8','7','154','70','0','Treads of Absolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134564','4','4','1','48371','8','7','154','70','0','Boots of the Malefic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134565','4','4','3','48370','8','5','154','70','0','Skyshatter Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134566','4','4','3','48370','8','5','154','70','0','Skyshatter Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134567','4','4','3','48370','8','5','154','70','0','Skyshatter Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134568','4','4','4','48372','8','1','154','70','0','Onslaught Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134569','4','4','4','48372','8','1','154','70','0','Onslaught Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134570','4','4','3','48364','8','5','154','70','0','Gronnstalker\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134571','4','4','2','48363','8','8','154','70','0','Thunderheart Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134572','4','4','2','48363','8','8','154','70','0','Thunderheart Footwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134573','4','4','2','48362','8','8','154','70','0','Thunderheart Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134574','4','4','1','48365','8','7','154','70','0','Boots of the Tempest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134575','4','4','2','48369','8','8','154','70','0','Slayer\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134576','4','4','0','47522','12','4','133','70','0','Battlemaster\'s Cruelty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134577','4','4','0','47521','12','4','133','70','0','Battlemaster\'s Depravity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134578','4','4','0','47095','12','4','133','70','0','Battlemaster\'s Determination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134579','4','4','0','47294','12','4','133','70','0','Battlemaster\'s Audacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134580','4','4','0','47696','12','4','133','70','0','Battlemaster\'s Perseverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134601','4','4','4','48174','3','1','115','70','0','Shoulderplates of Everlasting Pain','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134602','4','4','2','48164','9','8','115','70','0','Eversong Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134603','4','2','16','48157','25','1','115','70','0','Distracting Blades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134604','4','2','15','48166','21','1','115','70','3','Jaded Crystal Dagger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134605','4','4','4','48155','5','1','115','70','0','Breastplate of Fierce Survival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134606','4','2','15','48161','13','1','115','70','3','Edge of Oppression','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134607','4','4','1','48165','3','7','115','70','0','Fel-tinged Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134608','4','2','10','48170','17','2','115','70','2','Rod of the Blazing Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134609','4','2','7','48169','13','1','125','70','1','Quickening Blade of the Prince','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134610','4','4','1','48171','20','7','125','70','0','Scarlet Sin\'dorei Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134611','4','2','4','48159','21','1','125','70','3','Cudgel of Consecration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134612','4','4','4','42604','8','1','125','70','0','Greaves of the Penitent Knight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134613','4','4','2','48173','3','8','125','70','0','Shoulderpads of the Silvermoon Retainer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134614','4','4','3','48175','5','5','125','70','0','Tunic of the Ranger Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134615','4','4','4','48167','5','1','125','70','0','Netherforce Chestplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134616','4','2','0','48156','13','1','125','70','3','Breeching Comet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134622','4','2','16','47933','25','1','100','70','0','Spinesever','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134625','4','4','0','31906','11','3','110','70','0','Kharmaa\'s Ring of Fate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134648','2','4','4','51496','8','6','60','55','0','Acherus Knight\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134649','2','4','4','51498','10','6','60','55','0','Acherus Knight\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134650','2','4','4','51494','5','6','60','55','0','Acherus Knight\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134651','2','4','4','51497','6','6','60','55','0','Acherus Knight\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134652','2','4','4','51495','1','6','60','55','0','Acherus Knight\'s Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134653','2','4','4','51500','9','6','60','55','0','Acherus Knight\'s Wristguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134655','2','4','4','51501','3','6','60','55','0','Acherus Knight\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134656','2','4','4','51499','7','6','60','55','0','Acherus Knight\'s Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134657','2','4','0','6539','2','3','60','55','0','Choker of Damnation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134658','2','4','0','963','11','7','60','55','0','Plague Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134659','2','4','1','49738','16','7','60','55','0','Acherus Knight\'s Shroud','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134661','3','2','8','49742','17','1','60','55','1','Massacre Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134665','3','2','15','33237','13','1','115','70','3','Bombardier\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134666','3','2','7','48062','13','1','115','70','3','The Sunbreaker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134667','3','2','7','48061','21','1','115','70','3','Archmage\'s Guile','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134670','3','2','4','37049','21','1','115','70','3','Seeker\'s Gavel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134671','3','2','4','48065','21','1','115','70','3','K\'iru\'s Presage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134672','3','2','7','37209','13','1','115','0','3','Inuuro\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134673','3','2','1','48066','17','1','115','70','1','Legionfoe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134674','3','2','18','48067','26','2','115','70','0','Truestrike Crossbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134675','4','4','6','48068','14','1','115','70','4','Sunward Crest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134676','4','4','6','48070','14','1','115','70','4','Dawnforged Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134677','4','4','0','31889','2','3','115','70','0','Shattered Sun Pendant of Restoration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134678','4','4','0','39212','2','3','115','70','0','Shattered Sun Pendant of Acumen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134679','4','4','0','48071','2','3','115','70','0','Shattered Sun Pendant of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134680','4','4','0','43085','2','3','115','70','0','Shattered Sun Pendant of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134683','1','4','0','48964','8','7','1','0','0','Sandals of Summer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134685','1','4','0','48963','20','7','1','0','0','Vestment of Summer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134697','3','4','1','42896','9','7','115','70','0','Bindings of Raging Fire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134698','3','4','3','43012','9','5','115','70','0','Bracers of the Forest Stalker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134699','3','2','0','31300','13','1','115','70','3','Sun-forged Cleaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134700','3','4','4','48201','10','1','115','70','0','Gauntlets of Divine Blessings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134701','3','4','2','17137','7','8','115','70','0','Leggings of the Betrayed','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134702','3','4','1','34812','16','7','115','70','0','Cloak of Swift Mending','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134703','3','2','7','41417','13','1','115','70','3','Latro\'s Dancing Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134704','3','4','0','39126','11','5','115','70','0','Band of Arcane Alacrity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134705','3','4','1','42996','9','7','115','70','0','Bracers of Divine Infusion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134706','3','4','0','40044','11','3','115','70','0','Band of Determination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134707','3','4','2','42961','8','8','115','70','0','Boots of Resuscitation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134708','3','4','1','43086','16','7','115','70','0','Cloak of the Coming Night','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134716','1','4','1','48228','9','0','1','0','0','Silver Cufflinks','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134718','1','4','0','48231','8','7','1','0','0','Black Leather Shoes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134783','3','2','16','48248','25','1','115','70','0','Nightstrike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134788','3','4','1','48252','3','7','115','70','0','Duskhallow Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134789','3','4','4','48253','9','6','115','70','0','Bracers of Slaughter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134790','3','2','4','39389','21','1','115','70','3','Battle-mace of the High Priestess','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134791','3','4','3','48255','10','5','115','70','0','Gauntlets of the Tranquil Waves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134792','3','4','1','38794','16','7','115','70','0','Cloak of the Betrayed','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134793','3','4','1','48256','6','6','115','70','0','Cord of Reconstruction','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134794','3','2','1','39958','17','1','115','70','1','Axe of Shattered Dreams','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134795','3','4','4','48257','1','6','115','70','0','Helm of Sanctification','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134796','3','4','2','48258','20','8','115','70','0','Robes of Summer Flame','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134797','3','2','10','44339','17','2','115','70','2','Sun-infused Focus Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134798','3','4','0','24022','11','5','115','70','0','Band of Celerity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134799','4','4','3','48259','5','5','110','70','0','Hauberk of the War Bringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134807','4','4','4','48286','8','6','110','70','0','Sunstrider Warboots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134808','4','4','1','48287','10','7','110','70','0','Gloves of Arcane Acuity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134809','4','4','2','48985','8','8','110','70','0','Sunrage Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134810','4','4','1','47067','16','7','110','70','0','Cloak of Blade Turning','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134826','1','4','0','963','11','5','1','0','0','Gold Wedding Band','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134827','1','4','0','15322','1','3','1','0','0','Noble\'s Monocle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134828','1','4','0','48805','9','-1','1','0','0','Antique Silver Cufflinks','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134829','1','4','0','48339','23','-1','1','0','7','Ornate Drinking Stein','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134837','4','4','0','31800','11','5','143','70','1','The 2 Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134847','4','4','1','43891','1','7','159','70','0','Annihilator Holo-Gogs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134859','1','2','15','48380','13','1','115','70','3','Razor Sharp Fillet Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134887','4','4','0','49005','11','3','141','70','0','Angelista\'s Revenge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134888','4','4','0','45362','11','3','141','70','0','Ring of the Stalwart Protector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134889','4','4','0','44358','11','3','141','70','0','Fused Nethergon Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134890','4','4','0','43095','11','3','141','70','0','Anveena\'s Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134891','4','2','1','48899','17','1','146','70','1','The Blade of Harbingers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134892','4','2','18','49114','26','2','146','70','0','Crossbow of Relentless Strikes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134893','4','2','13','49113','21','1','146','70','7','Vanir\'s Right Fist of Brutality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134894','4','2','15','48888','13','1','146','70','3','Blade of Serration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134895','4','2','15','48887','21','1','146','70','3','Scryer\'s Blade of Focus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134896','4','2','4','49111','21','1','146','70','3','Gavel of Naaru Blessings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134898','4','2','10','48935','17','2','146','70','2','Staff of the Forest Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134900','4','4','2','48446','5','8','141','70','0','Shroud of Nature\'s Harmony','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134901','4','4','2','48449','7','8','141','70','0','Grovewalker\'s Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134902','4','4','2','48452','10','8','141','70','0','Oakleaf-Spun Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134903','4','4','2','48967','5','8','141','70','0','Embrace of Starlight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134904','4','4','2','47171','10','8','141','70','0','Barbed Gloves of the Sage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134905','4','4','2','48456','7','8','141','70','0','Crystalwind Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134906','4','4','2','48450','5','8','141','70','0','Embrace of Everlasting Prowess','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134910','4','4','2','48454','7','8','141','70','0','Tameless Breeches','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134911','4','4','2','48451','10','8','141','70','0','Handwraps of the Aggressor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134912','4','4','3','48466','5','5','141','70','0','Scaled Drakeskin Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134914','4','4','3','48468','7','5','141','70','0','Leggings of the Pursuit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134916','4','4','3','48467','10','5','141','70','0','Gauntlets of Rapidity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134917','4','4','1','48469','20','7','141','70','0','Shroud of the Lore`nial','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134918','4','4','1','47064','7','7','141','70','0','Legwraps of Sweltering Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134919','4','4','1','42327','8','7','141','70','0','Boots of Incantations','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134921','4','4','4','48471','5','1','141','70','0','Ecclesiastical Cuirass','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134922','4','4','4','48470','7','1','141','70','0','Greaves of Pacification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134923','4','4','4','48291','6','1','141','70','0','Waistguard of Reparation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134924','4','4','1','48481','20','7','141','70','0','Gown of Spiritual Wonder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134925','4','4','1','48482','7','7','141','70','0','Adorned Supernal Legwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134926','4','4','1','48479','8','7','141','70','0','Slippers of Dutiful Mending','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134927','4','4','2','48484','5','8','141','70','0','Tunic of the Dark Hour','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134928','4','4','2','48486','7','8','141','70','0','Trousers of the Scryers\' Retainer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134929','4','4','2','48483','6','5','141','70','0','Belt of the Silent Path','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134930','4','4','3','48487','5','5','141','70','0','Wave of Life Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134931','4','4','3','48493','7','5','141','70','0','Runed Scales of Antiquity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134932','4','4','3','48490','6','5','141','70','0','Clutch of the Soothing Breeze','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134933','4','4','3','48491','5','5','141','70','0','Hauberk of Whirling Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134934','4','4','3','48492','7','5','141','70','0','Rushing Storm Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134935','4','4','3','48358','6','5','141','70','0','Aftershock Waistguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134936','4','4','1','48494','20','7','141','70','0','Tormented Demonsoul Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134937','4','4','1','45319','7','7','141','70','0','Corrupted Soulcloth Pantaloons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134938','4','4','1','48495','10','7','141','70','0','Enslaved Doomguard Soulgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134939','4','4','4','48496','5','1','141','70','0','Chestplate of Stoicism','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134940','4','4','4','45220','7','1','141','70','0','Sunguard Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134941','4','4','4','42651','6','1','141','70','0','Girdle of the Fearless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134942','4','4','4','48476','5','1','141','70','0','Breastplate of Ire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134943','4','4','4','46359','7','1','141','70','0','Legplates of Unending Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134944','4','4','4','48477','6','1','141','70','0','Girdle of Seething Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134945','4','4','4','48473','5','1','141','70','0','Shattrath Protectorate\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134946','4','4','4','48474','7','1','141','70','0','Inscribed Legplates of the Aldor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134947','4','4','4','48472','8','1','141','70','0','Blue\'s Greaves of the Righteous Guardian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134949','4','2','15','48888','22','1','146','70','3','Swift Blade of Uncertainty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134950','4','2','13','49112','22','1','146','70','7','Vanir\'s Left Fist of Savagery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134951','4','2','13','49112','22','1','146','70','7','Vanir\'s Left Fist of Brutality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134952','4','2','15','48888','22','1','146','70','3','The Mutilator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134985','4','2','19','46606','26','2','154','70','0','Brutal Gladiator\'s Baton of Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134986','4','4','6','49154','14','1','159','70','4','Brutal Gladiator\'s Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134987','4','2','10','47994','17','2','154','70','2','Brutal Gladiator\'s Battle Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134988','4','2','4','49136','22','1','154','70','3','Brutal Gladiator\'s Bonecracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134989','4','2','5','49993','17','1','154','70','1','Brutal Gladiator\'s Bonegrinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134990','4','4','3','48604','5','5','159','70','0','Brutal Gladiator\'s Chain Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134991','4','4','3','48605','10','5','159','70','0','Brutal Gladiator\'s Chain Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134992','4','4','3','48606','1','5','159','70','0','Brutal Gladiator\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134993','4','4','3','48608','7','5','159','70','0','Brutal Gladiator\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134994','4','4','3','48609','3','5','159','70','0','Brutal Gladiator\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134995','4','2','0','49150','22','1','154','70','3','Brutal Gladiator\'s Chopper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134996','4','2','0','49150','13','1','154','70','3','Brutal Gladiator\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134997','4','2','1','49149','17','1','154','70','1','Brutal Gladiator\'s Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134998','4','4','2','49966','10','8','159','70','0','Brutal Gladiator\'s Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('134999','4','4','2','48601','1','8','159','70','0','Brutal Gladiator\'s Dragonhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135000','4','4','2','48603','7','8','159','70','0','Brutal Gladiator\'s Dragonhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135001','4','4','2','48591','3','8','159','70','0','Brutal Gladiator\'s Dragonhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135002','4','4','2','49968','5','8','159','70','0','Brutal Gladiator\'s Dragonhide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135003','4','4','1','48618','10','7','159','70','0','Brutal Gladiator\'s Dreadweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135004','4','4','1','50005','1','7','159','70','0','Brutal Gladiator\'s Dreadweave Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135005','4','4','1','49952','7','7','159','70','0','Brutal Gladiator\'s Dreadweave Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135006','4','4','1','50009','3','7','159','70','0','Brutal Gladiator\'s Dreadweave Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135007','4','4','1','49954','20','7','159','70','0','Brutal Gladiator\'s Dreadweave Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135008','4','4','0','39505','23','3','159','70','7','Brutal Gladiator\'s Endgame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135009','4','4','1','50009','3','7','159','70','0','Brutal Gladiator\'s Felweave Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135010','4','4','1','50005','1','7','159','70','0','Brutal Gladiator\'s Felweave Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135011','4','4','1','48618','10','7','159','70','0','Brutal Gladiator\'s Felweave Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135012','4','4','1','49954','20','7','159','70','0','Brutal Gladiator\'s Felweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135013','4','4','1','49955','7','7','159','70','0','Brutal Gladiator\'s Felweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135014','4','2','4','49135','21','1','154','70','3','Brutal Gladiator\'s Gavel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135015','4','2','8','49137','17','1','154','70','1','Brutal Gladiator\'s Greatsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135016','4','4','0','39505','23','3','159','70','7','Brutal Gladiator\'s Grimoire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135017','4','2','0','49150','22','1','154','70','3','Brutal Gladiator\'s Hacker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135018','4','2','18','49138','26','2','154','70','0','Brutal Gladiator\'s Heavy Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135019','4','4','8','34953','28','2','159','70','0','Brutal Gladiator\'s Idol of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135020','4','4','8','34953','28','2','159','70','0','Brutal Gladiator\'s Idol of Steadfastness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135021','4','4','8','9659','28','2','159','70','0','Brutal Gladiator\'s Idol of Tenacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135022','4','4','2','49966','10','8','159','70','0','Brutal Gladiator\'s Kodohide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135023','4','4','2','48602','1','8','159','70','0','Brutal Gladiator\'s Kodohide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135024','4','4','2','48603','7','8','159','70','0','Brutal Gladiator\'s Kodohide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135025','4','4','2','48591','3','8','159','70','0','Brutal Gladiator\'s Kodohide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135026','4','4','2','49968','5','8','159','70','0','Brutal Gladiator\'s Kodohide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135027','4','4','4','50001','5','6','159','70','0','Brutal Gladiator\'s Lamellar Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135028','4','4','4','48640','10','6','159','70','0','Brutal Gladiator\'s Lamellar Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135029','4','4','4','48740','1','6','159','70','0','Brutal Gladiator\'s Lamellar Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135030','4','4','4','50002','7','6','159','70','0','Brutal Gladiator\'s Lamellar Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135031','4','4','4','50003','3','6','159','70','0','Brutal Gladiator\'s Lamellar Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135032','4','4','2','49965','10','8','159','70','0','Brutal Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135033','4','4','2','48739','1','8','159','70','0','Brutal Gladiator\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135034','4','4','2','48597','7','8','159','70','0','Brutal Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135035','4','4','2','48598','3','8','159','70','0','Brutal Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135036','4','4','2','48599','5','8','159','70','0','Brutal Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135037','4','2','13','49139','22','1','154','70','7','Brutal Gladiator\'s Left Render','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135038','4','2','13','49139','22','1','154','70','7','Brutal Gladiator\'s Left Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135039','4','4','7','34960','28','2','159','70','0','Brutal Gladiator\'s Libram of Fortitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135040','4','4','7','1103','28','2','159','70','0','Brutal Gladiator\'s Libram of Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135041','4','4','7','34960','28','2','159','70','0','Brutal Gladiator\'s Libram of Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135042','4','4','3','49969','20','5','159','70','0','Brutal Gladiator\'s Linked Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135043','4','4','3','48611','10','5','159','70','0','Brutal Gladiator\'s Linked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135044','4','4','3','48613','1','5','159','70','0','Brutal Gladiator\'s Linked Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135045','4','4','3','48615','7','5','159','70','0','Brutal Gladiator\'s Linked Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135046','4','4','3','48616','3','5','159','70','0','Brutal Gladiator\'s Linked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135047','4','2','2','49140','15','2','154','70','0','Brutal Gladiator\'s Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135048','4','4','3','49969','20','5','159','70','0','Brutal Gladiator\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135049','4','4','3','48611','10','5','159','70','0','Brutal Gladiator\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135050','4','4','3','48613','1','5','159','70','0','Brutal Gladiator\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135051','4','4','3','48615','7','5','159','70','0','Brutal Gladiator\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135052','4','4','3','48616','3','5','159','70','0','Brutal Gladiator\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135053','4','4','1','49960','10','7','159','70','0','Brutal Gladiator\'s Mooncloth Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135054','4','4','1','50007','1','7','159','70','0','Brutal Gladiator\'s Mooncloth Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135055','4','4','1','49964','7','7','159','70','0','Brutal Gladiator\'s Mooncloth Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135056','4','4','1','50010','3','7','159','70','0','Brutal Gladiator\'s Mooncloth Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135057','4','4','1','49963','20','7','159','70','0','Brutal Gladiator\'s Mooncloth Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135058','4','2','15','49141','22','1','154','70','3','Brutal Gladiator\'s Mutilator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135059','4','4','4','50001','5','6','159','70','0','Brutal Gladiator\'s Ornamented Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135060','4','4','4','48640','10','6','159','70','0','Brutal Gladiator\'s Ornamented Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135061','4','4','4','48740','1','6','159','70','0','Brutal Gladiator\'s Ornamented Headcover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135062','4','4','4','50002','7','6','159','70','0','Brutal Gladiator\'s Ornamented Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135063','4','4','4','50003','3','6','159','70','0','Brutal Gladiator\'s Ornamented Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135064','4','2','6','49142','17','1','154','70','1','Brutal Gladiator\'s Painsaw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135065','4','2','19','46606','26','2','154','70','0','Brutal Gladiator\'s Piercing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135066','4','4','4','49999','5','6','159','70','0','Brutal Gladiator\'s Plate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135067','4','4','4','49998','10','6','159','70','0','Brutal Gladiator\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135068','4','4','4','49685','1','6','159','70','0','Brutal Gladiator\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135069','4','4','4','49996','7','6','159','70','0','Brutal Gladiator\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135070','4','4','4','49995','3','6','159','70','0','Brutal Gladiator\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135071','4','2','4','49136','13','1','154','70','3','Brutal Gladiator\'s Pummeler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135072','4','2','7','49143','22','1','154','70','3','Brutal Gladiator\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135073','4','4','6','49153','14','1','159','70','4','Brutal Gladiator\'s Redoubt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135074','4','4','0','39505','23','3','159','70','7','Brutal Gladiator\'s Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135075','4','2','3','49393','26','1','154','70','0','Brutal Gladiator\'s Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135076','4','2','13','49145','21','1','154','70','7','Brutal Gladiator\'s Right Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135077','4','4','3','49969','20','5','159','70','0','Brutal Gladiator\'s Ringmail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135078','4','4','3','48611','10','5','159','70','0','Brutal Gladiator\'s Ringmail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135079','4','4','3','48614','1','5','159','70','0','Brutal Gladiator\'s Ringmail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135080','4','4','3','48615','7','5','159','70','0','Brutal Gladiator\'s Ringmail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135081','4','4','3','48616','3','5','159','70','0','Brutal Gladiator\'s Ringmail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135082','4','2','4','49146','21','1','154','70','3','Brutal Gladiator\'s Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135083','4','4','1','49960','10','7','159','70','0','Brutal Gladiator\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135084','4','4','1','50007','1','7','159','70','0','Brutal Gladiator\'s Satin Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135085','4','4','1','49964','7','7','159','70','0','Brutal Gladiator\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135086','4','4','1','50010','3','7','159','70','0','Brutal Gladiator\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135087','4','4','1','49963','20','7','159','70','0','Brutal Gladiator\'s Satin Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135088','4','4','4','50001','5','6','159','70','0','Brutal Gladiator\'s Scaled Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135089','4','4','4','48640','10','6','159','70','0','Brutal Gladiator\'s Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135090','4','4','4','48740','1','6','159','70','0','Brutal Gladiator\'s Scaled Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135091','4','4','4','50002','7','6','159','70','0','Brutal Gladiator\'s Scaled Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135092','4','4','4','50003','3','6','159','70','0','Brutal Gladiator\'s Scaled Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135093','4','2','15','49141','13','1','154','70','3','Brutal Gladiator\'s Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135094','4','4','6','49155','14','1','159','70','4','Brutal Gladiator\'s Shield Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135095','4','2','15','49141','22','1','154','70','3','Brutal Gladiator\'s Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135096','4','4','1','50011','3','7','159','70','0','Brutal Gladiator\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135097','4','4','1','50008','1','7','159','70','0','Brutal Gladiator\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135098','4','4','1','49957','10','7','159','70','0','Brutal Gladiator\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135099','4','4','1','49958','20','7','159','70','0','Brutal Gladiator\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135100','4','4','1','49959','7','7','159','70','0','Brutal Gladiator\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135101','4','2','7','49143','13','1','154','70','3','Brutal Gladiator\'s Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135102','4','2','15','49147','21','1','154','70','3','Brutal Gladiator\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135103','4','2','10','49148','17','1','154','70','2','Brutal Gladiator\'s Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135104','4','4','9','25246','28','2','159','70','0','Brutal Gladiator\'s Totem of Indomitability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135105','4','4','9','25246','28','2','159','70','0','Brutal Gladiator\'s Totem of Survival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135106','4','4','9','46045','28','2','159','70','0','Brutal Gladiator\'s Totem of the Third Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135107','4','2','19','46606','26','2','154','70','0','Brutal Gladiator\'s Touch of Defeat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135108','4','2','16','38679','25','1','154','70','0','Brutal Gladiator\'s War Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135109','4','2','10','47994','17','2','154','70','2','Brutal Gladiator\'s War Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135110','4','2','0','49152','21','1','154','70','1','Brutal Gladiator\'s Waraxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135111','4','4','2','49966','10','8','159','70','0','Brutal Gladiator\'s Wyrmhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135112','4','4','2','48601','1','8','159','70','0','Brutal Gladiator\'s Wyrmhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135113','4','4','2','48603','7','8','159','70','0','Brutal Gladiator\'s Wyrmhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135114','4','4','2','48591','3','8','159','70','0','Brutal Gladiator\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135115','4','4','2','49968','5','8','159','70','0','Brutal Gladiator\'s Wyrmhide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135129','4','4','0','39129','11','5','154','70','0','Guardian\'s Band of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135130','4','4','0','39129','11','5','154','70','0','Guardian\'s Band of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135131','4','4','0','39129','11','5','154','70','0','Guardian\'s Band of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135132','4','4','0','39162','2','5','154','70','0','Guardian\'s Pendant of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135133','4','4','0','39162','2','5','154','70','0','Guardian\'s Pendant of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135134','4','4','0','39162','2','5','154','70','0','Guardian\'s Pendant of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135135','4','4','0','39162','2','5','154','70','0','Guardian\'s Pendant of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135136','4','4','3','48672','8','5','159','70','0','Guardian\'s Chain Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135137','4','4','2','48678','8','8','159','70','0','Guardian\'s Dragonhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135138','4','4','1','48685','8','7','159','70','0','Guardian\'s Dreadweave Stalkers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135139','4','4','2','48678','8','8','159','70','0','Guardian\'s Kodohide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135140','4','4','4','48663','8','6','159','70','0','Guardian\'s Lamellar Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135141','4','4','2','48679','8','8','159','70','0','Guardian\'s Leather Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135142','4','4','3','48675','8','5','159','70','0','Guardian\'s Linked Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135143','4','4','3','48675','8','5','159','70','0','Guardian\'s Mail Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135144','4','4','1','48688','8','7','159','70','0','Guardian\'s Mooncloth Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135145','4','4','4','48663','8','6','159','70','0','Guardian\'s Ornamented Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135146','4','4','4','48669','8','6','159','70','0','Guardian\'s Plate Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135147','4','4','3','48675','8','5','159','70','0','Guardian\'s Ringmail Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135148','4','4','4','48663','8','6','159','70','0','Guardian\'s Scaled Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135149','4','4','1','48691','8','7','159','70','0','Guardian\'s Silk Footguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135150','4','4','2','48678','8','8','159','70','0','Guardian\'s Wyrmhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135151','4','4','3','48671','6','5','159','70','0','Guardian\'s Chain Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135152','4','4','2','48676','6','8','159','70','0','Guardian\'s Dragonhide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135153','4','4','1','48683','6','7','159','70','0','Guardian\'s Dreadweave Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135154','4','4','2','48676','6','8','159','70','0','Guardian\'s Kodohide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135155','4','4','4','48660','6','6','159','70','0','Guardian\'s Lamellar Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135156','4','4','2','48677','6','8','159','70','0','Guardian\'s Leather Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135157','4','4','3','48674','6','5','159','70','0','Guardian\'s Linked Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135158','4','4','3','48674','6','5','159','70','0','Guardian\'s Mail Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135159','4','4','1','48686','6','7','159','70','0','Guardian\'s Mooncloth Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135160','4','4','4','48660','6','6','159','70','0','Guardian\'s Ornamented Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135161','4','4','4','48661','6','6','159','70','0','Guardian\'s Plate Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135162','4','4','3','48674','6','5','159','70','0','Guardian\'s Ringmail Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135163','4','4','4','48660','6','6','159','70','0','Guardian\'s Scaled Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135164','4','4','1','48689','6','7','159','70','0','Guardian\'s Silk Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135165','4','4','2','48676','6','8','159','70','0','Guardian\'s Wyrmhide Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135166','4','4','3','48670','9','5','154','70','0','Guardian\'s Chain Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135167','4','4','2','48681','9','8','154','70','0','Guardian\'s Dragonhide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135168','4','4','1','48684','9','7','154','70','0','Guardian\'s Dreadweave Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135169','4','4','2','48681','9','8','154','70','0','Guardian\'s Kodohide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135170','4','4','4','48662','9','6','154','70','0','Guardian\'s Lamellar Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135171','4','4','2','48682','9','8','154','70','0','Guardian\'s Leather Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135172','4','4','3','48673','9','5','154','70','0','Guardian\'s Linked Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135173','4','4','3','48673','9','5','154','70','0','Guardian\'s Mail Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135174','4','4','1','48687','9','7','154','70','0','Guardian\'s Mooncloth Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135175','4','4','4','48662','9','6','154','70','0','Guardian\'s Ornamented Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135176','4','4','4','48664','9','6','154','70','0','Guardian\'s Plate Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135177','4','4','3','48673','9','5','154','70','0','Guardian\'s Ringmail Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135178','4','4','4','48662','9','6','154','70','0','Guardian\'s Scaled Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135179','4','4','1','48690','9','7','154','70','0','Guardian\'s Silk Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135180','4','4','2','48681','9','8','154','70','0','Guardian\'s Wyrmhide Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135181','4','4','1','45781','1','7','159','70','0','Powerheal 9000 Lens','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135182','4','4','2','43886','1','7','159','70','0','Hyper-Magnified Moon Specs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135183','4','4','2','45782','1','7','159','70','0','Wonderheal XT68 Shades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135184','4','4','3','45780','1','7','159','70','0','Primal-Attuned Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135185','4','4','4','43889','1','7','159','70','0','Justicebringer 3000 Specs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135221','1','4','0','48576','19','7','20','0','0','Tabard of the Shattered Sun','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135275','3','4','0','8132','0','3','70','70','0','Orb of the Sin\'dorei','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135279','3','4','0','48709','19','7','1','0','0','Tabard of Summer Skies','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135280','3','4','0','48710','19','7','1','0','0','Tabard of Summer Flames','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135282','4','4','0','39129','11','5','141','70','0','Sin\'dorei Band of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135283','4','4','0','39129','11','5','141','70','0','Sin\'dorei Band of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135284','4','4','0','39129','11','5','141','70','0','Sin\'dorei Band of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135290','4','4','0','39162','2','5','141','70','0','Sin\'dorei Pendant of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135291','4','4','0','39162','2','5','141','70','0','Sin\'dorei Pendant of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135292','4','4','0','39162','2','5','141','70','0','Sin\'dorei Pendant of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135317','4','4','0','39162','2','5','141','70','0','Vindicator\'s Pendant of Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135319','4','4','0','39162','2','5','141','70','0','Vindicator\'s Pendant of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135320','4','4','0','39129','11','5','141','70','0','Vindicator\'s Band of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135321','4','4','1','46812','16','7','136','70','0','Cloak of Arcane Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135324','4','4','1','43292','16','7','136','70','0','Cloak of Swift Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135326','4','4','0','39984','12','4','133','70','0','Battlemaster\'s Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135327','4','4','0','39984','12','4','133','70','0','Battlemaster\'s Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135328','3','4','1','48717','10','7','115','70','0','Dreadweave Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135329','3','4','1','48719','1','7','115','70','0','Dreadweave Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135330','3','4','1','48721','7','7','115','70','0','Dreadweave Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135331','3','4','1','48722','3','7','115','70','0','Dreadweave Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135332','3','4','1','48723','20','7','115','70','0','Dreadweave Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135333','3','4','1','48726','1','7','115','70','0','Mooncloth Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135334','3','4','1','48727','7','7','115','70','0','Mooncloth Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135335','3','4','1','48728','10','7','115','70','0','Mooncloth Mitts','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135336','3','4','1','48729','3','7','115','70','0','Mooncloth Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135337','3','4','1','48730','20','7','115','70','0','Mooncloth Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135338','3','4','1','48728','10','7','115','70','0','Satin Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135339','3','4','1','48726','1','7','115','70','0','Satin Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135340','3','4','1','48727','7','7','115','70','0','Satin Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135341','3','4','1','48729','3','7','115','70','0','Satin Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135342','3','4','1','48730','20','7','115','70','0','Satin Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135343','3','4','1','48733','3','7','115','70','0','Evoker\'s Silk Amice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135344','3','4','1','48734','1','7','115','70','0','Evoker\'s Silk Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135345','3','4','1','48735','10','7','115','70','0','Evoker\'s Silk Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135346','3','4','1','48736','20','7','115','70','0','Evoker\'s Silk Raiment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135347','3','4','1','41182','7','7','115','70','0','Evoker\'s Silk Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135356','3','4','2','48745','10','8','115','70','0','Dragonhide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135357','3','4','2','48746','1','8','115','70','0','Dragonhide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135358','3','4','2','48747','7','8','115','70','0','Dragonhide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135359','3','4','2','48748','3','8','115','70','0','Dragonhide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135360','3','4','2','48750','20','8','115','70','0','Dragonhide Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135361','3','4','2','48745','10','8','115','70','0','Kodohide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135362','3','4','2','48746','1','8','115','70','0','Kodohide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135363','3','4','2','48747','7','8','115','70','0','Kodohide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135364','3','4','2','48748','3','8','115','70','0','Kodohide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135365','3','4','2','48750','20','8','115','70','0','Kodohide Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135366','3','4','2','48751','10','8','115','70','0','Opportunist\'s Leather Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135367','3','4','2','48752','1','8','115','70','0','Opportunist\'s Leather Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135368','3','4','2','48753','7','8','115','70','0','Opportunist\'s Leather Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135369','3','4','2','48754','3','8','115','70','0','Opportunist\'s Leather Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135370','3','4','2','48755','5','8','115','70','0','Opportunist\'s Leather Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135371','3','4','2','48751','10','8','115','70','0','Wyrmhide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135372','3','4','2','48746','1','8','115','70','0','Wyrmhide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135373','3','4','2','48747','7','8','115','70','0','Wyrmhide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135374','3','4','2','48748','3','8','115','70','0','Wyrmhide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135375','3','4','2','48750','20','8','115','70','0','Wyrmhide Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135376','3','4','3','48759','20','5','115','70','0','Stalker\'s Chain Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135377','3','4','3','48760','10','5','115','70','0','Stalker\'s Chain Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135378','3','4','3','48761','1','5','115','70','0','Stalker\'s Chain Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135379','3','4','3','48762','7','5','115','70','0','Stalker\'s Chain Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135380','3','4','3','48763','3','5','115','70','0','Stalker\'s Chain Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135381','3','4','3','48756','20','5','115','70','0','Seer\'s Linked Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135382','3','4','3','48757','10','5','115','70','0','Seer\'s Linked Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135383','3','4','3','48758','1','5','115','70','0','Seer\'s Linked Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135384','3','4','3','48764','7','5','115','70','0','Seer\'s Linked Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135385','3','4','3','48765','3','5','115','70','0','Seer\'s Linked Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135386','3','4','3','48756','20','5','115','70','0','Seer\'s Mail Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135387','3','4','3','48757','10','5','115','70','0','Seer\'s Mail Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135388','3','4','3','48758','1','5','115','70','0','Seer\'s Mail Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135389','3','4','3','48764','7','5','115','70','0','Seer\'s Mail Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135390','3','4','3','48765','3','5','115','70','0','Seer\'s Mail Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135391','3','4','3','48756','20','5','115','70','0','Seer\'s Ringmail Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135392','3','4','3','48757','10','5','115','70','0','Seer\'s Ringmail Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135393','3','4','3','48758','1','5','115','70','0','Seer\'s Ringmail Headpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135394','3','4','3','48764','7','5','115','70','0','Seer\'s Ringmail Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135395','3','4','3','48765','3','5','115','70','0','Seer\'s Ringmail Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135402','3','4','4','48792','5','6','115','70','0','Crusader\'s Ornamented Chestplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135403','3','4','4','48793','10','6','115','70','0','Crusader\'s Ornamented Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135404','3','4','4','48794','1','6','115','70','0','Crusader\'s Ornamented Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135405','3','4','4','48795','7','6','115','70','0','Crusader\'s Ornamented Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135406','3','4','4','48796','3','6','115','70','0','Crusader\'s Ornamented Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135407','3','4','4','48797','5','6','115','70','0','Savage Plate Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135408','3','4','4','48798','10','6','115','70','0','Savage Plate Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135409','3','4','4','48799','1','6','115','70','0','Savage Plate Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135410','3','4','4','48800','7','6','115','70','0','Savage Plate Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135411','3','4','4','48801','3','6','115','70','0','Savage Plate Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135412','3','4','4','48792','5','6','115','70','0','Crusader\'s Scaled Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135413','3','4','4','48793','10','6','115','70','0','Crusader\'s Scaled Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135414','3','4','4','48794','1','6','115','70','0','Crusader\'s Scaled Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135415','3','4','4','48795','7','6','115','70','0','Crusader\'s Scaled Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135416','3','4','4','48796','3','6','115','70','0','Crusader\'s Scaled Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135464','3','4','1','48723','20','7','115','70','0','Dreadweave Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135465','3','4','1','48733','3','7','115','70','0','Evoker\'s Silk Amice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135466','3','4','1','48726','1','7','115','70','0','Satin Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135467','3','4','1','48730','20','7','115','70','0','Mooncloth Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135468','3','4','2','48751','10','8','115','70','0','Opportunist\'s Leather Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135469','3','4','2','48750','20','8','115','70','0','Dragonhide Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135470','3','4','2','48748','3','8','115','70','0','Kodohide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135471','3','4','2','48751','10','8','115','70','0','Wyrmhide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135472','3','4','3','48756','20','5','115','70','0','Seer\'s Mail Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135473','3','4','3','48757','10','5','115','70','0','Seer\'s Ringmail Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135474','3','4','3','48758','1','5','115','70','0','Seer\'s Linked Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135475','3','4','3','48760','10','5','115','70','0','Stalker\'s Chain Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135476','3','4','4','48796','3','6','115','70','0','Crusader\'s Ornamented Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135477','3','4','4','48793','10','6','115','70','0','Crusader\'s Scaled Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135478','3','4','4','48799','1','6','115','70','0','Savage Plate Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135494','4','4','1','15239','16','7','110','70','0','Shroud of Winter\'s Chill','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135495','4','4','1','15239','16','7','110','70','0','The Frost Lord\'s War Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135496','4','4','1','15239','16','7','110','70','0','Icebound Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135497','4','4','1','15239','16','7','110','70','0','Cloak of the Frigid Winds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135507','4','4','0','31907','2','3','110','70','0','Amulet of Bitter Hatred','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135508','4','4','0','12567','2','3','110','70','0','Choker of the Arctic Flow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135509','4','4','0','39212','2','3','110','70','0','Amulet of Glacial Tranquility','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135511','4','4','0','31603','2','3','110','70','0','Hailstone Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135514','4','2','10','48878','17','2','110','70','2','Frostscythe of Lord Ahune','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135570','3','2','15','48957','21','1','155','70','3','Keleseth\'s Blade of Evocation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135571','3','4','3','52204','10','5','155','70','0','Dragon Stabler\'s Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135572','3','4','1','52529','1','-1','155','70','0','Reinforced Velvet Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135573','3','2','13','52436','21','1','155','70','7','Arm Blade of Augelmir','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135574','3','4','4','49353','5','6','155','70','0','Chestplate of the Northern Lights','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135575','3','4','2','49354','5','8','155','70','0','Skarvald\'s Dragonskin Habergeon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135576','3','2','1','49356','17','1','155','70','1','Ingvar\'s Monolithic Cleaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135577','3','4','2','49358','7','8','155','70','0','Holistic Patchwork Breeches','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135578','3','4','3','51885','3','5','155','70','0','Overlaid Chain Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135579','3','4','2','49363','9','8','155','70','0','Vrykul Shackles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135580','3','4','1','49361','3','7','155','70','0','Skein Woven Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135581','3','4','1','46155','8','7','112','0','0','Rocket Boots Xtreme Lite','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135583','3','2','10','51691','17','2','179','76','2','Witch Doctor\'s Wildstaff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135584','3','4','1','52337','20','7','179','76','0','Embroidered Gown of Zul\'Drak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135585','3','4','3','52336','7','5','179','76','0','Cannibal\'s Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135587','3','2','4','50603','21','2','179','76','3','Frozen Scepter of Necromancy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135588','3','4','4','52338','5','6','179','76','0','Forlorn Breastplate of War','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135589','3','4','0','35423','11','3','179','76','0','Arcane Focal Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135590','3','2','2','49368','15','2','179','76','0','Drakkari Hunting Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135591','3','4','2','49369','3','8','179','76','0','Shoulderguards of the Ice Troll','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135592','3','4','3','51109','5','5','179','76','0','Hauberk of Totemic Mastery','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135593','3','4','4','52341','9','6','179','76','0','Steel Bear Trap Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135594','3','4','1','52340','6','6','179','76','0','Snowmelt Silken Cinch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135595','3','2','15','49373','13','1','159','71','3','Glacier Sharpened Vileblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135596','3','4','1','52210','8','7','159','71','0','Attuned Crystalline Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135597','3','4','0','39121','11','3','159','71','0','Band of Glittering Permafrost','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135598','3','4','0','42564','23','3','159','71','7','Tome of the Lore Keepers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135599','3','4','3','52212','10','5','159','71','0','Gauntlets of Serpent Scales','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135600','3','4','3','52211','8','5','159','71','0','Cleated Ice Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135601','3','2','13','52437','22','1','159','71','7','Drakonid Arm Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135602','3','4','4','51577','3','6','159','71','0','Chiseled Stalagmite Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135603','3','4','4','50507','8','6','159','71','0','Greaves of the Blue Flight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135604','3','4','4','52213','9','6','159','71','0','Insulating Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135605','3','4','2','49378','6','8','159','71','0','Belt of Draconic Runes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135606','3','2','15','40342','13','1','167','73','3','Blade of Nadox','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135607','3','4','2','54506','10','8','167','73','0','Ahn\'kahar Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135608','3','4','4','54507','6','6','167','73','0','Crawler-Emblem Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135609','3','4','0','54753','23','8','167','73','0','Talisman of Scourge Command','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135610','3','4','0','34303','2','3','167','73','0','Slasher\'s Amulet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135611','3','4','1','54508','10','7','167','73','0','Gloves of the Blood Prince','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135612','3','4','1','51301','3','7','167','73','0','Mantle of Echoing Bats','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135613','3','4','2','54509','6','8','167','73','0','Pyramid Embossed Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135614','3','4','4','54510','8','6','167','73','0','Volazj\'s Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135615','3','4','3','54511','9','5','167','73','0','Glowworm Cavern Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135616','3','4','3','51576','3','5','167','73','0','Spored Tendrils Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135617','3','2','19','43088','26','2','159','71','0','Wand of Shimmering Scales','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135618','3','2','8','50599','17','1','171','74','1','Troll Butcherer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135619','3','4','3','52335','7','5','171','74','0','Infection Resistant Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135620','3','4','2','50602','1','8','171','74','0','Berserker\'s Horns','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135630','3','2','4','50603','13','2','171','74','3','Summoner\'s Stone Gavel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135631','3','4','0','35437','2','5','171','74','0','Crystal Pendant of Warding','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135632','3','4','1','52216','20','7','171','74','0','Robes of Novos','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135633','3','2','10','50604','17','2','171','74','2','Staff of the Great Reptile','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135634','3','4','2','50605','1','8','171','74','0','Scabrous-Hide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135635','3','4','1','52217','7','7','171','74','0','Stable Master\'s Breeches','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135636','3','4','6','50607','14','6','171','74','4','Tharon\'ja\'s Aegis','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135637','3','4','4','50609','7','6','171','74','0','Muradin\'s Lost Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135638','3','4','3','50612','1','5','171','74','0','Helmet of Living Flesh','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135639','3','4','4','50615','1','6','171','74','0','Brighthelm of Guarding','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135640','3','4','3','52214','9','5','171','74','0','Darkweb Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135641','3','4','2','50618','8','8','171','74','0','Scytheclaw Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135642','3','4','6','54988','14','1','175','75','4','Riot Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135643','3','4','4','49876','3','6','175','75','0','Spaulders of Ichoron','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135644','3','4','3','54996','6','5','175','75','0','Xevozz\'s Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135645','3','2','3','54997','26','1','175','75','0','Prison Warden\'s Shotgun','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135646','3','4','1','52344','10','7','175','75','0','Lava Burn Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135647','3','4','2','54998','10','8','175','75','0','Handguards of Rapid Pursuit','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135649','3','2','10','53207','17','2','175','75','2','Jailer\'s Baton','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135650','3','4','3','52363','8','5','175','75','0','Boots of the Portal Guardian','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135651','3','4','4','55003','10','6','175','75','0','Plate Claws of the Dragon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135652','3','2','19','54986','26','2','175','75','0','Incessant Torch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135653','3','4','4','55004','6','6','175','78','0','Girdle of the Mystical Prison','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135654','3','4','1','55005','9','7','175','75','0','Bindings of the Bastille','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135655','3','2','15','51711','13','1','163','72','3','Cobweb Machete','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135656','3','4','4','51712','10','1','163','72','0','Aura Focused Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135657','3','4','1','52222','8','7','163','72','0','Exquisite Spider-Silk Footwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135658','3','2','10','51713','17','2','163','72','2','Life-Staff of the Web Lair','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135659','3','4','2','52223','8','8','163','72','0','Treads of Aspiring Heights','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135660','3','4','2','51715','3','8','163','72','0','Spinneret Epaulets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135661','3','4','0','34336','11','3','163','72','0','Signet of Arachnathid Command','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135662','3','4','3','52224','6','5','163','72','0','Wing Cover Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135663','3','4','1','52221','6','6','163','72','0','Charmed Silken Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135664','3','2','4','51717','13','2','163','72','3','Unknown Archaeologist\'s Hammer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135665','3','4','2','51718','9','8','163','72','0','Soothing Lichen Wraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135666','3','4','0','51719','2','3','163','72','0','Mark of the Spider','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135670','3','4','4','61307','1','6','183','77','0','Brann\'s Lost Mining Helmet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135672','3','4','3','52494','1','5','183','77','0','Hollow Geode Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135673','3','4','1','52351','7','7','183','77','0','Leggings of Burning Gleam','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135675','3','4','3','52353','5','5','183','77','0','Linked Armor of the Sphere','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135676','3','4','2','51528','7','8','183','77','0','Constellation Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135677','3','4','2','51529','20','8','183','77','0','Cosmos Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135678','3','4','4','51532','7','6','183','77','0','Ironshaper\'s Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135679','3','4','1','52491','1','-1','183','77','0','Static Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135680','3','4','0','48510','2','3','183','77','0','Amulet of Wills','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135681','3','2','15','51533','13','1','183','77','3','Unrelenting Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135682','3','4','1','52362','9','7','183','77','0','Rune Giant Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135683','3','4','0','51458','11','5','183','77','0','Palladium Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135693','4','4','0','48970','12','-1','125','70','0','Figurine - Empyrean Tortoise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135694','4','4','0','39917','12','-1','125','70','0','Figurine - Khorium Boar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135700','4','4','0','39918','12','-1','125','70','0','Figurine - Crimson Serpent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135702','4','4','0','39915','12','-1','125','70','0','Figurine - Shadowsong Panther','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135703','4','4','0','48971','12','-1','125','70','0','Figurine - Seaspray Albatross','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135733','4','4','0','39123','11','3','154','70','0','Ring of Harmonic Beauty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135807','2','2','10','49232','17','2','138','0','2','Bramblethorn Greatstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135808','2','2','7','49199','13','1','138','0','3','Coldstone Cutlass','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135809','2','2','15','49200','21','1','138','0','3','Earthspike','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135810','2','2','4','49233','21','1','138','0','3','Pacifying Pummeler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135811','2','2','18','49202','26','2','138','0','0','Elekk-Horn Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135812','2','2','5','49203','17','2','138','0','1','Cragthumper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135814','2','4','1','51032','1','7','138','0','0','Benevolent Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135815','2','4','2','56441','5','8','138','0','0','Bone-Threaded Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135816','2','4','3','51067','7','5','138','0','0','Blood-Stained Chain Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135817','2','4','6','51091','14','1','138','0','4','Nerubian Inner Husk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135818','2','4','1','49464','3','7','138','0','0','Stretch-Hide Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135820','2','4','2','49251','10','8','138','0','0','Deacon\'s Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135821','2','4','3','51077','8','5','138','0','0','Streamlined Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135822','2','4','4','51094','5','6','138','0','0','Scavenged Tirasian Plate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135823','2','2','15','49206','13','1','138','0','3','Ice-Rimed Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135824','2','2','7','49221','13','1','138','0','3','Stoneblade Slicer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135826','2','2','19','57489','26','2','138','0','0','Whelpling-Skull Zapper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135827','2','2','19','56892','26','2','138','0','0','Regal Sceptre','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135829','2','2','2','49222','15','2','138','0','0','Coldspike Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135830','2','2','13','49468','22','1','138','0','7','Worn Vrykul Smasher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135832','2','4','1','53642','10','7','138','0','0','Blauvelt\'s Special Occasion Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135833','2','4','2','49264','1','8','138','0','0','Imperious Worghide Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135834','2','4','3','49470','10','5','138','0','0','Nimblefinger Scaled Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135835','2','4','4','56195','7','6','138','0','0','Antique Reinforced Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135839','2','4','0','9858','2','3','138','0','0','Runed Clamshell Choker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135841','2','4','2','49251','10','8','138','0','0','Frost-Trimmed Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135842','2','4','3','56309','5','5','138','0','0','Azure Chain Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135843','2','4','4','49473','3','6','138','0','0','Ramshorn-Inlaid Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135844','2','4','1','49474','1','7','138','0','0','Shock-Resistant Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135845','2','2','16','40005','25','2','138','0','0','Crystalline Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135846','2','4','3','56328','10','5','138','0','0','Banded Chain Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135848','2','4','4','51090','7','6','138','0','0','Munificent Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135849','2','2','8','49223','17','1','138','0','1','Featherweight Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135851','2','2','13','49468','21','1','138','0','7','Acid-Etched Knuckles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135852','2','2','15','49207','13','1','138','0','3','Fullered Coldsteel Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135856','2','2','3','49226','26','1','138','0','0','Hair-Trigger Blunderbuss','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135857','2','4','6','51453','14','1','138','0','4','Munificent Bulwark','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135858','2','4','0','50191','23','3','138','0','7','Tome of Alacrity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135859','2','4','1','51040','5','7','138','0','0','Fire-Purifying Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135860','2','4','2','49903','8','8','138','0','0','Flexible Leather Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135861','2','4','3','51072','6','5','138','0','0','Inescapable Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135862','2','4','4','51087','5','6','138','0','0','Light-Bound Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135863','2','4','1','51035','7','7','138','0','0','Earth-Infused Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135864','2','4','2','49263','1','8','138','0','0','Fizznik\'s Patented Earwarmer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135865','2','4','6','51454','14','1','138','0','4','Arcanum Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135866','2','4','4','51089','8','6','138','0','0','Master Artilleryman Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135867','2','4','0','49225','11','8','138','0','0','Nimblefinger Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135868','2','4','2','49241','7','8','138','0','0','Grounded Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135869','2','4','3','49496','1','5','138','0','0','Hex-Linked Stronghelm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135870','2','2','1','49227','17','1','138','0','1','Stoneground Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135871','2','4','1','51045','20','7','138','0','0','Indigo Robe of Replenishment','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135872','2','4','2','49241','7','6','138','0','0','Iron-Studded Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135873','2','4','3','51074','6','5','138','0','0','Interlinked Chain Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135875','2','4','4','61307','1','6','138','0','0','Beneficent Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135876','2','4','1','37556','16','7','138','0','0','Talbuk Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135877','2','4','2','49246','3','8','138','0','0','Worgskin Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135878','2','4','3','51061','7','5','138','0','0','Dusk-Linked Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135879','2','4','4','51085','6','6','138','0','0','Gold-Plated Coldsteel Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135880','2','4','1','51038','8','7','138','0','0','Earthwell Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135881','2','4','0','26001','11','3','138','0','0','Lost Vrykul Signet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135882','2','4','3','49505','1','5','138','0','0','Magispike Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135883','2','4','4','51096','10','6','138','0','0','Silversteel Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135884','2','4','1','51049','7','7','138','0','0','Regal Pantaloons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135885','2','4','2','49255','5','8','138','0','0','Tribal Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135886','2','4','0','9860','2','3','138','0','0','Worgtooth Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135887','2','4','4','51088','8','6','138','0','0','Loam-Stained Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135888','2','4','1','51039','6','7','138','0','0','Embossed Ermine Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135889','2','4','2','56355','9','7','138','0','0','Bone-Inlaid Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135890','2','4','3','49362','3','5','138','0','0','Magdun Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135891','2','4','4','49510','1','6','138','0','0','Runeplate Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135892','2','4','1','51235','10','7','138','0','0','Flamebinder Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135893','2','4','2','52377','6','8','138','0','0','Coldstone-Inlaid Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135894','2','4','3','51075','9','5','138','0','0','Purestrike Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135895','2','4','4','49512','3','6','138','0','0','Emeraldscale Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135896','2','4','1','51044','9','7','138','0','0','Icestriker Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135897','2','4','1','49230','16','7','138','0','0','Ice-Crusted Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135898','2','4','3','51062','5','5','138','0','0','Reinforced Tuskhide Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135899','2','4','4','51083','6','6','138','0','0','Bloodbinder\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135900','2','4','1','51050','8','6','138','0','0','Supple Doeskin Moccasins','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135901','2','4','2','49258','6','8','138','0','0','Rejuvenating Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135902','2','4','3','49521','3','5','138','0','0','Shock-Bound Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135903','2','4','4','51093','10','5','138','0','0','Onyx Grips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135904','2','4','0','6490','2','4','138','0','0','Puissance-Infused Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135905','2','4','2','49247','5','8','138','0','0','Vinewoven Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135909','2','4','3','51078','8','5','138','0','0','Sun-fired Striders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135910','2','4','4','51095','9','6','138','0','0','Shaleground Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135911','2','4','0','28812','11','3','138','0','0','Unsparing Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135912','2','4','1','15206','16','7','138','0','0','Crackling Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135913','2','4','1','51043','7','7','138','0','0','Gholamweave Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135914','2','4','2','49246','3','8','138','0','0','Proto-Drake Tooth Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135915','2','4','3','51070','8','5','138','0','0','Darksteel Ringmail Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135916','2','4','4','51098','5','6','138','0','0','Worgblood Berserker\'s Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135917','2','4','1','49538','3','7','138','0','0','Wrathwrought Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135918','2','4','2','49263','1','8','138','0','0','Spiked Skullguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135919','2','4','3','51079','10','5','138','0','0','Whispersteel Handguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135920','2','4','4','53048','3','6','138','0','0','Feather-Lined Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135921','2','4','1','49536','3','7','138','0','0','Flint-Reinforced Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135922','2','4','0','26391','11','3','138','0','0','Dark Iron Signet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135923','2','4','3','51068','9','5','138','0','0','Cold-Iron Armbands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135924','2','4','4','51082','9','6','138','0','0','Arcanum-Bound Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135925','2','4','0','49229','11','8','138','0','0','Shimmering Cold-Iron Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135926','2','4','2','49930','7','6','138','0','0','Artfully Tooled Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135927','2','4','3','51076','5','5','138','0','0','Songscale Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135928','2','4','4','56188','7','6','138','0','0','Cold-Forged Bronze Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135929','2','4','1','51042','6','7','138','0','0','Gholamcloth Wrap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135930','2','4','2','49261','8','8','138','0','0','Inscribed Worghide Treads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135931','2','4','3','51061','7','5','138','0','0','Appointed Scalemail Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135932','2','4','0','28812','11','3','138','0','0','Earthbinder\'s Regenerating Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135933','2','4','3','49527','1','5','138','0','0','Ramshorn Greathelm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135934','2','4','4','51084','8','6','138','0','0','Ghoul-Crushing Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135935','2','4','0','34188','12','8','138','0','0','Infused Coldstone Rune','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135936','2','4','0','49267','2','4','138','0','0','Worg-Fang Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135937','2','4','0','16283','12','4','138','0','0','Braxley\'s Backyard Moonshine','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135938','2','4','1','49231','16','7','138','0','0','Drape of Munificence','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135955','2','4','1','52069','6','7','130','67','0','Farshire Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135956','2','4','1','52104','8','7','130','67','0','Farshire Footpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135957','2','4','1','52219','20','7','130','67','0','Farshire Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135958','2','4','1','52118','10','7','130','67','0','Farshire Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135959','2','4','1','52516','1','7','130','67','0','Farshire Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135960','2','4','1','52120','7','7','130','67','0','Farshire Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135961','2','4','1','49536','3','7','130','67','0','Farshire Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135962','2','4','1','52071','9','7','130','67','0','Farshire Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135963','2','4','1','52126','6','7','134','68','0','Bloodspore Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135964','2','4','1','52125','8','7','134','68','0','Bloodspore Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135965','2','4','1','52218','20','7','134','68','0','Bloodspore Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135966','2','4','1','51145','10','7','134','68','0','Bloodspore Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135967','2','4','1','51203','1','7','134','68','0','Bloodspore Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135968','2','4','1','52123','7','7','134','68','0','Bloodspore Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135969','2','4','1','49538','3','7','134','68','0','Bloodspore Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135970','2','4','1','52122','9','7','134','68','0','Bloodspore Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135971','2','4','1','52069','6','7','138','69','0','Mur\'ghoul Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135972','2','4','1','52104','8','7','138','69','0','Mur\'ghoul Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135973','2','4','1','52219','20','7','138','69','0','Mur\'ghoul Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135974','2','4','1','52118','10','7','138','69','0','Mur\'ghoul Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135975','2','4','1','52516','1','7','138','69','0','Mur\'ghoul Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135976','2','4','1','52120','7','7','138','69','0','Mur\'ghoul Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135977','2','4','1','49536','3','7','138','69','0','Mur\'ghoul Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135978','2','4','1','52071','9','7','138','69','0','Mur\'ghoul Wristwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135979','2','4','1','52126','6','7','142','70','0','Foothold Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135980','2','4','1','52125','8','7','142','70','0','Foothold Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135981','2','4','1','52218','20','7','142','70','0','Foothold Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135982','2','4','1','51145','10','7','142','70','0','Foothold Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135983','2','4','1','51203','1','7','142','70','0','Foothold Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135984','2','4','1','52123','7','7','142','70','0','Foothold Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135985','2','4','1','49538','3','7','142','70','0','Foothold Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135986','2','4','1','52122','9','7','142','70','0','Foothold Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135987','2','4','1','52069','6','7','146','71','0','Bristlepine Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135988','2','4','1','52104','8','7','146','71','0','Bristlepine Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135989','2','4','1','52219','20','7','146','71','0','Bristlepine Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135990','2','4','1','52118','10','7','146','71','0','Bristlepine Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135991','2','4','1','52516','1','7','146','71','0','Bristlepine Headpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135992','2','4','1','52120','7','7','146','71','0','Bristlepine Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135993','2','4','1','49536','3','7','146','71','0','Bristlepine Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135994','2','4','1','52071','9','7','146','71','0','Bristlepine Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135995','2','4','1','52126','6','7','150','72','0','Voldrune Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135996','2','4','1','52125','8','7','150','72','0','Voldrune Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135997','2','4','1','52218','20','7','150','72','0','Voldrune Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135998','2','4','1','51145','10','7','150','72','0','Voldrune Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('135999','2','4','1','51203','1','7','150','72','0','Voldrune Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136000','2','4','1','52123','7','7','150','72','0','Voldrune Legs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136001','2','4','1','49538','3','7','150','72','0','Voldrune Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136002','2','4','1','52122','9','7','150','72','0','Voldrune Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136003','2','4','1','52069','6','7','154','73','0','Icemist Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136004','2','4','1','52104','8','7','154','73','0','Icemist Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136005','2','4','1','52219','20','7','154','73','0','Icemist Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136006','2','4','1','52118','10','7','154','73','0','Icemist Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136007','2','4','1','52516','1','7','154','73','0','Icemist Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136008','2','4','1','52120','7','7','154','73','0','Icemist Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136009','2','4','1','49536','3','7','154','73','0','Icemist Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136010','2','4','1','52071','9','7','154','73','0','Icemist Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136011','2','4','1','52126','6','7','158','74','0','Tethys Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136012','2','4','1','52125','8','7','158','74','0','Tethys Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136013','2','4','1','52218','20','7','158','74','0','Tethys Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136014','2','4','1','51145','10','7','158','74','0','Tethys Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136015','2','4','1','51203','1','7','158','74','0','Tethys Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136016','2','4','1','52123','7','7','158','74','0','Tethys Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136017','2','4','1','49538','3','7','158','74','0','Tethys Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136018','2','4','1','52122','9','7','158','74','0','Tethys Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136019','2','4','1','52069','6','7','162','75','0','Aerie Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136020','2','4','1','52112','8','7','162','75','0','Aerie Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136021','2','4','1','51845','20','7','162','75','0','Aerie Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136022','2','4','1','51837','10','7','162','75','0','Aerie Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136023','2','4','1','52103','1','7','162','75','0','Aerie Headpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136024','2','4','1','52106','7','7','162','75','0','Aerie Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136025','2','4','1','52109','3','7','162','75','0','Aerie Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136026','2','4','1','51777','9','7','162','75','0','Aerie Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136027','2','4','1','51783','6','7','166','76','0','Oracle Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136028','2','4','1','52117','8','7','166','76','0','Oracle Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136029','2','4','1','52032','20','7','166','76','0','Oracle Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136030','2','4','1','51780','10','7','166','76','0','Oracle Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136031','2','4','1','51192','1','7','166','76','0','Oracle Circlet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136032','2','4','1','52114','7','7','166','76','0','Oracle Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136033','2','4','1','52068','3','7','166','76','0','Oracle Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136034','2','4','1','52113','9','7','166','76','0','Oracle Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136035','2','4','1','52110','6','7','170','77','0','Condor Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136036','2','4','1','52112','8','7','170','77','0','Condor Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136037','2','4','1','51845','20','7','170','77','0','Condor Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136038','2','4','1','51837','10','7','170','77','0','Condor Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136039','2','4','1','52103','1','7','170','77','0','Condor Headpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136040','2','4','1','52106','7','7','170','77','0','Condor Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136041','2','4','1','52109','3','7','170','77','0','Condor Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136042','2','4','1','51777','9','7','170','77','0','Condor Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136043','2','4','1','51783','6','7','174','78','0','Crystalsong Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136044','2','4','1','52117','8','7','174','78','0','Crystalsong Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136045','2','4','1','52032','20','7','174','78','0','Crystalsong Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136046','2','4','1','51840','10','7','174','78','0','Crystalsong Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136047','2','4','1','51192','1','7','174','78','0','Crystalsong Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136048','2','4','1','52114','7','7','174','78','0','Crystalsong Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136049','2','4','1','52068','3','7','174','78','0','Crystalsong Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136050','2','4','1','52113','9','7','174','78','0','Crystalsong Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136051','2','4','1','52110','6','7','178','79','0','Vizier Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136052','2','4','1','52112','8','7','178','79','0','Vizier Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136053','2','4','1','51845','20','7','178','79','0','Vizier Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136054','2','4','1','51837','10','7','178','79','0','Vizier Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136055','2','4','1','52103','1','7','178','79','0','Vizier Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136056','2','4','1','52106','7','7','178','79','0','Vizier Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136057','2','4','1','52109','3','7','178','79','0','Vizier Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136058','2','4','1','51777','9','7','178','79','0','Vizier Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136059','2','4','1','51783','6','7','182','80','0','Coldwraith Sash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136060','2','4','1','52073','8','7','182','80','0','Coldwraith Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136061','2','4','1','52220','20','7','182','80','0','Coldwraith Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136062','2','4','1','51780','10','7','182','80','0','Coldwraith Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136063','2','4','1','51192','1','7','182','80','0','Coldwraith Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136064','2','4','1','51781','7','7','182','80','0','Coldwraith Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136065','2','4','1','52068','3','7','182','80','0','Coldwraith Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136066','2','4','1','51777','9','7','182','80','0','Coldwraith Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136067','2','4','2','49257','6','8','130','67','0','Daggercap Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136068','2','4','2','49903','8','8','130','67','0','Daggercap Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136069','2','4','2','49790','5','8','130','67','0','Daggercap Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136070','2','4','2','49251','10','8','130','67','0','Daggercap Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136071','2','4','2','49797','1','8','130','67','0','Daggercap Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136072','2','4','2','49241','7','8','130','67','0','Daggercap Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136073','2','4','2','49246','3','8','130','67','0','Daggercap Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136074','2','4','2','49256','9','8','130','67','0','Daggercap Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136075','2','4','2','49257','6','8','134','68','0','Winterfin Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136076','2','4','2','49903','8','8','134','68','0','Winterfin Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136077','2','4','2','49790','5','8','134','68','0','Winterfin Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136078','2','4','2','49251','10','8','134','68','0','Winterfin Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136079','2','4','2','49797','1','8','134','68','0','Winterfin Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136080','2','4','2','49241','7','8','134','68','0','Winterfin Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136081','2','4','2','49246','3','8','134','68','0','Winterfin Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136082','2','4','2','49256','9','8','134','68','0','Winterfin Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136083','2','4','2','49814','6','8','138','69','0','Riplash Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136084','2','4','2','49905','8','8','138','69','0','Riplash Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136085','2','4','2','49255','5','8','138','69','0','Riplash Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136086','2','4','2','49912','10','8','138','69','0','Riplash Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136087','2','4','2','49264','1','8','138','69','0','Riplash Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136088','2','4','2','49850','7','8','138','69','0','Riplash Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136089','2','4','2','49845','3','8','138','69','0','Riplash Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136090','2','4','2','49859','9','8','138','69','0','Riplash Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136091','2','4','2','49815','6','8','142','70','0','Wildevar Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136092','2','4','2','49904','8','8','142','70','0','Wildevar Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136093','2','4','2','49811','5','8','142','70','0','Wildevar Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136094','2','4','2','49911','10','8','142','70','0','Wildevar Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136095','2','4','2','49842','1','8','142','70','0','Wildevar Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136096','2','4','2','49851','7','8','142','70','0','Wildevar Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136097','2','4','2','49847','3','8','142','70','0','Wildevar Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136098','2','4','2','49860','9','8','142','70','0','Wildevar Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136099','2','4','2','49815','6','8','146','71','0','Caribou Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136100','2','4','2','49904','8','8','146','71','0','Caribou Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136101','2','4','2','49811','5','8','146','71','0','Caribou Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136102','2','4','2','49911','10','8','146','71','0','Caribou Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136103','2','4','2','49842','1','8','146','71','0','Caribou Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136104','2','4','2','49851','7','8','146','71','0','Caribou Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136105','2','4','2','49847','3','8','146','71','0','Caribou Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136106','2','4','2','49860','9','8','146','71','0','Caribou Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136107','2','4','2','49816','6','8','150','72','0','Vileprey Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136108','2','4','2','49906','8','8','150','72','0','Vileprey Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136109','2','4','2','49813','5','8','150','72','0','Vileprey Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136110','2','4','2','49913','10','8','150','72','0','Vileprey Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136111','2','4','2','49843','1','8','150','72','0','Vileprey Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136112','2','4','2','49852','7','8','150','72','0','Vileprey Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136113','2','4','2','49848','3','8','150','72','0','Vileprey Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136114','2','4','2','49863','9','8','150','72','0','Vileprey Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136115','2','4','2','49817','6','8','154','73','0','Taunka Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136116','2','4','2','49902','8','8','154','73','0','Taunka Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136117','2','4','2','49809','5','8','154','73','0','Taunka Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136118','2','4','2','49910','10','8','154','73','0','Taunka Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136119','2','4','2','49844','1','8','154','73','0','Taunka Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136120','2','4','2','49853','7','8','154','73','0','Taunka Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136121','2','4','2','49849','3','8','154','73','0','Taunka Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136122','2','4','2','49864','9','8','154','73','0','Taunka Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136123','2','4','2','49817','6','8','158','74','0','Muradin Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136124','2','4','2','49902','8','8','158','74','0','Muradin Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136125','2','4','2','49809','5','8','158','74','0','Muradin Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136126','2','4','2','49910','10','8','158','74','0','Muradin Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136127','2','4','2','49844','1','8','158','74','0','Muradin Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136128','2','4','2','49853','7','8','158','74','0','Muradin Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136129','2','4','2','49849','3','8','158','74','0','Muradin Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136130','2','4','2','49864','9','8','158','74','0','Muradin Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136131','2','4','2','49908','6','8','162','75','0','Wolverine Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136132','2','4','2','49901','8','8','162','75','0','Wolverine Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136133','2','4','2','49914','5','8','162','75','0','Wolverine Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136134','2','4','2','49909','10','8','162','75','0','Wolverine Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136135','2','4','2','51784','1','8','162','75','0','Wolverine Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136136','2','4','2','49927','7','8','162','75','0','Wolverine Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136137','2','4','2','49898','3','8','162','75','0','Wolverine Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136138','2','4','2','49899','9','8','162','75','0','Wolverine Armguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136139','2','4','2','49908','6','8','166','76','0','Ghrino Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136140','2','4','2','49901','8','8','166','76','0','Ghrino Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136141','2','4','2','49914','5','8','166','76','0','Ghrino Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136142','2','4','2','49909','10','8','166','76','0','Ghrino Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136143','2','4','2','51784','1','8','166','76','0','Ghrino Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136144','2','4','2','49927','7','8','166','76','0','Ghrino Britches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136145','2','4','2','49898','3','8','166','76','0','Ghrino Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136146','2','4','2','49899','9','8','166','76','0','Ghrino Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136147','2','4','2','49924','6','8','170','77','0','Pygmy Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136148','2','4','2','49978','8','8','170','77','0','Pygmy Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136149','2','4','2','49921','5','8','170','77','0','Pygmy Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136150','2','4','2','49984','10','8','170','77','0','Pygmy Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136151','2','4','2','52517','1','8','170','77','0','Pygmy Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136152','2','4','2','49928','7','8','170','77','0','Pygmy Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136153','2','4','2','49918','3','8','170','77','0','Pygmy Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136154','2','4','2','49981','9','8','170','77','0','Pygmy Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136155','2','4','2','49925','6','8','174','78','0','Wendigo Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136156','2','4','2','49979','8','8','174','78','0','Wendigo Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136157','2','4','2','49922','5','8','174','78','0','Wendigo Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136158','2','4','2','49985','10','8','174','78','0','Wendigo Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136159','2','4','2','52518','1','8','174','78','0','Wendigo Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136160','2','4','2','49929','7','8','174','78','0','Wendigo Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136161','2','4','2','49919','3','8','174','78','0','Wendigo Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136162','2','4','2','49982','9','8','174','78','0','Wendigo Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136163','2','4','2','49925','6','8','178','79','0','Webspinner Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136164','2','4','2','49979','8','8','178','79','0','Webspinner Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136165','2','4','2','49922','5','8','178','79','0','Webspinner Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136166','2','4','2','49985','10','8','178','79','0','Webspinner Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136167','2','4','2','52518','1','8','178','79','0','Webspinner Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136168','2','4','2','49929','7','8','178','79','0','Webspinner Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136169','2','4','2','49919','3','8','178','79','0','Webspinner Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136170','2','4','2','49982','9','8','178','79','0','Webspinner Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136171','2','4','2','49926','6','8','182','80','0','Geist Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136172','2','4','2','49980','8','8','182','80','0','Geist Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136173','2','4','2','49923','5','8','182','80','0','Geist Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136174','2','4','2','49986','10','8','182','80','0','Geist Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136175','2','4','2','52519','1','8','182','80','0','Geist Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136176','2','4','2','49930','7','8','182','80','0','Geist Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136177','2','4','2','49920','3','8','182','80','0','Geist Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136178','2','4','2','49983','9','8','182','80','0','Geist Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136179','2','4','3','52133','6','5','130','67','0','Garmaul Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136180','2','4','3','52135','8','5','130','67','0','Garmaul Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136181','2','4','3','52128','5','5','130','67','0','Garmaul Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136182','2','4','3','52129','10','5','130','67','0','Garmaul Fists','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136183','2','4','3','52496','1','5','130','67','0','Garmaul Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136184','2','4','3','52155','7','5','130','67','0','Garmaul Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136185','2','4','3','51237','3','5','130','67','0','Garmaul Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136186','2','4','3','51075','9','5','130','67','0','Garmaul Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136187','2','4','3','52145','6','5','134','68','0','Njord Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136188','2','4','3','52146','8','5','134','68','0','Njord Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136189','2','4','3','52147','5','5','134','68','0','Njord Chain Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136190','2','4','3','52148','10','5','134','68','0','Njord Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136191','2','4','3','52497','1','5','134','68','0','Njord Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136192','2','4','3','52153','7','5','134','68','0','Njord Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136193','2','4','3','52151','3','5','134','68','0','Njord Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136194','2','4','3','51212','9','5','134','68','0','Njord Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136195','2','4','3','52133','6','5','138','69','0','Skom Stitched-Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136196','2','4','3','52135','8','5','138','69','0','Skom Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136197','2','4','3','52128','5','5','138','69','0','Skom Chain Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136198','2','4','3','52129','10','5','138','69','0','Skom Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136199','2','4','3','52495','1','5','138','69','0','Skom Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136200','2','4','3','52155','7','5','138','69','0','Skom Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136201','2','4','3','51237','3','5','138','69','0','Skom Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136202','2','4','3','51075','9','5','138','69','0','Skom Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136203','2','4','3','52145','6','5','142','70','0','Nifflevar Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136204','2','4','3','52146','8','5','142','70','0','Nifflevar Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136205','2','4','3','52147','5','5','142','70','0','Nifflevar Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136206','2','4','3','52148','10','5','142','70','0','Nifflevar Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136207','2','4','3','52498','1','5','142','70','0','Nifflevar Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136208','2','4','3','52153','7','5','142','70','0','Nifflevar Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136209','2','4','3','52151','3','5','142','70','0','Nifflevar Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136210','2','4','3','51212','9','5','142','70','0','Nifflevar Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136211','2','4','3','52133','6','5','146','71','0','Orca Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136212','2','4','3','52135','8','5','146','71','0','Orca Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136213','2','4','3','52128','5','5','146','71','0','Orca Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136214','2','4','3','52129','10','5','146','71','0','Orca Fists','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136215','2','4','3','52495','1','5','146','71','0','Orca Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136216','2','4','3','52155','7','5','146','71','0','Orca Legwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136217','2','4','3','51237','3','5','146','71','0','Orca Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136218','2','4','3','51075','9','5','146','71','0','Orca Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136219','2','4','3','52145','6','5','150','72','0','Amberpine Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136220','2','4','3','52146','8','5','150','72','0','Amberpine Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136221','2','4','3','52147','5','5','150','72','0','Amberpine Chain Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136222','2','4','3','52148','10','5','150','72','0','Amberpine Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136223','2','4','3','52498','1','5','150','72','0','Amberpine Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136224','2','4','3','52153','7','5','150','72','0','Amberpine Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136225','2','4','3','52151','3','5','150','72','0','Amberpine Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136226','2','4','3','51212','9','5','150','72','0','Amberpine Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136227','2','4','3','52133','6','5','154','73','0','Trapper Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136228','2','4','3','52135','8','5','154','73','0','Trapper Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136229','2','4','3','52128','5','5','154','73','0','Trapper Chain Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136230','2','4','3','52129','10','5','154','73','0','Trapper Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136231','2','4','3','52495','1','5','154','73','0','Trapper Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136232','2','4','3','52155','7','5','154','73','0','Trapper Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136233','2','4','3','51237','3','5','154','73','0','Trapper Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136234','2','4','3','51075','9','5','154','73','0','Trapper Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136235','2','4','3','52145','6','5','158','74','0','Shoveltusk Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136236','2','4','3','52146','8','5','158','74','0','Shoveltusk Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136237','2','4','3','52147','5','5','158','74','0','Shoveltusk Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136238','2','4','3','52148','10','5','158','74','0','Shoveltusk Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136239','2','4','3','52498','1','5','158','74','0','Shoveltusk Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136240','2','4','3','52153','7','5','158','74','0','Shoveltusk Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136241','2','4','3','52151','3','5','158','74','0','Shoveltusk Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136242','2','4','3','51212','9','5','158','74','0','Shoveltusk Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136243','2','4','3','52166','6','5','162','75','0','Mammoth Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136244','2','4','3','52163','8','5','162','75','0','Mammoth Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136245','2','4','3','51887','5','5','162','75','0','Mammoth Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136246','2','4','3','52164','10','5','162','75','0','Mammoth Fists','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136247','2','4','3','51872','1','5','162','75','0','Mammoth Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136248','2','4','3','52167','7','5','162','75','0','Mammoth Legwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136249','2','4','3','51883','3','5','162','75','0','Mammoth Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136250','2','4','3','52165','9','5','162','75','0','Mammoth Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136251','2','4','3','52166','6','5','166','76','0','Wolvar Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136252','2','4','3','52163','8','5','166','76','0','Wolvar Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136253','2','4','3','51887','5','5','166','76','0','Wolvar Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136254','2','4','3','52164','10','5','166','76','0','Wolvar Fists','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136255','2','4','3','51872','1','5','166','76','0','Wolvar Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136256','2','4','3','52167','7','5','166','76','0','Wolvar Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136257','2','4','3','51883','3','5','166','76','0','Wolvar Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136258','2','4','3','52165','9','5','166','76','0','Wolvar Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136259','2','4','3','57612','6','5','170','77','0','Cormorant Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136260','2','4','3','52163','8','5','170','77','0','Cormorant Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136261','2','4','3','51887','5','5','170','77','0','Cormorant Chain Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136262','2','4','3','52164','10','5','170','77','0','Cormorant Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136263','2','4','3','51872','1','5','170','77','0','Cormorant Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136264','2','4','3','52167','7','5','170','77','0','Cormorant Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136265','2','4','3','51883','3','5','170','77','0','Cormorant Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136266','2','4','3','52165','9','5','170','77','0','Cormorant Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136267','2','4','3','52166','6','5','174','78','0','Ulduar Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136268','2','4','3','52163','8','5','174','78','0','Ulduar Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136269','2','4','3','51887','5','5','174','78','0','Ulduar Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136270','2','4','3','52164','10','5','174','78','0','Ulduar Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136271','2','4','3','51872','1','5','174','78','0','Ulduar Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136272','2','4','3','52167','7','5','174','78','0','Ulduar Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136273','2','4','3','51883','3','5','174','78','0','Ulduar Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136274','2','4','3','52165','9','5','174','78','0','Ulduar Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136275','2','4','3','52166','6','5','178','79','0','Spiderlord Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136276','2','4','3','52163','8','5','178','79','0','Spiderlord Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136277','2','4','3','51887','5','5','178','79','0','Spiderlord Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136278','2','4','3','52164','10','5','178','79','0','Spiderlord Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136279','2','4','3','51872','1','5','178','79','0','Spiderlord Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136280','2','4','3','52167','7','5','178','79','0','Spiderlord Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136281','2','4','3','51883','3','5','178','79','0','Spiderlord Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136282','2','4','3','52165','9','5','178','79','0','Spiderlord Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136283','2','4','3','52166','6','5','182','80','0','Spectral Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136284','2','4','3','52163','8','5','182','80','0','Spectral Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136285','2','4','3','51887','5','5','182','80','0','Spectral Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136286','2','4','3','52164','10','5','182','80','0','Spectral Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136287','2','4','3','51872','1','5','182','80','0','Spectral Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136288','2','4','3','52167','7','5','182','80','0','Spectral Legwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136289','2','4','3','51883','3','5','182','80','0','Spectral Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136290','2','4','3','52165','9','5','182','80','0','Spectral Bracelets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136291','2','4','4','51653','6','6','130','67','0','Westguard Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136292','2','4','4','51657','8','6','130','67','0','Westguard Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136293','2','4','4','51652','5','6','130','67','0','Westguard Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136294','2','4','4','51656','10','6','130','67','0','Westguard Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136295','2','4','4','61307','1','6','130','67','0','Westguard Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136296','2','4','4','51658','7','6','130','67','0','Westguard Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136297','2','4','4','51951','3','6','130','67','0','Westguard Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136298','2','4','4','51654','9','6','130','67','0','Westguard Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136299','2','4','4','51662','6','6','134','68','0','Coldrock Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136300','2','4','4','51131','8','6','134','68','0','Coldrock Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136301','2','4','4','51660','5','6','134','68','0','Coldrock Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136302','2','4','4','51661','10','6','134','68','0','Coldrock Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136303','2','4','4','51207','1','6','134','68','0','Coldrock Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136304','2','4','4','51663','7','6','134','68','0','Coldrock Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136305','2','4','4','51949','3','6','134','68','0','Coldrock Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136306','2','4','4','51659','9','6','134','68','0','Coldrock Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136307','2','4','4','51676','6','6','138','69','0','Baleheim Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136308','2','4','4','51669','8','6','138','69','0','Baleheim Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136309','2','4','4','51665','5','6','138','69','0','Baleheim Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136310','2','4','4','51668','10','6','138','69','0','Baleheim Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136311','2','4','4','61308','1','6','138','69','0','Baleheim Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136312','2','4','4','51671','7','6','138','69','0','Baleheim Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136313','2','4','4','51950','3','6','138','69','0','Baleheim Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136314','2','4','4','51672','9','6','138','69','0','Baleheim Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136315','2','4','4','51653','6','6','142','70','0','Wyrmskull Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136316','2','4','4','51657','8','6','142','70','0','Wyrmskull Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136317','2','4','4','51652','5','6','142','70','0','Wyrmskull Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136318','2','4','4','51673','10','6','142','70','0','Wyrmskull Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136319','2','4','4','61307','1','6','142','70','0','Wyrmskull Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136320','2','4','4','51674','7','6','142','70','0','Wyrmskull Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136321','2','4','4','51951','3','6','142','70','0','Wyrmskull Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136322','2','4','4','51654','9','6','142','70','0','Wyrmskull Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136323','2','4','4','51675','6','6','146','71','0','Halgrind Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136324','2','4','4','51131','8','6','146','71','0','Halgrind Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136325','2','4','4','51660','5','6','146','71','0','Halgrind Carapace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136326','2','4','4','51661','10','6','146','71','0','Halgrind Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136327','2','4','4','51207','1','6','146','71','0','Halgrind Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136328','2','4','4','51663','7','6','146','71','0','Halgrind Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136329','2','4','4','51949','3','6','146','71','0','Halgrind Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136330','2','4','4','51659','9','6','146','71','0','Halgrind Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136331','2','4','4','51676','6','6','150','72','0','Grizzlemaw Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136332','2','4','4','51669','8','6','150','72','0','Grizzlemaw Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136333','2','4','4','51665','5','6','150','72','0','Grizzlemaw Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136334','2','4','4','51668','10','6','150','72','0','Grizzlemaw Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136335','2','4','4','61308','1','6','150','72','0','Grizzlemaw Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136336','2','4','4','51671','7','6','150','72','0','Grizzlemaw Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136337','2','4','4','51950','3','6','150','72','0','Grizzlemaw Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136338','2','4','4','51672','9','6','150','72','0','Grizzlemaw Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136339','2','4','4','51653','6','6','154','73','0','Bloodmar Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136340','2','4','4','51657','8','6','154','73','0','Bloodmar Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136341','2','4','4','51652','5','6','154','73','0','Bloodmar Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136342','2','4','4','51673','10','6','154','73','0','Bloodmar Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136343','2','4','4','61307','1','6','154','73','0','Bloodmar Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136344','2','4','4','51674','7','6','154','73','0','Bloodmar Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136345','2','4','4','51951','3','6','154','73','0','Bloodmar Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136346','2','4','4','51654','9','6','154','73','0','Bloodmar Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136347','2','4','4','51948','6','6','158','74','0','Jormungar Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136348','2','4','4','51131','8','6','158','74','0','Jormungar Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136349','2','4','4','51660','5','6','158','74','0','Jormungar Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136350','2','4','4','51645','10','6','158','74','0','Jormungar Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136351','2','4','4','51207','1','6','158','74','0','Jormungar Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136352','2','4','4','51663','7','6','158','74','0','Jormungar Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136353','2','4','4','51949','3','6','158','74','0','Jormungar Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136354','2','4','4','51659','9','6','158','74','0','Jormungar Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136355','2','4','4','51953','6','6','162','75','0','Frostpaw Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136356','2','4','4','52046','8','6','162','75','0','Frostpaw Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136357','2','4','4','52048','5','6','162','75','0','Frostpaw Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136358','2','4','4','51954','10','6','162','75','0','Frostpaw Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136359','2','4','4','51891','1','6','162','75','0','Frostpaw Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136360','2','4','4','51955','7','6','162','75','0','Frostpaw Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136361','2','4','4','51892','3','6','162','75','0','Frostpaw Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136362','2','4','4','51897','9','6','162','75','0','Frostpaw Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136363','2','4','4','52043','6','6','166','76','0','Magnataur Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136364','2','4','4','52045','8','6','166','76','0','Magnataur Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136365','2','4','4','52049','5','6','166','76','0','Magnataur Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136366','2','4','4','52042','10','6','166','76','0','Magnataur Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136367','2','4','4','50905','1','6','166','76','0','Magnataur Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136368','2','4','4','52044','7','6','166','76','0','Magnataur Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136369','2','4','4','49725','3','6','166','76','0','Magnataur Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136370','2','4','4','52039','9','6','166','76','0','Magnataur Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136371','2','4','4','52051','6','6','170','77','0','Kraken Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136372','2','4','4','52052','8','6','170','77','0','Kraken Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136373','2','4','4','51633','5','6','170','77','0','Kraken Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136374','2','4','4','52050','10','6','170','77','0','Kraken Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136375','2','4','4','51641','1','6','170','77','0','Kraken Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136376','2','4','4','51640','7','6','170','77','0','Kraken Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136377','2','4','4','49512','3','6','170','77','0','Kraken Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136378','2','4','4','51636','9','6','170','77','0','Kraken Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136379','2','4','4','52055','6','6','174','78','0','Golem Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136380','2','4','4','52057','8','6','174','78','0','Golem Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136381','2','4','4','52053','5','6','174','78','0','Golem Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136382','2','4','4','52054','10','6','174','78','0','Golem Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136383','2','4','4','51904','1','6','174','78','0','Golem Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136384','2','4','4','52056','7','6','174','78','0','Golem Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136385','2','4','4','51297','3','6','174','78','0','Golem Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136386','2','4','4','52058','9','6','174','78','0','Golem Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136387','2','4','4','52063','6','6','178','79','0','Revenant Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136388','2','4','4','52045','8','6','178','79','0','Revenant Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136389','2','4','4','52049','5','6','178','79','0','Revenant Armor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136390','2','4','4','52042','10','6','178','79','0','Revenant Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136391','2','4','4','50905','1','6','178','79','0','Revenant Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136392','2','4','4','52044','7','6','178','79','0','Revenant Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136393','2','4','4','49725','3','6','178','79','0','Revenant Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136394','2','4','4','52064','9','6','178','79','0','Revenant Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136395','2','4','4','51771','6','6','182','80','0','Necropolis Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136396','2','4','4','51775','8','6','182','80','0','Necropolis Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136397','2','4','4','51769','5','6','182','80','0','Necropolis Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136398','2','4','4','51772','10','6','182','80','0','Necropolis Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136399','2','4','4','51773','1','6','182','80','0','Necropolis Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136400','2','4','4','51774','7','6','182','80','0','Necropolis Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136401','2','4','4','51770','3','6','182','80','0','Necropolis Epaulets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136402','2','4','4','51776','9','6','182','80','0','Necropolis Vambraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136403','2','4','1','50050','16','7','130','67','0','Riding Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136404','2','4','1','50051','16','7','134','68','0','Suede Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136405','2','4','1','50052','16','7','138','69','0','Double Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136406','2','4','1','50053','16','7','142','70','0','Wayfarer\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136407','2','4','1','50054','16','7','146','71','0','Lace-Trimmed Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136408','2','4','1','50055','16','7','150','72','0','Reversible Wool Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136409','2','4','1','15076','16','7','154','73','0','Crushed Velvet Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136410','2','4','1','50057','16','7','158','74','0','Caribou Skin Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136411','2','4','1','50058','16','7','162','75','0','Brawler\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136412','2','4','1','23091','16','7','166','76','0','Fleece Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136413','2','4','1','15196','16','7','170','77','0','Dyed Taffeta Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136414','2','4','1','50059','16','7','174','78','0','Mammoth Fur Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136415','2','4','1','50061','16','7','178','79','0','Vintage Satin Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136416','2','4','1','50062','16','7','182','80','0','Regal Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136417','2','4','0','4284','11','3','130','67','0','Oval Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136418','2','4','0','31800','11','3','134','68','0','Floral Loop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136419','2','4','0','24646','11','3','138','69','0','Glass Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136420','2','4','0','9865','11','3','142','70','0','Gemstone Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136421','2','4','0','2854','11','3','146','71','0','Devotional Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136422','2','4','0','31800','11','3','150','72','0','Filigree Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136423','2','4','0','31616','11','3','154','73','0','Posy Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136424','2','4','0','23728','11','3','158','74','0','Cameo Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136425','2','4','0','9836','11','3','162','75','0','Gold Twisted Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136426','2','4','0','31616','11','3','166','76','0','Stirrup Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136427','2','4','0','9834','11','3','170','77','0','Engraved Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136428','2','4','0','31800','11','3','174','78','0','Bouquet Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136429','2','4','0','9840','11','3','178','79','0','Spur Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136430','2','4','0','23897','11','3','182','80','0','Puzzle Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136431','2','4','0','39000','2','3','130','67','0','Painted Wooden Beads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136432','2','4','0','9859','2','3','134','68','0','Silver Rope Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136433','2','4','0','9857','2','3','138','69','0','Snake Entwined Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136434','2','4','0','31889','2','3','142','70','0','Gold Mesh Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136435','2','4','0','15420','2','3','146','71','0','Embroidered Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136436','2','4','0','9658','2','3','150','72','0','Jasper Bead Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136437','2','4','0','6539','2','3','154','73','0','Figaro Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136438','2','4','0','9860','2','3','158','74','0','Shark-Toothed Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136439','2','4','0','9859','2','3','162','75','0','Serpentine Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136440','2','4','0','9854','2','3','166','76','0','Gold Clasped Chain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136441','2','4','0','9858','2','3','170','77','0','Pearl Woven Choker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136442','2','4','0','31603','2','3','174','78','0','Silken Cord Amulet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136443','2','4','0','12567','2','3','178','79','0','Platinum Medallion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136444','2','4','0','9852','2','3','182','80','0','Ice Encrusted Amulet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136445','2','4','6','52185','14','1','130','67','4','Riveted Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136446','2','4','6','52187','14','1','134','68','4','Forged-Iron Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136447','2','4','6','52183','14','1','138','69','4','Kaskala Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136448','2','4','6','52188','14','1','142','70','4','Spiked Targe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136449','2','4','6','52191','14','1','146','71','4','Vrykul Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136450','2','4','6','52190','14','1','150','72','4','Strapped Heater Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136451','2','4','6','52182','14','1','154','73','4','Kamagua Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136452','2','4','6','52189','14','1','158','74','4','Spoke Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136453','2','4','6','52186','14','1','162','75','4','Embossed Brazen Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136454','2','4','6','52176','14','1','166','76','4','Domed Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136455','2','4','6','52184','14','1','170','77','4','Plated Bulwark','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136456','2','4','6','52180','14','1','174','78','4','Icy Kite Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136457','2','4','6','52181','14','1','178','79','4','Ivory Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136458','2','4','6','52179','14','1','182','80','4','Frozen Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136459','2','4','0','50236','23','3','130','67','0','Icy Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136460','2','4','0','24061','23','3','134','68','0','Northern Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136461','2','4','0','50245','23','3','138','69','0','Demon-Skull Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136462','2','4','0','50238','23','3','142','70','0','Coldarra Crystal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136463','2','4','0','50239','23','3','146','71','0','Polished Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136464','2','4','0','50313','23','3','150','72','0','Darkened Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136465','2','4','0','50241','23','3','154','73','0','Evergreen Branch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136466','2','4','0','27756','23','3','158','74','0','Facetted Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136467','2','4','0','21605','23','3','162','75','0','Reflecting Sphere','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136468','2','4','0','22923','23','3','166','76','0','Glistening Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136469','2','4','0','31120','23','3','170','77','0','Lidless Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136470','2','4','0','50313','23','3','174','78','0','Gilded Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136471','2','4','0','28337','23','3','178','79','0','Ice Crystal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136472','2','4','0','50243','23','3','182','80','0','Carved Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136473','2','2','15','50118','13','1','130','67','3','Pioneer\'s Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136474','2','2','15','50119','13','1','134','68','3','Engraved Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136475','2','2','15','50124','13','1','138','69','3','Seal Shortblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136476','2','2','15','50121','13','1','142','70','3','Whale Ripper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136477','2','2','15','50119','13','1','146','71','3','Twin-Edged Stiletto','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136478','2','2','15','49206','13','1','150','72','3','Frosty Talon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136479','2','2','15','50122','13','1','154','73','3','Snobold Ripper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136480','2','2','15','50119','13','1','158','74','3','Ebony Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136481','2','2','15','50118','13','1','162','75','3','Trapper Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136482','2','2','15','50123','13','1','166','76','3','Parrying Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136483','2','2','15','50121','13','1','170','77','3','Mandible Edge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136484','2','2','15','50125','13','1','174','78','3','Etched Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136485','2','2','15','49206','13','1','178','79','3','Sinuous Keris','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136486','2','2','15','50126','13','1','182','80','3','Ornate Pugio','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136487','2','2','4','50197','13','2','130','67','3','Stone-Headed Gavel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136488','2','2','4','50198','13','2','134','68','3','Conifer Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136489','2','2','4','50199','13','2','138','69','3','Iron Flanged Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136490','2','2','4','49201','13','2','142','70','3','Tuskarr Cudgel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136491','2','2','4','50200','13','2','146','71','3','Serrated Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136492','2','2','4','50201','13','2','150','72','3','Peaked Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136493','2','2','4','50202','13','2','154','73','3','Furbolg Truncheon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136494','2','2','4','50203','13','2','158','74','3','Barbed Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136495','2','2','4','50204','13','2','162','75','3','Ferrous Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136496','2','2','4','50202','13','2','166','76','3','Brass-Bound Cudgel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136497','2','2','4','50206','13','2','170','77','3','Adamant Mallet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136498','2','2','4','50205','13','2','174','78','3','Nerubian Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136499','2','2','4','50201','13','2','178','79','3','Frigid War-Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136500','2','2','4','50210','13','2','182','80','3','Gargoyle\'s Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136501','2','2','5','50320','17','2','130','67','1','Granite Maul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136502','2','2','5','50247','17','2','134','68','1','Ungainly Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136503','2','2','5','49203','17','2','138','69','1','Toothless Bludgeon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136504','2','2','5','50316','17','2','142','70','1','Cleft-Edged Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136505','2','2','5','50319','17','2','146','71','1','Frosted Steel Mallet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136506','2','2','5','50325','17','2','150','72','1','Vaulted Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136507','2','2','5','50320','17','2','154','73','1','Iron-Molded Fist','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136508','2','2','5','50252','17','2','158','74','1','Cumbersome Sledgehammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136509','2','2','5','50253','17','2','162','75','1','Femur-Shafted Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136510','2','2','5','50254','17','2','166','76','1','Lumbering Bludgeon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136511','2','2','5','50315','17','2','170','77','1','Arctic War Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136512','2','2','5','50254','17','2','174','78','1','Onerous Mallet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136513','2','2','5','50322','17','2','178','79','1','Lode-Headed Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136514','2','2','5','50321','17','2','182','80','1','Kingly Battlehammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136515','2','2','7','50260','13','1','130','67','3','Raider\'s Cutlass','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136516','2','2','7','50261','13','1','134','68','3','Tribal Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136517','2','2','7','50262','13','1','138','69','3','Iron-Grip Shortsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136518','2','2','7','50267','13','1','142','70','3','Tundra\'s Edge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136519','2','2','7','50264','13','1','146','71','3','Moonlit Katana','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136520','2','2','7','49199','13','1','150','72','3','Chopping Wideblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136521','2','2','7','50265','13','1','154','73','3','Shimmering Sabre','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136522','2','2','7','50266','13','1','158','74','3','Scored Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136523','2','2','7','50268','13','1','162','75','3','Trollish Slicer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136524','2','2','7','50269','13','1','166','76','3','Primitive Scimitar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136525','2','2','7','50265','13','1','170','77','3','Craggy Machete','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136526','2','2','7','50270','13','1','174','78','3','Sleeted Longsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136527','2','2','7','50263','13','1','178','79','3','Blackened Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136528','2','2','7','50271','13','1','182','80','3','Skeleton\'s Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136529','2','2','8','49223','17','1','130','67','1','Unearthed Broadsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136530','2','2','8','50334','17','1','134','68','1','Whetted Ironblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136531','2','2','8','50327','17','1','138','69','1','Sawtooth Greatsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136532','2','2','8','50331','17','1','142','70','1','Shark Fin Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136533','2','2','8','50326','17','1','146','71','1','Adorned Broadsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136534','2','2','8','50332','17','1','150','72','1','Tempered-Steel Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136535','2','2','8','50328','17','1','154','73','1','Dragon\'s Rib Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136536','2','2','8','50329','17','1','158','74','1','Inlaid Greatsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136537','2','2','8','50326','17','1','162','75','1','Fur-Grip Broadsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136538','2','2','8','50333','17','1','166','76','1','Trollish Destroyer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136539','2','2','8','50327','17','1','170','77','1','Chilled Warblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136540','2','2','8','50330','17','1','174','78','1','Petrified Sword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136541','2','2','8','50332','17','1','178','79','1','Wintry Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136542','2','2','8','50326','17','1','182','80','1','Invasion Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136543','2','2','10','50134','17','2','130','67','2','Survival Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136544','2','2','10','50135','17','2','134','68','2','Journeyed Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136545','2','2','10','50136','17','2','138','69','2','Branched Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136546','2','2','10','50137','17','2','142','70','2','Unusual Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136547','2','2','10','50138','17','2','146','71','2','Jester\'s Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136548','2','2','10','50139','17','2','150','72','2','Promised Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136549','2','2','10','50346','17','2','154','73','2','Pulsing Quarterstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136550','2','2','10','50344','17','2','158','74','2','Refulgent Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136551','2','2','10','50143','17','2','162','75','2','Ritual Greatstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136552','2','2','10','50347','17','2','166','76','2','Spiked Greatstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136553','2','2','10','50345','17','2','170','77','2','Desecrated Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136554','2','2','10','50146','17','2','174','78','2','Cursed Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136555','2','2','10','50147','17','2','178','79','2','Minion Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136556','2','2','10','50343','17','2','182','80','2','Apocalyptic Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136557','2','2','13','31314','13','1','130','67','3','Meat Ripper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136558','2','2','13','50370','13','1','134','68','3','Curved Scratcher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136559','2','2','13','50371','13','1','138','69','3','Prized Handscythes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136560','2','2','13','50370','13','1','142','70','3','Fighter\'s Grip','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136561','2','2','13','50370','13','1','146','71','3','Mummified Paw','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136562','2','2','13','50371','13','1','150','72','3','Blue-Nailed Claws','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136563','2','2','13','50371','13','1','154','73','3','Gloved Talons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136564','2','2','13','31314','13','1','158','74','3','Spider Claw','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136565','2','2','13','31314','13','1','162','75','3','Hero\'s Knuckles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136566','2','2','13','50370','13','1','166','76','3','Gilded Fangs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136567','2','2','13','50370','13','1','170','77','3','Six-Fingered Claws','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136568','2','2','13','50371','13','1','174','78','3','Hollowed Bone Knuckles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136569','2','2','13','31314','13','1','178','79','3','Savage Talons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136570','2','2','13','31314','13','1','182','80','3','Corrupted Scythes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136571','2','2','0','50063','13','1','130','67','3','Splicing Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136572','2','2','0','50064','13','1','134','68','3','Dinged Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136573','2','2','0','50073','13','1','138','69','3','Primeval Adze','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136574','2','2','0','50067','13','1','142','70','3','Bone Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136575','2','2','0','50068','13','1','146','71','3','Dragonflayer Hatchet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136576','2','2','0','50070','13','1','150','72','3','Beaked Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136577','2','2','0','50074','13','1','154','73','3','Disk Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136578','2','2','0','50072','13','1','158','74','3','Troll Chopper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136579','2','2','0','50065','13','1','162','75','3','Boreal Woodchopper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136580','2','2','0','50075','13','1','166','76','3','Dire Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136581','2','2','0','50071','13','1','170','77','3','Wolvar Handaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136582','2','2','0','50069','13','1','174','78','3','Ice Pick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136583','2','2','0','50076','13','1','178','79','3','Skeletal Hacker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136584','2','2','0','50066','13','1','182','80','3','Snowy Edge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136585','2','2','1','50337','17','1','130','67','1','Finned Battleaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136586','2','2','1','50342','17','1','134','68','1','Wreaking Battleaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136587','2','2','1','50340','17','1','138','69','1','Taunka Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136588','2','2','1','50336','17','1','142','70','1','Burning Battleaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136589','2','2','1','49227','17','1','146','71','1','Segmenting Broadaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136590','2','2','1','50335','17','1','150','72','1','Bone Plate Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136591','2','2','1','50341','17','1','154','73','1','Winged Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136592','2','2','1','50337','17','1','158','74','1','Deforester Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136593','2','2','1','50336','17','1','162','75','1','Troll Decollator','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136594','2','2','1','50338','17','1','166','76','1','Fracturing Battleaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136595','2','2','1','50339','17','1','170','77','1','Planate Broadaxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136596','2','2','1','50340','17','1','174','78','1','Rupturing Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136597','2','2','1','50335','17','1','178','79','1','Ice-Splintering Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136598','2','2','1','50336','17','1','182','80','1','Scarlet Battle Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136599','2','2','6','50353','17','1','130','67','1','Ocean Trident','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136600','2','2','6','50358','17','1','134','68','1','Village Scythe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136601','2','2','6','50354','17','1','138','69','1','Patient Harpoon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136602','2','2','6','50357','17','1','142','70','1','Rust-Covered Polearm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136603','2','2','6','50349','17','1','146','71','1','Archaic Longspear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136604','2','2','6','50352','17','1','150','72','1','Grizzly Glaive','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136605','2','2','6','50359','17','1','154','73','1','Wind Scythe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136606','2','2','6','50356','17','1','158','74','1','Rugged Polearm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136607','2','2','6','50351','17','1','162','75','1','Dwarven Halberd','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136608','2','2','6','50355','17','1','166','76','1','Piercing Glaive','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136609','2','2','6','50348','17','1','170','77','1','Abandoned Spear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136610','2','2','6','50354','17','1','174','78','1','Plagued Pike','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136611','2','2','6','50350','17','1','178','79','1','Bleak Scythe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136612','2','2','6','50357','17','1','182','80','1','Scourge War Spear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136613','2','2','2','50149','15','2','130','67','0','Honorable Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136614','2','2','2','50150','15','2','134','68','0','Yew Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136615','2','2','2','50158','15','2','138','69','0','Expert\'s Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136616','2','2','2','50149','15','2','142','70','0','Dutiful Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136617','2','2','2','50150','15','2','146','71','0','Yielding Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136618','2','2','2','49222','15','2','150','72','0','Twisted Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136619','2','2','2','50153','15','2','154','73','0','Astral Light Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136620','2','2','2','50159','15','2','158','74','0','Tracking Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136621','2','2','2','50154','15','2','162','75','0','Advanced Flatbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136622','2','2','2','50157','15','2','166','76','0','Acute Shortbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136623','2','2','2','50156','15','2','170','77','0','Harnessed Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136624','2','2','2','50155','15','2','174','78','0','Shrieking Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136625','2','2','2','50152','15','2','178','79','0','Massive Recurved Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136626','2','2','2','50151','15','2','182','80','0','Military Compound Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136627','2','2','18','50160','26','2','130','67','0','Composite Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136628','2','2','18','50161','26','2','134','68','0','Under-Arm Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136629','2','2','18','49202','26','2','138','69','0','Ferocious Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136630','2','2','18','50162','26','2','142','70','0','Sinewed Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136631','2','2','18','50163','26','2','146','71','0','Horned Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136632','2','2','18','50164','26','2','150','72','0','Slingshot Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136633','2','2','18','50165','26','2','154','73','0','Palisade Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136634','2','2','18','50166','26','2','158','74','0','Pain Repeater','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136635','2','2','18','50166','26','2','162','75','0','Marvelous Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136636','2','2','18','50168','26','2','166','76','0','Arbalest Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136637','2','2','18','50167','26','2','170','77','0','Horrific Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136638','2','2','18','50162','26','2','174','78','0','Bloody Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136639','2','2','18','50164','26','2','178','79','0','Brutal Ballista','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136640','2','2','18','50167','26','2','182','80','0','Scourge Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136641','2','2','3','18405','26','1','130','67','0','Bound Musket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136642','2','2','3','18405','26','1','134','68','0','Flintlock Gun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136643','2','2','3','18405','26','1','138','69','0','Tracker\'s Musket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136644','2','2','3','18405','26','1','142','70','0','Inelegant Musket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136645','2','2','3','18405','26','1','146','71','0','Tuskarr Boomstick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136646','2','2','3','18405','26','1','150','72','0','Haggard Gun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136647','2','2','3','18405','26','1','154','73','0','Noisy Blaster','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136648','2','2','3','18405','26','1','158','74','0','Trapper\'s Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136649','2','2','3','18405','26','1','162','75','0','Tundra Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136650','2','2','3','18405','26','1','166','76','0','Mammoth Gun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136651','2','2','3','18405','26','1','170','77','0','Muzzled Musket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136652','2','2','3','18405','26','1','174','78','0','Stocky Shotgun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136653','2','2','3','18405','26','1','178','79','0','Precipice Longrifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136654','2','2','3','18405','26','1','182','80','0','Harsh-Winter Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136655','2','2','19','50366','26','2','130','67','0','Pearled Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136656','2','2','19','50362','26','2','134','68','0','Darkened Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136657','2','2','19','19902','26','2','138','69','0','Vicious Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136658','2','2','19','50364','26','2','142','70','0','Extinguished Spark','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136659','2','2','19','50361','26','2','146','71','0','Shivery Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136660','2','2','19','9062','26','2','150','72','0','Melted Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136661','2','2','19','50363','26','2','154','73','0','Enigmatic Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136662','2','2','19','50368','26','2','158','74','0','Voodoo Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136663','2','2','19','50360','26','2','162','75','0','Ancient Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136664','2','2','19','50361','26','2','166','76','0','Chilled Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136665','2','2','19','50369','26','2','170','77','0','Wasteland Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136666','2','2','19','25076','26','2','174','78','0','Polar Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136667','2','2','19','50367','26','2','178','79','0','Solid Ice Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136668','2','2','19','50365','26','2','182','80','0','Mindless Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136669','2','2','15','50127','21','1','130','67','3','Eccentric Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136670','2','2','15','50125','21','1','134','68','3','Gypsy Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136671','2','2','15','50128','21','1','138','69','3','Ominous Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136672','2','2','15','50121','21','1','142','70','3','Strange Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136673','2','2','15','50129','21','1','146','71','3','Wise Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136674','2','2','15','50122','21','1','150','72','3','Old Tooth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136675','2','2','15','50118','21','1','154','73','3','Sockeye Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136676','2','2','15','49207','21','1','158','74','3','Water Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136677','2','2','15','50128','21','1','162','75','3','Levitating Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136678','2','2','15','49206','21','1','166','76','3','Runed Talon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136679','2','2','15','50130','21','1','170','77','3','Singing Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136680','2','2','15','50121','21','1','174','78','3','Mystic Fang','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136681','2','2','15','50129','21','1','178','79','3','Wisdom Carver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136682','2','2','15','50131','21','1','182','80','3','Seduced Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136683','2','2','4','50209','21','2','130','67','3','Enshrined Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136684','2','2','4','50203','21','2','134','68','3','Ambrosial Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136685','2','2','4','50208','21','2','138','69','3','Placid Lightmace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136686','2','2','4','50199','21','2','142','70','3','Harmonious Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136687','2','2','4','50208','21','2','146','71','3','Illuminated Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136688','2','2','4','50205','21','2','150','72','3','Sacrosanct Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136689','2','2','4','50198','21','2','154','73','3','Refreshing Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136690','2','2','4','50205','21','2','158','74','3','Unearthly Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136691','2','2','4','49233','21','2','162','75','3','Dignified Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136692','2','2','4','50199','21','2','166','76','3','Remedial Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136693','2','2','4','50205','21','2','170','77','3','Serene Hammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136694','2','2','4','50197','21','2','174','78','3','Beatific Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136695','2','2','4','50209','21','2','178','79','3','Dogmatic Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136696','2','2','4','50208','21','2','182','80','3','Graced Scepter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136697','2','2','10','50139','17','2','130','67','2','Aquatic Greatstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136698','2','2','10','53556','17','2','134','68','2','Conifer Cone Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136699','2','2','10','50148','17','2','138','69','2','Iceberg Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136700','2','2','10','50147','17','2','142','70','2','Peat Greatstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136701','2','2','10','50346','17','2','146','71','2','Pine Needle Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136702','2','2','10','50139','17','2','150','72','2','Melting Icestaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136703','2','2','10','50136','17','2','154','73','2','Tusked Greatstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136704','2','2','10','50138','17','2','158','74','2','Hive Comb Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136705','2','2','10','50135','17','2','162','75','2','Geyser Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136706','2','2','10','50137','17','2','166','76','2','Tenacious Vine Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136707','2','2','10','50134','17','2','170','77','2','Cascading Water Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136708','2','2','10','50138','17','2','174','78','2','Snow Blossom Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136709','2','2','10','50343','17','2','178','79','2','Crystal Woodstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136710','2','2','10','50344','17','2','182','80','2','Avalanche Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136711','2','2','16','16752','25','2','130','67','0','Forsaken Edge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136712','2','2','16','16752','25','2','134','68','0','Howling Throwing Knives','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136713','2','2','16','40002','25','2','138','69','0','Reaching Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136714','2','2','16','16752','25','2','142','70','0','Tuskarr\'s Piercers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136715','2','2','16','40002','25','2','146','71','0','Runed Shuriken','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136716','2','2','16','16752','25','2','150','72','0','Threatening Darts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136717','2','2','16','20782','25','2','154','73','0','Venture Co. Throwing Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136718','2','2','16','40002','25','2','158','74','0','Nexus Shrike','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136719','2','2','16','16752','25','2','162','75','0','Hunter\'s Scout','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136720','2','2','16','16752','25','2','166','76','0','Flying Knives','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136721','2','2','16','16752','25','2','170','77','0','Dragon\'s Teeth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136722','2','2','16','40002','25','2','174','78','0','Pyramid Throwing Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136723','2','2','16','39991','25','2','178','79','0','Clawed Shuriken','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136724','2','2','16','16752','25','2','182','80','0','Frozen Throwing Blades','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136737','4','2','0','49152','22','1','154','70','1','Brutal Gladiator\'s Hatchet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136871','3','4','0','38671','12','3','138','0','0','Fury of the Encroaching Storm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136872','3','4','0','52817','12','3','138','0','0','Mender of the Oncoming Dawn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136874','3','4','0','24187','12','3','138','0','0','Horn of the Herald','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136878','2','2','10','50143','17','2','138','0','2','Writhing Longstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136879','2','2','4','50204','13','1','138','0','3','Soldier\'s Spiked Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136880','2','2','15','51559','21','1','138','0','3','Vicious Spellblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136881','2','2','4','49233','21','1','138','0','3','Medic\'s Morning Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136882','2','2','2','50158','15','2','138','0','0','Warsong Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136883','2','2','8','49223','17','1','138','0','1','Combatant Greatsword','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136884','2','4','1','51229','1','7','138','0','0','Transborean Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136885','2','4','2','51200','5','8','138','0','0','Marshwalker Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136886','2','4','3','51213','7','5','138','0','0','Westrift Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136887','2','4','4','49473','3','6','138','0','0','Mightstone Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136888','2','4','2','51201','7','6','138','0','0','Marshwalker Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136896','1','4','0','21610','28','1','72','72','7','Demonic Spellstone','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136897','1','4','0','21610','28','1','78','78','7','Fel Spellstone','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136937','2','4','3','52499','1','5','138','0','0','Tundrastrider Coif','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136938','2','4','4','51204','5','6','138','0','0','Mightstone Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136939','2','4','1','51555','7','7','138','0','0','Nymph Stockings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136941','3','4','0','49625','19','7','1','0','0','Competitor\'s Tabard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136942','6','2','8','46609','17','-1','200','80','1','Frostmourne','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136943','3','4','0','35359','2','3','187','78','0','Timeless Beads of Eternos','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136944','3','2','15','50971','13','1','187','78','3','Lifeblade of Belgaristrasz','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136945','3','4','1','50973','9','7','187','78','0','Verdisa\'s Cuffs of Dreaming','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136946','3','4','3','52229','5','5','187','78','0','Runic Cage Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136947','3','4','1','50974','16','7','187','78','0','Centrifuge Core Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136948','3','4','2','50908','1','8','187','78','0','Horned Helm of Varos','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136949','3','4','1','52225','10','7','187','78','0','Gloves of the Azure-Lord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136950','3','4','4','51520','5','6','187','78','0','Wing Commander\'s Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136951','3','4','2','50979','10','8','187','78','0','Sidestepping Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136952','3','4','4','50982','6','6','187','78','0','Girdle of Obscuring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136953','3','4','3','51300','3','5','187','78','0','Spaulders of Skillful Maneuvers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136954','3','4','1','52230','8','7','187','78','0','The Conjurer\'s Slippers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136961','3','4','0','31498','11','3','187','78','0','Dragonflight Great-Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136962','3','2','1','49356','17','1','187','78','1','Wyrmclaw Battleaxe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136969','3','4','4','52500','1','6','187','78','0','Helm of the Ley-Guardian','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136971','3','4','3','52226','1','5','187','78','0','Headguard of Westrift','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136972','3','4','0','1103','12','3','187','78','0','Tome of Arcane Phenomena','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136973','3','4','1','52231','20','7','187','78','0','Vestments of the Scholar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136974','3','4','4','52233','5','6','187','78','0','Eregos\' Ornamented Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136975','3','2','10','50988','17','2','187','78','2','Malygos\' Favor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136976','3','4','1','52227','7','7','187','78','0','Ring-Lord\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136977','3','4','4','52998','9','6','187','78','0','Bindings of the Construct','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136978','3','4','2','50995','6','8','187','78','0','Ley-Whelphide Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136979','3','4','0','31905','11','5','187','78','0','Bjarngrim Family Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136980','3','2','10','51691','17','2','187','78','2','Hewn Sparring Quarterstaff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136981','3','2','16','51924','25','1','187','78','0','Hardened Vrykul Throwing Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136982','3','4','1','51199','3','7','187','78','0','Mantle of Electrical Charges','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136983','3','4','1','51925','16','7','187','78','0','Cape of Seething Steam','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136984','3','2','7','51922','13','1','187','78','3','Eternally Folded Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136985','3','4','1','49474','1','-1','187','78','0','Volkhan\'s Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136986','3','4','3','42919','7','5','187','78','0','Kilt of Molten Golems','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136988','3','4','0','39211','2','5','187','78','0','Chaotic Spiral Amulet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136989','3','2','19','51931','26','2','187','78','0','Ancient Measuring Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136991','3','4','1','52361','20','7','187','78','0','Raiments of the Titans','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136992','3','4','3','52350','7','5','187','78','0','Leather-Braced Chain Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136993','3','4','0','17776','12','3','187','78','0','Seal of the Pantheon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136994','3','2','3','41433','26','1','187','78','0','Projectile Activator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136995','3','4','4','51932','10','6','187','78','0','Fists of Loken','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136996','3','4','2','50908','1','8','187','78','0','Hood of the Furtive Assassin','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136997','3','4','1','52340','6','6','187','78','0','Sash of the Hardened Watcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136998','2','4','1','56207','16','7','138','0','0','Assailant Shroud','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('136999','3','4','3','52342','8','5','187','78','0','Boots of the Terrestrial Guardian','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137000','3','4','2','51933','9','8','187','78','0','Storming Vortex Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137002','2','4','3','51109','5','5','138','0','0','Binder\'s Links','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137004','2','4','4','51125','7','6','138','0','0','Plainwatcher Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137005','2','4','1','51154','5','7','138','0','0','D.E.H.T.A. Overshirt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137007','2','4','2','51164','1','8','138','0','0','Faux Leather Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137008','2','4','3','49362','3','5','138','0','0','Ethical Epaulettes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137009','2','4','4','51269','8','6','138','0','0','Moral Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137014','2','2','4','50200','13','1','138','0','3','Rod of Poacher Punishment','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137015','2','2','19','56890','26','2','138','0','0','Dowsing Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137016','2','2','19','56889','26','2','138','0','0','Wand of the Keeper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137017','2','2','15','49206','13','1','138','0','3','Nimble Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137018','2','2','3','51175','26','1','138','0','0','G.E.H.T.A.','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137019','2','4','6','51091','14','1','138','0','4','Borean Ward','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137021','2','2','13','51152','21','1','138','0','7','Claw of the Tuskarr','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137022','2','2','15','51246','13','1','138','0','3','Shark Stabber','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137023','2','2','18','49202','26','2','138','0','0','Compact Arrow Launcher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137024','2','4','0','51545','23','4','138','0','7','Medicine Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137025','2','2','1','49227','17','1','138','0','1','Blubber Carver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137026','2','2','10','50138','17','2','138','0','2','Spirit Channeller\'s Rod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137028','2','2','16','40005','25','2','138','0','0','Condor-Bone Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137029','2','2','15','51168','13','1','138','0','3','Fin Carver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137030','2','2','5','49203','17','2','138','0','1','Blubber Grinder','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137031','2','2','10','50133','17','2','138','0','2','Zook\'s Walking Stick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137032','2','2','0','50063','13','1','138','0','3','Edge of the Tuskarr','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137033','2','4','0','50191','23','4','138','0','7','Manual of the Tides','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137034','2','2','7','51196','13','1','138','0','3','Lobstrock Slicer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137036','2','2','15','50130','13','1','138','0','3','Fish-Eye Poker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137037','3','2','15','49373','13','1','187','78','3','Ritualistic Athame','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137038','3','2','19','44799','26','2','187','78','0','Brazier Igniter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137039','2','2','7','51268','13','1','138','0','3','Mrgl Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137040','3','4','4','53002','9','6','187','78','0','Svala\'s Bloodied Shackles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137041','2','2','4','50198','21','1','138','0','3','Scepter of the Winterfin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137042','2','2','15','51180','21','1','138','0','3','Glimmering Orca Tooth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137043','3','4','3','52235','10','5','187','78','0','Tear-Linked Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137044','2','2','18','49202','26','2','138','0','0','Amphibious Speargun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137046','2','2','5','50319','17','2','138','0','1','Shell Smasher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137047','2','2','19','56891','26','2','138','0','0','Branch of Everlasting Flame','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137048','3','4','1','30783','16','7','187','78','0','Shroud of Resurrection','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137049','2','2','3','49226','26','1','138','0','0','Lost Marksman\'s Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137050','3','2','2','50515','15','2','187','78','0','Trophy Gatherer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137051','3','4','0','41655','23','8','187','78','0','Seal of Valgarde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137052','3','4','4','49353','5','6','187','78','0','Reanimated Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137053','3','4','0','32008','2','3','187','78','0','Amulet of Deflected Blows','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137054','2','2','1','50340','17','1','138','0','1','Frostbiter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137055','3','4','1','52234','3','7','187','78','0','Silken Amice of the Ymirjar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137056','3','4','4','52568','8','6','187','78','0','Harpooner\'s Striders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137057','3','4','2','49354','5','8','187','78','0','Drake Rider\'s Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137058','3','4','0','39121','11','3','187','78','0','Signet of Ranulf','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137060','3','2','7','50509','21','1','187','78','3','Jeweled Coronation Sword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137061','3','4','6','50511','14','6','187','78','4','Tor\'s Crest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137062','3','4','4','50615','1','6','187','78','0','Crown of Forgotten Kings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137064','3','4','0','43092','12','3','187','78','0','Vestige of Haldor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137065','3','2','7','50514','13','1','187','78','3','Ymiron\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137066','3','4','4','52997','7','6','187','78','0','Ancient Royal Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137067','3','4','2','49369','3','8','187','78','0','Ceremonial Pyre Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137068','3','4','4','50507','8','6','187','78','0','Berserker\'s Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137069','3','4','3','52232','9','5','187','78','0','Dragonflayer Seer\'s Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137070','3','4','2','55282','8','8','187','78','0','Tundra Wolf Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137072','2','2','13','51189','21','1','138','0','7','Jagged Icefist','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137073','2','2','10','49232','17','2','138','0','2','Hungering Greatstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137074','2','4','0','51182','23','4','138','0','7','Greatmother\'s Talisman of Cleansing','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137075','2','2','15','50121','13','1','138','0','3','Serrated Scale Shank','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137076','2','2','7','51166','13','1','138','0','3','Fiery Prod','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137077','2','2','13','51241','22','1','138','0','7','Smoldering Talon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137078','2','2','19','51258','26','2','138','0','0','Rod of the Crimson Keeper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137079','3','4','0','9835','11','3','187','78','0','Enchanted Wire Stitching','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137080','2','2','8','50328','17','1','138','0','1','Crimson Will','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137081','3','2','7','51597','13','1','187','78','3','Meathook\'s Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137082','3','4','4','53001','8','6','187','78','0','Slaughterhouse Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137083','3','4','2','51598','7','8','187','78','0','Kilt of Sewn Flesh','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137084','3','4','1','28695','16','7','187','78','0','Flowing Cloak of Command','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137086','3','4','0','51600','23','8','187','78','0','Tome of Salramm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137088','3','4','4','51601','6','6','187','78','0','Spiked Metal Cilice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137095','3','4','3','52343','6','5','187','78','0','Waistband of the Thuzadin','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137096','3','4','0','31899','2','3','187','78','0','Necklace of the Chrono-Lord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137099','3','2','10','51602','17','2','187','78','2','Sempiternal Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137105','3','4','3','52421','8','5','187','78','0','Treads of Altered History','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137106','3','4','2','51603','6','8','187','78','0','Ouroboros Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137107','3','4','6','51453','14','1','187','78','4','Leeka\'s Shield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137108','3','2','8','51606','17','1','187','78','1','Dreadlord\'s Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137109','3','4','4','51577','3','6','187','78','0','Discarded Silver Hand Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137110','3','4','3','52399','10','5','187','78','0','Gauntlets of Dark Conversion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137111','3','4','0','19785','12','3','187','78','0','Soul Preserver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137112','3','2','4','55984','21','2','187','78','3','Beguiling Scepter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137113','3','4','1','52398','9','7','187','78','0','Demonic Fabric Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137114','3','4','2','51608','10','8','187','78','0','Gloves of Northern Lordaeron','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137115','3','4','4','49876','3','6','187','78','0','Crusader\'s Square Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137116','3','4','3','49362','3','5','187','78','0','Epaulets of Market Row','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137117','3','4','2','49363','9','8','187','78','0','King\'s Square Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137122','2','2','2','50149','15','2','138','0','0','Taut Driftwood Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137127','4','4','0','49650','12','4','128','70','0','Brightbrew Charm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137128','4','4','0','49636','12','4','128','70','0','Balebrew Charm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137134','3','4','0','50990','23','8','200','80','0','Telestra\'s Journal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137135','3','4','4','52500','1','6','200','80','0','Arcane-Shielded Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137138','3','4','3','50907','9','5','200','80','0','Bands of Channeled Energy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137139','3','4','2','49369','3','8','200','80','0','Spaulders of the Careless Thief','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137141','3','4','0','35437','2','5','200','80','0','Amulet of Dazzling Light','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137144','3','4','3','52327','5','5','200','80','0','Hauberk of the Arcane Wraith','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137149','3','4','2','50908','1','8','200','80','0','Helm of Anomalus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137150','3','4','4','50909','8','6','200','80','0','Rift Striders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137151','3','4','0','33728','11','5','200','80','0','Band of Frosted Thorns','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137152','3','4','4','50910','6','6','200','80','0','Girdle of Ice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137153','3','4','1','52225','10','7','200','80','0','Gloves of the Crystal Gardener','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137154','2','4','1','16946','10','7','15','10','0','Shadowy Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137155','3','4','3','52323','7','5','200','80','0','Frozen Forest Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137162','3','4','6','50911','14','1','200','80','4','Bulwark of the Noble Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137165','3','4','2','49354','5','8','200','80','0','Crystal-Infused Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137166','3','4','0','52326','12','3','200','80','0','Sphere of Red Dragon\'s Blood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137167','3','4','3','52316','8','5','200','80','0','Dragon Slayer\'s Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137169','4','2','4','50987','21','1','200','80','3','War Mace of Unrequited Love','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137170','4','4','3','53811','9','5','200','80','0','Interwoven Scale Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137171','4','4','4','53806','6','6','200','80','0','Flame-Bathed Steel Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137172','4','4','1','53824','10','7','200','80','0','Gloves of Glistening Runes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137174','3','4','1','29719','16','7','200','80','0','Rippling Azure Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137175','3','4','4','50917','9','6','200','80','0','Glassy Silver Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137176','3','4','2','50918','8','8','200','80','0','Cavern Leather Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137177','3','2','19','43088','26','2','200','80','0','Wand of the San\'layn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137178','3','4','4','51686','6','6','200','80','0','Strategist\'s Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137179','3','2','7','51688','13','1','200','80','3','Infantry Assault Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137180','3','4','2','51003','1','8','200','80','0','Battlemap Hide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137181','3','2','15','50971','13','1','200','80','3','Dagger of Betrayal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137182','3','4','4','52302','1','6','200','80','0','Helmet of the Constructor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137183','3','4','2','51689','9','8','200','80','0','Bindings of the Tunneler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137184','3','4','3','52330','5','5','200','80','0','Dalronn\'s Jerkin','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137186','3','4','0','33808','11','3','200','80','0','Unsmashable Heavy Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137188','3','4','3','59543','1','5','200','80','0','Plunderer\'s Helmet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137189','3','4','1','52328','7','7','200','80','0','Breeches of the Caller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137190','3','2','10','51691','17','2','200','80','2','Enraged Feral Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137191','4','2','18','51692','26','2','200','80','0','Drake-Mounted Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137192','4','4','0','49005','11','3','200','80','0','Annhylde\'s Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137193','4','4','4','53810','7','6','200','80','0','Staggering Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137194','4','4','2','53821','6','8','200','80','0','Sharp-Barbed Leather Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137195','3','4','0','39122','11','3','200','80','0','Band of Enchanted Growth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137196','3','4','1','52234','3','7','200','80','0','Runecaster\'s Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137197','3','4','1','51374','16','7','200','80','0','Tattered Castle Drape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137203','2','4','1','51266','20','7','138','0','0','Regenerative Cloth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137204','2','4','1','51227','7','7','138','0','0','Transborean Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137205','2','4','1','51199','3','7','138','0','0','Transborean Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137206','2','4','1','51214','16','7','138','0','0','Weathered Worker Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137207','2','4','1','51252','8','7','138','0','0','Seafarer Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137208','2','4','1','51188','9','7','138','0','0','Transborean Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137209','2','4','1','52530','1','7','138','0','0','Wharfmaster\'s Hat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137210','2','4','1','51042','6','7','138','0','0','Seafarer Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137211','2','4','1','51187','8','6','138','0','0','Iceflow Footwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137212','2','4','1','51224','10','7','138','0','0','Transborean Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137213','2','4','1','51188','9','7','138','0','0','Iceflow Wristwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137214','2','4','1','51234','7','7','138','0','0','Sweltering Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137215','2','4','1','51198','1','7','138','0','0','Lost Sea Oculus','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137216','3','4','6','51721','14','6','200','80','4','Facade Shield of Glyphs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137217','3','4','4','51722','9','6','200','80','0','Golden Limb Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137218','3','4','1','52310','8','7','200','80','0','Stone-Worn Footwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137219','3','4','2','51723','5','8','200','80','0','Custodian\'s Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137220','3','4','0','51724','12','3','200','80','0','Essence of Gossamer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137221','3','4','3','52309','7','5','200','80','0','Hollowed Mandible Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137222','3','4','1','52307','20','7','200','80','0','Egg Sac Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137223','2','4','1','51235','10','7','138','0','0','Sweltering Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137224','2','4','1','51172','6','7','138','0','0','Sweltering Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137225','2','4','1','51556','8','7','138','0','0','Sweltering Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137226','2','4','1','51233','20','7','138','0','0','Sweltering Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137227','2','4','1','49361','3','7','138','0','0','Seafarer Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137228','2','4','1','51236','9','7','138','0','0','Sweltering Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137230','3','4','2','50979','10','8','200','80','0','Grotto Mist Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137231','2','4','0','9086','2','4','138','0','0','Frostspeaker Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137232','3','4','0','31657','11','3','200','80','0','Ring of the Traitor King','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137234','2','4','1','51192','1','7','138','0','0','Layered Frost Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137235','3','2','7','51726','13','1','200','80','3','Crypt Lord\'s Deft Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137236','3','4','2','51727','20','8','200','80','0','Insect Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137237','3','4','4','52995','1','6','200','80','0','Chitin Shell Greathelm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137238','4','2','19','51806','26','2','200','80','0','Rod of the Fallen Monarch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137239','2','4','1','51191','8','7','138','0','0','Layered Frost Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137240','4','4','4','53807','9','6','200','80','0','Flamebeard\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137241','4','4','4','51808','6','6','200','80','0','Ancient Aligned Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137242','4','4','1','51809','6','6','200','80','0','Sash of the Servant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137243','3','4','2','51728','6','8','200','80','0','Treasure Seeker\'s Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137244','3','4','3','52308','8','5','200','80','0','Fungi-Coated Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137245','3','4','1','52312','9','7','200','80','0','Tangled Web Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137254','4','4','0','7245','12','4','200','80','0','Super Simian Sphere','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137255','3','2','7','50996','13','1','200','80','3','The Interrogator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137256','3','4','3','52325','5','5','200','80','0','Scaled Armor of Drakos','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137257','3','4','0','32323','11','3','200','80','0','Band of Torture','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137258','3','4','1','52317','20','7','200','80','0','Drakewing Raiments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137260','3','2','0','50998','13','1','200','80','3','Cloudstrider\'s Waraxe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137261','3','4','2','50999','10','8','200','80','0','Gloves of Radiant Light','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137262','3','4','3','52313','7','5','200','80','0','Azure Ringmail Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137263','3','4','4','50609','7','6','200','80','0','Legplates of the Oculus Guardian','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137264','3','4','0','51001','12','3','200','80','0','Pendulum of Telluric Currents','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137270','2','4','1','51194','20','7','138','0','0','Layered Frost Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137271','2','4','1','51161','6','7','138','0','0','Dusk Watcher\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137272','2','4','1','51208','3','7','138','0','0','Wizzlenob Shoulder Covers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137273','2','4','1','51153','10','7','138','0','0','Crimson Keeper Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137274','2','4','1','51203','1','7','138','0','0','Mender\'s Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137275','2','4','1','51199','3','7','138','0','0','Mantle of Congealed Anger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137276','2','4','1','51183','7','7','138','0','0','Gorge\'s Loungewear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137277','2','4','1','51534','16','7','138','0','0','Ermine Ruff Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137280','2','4','1','51172','6','7','138','0','0','Flame Hardened Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137282','2','4','1','51136','10','7','138','0','0','Cavernous Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137283','2','4','1','51218','7','7','138','0','0','Wandering Healer\'s Kilt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137288','3','4','4','50994','9','6','200','80','0','Catalytic Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137289','3','4','1','52324','6','6','200','80','0','Sash of Phantasmal Images','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137290','3','4','0','33906','2','3','200','80','0','Dragon Prow Amulet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137291','3','4','1','51004','16','7','200','80','0','Ancient Dragon Spirit Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137292','3','4','4','50609','7','6','200','80','0','Ley-Guardian\'s Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137293','3','4','2','51003','1','8','200','80','0','Mask of the Watcher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137294','3','4','1','52492','1','-1','200','80','0','Crown of Unbridled Magic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137311','3','4','0','45500','0','-1','70','0','0','Skybreaker Whip','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137313','3','4','0','39186','0','4','70','69','0','Riding Crop','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137319','2','4','2','49913','10','8','138','0','0','Grips of the Windswept Plains','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137320','2','4','2','49246','3','8','138','0','0','Spaulders of Echoing Truth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137322','2','4','2','51173','9','7','138','0','0','Flame Hardened Wristbindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137325','2','4','2','51217','3','8','138','0','0','Warsong Scout Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137351','2','4','2','51201','7','6','138','0','0','Reinforced Caribou-Hide Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137352','2','4','2','49255','5','8','138','0','0','Regenerative Hide Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137353','2','4','2','51264','1','8','138','0','0','Reinforced Caribou-Hide Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137354','2','4','2','49906','8','8','138','0','0','Reinforced Caribou-Hide Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137355','2','4','2','51265','5','8','138','0','0','Reinforced Caribou-Hide Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137356','2','4','2','49256','9','7','138','0','0','Rhinohide Wristwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137357','2','4','1','51242','16','7','138','0','0','Shivering Healer\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137360','4','2','10','55717','17','2','200','80','2','Staff of Draconic Combat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137361','4','4','1','53822','9','7','200','80','0','Cuffs of Winged Levitation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137362','4','4','4','53808','7','6','200','80','0','Leggings of Protective Auras','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137363','4','4','4','51010','10','6','200','80','0','Gauntlets of Dragon Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137364','3','4','0','51005','23','8','200','80','0','Frostbridge Orb','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137365','3','4','3','52314','9','5','200','80','0','Bands of the Sky Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137366','3','4','2','51006','9','8','200','80','0','Drake-Champion\'s Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137367','3','4','4','51700','8','6','200','80','0','Echoing Stompers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137368','3','4','2','51701','3','8','200','80','0','Silent Spectator Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137369','3','4','1','52334','7','7','200','80','0','Sorrowgrave\'s Breeches','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137370','3','4','1','52329','9','7','200','80','0','Cuffs of the Trussed Hall','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137371','3','4','0','26001','11','3','200','80','0','Ring of the Frenzied Wolvar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137373','3','4','3','52333','3','5','200','80','0','Massive Spaulders of the Jormungar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137374','3','4','2','51702','7','8','200','80','0','Ravenous Leggings of the Furbolg','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137375','2','4','2','51262','10','8','138','0','0','Rhinohide Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137376','3','4','4','51604','3','6','200','80','0','Ferocious Pauldrons of the Rhino','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137377','3','2','15','51703','21','1','200','80','3','Netherbreath Spellblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137378','2','4','2','49864','9','7','138','0','0','Sealskin Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137379','3','4','4','51704','6','6','200','80','0','Skadi\'s Iron Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137380','2','4','2','51210','7','6','138','0','0','Whalehunter Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137382','2','4','2','56376','6','8','138','0','0','Charred Drakehide Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137383','2','4','1','51250','16','7','138','0','0','Seared Scale Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137384','3','2','10','50988','17','2','200','80','2','Staff of Wayward Principles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137385','2','4','2','51251','5','8','138','0','0','Seared Harness','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137386','2','4','2','49848','3','8','138','0','0','Ruby Heart Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137387','2','4','2','49980','8','8','138','0','0','Charred Treads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137388','2','4','2','51263','6','8','138','0','0','Reinforced Elastic Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137389','3','4','2','49358','7','8','200','80','0','Crenelation Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137390','3','4','0','51706','12','3','200','80','0','Meteorite Whetstone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137391','2','4','2','51294','1','8','138','0','0','Rhinohide Mask','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137392','2','4','2','49847','3','8','138','0','0','Soggy Hide Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137393','2','4','2','49911','10','8','138','0','0','Shadewrap Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137394','2','4','2','49816','6','8','138','0','0','Marshwalker Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137395','3','4','4','51707','5','6','200','80','0','Ornamented Plate Regalia','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137396','2','4','2','51211','10','8','138','0','0','Whalehunter Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137397','3','4','0','4841','2','3','200','80','0','Gold Amulet of Kings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137398','3','4','3','49362','3','5','200','80','0','Mantle of Discarded Ways','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137399','2','4','2','49246','3','8','138','0','0','Floodplain Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137400','2','4','2','49859','9','7','138','0','0','Whalehunter Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137401','4','2','7','51695','13','1','200','80','3','Red Sword of Courage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137402','2','4','2','49255','5','8','138','0','0','Floodplain Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137403','2','4','2','49906','8','8','138','0','0','Marshwalker Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137404','2','4','2','49264','1','8','138','0','0','Floodplain Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137405','2','4','2','49848','3','8','138','0','0','Marshwalker Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137406','2','4','2','49851','7','8','138','0','0','Denwatcher\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137407','4','4','3','51697','6','5','200','80','0','Sovereign\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137408','4','4','1','53823','6','6','200','80','0','Girdle of Bane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137409','4','4','2','53819','10','8','200','80','0','Gilt-Edged Leather Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137410','3','2','16','51708','25','1','200','80','0','Tracker\'s Balanced Knives','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137414','2','4','3','49527','1','5','138','0','0','Farseer\'s Headpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137415','2','4','3','51221','5','5','138','0','0','Tundrastrider Ringmail','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137417','2','4','3','51066','10','5','138','0','0','Westrift Handcovers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137418','2','4','3','51067','7','5','138','0','0','Seaspeaker Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137419','2','4','3','49521','3','5','138','0','0','Seaspeaker Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137420','2','4','3','51245','8','5','138','0','0','Sharkproof Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137421','2','4','3','51215','6','5','138','0','0','Waverunner Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137422','2','4','3','51212','9','5','138','0','0','Westrift Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137423','2','4','3','51244','1','5','138','0','0','Sharkproof Coif','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137424','2','4','3','51237','3','5','138','0','0','Plainhunter\'s Epaulettes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137425','2','4','3','51223','8','5','138','0','0','Tundrastrider Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137426','2','4','3','51257','7','5','138','0','0','Rusty Mesh Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137427','2','4','3','51267','6','5','138','0','0','Plainhunter\'s Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137428','2','4','3','51260','9','5','138','0','0','Ring-Ridden Wrist Protectors','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137429','2','4','3','51181','10','5','138','0','0','Glimmering Ringmail Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137433','2','4','3','51148','8','5','138','0','0','Layered Scale Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137434','2','4','3','51113','6','5','138','0','0','Cauterizing Chain Strand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137435','2','4','3','51137','9','5','138','0','0','Flame Infused Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137436','2','4','3','51248','10','5','138','0','0','Seaspeaker Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137437','2','4','3','51071','5','5','138','0','0','Plainhunter\'s Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137439','2','4','3','51239','10','5','138','0','0','Spiked Magmoth Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137440','2','4','3','51240','5','5','138','0','0','Spiked Magmoth Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137441','2','4','3','51237','3','5','138','0','0','Spiked Magmoth Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137442','2','4','3','51148','8','5','138','0','0','Chilled Mail Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137443','2','4','3','51238','1','5','138','0','0','Spiked Magmoth Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137444','2','4','3','59543','1','5','138','0','0','Wavekeeper\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137446','2','4','3','51231','8','5','138','0','0','Tank Commander\'s Treads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137447','2','4','3','53181','1','5','138','0','0','Reinforced Mendicant\'s Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137456','2','4','3','51067','7','5','138','0','0','Cauterizing Chain Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137458','2','4','3','51137','9','5','138','0','0','Wristguards of Rocky Horror','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137461','3','2','6','49801','17','1','145','70','2','Tidebreaker Trident','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137462','2','4','1','49800','1','7','145','70','0','Sea King\'s Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137463','2','4','2','22794','1','8','145','70','0','Winterfin Patch of Honor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137471','2','4','4','51106','6','6','138','0','0','Girdle of Ripped Space','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137475','2','4','4','51125','7','6','138','0','0','Benign Crusader\'s Plate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137476','2','4','4','51094','5','6','138','0','0','Gorge\'s Breastplate of Bloodrage','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137477','2','4','4','51087','5','6','138','0','0','Lost Crusader Chestplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137478','2','4','4','52372','10','5','138','0','0','Amberplate Grips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137479','2','4','4','56188','7','6','138','0','0','Amberplate Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137480','2','4','4','51207','1','6','138','0','0','Mightstone Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137481','2','4','4','51087','5','6','138','0','0','Chestguard of Salved Wounds','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137482','2','4','4','51206','7','6','138','0','0','Mightstone Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137483','2','4','4','61308','1','6','138','0','0','Seabone Heaume','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137484','2','4','4','51162','8','6','138','0','0','Mendicant\'s Treads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137485','2','4','4','56387','10','5','138','0','0','Clam Collector Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137486','2','4','4','51190','9','6','138','0','0','Landlocked Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137487','2','4','4','51254','7','6','138','0','0','Seabone Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137505','2','4','4','56330','5','6','138','0','0','Battle Leader\'s Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137506','2','4','4','56354','10','5','138','0','0','Bogstrok Plate Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137507','2','4','4','56386','3','6','138','0','0','Chilled Shoulderplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137508','2','4','4','49725','3','6','138','0','0','Sinking Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137509','2','4','4','51247','6','6','138','0','0','Seething Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137510','2','4','4','51259','9','6','138','0','0','Wristguards of Edification','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137511','2','4','4','56392','6','6','138','0','0','Crucible Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137512','2','4','4','51151','10','6','138','0','0','Gauntlets of the Crimson Guardian','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137513','2','4','4','51184','1','6','138','0','0','Helm of the Crimson Drakonid','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137514','2','4','4','51133','9','6','138','0','0','Freed Shackles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137515','2','4','4','51197','6','6','138','0','0','Lost Crusader Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137516','2','4','4','51504','8','6','138','0','0','Chilled Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137517','2','4','4','49725','3','6','138','0','0','Chilled Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137518','2','4','4','56189','6','6','138','0','0','Amberplate Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137519','2','4','4','51904','1','6','138','0','0','Amberplate Headguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137520','2','4','6','51453','14','1','138','0','4','Plainkeeper Blockade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137521','2','4','6','50911','14','1','138','0','4','Icechill Buckler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137522','2','4','4','51162','8','6','138','0','0','Earthborn Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137523','2','4','0','28830','11','3','138','0','0','Rigid Tuskring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137524','2','4','0','26001','11','3','138','0','0','Scout\'s Signet Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137525','2','4','0','51277','11','8','138','0','0','Deep Sea Tuskring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137526','2','4','0','51230','11','3','138','0','0','Thin Dexterity Enhancing Tube','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137527','2','4','0','51243','11','8','138','0','0','Shimmering Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137528','2','4','0','23629','11','3','138','0','0','Dry Earth Circle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137529','2','4','0','23728','11','3','138','0','0','Shivering Healer\'s Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137530','2','4','0','9840','11','3','138','0','0','Icy Ripper Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137535','2','2','10','50137','17','2','138','0','2','Stave of the Windborn','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137537','2','2','10','50142','17','2','138','0','2','Stave of the Spiritcaller','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137541','2','4','0','34318','2','4','138','0','0','Giant Turtle Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137543','2','4','0','9852','2','3','138','0','0','Pugnacious Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137544','2','4','0','34034','2','3','138','0','0','Drakebone Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137545','2','4','0','9860','2','3','138','0','0','Graven Shoveltusk Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137546','2','4','0','6490','2','4','138','0','0','Choker of the Northern Wind','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137547','2','2','4','50203','13','1','138','0','3','Fireborn Warhammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137548','2','4','0','35437','2','3','138','0','0','Iceflow Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137555','2','4','0','45851','12','8','138','0','0','Warsong\'s Wrath','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137556','2','4','0','39927','12','4','138','0','0','Talisman of the Tundra','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137557','2','4','0','16283','12','4','138','0','0','Warsong\'s Fervor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137558','2','4','0','52820','12','8','138','0','0','Tidal Boon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137559','2','4','0','29947','12','8','138','0','0','Serrah\'s Star','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137560','2','4','0','51112','12','8','138','0','0','Vial of Renewal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137562','2','4','0','22639','12','4','138','0','0','Fury of the Crimson Drake','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137564','2','4','1','51256','16','7','138','0','0','Scaled Flame Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137566','2','4','1','51160','16','7','138','0','0','Durable Worghide Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137573','2','4','8','39640','28','2','138','0','0','Idol of the Plainstalker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137574','2','4','7','5563','28','2','138','0','0','Libram of Furious Blows','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137575','2','4','9','47072','28','2','138','0','0','Totem of the Tundra','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137587','3','4','2','51709','20','8','200','80','0','Ymirjar Physician\'s Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137590','3','4','4','51710','9','6','200','80','0','Bands of Fading Light','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137591','3','4','0','54513','11','3','200','80','0','Nerubian Shield Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137592','3','4','3','57540','1','5','200','80','0','Brood Plague Helmet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137593','3','4','2','49369','3','8','200','80','0','Sprinting Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137594','3','4','1','54514','1','-1','200','80','0','Elder Headpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137595','3','4','0','31899','2','3','200','80','0','Necklace of Taldaram','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137597','4','2','15','23262','13','1','115','70','7','Direbrew\'s Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137611','4','2','15','36741','13','0','146','0','0','Epic Bland Dagger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137612','3','4','4','51520','5','6','200','80','0','Bonegrinder Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137613','3','4','1','52311','9','7','200','80','0','Flame Sphere Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137614','3','4','3','54516','10','5','200','80','0','Gauntlets of the Plundering Geist','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137615','3','2','2','54501','15','2','200','80','0','Titanium Compound Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137616','3','4','2','49357','7','8','200','80','0','Kilt of the Forgotten One','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137617','3','2','10','54504','17','2','200','80','2','Staff of Sinister Claws','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137618','3','4','4','52568','8','6','200','80','0','Greaves of Ancient Evil','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137619','4','2','19','55720','26','2','200','80','0','Wand of Ahn\'kahet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137620','4','4','4','54039','9','6','200','80','0','Bracers of the Herald','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137622','4','4','1','54519','7','7','200','80','0','Skirt of the Old Kingdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137623','4','4','3','54520','10','5','200','80','0','Fiery Obelisk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137624','3','4','0','35472','11','5','200','80','0','Stained-Glass Shard Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137625','3','4','4','54517','10','1','200','80','0','Web Winder Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137626','3','2','19','53117','26','2','200','80','0','Wand of Sseratus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137627','3','4','4','51927','3','6','200','80','0','Snake Den Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137628','3','4','3','53118','6','5','200','80','0','Slad\'ran\'s Coiled Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137629','3','4','1','53116','8','7','200','80','0','Slithering Slippers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137630','3','4','1','47068','16','7','200','80','0','Shroud of Moorabi','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137631','3','2','13','57305','21','1','200','80','7','Fist of the Deity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137632','3','4','4','50507','8','6','200','80','0','Mojo Frenzy Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137633','3','4','4','50615','1','6','200','80','0','Ground Tremor Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137634','3','4','2','53120','9','8','200','80','0','Bracers of the Divine Elemental','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137635','3','4','4','51577','3','6','200','80','0','Pauldrons of the Colossus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137636','3','4','2','50908','1','8','200','80','0','Helm of Cheated Fate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137637','3','4','1','53121','6','6','200','80','0','Living Mojo Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137638','3','4','0','53122','12','3','200','80','0','Offering of Sacrifice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137639','3','4','3','53123','10','5','200','80','0','Grips of the Beast God','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137640','3','4','2','53124','8','8','200','80','0','Boots of Transformation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137641','3','4','1','53126','20','7','200','80','0','Arcane Flame Altar-Garb','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137642','4','4','0','31657','11','5','200','80','0','Hemorrhaging Circle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137643','4','4','2','53815','6','8','200','80','0','Sash of Blood Removal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137644','4','4','2','53820','7','8','200','80','0','Gored Hide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137645','4','4','4','53132','10','-1','200','80','0','Horn-Tipped Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137646','3','4','0','53133','2','3','200','80','0','Burning Skull Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137647','3','4','1','23018','16','7','200','80','0','Cloak of Bloodied Waters','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137648','3','4','3','53134','6','5','200','80','0','Belt of Tasseled Lanterns','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137649','3','2','15','49373','13','1','200','80','3','Quarry Chisel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137650','3','4','4','51459','7','6','200','80','0','Shardling Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137651','3','4','0','31906','11','3','200','80','0','The Prospector\'s Prize','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137652','3','4','2','51460','3','8','200','80','0','Spaulders of Krystallus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137653','3','2','8','51512','17','1','200','80','1','Sword of Justice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137654','3','4','3','52363','8','5','200','80','0','Sabatons of the Ages','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137655','3','4','1','52355','3','7','200','80','0','Mantle of the Tribunal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137656','3','4','3','52360','9','5','200','80','0','Raging Construct Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137657','3','4','0','51518','12','3','200','80','0','Spark of Life','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137658','3','4','4','51520','5','6','200','80','0','Sun-Emblazoned Chestplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137659','0','2','8','2380','17','1','200','70','1','Enti\'s Quenched Sword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137660','3','4','0','31282','12','3','200','80','0','Forge Ember','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137666','3','4','2','51519','8','8','200','80','0','Boots of the Whirling Mist','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137667','4','2','15','51521','13','1','200','80','3','The Fleshshaper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137668','4','4','4','51632','9','6','200','80','0','Bands of the Stoneforge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137669','4','4','3','52345','7','5','200','80','0','Leggings of the Stone Halls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137670','4','4','4','53809','6','6','200','80','0','Sjonnir\'s Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137671','3','4','4','51516','10','6','200','80','0','Refined Ore Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137672','3','4','4','50991','5','6','200','80','0','Patina-Coated Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137673','3','4','1','51301','3','7','200','80','0','Dark Runic Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137675','3','4','4','51612','7','6','200','80','0','Legplates of Steel Implants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137678','3','4','2','51613','10','8','200','80','0','Bile-Cured Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137679','3','4','3','57604','3','5','200','80','0','Spaulders of the Abomination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137680','3','4','1','52347','6','6','200','80','0','Belt of Unified Souls','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137681','3','2','4','50603','21','2','200','80','3','Gavel of the Fleshcrafter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137682','3','4','4','50510','9','6','200','80','0','Bindings of Dark Will','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137683','3','4','0','9852','2','3','200','80','0','Necromancer\'s Amulet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137684','3','4','1','52529','1','-1','200','80','0','Forgotten Shadow Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137685','3','4','0','44841','11','5','200','80','0','Mobius Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137686','3','4','3','52397','10','5','200','80','0','Cracked Epoch Grasps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137687','3','4','1','52400','10','7','200','80','0','Gloves of Distorted Time','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137688','3','4','4','51615','7','6','200','80','0','Legplates of the Infinite Drakonid','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137689','3','4','0','48511','2','3','200','80','0','Pendant of the Nathrezim','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137690','3','4','4','49876','3','6','200','80','0','Pauldrons of Destiny','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137691','3','4','1','52407','3','7','200','80','0','Mantle of Deceit','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137692','3','2','3','52414','26','1','200','80','0','Pierce\'s Pistol','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137693','4','2','13','54894','21','1','200','80','7','Greed','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137694','4','4','0','34189','11','3','200','80','0','Band of Guile','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137695','4','4','3','53835','7','5','200','80','0','Legguards of Nature\'s Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137696','4','4','2','51939','9','8','200','80','0','Plague-Infected Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137697','3','2','15','50971','13','1','200','80','3','Trade District Knife','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137698','3','4','4','51577','3','6','200','80','0','Spaulders of Elder\'s Square','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137699','3','4','4','51610','6','6','200','80','0','Festival Lane Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137708','1','2','14','20618','17','4','1','0','0','Stick','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137712','3','4','4','52568','8','6','200','80','0','Terrace Defence Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137714','3','4','2','52565','6','8','200','80','0','Batrider\'s Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137715','3','4','1','52529','1','-1','200','80','0','Cowl of the Dire Troll','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137717','3','4','4','52567','7','6','200','80','0','Legs of Physical Regeneration','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137718','3','4','0','52569','23','8','200','80','0','Temple Crystal Fragment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137721','3','2','7','52571','21','1','200','80','3','Cursed Lich Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137722','3','4','4','51520','5','6','200','80','0','Breastplate of Undeath','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137723','3','4','0','52572','12','3','200','80','0','Incisor Fragment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137724','3','4','2','52573','9','8','200','80','0','Handler\'s Arm Strap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137725','3','4','1','52398','9','7','200','80','0','Savage Wound Wrap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137726','3','4','3','50612','1','5','200','80','0','King Dred\'s Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137728','3','4','1','43096','16','7','200','80','0','Cloak of the Enemy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137729','3','4','4','52619','10','1','200','80','0','Grips of Sculptured Icicles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137730','3','4','1','52620','8','7','200','80','0','Cleric\'s Linen Shoes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137731','3','4','1','52618','7','7','200','80','0','Opposed Stasis Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137732','3','4','0','31664','11','3','200','80','0','Spectral Seal of the Prophet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137733','3','2','5','52574','17','1','200','80','1','Mojo Masked Crusher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137734','3','4','0','52576','12','3','200','80','0','Talisman of Troll Divinity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137735','3','4','4','52338','5','6','200','80','0','Ziggurat Imprinted Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137739','4','2','15','49147','21','1','154','70','3','Brutal Gladiator\'s Blade of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137740','4','2','4','49146','21','1','154','70','3','Brutal Gladiator\'s Swift Judgement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137743','3','4','4','50506','7','6','130','69','0','Legguards of Brutalization','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137744','3','4','3','52467','8','5','130','69','0','Horrorblood Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137745','3','4','2','50025','5','8','130','69','0','Greenhealer\'s Garb','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137746','3','4','1','52544','1','8','130','69','0','Helm of the Burning Soul','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137747','3','4','6','50024','14','1','130','69','4','Beneficent Bulwark','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137748','3','4','0','9657','2','3','130','69','0','Winterfall\'s Frozen Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137749','3','2','13','42173','22','1','134','70','7','Shocking Claws','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137751','3','4','0','50376','11','4','134','70','0','Tooga\'s Lost Toenail','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137752','3','4','1','52464','8','7','134','70','0','Sandals of Broken Dreams','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137753','3','4','1','52458','20','7','138','71','0','Mendicant\'s Robe of Mendacity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137754','3','4','1','52545','1','8','142','72','0','Shimmersteel Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137755','3','4','1','52472','7','7','146','73','0','Leggings of the Icy Heart','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137756','3','4','1','15063','16','7','150','74','0','Zoe\'s Comforting Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137757','3','4','1','52448','3','7','154','75','0','Charlotte\'s Chastizing Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137758','3','4','0','40413','2','3','158','76','0','Raine\'s Choker of Combustion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137759','3','4','1','43654','10','7','162','77','0','Rhie-ay\'s Clutching Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137760','3','4','1','27601','9','7','170','77','0','Cracklefire Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137761','3','4','1','43732','6','7','174','78','0','Shimmerthread Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137762','3','4','2','52520','6','8','134','70','0','Many-Pocketed Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137763','3','4','2','52475','8','8','138','71','0','Treads of the Purifier','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137764','3','4','2','51715','3','8','142','72','0','Corehound Fang Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137765','3','4','2','52488','7','8','150','74','0','Leggings of the Water Moccasin','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137766','3','4','2','52513','9','8','154','75','0','Bracers of Unmitigated Larceny','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137767','3','4','2','53372','1','8','158','76','0','Ryft\'s Deathgaze','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137768','3','4','2','52515','7','8','162','77','0','Leggings of Violent Exsanguination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137769','3','4','2','52482','3','8','166','77','0','Gnarled Shovelhorn Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137770','3','4','2','52514','5','8','170','77','0','Bulge-Concealing Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137771','3','4','2','52480','9','8','174','78','0','Wristguards of Verdant Recovery','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137772','3','4','3','49362','3','5','134','70','0','Wub\'s Electrospike Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137773','3','4','3','52476','6','5','138','71','0','Shock-Inducing Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137774','3','4','3','52481','7','5','142','72','0','Leggings of Aqueous Dissolution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137775','3','4','3','53371','1','5','146','73','0','Helm of the Broken Ram','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137776','3','4','3','52501','9','5','150','74','0','Bracers of Accurate Fire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137777','3','4','3','52485','9','5','154','75','0','Bracers of Sizzling Heat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137778','3','4','3','52473','6','5','158','76','0','Girdle of Unerring Flight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137779','3','4','3','52484','3','5','166','77','0','Nixod\'s Chain-Threshed Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137780','3','4','3','52502','5','5','170','77','0','Condor-Bone Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137781','3','4','3','52487','10','5','174','78','0','Grips of the Warming Heart','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137782','3','4','4','52477','10','6','134','70','0','Gauntlets of the Cheerful Hearth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137783','3','4','4','51927','3','6','138','71','0','Blood-Tempered Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137784','4','4','0','33728','11','3','200','80','0','Keystone Great-Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137785','3','4','4','52509','6','6','146','73','0','Girdle of the Howling Berserker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137786','3','4','4','52483','7','6','150','74','0','Legguards of the Forlorn Seas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137787','3','4','4','52302','1','6','154','75','0','Greathelm of the Unyielding Bull','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137788','4','4','3','53817','9','5','200','80','0','Limb Regeneration Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137789','3','4','4','52512','10','6','158','76','0','Gauntlets of Disembowelment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137790','3','4','4','51704','6','6','162','77','0','Belt of Crystalline Tears','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137791','4','4','2','53814','7','8','200','80','0','Leggings of the Winged Serpent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137792','3','4','4','52450','5','6','166','77','0','Agin\'s Crushing Carapace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137793','3','4','4','52304','1','6','170','77','0','Skullcage of Eternal Terror','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137794','3','4','0','52454','2','3','174','78','0','Torta\'s Oversized Choker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137795','3','4','4','52451','10','6','142','72','0','Grips of the Valiant Champion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137796','3','4','1','52453','16','7','142','72','0','Earthbound Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137797','3','4','1','23422','16','7','166','77','0','Cloak of the Agile Mind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137798','4','4','1','53825','10','7','200','80','0','Overlook Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137799','3','4','1','52605','16','7','200','80','0','Reanimator\'s Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137800','3','4','3','52610','5','5','200','80','0','Aviary Guardsman\'s Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137801','3','4','4','52611','6','6','200','80','0','Waistguard of the Risen Knight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137802','3','2','15','52445','13','1','146','73','3','Elanor\'s Edge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137803','3','2','10','51691','17','2','138','71','2','Lola\'s Lifegiving Branch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137804','3','2','10','50536','17','2','158','76','2','Bloodwood Greatstaff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137805','3','2','4','50006','21','2','154','75','3','Melia\'s Magnificent Scepter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137806','3','2','10','52446','17','2','162','77','2','Zabra\'s Misplaced Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137807','3','2','7','52457','13','1','150','74','3','Lydia\'s Sharpened Swordbreaker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137808','3','2','4','52455','13','2','162','77','3','Dragonjaw Mauler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137809','3','2','2','49368','15','2','162','77','0','Roc-Feather Longbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137810','3','4','6','51721','14','1','158','76','4','Blade-Binding Bulwark','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137811','3','2','1','52456','17','1','146','73','1','Captain Carver\'s Persuader','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137812','3','2','5','52460','17','1','158','76','1','Petrified Ironwood Smasher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137813','3','2','6','52449','17','1','154','75','1','Banner Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137814','3','4','4','51577','3','6','200','80','0','Iron Dwarf Smith Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137817','3','4','0','52465','23','3','146','73','7','Branch of Sinful Reprieve','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137818','3','4','3','52359','7','5','200','80','0','Patroller\'s War-Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137819','3','4','0','26001','11','4','138','71','0','Milan\'s Mastercraft Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137820','3','4','0','33856','11','4','142','72','0','Worgen\'s Ring of Revitalization','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137821','3','4','0','28733','11','4','150','74','0','Raine\'s Signet of Blasting','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137822','3','4','0','52459','11','4','170','77','0','Twisted Puzzle-Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137823','3','4','0','36902','2','3','166','77','0','Draconic Choker of Ferocity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137824','3','2','19','56898','26','2','174','78','0','Gwyneth\'s Runed Dragonwand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137825','3','4','1','52364','10','7','200','80','0','Traditionally Dyed Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137826','3','4','4','51934','6','6','200','80','0','The General\'s Steel Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137835','4','4','0','26622','12','4','200','80','0','Je\'Tze\'s Bell','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137840','3','4','1','43086','16','7','200','80','0','Shroud of Reverberation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137841','3','4','2','51936','8','8','200','80','0','Slag Footguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137842','3','4','2','49378','6','8','200','80','0','Belt of Vivacity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137843','3','4','1','52348','10','7','200','80','0','Giant-Hair Woven Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137844','3','4','0','52614','12','3','200','80','0','Winged Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137845','3','4','3','52615','6','5','200','80','0','Cord of Swirling Winds','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137846','3','4','2','52616','10','8','200','80','0','Charged-Bolt Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137847','3','4','4','50507','8','6','200','80','0','Skywall Striders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137848','3','2','10','51938','17','2','200','80','2','Lightning Giant Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137849','3','4','4','52304','1','6','200','80','0','Planetary Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137850','3','4','1','52347','6','6','200','80','0','Flowing Sash of Order','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137851','3','4','1','52357','20','7','200','80','0','Ornate Woolen Stola','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137852','4','2','1','55709','17','1','200','80','1','Colossal Skull-Clad Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137853','4','4','2','51939','9','8','200','80','0','Advanced Tooled-Leather Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137854','4','4','1','53826','7','7','200','80','0','Woven Bracae Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137855','4','4','3','53818','6','5','200','80','0','Mail Girdle of the Audient Earth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137856','3','2','15','49373','13','1','200','80','3','Librarian\'s Paper Cutter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137857','3','4','3','59544','1','5','200','80','0','Helm of the Lightning Halls','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137858','3','4','2','54902','10','8','200','80','0','Awakened Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137861','3','4','0','31603','2','3','200','80','0','Necklace of Arcane Spheres','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137862','3','4','4','52512','10','6','200','80','0','Gauntlets of the Water Revenant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137864','4','4','0','37840','12','4','128','70','0','Medallion of the Alliance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137865','4','4','0','37841','12','4','128','70','0','Medallion of the Horde','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137867','3','4','1','53625','8','7','200','80','0','Footwraps of Teleportation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137868','3','4','3','55009','6','5','200','80','0','Girdle of the Ethereal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137869','3','4','0','28831','11','3','200','80','0','Globule Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137870','3','4','3','55011','8','5','200','80','0','Twin-Headed Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137871','3','2','0','54989','13','1','200','80','3','The Key','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137872','3','4','0','55012','12','3','200','80','0','Lavanthor\'s Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137873','3','4','0','44237','12','3','200','80','0','Mark of the War Prisoner','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137874','3','4','4','55019','10','6','200','80','0','Gauntlets of Capture','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137875','3','4','3','54933','3','5','200','80','0','Spaulders of the Violet Hold','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137876','3','4','1','52334','7','7','200','80','0','Cyanigosa\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137883','4','2','10','54903','17','2','200','80','2','Staff of Trickery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137884','4','4','1','53893','9','7','200','80','0','Azure Cloth Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137886','4','4','3','55006','10','5','200','80','0','Handgrips of the Savage Emissary','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137889','3','4','0','54985','23','8','200','80','0','Prison Manifest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137890','3','4','2','55007','7','8','200','80','0','Chain Gang Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137891','3','4','4','55008','9','6','200','80','0','Cast Iron Shackles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137892','3','2','14','50189','13','2','5','1','7','Green Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137893','3','2','14','59619','13','1','5','1','7','Filled Green Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137894','3','2','14','59619','13','1','5','1','7','Filled Green Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137895','3','2','14','59619','13','1','5','1','7','Filled Green Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137896','3','2','14','59619','13','1','5','1','7','Filled Green Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137897','3','2','14','59619','13','1','5','1','7','Filled Green Brewfest Stein','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137927','4','4','0','39129','11','5','154','70','0','Guardian\'s Band of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137928','4','4','0','39162','2','5','154','70','0','Guardian\'s Pendant of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137929','4','4','0','39162','2','5','154','70','0','Guardian\'s Pendant of Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137934','1','4','0','45948','11','5','1','0','0','Noble\'s Elementium Signet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137936','2','4','1','51284','1','7','146','0','0','Fisherman\'s Earwarmer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137937','2','4','1','51172','6','7','146','0','0','Alystros\'s Plume Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137938','2','4','1','51370','20','7','146','0','0','Visionary\'s Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137939','2','4','0','34318','2','4','146','0','0','Baleen Braided Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137940','2','4','1','51301','3','7','146','0','0','Mantle of Itharius','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137941','2','4','1','51145','10','7','146','0','0','Fading Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137942','2','4','1','53251','8','7','146','0','0','Kirin Tor Initiate\'s Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137943','2','4','1','51287','1','7','146','0','0','Kirin Tor Initiate\'s Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137944','2','4','1','51368','20','7','146','0','0','High Priest Forith\'s Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137945','2','4','1','51334','7','7','146','0','0','Thin Jormungar Legwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137947','2','4','1','51317','6','7','146','0','0','Miraculous Waistwarming Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137948','2','4','1','51208','3','7','146','0','0','Refractive Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137949','2','4','1','51004','16','7','146','0','0','Saboteur\'s Wrap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137950','2','4','1','51355','9','7','146','0','0','Highseas Wristwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137953','2','4','1','52624','20','7','146','0','0','Wastewind Garments','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137954','2','4','1','52623','6','7','146','0','0','Wastewind Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137956','2','4','1','51388','10','7','146','0','0','Frontrunner\'s Blessed Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137957','2','4','1','51361','9','7','146','0','0','Wastewind Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137958','2','4','1','52516','1','7','146','0','0','Wastewind Headcover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137959','2','4','1','49464','3','7','146','0','0','Wastewind Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137960','2','4','0','51278','11','8','146','0','0','Oath Signet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137961','2','4','1','52626','7','7','146','0','0','Wastewind Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137962','2','4','1','53257','8','7','146','0','0','Treads of the Charred Canyon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137963','2','4','1','52625','10','7','146','0','0','Wastewind Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137964','2','4','1','51359','9','7','146','0','0','Spiderwarder Braces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137965','2','4','1','51203','1','7','146','0','0','Wyrmward Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137966','2','4','1','51044','9','7','146','0','0','Bracers of Nature\'s Fury','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137968','2','4','1','51369','20','7','146','0','0','Robe of Calcified Tears','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137969','2','4','1','51372','16','7','146','0','0','Chaos Mender Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137970','2','4','1','52493','1','7','146','0','0','Feathers of the Dragon Wastes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137971','2','4','1','51312','6','7','146','0','0','Sash of the Nibbling Plague','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137980','2','4','2','49247','5','8','146','0','0','Moa\'ki Thresherhide Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137981','2','4','2','49851','7','8','146','0','0','Ancient Dreamer\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137982','2','4','0','28830','11','3','146','0','0','Gleaming Tuskring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137983','2','4','2','49911','10','8','146','0','0','Gloves of the Emerald Stalker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137984','2','4','2','56470','8','8','146','0','0','Deathtouched Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137985','2','4','2','49848','3','8','146','0','0','Violet Stalker Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137986','2','4','2','51264','1','8','146','0','0','Hood of the Forgotten Rifleman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137987','2','4','2','51360','9','7','146','0','0','Violet Stalker Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137988','2','4','1','51375','16','7','146','0','0','Lord Prestor\'s Drape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137989','2','4','2','51332','7','6','146','0','0','Rattlebore Slayer Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137990','2','4','2','51318','6','8','146','0','0','Narf\'s Explosiveproof Strand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137991','2','4','2','49809','5','8','146','0','0','Hyper-amplified Natural Leather Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137992','2','4','0','9852','2','3','146','0','0','Ritual Neckguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137993','2','4','2','51343','8','8','146','0','0','Glade Wanderer Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137995','2','4','2','51286','1','8','146','0','0','Snowfall Reaver Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137996','2','4','2','51392','10','8','146','0','0','Snowfall Reaver Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137998','2','4','2','49903','8','8','146','0','0','Snowfall Reaver Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('137999','2','4','2','51354','9','7','146','0','0','Glade Wanderer Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138000','2','4','2','49255','5','8','146','0','0','Snowfall Reaver Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138001','2','4','2','49845','3','8','146','0','0','Snowfall Reaver Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138002','2','4','1','51373','16','7','146','0','0','Honorborn Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138003','2','4','2','51333','7','6','146','0','0','Snowfall Reaver Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138004','2','4','2','51319','6','8','146','0','0','Scourgeslayer Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138005','2','4','2','49256','9','7','146','0','0','Spiritfury Bands','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138006','2','4','2','49258','6','8','146','0','0','Glade Wanderer Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138007','2','4','2','56372','5','8','146','0','0','Canyon Runner\'s Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138008','2','4','2','51316','6','8','146','0','0','Lothalar Woodwalker Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138010','2','4','2','51164','1','8','146','0','0','Scourgeslayer Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138011','2','4','2','51335','7','6','146','0','0','Torturer\'s Fleshwoven Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138012','2','4','2','51356','9','7','146','0','0','Lothalar Woodwalker Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138013','2','4','2','49246','3','8','146','0','0','Lothalar Woodwalker Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138014','2','4','2','49251','10','8','146','0','0','Vermin-Handler\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138023','2','4','3','51213','7','5','146','0','0','Sharkdiver\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138024','2','4','3','51148','8','5','146','0','0','Verdant Linked Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138025','2','4','3','51390','10','5','146','0','0','Guiding Gloves of the Seer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138026','2','4','3','51358','9','5','146','0','0','Sharkdiver\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138027','2','4','3','59545','1','5','146','0','0','Verdant Hunter\'s Guise','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138028','2','4','0','28812','11','3','146','0','0','Ring of the Afterlife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138029','2','4','3','56310','10','5','146','0','0','Azurehunter Handguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138030','2','4','3','56443','5','5','146','0','0','Chestpiece of the Forgotten Captain','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138031','2','4','3','56312','7','5','146','0','0','Azurehunter Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138032','2','4','0','9658','2','3','146','0','0','Wyrm-slave Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138033','2','4','3','51309','5','5','146','0','0','Ice Heart Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138034','2','4','3','51320','6','5','146','0','0','Serrated Chain Links','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138035','2','4','3','51077','8','5','146','0','0','Tightened Chainmesh Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138036','2','4','0','51275','11','8','146','0','0','Circlet of the Forgotten Mercenary','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138037','2','4','3','51303','3','5','146','0','0','Westwind Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138039','2','4','3','51300','3','5','146','0','0','Iceshear Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138040','2','4','3','51260','9','5','146','0','0','Iceshear Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138041','2','4','3','51321','6','5','146','0','0','Westwind Waistband','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138042','2','4','0','51280','2','3','146','0','0','Scourge Ghoul Collar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138043','2','4','3','56200','7','5','146','0','0','Anub\'ar-Husk Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138044','2','4','3','54933','3','5','146','0','0','Anub\'ar-Husk Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138045','2','4','3','52303','1','5','146','0','0','Anub\'ar-Husk Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138046','2','4','3','51394','10','5','146','0','0','Wyrmfire Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138047','2','4','3','51072','6','5','146','0','0','Belt of Ghostly Essence','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138048','2','4','3','51221','5','5','146','0','0','Breastplate of Sizzling Chitin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138049','2','4','3','51322','6','5','146','0','0','Wyrmchaser\'s Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138051','2','4','3','51347','8','5','146','0','0','Star\'s Rest Treads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138053','2','4','3','51071','5','5','146','0','0','Wyrmfire Links','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138054','2','4','3','51357','9','5','146','0','0','Paingiver Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138055','2','4','3','51181','10','5','146','0','0','Ridgehunter Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138056','2','4','3','51311','5','5','146','0','0','Ridgehunter Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138057','2','4','3','51238','1','5','146','0','0','Rodent-Proof Headguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138068','2','4','0','24087','11','3','146','0','0','Sinner\'s Repentance','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138070','2','4','0','16283','12','4','146','0','0','Foresight\'s Anticipation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138071','2','4','0','34188','12','8','146','0','0','Valonforth\'s Remembrance','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138072','2','4','0','53466','12','8','146','0','0','Thunder Capacitor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138073','2','4','0','34188','12','8','146','0','0','Will of the Red Dragonflight','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138080','2','4','0','16283','12','4','146','0','0','Automated Weapon Coater','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138081','2','4','0','16283','12','4','146','0','0','Scarab of Isanoth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138084','2','4','4','56393','8','6','146','0','0','Crustacean Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138085','2','4','4','51197','6','6','146','0','0','Belt of the Emerald Guardian','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138086','2','4','4','61308','1','6','146','0','0','Vigilant Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138087','2','4','4','51391','10','6','146','0','0','Sea Rusted Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138088','2','4','4','56370','5','6','146','0','0','Breastplate of Nature\'s Ire','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138089','1','4','1','22423','1','7','1','0','0','Ruby Shades','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138090','1','4','0','23728','11','5','1','0','0','Sapphire Pinky Ring','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138091','1','4','0','44841','11','5','1','0','0','Gold Eternium Band','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138092','2','4','4','49512','3','6','146','0','0','Crystalplate Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138093','2','4','4','56469','9','6','146','0','0','Dalaran Sentry Wristbraces','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138094','2','4','4','50905','1','6','146','0','0','Dalaran Sentry Headguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138095','2','4','4','51330','7','6','146','0','0','Legplates of the Conquered Knight','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138096','2','4','4','56195','7','6','146','0','0','Crystalplate Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138097','2','4','4','51315','6','6','146','0','0','Experimental Utility Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138100','2','4','4','56394','10','5','146','0','0','Crystalplate Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138101','2','4','4','51131','8','6','146','0','0','Stonepath Sabatons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138102','2','4','4','51393','10','5','146','0','0','Stonepath Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138103','2','4','4','51204','5','6','146','0','0','Petrified Bone Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138104','2','4','4','51288','1','6','146','0','0','Stonepath Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138105','2','4','4','51302','3','6','146','0','0','Stonepath Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138106','2','4','4','51162','8','6','146','0','0','Petrified Bone Footguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138107','2','4','4','51108','5','6','146','0','0','Stonepath Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138108','2','4','4','56138','6','6','146','0','0','Conscript\'s Ruby Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138109','2','4','4','51337','7','6','146','0','0','Wraithshimmer Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138110','2','4','4','49478','7','6','146','0','0','Legplates of the Agmar Preserver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138111','2','4','4','51133','9','6','146','0','0','Wyrmbane Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138112','2','4','4','51297','3','6','146','0','0','Bark Covered Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138114','2','4','4','56445','5','6','146','0','0','Chestplate of the Ruby Champion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138115','2','4','4','51346','8','6','146','0','0','Sabatons of the Enforcer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138116','2','4','4','51331','7','6','146','0','0','Plated Magnataur Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138117','2','4','4','51314','6','6','146','0','0','Dreadtalon\'s Clutch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138118','2','4','4','51397','10','5','146','0','0','Bite-Proof Grips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138126','2','2','10','50143','17','2','146','0','2','Frostbite Warstaff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138127','2','2','4','50208','21','1','146','0','3','Carved Dragonbone Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138128','2','2','10','50146','17','2','146','0','2','Staff of the Spiked Beast','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138129','2','2','10','50141','17','2','146','0','2','Staff of the Ley Mender','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138130','2','2','15','51365','21','1','146','0','3','Emme\'s Lost Spellblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138131','2','2','10','50139','17','2','146','0','2','Staff of Ruby Wood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138132','2','2','10','50147','17','2','146','0','2','Moonrest Garden Stave','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138133','2','2','10','50146','17','2','146','0','2','Timeshattered Spire','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138134','2','2','15','51364','21','1','146','0','3','Bloodtinged Spellblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138135','2','2','4','50197','21','1','146','0','3','Mace of the Fallen Raven Priest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138137','2','2','10','50144','17','2','146','0','2','Endurance of the Spell Warder','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138138','2','2','15','51367','21','1','146','0','3','Keldonus\'s Missing Spellshard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138141','2','2','10','50138','17','2','146','0','2','Coldwind Scratching Pole','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138142','2','2','15','51366','21','1','146','0','3','Infused Dragonbone Splinter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138143','2','2','10','50137','17','2','146','0','2','Composite Harpyspine Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138146','2','2','7','51377','13','1','146','0','3','Gleaming Iceblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138147','2','4','0','963','11','7','60','55','0','Corrupted Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138148','2','2','5','51381','17','2','146','0','1','Chilled Headsmasher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138150','2','2','18','50167','26','2','146','0','0','Imported Ironshod Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138151','2','2','15','50122','13','1','146','0','3','Daschal\'s Discarded Shiv','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138152','2','2','4','50208','13','1','146','0','3','Mace of the Violet Guardian','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138153','2','2','13','51171','22','1','146','0','7','Mana Infused Claw','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138154','2','2','7','51380','13','1','146','0','3','Taigasha','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138155','2','2','15','50121','13','1','146','0','3','Shortblade of the Ruby Ally','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138156','2','2','1','49227','17','1','146','0','1','Battered Magnataur Dualblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138157','2','2','2','50152','15','2','146','0','0','Longbow of the Ruby Rider','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138160','1','4','0','50578','20','4','1','0','0','Soul-Trader\'s Bindings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138161','1','4','0','51271','10','4','1','0','0','Soul-Trader\'s Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138162','1','4','0','50579','8','4','1','0','0','Soul-Trader\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138163','1','4','0','50489','1','4','1','0','0','Soul-Trader\'s Head Wrap','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138169','2','2','15','51168','13','1','146','0','3','Keen Woodland Shank','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138170','2','2','4','50201','13','1','146','0','3','Spiked Coldwind Club','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138171','2','2','5','50325','17','2','146','0','1','Battleworn Magnataur Crusher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138172','2','2','18','50166','26','2','146','0','0','Crossbow of the Hardened Ranger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138173','2','2','15','51403','13','1','146','0','3','Dagger of the Returning Past','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138174','2','2','4','50206','13','1','146','0','3','Time-Bending Smasher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138175','4','2','7','31419','21','1','115','70','3','The Horseman\'s Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138176','2','2','4','49201','13','1','146','0','3','Stronghold Battlemace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138177','2','2','3','51174','26','1','146','0','0','Siege Captain\'s Gun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138178','2','2','1','50338','17','1','146','0','1','Battlement Enforcer\'s Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138181','2','2','8','50329','17','1','146','0','1','Warblade of the Forgotten Footman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138187','2','2','0','51464','13','1','146','0','3','Reactive Waraxe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138188','2','2','13','51171','22','1','146','0','7','Claw of the Undead Ravager','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138189','2','2','15','49207','13','1','146','0','3','Backtwister','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138190','2','2','15','49206','13','1','146','0','3','Scourgeslayer\'s Shank','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138191','2','2','15','50130','13','1','146','0','3','Compact Explosive Delivery Device','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138194','2','2','3','29163','26','1','146','0','0','Mageslayer Rifle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138195','2','2','8','49223','17','1','146','0','1','Magister\'s Bane','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138196','2','2','0','51463','13','1','146','0','3','Bloodsmeared Brutalizer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138197','2','2','1','51385','17','1','146','0','1','Mounted Boneshredder','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138198','2','2','7','51402','13','1','146','0','3','Joint-Severing Quickblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138202','2','2','19','57176','26','2','146','0','0','Twig of Happy Reminders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138206','2','2','19','56894','26','2','146','0','0','Wand of Blinding Light','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138207','2','2','19','56895','26','2','146','0','0','Wand of Purifying Fire','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138208','2','2','2','50157','15','2','138','0','0','Valiance Longbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138212','2','4','0','52818','12','4','138','0','0','Death Knight\'s Anguish','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138213','2','4','0','45851','12','8','138','0','0','Harbinger\'s Wrath','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138214','2','4','0','51185','23','4','138','0','7','Hypergizmatic Energy Booster','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138217','2','4','0','50191','23','4','146','0','7','Tome of the Violet Tower','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138218','3','4','0','24022','11','5','155','0','0','Executioner\'s Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138219','3','4','0','35423','11','3','155','0','0','Ring of Decimation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138220','3','4','0','39121','11','3','155','0','0','Signet of Swift Judgment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138221','3','4','1','43086','16','7','159','0','0','Shroud of Fluid Strikes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138222','3','4','1','43086','16','7','159','0','0','Mantle of Keristrasza','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138223','3','4','1','30783','16','7','159','0','0','Cloak of Azure Lights','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138224','2','4','0','51362','23','4','146','0','7','Life Binder Talisman','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138226','3','4','0','9860','2','3','138','0','0','Chain of the Tolling Bell','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138227','3','4','0','9858','2','3','138','0','0','Indomitable Choker of Light','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138228','3','4','0','6490','2','4','138','0','0','Pendant of Revolutionary Thought','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138230','3','4','0','9858','2','3','138','0','0','Clutch of Undying Will','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138231','3','4','0','9860','2','3','138','0','0','Choker of Forceful Redemption','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138232','3','4','0','6490','2','4','138','0','0','Chain of Vigilant Thought','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138237','3','2','1','53056','17','1','138','0','1','Axe of Frozen Death','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138238','3','2','13','51110','21','1','138','0','7','Borean Smasher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138239','3','2','10','49232','17','2','138','0','2','Tower of the Infinite Mind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138240','3','2','10','49232','17','2','138','0','2','Staff of the Purposeful Mendicant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138241','3','2','3','50850','26','1','138','0','0','Fury of the Raging Dragon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138242','3','2','15','49207','13','1','138','0','3','Fang of the Desolate Soul','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138243','3','2','13','50533','21','1','138','0','7','Ravaging Steelfist','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138244','3','2','1','50532','17','1','138','0','1','Valorous Exterminator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138245','3','2','10','50535','17','2','138','0','2','Crystalline Providence','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138246','3','2','3','50534','26','1','138','0','0','Skull-Forged Blunderbuss','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138247','3','2','15','49373','13','1','138','0','3','Entrail Render','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138248','3','2','10','50536','17','2','138','0','2','Torch of the Fallen Souls','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138250','3','4','0','49225','11','8','138','0','0','Activist\'s Signet of Blasting','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138251','3','4','0','26391','11','3','138','0','0','Ring of Indignant Rage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138252','3','4','0','28812','11','3','138','0','0','Band of Wholesome Preservation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138257','3','4','0','50547','12','8','138','0','0','Strike of the Seas','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138258','3','4','0','3673','12','8','138','0','0','Sailor\'s Knotted Charm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138259','3','4','0','7371','12','4','138','0','0','First Mate\'s Pocketwatch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138262','0','2','10','20309','17','2','1','1','2','Well-Worn Bat','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138268','0','2','14','50561','13','1','1','70','0','Spare Hand','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138276','1','4','1','50565','1','7','115','0','0','Haliscan Brimmed Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138277','1','4','1','50566','5','7','36','0','0','Haliscan Jacket','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138278','1','4','1','50567','7','7','35','0','0','Haliscan Pantaloons','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138282','4','2','8','50572','17','1','100','0','3','Bland Two-Handed Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138284','2','4','0','51279','11','8','146','0','0','Siegemaster\'s Torch Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138285','1','4','0','50582','6','4','1','0','0','Soul-Trader\'s Waistband','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138286','1','4','0','50581','3','4','1','0','0','Soul-Trader\'s Pauldrons','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138287','4','4','0','50583','12','4','110','70','0','Empty Mug of Direbrew','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138288','4','4','0','50584','12','4','110','70','0','Direbrew Hops','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138289','4','4','0','45850','12','4','110','70','0','Coren\'s Lucky Coin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138290','4','4','0','50586','12','4','110','70','0','Dark Iron Smoking Pipe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138293','2','4','0','51363','23','4','146','0','7','Suntouched Flowers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138295','2','4','8','51424','28','2','146','0','0','Idol of the Wastes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138309','4','4','0','50860','19','7','1','0','0','Tabard of Nature','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138310','4','4','0','50861','19','7','1','0','0','Tabard of the Arcane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138311','4','4','0','50863','19','7','1','0','0','Tabard of the Void','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138312','4','4','0','50686','19','7','1','0','0','Tabard of Brilliance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138313','4','4','0','50859','19','7','1','0','0','Tabard of Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138314','4','4','0','50862','19','7','1','0','0','Tabard of the Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138318','2','4','1','51795','20','4','20','10','0','Darkmoon Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138322','4','4','0','23171','23','4','200','77','7','Iron-bound Tome','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138353','3','4','1','57171','16','7','150','74','0','Venture Bay Buccaneer\'s Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138354','3','4','1','31131','16','7','150','74','0','Oil-Stained Tarp','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138355','3','4','1','57172','16','7','150','74','0','Thick Goblin Back Protector ','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138356','3','2','19','56897','26','2','150','74','0','Venture Battle Wand','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138357','3','2','16','43111','25','1','150','74','0','Sharpened Throwing Gizmo','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138358','3','4','0','43092','12','3','150','74','0','Arcane Revitalizer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138359','3','4','0','43092','12','3','150','74','0','Goblin Repetition Reducer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138360','3','4','8','54347','28','2','150','74','0','Idol of Arcane Terror','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138361','3','4','9','50537','28','2','150','74','0','Venture Co. Lightning Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138362','3','4','7','5563','28','2','150','74','0','Venture Co. Libram of Retribution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138363','3','4','7','1103','28','2','150','74','0','Venture Co. Libram of Protection','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138364','3','4','7','5562','28','2','150','74','0','Venture Co. Libram of Mostly Holy Deeds','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138365','3','4','8','39640','28','2','150','74','0','Idol of Perspicacious Attacks','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138366','3','4','8','54349','28','2','150','74','0','Idol of Pure Thoughts','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138367','3','4','9','55823','28','2','150','74','0','Venture Co. Flame Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138368','3','4','9','57173','28','2','150','74','0','Totem of the Bay','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138383','2','4','0','34188','12','8','146','0','0','Valonforth\'s Folly','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138387','3','4','3','50680','1','7','154','80','0','Grizzled Hat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138388','3','4','3','50680','1','7','154','80','0','Cap of the North','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138389','3','4','3','50680','1','7','154','80','0','Comfy Raccoonskin Hat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138390','3','4','3','50680','1','7','154','80','0','The Rugged Marksman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138400','2','4','2','52902','5','5','142','70','0','Arctic Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138401','2','4','2','49794','7','7','146','71','0','Arctic Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138402','2','4','2','49246','3','8','142','72','0','Arctic Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138403','2','4','2','49253','10','8','146','71','0','Arctic Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138404','2','4','2','52901','8','7','142','70','0','Arctic Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138405','2','4','2','52584','6','7','146','73','0','Arctic Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138406','2','4','2','53050','6','7','142','72','0','Iceborne Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138407','2','4','2','53051','8','7','138','70','0','Iceborne Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138408','2','4','2','53052','5','5','138','70','0','Iceborne Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138409','2','4','2','64114','10','8','142','70','0','Iceborne Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138410','2','4','2','53054','7','7','142','70','0','Iceborne Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138411','2','4','2','49920','3','8','146','73','0','Iceborne Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138412','2','4','3','55193','6','7','138','68','0','Frostscale Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138413','2','4','3','52950','8','7','146','73','0','Frostscale Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138414','2','4','3','57751','5','5','138','68','0','Frostscale Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138415','2','4','3','52951','10','8','142','72','0','Frostscale Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138416','2','4','3','51213','7','7','142','70','0','Frostscale Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138417','2','4','3','56692','3','5','146','73','0','Nerubian Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138418','2','4','3','56684','6','5','138','68','0','Nerubian Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138419','2','4','3','56690','8','5','142','72','0','Nerubian Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138420','2','4','3','51109','5','5','138','68','0','Nerubian Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138421','2','4','3','56688','10','5','134','70','0','Nerubian Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138422','2','4','3','56691','7','7','138','68','0','Nerubian Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138424','2','4','3','52151','3','8','142','70','0','Frostscale Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138433','2','4','2','49256','9','7','150','74','0','Arctic Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138434','2','4','2','53055','9','7','150','74','0','Iceborne Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138435','2','4','3','56687','9','7','150','74','0','Nerubian Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138436','2','4','3','57750','9','7','150','74','0','Frostscale Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138437','2','4','2','52906','1','7','150','74','0','Arctic Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138438','2','4','2','51784','1','7','150','74','0','Iceborne Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138439','2','4','3','51293','1','7','150','74','0','Nerubian Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138440','2','4','3','57541','1','7','150','74','0','Frostscale Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138441','3','4','1','56696','16','7','159','73','0','Cloak of Harsh Winds','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138442','3','4','3','16700','5','7','187','78','0','Mail Melee Leatherworking Chest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138443','3','4','3','16706','3','7','187','78','0','Mail Melee Leatherworking Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138444','3','4','3','17171','9','8','187','78','0','Mail Melee Leatherworking Bracer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138445','3','4','3','18418','1','8','187','78','0','Mail Caster Leatherworking Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138448','0','4','2','17069','10','8','187','80','0','Leather Melee Leatherworking Gloves','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138452','3','4','6','57078','14','1','166','78','4','Bulwark of the Warchief','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138453','3','4','6','49480','14','1','166','78','4','Shield of the Lion-hearted','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138454','3','2','4','57084','13','1','166','78','3','Warsong Punisher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138455','3','2','4','57083','13','2','166','78','3','Hammer of the Alliance Vanguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138456','3','2','2','57089','15','1','166','78','0','Sin\'dorei Recurve Bow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138457','3','2','3','57087','26','1','166','78','0','Sawed-off Hand Cannon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138458','3','4','0','51182','23','4','166','78','7','Darkspear Orb','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138459','3','4','0','57081','23','4','166','78','7','Orb of the Eastern Kingdoms','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138460','3','2','19','56896','26','2','166','78','0','Charged Wand of the Cleft','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138461','3','2','15','53470','13','1','166','78','3','Warsong Shanker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138462','3','4','6','57086','14','1','166','78','4','Warsong Stormshield ','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138463','3','4','6','57085','14','1','166','78','4','Lordaeron\'s Resolve ','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138464','3','2','19','57082','26','2','166','78','0','Gnomish Magician\'s Quill','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138465','3','2','15','51533','13','1','166','78','3','Vanguard Soldier\'s Dagger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138468','3','2','4','50603','13','2','146','73','3','Kalu\'ak Peacebringer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138506','3','4','1','50565','1','7','115','0','0','Don Carlos\' Famous Hat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138513','2','4','2','46626','7','7','13','8','0','Boarhide Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138524','2','4','4','56373','5','6','146','0','0','Carapace of the Scarlet Commander','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138525','2','4','2','51286','1','8','146','0','0','Jailor\'s Padded Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138527','2','4','3','51310','5','5','146','0','0','Onslaught Scalemail Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138528','2','4','2','51201','7','6','146','0','0','Legpads of the Inquisitor','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138529','2','4','1','51369','20','7','146','0','0','Robe of the Justicebringer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138530','3','4','1','51413','6','7','146','0','0','Wrap of Vigorous Destruction','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138531','3','4','3','51411','6','5','146','0','0','Links of Righteous Persecution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138532','3','4','2','56337','6','8','146','0','0','Belt of Vengeful Purification','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138533','3','4','4','50753','6','6','146','0','0','Girdle of Forceful Annihilation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138534','3','4','4','50752','9','6','146','0','0','Purity-Anointed Warbands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138535','3','4','3','51414','9','5','146','0','0','Wristguards of the Remorseful','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138536','3','4','1','51188','9','7','146','0','0','Bindings of the Forceful Vanquisher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138537','3','4','2','56397','9','7','146','0','0','Cuffs of the Decapitator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138540','3','4','1','50772','8','7','146','0','0','Sandals of Chaos Resolution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138541','3','4','4','50770','8','6','146','0','0','Implacable Zombie Crushers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138542','3','4','3','51412','8','5','146','0','0','Treads of the Valiant Struggle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138543','3','4','2','50771','8','8','146','0','0','Reinforced Traveler\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138572','3','4','0','43092','12','3','150','74','0','Bounty Procurement Enhancer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138579','2','4','0','51682','23','7','25','20','7','Venomous Tome','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138588','3','4','0','37841','12','4','115','70','0','Medallion of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138589','3','4','0','37840','12','4','115','70','0','Medallion of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138590','3','4','2','56676','8','7','175','77','0','Black Chitinguard Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138591','3','4','2','56678','7','7','171','76','0','Dark Arctic Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138592','3','4','2','52938','5','5','175','77','0','Dark Arctic Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138611','3','4','0','39122','11','3','183','77','0','Ringlet of Repose','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138613','3','4','0','9854','2','5','183','77','0','Chain of Fiery Orbs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138614','3','4','1','51531','16','7','183','77','0','Embrace of Sorrow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138615','3','4','3','52352','10','5','200','80','0','Lightning-Charged Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138616','3','4','2','51514','6','8','200','80','0','Maiden\'s Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138617','3','4','0','51515','11','3','200','80','0','Woeful Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138618','3','2','5','51163','17','1','200','80','1','Hammer of Grief','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138632','3','2','8','52261','17','1','70','0','1','Greatsword of the Ebon Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138633','3','2','1','50966','17','1','70','0','1','Greataxe of the Ebon Blade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138645','1','4','4','51052','5','6','50','45','0','Bone-Plated Armor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138646','1','4','4','51053','6','6','50','45','0','Bone-Plated Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138647','1','4','4','51054','8','6','50','45','0','Bone-Plated Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138648','1','4','4','32060','9','6','50','45','0','Bone-Plated Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138649','1','4','4','51055','10','6','50','45','0','Bone-Plated Gloves','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138650','1','4','4','15340','1','6','50','45','0','Bone-Plated Helm','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138651','1','4','4','25833','7','6','50','45','0','Bone-Plated Leggings','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138661','3','4','4','51738','1','6','70','0','0','Greathelm of the Scourge Champion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138662','3','4','0','31899','2','3','70','0','0','Bladed Ebon Amulet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138663','3','4','4','51956','3','6','70','0','0','Blood-soaked Saronite Plated Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138664','3','4','1','51733','16','7','70','0','0','Sky Darkener\'s Shroud of the Unholy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138665','3','4','4','51798','5','6','70','0','0','Saronite War Plate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138666','3','4','4','51632','9','6','70','0','0','Plated Saronite Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138667','3','4','4','51787','10','6','70','0','0','Bloodbane\'s Gauntlets of Command','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138668','3','4','4','51915','6','6','70','0','0','The Plaguebringer\'s Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138669','3','4','4','51637','7','6','70','0','0','Engraved Saronite Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138670','3','4','4','51990','8','6','70','0','0','Greaves of the Slaughter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138671','3','4','0','31664','11','7','70','0','0','Valanar\'s Signet Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138672','3','4','0','39122','11','7','70','0','0','Keleseth\'s Signet Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138674','3','4','0','51914','12','4','70','0','0','Soul Harvester\'s Charm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138675','3','4','0','51912','12','4','70','0','0','Signet of the Dark Brotherhood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138683','3','4','7','51588','28','2','70','0','0','ObsoleteSigil of the Dark Rider (OLD)','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138691','7','2','8','51405','17','1','1','0','0','Ancestral Claymore','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138707','3','2','8','51427','17','1','65','0','1','Runed Soulblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138710','2','4','1','51044','9','7','154','0','0','Wayfinder\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138711','2','4','1','51145','10','7','154','0','0','Grounded Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138712','2','4','1','52493','1','7','154','0','0','Headbinder\'s Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138713','2','4','1','51208','3','7','154','0','0','Spaulders of Foresight','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138714','2','4','1','51312','6','7','154','0','0','Path-Cutter\'s Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138715','2','4','1','53251','8','7','154','0','0','Forge-Scarred Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138716','2','4','1','51203','1','7','154','0','0','Ethereal Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138717','2','4','1','51334','7','7','154','0','0','Dusty Miner\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138718','2','4','1','49464','3','7','154','0','0','Wispy Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138719','2','4','1','51370','20','7','154','0','0','Robe of Expurgation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138726','2','4','1','51145','10','7','154','0','0','Instigator\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138727','2','4','1','51312','6','7','154','0','0','Foreseer\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138728','2','4','1','51334','7','7','154','0','0','Kilt of Peaceful Reclamation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138729','2','4','1','53251','8','7','154','0','0','Sandals of Quick Escape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138730','2','4','1','51208','3','7','154','0','0','Bell-Ringer\'s Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138732','2','4','1','51334','7','7','154','0','0','Bramble-Proof Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138733','2','4','1','51370','20','7','154','0','0','Raiment of the Caged Beast','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138734','2','4','1','51203','1','7','154','0','0','Abandoned Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138735','2','4','1','51370','20','7','154','0','0','Specially Treated Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138736','2','4','1','51044','9','7','174','0','0','Smuggler\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138737','2','4','1','51203','1','7','174','0','0','Shock-Proof Head Protector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138739','2','4','1','51044','9','7','174','0','0','Fleshwerk Shackles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138741','2','4','1','51145','10','7','174','0','0','Gloves of Tormented Recollection','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138743','2','4','0','51279','11','8','154','0','0','Band of the Tender','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138744','2','4','0','51279','11','8','154','0','0','Solstice Signet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138745','2','4','0','51279','11','8','154','0','0','Fetid Loop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138746','2','4','0','51279','11','8','154','0','0','Rancid Signet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138747','2','4','0','51279','11','8','154','0','0','Mildly Tarnished Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138748','2','4','0','51279','11','8','154','0','0','Seal of the Slumbering Wolf','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138749','2','4','0','51279','11','8','154','0','0','Thane-Reaper\'s Signet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138750','2','4','0','51279','11','8','154','0','0','Worgslayer\'s Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138751','2','4','0','34318','2','-1','154','0','0','Vengeful Spirit Beads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138752','2','4','0','34318','2','4','154','0','0','Tatjana\'s Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138753','2','4','0','34318','2','4','154','0','0','Hoarder\'s Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138754','2','4','0','34318','2','4','154','0','0','Pruning Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138755','2','4','0','54070','23','4','154','0','7','Scepter of Passionate Reprisal','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138756','2','4','1','15218','16','7','154','0','0','Drape of Horticultural Sanitization','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138757','2','4','1','15218','16','7','154','0','0','Drape of the Possessive Soul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138758','2','4','1','15218','16','7','154','0','0','Therapeutic Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138759','2','4','1','15218','16','7','154','0','0','Injured Trapper\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138760','2','4','0','57689','12','8','154','0','0','Mendicant\'s Charm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138761','2','4','0','57688','12','4','154','0','0','Talon of Hatred','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138762','2','4','0','57687','12','8','154','0','0','Insignia of Bloody Fire','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138763','2','4','0','48007','12','8','174','0','0','Futuresight Rune','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138764','2','4','0','45112','12','4','174','0','0','Rune of Finite Variation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('138765','2','4','0','48007','12','8','174','0','0','Rune of Infinite Power','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139010','2','4','6','51091','14','1','154','0','4','Wolfslayer\'s Crest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139011','2','4','6','51091','14','1','154','0','4','Bloody Bulwark','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139013','2','4','2','49251','10','8','154','0','0','Discoverer\'s Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139015','2','4','2','56012','3','8','154','0','0','Crackpot Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139016','2','4','2','49809','5','8','154','0','0','Tunic of the Rectified Thane','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139017','2','4','2','56333','6','8','154','0','0','Belt of Keen Hearing','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139018','2','4','2','56357','8','8','154','0','0','Boots of Safe Travel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139019','2','4','2','51333','7','6','154','0','0','Iron-Shatter Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139020','2','4','2','51164','1','8','154','0','0','Drakuru\'s Ghastly Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139021','2','4','2','51356','9','7','154','0','0','Ectoplasm Stained Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139022','2','4','2','49842','1','8','154','0','0','Helm of Rising Smoke','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139023','2','4','2','51307','5','8','154','0','0','Wax-Coated Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139025','2','4','2','51356','9','7','154','0','0','Shackles of Sanity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139026','2','4','2','49246','3','8','154','0','0','Pauldrons of the Prophet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139027','2','4','2','51333','7','6','154','0','0','Leggings of Anger Management','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139028','2','4','2','56389','10','8','154','0','0','Coiled Leather Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139029','2','4','2','51316','6','8','154','0','0','Waistguard of Expedient Procurement','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139030','2','4','2','51333','7','6','154','0','0','Patchhide Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139031','2','4','2','49903','8','8','154','0','0','Boots of Internal Strife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139033','2','4','2','51307','5','8','154','0','0','Discarded Miner\'s Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139034','2','4','2','56332','1','8','154','0','0','Bearskin Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139035','2','4','2','49903','8','8','174','0','0','Glacier-walker\'s Mukluks','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139036','2','4','2','51307','5','8','174','0','0','Hulking Horror Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139038','2','4','2','51356','9','7','174','0','0','Fleshwerk Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139040','2','4','2','49251','10','8','174','0','0','Gloves of Troubled Memory','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139043','2','4','3','51303','3','5','154','0','0','Trailbreaker\'s Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139044','2','4','3','51148','8','5','154','0','0','Short-Circuiting Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139045','2','4','3','51213','7','5','154','0','0','Legguards of Refuted Feudalism','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139046','2','4','3','51300','3','5','154','0','0','Shoulderpads of Imminent Disaster','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139047','2','4','3','51324','7','5','154','0','0','Legguards of Unerring Navigation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139049','2','4','3','51293','1','5','154','0','0','Helm of Spirit Links','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139050','2','4','3','51322','6','5','154','0','0','Ghostridden Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139051','2','4','3','51077','8','5','154','0','0','Plane-shifted Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139052','2','4','3','51309','5','5','154','0','0','Acid-Resistant Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139053','2','4','3','51238','1','5','154','0','0','Helm of the Furbolg Purifier','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139054','2','4','3','51181','10','5','154','0','0','Gossamer-Stained Grips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139055','2','4','3','51390','10','5','154','0','0','Handguards of Extermination','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139056','2','4','3','51357','9','5','154','0','0','Whip-Stitched Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139057','2','4','3','51238','1','5','154','0','0','Polished Staghorn Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139058','2','4','3','51324','7','5','154','0','0','Legguards of Swift Pursuit','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139059','2','4','3','51357','9','5','154','0','0','Wristguard of the Tormented Soul','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139060','2','4','3','51300','3','5','154','0','0','Patched Trapper Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139062','2','4','2','49246','3','8','154','0','0','Herbalist\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139064','2','4','3','51310','5','5','154','0','0','Hide-Lined Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139065','2','4','3','51322','6','5','174','0','0','Skycaptain\'s Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139066','2','4','3','51324','7','5','174','0','0','Leggings of the Turning Point','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139068','2','4','3','51357','9','5','174','0','0','Flesh-scaled Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139070','2','4','3','51181','10','5','174','0','0','Gloves of the Mad Bomber','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139072','2','4','4','51094','5','6','138','0','0','Blacksoul Protector\'s Hauberk','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139073','2','2','19','56893','26','2','138','0','0','Root of the Everlasting','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139074','2','4','1','15206','16','7','138','0','0','Drape of Distilled Hatred','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139075','2','4','4','51247','6','6','154','0','0','Waywalker\'s Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139076','2','4','4','51325','7','6','154','0','0','Golem-Rider\'s Greaves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139077','2','4','4','61308','1','6','154','0','0','Skull-Reshaper\'s Helm ','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139078','2','4','4','51131','8','6','154','0','0','Whispering Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139079','2','4','4','51899','9','6','154','0','0','Bracers of the Chaperon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139080','2','4','4','51387','10','5','154','0','0','Grips of Flawed Temper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139081','2','4','4','51288','1','6','154','0','0','Spiritforged Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139082','2','4','4','51149','3','6','154','0','0','Shocksteel Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139083','2','4','4','54815','3','6','142','70','0','Cobalt Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139084','2','4','4','54813','1','6','142','70','0','Cobalt Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139085','2','4','4','51503','5','6','142','70','0','Cobalt Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139086','2','4','4','54814','7','6','142','70','0','Cobalt Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139087','2','4','4','54812','6','6','142','70','0','Cobalt Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139088','2','4','4','54809','8','6','142','70','0','Cobalt Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139089','2','4','4','49478','7','6','155','0','0','Spiritforged Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139090','2','4','4','56330','5','6','154','0','0','Chestplate of Untimely Rewards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139091','2','4','4','51892','3','6','154','0','0','Blood-Spattered Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139092','2','4','4','51288','1','6','154','0','0','Thought-Purifying Protector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139093','2','4','4','51306','5','6','154','0','0','Chestguard of Expressed Fury','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139094','2','4','4','51247','6','6','154','0','0','Load-Bearing Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139095','2','4','4','51387','10','5','154','0','0','Hammer-Holder\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139096','2','4','4','51325','7','6','154','0','0','Snaptooth Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139097','2','4','4','51131','8','6','154','0','0','Sabatons of Crushed Humanity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139098','2','4','4','51131','8','6','154','0','0','Rusty Cave Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139099','2','4','4','56106','5','6','154','0','0','Carapace of the Fallen','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139100','2','4','4','51353','9','6','174','0','0','Plated Bracelet of the Skies','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139102','2','4','4','51131','8','6','174','0','0','Icewalker\'s Spikes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139104','2','4','4','51353','9','6','174','0','0','Hardened Bone Wrist Protectors','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139105','2','4','4','51247','6','6','154','0','0','Girdle of Growing Vines','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139108','2','4','4','51288','1','6','174','0','0','Bloodstained Helmet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139109','2','2','10','51382','17','2','154','0','2','Branch of the Roaming Spirit','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139110','2','2','10','51382','17','2','154','0','2','Staff of Righteous Vengeance','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139112','2','2','13','51152','21','1','154','0','7','Talon of Freedom','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139113','2','2','13','51171','22','1','154','0','7','Jagged Troll Render','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139114','2','2','1','49227','17','1','154','0','1','Axe of the Warlord\'s Demise','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139115','2','2','1','49227','17','1','174','0','1','Axe of Bloodstained Ice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139116','2','2','5','50325','17','2','154','0','1','Grinder of Reverse Emancipation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139117','2','2','8','50329','17','1','154','0','1','Liberator\'s Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139118','2','4','0','54735','23','4','154','0','7','Glowing Voodoo Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139119','2','2','3','51174','26','1','154','0','0','Bondsniper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139120','2','2','10','50137','17','2','154','0','2','Spire of Soaring Rumination','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139121','2','2','10','50146','17','2','174','0','2','Cultist\'s Cauldron Stirrer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139124','2','4','0','54734','23','4','154','0','7','Branch of Insightful Dreams','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139125','2','2','15','50122','13','1','154','0','3','Beaked Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139127','2','2','7','50266','13','1','154','0','3','Serrated Cold-Iron Slicer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139128','2','2','7','51377','13','1','154','0','3','Yoke Slasher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139129','2','2','15','49207','13','1','154','0','3','Spike of Renounced Autonomy','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139130','2','2','15','49207','13','1','174','0','3','Corrupter\'s Shanker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139131','2','2','18','50166','26','2','154','0','0','Warbling Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139132','2','2','7','49221','21','1','154','0','3','Sword of the Caged Mind','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139133','2','2','15','51365','21','1','174','0','3','Necrolord\'s Sacrificial Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139134','2','2','2','50152','15','2','174','0','0','Bow of Regression','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139135','2','2','2','50149','15','2','174','0','0','Wyrmstalker\'s Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139136','2','2','0','51463','13','1','174','0','3','Reanimator\'s Hacker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139138','2','2','16','40005','25','2','174','0','0','Deadly Razordarts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139139','4','4','4','55381','8','1','200','80','0','Ravaging Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139140','4','2','15','35245','13','1','200','80','3','Knife of Incision','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139141','4','4','0','35431','11','3','200','80','0','Deflection Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139142','2','2','4','50208','21','1','154','0','3','Mace of Helotry','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139143','2','2','4','50208','21','1','174','0','3','Writhing Mace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139144','2','2','4','49201','13','1','174','0','3','Twisted Hooligan Whacker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139146','4','4','0','35373','2','3','200','80','0','Collar of Dissolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139168','3','4','4','51577','3','6','154','0','0','Worg-Rendering Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139169','3','4','3','51576','3','5','154','0','0','Keen Razorfang Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139170','3','4','1','51569','3','7','154','0','0','Furred Worgslayer Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139171','3','4','2','51575','3','8','154','0','0','Fangsever Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139172','3','4','4','49876','3','6','154','0','0','Bone-Polished Iceplate Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139173','3','4','6','51568','14','1','154','0','4','Bulwark of the Tormented God','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139174','3','4','4','51572','7','6','154','0','0','Legguards of Dissolved Hope','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139175','3','4','4','51571','7','6','154','0','0','Leggings of Forceful Purification','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139176','3','4','1','51574','7','7','154','0','0','Kilt of Deific Torment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139177','3','4','2','51573','7','6','154','0','0','Pants of Purified Wind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139178','3','4','3','51570','7','5','154','0','0','Greaves of Sanctified Dissolution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139179','3','4','4','56375','10','5','154','0','0','Charged Earthlink Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139180','3','4','4','51582','10','5','154','0','0','Handguards of the Sanguine Gladiator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139181','3','4','1','51587','10','7','154','0','0','Grips of Torrential Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139182','3','4','3','51584','10','5','154','0','0','Handguards of Deluded Might','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139183','3','4','2','51585','10','8','154','0','0','Shining Buckle Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139188','4','4','4','53829','5','1','200','80','0','Chivalric Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139189','4','4','3','57095','8','5','200','80','0','Boots of Persistence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139190','4','4','1','54214','6','7','200','80','0','Agonal Sash','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139191','4','4','2','53833','7','8','200','80','0','Splint-Bound Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139192','4','4','1','53836','10','7','200','80','0','Gloves of Dark Gestures','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139193','4','4','0','35472','11','3','200','80','0','Band of Neglected Pleas','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139194','4','4','3','53838','10','5','200','80','0','Rusted-Link Spiked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139195','4','4','4','55378','9','1','200','80','0','Bracers of Lost Sentiments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139196','4','4','2','54223','8','8','200','80','0','Boots of the Worshiper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139197','4','4','4','53841','10','1','200','80','0','Gauntlets of the Master','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139198','4','4','4','53842','3','1','200','80','0','Frostblight Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139199','4','4','0','53843','23','3','200','80','0','Watchful Eye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139200','4','2','7','53844','21','1','200','80','3','Grieving Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139202','0','2','6','7464','17','1','7','0','1','Rusted Pitchfork','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139205','0','4','1','16721','8','7','5','4','0','Sole-Less Boots','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139208','3','4','10','51913','28','2','70','0','0','Sigil of the Dark Rider','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139215','4','4','2','57007','8','8','200','80','0','Boots of the Follower','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139216','4','4','1','56607','6','7','200','80','0','Sash of Mortal Desire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139217','4','4','3','53847','7','5','200','80','0','Avenging Combat Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139221','4','2','6','35259','17','1','200','80','1','Wraith Spear','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139224','4','4','2','53848','7','8','200','80','0','Leggings of Discord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139225','4','4','1','35446','16','7','200','80','0','Cloak of Armed Strife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139226','4','2','4','35250','13','1','200','80','3','Maexxna\'s Femur','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139228','4','4','4','53850','10','1','200','80','0','Web Cocoon Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139229','4','4','0','35361','12','4','200','80','0','Embrace of the Spider','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139230','4','4','2','53852','3','8','200','80','0','Spaulders of the Monstrosity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139231','4','4','0','35423','11','3','200','80','0','Timeworn Silken Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139232','4','4','0','35358','2','4','200','80','0','Pendant of Lost Vocations','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139233','4','4','6','35573','14','6','200','80','4','Aegis of Damnation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139234','4','4','4','55381','8','1','200','80','0','Plague-Impervious Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139235','4','4','4','54208','9','6','200','80','0','Bone-Framed Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139236','4','4','3','54229','8','5','200','80','0','Trespasser\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139237','4','4','2','53883','3','8','200','80','0','Spaulders of Resumed Battle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139239','4','4','4','53884','5','1','200','80','0','Chestplate of the Risen Soldier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139240','4','4','2','53885','1','8','200','80','0','Noth\'s Curse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139241','4','4','1','35444','16','7','200','80','0','Dark Shroud of the Scourge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139242','4','4','1','53887','20','7','200','80','0','Robes of Hoarse Breaths','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139243','4','4','3','53888','10','5','200','80','0','Handgrips of the Foredoomed','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139244','4','4','0','35313','11','3','200','80','0','Ring of the Fated','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139245','4','2','5','53889','17','1','200','80','1','Demise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139246','4','4','0','35437','2','4','200','80','0','Amulet of Autopsy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139247','4','4','2','54209','9','8','200','80','0','Cuffs of Dark Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139248','4','4','3','53890','5','5','200','80','0','Tunic of the Lost Pack','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139249','4','4','4','53891','3','6','200','80','0','Shoulderplates of Bloodshed','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139250','4','4','0','35313','11','3','200','80','0','Ring of Holy Cleansing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139251','4','4','3','57073','6','5','200','80','0','Necrogenic Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139252','4','4','1','56603','9','7','200','80','0','Preceptor\'s Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139254','4','4','1','54227','8','7','200','80','0','Saltarello Shoes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139255','4','2','10','54799','17','2','200','80','2','Staff of the Plague Beast','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139256','4','2','10','55718','17','2','200','80','2','Sulfur Stave','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139257','4','4','0','35442','12','4','200','80','0','Loatheb\'s Shadow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139258','4','4','4','53286','7','1','200','80','0','Legplates of Inescapable Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139259','4','4','2','53898','5','8','200','80','0','Fungi-Stained Coverings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139260','4','4','4','57522','1','-1','200','80','0','Helm of the Corrupted Mind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139261','4','4','4','54220','6','1','200','80','0','Tainted Girdle of Mending','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139262','4','4','4','53901','10','1','200','80','0','Gauntlets of Combined Strength','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139263','4','4','3','53902','7','5','200','80','0','Dissevered Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139267','4','4','4','53903','3','1','200','80','0','Abomination Shoulderblades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139271','4','2','15','54038','21','1','200','80','3','Blade of Dormant Memories','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139272','4','4','1','35430','16','7','200','80','0','Drape of Surgery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139273','4','4','1','56612','8','7','200','80','0','Sullen Cloth Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139274','4','4','3','53906','3','5','200','80','0','Retcher\'s Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139275','4','4','2','53907','10','8','200','80','0','Contagion Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139276','4','4','6','53908','14','6','200','80','4','The Skull of Ruin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139277','4','4','0','35431','11','5','200','80','0','Sealing Ring of Grobbulus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139278','4','4','3','54207','9','5','200','80','0','Bands of Anxiety','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139279','4','4','2','54215','6','8','200','80','0','Blistered Belt of Decay','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139280','4','4','4','53912','7','6','200','80','0','Leggings of Innumerable Barbs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139281','4','2','4','35642','21','1','200','80','3','Infection Repulser','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139282','4','4','0','35373','2','3','200','80','0','Bone-Linked Amulet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139283','4','4','2','54211','9','8','200','80','0','Putrescent Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139284','4','4','1','55327','3','7','200','80','0','Miasma Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139285','4','4','1','53915','10','7','200','80','0','Handgrips of Turmoil','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139291','4','2','7','53918','13','1','200','80','3','Torment of the Banished','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139292','4','4','0','35439','12','4','200','80','0','Repelling Charge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139293','4','4','4','53920','7','6','200','80','0','Blackened Legplates of Feugen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139294','4','4','3','57542','1','5','200','80','0','Arc-Scorched Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139295','4','4','1','53925','1','7','200','80','0','Cowl of Sheet Lightning','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139296','4','2','2','35870','15','1','200','80','0','Accursed Bow of the Elite','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139297','4','4','1','35366','16','7','200','80','0','Cloak of Darkening','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139298','4','4','4','55382','6','6','200','80','0','Waistguard of the Tutor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139299','4','4','2','53926','10','8','200','80','0','Rapid Attack Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139306','4','4','4','53850','10','1','200','80','0','Plated Gloves of Relief','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139307','4','4','3','57072','9','5','200','80','0','Iron Rings of Endurance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139308','4','4','2','54217','6','8','200','80','0','Girdle of Lenience','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139309','4','4','1','53646','7','7','200','80','0','Leggings of the Instructor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139310','4','4','1','55326','3','7','200','80','0','Mantle of the Extensive Mind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139311','4','4','0','53931','23','3','200','80','0','Scepter of Murmuring Spirits','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139320','3','4','1','51734','16','7','70','0','0','Sky Darkener\'s Shroud of Blood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139322','3','4','1','51736','16','7','70','0','0','Shroud of the North Wind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139323','2','4','1','49464','3','7','162','0','0','Scrap-Hide Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139330','2','4','1','51838','10','7','162','0','0','Fingers of Dextrous Decimation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139331','2','4','1','51849','6','7','162','0','0','Tooth-Marked Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139332','2','4','1','51851','9','7','162','0','0','Ogre-Crushing Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139333','2','4','1','52612','8','7','162','0','0','Nimblefoot Moccasins','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139335','2','4','1','51853','7','7','162','0','0','Leggings of Mending Fronds','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139336','2','4','1','51850','9','7','162','0','0','Bracers of Prompt Reclamation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139337','2','4','1','51854','20','7','162','0','0','Stained Coop Warmer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139344','4','2','7','53932','13','1','200','80','1','Slayer of the Lifeless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139345','4','4','4','55379','6','6','200','80','0','Girdle of the Ascended Phantom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139346','2','4','1','52103','1','7','162','0','0','Chitin-Reinforced Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139347','2','4','1','51840','10','7','162','0','0','Gloves of the Crackling Storm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139348','2','4','1','51841','7','7','162','0','0','Aged Watcher\'s Legwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139363','2','4','1','51842','6','7','162','0','0','Binding of Purified Corpses','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139364','2','4','1','51192','1','7','162','0','0','Hood of the Titan Defender','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139365','2','4','1','51845','20','7','162','0','0','Lifewarden\'s Raiment','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139366','2','4','1','49464','3','7','162','0','0','Spaulders of the Runeseeker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139367','2','4','1','52103','1','7','162','0','0','Cowl of the Purifier','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139368','2','4','1','51848','8','7','162','0','0','Field Researcher\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139369','4','4','4','54224','8','1','200','80','0','Sabatons of Deathlike Gloom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139370','3','2','8','51427','17','1','70','0','1','Keleseth\'s Persuader','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139371','1','2','7','8078','13','1','70','0','3','Keleseth\'s Persuader','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139372','2','4','1','49464','3','7','174','0','0','Mantle of the Dark Messenger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139373','2','4','2','56365','9','7','162','0','0','Bracers of Rapid Death','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139374','2','4','2','51864','8','8','162','0','0','Crocscale Moccasins','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139375','2','4','2','49898','3','8','162','0','0','Dreadsaber Tooth Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139376','2','4','2','51866','9','7','162','0','0','Bracers of the Rejuvenated Forest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139377','2','4','2','51867','6','8','162','0','0','Toenail Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139378','2','4','2','51868','10','8','162','0','0','Ragged Leaf Grips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139379','4','4','3','54219','6','5','200','80','0','Spectral Rider\'s Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139380','2','4','2','51870','7','6','162','0','0','Legguards of the Aggressive Emissary','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139383','2','4','2','49979','8','8','162','0','0','Egg-Warming Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139385','2','4','2','51860','1','8','162','0','0','Helm of the Ancient Horn','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139386','4','4','2','53935','5','8','200','80','0','Tunic of Dislocation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139387','2','4','2','51856','5','8','162','0','0','Stinger-Proof Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139388','4','4','0','35445','12','4','200','80','0','Spirit-World Glass','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139389','4','4','0','35438','11','3','200','80','0','Signet of the Malevolent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139390','4','4','1','54212','9','7','200','80','0','Resurgent Phantom Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139391','4','4','3','53937','5','5','200','80','0','Heinous Mail Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139392','4','4','0','35437','2','4','200','80','0','Veiled Amulet of Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139393','4','2','8','53938','17','1','200','80','1','Claymore of Ancient Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139394','4','2','10','35242','17','2','200','80','2','Charmed Cierge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139395','4','4','4','53653','1','1','200','80','0','Thane\'s Tainted Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139396','4','4','1','53939','20','7','200','80','0','Gown of Blaumeux','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139397','4','4','3','53940','3','5','200','80','0','Pauldrons of Havoc','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139398','4','4','4','53884','5','1','200','80','0','Massive Skeletal Ribcage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139399','4','4','2','53942','1','8','200','80','0','Helm of the Vast Legions','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139400','2','4','2','49920','3','8','162','0','0','Static-Dispersing Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139401','4','4','0','35472','11','5','200','80','0','Circle of Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139402','2','4','2','51858','6','8','162','0','0','Binding of the Ancient Keeper','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139403','4','4','4','53653','1','-1','200','80','0','Helm of the Unsubmissive','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139404','4','4','1','35444','16','7','200','80','0','Cloak of Mastery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139405','4','4','3','57543','1','5','200','80','0','Helmet of the Inner Sanctum','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139406','2','4','2','51855','9','7','162','0','0','Splattered Zombie Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139407','4','4','0','35367','11','3','200','80','0','Circle of Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139408','4','4','1','54029','7','7','200','80','0','Leggings of Sapphiron','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139409','4','4','1','54028','1','7','200','80','0','Cowl of Winged Fear','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139410','2','4','2','51859','10','8','162','0','0','Gauntlets of Rampant Destruction','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139411','2','4','2','51861','7','6','162','0','0','Legguards of Guided Travel','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139412','2','4','2','49901','8','8','162','0','0','Scourgebane Treads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139413','2','4','2','51863','7','6','162','0','0','Hydrafang Breeches','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139414','2','4','2','51865','10','8','174','0','0','Gilly\'s Strangulation Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139415','4','4','1','35408','16','7','200','80','0','Shroud of the Citadel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139416','4','2','13','55041','21','1','213','80','7','Kel\'Thuzad\'s Reach','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139417','4','2','1','55712','17','1','213','80','1','Death\'s Bite','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139419','4','2','3','53805','26','1','213','80','0','Nerubian Conquerer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139420','4','2','15','35819','13','1','213','80','3','Anarchy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139421','4','4','0','35373','2','3','213','80','0','Gem of Imprisoned Vassals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139422','4','2','10','54032','17','2','213','80','2','Staff of the Plaguehound','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139423','4','2','4','35574','21','1','213','80','3','Hammer of the Astral Plane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139424','4','2','15','54036','21','1','213','80','3','The Soulblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139425','4','4','1','35366','16','7','213','80','0','Cloak of the Dying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139426','4','2','19','54033','26','2','213','80','0','Wand of the Archlich','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139427','4','2','15','55715','13','1','200','80','3','Omen of Ruin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139428','2','4','3','51872','1','5','162','0','0','Faceguard of Flawless Aim','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139429','2','4','3','51885','3','5','162','0','0','Pauldrons of Swift Replenishment','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139430','2','4','3','51886','9','5','162','0','0','Spitelinked Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139431','2','4','3','51887','5','5','162','0','0','Shaved Rhinohorn Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139432','2','4','3','51888','6','5','162','0','0','Belt of Misconceptions','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139433','2','4','3','51889','5','5','162','0','0','Clear Earthen Scalemail','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139435','2','4','3','51890','7','5','162','0','0','Straw-Lined Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139436','2','4','3','59543','1','5','162','0','0','Insect-Filtering Faceguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139437','2','4','3','54935','6','5','162','0','0','Belt of Trapped Lightning','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139438','2','4','3','51875','10','5','162','0','0','Rockhandler\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139439','2','4','3','51877','8','5','162','0','0','Skeleton Smashers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139440','2','4','3','51878','7','5','162','0','0','Greaves of the Titan Protectorate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139441','2','4','3','51879','8','5','162','0','0','Treads of Bound Life','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139442','2','4','3','51880','6','5','162','0','0','Seeing-Eye Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139443','2','4','3','51884','10','5','174','0','0','Chain Gloves of the Demonic Minion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139444','2','4','3','51881','10','5','162','0','0','Keeper\'s Touch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139445','2','4','3','51882','9','5','162','0','0','Roc Hunter\'s Bracer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139446','2','4','3','51883','3','5','162','0','0','Pauldrons of Resolution','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139448','2','4','4','51891','1','6','162','0','0','Helm of Brutal Slaughter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139449','2','4','4','51897','9','6','162','0','0','Wristguards of Titanic Vengeance','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139450','2','4','4','51892','3','6','162','0','0','Bug-Smashing Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139451','2','4','4','49725','3','6','162','0','0','Pauldrons of the Silent Mist','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139452','2','4','4','51905','9','6','162','0','0','Roaming Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139453','2','4','4','51906','6','6','162','0','0','Rhino-Tail Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139454','2','4','4','51907','10','5','162','0','0','Handguards of Transient Friendship','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139455','2','4','4','51908','6','6','162','0','0','Cracked Nest Stabilizer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139457','2','4','4','51893','7','6','162','0','0','Zepik\'s Grounded Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139458','2','4','4','51306','5','6','174','0','0','Cultbreaker\'s Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139459','2','4','4','51895','10','5','162','0','0','Preservative-Stained Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139460','2','4','4','51896','8','6','162','0','0','Sabatons of the Rampaging Construct','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139461','2','4','4','51901','5','6','162','0','0','Muck-Stained Carapace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139462','2','4','4','51902','7','6','162','0','0','Legplates of the Northern Expedition','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139463','2','4','4','51900','5','6','162','0','0','Norrington\'s Burnished Breastplate','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139464','2','4','4','51899','9','6','162','0','0','Lifegiver\'s Ward','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139465','2','4','4','51898','8','6','162','0','0','Pathfinding Treads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139466','2','4','4','51639','8','6','162','0','0','Boots of Dominance','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139467','4','4','4','55380','9','6','200','80','0','Minion Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139468','4','2','13','35818','22','1','200','80','7','The Stray','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139470','4','4','0','35359','2','4','200','80','0','Medallion of the Disgraced','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139471','2','4','4','51903','6','6','174','0','0','Gutbuster of Aldur\'thar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139472','4','4','0','35437','2','3','200','80','0','Chain of Latent Energies','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139473','4','2','19','55710','26','2','200','80','0','Contortion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139474','2','4','0','51279','11','8','162','0','0','Ring of Devoted Promises','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139475','3','4','0','34318','2','4','162','0','0','Artruis\'s Focus Stone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139478','3','4','1','56190','16','7','162','0','0','Cloak of the Deadliest Game','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139479','2','4','1','15218','16','7','162','0','0','Cloak of Renewed Hope','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139480','2','4','0','52268','11','8','162','0','0','Bent Crocolisk Tooth','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139481','2','4','0','51279','11','8','162','0','0','Signet of the Avenging Heart','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139482','2','4','0','51279','11','8','162','0','0','Ring of Misinterpreted Gestures','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139483','3','4','0','34318','2','4','162','0','0','Choker of Binding','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139484','3','4','0','34318','2','4','162','0','0','Spiked Collar of Servitude','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139485','3','4','0','34318','2','4','162','0','0','Blood-Infused Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139486','3','2','3','50534','26','1','162','0','0','Hemet\'s Trophy Gun','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139487','3','2','2','51909','15','2','162','0','0','Dragon Slayer\'s Shortbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139488','3','2','19','56888','26','2','162','0','0','Nesingwary Brush Burner','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139490','3','2','16','51910','25','2','162','0','0','Dorian\'s Prybar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139491','4','4','1','57531','1','7','200','80','0','Heroes\' Frostfire Circlet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139492','4','4','1','54443','20','7','200','80','0','Heroes\' Frostfire Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139493','4','4','1','55170','7','7','200','80','0','Heroes\' Frostfire Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139494','4','4','1','56597','3','7','200','80','0','Heroes\' Frostfire Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139495','4','4','1','57016','10','7','200','80','0','Heroes\' Frostfire Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139496','4','4','1','54399','1','7','200','80','0','Heroes\' Plagueheart Circlet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139497','4','4','1','56474','20','7','200','80','0','Heroes\' Plagueheart Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139498','4','4','1','54283','7','7','200','80','0','Heroes\' Plagueheart Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139499','4','4','1','54308','3','7','200','80','0','Heroes\' Plagueheart Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139500','4','4','1','57017','10','7','200','80','0','Heroes\' Plagueheart Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139503','2','4','4','51904','1','6','162','0','0','Bronzed Dome Protector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139507','2','4','3','51797','5','5','20','10','0','Darkmoon Chain Shirt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139508','2','4','4','51894','5','6','162','0','0','Stonebound Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139509','2','4','2','51796','5','8','20','10','0','Darkmoon Vest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139514','4','4','1','54387','1','7','200','80','0','Heroes\' Crown of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139515','4','4','1','54269','20','7','200','80','0','Heroes\' Robe of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139517','4','4','1','54280','7','7','200','80','0','Heroes\' Leggings of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139518','4','4','1','54302','3','7','200','80','0','Heroes\' Shoulderpads of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139519','4','4','1','54422','10','7','200','80','0','Heroes\' Gloves of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139521','4','4','1','54387','1','7','200','80','0','Heroes\' Circlet of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139522','1','2','2','51801','15','2','70','65','0','Wolvar Shortbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139523','4','4','1','54269','20','7','200','80','0','Heroes\' Raiments of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139528','4','4','1','54280','7','7','200','80','0','Heroes\' Pants of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139529','4','4','1','54302','3','7','200','80','0','Heroes\' Mantle of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139530','4','4','1','54422','10','7','200','80','0','Heroes\' Handwraps of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139531','4','4','2','57538','1','8','200','80','0','Heroes\' Dreamwalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139534','3','4','4','51927','3','6','187','78','0','Pauldrons of the Lightning Revenant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139535','3','4','4','53000','6','6','187','78','0','Ionar\'s Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139536','3','4','1','52613','10','7','187','78','0','Thundercloud Grasps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139538','4','4','2','56071','20','8','200','80','0','Heroes\' Dreamwalker Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139539','4','4','2','54274','7','8','200','80','0','Heroes\' Dreamwalker Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139542','4','4','2','54290','3','8','200','80','0','Heroes\' Dreamwalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139543','4','4','2','54407','10','8','200','80','0','Heroes\' Dreamwalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139544','4','4','2','54407','10','8','200','80','0','Heroes\' Dreamwalker Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139545','4','4','2','57538','1','8','200','80','0','Heroes\' Dreamwalker Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139546','4','4','2','54274','7','8','200','80','0','Heroes\' Dreamwalker Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139547','4','4','2','54230','20','8','200','80','0','Heroes\' Dreamwalker Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139548','4','4','2','54290','3','8','200','80','0','Heroes\' Dreamwalker Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139553','4','4','2','57539','1','8','200','80','0','Heroes\' Dreamwalker Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139554','4','4','2','54261','20','8','200','80','0','Heroes\' Dreamwalker Raiments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139555','4','4','2','54273','7','8','200','80','0','Heroes\' Dreamwalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139556','4','4','2','54290','3','8','200','80','0','Heroes\' Dreamwalker Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139557','4','4','2','54406','10','8','200','80','0','Heroes\' Dreamwalker Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139558','4','4','2','54256','5','8','200','80','0','Heroes\' Bonescythe Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139560','4','4','2','54423','10','8','200','80','0','Heroes\' Bonescythe Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139561','4','4','2','54396','1','8','200','80','0','Heroes\' Bonescythe Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139564','4','4','2','54281','7','8','200','80','0','Heroes\' Bonescythe Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139565','4','4','2','54289','3','8','200','80','0','Heroes\' Bonescythe Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139578','4','4','3','54375','1','5','200','80','0','Heroes\' Cryptstalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139579','4','4','3','54254','5','5','200','80','0','Heroes\' Cryptstalker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139580','4','4','3','54275','7','5','200','80','0','Heroes\' Cryptstalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139581','4','4','3','54296','3','5','200','80','0','Heroes\' Cryptstalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139582','4','4','3','54408','10','5','200','80','0','Heroes\' Cryptstalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139583','4','4','3','57068','1','5','200','80','0','Heroes\' Earthshatter Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139588','4','4','3','57023','5','5','200','80','0','Heroes\' Earthshatter Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139589','4','4','3','57069','7','5','200','80','0','Heroes\' Earthshatter Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139590','4','4','3','57071','3','5','200','80','0','Heroes\' Earthshatter Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139591','4','4','3','57066','10','5','200','80','0','Heroes\' Earthshatter Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139592','4','4','3','57023','5','5','200','80','0','Heroes\' Earthshatter Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139593','4','4','3','57066','10','5','200','80','0','Heroes\' Earthshatter Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139594','4','4','3','57068','1','5','200','80','0','Heroes\' Earthshatter Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139595','4','4','3','57069','7','5','200','80','0','Heroes\' Earthshatter Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139596','4','4','3','57071','3','5','200','80','0','Heroes\' Earthshatter Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139597','4','4','3','57023','5','5','200','80','0','Heroes\' Earthshatter Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139601','4','4','3','57025','10','5','200','80','0','Heroes\' Earthshatter Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139602','4','4','3','57055','1','5','200','80','0','Heroes\' Earthshatter Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139603','4','4','3','57027','7','5','200','80','0','Heroes\' Earthshatter War-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139604','4','4','3','57070','3','5','200','80','0','Heroes\' Earthshatter Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139605','4','4','4','54403','1','4','200','80','0','Heroes\' Dreadnaught Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139606','4','4','4','55369','5','1','200','80','0','Heroes\' Dreadnaught Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139607','4','4','4','55376','7','6','200','80','0','Heroes\' Dreadnaught Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139608','4','4','4','56214','3','6','200','80','0','Heroes\' Dreadnaught Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139609','4','4','4','55371','10','1','200','80','0','Heroes\' Dreadnaught Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139610','4','4','4','54403','1','1','200','80','0','Heroes\' Dreadnaught Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139611','4','4','4','55369','5','1','200','80','0','Heroes\' Dreadnaught Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139612','4','4','4','55375','7','1','200','80','0','Heroes\' Dreadnaught Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139613','4','4','4','56213','3','1','200','80','0','Heroes\' Dreadnaught Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139617','4','4','4','55484','5','1','200','80','0','Heroes\' Scourgeborne Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139618','4','4','4','55486','10','1','200','80','0','Heroes\' Scourgeborne Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139619','4','4','4','55485','1','4','200','80','0','Heroes\' Scourgeborne Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139620','4','4','4','55489','7','6','200','80','0','Heroes\' Scourgeborne Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139621','4','4','4','55491','3','6','200','80','0','Heroes\' Scourgeborne Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139622','4','4','4','55372','10','1','200','80','0','Heroes\' Dreadnaught Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139623','4','4','4','55484','5','1','200','80','0','Heroes\' Scourgeborne Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139624','4','4','4','55488','10','1','200','80','0','Heroes\' Scourgeborne Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139625','4','4','4','55485','1','1','200','80','0','Heroes\' Scourgeborne Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139626','4','4','4','55487','7','1','200','80','0','Heroes\' Scourgeborne Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139627','4','4','4','55490','3','1','200','80','0','Heroes\' Scourgeborne Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139628','4','4','4','57546','1','4','200','80','0','Heroes\' Redemption Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139629','4','4','4','54255','5','1','200','80','0','Heroes\' Redemption Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139630','4','4','4','54277','7','6','200','80','0','Heroes\' Redemption Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139631','4','4','4','54299','3','1','200','80','0','Heroes\' Redemption Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139632','4','4','4','54419','10','1','200','80','0','Heroes\' Redemption Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139633','4','4','4','54255','5','1','200','80','0','Heroes\' Redemption Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139634','4','4','4','54420','10','1','200','80','0','Heroes\' Redemption Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139635','4','4','4','57546','1','4','200','80','0','Heroes\' Redemption Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139636','4','4','4','54278','7','6','200','80','0','Heroes\' Redemption Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139637','4','4','4','54300','3','6','200','80','0','Heroes\' Redemption Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139638','4','4','4','54255','5','1','200','80','0','Heroes\' Redemption Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139639','4','4','4','54419','10','1','200','80','0','Heroes\' Redemption Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139640','4','4','4','57546','1','1','200','80','0','Heroes\' Redemption Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139641','4','4','4','54279','7','1','200','80','0','Heroes\' Redemption Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139642','4','4','4','54301','3','1','200','80','0','Heroes\' Redemption Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139648','3','4','0','24022','11','5','171','0','0','Kurzel\'s Rage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139649','3','4','0','35423','11','3','171','0','0','Kurzel\'s Angst','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139650','3','4','0','34336','11','3','171','0','0','Kurzel\'s Warband','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139652','3','4','0','31899','2','3','171','0','0','Choker of the Betrayer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139653','3','4','0','31899','2','5','171','0','0','Choker of Betrayal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139655','3','4','0','31899','2','3','171','0','0','Betrayer\'s Choker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139657','3','4','3','51886','9','5','187','78','0','Tornado Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139672','2','4','1','52002','16','7','162','0','0','Drape of the Offered Branch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139673','2','4','1','52004','16','7','162','0','0','Lightning Beetle\'s Cape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139674','2','4','1','56388','16','7','162','0','0','Cloak of the Buzzing Swarm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139675','2','4','1','52005','16','7','162','0','0','Cloak of the Hardened Tortoise','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139676','3','4','1','42896','9','7','155','0','0','Wraps of the San\'layn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139678','3','4','2','42956','9','8','155','0','0','Vendetta Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139679','3','4','3','43012','9','5','155','0','0','Runecaster\'s Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139680','3','4','4','50994','9','6','155','0','0','Vambraces of the Vengeance Bringer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139688','3','2','3','52011','26','1','167','73','0','Mark \"S\" Boomstick','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139701','4','4','2','54625','8','8','213','80','0','Dawnwalkers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139702','4','4','3','54616','9','5','213','80','0','Arachnoid Gold Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139703','4','4','4','54711','10','1','213','80','0','Rescinding Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139704','4','4','4','54708','3','1','213','80','0','Pauldrons of Unnatural Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139706','4','4','4','55395','8','1','213','80','0','Sabatons of Sudden Reprisal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139707','2','4','2','49252','1','8','155','72','0','Verdant Tundra Cap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139708','2','4','2','49845','3','8','155','72','0','Verdant Tundra Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139709','2','4','2','56693','8','8','151','71','0','Verdant Tundra Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139710','2','4','2','49258','6','8','151','71','0','Verdant Tundra Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139711','2','4','2','56694','9','7','151','71','0','Verdant Tundra Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139712','4','2','19','54697','26','2','213','80','0','Gemmed Wand of the Nerubians','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139714','4','2','15','54757','13','1','213','80','3','Webbed Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139715','4','4','10','51913','28','2','213','80','0','Sigil of the Remembered Fallen - DO NOT USE','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139716','4','4','6','56656','14','6','213','80','4','Shield of Assimilation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139717','4','4','4','55393','8','1','213','80','0','Inexorable Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139718','4','4','3','54622','10','5','213','80','0','Corpse Scarab Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139719','4','4','1','55324','3','7','213','80','0','Mantle of the Locusts','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139720','4','4','1','54703','7','7','213','80','0','Leggings of Atrophy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139721','4','4','1','54713','6','7','213','80','0','Sash of the Parlor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139722','4','4','2','54715','9','8','213','80','0','Swarm Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139723','4','4','4','53198','1','-1','213','80','0','Fire-Scorched Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139724','4','4','3','54624','5','5','213','80','0','Cult\'s Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139725','4','4','4','53670','3','1','213','80','0','Epaulets of the Grieving Servant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139726','4','4','4','54620','10','1','213','80','0','Callous-Hearted Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139727','4','4','2','54695','10','8','213','80','0','Dislocating Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139728','4','4','9','25246','28','2','213','80','0','Totem of Misery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139729','4','4','4','55385','9','1','213','80','0','Bracers of the Tyrant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139730','4','2','7','57331','13','1','213','80','3','Widow\'s Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139731','4','4','1','54709','9','7','213','80','0','Punctilious Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139732','4','4','1','54696','1','7','213','80','0','Faerlina\'s Madness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139733','4','4','1','54698','10','7','213','80','0','Gloves of Token Respect','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139734','4','4','3','57091','8','5','213','80','0','Atonement Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139735','4','4','1','56604','6','7','213','80','0','Belt of False Dignity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139756','4','4','2','54803','5','8','213','80','0','Tunic of Prejudice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139757','4','4','8','54700','28','2','213','80','0','Idol of Worship','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139758','4','2','5','54739','17','1','213','80','1','The Jawbone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139759','4','4','4','55383','6','6','213','80','0','Ablative Chitin Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139760','4','4','4','54847','1','-1','213','80','0','Helm of Diminished Pride','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139761','4','4','2','54702','7','8','213','80','0','Infectious Skitterer Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139762','4','4','3','54716','6','5','213','80','0','Torn Web Wrapping','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139763','4','2','13','56662','21','1','213','80','7','Wraith Strike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139764','4','4','4','55384','9','6','213','80','0','Bindings of the Hapless Prey','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139765','4','4','2','54714','9','8','213','80','0','Sinner\'s Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139766','4','4','0','54740','23','3','213','80','0','Matriarch\'s Spawn','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139767','4','4','4','54719','5','1','213','80','0','Undiminished Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139768','4','4','2','54623','1','8','213','80','0','Cowl of the Perished','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139769','4','2','1','57732','17','1','115','70','1','Arcanite Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139770','2','4','1','51284','1','7','158','0','0','Soothsayer\'s Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139771','2','4','1','52403','7','7','158','0','0','Embattled Legwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139772','2','4','1','52387','9','7','158','0','0','Bloodbinder\'s Wrist Wraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139773','2','4','1','51208','3','7','158','0','0','Soothsayer\'s Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139775','2','4','1','52444','8','7','158','0','0','Soothsayer\'s Sandals','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139776','2','4','3','52386','3','5','154','0','0','Bloodbinder\'s Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139777','2','4','0','52373','11','8','158','0','0','Band of Misty Mojo','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139778','2','4','4','56351','7','6','158','0','0','Bloodletter\'s Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139779','2','4','1','52395','6','7','158','0','0','Crusader\'s Ripcord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139780','2','4','3','51073','6','5','158','0','0','Valiant Belt of Battle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139781','2','4','1','51370','20','7','158','0','0','Bloodbinder\'s Raiment','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139782','2','4','4','51353','9','6','158','0','0','Thick Bracers of Battle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139783','2','4','3','52380','10','5','158','0','0','Bloodbinder\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139784','2','2','10','50133','17','2','158','0','2','Staff of the Dutybound','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139785','2','4','1','51370','20','7','158','0','0','Soothsayer\'s Garb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139786','2','4','0','52374','11','8','158','0','0','Band of the Bloodletter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139787','2','4','1','51388','10','7','158','0','0','Soothsayer\'s Handwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139788','2','4','3','52416','7','5','158','0','0','Leggings of the Ritual','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139789','2','4','1','51208','3','7','158','0','0','Bloodbinder\'s Shoulderpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139790','2','4','4','51393','10','5','158','0','0','Gauntlets of the Altar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139791','2','4','1','51236','9','7','158','0','0','Soothsayer\'s Wristwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139792','2','4','0','52439','11','8','158','0','0','Ritualistic Band of Light','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139793','2','4','0','52417','2','4','158','0','0','Neckcharm of Mighty Mojo','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139794','2','4','1','52381','10','7','158','0','0','Bloodbinder\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139795','2','4','4','52045','8','6','158','0','0','Boots of the Altar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139796','2','4','3','56360','8','5','158','0','0','Boots of the Great Sacrifice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139797','2','4','1','51284','1','7','158','0','0','Bloodbinder\'s Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139798','2','4','0','52438','11','8','158','0','0','Ring of Ancestral Protectors','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139799','2','4','3','52425','5','5','158','0','0','Rescuer\'s Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139800','2','4','1','52420','7','7','158','0','0','Pantaloons of the Dutybound','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139801','2','4','4','56362','8','6','158','0','0','Boots of the Rescuer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139802','2','2','8','50331','17','1','158','0','1','Crusader\'s Greatblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139803','2','4','3','52408','10','5','158','0','0','Gauntlets of the Great Sacrifice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139804','2','4','1','52392','6','7','158','0','0','Braided Bat Sinew','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139805','2','4','4','56381','5','6','158','0','0','Chestplate of the Altar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139806','2','2','7','52379','13','1','158','0','3','Blade of Diligence','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139807','2','4','1','15120','16','7','158','0','0','Rescuer\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139808','2','2','10','50136','17','2','158','0','2','Staff of Diligence','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139809','2','4','1','52441','8','7','158','0','0','Sandals of Spying','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139810','2','4','1','52340','6','7','158','0','0','Cords of Duplicity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139811','2','4','0','34188','12','8','158','0','0','Badge of the Infiltrator','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139812','2','4','1','52123','7','7','158','0','0','Soiled Trousers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139814','2','4','1','53251','8','7','174','0','0','Slippers of the Broken Front','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139815','2','4','3','52382','7','5','158','0','0','Bloodbinder\'s Links','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139816','2','4','1','51229','1','7','158','0','0','Medic\'s Hood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139817','2','4','4','49512','3','6','158','0','0','Brazen Offender\'s Shoulderplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139818','2','2','18','50160','26','2','158','0','0','Frigid Crossbow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139819','2','4','0','34188','12','8','158','0','0','Bloodbinder\'s Runestone','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139820','2','2','15','50118','13','1','158','0','3','Blade of Valorous Service','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139821','2','4','0','34188','12','8','158','0','0','Spiritist\'s Focus','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139822','2','2','15','51168','13','1','158','0','3','Knife of the Dutybound','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139823','2','2','4','50209','21','1','158','0','3','Dutybound Mace of Purity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139824','2','2','1','50342','17','1','158','0','1','Cleaver of Diligence','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139825','2','4','3','52378','6','5','158','0','0','Belt of the Bloodbinder','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139826','2','2','7','51402','13','1','158','0','3','Bloodletter\'s Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139827','2','4','0','52396','23','4','158','0','7','Vile Tome of Tenets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139828','2','4','1','52423','16','7','158','0','0','Punisher\'s Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139829','2','2','2','52411','15','2','158','0','0','High-Strung Bow','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139830','2','2','13','52404','22','1','158','0','7','Fist of Subtlety','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139831','2','4','0','52405','11','8','158','0','0','Petrified Ghoul Finger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139833','2','4','2','52432','8','8','158','0','0','Supple Bloodbinder\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139834','2','4','2','49247','5','8','158','0','0','Embattled Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139835','2','4','2','51286','1','8','158','0','0','Supple Bloodbinder\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139836','2','4','2','49848','3','8','158','0','0','Supple Mantle of the Bloodletter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139837','2','4','2','49910','10','8','158','0','0','Gloves of Swift Death','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139838','2','4','2','52433','6','8','158','0','0','Supple Belt of the Bloodletter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139839','2','4','3','52332','3','5','158','0','0','Ritualistic Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139840','2','4','0','9657','2','4','158','0','0','Rescuer\'s Ripcord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139841','2','4','4','56191','6','6','158','0','0','Ancestral Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139842','2','4','2','56349','8','8','158','0','0','Bloodletter\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139843','2','4','2','52430','9','7','158','0','0','Supple Wristguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139844','2','4','6','52440','14','1','158','0','4','Ritualistic Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139845','2','4','4','52372','10','5','158','0','0','Ancestral Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139846','2','4','3','56350','1','5','158','0','0','Bloodletter\'s Headgear','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139847','2','4','4','56192','8','6','158','0','0','Ancestral War Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139848','2','4','0','52419','2','4','158','0','0','Neckcharm of the Bloodletter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139849','2','4','4','52376','6','6','158','0','0','Belt of Divine Ancestry','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139850','2','4','3','51357','9','5','158','0','0','Wristguards of Service','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139851','2','4','4','51891','1','6','158','0','0','Ribbed Helm of Servitude','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139852','2','2','15','52429','21','1','158','0','3','Victorious Spellblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139853','2','2','10','50148','17','2','158','0','2','Thorny Bough of the Light','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139854','2','4','3','52412','5','5','158','0','0','Huntsman\'s Jerkin','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139855','2','4','4','52406','10','5','158','0','0','Gauntlets of the Gatherer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139856','2','4','2','56352','7','6','158','0','0','Bloodletter\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139857','2','4','3','52424','6','5','158','0','0','Rescuer\'s Binding','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139858','2','4','1','31131','16','7','158','0','0','Drape of the Bloodletter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139859','2','4','2','56332','1','8','158','0','0','Bloodletter\'s Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139860','2','4','4','52428','9','6','158','0','0','Vindicator\'s Bracers of Sacrifice','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139861','2','4','2','51333','7','6','158','0','0','Supple Bloodbinder\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139862','2','4','2','51265','5','8','158','0','0','Supple Vest of the Bloodletter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139863','2','4','2','52431','5','8','158','0','0','Supple Vest of the Bloodbinder','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139864','2','4','2','56335','6','8','158','0','0','Belt of Service','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139865','2','2','13','50533','21','1','158','0','7','Knuckle of Victory','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139866','2','4','3','52409','10','5','158','0','0','Gauntlets of the Secret Agent','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139867','2','4','2','56329','10','8','158','0','0','Bat Fur Mitts','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139868','2','4','2','51264','1','8','158','0','0','Ravager\'s Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139869','2','4','2','52401','9','7','158','0','0','Double-Agent\'s Wristwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139870','2','4','1','52402','16','7','158','0','0','Drape of Duplicity','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139871','2','4','2','52434','8','8','158','0','0','Subtle Boots of the Infiltrator','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139872','2','4','3','52410','1','5','158','0','0','Helm of Subtle Whispers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139873','2','4','2','52443','7','6','158','0','0','Skins of Subterfuge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139874','2','4','6','52415','14','1','158','0','4','Infiltrator\'s Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139875','2','4','3','52442','3','5','158','0','0','Shoulderguards of Subterfuge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139876','2','4','2','52370','6','8','158','0','0','Aged Abomination Tripe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139877','2','4','4','51906','6','6','158','0','0','Belt of the Betrayer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139880','2','4','3','51260','9','5','158','0','0','Redigested Mail Scraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139881','2','4','2','49246','3','8','158','0','0','Mantle of Reanimation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139882','2','4','4','52393','1','6','158','0','0','Carved Bone Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139886','2','4','2','49251','10','8','158','0','0','Greenhealer\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139887','2','4','3','51324','7','5','174','0','0','Geist Stalker Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139888','2','4','4','51298','3','6','174','0','0','Scourgebane Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139889','2','4','0','53142','12','4','158','0','0','Horn of Argent Fury','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139890','2','4','4','49478','7','6','158','0','0','Purifier\'s Pantaloons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139891','2','4','4','51641','1','6','158','0','0','Brazen Offender\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139893','2','4','4','52371','5','6','158','0','0','Ancestral Chestplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139894','3','4','1','5116','3','7','25','20','0','Darkcloth Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139895','3','4','2','17195','3','8','25','20','0','Cloaked Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139897','3','4','3','52161','3','5','25','20','0','Azure Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139987','1','2','6','52254','17','2','75','70','1','Tuskarr Fishing Spear','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('139995','1','2','16','52256','25','2','75','70','0','Tuskarr Javelin','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140004','1','2','8','20084','17','1','75','70','1','Forsaken Greatsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140005','1','2','15','2738','13','1','75','70','3','Forsaken Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140006','1','2','7','20176','21','1','75','70','3','Forsaken Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140007','1','2','16','16753','25','2','75','70','0','Forsaken Throwing Knife','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140018','1','2','19','52257','26','2','75','70','0','Wand of Onyx','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140019','1','2','19','9062','26','2','75','70','0','Wand of Amber','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140020','1','2','19','21022','26','2','75','70','0','Wand of Jade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140021','1','2','19','25077','26','2','75','70','0','Wand of Crystal','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140060','4','4','1','51941','7','7','213','80','0','Distorted Limbs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140061','4','4','3','54710','5','5','213','80','0','Quivering Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140062','4','4','1','54626','20','7','213','80','0','Digested Silken Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140063','4','4','2','54704','3','8','213','80','0','Mantle of Shattered Kinship','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140064','4','4','0','35437','2','3','213','80','0','Thunderstorm Amulet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140065','4','4','0','35358','2','3','213','80','0','Fool\'s Trial','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140069','4','4','0','35373','2','4','213','80','0','Heritage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140071','4','4','0','35359','2','4','213','80','0','Chains of Adoration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140074','4','4','0','35431','11','5','213','80','0','Strong-Handed Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140075','4','4','0','35423','11','5','213','80','0','Ruthlessness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140080','4','4','0','35472','11','3','213','80','0','Lost Jewel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140107','4','4','0','35313','11','3','213','80','0','Sand-Worn Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140108','4','4','0','35367','11','3','213','80','0','Seized Beauty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140184','4','4','3','54770','8','5','213','80','0','Crippled Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140185','4','4','4','54790','3','6','213','80','0','Shoulderguards of Opportunity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140186','4','4','2','54714','9','8','213','80','0','Thrusting Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140187','4','4','4','54787','8','1','213','80','0','Poignant Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140188','4','4','4','54620','10','1','213','80','0','Gauntlets of the Disobedient','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140189','4','2','4','54760','13','1','213','80','3','Angry Dread','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140190','4','2','16','57301','25','1','213','80','0','Spinning Fate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140191','4','4','7','34960','28','2','213','80','0','Libram of Radiance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140192','4','4','0','52465','23','3','213','80','0','Accursed Spine','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140193','4','4','3','54800','5','5','213','80','0','Tunic of Masked Suffering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140194','4','4','1','53622','20','7','226','80','0','Blanketing Robes of Snow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140196','4','4','3','54849','7','5','213','80','0','Legguards of the Undisturbed','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140197','4','4','1','54779','10','7','213','80','0','Gloves of the Fallen Wizard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140198','4','4','1','56602','9','7','213','80','0','Bands of Impurity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140200','4','4','2','54762','6','8','213','80','0','Belt of Potent Chanting','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140201','4','4','3','54783','7','5','213','80','0','Leggings of Colossal Strides','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140203','4','4','4','54767','5','1','213','80','0','Breastplate of Tormented Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140204','4','4','4','51008','7','6','213','80','0','Legguards of the Apostle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140205','4','4','2','54792','6','8','213','80','0','Stalk-Skin Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140206','4','4','4','55394','8','1','213','80','0','Iron-Spring Jumpers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140207','4','4','10','51913','28','2','213','80','0','Sigil of Awareness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140208','4','2','6','54772','17','1','213','80','1','Cryptfiend\'s Bite','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140209','4','4','3','57075','9','5','213','80','0','Bindings of the Decrepit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140210','4','4','4','54768','5','1','213','80','0','Chestguard of Bitter Charms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140233','4','2','10','54796','17','2','213','80','2','The Undeath Carrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140234','4','4','1','54782','20','7','213','80','0','Heigan\'s Putrid Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140235','4','4','3','57544','1','5','213','80','0','Helm of Pilgrimage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140236','4','4','1','54789','8','7','213','80','0','Serene Echoes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140237','4','4','3','57094','8','5','213','80','0','Eruption-Scarred Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140238','4','4','2','54778','10','8','213','80','0','Gloves of the Dancing Bear','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140239','4','2','13','56658','22','1','213','80','7','The Hand of Nerub','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140240','4','4','4','53669','7','1','213','80','0','Greaves of Turbulence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140241','4','4','4','54784','6','1','213','80','0','Girdle of Unity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140242','4','4','3','54781','10','5','213','80','0','Grotesque Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140243','4','4','2','54775','8','8','213','80','0','Footwraps of Vile Deceit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140244','4','2','4','54793','21','1','213','80','3','The Impossible Dream','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140245','4','2','19','54774','26','2','213','80','0','Fading Glow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140246','4','4','1','54763','8','7','213','80','0','Boots of Impetuous Ideals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140247','4','4','1','54769','1','7','213','80','0','Cowl of Innocent Delight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140249','4','4','2','54804','5','8','213','80','0','Vest of Vitality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140250','4','4','1','35430','16','7','213','80','0','Aged Winter Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140251','4','4','1','35312','16','7','213','80','0','Shroud of Luminosity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140252','4','4','1','35444','16','7','213','80','0','Cloak of the Shadowed Sun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140253','4','4','1','35366','16','7','213','80','0','Shawl of the Old Maid','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140254','4','4','1','35446','16','7','213','80','0','Cloak of Averted Crisis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140255','4','4','0','35442','12','4','213','80','0','Dying Curse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140256','4','4','0','35361','12','4','213','80','0','Grim Toll','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140257','4','4','0','35439','12','4','213','80','0','Defender\'s Code','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140258','4','4','0','35429','12','4','213','80','0','Forethought Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140259','4','4','4','54784','6','1','213','80','0','Waistguard of Divine Grace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140260','4','4','2','54792','6','8','213','80','0','Belt of the Tortured','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140261','4','4','4','54843','10','1','213','80','0','Crude Discolored Battlegrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140262','4','4','3','54852','10','5','213','80','0','Gloves of Calculated Risk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140263','4','4','4','55389','6','6','213','80','0','Fleshless Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140264','4','2','4','54557','13','1','213','80','3','Split Greathammer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140265','4','2','2','54834','15','1','213','80','0','Arrowsong','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140266','4','4','6','54755','14','6','213','80','4','Hero\'s Surrender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140267','4','4','9','54871','28','2','213','80','0','Totem of Hex','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140268','4','4','7','34961','28','2','213','80','0','Libram of Tolerance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140269','4','4','1','56085','8','7','213','80','0','Boots of Persuasion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140270','4','4','2','57008','8','8','213','80','0','Boots of Septic Wounds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140271','4','4','1','54713','6','7','213','80','0','Sash of Solitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140272','4','4','3','57077','6','5','213','80','0','Girdle of the Gambit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140273','4','4','0','54844','23','3','213','80','0','Surplus Limb','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140274','4','4','4','54839','9','6','213','80','0','Bracers of Liberation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140275','4','4','3','54845','6','5','213','80','0','Depraved Linked Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140277','4','4','2','54872','5','8','213','80','0','Tunic of Indulgence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140278','4','4','4','55389','6','6','213','80','0','Girdle of Chivalry','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140279','4','4','4','54767','5','1','213','80','0','Chestguard of the Exhausted','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140280','4','2','10','55774','17','2','213','80','2','Origin of Nightmares','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140281','4','2','15','55719','13','1','213','80','3','Twilight Mist','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140282','4','4','3','54616','9','5','213','80','0','Slime Stream Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140283','4','4','3','54848','5','5','213','80','0','Fallout Impervious Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140284','4','2','19','54866','26','2','213','80','0','Plague Igniter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140285','4','4','2','54846','7','8','213','80','0','Desecrated Past','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140286','4','4','1','55325','3','7','213','80','0','Mantle of the Corrupted','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140287','4','4','1','54769','1','7','213','80','0','Cowl of Vanity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140288','4','4','3','54867','3','5','213','80','0','Spaulders of Incoherence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140289','4','4','1','55324','3','7','213','80','0','Sympathetic Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140290','3','4','1','52491','1','7','162','0','0','Gaze of the Punishing Construct','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140291','3','4','2','57525','1','8','162','0','0','Helm of the Avenging Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140292','3','4','3','52303','1','5','162','0','0','Headguard of Vast Destruction','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140293','3','4','4','52304','1','6','162','0','0','Helm of Towering Rage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140294','4','4','4','51612','7','6','213','80','0','Riveted Abomination Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140295','3','4','4','52302','1','6','162','0','0','Greathelm of the Titan Protectorate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140296','4','4','2','54841','1','8','213','80','0','Cover of Silence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140297','4','4','4','55393','8','1','213','80','0','Sabatons of Endurance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140298','4','4','4','54847','1','-1','213','80','0','Faceguard of the Succumbed','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140299','4','4','3','54865','3','5','213','80','0','Pauldrons of the Abandoned','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140300','4','2','10','54870','17','2','213','80','2','Spire of Sunset','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140301','4','4','1','54840','6','7','213','80','0','Cincture of Polarity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140302','4','4','3','54835','10','5','213','80','0','Benefactor\'s Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140303','4','4','1','54874','10','7','213','80','0','Wraps of the Persecuted','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140304','4','4','2','54623','1','8','213','80','0','Headpiece of Fungal Bloom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140305','4','4','2','53289','3','8','213','80','0','Spaulders of Egotism','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140306','4','4','4','55386','9','6','213','80','0','Bracers of the Unholy Knight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140315','4','4','3','54865','3','5','213','80','0','Shoulderpads of Secret Arts','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140316','4','4','4','54881','10','1','213','80','0','Gauntlets of Guiding Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140317','4','4','4','55389','6','6','213','80','0','Girdle of Razuvious','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140318','4','4','4','54891','7','6','213','80','0','Legplates of Double Strikes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140319','4','4','2','54879','5','8','213','80','0','Chestpiece of Suspicion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140320','4','4','4','54787','8','1','213','80','0','Faithful Steel Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140321','4','4','8','34954','28','2','213','80','0','Idol of the Shooting Star','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140322','4','4','9','50456','28','2','213','80','0','Totem of Dueling','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140323','4','4','2','54715','9','8','213','80','0','Esteemed Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140324','4','4','3','57074','9','5','213','80','0','Bands of Mutual Respect','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140325','4','4','1','54876','9','7','213','80','0','Bindings of the Expansive Mind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140326','4','4','1','54789','8','7','213','80','0','Boots of Forlorn Wishes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140327','4','4','3','57076','6','5','213','80','0','Girdle of Recuperation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140328','4','4','4','53198','1','1','213','80','0','Helm of Vital Protection','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140329','4','4','2','54841','1','8','213','80','0','Hood of the Exodus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140330','4','4','4','55385','9','1','213','80','0','Bracers of Unrelenting Attack','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140331','4','4','3','54889','7','5','213','80','0','Leggings of Failed Escape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140332','4','4','4','54839','9','6','213','80','0','Abetment Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140333','4','4','2','54702','7','8','213','80','0','Leggings of Fleeting Moments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140334','4','4','4','54708','3','1','213','80','0','Burdened Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140335','4','2','19','54977','26','2','213','80','0','Touch of Horror','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140336','4','2','7','54893','21','1','213','80','3','Life and Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140337','4','4','7','34960','28','2','213','80','0','Libram of Resurgence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140338','4','4','1','54875','9','7','213','80','0','Bindings of Yearning','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140339','4','4','1','54883','1','7','213','80','0','Gothik\'s Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140340','4','4','3','57544','1','5','213','80','0','Helm of Unleashed Energy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140341','4','4','2','54762','6','8','213','80','0','Shackled Cinch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140342','4','4','8','43434','28','2','213','80','0','Idol of Awakening','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140343','4','2','8','54560','17','1','213','80','1','Armageddon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140344','4','4','3','57545','1','5','213','80','0','Helm of the Grave','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140345','4','2','7','54878','13','1','213','80','1','Broken Promise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140346','4','2','18','54886','26','2','213','80','0','Final Voyage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140347','4','4','4','54914','10','1','213','80','0','Zeliek\'s Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140348','4','2','10','55711','17','2','213','80','2','Damnation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140349','4','4','2','54882','10','8','213','80','0','Gloves of Peaceful Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140350','4','4','0','54614','23','3','213','80','0','Urn of Lost Memories','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140351','4','4','1','55325','3','7','213','80','0','Mantle of the Fatigued Sage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140352','4','4','3','54890','7','5','213','80','0','Leggings of Voracious Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140353','3','4','1','18948','16','7','162','0','0','Polished Protodrake Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140354','3','4','0','52385','12','8','115','70','0','Monster Slayer\'s Kit','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140362','4','4','2','54970','10','8','213','80','0','Gloves of Fast Reactions','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140363','4','4','4','54912','7','6','213','80','0','Bone-Inlaid Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140365','4','4','4','54767','5','1','213','80','0','Breastplate of Frozen Pain','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140366','4','4','4','53198','1','1','213','80','0','Platehelm of the Great Wyrm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140367','4','4','3','54770','8','5','213','80','0','Boots of the Great Construct','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140368','4','2','15','54974','13','1','213','80','3','Murder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140369','4','4','0','35437','2','3','213','80','0','Icy Blast Amulet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140370','4','4','0','35431','11','3','213','80','0','Gatekeeper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140371','4','4','0','35442','12','4','213','80','0','Bandit\'s Insignia','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140372','4','4','0','35429','12','4','213','80','0','Rune of Repulsion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140373','4','4','0','35445','12','4','213','80','0','Extract of Necromantic Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140374','4','4','0','35373','2','3','213','80','0','Cosmic Lights','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140375','4','4','0','35313','11','3','213','80','0','Ring of Decaying Beauty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140376','4','4','1','54973','7','7','213','80','0','Legwraps of the Defeated Dragon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140377','4','4','4','53670','3','1','213','80','0','Noble Birthright Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140378','4','4','0','35358','2','4','213','80','0','Ceaseless Pity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140379','4','4','2','54972','7','8','213','80','0','Legguards of the Boneyard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140380','4','4','1','54971','10','7','213','80','0','Gloves of Grandeur','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140381','4','4','1','54788','20','7','213','80','0','Sympathy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140382','4','4','0','35442','12','4','213','80','0','Soul of the Dead','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140383','4','2','13','57324','21','1','226','80','7','Calamity\'s Grasp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140384','4','2','1','57248','17','1','226','80','1','Betrayer of Humanity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140385','4','2','3','57465','26','1','226','80','0','Envoy of Mortality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140386','4','2','15','57466','13','1','226','80','3','Sinister Revenge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140387','4','4','0','35373','2','4','226','80','0','Boundless Ambition','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140388','4','2','10','56236','17','2','226','80','2','Journey\'s End','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140395','4','2','4','57250','21','1','226','80','3','Torch of Holy Fire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140396','4','2','7','56663','21','1','226','80','3','The Turning Tide','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140398','4','4','1','51941','7','7','226','80','0','Leggings of Mortal Arrogance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140399','4','4','0','35472','11','3','226','80','0','Signet of Manifested Pain','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140400','4','4','6','57003','14','6','226','80','4','Wall of Terror','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140401','4','4','6','57263','14','6','226','80','4','Voice of Reason','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140402','4','2','0','55906','13','1','226','80','3','Last Laugh','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140403','4','4','1','35446','16','7','226','80','0','Drape of the Deadly Foe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140405','4','4','1','35312','16','7','226','80','0','Cape of the Unworthy Wizard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140406','4','2','5','56959','17','1','213','80','1','Inevitable Defeat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140407','4','2','7','55975','13','1','213','80','3','Silent Crusader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140408','4','2','15','54463','21','1','213','80','3','Haunting Call','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140409','4','4','2','57009','8','8','213','80','0','Boots of the Escaped Captive','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140410','4','4','1','35430','16','7','213','80','0','Shadow of the Ghoul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140412','4','4','0','35359','2','4','213','80','0','Ousted Bead Necklace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140414','4','4','4','54790','3','6','213','80','0','Shoulderguards of the Undaunted','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140415','4','4','1','57018','10','7','213','80','0','Valorous Frostfire Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140416','4','4','1','57532','1','7','213','80','0','Valorous Frostfire Circlet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140417','4','4','1','54276','7','7','213','80','0','Valorous Frostfire Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140418','4','4','1','54268','20','7','213','80','0','Valorous Frostfire Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140419','4','4','1','56599','3','7','213','80','0','Valorous Frostfire Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140420','4','4','1','57020','10','7','213','80','0','Valorous Plagueheart Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140421','4','4','1','55167','1','7','213','80','0','Valorous Plagueheart Circlet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140422','4','4','1','55169','7','7','213','80','0','Valorous Plagueheart Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140423','4','4','1','56476','20','7','213','80','0','Valorous Plagueheart Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140424','4','4','1','55172','3','7','213','80','0','Valorous Plagueheart Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140426','4','4','0','44357','11','3','200','80','0','Signet of the Accord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140427','4','4','0','53194','2','3','200','80','0','Circle of Arcane Streams','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140428','4','4','4','53653','1','-1','200','80','0','Titan\'s Outlook','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140429','4','2','13','53195','21','1','200','80','7','Crimson Steel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140430','4','4','0','53197','12','4','200','80','0','Majestic Dragon Figurine','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140431','4','4','0','53285','12','4','213','80','0','Fury of the Five Flights','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140432','4','4','0','53291','12','4','213','80','0','Illustration of the Dragon Soul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140433','4','4','0','45362','11','3','213','80','0','Wyrmrest Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140437','4','4','2','53289','3','8','213','80','0','Concealment Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140438','4','4','3','53654','3','5','213','80','0','Council Chamber Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140439','4','4','2','53657','3','8','213','80','0','Mantle of the Eternal Sentinel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140440','4','4','4','49999','5','6','159','70','0','Brutal Gladiator\'s Dreadplate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140441','4','4','4','49998','10','6','159','70','0','Brutal Gladiator\'s Dreadplate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140442','4','4','4','49685','1','6','159','70','0','Brutal Gladiator\'s Dreadplate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140443','4','4','4','49996','7','6','159','70','0','Brutal Gladiator\'s Dreadplate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140444','4','4','4','49995','3','6','159','70','0','Brutal Gladiator\'s Dreadplate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140445','4','4','1','55072','10','7','213','80','0','Valorous Gloves of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140446','4','4','4','53655','7','1','213','80','0','Dragon Brood Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140447','4','4','1','54387','1','7','213','80','0','Valorous Crown of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140448','4','4','1','55073','7','7','213','80','0','Valorous Leggings of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140449','4','4','1','55075','20','7','213','80','0','Valorous Robe of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140450','4','4','1','55074','3','7','213','80','0','Valorous Shoulderpads of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140451','4','4','3','57545','1','5','213','80','0','Hyaline Helm of the Sniper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140453','4','4','4','53290','5','1','213','80','0','Chestplate of the Great Aspects','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140454','4','4','1','55072','10','7','213','80','0','Valorous Handwraps of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140455','4','2','10','53294','17','2','213','80','2','Staff of Restraint','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140456','4','4','1','54387','1','7','213','80','0','Valorous Circlet of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140457','4','4','1','55073','7','7','213','80','0','Valorous Pants of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140458','4','4','1','55075','20','7','213','80','0','Valorous Raiments of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140459','4','4','1','55074','3','7','213','80','0','Valorous Mantle of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140460','4','4','2','55218','10','8','213','80','0','Valorous Dreamwalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140461','4','4','2','57536','1','8','213','80','0','Valorous Dreamwalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140462','4','4','2','55224','7','8','213','80','0','Valorous Dreamwalker Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140463','4','4','2','55228','20','8','213','80','0','Valorous Dreamwalker Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140465','4','4','2','55227','3','8','213','80','0','Valorous Dreamwalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140466','4','4','2','55218','10','8','213','80','0','Valorous Dreamwalker Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140467','4','4','2','57536','1','8','213','80','0','Valorous Dreamwalker Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140468','4','4','2','55224','7','8','213','80','0','Valorous Dreamwalker Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140469','4','4','2','55228','20','8','213','80','0','Valorous Dreamwalker Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140470','4','4','2','55227','3','8','213','80','0','Valorous Dreamwalker Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140471','4','4','2','55228','20','8','213','80','0','Valorous Dreamwalker Raiments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140472','4','4','2','55219','10','8','213','80','0','Valorous Dreamwalker Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140473','4','4','2','57537','1','8','213','80','0','Valorous Dreamwalker Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140474','4','4','0','53560','11','5','213','80','0','Surge Needle Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140475','4','4','6','53562','14','6','213','80','4','Barricade of Eternity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140476','3','4','0','37840','12','-1','60','0','0','Insignia of the Alliance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140477','3','4','0','37841','12','-1','60','0','0','Insignia of the Horde','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140483','3','4','0','40036','12','4','0','0','0','Insignia of the Scourge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140486','4','4','0','39212','2','4','213','80','0','Necklace of the Glittering Chamber','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140488','4','2','4','49366','21','1','213','80','3','Ice Spire Scepter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140489','4','2','10','62285','17','2','213','80','2','Greatstaff of the Nexus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140490','3','4','3','52360','9','5','200','80','0','Necromantic Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140491','4','2','7','53563','13','1','213','80','3','Hailstorm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140492','3','4','0','52575','12','8','115','70','0','Argent War Horn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140493','4','4','2','55226','7','8','213','80','0','Valorous Dreamwalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140494','4','4','2','55227','3','8','213','80','0','Valorous Dreamwalker Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140495','4','4','2','55076','5','8','213','80','0','Valorous Bonescythe Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140496','4','4','2','55077','10','8','213','80','0','Valorous Bonescythe Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140497','4','2','6','53559','17','1','213','80','1','Black Ice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140499','4','4','2','55078','1','8','213','80','0','Valorous Bonescythe Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140500','4','4','2','55079','7','8','213','80','0','Valorous Bonescythe Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140502','4','4','2','55080','3','8','213','80','0','Valorous Bonescythe Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140503','4','4','3','55214','5','5','213','80','0','Valorous Cryptstalker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140504','4','4','3','55210','10','5','213','80','0','Valorous Cryptstalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140505','4','4','3','55211','1','5','213','80','0','Valorous Cryptstalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140506','4','4','3','55212','7','5','213','80','0','Valorous Cryptstalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140507','4','4','3','55213','3','5','213','80','0','Valorous Cryptstalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140508','4','4','3','57057','5','5','213','80','0','Valorous Earthshatter Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140509','4','4','3','57059','10','5','213','80','0','Valorous Earthshatter Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140510','4','4','3','57061','1','5','213','80','0','Valorous Earthshatter Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140511','4','4','4','53658','3','1','213','80','0','Focusing Energy Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140512','4','4','3','57062','7','5','213','80','0','Valorous Earthshatter Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140513','4','4','3','57064','3','5','213','80','0','Valorous Earthshatter Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140514','4','4','3','57057','5','5','213','80','0','Valorous Earthshatter Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140515','4','4','3','57059','10','5','213','80','0','Valorous Earthshatter Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140516','4','4','3','57061','1','5','213','80','0','Valorous Earthshatter Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140517','4','4','3','57062','7','5','213','80','0','Valorous Earthshatter Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140518','4','4','3','57064','3','5','213','80','0','Valorous Earthshatter Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140519','4','4','2','53659','8','8','213','80','0','Footsteps of Malygos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140520','4','4','3','57060','10','5','213','80','0','Valorous Earthshatter Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140521','4','4','3','57058','1','5','213','80','0','Valorous Earthshatter Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140522','4','4','3','57065','7','5','213','80','0','Valorous Earthshatter War-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140523','4','4','3','57057','5','5','213','80','0','Valorous Earthshatter Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140524','4','4','3','57063','3','5','213','80','0','Valorous Earthshatter Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140525','4','4','4','55788','5','1','213','80','0','Valorous Dreadnaught Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140526','4','4','1','53649','20','7','213','80','0','Gown of the Spell-Weaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140527','4','4','4','55790','10','1','213','80','0','Valorous Dreadnaught Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140528','4','4','4','55229','1','4','213','80','0','Valorous Dreadnaught Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140529','4','4','4','55793','7','6','213','80','0','Valorous Dreadnaught Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140530','4','4','4','57006','3','6','213','80','0','Valorous Dreadnaught Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140531','4','4','0','53630','12','4','226','80','0','Mark of Norgannon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140532','4','4','0','45465','12','4','226','80','0','Living Ice Crystals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140539','4','4','2','53635','5','8','226','80','0','Chestguard of the Recluse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140541','4','4','2','53637','10','8','226','80','0','Frosted Adroit Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140543','4','4','3','57545','1','5','226','80','0','Blue Aspect Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140544','4','4','4','55788','5','1','213','80','0','Valorous Dreadnaught Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140545','4','4','4','55791','10','1','213','80','0','Valorous Dreadnaught Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140546','4','4','4','55229','1','1','213','80','0','Valorous Dreadnaught Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140547','4','4','4','55792','7','1','213','80','0','Valorous Dreadnaught Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140548','4','4','4','57022','3','1','213','80','0','Valorous Dreadnaught Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140549','4','4','3','53661','8','5','226','80','0','Boots of the Renewed Flight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140550','4','4','4','55492','5','1','213','80','0','Valorous Scourgeborne Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140552','4','4','4','55494','10','1','213','80','0','Valorous Scourgeborne Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140553','4','2','7','52609','13','1','200','80','3','Electrified Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140554','4','4','4','55493','1','4','213','80','0','Valorous Scourgeborne Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140555','4','4','1','55325','3','7','226','80','0','Mantle of Dissemination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140556','4','4','4','55497','7','6','213','80','0','Valorous Scourgeborne Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140557','4','4','4','55499','3','6','213','80','0','Valorous Scourgeborne Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140558','4','4','1','53660','8','7','226','80','0','Arcanic Tramplers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140559','4','4','4','55492','5','1','213','80','0','Valorous Scourgeborne Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140560','4','4','1','53664','7','7','226','80','0','Leggings of the Wanton Spellcaster','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140561','4','4','1','53663','6','7','226','80','0','Leash of Heedless Magic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140562','4','4','1','53652','1','7','226','80','0','Hood of Rationality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140563','4','4','4','55495','10','1','213','80','0','Valorous Scourgeborne Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140564','4','4','3','53666','10','5','226','80','0','Winter Spectacle Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140565','4','4','4','55493','1','1','213','80','0','Valorous Scourgeborne Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140566','4','4','2','53667','6','8','226','80','0','Unravelling Strands of Sanity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140567','4','4','4','55496','7','1','213','80','0','Valorous Scourgeborne Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140568','4','4','4','55498','3','1','213','80','0','Valorous Scourgeborne Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140569','4','4','4','55173','5','1','213','80','0','Valorous Redemption Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140570','4','4','4','55174','10','1','213','80','0','Valorous Redemption Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140571','4','4','4','57547','1','4','213','80','0','Valorous Redemption Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140572','4','4','4','55177','7','6','213','80','0','Valorous Redemption Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140573','4','4','4','55209','3','1','213','80','0','Valorous Redemption Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140574','4','4','4','55173','5','1','213','80','0','Valorous Redemption Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140575','4','4','4','55180','10','1','213','80','0','Valorous Redemption Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140576','4','4','4','57547','1','4','213','80','0','Valorous Redemption Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140577','4','4','4','55179','7','6','213','80','0','Valorous Redemption Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140578','4','4','4','55208','3','6','213','80','0','Valorous Redemption Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140579','4','4','4','55173','5','1','213','80','0','Valorous Redemption Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140580','4','4','4','55174','10','1','213','80','0','Valorous Redemption Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140581','4','4','4','57547','1','1','213','80','0','Valorous Redemption Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140583','4','4','4','55178','7','1','213','80','0','Valorous Redemption Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140584','4','4','4','55181','3','1','213','80','0','Valorous Redemption Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140585','4','4','0','52459','11','3','200','80','0','Signet of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140586','4','4','0','52632','11','5','200','80','0','Band of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140588','4','4','3','53668','5','5','226','80','0','Tunic of the Artifact Guardian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140589','4','4','4','53655','7','1','226','80','0','Legplates of Sovereignty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140590','4','4','4','53670','3','1','226','80','0','Elevated Lair Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140591','4','4','4','53671','8','1','226','80','0','Melancholy Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140592','4','4','4','53672','8','1','226','80','0','Boots of Healing Energies','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140593','3','4','0','52633','12','8','115','70','0','Argent Tome','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140594','4','4','2','53673','3','8','226','80','0','Spaulders of Catatonia','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140601','3','4','0','52664','12','8','115','70','0','Argent Dawn Banner','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140602','4','4','1','54788','20','7','213','80','0','Robes of Mutation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140643','4','4','0','52678','19','7','1','0','0','Tabard of the Achiever','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140668','2','4','6','52694','14','1','142','70','4','Cobalt Triangle Shield','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140669','3','4','4','51675','6','6','163','74','0','Tempered Saronite Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140670','3','4','6','52861','14','1','159','73','4','Saronite Defender','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140671','3','4','4','51131','8','6','167','75','0','Tempered Saronite Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140672','3','4','4','54827','5','6','167','75','0','Tempered Saronite Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140673','3','4','4','51207','1','6','171','76','0','Tempered Saronite Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140674','3','4','4','54828','7','6','163','74','0','Tempered Saronite Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140675','3','4','4','54829','3','6','171','76','0','Tempered Saronite Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140678','4','4','0','35358','2','3','200','80','0','Pendant of the Outcast Hero','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140679','4','4','0','35437','2','4','200','80','0','Chained Military Gorget','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140680','4','4','0','35373','2','3','200','80','0','Encircling Burnished Gold Chains','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140681','4','4','0','35359','2','4','200','80','0','Lattice Choker of Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140682','4','4','0','53630','12','4','200','80','0','Sundial of the Exiled','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140683','4','4','0','54045','12','4','200','80','0','Valor Medal of the First War','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140684','4','4','0','29947','12','4','200','80','0','Mirror of Truth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140685','4','4','0','54046','12','4','200','80','0','The Egg of Mortal Essence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140688','4','4','4','54051','6','6','200','80','0','Verdungo\'s Barbarian Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140689','4','4','4','54050','6','6','200','80','0','Waistguard of Living Iron','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140691','4','4','4','54059','6','1','200','80','0','Magroth\'s Meditative Cincture','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140692','4','4','3','54052','6','5','200','80','0','Vereesa\'s Silver Chain Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140693','4','4','3','54053','6','5','200','80','0','Beadwork Belt of Shamanic Vision','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140694','4','4','2','54055','6','8','200','80','0','Jorach\'s Crocolisk Skin Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140695','4','4','2','54056','6','8','200','80','0','Vine Belt of the Woodland Dryad','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140696','4','4','1','56606','6','7','200','80','0','Plush Sash of Guzbah','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140697','4','4','1','54058','6','7','200','80','0','Elegant Temple Gardens\' Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140698','4','4','0','54063','23','3','200','80','0','Ward of the Violet Citadel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140699','4','4','0','54062','23','3','200','80','0','Handbook of Obscure Remedies','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140700','4','4','6','54069','14','6','200','80','4','Protective Barricade of the Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140701','4','4','6','54068','14','6','200','80','4','Crygil\'s Discarded Plate Panel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140702','4','2','15','54464','22','1','200','80','3','Rolfsen\'s Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140703','4','2','7','54471','22','1','200','80','3','Grasscutter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140704','4','2','13','57481','22','1','200','80','7','Pride','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140705','4','4','7','34959','28','2','200','80','0','Libram of Renewal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140706','4','4','7','34960','28','2','200','80','0','Libram of Reciprocation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140707','4','4','7','34961','28','2','200','80','0','Libram of Obstruction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140708','4','4','9','57574','28','2','200','80','0','Totem of the Elemental Plane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140709','4','4','9','34956','28','2','200','80','0','Totem of Forest Growth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140710','4','4','9','34958','28','2','200','80','0','Totem of Splintering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140711','4','4','8','54481','28','2','200','80','0','Idol of Lush Moss','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140712','4','4','8','54483','28','2','200','80','0','Idol of Steadfast Renewal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140713','4','4','8','54484','28','2','200','80','0','Idol of the Ravenous Beast','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140714','4','4','10','51913','28','2','200','80','0','Sigil of the Unfaltering Knight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140715','4','4','10','51913','28','2','200','80','0','Sigil of Haunted Dreams','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140716','4','2','16','54465','25','1','200','80','0','Lillehoff\'s Winged Blades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140717','4','4','0','33728','11','5','213','80','0','Ring of Invincibility','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140718','4','4','0','38541','11','3','213','80','0','Signet of the Impregnable Fortress','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140719','4','4','0','44358','11','3','213','80','0','Band of Channeled Magic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140720','4','4','0','44086','11','3','213','80','0','Renewal of Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140721','4','4','1','54667','16','7','213','80','0','Hammerhead Sharkskin Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140722','4','4','1','54673','16','7','213','80','0','Platinum Mesh Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140723','4','4','1','54674','16','7','213','80','0','Disguise of the Kumiho','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140724','4','4','1','33096','16','7','213','80','0','Cloak of Kea Feathers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140727','3','4','0','8926','12','8','300','0','0','Gnomish Gravity Well','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140733','4','4','4','54619','9','1','213','80','0','Wristbands of the Sentinel Huntress','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140734','4','4','4','54678','9','6','213','80','0','Bracers of Dalaran\'s Parapets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140735','4','4','4','51807','9','6','213','80','0','Zartson\'s Jungle Vambraces','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140736','4','4','3','54681','9','5','213','80','0','Armguard of the Tower Archer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140737','4','4','3','54682','9','5','213','80','0','Pigmented Clan Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140738','4','4','2','54684','9','8','213','80','0','Wristwraps of the Cutthroat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140739','4','4','2','54685','9','8','213','80','0','Bands of the Great Tree','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140740','4','4','1','54686','9','7','213','80','0','Wraps of the Astral Traveler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140741','4','4','1','54687','9','7','213','80','0','Cuffs of the Shadow Ascendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140742','4','4','4','56996','8','1','213','80','0','Bladed Steelboots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140743','4','4','4','56997','8','1','213','80','0','Kyzoc\'s Ground Stompers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140745','4','4','4','56062','8','1','213','80','0','Sabatons of Rapid Recovery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140746','4','4','3','56998','8','5','213','80','0','Pack-Ice Striders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140747','4','4','3','57093','8','5','213','80','0','Treads of Coastal Wandering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140748','4','4','2','56999','8','8','213','80','0','Boots of Captain Ellis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140749','4','4','2','57011','8','8','213','80','0','Rainey\'s Chewed Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140750','4','4','1','57001','8','7','213','80','0','Xintor\'s Expeditionary Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140751','4','4','1','57002','8','7','213','80','0','Slippers of the Holy Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140755','3','4','4','51628','8','6','171','0','0','Enticing Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140756','3','4','3','52484','3','5','171','0','0','Shoulders of the Seducer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140757','3','4','2','52480','9','8','171','0','0','Shackles of Dark Whispers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140758','3','4','1','52491','1','7','171','0','0','Shroud of Temptation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140767','3','4','0','36444','12','8','167','0','0','Sonic Booster','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140778','3','4','4','55801','5','6','200','80','0','Savage Gladiator\'s Plate Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140779','3','4','4','55500','5','6','200','80','0','Savage Gladiator\'s Dreadplate Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140780','3','4','4','55821','5','6','200','80','0','Savage Gladiator\'s Scaled Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140781','4','4','4','55819','5','6','200','80','0','Hateful Gladiator\'s Dreadplate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140782','4','4','4','55820','5','6','200','80','0','Hateful Gladiator\'s Scaled Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140783','4','4','4','55806','5','6','200','80','0','Hateful Gladiator\'s Plate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140784','4','4','4','55817','5','6','213','80','0','Deadly Gladiator\'s Dreadplate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140785','4','4','4','55816','5','6','213','80','0','Deadly Gladiator\'s Scaled Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140786','4','4','4','55811','5','6','213','80','0','Deadly Gladiator\'s Plate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140787','4','4','4','58717','5','6','232','80','0','Furious Gladiator\'s Dreadplate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140788','4','4','4','58853','5','6','232','80','0','Furious Gladiator\'s Scaled Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140789','4','4','4','58791','5','6','232','80','0','Furious Gladiator\'s Plate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140790','4','4','4','62199','5','6','251','80','0','Relentless Gladiator\'s Plate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140791','4','4','4','60864','5','6','251','80','0','Relentless Gladiator\'s Dreadplate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140792','4','4','4','60895','5','6','251','80','0','Relentless Gladiator\'s Scaled Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140797','3','4','4','55802','10','6','200','80','0','Savage Gladiator\'s Plate Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140798','3','4','4','55841','10','6','200','80','0','Savage Gladiator\'s Scaled Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140799','3','4','4','55840','10','6','200','80','0','Savage Gladiator\'s Dreadplate Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140801','4','4','4','55807','10','6','200','80','0','Hateful Gladiator\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140802','4','4','4','55839','10','6','200','80','0','Hateful Gladiator\'s Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140803','4','4','4','55838','10','6','200','80','0','Hateful Gladiator\'s Dreadplate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140804','4','4','4','55812','10','6','213','80','0','Deadly Gladiator\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140805','4','4','4','55837','10','6','213','80','0','Deadly Gladiator\'s Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140806','4','4','4','55836','10','6','213','80','0','Deadly Gladiator\'s Dreadplate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140807','4','4','4','58792','10','6','232','80','0','Furious Gladiator\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140808','4','4','4','58855','10','6','232','80','0','Furious Gladiator\'s Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140809','4','4','4','58718','10','6','232','80','0','Furious Gladiator\'s Dreadplate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140810','4','4','4','62198','10','6','251','80','0','Relentless Gladiator\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140811','4','4','4','60865','10','6','251','80','0','Relentless Gladiator\'s Dreadplate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140812','4','4','4','60915','10','6','251','80','0','Relentless Gladiator\'s Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140816','3','4','4','55803','1','6','200','80','0','Savage Gladiator\'s Plate Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140817','3','4','4','57533','1','6','200','80','0','Savage Gladiator\'s Dreadplate Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140818','3','4','4','55528','1','6','200','80','0','Savage Gladiator\'s Scaled Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140819','4','4','4','55808','1','6','200','80','0','Hateful Gladiator\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140820','4','4','4','57534','1','6','200','80','0','Hateful Gladiator\'s Dreadplate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140821','4','4','4','55531','1','6','200','80','0','Hateful Gladiator\'s Scaled Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140822','3','4','10','51913','28','2','150','74','0','Sigil of the Frozen Conscience','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140823','4','4','4','55813','1','6','213','80','0','Deadly Gladiator\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140824','4','4','4','57535','1','6','213','80','0','Deadly Gladiator\'s Dreadplate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140825','4','4','4','55723','1','6','213','80','0','Deadly Gladiator\'s Scaled Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140826','4','4','4','58793','1','6','232','80','0','Furious Gladiator\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140827','4','4','4','58720','1','6','232','80','0','Furious Gladiator\'s Dreadplate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140828','4','4','4','59568','1','6','232','80','0','Furious Gladiator\'s Scaled Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140829','4','4','4','61830','1','6','251','80','0','Relentless Gladiator\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140830','4','4','4','61554','1','6','251','80','0','Relentless Gladiator\'s Dreadplate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140831','4','4','4','61470','1','6','251','80','0','Relentless Gladiator\'s Scaled Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140832','3','4','10','51913','28','2','150','74','0','ObsoleteSigil of Pestilential Touch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140836','3','4','4','55804','7','6','200','80','0','Savage Gladiator\'s Plate Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140837','3','4','4','55834','7','6','200','80','0','Savage Gladiator\'s Dreadplate Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140838','3','4','4','55835','7','6','200','80','0','Savage Gladiator\'s Scaled Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140839','3','4','10','51913','28','2','150','74','0','ObsoleteSigil of the Glorious Mistake','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140840','4','4','4','55809','7','6','200','80','0','Hateful Gladiator\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140841','4','4','4','55831','7','6','200','80','0','Hateful Gladiator\'s Dreadplate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140842','4','4','4','55833','7','6','200','80','0','Hateful Gladiator\'s Scaled Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140844','4','4','4','55814','7','6','213','80','0','Deadly Gladiator\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140845','4','4','4','55829','7','6','213','80','0','Deadly Gladiator\'s Dreadplate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140846','4','4','4','55830','7','6','213','80','0','Deadly Gladiator\'s Scaled Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140847','4','4','4','58794','7','6','232','80','0','Furious Gladiator\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140848','4','4','4','58721','7','6','232','80','0','Furious Gladiator\'s Dreadplate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140849','4','4','4','58854','7','6','232','80','0','Furious Gladiator\'s Scaled Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140850','4','4','4','62196','7','6','251','80','0','Relentless Gladiator\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140851','4','4','4','60200','7','6','251','80','0','Relentless Gladiator\'s Dreadplate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140852','4','4','4','60898','7','6','251','80','0','Relentless Gladiator\'s Scaled Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140856','3','4','4','55805','3','6','200','80','0','Savage Gladiator\'s Plate Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140857','3','4','4','55505','3','6','200','80','0','Savage Gladiator\'s Dreadplate Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140858','3','4','4','55828','3','6','200','80','0','Savage Gladiator\'s Scaled Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140859','4','4','4','55810','3','6','200','80','0','Hateful Gladiator\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140860','4','4','4','55512','3','6','200','80','0','Hateful Gladiator\'s Dreadplate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140861','4','4','4','55827','3','6','200','80','0','Hateful Gladiator\'s Scaled Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140862','4','4','4','55815','3','6','213','80','0','Deadly Gladiator\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140863','4','4','4','55733','3','6','213','80','0','Deadly Gladiator\'s Dreadplate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140864','4','4','4','55826','3','6','213','80','0','Deadly Gladiator\'s Scaled Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140865','3','4','0','36444','12','8','167','0','0','Noise Machine','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140866','4','4','4','58795','3','6','232','80','0','Furious Gladiator\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140867','3','4','10','51913','28','2','150','74','0','Sigil of the Wild Buck','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140868','4','4','4','58722','3','6','232','80','0','Furious Gladiator\'s Dreadplate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140869','4','4','4','58860','3','6','232','80','0','Furious Gladiator\'s Scaled Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140870','4','4','4','61831','3','6','251','80','0','Relentless Gladiator\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140871','4','4','4','60866','3','6','251','80','0','Relentless Gladiator\'s Dreadplate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140872','4','4','4','60908','3','6','251','80','0','Relentless Gladiator\'s Scaled Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140875','3','4','10','51913','28','2','150','74','0','Sigil of Arthritic Binding','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140877','4','4','4','55645','6','6','200','80','0','Hateful Gladiator\'s Girdle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140878','4','4','4','55650','8','6','200','80','0','Hateful Gladiator\'s Greaves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140879','4','4','4','55754','6','6','213','80','0','Deadly Gladiator\'s Girdle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140880','4','4','4','55755','8','6','213','80','0','Deadly Gladiator\'s Greaves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140881','4','4','4','59245','6','6','226','80','0','Furious Gladiator\'s Girdle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140882','4','4','4','59251','8','6','226','80','0','Furious Gladiator\'s Greaves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140883','4','4','4','61472','6','6','245','80','0','Relentless Gladiator\'s Girdle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140884','4','4','4','62208','8','6','245','80','0','Relentless Gladiator\'s Greaves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140887','4','4','4','55635','9','6','200','80','0','Hateful Gladiator\'s Bracers of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140888','4','4','4','55753','9','6','213','80','0','Deadly Gladiator\'s Bracers of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140889','4','4','4','59240','9','6','226','80','0','Furious Gladiator\'s Bracers of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140890','4','4','4','61477','9','6','245','80','0','Relentless Gladiator\'s Bracers of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140895','3','4','0','57759','1','7','80','0','0','Gnomish X-Ray Specs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140898','3','4','4','55821','5','6','200','80','0','Savage Gladiator\'s Ornamented Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140904','4','4','4','55820','5','6','200','80','0','Hateful Gladiator\'s Ornamented Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140905','4','4','4','55816','5','6','213','80','0','Deadly Gladiator\'s Ornamented Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140907','4','4','4','58853','5','6','232','80','0','Furious Gladiator\'s Ornamented Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140910','4','4','4','60895','5','6','251','80','0','Relentless Gladiator\'s Ornamented Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140918','3','4','4','55841','10','6','200','80','0','Savage Gladiator\'s Ornamented Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140925','4','4','4','55839','10','6','200','80','0','Hateful Gladiator\'s Ornamented Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140926','4','4','4','55837','10','6','213','80','0','Deadly Gladiator\'s Ornamented Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140927','4','4','4','58855','10','6','232','80','0','Furious Gladiator\'s Ornamented Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140928','4','4','4','60915','10','6','251','80','0','Relentless Gladiator\'s Ornamented Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140930','3','4','4','55528','1','6','200','80','0','Savage Gladiator\'s Ornamented Headcover','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140931','4','4','4','55531','1','6','200','80','0','Hateful Gladiator\'s Ornamented Headcover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140932','4','4','4','55723','1','6','213','80','0','Deadly Gladiator\'s Ornamented Headcover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140933','4','4','4','58857','1','6','232','80','0','Furious Gladiator\'s Ornamented Headcover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140934','4','4','4','61470','1','6','251','80','0','Relentless Gladiator\'s Ornamented Headcover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140936','3','4','4','55835','7','6','200','80','0','Savage Gladiator\'s Ornamented Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140937','4','4','4','55833','7','6','200','80','0','Hateful Gladiator\'s Ornamented Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140938','4','4','4','55830','7','6','213','80','0','Deadly Gladiator\'s Ornamented Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140939','4','4','4','58854','7','6','232','80','0','Furious Gladiator\'s Ornamented Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140940','4','4','4','60898','7','6','251','80','0','Relentless Gladiator\'s Ornamented Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140942','2','4','4','54816','1','6','142','68','0','Spiked Cobalt Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140943','2','4','4','54825','7','6','158','74','0','Spiked Cobalt Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140949','2','4','4','54823','8','6','146','71','0','Spiked Cobalt Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140950','2','4','4','54826','3','6','150','72','0','Spiked Cobalt Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140951','2','4','4','54824','5','6','150','72','0','Spiked Cobalt Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140952','2','4','4','54074','10','6','154','73','0','Spiked Cobalt Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140953','2','4','4','54822','6','6','158','74','0','Spiked Cobalt Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140954','2','4','4','54072','9','6','162','75','0','Spiked Cobalt Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140955','2','4','4','54816','1','6','162','75','0','Horned Cobalt Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140956','2','4','4','54821','3','6','154','73','0','Reinforced Cobalt Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140957','2','4','4','54819','1','6','162','75','0','Reinforced Cobalt Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140958','2','4','4','54820','7','6','166','76','0','Reinforced Cobalt Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140959','2','4','4','54818','5','6','170','77','0','Reinforced Cobalt Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140960','3','4','4','55828','3','6','200','80','0','Savage Gladiator\'s Ornamented Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140961','4','4','4','55827','3','6','200','80','0','Hateful Gladiator\'s Ornamented Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140962','4','4','4','55826','3','6','213','80','0','Deadly Gladiator\'s Ornamented Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140963','4','4','4','58860','3','6','232','80','0','Furious Gladiator\'s Ornamented Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140964','4','4','4','60908','3','6','251','80','0','Relentless Gladiator\'s Ornamented Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140966','4','4','4','60017','6','6','200','80','0','Hateful Gladiator\'s Girdle of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140972','4','4','4','55634','9','6','200','80','0','Hateful Gladiator\'s Bracers of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140973','4','4','4','55651','8','6','200','80','0','Hateful Gladiator\'s Greaves of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140974','4','4','4','55727','6','6','213','80','0','Deadly Gladiator\'s Girdle of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140975','4','4','4','55728','8','6','213','80','0','Deadly Gladiator\'s Greaves of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140976','4','4','4','59241','6','6','226','80','0','Furious Gladiator\'s Girdle of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140977','4','4','4','59246','8','6','226','80','0','Furious Gladiator\'s Greaves of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140978','4','4','4','61471','6','6','245','80','0','Relentless Gladiator\'s Girdle of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140979','4','4','4','61473','8','6','245','80','0','Relentless Gladiator\'s Greaves of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140982','4','4','4','55726','9','6','213','80','0','Deadly Gladiator\'s Bracers of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140983','4','4','4','59238','9','6','226','80','0','Furious Gladiator\'s Bracers of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140984','4','4','4','61476','9','6','245','80','0','Relentless Gladiator\'s Bracers of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140986','3','4','3','56926','5','5','200','80','0','Savage Gladiator\'s Ringmail Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140987','3','4','3','56926','5','5','200','80','0','Savage Gladiator\'s Mail Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140988','4','4','3','56925','5','5','200','80','0','Hateful Gladiator\'s Ringmail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140989','4','4','3','56925','5','5','200','80','0','Hateful Gladiator\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140990','4','4','3','56922','5','5','213','80','0','Deadly Gladiator\'s Ringmail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140991','4','4','3','56922','5','5','213','80','0','Deadly Gladiator\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140992','4','4','3','58864','20','5','232','80','0','Furious Gladiator\'s Ringmail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140993','4','4','3','58864','20','5','232','80','0','Furious Gladiator\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140994','4','4','3','61553','20','5','251','80','0','Relentless Gladiator\'s Ringmail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140995','4','4','3','61553','20','5','251','80','0','Relentless Gladiator\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140998','3','4','3','56940','10','5','200','80','0','Savage Gladiator\'s Ringmail Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('140999','4','4','3','56939','10','5','200','80','0','Hateful Gladiator\'s Ringmail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141000','4','4','3','56938','10','5','213','80','0','Deadly Gladiator\'s Ringmail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141001','4','4','3','58866','10','5','232','80','0','Furious Gladiator\'s Ringmail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141002','4','4','3','60883','10','5','251','80','0','Relentless Gladiator\'s Ringmail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141004','3','4','3','56940','10','5','200','80','0','Savage Gladiator\'s Mail Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141005','4','4','3','56939','10','5','200','80','0','Hateful Gladiator\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141006','4','4','3','56938','10','5','213','80','0','Deadly Gladiator\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141007','4','4','3','58866','10','5','232','80','0','Furious Gladiator\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141008','4','4','3','60883','10','5','251','80','0','Relentless Gladiator\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141010','3','4','3','56936','1','5','200','80','0','Savage Gladiator\'s Ringmail Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141011','4','4','3','56935','1','5','200','80','0','Hateful Gladiator\'s Ringmail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141012','4','4','3','56934','1','5','213','80','0','Deadly Gladiator\'s Ringmail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141013','4','4','3','64904','1','5','232','80','0','Furious Gladiator\'s Ringmail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141014','4','4','3','64922','1','5','251','80','0','Relentless Gladiator\'s Ringmail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141016','3','4','3','56936','1','5','200','80','0','Savage Gladiator\'s Mail Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141017','4','4','3','56935','1','5','200','80','0','Hateful Gladiator\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141018','4','4','3','56934','1','5','213','80','0','Deadly Gladiator\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141019','4','4','3','64904','1','5','232','80','0','Furious Gladiator\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141020','4','4','3','64922','1','5','251','80','0','Relentless Gladiator\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141023','3','4','3','56932','7','5','200','80','0','Savage Gladiator\'s Ringmail Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141024','3','4','3','56944','3','5','200','80','0','Savage Gladiator\'s Ringmail Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141025','4','4','3','56931','7','5','200','80','0','Hateful Gladiator\'s Ringmail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141026','4','4','3','56928','7','5','213','80','0','Deadly Gladiator\'s Ringmail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141027','4','4','3','58867','7','5','232','80','0','Furious Gladiator\'s Ringmail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141028','4','4','3','60891','7','5','251','80','0','Relentless Gladiator\'s Ringmail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141030','3','4','3','56932','7','5','200','80','0','Savage Gladiator\'s Mail Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141031','4','4','3','56931','7','5','200','80','0','Hateful Gladiator\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141032','4','4','3','56928','7','5','213','80','0','Deadly Gladiator\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141033','4','4','3','58867','7','5','232','80','0','Furious Gladiator\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141034','4','4','3','60891','7','5','251','80','0','Relentless Gladiator\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141036','4','4','3','56942','3','5','200','80','0','Hateful Gladiator\'s Ringmail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141037','4','4','3','56941','3','5','213','80','0','Deadly Gladiator\'s Ringmail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141038','4','4','3','59053','3','5','232','80','0','Furious Gladiator\'s Ringmail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141039','4','4','3','61280','3','5','251','80','0','Relentless Gladiator\'s Ringmail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141041','3','4','3','56944','3','5','200','80','0','Savage Gladiator\'s Mail Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141042','4','4','3','56942','3','5','200','80','0','Hateful Gladiator\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141043','4','4','3','56941','3','5','213','80','0','Deadly Gladiator\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141044','4','4','3','59053','3','5','232','80','0','Furious Gladiator\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141045','4','4','3','61280','3','5','251','80','0','Relentless Gladiator\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141047','4','4','3','56945','9','5','200','80','0','Hateful Gladiator\'s Wristguards of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141048','4','4','3','56948','6','5','213','80','0','Deadly Gladiator\'s Waistguard of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141049','4','4','3','56949','8','5','200','80','0','Hateful Gladiator\'s Sabatons of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141050','4','4','3','56947','6','5','200','80','0','Hateful Gladiator\'s Waistguard of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141051','4','4','3','59262','6','5','226','80','0','Furious Gladiator\'s Waistguard of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141052','4','4','3','61463','6','5','245','80','0','Relentless Gladiator\'s Waistguard of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141054','4','4','3','56950','8','5','213','80','0','Deadly Gladiator\'s Sabatons of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141055','4','4','3','59255','8','5','226','80','0','Furious Gladiator\'s Sabatons of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141056','4','4','3','61466','8','5','245','80','0','Relentless Gladiator\'s Sabatons of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141059','4','4','3','56946','9','5','213','80','0','Deadly Gladiator\'s Wristguards of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141060','4','4','3','59265','9','5','226','80','0','Furious Gladiator\'s Wristguards of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141061','4','4','3','61467','9','5','245','80','0','Relentless Gladiator\'s Wristguards of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141063','4','4','3','56945','9','5','200','80','0','Hateful Gladiator\'s Wristguards of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141064','4','4','3','56946','9','5','213','80','0','Deadly Gladiator\'s Wristguards of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141065','4','4','3','59265','9','5','226','80','0','Furious Gladiator\'s Wristguards of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141066','4','4','3','61467','9','5','245','80','0','Relentless Gladiator\'s Wristguards of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141068','4','4','3','56947','6','5','200','80','0','Hateful Gladiator\'s Waistguard of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141069','4','4','3','56948','6','5','213','80','0','Deadly Gladiator\'s Waistguard of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141070','4','4','3','59262','6','5','226','80','0','Furious Gladiator\'s Waistguard of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141071','4','4','3','61463','6','5','245','80','0','Relentless Gladiator\'s Waistguard of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141073','4','4','3','56949','8','5','200','80','0','Hateful Gladiator\'s Sabatons of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141074','4','4','3','56950','8','5','213','80','0','Deadly Gladiator\'s Sabatons of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141075','4','4','3','59255','8','5','226','80','0','Furious Gladiator\'s Sabatons of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141076','4','4','3','61466','8','5','245','80','0','Relentless Gladiator\'s Sabatons of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141078','3','4','3','56926','5','5','200','80','0','Savage Gladiator\'s Linked Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141079','4','4','3','56925','5','5','200','80','0','Hateful Gladiator\'s Linked Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141080','4','4','3','56922','5','5','213','80','0','Deadly Gladiator\'s Linked Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141081','4','4','3','58864','20','5','232','80','0','Furious Gladiator\'s Linked Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141082','4','4','3','61553','20','5','251','80','0','Relentless Gladiator\'s Linked Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141084','3','4','3','56965','5','5','200','80','0','Savage Gladiator\'s Chain Armor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141085','4','4','3','55847','5','5','200','80','0','Hateful Gladiator\'s Chain Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141086','4','4','3','55848','5','5','213','80','0','Deadly Gladiator\'s Chain Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141087','4','4','3','58802','5','5','232','80','0','Furious Gladiator\'s Chain Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141088','4','4','3','60192','5','5','251','80','0','Relentless Gladiator\'s Chain Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141112','3','4','1','45782','1','7','183','0','0','Mechanized Snow Goggles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141113','3','4','6','52178','14','1','175','77','4','Saronite Bulwark','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141114','3','4','4','54076','10','6','179','78','0','Tempered Saronite Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141116','3','4','4','54075','9','6','175','77','0','Tempered Saronite Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141117','3','4','6','52862','14','1','159','73','4','Saronite Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141121','3','4','0','52868','12','8','200','0','0','Gnomish Lightning Generator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141126','3','4','4','54811','7','6','163','74','0','Brilliant Saronite Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141127','3','4','4','55300','10','6','167','75','0','Brilliant Saronite Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141128','3','4','4','54809','8','6','171','76','0','Brilliant Saronite Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141129','3','4','4','54810','5','6','179','78','0','Brilliant Saronite Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141134','3','4','3','56940','10','5','200','80','0','Savage Gladiator\'s Linked Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141135','4','4','3','56939','10','5','200','80','0','Hateful Gladiator\'s Linked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141136','4','4','3','56938','10','5','213','80','0','Deadly Gladiator\'s Linked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141137','4','4','3','58866','10','5','232','80','0','Furious Gladiator\'s Linked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141138','4','4','3','60883','10','5','251','80','0','Relentless Gladiator\'s Linked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141140','3','4','3','56966','10','5','200','80','0','Savage Gladiator\'s Chain Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141141','4','4','3','55844','10','5','200','80','0','Hateful Gladiator\'s Chain Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141142','4','4','3','55614','10','5','213','80','0','Deadly Gladiator\'s Chain Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141143','4','4','3','59681','10','5','232','80','0','Furious Gladiator\'s Chain Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141144','4','4','3','61457','10','5','251','80','0','Relentless Gladiator\'s Chain Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141148','3','4','3','56936','1','5','200','80','0','Savage Gladiator\'s Linked Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141149','4','4','3','56935','1','5','200','80','0','Hateful Gladiator\'s Linked Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141150','4','4','3','56934','1','5','213','80','0','Deadly Gladiator\'s Linked Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141151','4','4','3','64904','1','5','232','80','0','Furious Gladiator\'s Linked Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141152','4','4','3','64922','1','5','251','80','0','Relentless Gladiator\'s Linked Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141154','3','4','3','56967','1','5','200','80','0','Savage Gladiator\'s Chain Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141155','4','4','3','56145','1','5','200','80','0','Hateful Gladiator\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141156','4','4','3','56143','1','5','213','80','0','Deadly Gladiator\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141157','4','4','3','58804','1','5','232','80','0','Furious Gladiator\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141158','4','4','3','62161','1','5','251','80','0','Relentless Gladiator\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141160','3','4','3','56932','7','5','200','80','0','Savage Gladiator\'s Linked Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141162','4','4','3','56931','7','5','200','80','0','Hateful Gladiator\'s Linked Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141168','4','2','3','57237','26','1','200','80','0','Armor Plated Combat Shotgun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141181','3','2','1','52941','17','1','159','73','1','Honed Cobalt Cleaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141182','3','2','7','50271','13','1','163','74','3','Savage Cobalt Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141183','3','2','15','51403','13','1','167','75','3','Saronite Ambusher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141184','3','2','15','51403','13','1','171','76','3','Saronite Shiv','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141185','3','2','4','52926','13','2','175','77','3','Furious Saronite Beatstick','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141186','3','2','7','53477','13','1','179','78','3','Corroded Saronite Edge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141187','3','2','7','53477','13','1','179','78','3','Corroded Saronite Woundbringer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141188','3','2','5','53478','17','1','179','78','1','Saronite Mindcrusher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141189','3','4','4','52931','5','6','179','78','0','Chestplate of Conquest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141190','3','4','4','51612','7','6','166','78','0','Legplates of Conquest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141198','4','4','3','56928','7','5','213','80','0','Deadly Gladiator\'s Linked Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141199','4','4','3','58867','7','5','232','80','0','Furious Gladiator\'s Linked Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141200','4','4','3','60891','7','5','251','80','0','Relentless Gladiator\'s Linked Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141202','3','4','3','56968','7','5','200','80','0','Savage Gladiator\'s Chain Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141203','4','4','3','55854','7','5','200','80','0','Hateful Gladiator\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141204','4','4','3','55855','7','5','213','80','0','Deadly Gladiator\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141205','4','4','3','58805','7','5','232','80','0','Furious Gladiator\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141206','4','4','3','60195','7','5','251','80','0','Relentless Gladiator\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141208','3','4','3','56944','3','5','200','80','0','Savage Gladiator\'s Linked Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141209','4','4','3','56942','3','5','200','80','0','Hateful Gladiator\'s Linked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141210','4','4','3','56941','3','5','213','80','0','Deadly Gladiator\'s Linked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141211','4','4','3','59053','3','5','232','80','0','Furious Gladiator\'s Linked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141212','4','4','3','61280','3','5','251','80','0','Relentless Gladiator\'s Linked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141214','3','4','3','56969','3','5','200','80','0','Savage Gladiator\'s Chain Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141215','4','4','3','55626','3','5','200','80','0','Hateful Gladiator\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141216','4','4','3','55618','3','5','213','80','0','Deadly Gladiator\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141217','4','4','3','58807','3','5','232','80','0','Furious Gladiator\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141218','4','4','3','61461','3','5','251','80','0','Relentless Gladiator\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141223','4','4','3','55638','9','5','200','80','0','Hateful Gladiator\'s Wristguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141224','4','4','3','56970','9','5','213','80','0','Deadly Gladiator\'s Wristguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141225','4','4','3','59266','9','5','226','80','0','Furious Gladiator\'s Wristguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141226','4','4','3','61468','9','5','245','80','0','Relentless Gladiator\'s Wristguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141228','4','4','3','55652','8','5','200','80','0','Hateful Gladiator\'s Sabatons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141229','4','4','3','56972','8','5','213','80','0','Deadly Gladiator\'s Sabatons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141230','4','4','3','59268','8','5','226','80','0','Furious Gladiator\'s Sabatons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141231','4','4','3','61465','8','5','245','80','0','Relentless Gladiator\'s Sabatons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141233','4','4','3','55646','6','5','200','80','0','Hateful Gladiator\'s Waistguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141234','4','4','3','56971','6','5','213','80','0','Deadly Gladiator\'s Waistguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141235','4','4','3','59264','6','5','226','80','0','Furious Gladiator\'s Waistguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141236','4','4','3','61462','6','5','245','80','0','Relentless Gladiator\'s Waistguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141238','3','4','1','56697','16','7','167','75','0','Cloak of Tormented Skies','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141239','2','2','7','50270','13','1','146','71','3','Sturdy Cobalt Quickblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141240','2','2','4','50197','13','1','146','71','3','Cobalt Tenderizer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141241','2','2','16','52939','25','2','150','72','0','Sure-fire Shuriken','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141242','2','2','8','50334','17','1','150','72','1','Forged Cobalt Claymore','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141243','2','2','0','50076','13','1','154','73','3','Notched Cobalt War Axe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141245','3','2','16','52942','25','2','171','76','0','Deadly Saronite Dirk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141248','1','4','0','52955','4','7','1','0','0','Red Lumberjack Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141249','1','4','0','52956','4','7','1','0','0','Blue Lumberjack Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141250','1','4','0','52957','4','7','1','0','0','Green Lumberjack Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141251','1','4','0','52958','4','7','1','0','0','Yellow Lumberjack Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141252','1','4','0','52959','4','7','1','0','0','Red Workman\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141253','1','4','0','52960','4','7','1','0','0','Blue Workman\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141254','1','4','0','52961','4','7','1','0','0','Rustic Workman\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141255','1','4','0','52962','4','7','1','0','0','Green Workman\'s Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141257','4','2','5','52966','17','1','200','80','1','Titansteel Destroyer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141264','3','4','2','56681','9','7','200','80','0','Deflecting Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141268','3','4','2','55398','10','8','200','80','0','Savage Gladiator\'s Kodohide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141269','3','4','2','55399','1','8','200','80','0','Savage Gladiator\'s Kodohide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141270','3','4','2','55874','7','8','200','80','0','Savage Gladiator\'s Kodohide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141271','3','4','2','55404','3','8','200','80','0','Savage Gladiator\'s Kodohide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141272','3','4','2','55862','20','8','200','80','0','Savage Gladiator\'s Kodohide Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141273','4','4','2','55417','3','8','200','80','0','Hateful Gladiator\'s Kodohide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141274','4','4','2','56421','3','8','213','80','0','Deadly Gladiator\'s Kodohide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141275','4','4','2','59046','3','8','232','80','0','Furious Gladiator\'s Kodohide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141276','4','4','2','61447','3','8','251','80','0','Relentless Gladiator\'s Kodohide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141278','3','4','2','55404','3','8','200','80','0','Savage Gladiator\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141279','4','4','2','55417','3','8','200','80','0','Hateful Gladiator\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141280','4','4','2','56421','3','8','213','80','0','Deadly Gladiator\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141281','4','4','2','59046','3','8','232','80','0','Furious Gladiator\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141282','4','4','2','61447','3','8','251','80','0','Relentless Gladiator\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141284','4','4','2','55397','10','8','200','80','0','Hateful Gladiator\'s Kodohide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141286','4','4','2','56418','10','8','213','80','0','Deadly Gladiator\'s Kodohide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141287','4','4','2','59410','10','8','232','80','0','Furious Gladiator\'s Kodohide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141288','4','4','2','60856','10','8','251','80','0','Relentless Gladiator\'s Kodohide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141290','3','4','2','55398','10','8','200','80','0','Savage Gladiator\'s Wyrmhide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141291','4','4','2','55397','10','8','200','80','0','Hateful Gladiator\'s Wyrmhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141292','4','4','2','56418','10','8','213','80','0','Deadly Gladiator\'s Wyrmhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141293','4','4','2','59410','10','8','232','80','0','Furious Gladiator\'s Wyrmhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141294','4','4','2','60856','10','8','251','80','0','Relentless Gladiator\'s Wyrmhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141296','4','4','2','55872','7','8','200','80','0','Hateful Gladiator\'s Kodohide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141297','4','4','2','56419','7','8','213','80','0','Deadly Gladiator\'s Kodohide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141298','4','4','2','59414','7','8','232','80','0','Furious Gladiator\'s Kodohide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141299','4','4','2','60860','7','8','251','80','0','Relentless Gladiator\'s Kodohide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141301','3','4','2','55874','7','8','200','80','0','Savage Gladiator\'s Wyrmhide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141302','4','4','2','55872','7','8','200','80','0','Hateful Gladiator\'s Wyrmhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141303','4','4','2','56419','7','8','213','80','0','Deadly Gladiator\'s Wyrmhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141304','4','4','2','59414','7','8','232','80','0','Furious Gladiator\'s Wyrmhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141305','4','4','2','60860','7','8','251','80','0','Relentless Gladiator\'s Wyrmhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141308','4','4','2','55861','20','8','200','80','0','Hateful Gladiator\'s Kodohide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141309','4','4','2','56420','20','8','213','80','0','Deadly Gladiator\'s Kodohide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141310','4','4','2','59442','20','8','232','80','0','Furious Gladiator\'s Kodohide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141311','4','4','2','61969','20','8','251','80','0','Relentless Gladiator\'s Kodohide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141313','3','4','2','55862','20','8','200','80','0','Savage Gladiator\'s Wyrmhide Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141314','4','4','2','55861','20','8','200','80','0','Hateful Gladiator\'s Wyrmhide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141315','4','4','2','56420','20','8','213','80','0','Deadly Gladiator\'s Wyrmhide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141316','4','4','2','59442','20','8','232','80','0','Furious Gladiator\'s Wyrmhide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141317','4','4','2','61969','20','8','251','80','0','Relentless Gladiator\'s Wyrmhide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141319','4','4','2','55411','1','8','200','80','0','Hateful Gladiator\'s Kodohide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141320','4','4','2','56417','1','8','213','80','0','Deadly Gladiator\'s Kodohide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141321','4','4','2','59411','1','8','232','80','0','Furious Gladiator\'s Kodohide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141322','4','4','2','60858','1','8','251','80','0','Relentless Gladiator\'s Kodohide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141324','3','4','2','55399','1','8','200','80','0','Savage Gladiator\'s Wyrmhide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141325','4','4','2','55411','1','8','200','80','0','Hateful Gladiator\'s Wyrmhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141326','4','4','2','56417','1','8','213','80','0','Deadly Gladiator\'s Wyrmhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141327','4','4','2','59412','1','8','232','80','0','Furious Gladiator\'s Wyrmhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141328','4','4','2','60858','1','8','251','80','0','Relentless Gladiator\'s Wyrmhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141330','4','4','2','55643','6','8','200','80','0','Hateful Gladiator\'s Belt of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141331','4','4','2','55647','8','8','200','80','0','Hateful Gladiator\'s Boots of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141332','4','4','2','55632','9','8','200','80','0','Hateful Gladiator\'s Armwraps of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141342','4','2','10','52991','17','2','81','60','2','Staff of the Shadow Flame (Purple Enchant)','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141344','3','4','4','52304','1','6','187','78','0','Helm of Command','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141345','3','4','4','52996','7','6','187','78','0','Daunting Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141346','3','4','4','52999','7','6','187','78','0','Righteous Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141347','3','4','4','53003','7','6','187','78','0','Savage Saronite Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141348','3','4','4','53004','8','6','187','78','0','Savage Saronite Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141349','3','4','4','53110','10','6','187','78','0','Savage Saronite Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141350','3','4','4','52302','1','6','187','78','0','Savage Saronite Skullshield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141351','3','4','4','51604','3','6','187','78','0','Savage Saronite Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141352','3','4','4','53005','6','6','187','78','0','Savage Saronite Waistguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141353','3','4','4','50991','5','6','187','78','0','Savage Saronite Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141354','3','4','4','51710','9','6','187','78','0','Savage Saronite Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141355','3','4','4','54830','9','6','187','78','0','Vengeance Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141356','3','4','4','53007','10','6','187','78','0','Righteous Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141357','3','4','4','53008','10','6','187','78','0','Daunting Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141383','4','2','4','53030','21','1','200','80','3','Titansteel Bonecrusher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141384','4','2','4','53032','21','1','200','80','3','Titansteel Guardian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141386','4','4','4','55310','1','6','200','80','0','Spiked Titansteel Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141387','4','4','4','55311','1','6','200','80','0','Tempered Titansteel Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141388','4','4','4','55312','1','6','200','80','0','Brilliant Titansteel Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141391','4','4','4','53036','8','6','200','80','0','Spiked Titansteel Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141392','4','4','4','53037','8','6','200','80','0','Tempered Titansteel Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141394','4','4','4','53038','8','6','200','80','0','Brilliant Titansteel Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141512','2','4','1','53082','9','7','134','70','0','Frostwoven Wristwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141513','2','4','1','53090','3','7','134','70','0','Frostwoven Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141515','2','4','1','53084','20','7','134','70','0','Frostwoven Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141516','3','4','1','55367','10','7','187','78','0','Frostsavage Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141519','2','4','1','51140','7','7','142','72','0','Frostwoven Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141520','2','4','1','53086','8','7','138','68','0','Frostwoven Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141521','2','4','1','52491','1','7','142','72','0','Frostwoven Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141522','2','4','1','53087','6','7','138','68','0','Frostwoven Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141523','3','4','1','53088','3','7','146','73','0','Mystic Frostwoven Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141525','3','4','1','53084','20','7','150','74','0','Mystic Frostwoven Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141528','3','4','1','53082','9','7','146','73','0','Mystic Frostwoven Wristwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141543','2','4','1','53092','6','7','154','75','0','Duskweave Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141544','2','4','1','53093','8','7','162','77','0','Duskweave Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141545','2','4','1','53094','10','7','158','76','0','Duskweave Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141546','2','4','1','53381','1','7','154','75','0','Duskweave Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141548','2','4','1','53096','7','7','154','75','0','Duskweave Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141549','2','4','1','53097','20','7','158','76','0','Duskweave Robe','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141550','2','4','1','53098','3','7','162','77','0','Duskweave Shoulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141551','2','4','1','51355','9','7','158','76','0','Duskweave Wristwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141553','3','4','1','53096','7','7','187','78','0','Black Duskweave Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141554','3','4','1','53097','20','7','187','78','0','Black Duskweave Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141555','3','4','1','51355','9','7','187','78','0','Black Duskweave Wristwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141587','4','4','0','39984','12','4','156','70','0','Battlemaster\'s Celerity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141588','4','4','0','47522','12','4','156','70','0','Battlemaster\'s Aggression','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141589','4','4','0','47095','12','4','156','70','0','Battlemaster\'s Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141590','4','4','0','47294','12','4','156','70','0','Battlemaster\'s Courage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141591','4','4','1','27088','16','7','156','70','0','Sergeant\'s Reinforced Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141592','4','4','1','27088','16','7','156','70','0','The Gladiator\'s Resolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141607','3','4','1','42615','16','7','150','74','0','Cloak of the Moon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141608','3','4','1','42615','16','7','154','75','0','Cloak of Frozen Spirits','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141609','4','4','1','55336','16','7','200','80','0','Wispcloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141610','4','4','1','55335','16','7','200','80','0','Deathchill Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141616','4','4','2','56423','6','8','213','80','0','Deadly Gladiator\'s Belt of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141617','4','4','2','59416','6','8','226','80','0','Furious Gladiator\'s Belt of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141618','4','4','2','61455','6','8','245','80','0','Relentless Gladiator\'s Belt of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141620','4','4','2','56424','8','8','213','80','0','Deadly Gladiator\'s Boots of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141621','4','4','2','59418','8','8','226','80','0','Furious Gladiator\'s Boots of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141622','4','4','2','61453','8','8','245','80','0','Relentless Gladiator\'s Boots of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141624','4','4','2','56422','9','8','213','80','0','Deadly Gladiator\'s Armwraps of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141625','4','4','2','59415','9','8','226','80','0','Furious Gladiator\'s Armwraps of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141626','4','4','2','61450','9','8','245','80','0','Relentless Gladiator\'s Armwraps of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141628','4','4','2','55643','6','8','200','80','0','Hateful Gladiator\'s Belt of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141629','4','4','2','56423','6','8','213','80','0','Deadly Gladiator\'s Belt of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141630','4','4','2','59416','6','8','226','80','0','Furious Gladiator\'s Belt of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141631','4','4','2','61455','6','8','245','80','0','Relentless Gladiator\'s Belt of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141633','4','4','2','55647','8','8','200','80','0','Hateful Gladiator\'s Boots of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141634','4','4','2','56424','8','8','213','80','0','Deadly Gladiator\'s Boots of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141635','4','4','2','59418','8','8','226','80','0','Furious Gladiator\'s Boots of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141636','4','4','2','61453','8','8','245','80','0','Relentless Gladiator\'s Boots of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141638','4','4','2','55632','9','8','200','80','0','Hateful Gladiator\'s Armwraps of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141639','4','4','2','56422','9','8','213','80','0','Deadly Gladiator\'s Armwraps of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141640','4','4','2','59415','9','8','226','80','0','Furious Gladiator\'s Armwraps of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141641','4','4','2','61450','9','8','245','80','0','Relentless Gladiator\'s Armwraps of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141643','3','4','2','55867','10','8','200','80','0','Savage Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141644','3','4','2','55431','1','8','200','80','0','Savage Gladiator\'s Leather Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141645','3','4','2','55876','7','8','200','80','0','Savage Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141646','3','4','2','55435','3','8','200','80','0','Savage Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141647','3','4','2','55859','5','8','200','80','0','Savage Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141648','4','4','2','55858','5','8','200','80','0','Hateful Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141649','4','4','2','55857','5','8','213','80','0','Deadly Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141650','4','4','2','58796','5','8','232','80','0','Furious Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141651','4','4','2','62214','5','8','251','80','0','Relentless Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141653','4','4','2','55873','7','8','200','80','0','Hateful Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141654','4','4','2','55869','7','8','213','80','0','Deadly Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141655','4','4','2','58799','7','8','232','80','0','Furious Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141656','4','4','2','62213','7','8','251','80','0','Relentless Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141658','3','4','2','55862','20','8','200','80','0','Savage Gladiator\'s Dragonhide Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141659','4','4','2','55861','20','8','200','80','0','Hateful Gladiator\'s Dragonhide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141660','4','4','2','56420','20','8','213','80','0','Deadly Gladiator\'s Dragonhide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141661','4','4','2','59442','20','8','232','80','0','Furious Gladiator\'s Dragonhide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141662','4','4','2','61969','20','8','251','80','0','Relentless Gladiator\'s Dragonhide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141664','3','4','2','55874','7','8','200','80','0','Savage Gladiator\'s Dragonhide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141665','4','4','2','55872','7','8','200','80','0','Hateful Gladiator\'s Dragonhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141666','4','4','2','56419','7','8','213','80','0','Deadly Gladiator\'s Dragonhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141667','4','4','2','59414','7','8','232','80','0','Furious Gladiator\'s Dragonhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141668','4','4','2','60860','7','8','251','80','0','Relentless Gladiator\'s Dragonhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141670','4','4','2','55740','1','8','200','80','0','Hateful Gladiator\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141671','4','4','2','55432','1','8','213','80','0','Deadly Gladiator\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141672','4','4','2','58798','1','8','232','80','0','Furious Gladiator\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141673','4','4','2','62212','1','8','251','80','0','Relentless Gladiator\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141675','3','4','2','55399','1','8','200','80','0','Savage Gladiator\'s Dragonhide Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141676','4','4','2','55411','1','8','200','80','0','Hateful Gladiator\'s Dragonhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141677','4','4','2','56417','1','8','213','80','0','Deadly Gladiator\'s Dragonhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141678','4','4','2','59411','1','8','232','80','0','Furious Gladiator\'s Dragonhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141679','4','4','2','60858','1','8','251','80','0','Relentless Gladiator\'s Dragonhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141681','4','4','2','55742','3','8','200','80','0','Hateful Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141682','4','4','2','55439','3','8','213','80','0','Deadly Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141683','4','4','2','58800','3','8','232','80','0','Furious Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141684','4','4','2','60929','3','8','251','80','0','Relentless Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141712','3','4','2','55404','3','8','200','80','0','Savage Gladiator\'s Dragonhide Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141713','4','4','2','55417','3','8','200','80','0','Hateful Gladiator\'s Dragonhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141714','4','4','2','56421','3','8','213','80','0','Deadly Gladiator\'s Dragonhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141715','4','4','2','59046','3','8','232','80','0','Furious Gladiator\'s Dragonhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141716','4','4','2','61447','3','8','251','80','0','Relentless Gladiator\'s Dragonhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141746','1','2','2','53138','15','2','85','75','0','Brunnhildar Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141750','1','2','6','53147','13','2','85','75','1','Brunnhildar Harpoon','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141752','1','2','0','53145','13','2','85','75','3','Brunnhildar Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141753','1','2','1','52564','13','1','85','75','1','Brunnhildar Great Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141754','1','4','6','53146','14','1','85','75','4','Brunnhildar Shield','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141755','3','2','14','50146','17','2','158','0','2','The Fire Extinguisher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141756','2','4','0','53242','11','8','158','0','0','Heart\'s Blood Signet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141757','2','4','2','49813','5','8','158','0','0','Vest of Unyielding Companionship','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141758','2','4','3','56344','1','5','158','0','0','Blood-Bond Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141759','2','4','4','52428','9','6','158','0','0','Shackles of Perpetual Friendship','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141760','2','4','1','53244','20','7','158','0','0','Emancipator\'s Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141761','2','4','2','53245','9','7','158','0','0','Wristguard of Healing Fingers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141762','2','4','3','53246','8','5','158','0','0','Freedom-Path Treads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141763','2','4','4','53243','7','6','158','0','0','Leggings of the Canny Chief','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141765','4','4','2','55866','10','8','200','80','0','Hateful Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141766','4','4','2','55865','10','8','213','80','0','Deadly Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141767','4','4','2','61799','10','8','232','80','0','Furious Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141768','4','4','2','62211','10','8','251','80','0','Relentless Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141770','3','4','2','55398','10','8','200','80','0','Savage Gladiator\'s Dragonhide Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141771','4','4','2','55397','10','8','200','80','0','Hateful Gladiator\'s Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141772','4','4','2','56418','10','8','213','80','0','Deadly Gladiator\'s Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141773','4','4','2','59410','10','8','232','80','0','Furious Gladiator\'s Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141774','4','4','2','60856','10','8','251','80','0','Relentless Gladiator\'s Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141815','3','2','6','60069','17','1','175','0','2','Icier Barbed Spear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141816','3','2','1','53200','17','1','175','0','1','De-Raged Waraxe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141821','3','2','10','53207','17','2','175','0','2','Chilly Slobberknocker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141822','3','2','4','50603','21','2','175','0','3','Screw-Sprung Fixer-Upper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141824','3','2','4','53201','13','1','175','0','3','Crimson Cranium Crusher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141825','3','2','15','53206','13','1','175','0','3','Wodin\'s Second-Best Shanker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141826','3','4','1','53233','10','7','158','0','0','Grips of the Giant-Rider','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141827','4','4','2','55748','6','8','200','80','0','Hateful Gladiator\'s Belt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141828','4','4','2','55749','8','8','200','80','0','Hateful Gladiator\'s Boots of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141829','3','4','2','57524','1','8','158','0','0','Horns of Electrified Terror','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141830','4','4','2','55747','9','8','200','80','0','Hateful Gladiator\'s Armwraps of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141831','4','4','2','55642','6','8','213','80','0','Deadly Gladiator\'s Belt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141832','4','4','2','59304','6','8','226','80','0','Furious Gladiator\'s Belt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141833','4','4','2','62215','6','8','245','80','0','Relentless Gladiator\'s Belt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141835','4','4','2','55648','8','8','213','80','0','Deadly Gladiator\'s Boots of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141836','4','4','2','59305','8','8','226','80','0','Furious Gladiator\'s Boots of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141837','4','4','2','62216','8','8','245','80','0','Relentless Gladiator\'s Boots of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141839','4','4','2','55633','9','8','213','80','0','Deadly Gladiator\'s Armwraps of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141840','4','4','2','59303','9','8','226','80','0','Furious Gladiator\'s Armwraps of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141841','4','4','2','62217','9','8','245','80','0','Relentless Gladiator\'s Armwraps of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141844','3','4','3','56366','9','5','158','0','0','Bracers of Vengeful Flight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141845','3','4','4','49725','3','6','158','0','0','Life-Light Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141846','3','4','4','53235','5','6','158','0','0','Clutch of the Storm Giant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141847','3','4','1','55541','10','7','200','80','0','Savage Gladiator\'s Mooncloth Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141848','3','4','1','55545','1','7','200','80','0','Savage Gladiator\'s Mooncloth Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141849','3','4','1','55539','7','7','200','80','0','Savage Gladiator\'s Mooncloth Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141850','3','4','1','55549','3','7','200','80','0','Savage Gladiator\'s Mooncloth Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141851','3','4','1','55897','20','7','200','80','0','Savage Gladiator\'s Mooncloth Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141852','4','4','1','55560','1','7','200','80','0','Hateful Gladiator\'s Mooncloth Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141853','4','4','1','55561','1','7','213','80','0','Deadly Gladiator\'s Mooncloth Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141854','4','4','1','58847','1','7','232','80','0','Furious Gladiator\'s Mooncloth Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141855','4','4','1','60157','1','7','251','80','0','Relentless Gladiator\'s Mooncloth Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141857','4','4','1','55895','20','7','200','80','0','Hateful Gladiator\'s Mooncloth Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141858','4','4','1','55890','20','7','213','80','0','Deadly Gladiator\'s Mooncloth Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141859','4','4','1','59202','20','7','232','80','0','Furious Gladiator\'s Mooncloth Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141860','4','4','1','61421','20','7','251','80','0','Relentless Gladiator\'s Mooncloth Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141862','4','4','1','55888','7','7','200','80','0','Hateful Gladiator\'s Mooncloth Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141863','4','4','1','55885','7','7','213','80','0','Deadly Gladiator\'s Mooncloth Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141864','4','4','1','58849','7','7','232','80','0','Furious Gladiator\'s Mooncloth Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141865','4','4','1','60893','7','7','251','80','0','Relentless Gladiator\'s Mooncloth Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141867','4','4','1','55570','3','7','200','80','0','Hateful Gladiator\'s Mooncloth Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141868','4','4','1','55569','3','7','213','80','0','Deadly Gladiator\'s Mooncloth Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141869','4','4','1','58850','3','7','232','80','0','Furious Gladiator\'s Mooncloth Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141870','4','4','1','60161','3','7','251','80','0','Relentless Gladiator\'s Mooncloth Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141872','4','4','1','55881','10','7','200','80','0','Hateful Gladiator\'s Mooncloth Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141873','4','4','1','55878','10','7','213','80','0','Deadly Gladiator\'s Mooncloth Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141874','4','4','1','58848','10','7','232','80','0','Furious Gladiator\'s Mooncloth Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141875','4','4','1','60151','10','7','251','80','0','Relentless Gladiator\'s Mooncloth Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141877','4','4','1','55644','6','7','200','80','0','Hateful Gladiator\'s Cord of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141878','4','4','1','55637','9','7','200','80','0','Hateful Gladiator\'s Cuffs of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141879','4','4','1','55654','8','7','200','80','0','Hateful Gladiator\'s Slippers of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141880','4','4','1','55673','6','7','213','80','0','Deadly Gladiator\'s Cord of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141881','4','4','1','59296','6','7','226','80','0','Furious Gladiator\'s Cord of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141882','4','4','1','61481','6','7','245','80','0','Relentless Gladiator\'s Cord of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141884','4','4','1','55661','8','7','213','80','0','Deadly Gladiator\'s Treads of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141885','4','4','1','59301','8','7','226','80','0','Furious Gladiator\'s Slippers of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141886','4','4','1','61483','8','7','245','80','0','Relentless Gladiator\'s Treads of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141890','3','4','1','53238','20','7','158','0','0','Robe of the Conquered Prophet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141891','3','4','2','53240','5','8','158','0','0','Intricate Zandalari Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141892','4','4','1','55670','9','7','213','80','0','Deadly Gladiator\'s Cuffs of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141893','4','4','1','59298','9','7','226','80','0','Furious Gladiator\'s Cuffs of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141894','4','4','1','61484','9','7','245','80','0','Relentless Gladiator\'s Cuffs of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141896','4','4','1','55641','6','7','200','80','0','Hateful Gladiator\'s Cord of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141897','4','4','1','55750','6','7','213','80','0','Deadly Gladiator\'s Cord of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141898','4','4','1','59294','6','7','226','80','0','Furious Gladiator\'s Cord of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141899','4','4','1','61478','6','7','245','80','0','Relentless Gladiator\'s Cord of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141901','4','4','1','55653','8','7','200','80','0','Hateful Gladiator\'s Slippers of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141902','4','4','1','55752','8','7','213','80','0','Deadly Gladiator\'s Treads of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141903','4','4','1','59299','8','7','226','80','0','Furious Gladiator\'s Slippers of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141904','4','4','1','61479','8','7','245','80','0','Relentless Gladiator\'s Treads of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141905','3','4','3','56378','5','5','158','0','0','Chestguard of Rampaging Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141907','4','4','1','56444','9','7','200','80','0','Hateful Gladiator\'s Cuffs of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141908','4','4','1','55751','9','7','213','80','0','Deadly Gladiator\'s Cuffs of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141909','4','4','1','59297','9','7','226','80','0','Furious Gladiator\'s Cuffs of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141910','4','4','1','61480','9','7','245','80','0','Relentless Gladiator\'s Cuffs of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141912','3','4','1','55545','1','7','200','80','0','Savage Gladiator\'s Satin Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141913','4','4','1','55560','1','7','200','80','0','Hateful Gladiator\'s Satin Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141914','4','4','1','55561','1','7','213','80','0','Deadly Gladiator\'s Satin Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141915','4','4','1','58847','1','7','232','80','0','Furious Gladiator\'s Satin Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141916','4','4','1','60157','1','7','251','80','0','Relentless Gladiator\'s Satin Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141918','3','4','1','55897','20','7','200','80','0','Savage Gladiator\'s Satin Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141919','4','4','1','55895','20','7','200','80','0','Hateful Gladiator\'s Satin Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141920','4','4','1','55890','20','7','213','80','0','Deadly Gladiator\'s Satin Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141921','4','4','1','59202','20','7','232','80','0','Furious Gladiator\'s Satin Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141922','4','4','1','61421','20','7','251','80','0','Relentless Gladiator\'s Satin Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141924','3','4','1','55539','7','7','200','80','0','Savage Gladiator\'s Satin Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141925','4','4','1','55888','7','7','200','80','0','Hateful Gladiator\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141926','4','4','1','55885','7','7','213','80','0','Deadly Gladiator\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141927','4','4','1','58849','7','7','232','80','0','Furious Gladiator\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141928','4','4','1','60893','7','7','251','80','0','Relentless Gladiator\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141930','3','4','1','55549','3','7','200','80','0','Savage Gladiator\'s Satin Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141931','4','4','1','55570','3','7','200','80','0','Hateful Gladiator\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141932','3','4','4','53241','5','6','158','0','0','Links of the Terrified Deity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141933','4','4','1','55569','3','7','213','80','0','Deadly Gladiator\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141934','4','4','1','58850','3','7','232','80','0','Furious Gladiator\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141935','4','4','1','60161','3','7','251','80','0','Relentless Gladiator\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141937','3','4','1','55541','10','7','200','80','0','Savage Gladiator\'s Satin Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141938','4','4','1','55881','10','7','200','80','0','Hateful Gladiator\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141939','4','4','1','55878','10','7','213','80','0','Deadly Gladiator\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141940','4','4','1','58848','10','7','232','80','0','Furious Gladiator\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141941','4','4','1','60151','10','7','251','80','0','Relentless Gladiator\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141943','3','4','1','56437','1','7','200','80','0','Savage Gladiator\'s Silk Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141944','4','4','1','55590','1','7','200','80','0','Hateful Gladiator\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141945','4','4','1','55735','1','7','213','80','0','Deadly Gladiator\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141946','4','4','1','59576','1','7','232','80','0','Furious Gladiator\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141947','4','4','1','60168','1','7','251','80','0','Relentless Gladiator\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141949','3','4','1','56442','20','7','200','80','0','Savage Gladiator\'s Silk Raiment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141950','4','4','1','55896','20','7','200','80','0','Hateful Gladiator\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141951','4','4','1','55894','20','7','213','80','0','Deadly Gladiator\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141953','4','4','1','59624','20','7','232','80','0','Furious Gladiator\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141954','4','4','1','61422','20','7','251','80','0','Relentless Gladiator\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141956','3','4','1','56439','7','7','200','80','0','Savage Gladiator\'s Silk Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141957','4','4','1','55889','7','7','200','80','0','Hateful Gladiator\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141958','4','4','1','55886','7','7','213','80','0','Deadly Gladiator\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141959','4','4','1','58755','7','7','232','80','0','Furious Gladiator\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141960','4','4','1','61423','7','7','251','80','0','Relentless Gladiator\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141962','3','4','1','55595','3','7','200','80','0','Savage Gladiator\'s Silk Amice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141963','4','4','1','55575','3','7','200','80','0','Hateful Gladiator\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141964','4','4','1','55734','3','7','213','80','0','Deadly Gladiator\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141965','4','4','1','58967','3','7','232','80','0','Furious Gladiator\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141966','4','4','1','60169','3','7','251','80','0','Relentless Gladiator\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141968','3','4','1','56438','10','7','200','80','0','Savage Gladiator\'s Silk Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141969','4','4','1','55882','10','7','200','80','0','Hateful Gladiator\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141970','4','4','1','55880','10','7','213','80','0','Deadly Gladiator\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141971','4','4','1','58753','10','7','232','80','0','Furious Gladiator\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141972','4','4','1','61419','10','7','251','80','0','Relentless Gladiator\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141974','2','4','4','54071','9','6','142','70','0','Cobalt Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141975','2','4','4','54073','10','6','142','70','0','Cobalt Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141984','3','4','1','53250','1','7','187','80','0','Hat of Wintry Doom','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141985','3','4','1','53252','8','7','187','80','0','Silky Iceshard Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141986','3','4','1','53253','6','7','187','80','0','Deep Frozen Cord','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141987','3','2','10','53255','17','2','175','0','2','Staff of the Sorrowful Chieftain','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141990','3','4','1','56429','1','7','200','80','0','Savage Gladiator\'s Felweave Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141991','4','4','1','56149','1','7','200','80','0','Hateful Gladiator\'s Felweave Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141992','4','4','1','56153','1','7','213','80','0','Deadly Gladiator\'s Felweave Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141993','4','4','1','63408','1','7','232','80','0','Furious Gladiator\'s Felweave Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141994','4','4','1','60183','1','7','251','80','0','Relentless Gladiator\'s Felweave Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141996','3','4','1','56434','20','7','200','80','0','Savage Gladiator\'s Felweave Raiment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141997','4','4','1','56163','20','7','213','80','0','Deadly Gladiator\'s Felweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141998','4','4','1','58785','20','7','232','80','0','Furious Gladiator\'s Felweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('141999','4','4','1','61420','20','7','251','80','0','Relentless Gladiator\'s Felweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142001','4','4','1','56156','20','7','200','80','0','Hateful Gladiator\'s Felweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142002','3','4','1','56432','7','7','200','80','0','Savage Gladiator\'s Felweave Trousers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142003','4','4','1','56426','7','7','200','80','0','Hateful Gladiator\'s Felweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142004','4','4','1','56164','7','7','213','80','0','Deadly Gladiator\'s Felweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142005','4','4','1','58788','7','7','232','80','0','Furious Gladiator\'s Felweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142006','4','4','1','63203','7','7','251','80','0','Relentless Gladiator\'s Felweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142008','3','4','1','56428','3','7','200','80','0','Savage Gladiator\'s Felweave Amice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142009','4','4','1','56159','3','7','200','80','0','Hateful Gladiator\'s Felweave Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142010','4','4','1','56158','3','7','213','80','0','Deadly Gladiator\'s Felweave Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142011','4','4','1','58789','3','7','232','80','0','Furious Gladiator\'s Felweave Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142012','4','4','1','61425','3','7','251','80','0','Relentless Gladiator\'s Felweave Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142014','3','4','1','56431','10','7','200','80','0','Savage Gladiator\'s Felweave Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142015','4','4','1','56154','10','7','200','80','0','Hateful Gladiator\'s Felweave Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142016','4','4','1','56160','10','7','213','80','0','Deadly Gladiator\'s Felweave Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142017','4','4','1','58786','10','7','232','80','0','Furious Gladiator\'s Felweave Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142018','4','4','1','61418','10','7','251','80','0','Relentless Gladiator\'s Felweave Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142020','4','4','0','39162','2','5','200','80','0','Hateful Gladiator\'s Pendant of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142021','4','4','0','39162','2','5','200','80','0','Hateful Gladiator\'s Pendant of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142022','4','4','0','39162','2','5','200','80','0','Hateful Gladiator\'s Pendant of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142023','4','4','0','39162','2','5','200','80','0','Hateful Gladiator\'s Pendant of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142024','4','4','0','39162','2','5','200','80','0','Hateful Gladiator\'s Pendant of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142025','4','4','0','39162','2','5','200','80','0','Hateful Gladiator\'s Pendant of Deliverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142026','4','4','0','39162','2','5','200','80','0','Hateful Gladiator\'s Pendant of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142027','4','4','0','39162','2','5','213','80','0','Deadly Gladiator\'s Pendant of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142028','4','4','0','39162','2','5','213','80','0','Deadly Gladiator\'s Pendant of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142029','4','4','0','39162','2','5','213','80','0','Deadly Gladiator\'s Pendant of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142030','4','4','0','39162','2','5','213','80','0','Deadly Gladiator\'s Pendant of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142031','4','4','0','39162','2','5','213','80','0','Deadly Gladiator\'s Pendant of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142032','4','4','0','39162','2','5','213','80','0','Deadly Gladiator\'s Pendant of Deliverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142033','4','4','0','39162','2','5','213','80','0','Deadly Gladiator\'s Pendant of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142034','4','4','0','39162','2','5','226','80','0','Furious Gladiator\'s Pendant of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142035','4','4','0','39162','2','5','226','80','0','Furious Gladiator\'s Pendant of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142036','4','4','0','39162','2','5','226','80','0','Furious Gladiator\'s Pendant of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142037','4','4','0','39162','2','5','226','80','0','Furious Gladiator\'s Pendant of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142038','4','4','0','39162','2','5','226','80','0','Furious Gladiator\'s Pendant of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142039','4','4','0','39162','2','5','226','80','0','Furious Gladiator\'s Pendant of Deliverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142040','4','4','0','39162','2','5','226','80','0','Furious Gladiator\'s Pendant of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142041','4','4','0','39162','2','5','245','80','0','Relentless Gladiator\'s Pendant of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142042','4','4','0','39162','2','5','245','80','0','Relentless Gladiator\'s Pendant of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142043','4','4','0','39162','2','5','245','80','0','Relentless Gladiator\'s Pendant of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142044','4','4','0','39162','2','5','245','80','0','Relentless Gladiator\'s Pendant of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142045','4','4','0','39162','2','5','245','80','0','Relentless Gladiator\'s Pendant of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142046','4','4','0','39162','2','5','245','80','0','Relentless Gladiator\'s Pendant of Deliverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142047','4','4','0','39162','2','5','245','80','0','Relentless Gladiator\'s Pendant of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142055','4','4','1','55663','16','5','200','80','0','Hateful Gladiator\'s Cloak of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142056','4','4','1','55663','16','5','200','80','0','Hateful Gladiator\'s Cloak of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142057','4','4','1','55663','16','5','200','80','0','Hateful Gladiator\'s Cloak of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142058','4','4','1','55663','16','5','200','80','0','Hateful Gladiator\'s Cloak of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142059','4','4','1','55663','16','5','200','80','0','Hateful Gladiator\'s Cloak of Deliverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142060','4','4','1','49738','16','5','200','80','0','Hateful Gladiator\'s Cloak of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142061','4','4','1','49738','16','5','200','80','0','Hateful Gladiator\'s Cloak of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142062','4','4','1','55663','16','5','213','80','0','Deadly Gladiator\'s Cloak of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142063','4','4','1','55663','16','5','213','80','0','Deadly Gladiator\'s Cloak of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142064','4','4','1','55663','16','5','213','80','0','Deadly Gladiator\'s Cloak of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142065','4','4','1','55663','16','5','213','80','0','Deadly Gladiator\'s Cloak of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142066','4','4','1','55663','16','5','213','80','0','Deadly Gladiator\'s Cloak of Deliverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142067','4','4','1','49738','16','5','213','80','0','Deadly Gladiator\'s Cloak of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142068','4','4','1','49738','16','5','213','80','0','Deadly Gladiator\'s Cloak of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142069','4','4','1','55663','16','5','226','80','0','Furious Gladiator\'s Cloak of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142070','4','4','1','55663','16','5','226','80','0','Furious Gladiator\'s Cloak of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142071','4','4','1','55663','16','7','226','80','0','Furious Gladiator\'s Cloak of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142072','4','4','1','55663','16','5','226','80','0','Furious Gladiator\'s Cloak of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142073','4','4','1','55663','16','5','226','80','0','Furious Gladiator\'s Cloak of Deliverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142074','4','4','1','49738','16','5','226','80','0','Furious Gladiator\'s Cloak of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142075','4','4','1','49738','16','5','226','80','0','Furious Gladiator\'s Cloak of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142076','4','4','1','61562','16','5','245','80','0','Relentless Gladiator\'s Cloak of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142077','4','4','1','61563','16','5','245','80','0','Relentless Gladiator\'s Cloak of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142078','4','4','1','61648','16','5','245','80','0','Relentless Gladiator\'s Cloak of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142079','4','4','1','61563','16','5','245','80','0','Relentless Gladiator\'s Cloak of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142080','4','4','1','61562','16','5','245','80','0','Relentless Gladiator\'s Cloak of Deliverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142081','4','4','1','61564','16','5','245','80','0','Relentless Gladiator\'s Cloak of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142082','4','4','1','42615','16','5','245','80','0','Relentless Gladiator\'s Cloak of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142084','1','4','2','39736','6','8','70','65','0','Snowhide Belt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142088','1','4','2','53265','8','8','70','65','0','Snowhide Hoof-Warmers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142092','1','4','2','3708','9','8','70','65','0','Snowhide Bracers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142093','3','4','1','51140','7','7','187','80','0','Frostmoon Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142094','1','4','2','27687','1','8','70','65','0','Snowhide Cap','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142095','3','4','1','53270','10','7','187','80','0','Light Blessed Mittens','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142096','3','4','1','53271','8','7','187','80','0','Aurora Slippers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142097','1','4','2','28822','10','8','70','65','0','Snowhide Mitts','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142098','1','4','2','53273','7','8','70','65','0','Snowhide Pants','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142099','1','4','2','36771','5','8','70','65','0','Snowhide Vest','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142100','4','4','1','55340','20','7','200','80','0','Moonshroud Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142101','4','4','1','55341','20','7','200','80','0','Ebonweave Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142102','4','4','1','55330','20','7','200','80','0','Spellweave Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142103','4','4','1','51587','10','7','200','80','0','Moonshroud Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142110','4','4','0','39129','11','5','200','80','0','Hateful Gladiator\'s Band of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142111','4','4','1','55334','10','7','200','80','0','Ebonweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142112','4','4','0','39129','11','5','200','80','0','Hateful Gladiator\'s Band of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142113','4','4','1','55331','10','7','200','80','0','Spellweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142114','4','4','0','39129','11','5','213','80','0','Deadly Gladiator\'s Band of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142115','4','4','0','39129','11','5','213','80','0','Deadly Gladiator\'s Band of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142116','4','4','0','39129','11','5','226','80','0','Furious Gladiator\'s Band of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142117','4','4','0','39129','11','5','226','80','0','Furious Gladiator\'s Band of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142118','4','4','0','39129','11','5','245','80','0','Relentless Gladiator\'s Band of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142119','4','4','0','39129','11','5','245','80','0','Relentless Gladiator\'s Band of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142122','4','4','0','48071','12','4','200','80','0','Medallion of the Horde','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142123','4','4','0','56635','12','4','200','80','0','Medallion of the Alliance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142124','4','4','0','37840','12','4','226','80','0','Medallion of the Alliance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142126','4','4','0','37841','12','4','226','80','0','Medallion of the Horde','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142128','4','4','0','47095','12','4','213','80','0','Battlemaster\'s Hostility','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142129','4','4','0','47095','12','4','213','80','0','Battlemaster\'s Accuracy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142130','4','4','0','47095','12','4','213','80','0','Battlemaster\'s Avidity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142131','4','4','0','47095','12','4','213','80','0','Battlemaster\'s Conviction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142132','4','4','0','47095','12','4','213','80','0','Battlemaster\'s Bravery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142133','4','4','0','47095','12','4','245','80','0','Battlemaster\'s Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142134','4','4','0','47095','12','4','245','80','0','Battlemaster\'s Precision','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142135','4','4','0','47095','12','4','245','80','0','Battlemaster\'s Vivacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142136','4','4','0','47095','12','4','245','80','0','Battlemaster\'s Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142137','4','4','0','47095','12','4','245','80','0','Battlemaster\'s Ruination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142206','3','2','0','56240','13','1','200','80','3','Savage Gladiator\'s Cleaver','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142207','4','2','0','56204','13','1','200','80','3','Hateful Gladiator\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142208','4','2','0','56208','13','1','213','80','3','Deadly Gladiator\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142209','4','2','0','56202','13','1','232','80','3','Furious Gladiator\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142210','4','2','0','60811','13','1','245','80','3','Relentless Gladiator\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142212','3','2','0','56240','22','1','200','80','3','Savage Gladiator\'s Chopper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142213','3','2','0','56240','22','1','200','80','3','Savage Gladiator\'s Hacker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142214','3','2','0','56240','13','1','200','80','1','Savage Gladiator\'s Waraxe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142215','3','2','15','56227','22','1','200','80','3','Savage Gladiator\'s Mutilator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142216','3','2','15','56227','13','1','200','80','3','Savage Gladiator\'s Shanker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142217','3','2','15','56227','22','1','200','80','3','Savage Gladiator\'s Shiv','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142218','3','2','13','55950','21','1','200','80','7','Savage Gladiator\'s Right Ripper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142219','3','2','13','55949','22','1','200','80','7','Savage Gladiator\'s Left Render','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142220','3','2','13','55949','22','1','200','80','7','Savage Gladiator\'s Left Ripper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142221','3','2','4','55953','22','1','200','80','3','Savage Gladiator\'s Bonecracker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142222','3','2','4','55953','13','1','200','80','3','Savage Gladiator\'s Pummeler','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142223','3','2','7','57299','22','1','200','80','3','Savage Gladiator\'s Quickblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142224','3','2','7','57299','13','1','200','80','3','Savage Gladiator\'s Slicer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142226','4','2','0','56204','22','1','200','80','3','Hateful Gladiator\'s Hacker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142227','4','2','0','56208','22','1','213','80','3','Deadly Gladiator\'s Hacker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142228','4','2','0','56202','22','1','232','80','3','Furious Gladiator\'s Hacker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142229','4','2','0','60825','22','1','245','80','3','Relentless Gladiator\'s Hacker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142231','4','2','0','56204','22','1','200','80','3','Hateful Gladiator\'s Chopper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142232','4','2','0','56208','22','1','213','80','3','Deadly Gladiator\'s Chopper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142233','4','2','0','56202','22','1','232','80','3','Furious Gladiator\'s Chopper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142234','4','2','0','60809','22','1','245','80','3','Relentless Gladiator\'s Chopper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142236','4','2','0','56204','13','1','200','80','1','Hateful Gladiator\'s Waraxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142237','4','2','0','56208','13','1','213','80','1','Deadly Gladiator\'s Waraxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142238','4','2','0','58932','13','1','232','80','1','Furious Gladiator\'s Waraxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142241','4','2','15','56226','13','1','200','80','3','Hateful Gladiator\'s Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142242','4','2','15','56411','13','1','213','80','3','Deadly Gladiator\'s Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142243','4','2','15','56227','13','1','232','80','3','Furious Gladiator\'s Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142244','4','2','15','60817','13','1','245','80','3','Relentless Gladiator\'s Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142247','4','2','15','56226','22','1','200','80','3','Hateful Gladiator\'s Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142248','4','2','15','56411','22','1','213','80','3','Deadly Gladiator\'s Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142249','4','2','15','56227','22','1','232','80','3','Furious Gladiator\'s Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142250','4','2','15','60846','22','1','245','80','3','Relentless Gladiator\'s Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142254','4','2','15','56226','22','1','200','80','3','Hateful Gladiator\'s Mutilator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142255','4','2','15','56411','22','1','213','80','3','Deadly Gladiator\'s Mutilator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142256','4','2','15','56227','22','1','232','80','3','Furious Gladiator\'s Mutilator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142257','4','2','15','60817','22','1','245','80','3','Relentless Gladiator\'s Mutilator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142259','4','2','13','56257','21','1','200','80','7','Hateful Gladiator\'s Right Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142260','4','2','13','55948','21','1','213','80','7','Deadly Gladiator\'s Right Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142261','4','2','13','55945','21','1','232','80','7','Furious Gladiator\'s Right Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142262','4','2','13','60821','21','1','245','80','7','Relentless Gladiator\'s Right Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142264','4','2','13','56256','22','1','200','80','7','Hateful Gladiator\'s Left Render','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142265','4','2','13','55946','22','1','213','80','7','Deadly Gladiator\'s Left Render','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142266','4','2','13','55944','22','1','232','80','7','Furious Gladiator\'s Left Render','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142267','4','2','13','60831','22','1','245','80','7','Relentless Gladiator\'s Left Render','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142269','4','2','13','56256','22','1','200','80','7','Hateful Gladiator\'s Left Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142270','4','2','13','55946','22','1','213','80','7','Deadly Gladiator\'s Left Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142271','4','2','13','55944','22','1','232','80','7','Furious Gladiator\'s Left Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142272','4','2','13','60830','22','1','245','80','7','Relentless Gladiator\'s Left Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142274','4','2','4','55955','13','1','200','80','3','Hateful Gladiator\'s Pummeler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142275','4','2','4','55954','13','1','213','80','3','Deadly Gladiator\'s Pummeler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142276','4','2','4','58957','13','1','232','80','3','Furious Gladiator\'s Pummeler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142277','4','2','4','60839','13','1','245','80','3','Relentless Gladiator\'s Pummeler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142279','4','2','4','55955','22','1','200','80','3','Hateful Gladiator\'s Bonecracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142280','4','2','4','55954','22','1','213','80','3','Deadly Gladiator\'s Bonecracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142281','4','2','4','58957','22','1','232','80','3','Furious Gladiator\'s Bonecracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142282','4','2','4','60807','22','1','245','80','3','Relentless Gladiator\'s Bonecracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142284','4','2','7','57298','13','1','200','80','3','Hateful Gladiator\'s Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142285','4','2','7','57297','13','1','213','80','3','Deadly Gladiator\'s Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142286','4','2','7','58965','13','1','232','80','3','Furious Gladiator\'s Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142287','4','2','7','60840','13','1','245','80','3','Relentless Gladiator\'s Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142289','4','2','7','57298','22','1','200','80','3','Hateful Gladiator\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142290','4','2','7','57297','22','1','213','80','3','Deadly Gladiator\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142291','4','2','7','58965','22','1','232','80','3','Furious Gladiator\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142292','4','2','7','60840','22','1','245','80','3','Relentless Gladiator\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142294','3','2','1','55927','17','1','200','80','1','Savage Gladiator\'s Decapitator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142295','3','2','5','56957','17','1','200','80','1','Savage Gladiator\'s Bonegrinder','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142296','3','2','6','55965','17','1','200','80','2','Savage Gladiator\'s Pike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142297','3','2','8','57464','17','1','200','80','1','Savage Gladiator\'s Greatsword','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142316','4','2','1','55925','17','1','200','80','1','Hateful Gladiator\'s Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142317','4','2','1','55926','17','1','213','80','1','Deadly Gladiator\'s Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142318','4','2','1','55927','17','1','232','80','1','Furious Gladiator\'s Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142319','4','2','1','60813','17','1','245','80','1','Relentless Gladiator\'s Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142321','4','2','5','56956','17','1','200','80','1','Hateful Gladiator\'s Bonegrinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142322','4','2','5','56955','17','1','213','80','1','Deadly Gladiator\'s Bonegrinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142323','4','2','5','58961','17','1','232','80','1','Furious Gladiator\'s Bonegrinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142324','4','2','5','60808','17','1','245','80','1','Relentless Gladiator\'s Bonegrinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142326','4','2','6','55966','17','1','200','80','2','Hateful Gladiator\'s Pike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142327','4','2','6','56412','17','1','213','80','2','Deadly Gladiator\'s Pike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142328','4','2','6','55965','17','1','232','80','2','Furious Gladiator\'s Pike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142329','4','2','6','60837','17','1','245','80','2','Relentless Gladiator\'s Pike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142331','4','2','8','57463','17','1','200','80','1','Hateful Gladiator\'s Greatsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142332','4','2','8','57462','17','1','213','80','1','Deadly Gladiator\'s Greatsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142333','4','2','8','57464','17','1','232','80','1','Furious Gladiator\'s Greatsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142334','4','2','8','60823','17','1','245','80','1','Relentless Gladiator\'s Greatsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142336','2','4','0','28682','11','1','138','70','0','Bloodstone Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142337','2','4','0','29697','11','1','138','70','0','Sun Rock Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142338','3','4','0','53407','2','4','167','75','0','Jade Dagger Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142339','3','4','0','31604','2','4','175','75','0','Blood Sun Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142340','3','4','0','35367','11','1','174','78','0','Dream Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142341','3','4','0','53455','12','4','200','75','0','Figurine - Ruby Hare','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142343','3','2','15','56247','21','1','200','80','3','Savage Gladiator\'s Spellblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142344','3','2','4','56241','21','1','200','80','3','Savage Gladiator\'s Gavel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142345','4','2','15','56220','21','1','200','80','3','Hateful Gladiator\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142346','4','2','15','56247','21','1','213','80','3','Deadly Gladiator\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142347','4','2','15','56258','21','1','232','80','3','Furious Gladiator\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142348','4','2','15','60848','21','1','245','80','3','Relentless Gladiator\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142351','4','2','4','56255','21','1','200','80','3','Hateful Gladiator\'s Gavel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142352','4','2','4','56410','21','1','213','80','3','Deadly Gladiator\'s Gavel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142353','4','2','4','58959','21','1','232','80','3','Furious Gladiator\'s Gavel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142354','4','2','4','60818','21','1','245','80','3','Relentless Gladiator\'s Gavel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142356','3','2','10','56238','17','2','200','80','2','Savage Gladiator\'s Battle Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142359','4','2','10','56252','17','2','200','80','2','Hateful Gladiator\'s Battle Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142360','1','4','0','53409','4','4','1','0','0','Ebon Filigreed Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142361','1','4','0','53412','4','4','1','0','0','Cerulean Filigreed Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142362','4','2','10','56409','17','2','213','80','2','Deadly Gladiator\'s Battle Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142363','1','4','0','53411','4','4','1','0','0','Golden Filigreed Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142364','4','2','10','56238','17','2','232','80','2','Furious Gladiator\'s Battle Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142365','1','4','0','53972','4','4','1','0','0','Amber Filigreed Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142366','4','2','10','60806','17','2','245','80','2','Relentless Gladiator\'s Battle Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142368','1','4','0','53414','4','4','1','0','0','Scarlet Filigreed Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142369','1','4','0','53415','4','4','1','0','0','Ebon Filigreed Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142370','1','4','0','53417','4','4','1','0','0','Cerulean Filigreed Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142371','1','4','0','53418','4','4','1','0','0','Amber Filigreed Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142372','1','4','0','53419','4','4','1','0','0','Scarlet Filigreed Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142373','1','4','0','53420','4','4','1','0','0','Golden Filigreed Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142374','1','4','0','53421','4','4','1','0','0','Blue Martial Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142375','1','4','0','53423','4','4','1','0','0','Green Martial Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142376','1','4','0','53424','4','4','1','0','0','Yellow Martial Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142377','1','4','0','53425','4','4','1','0','0','Purple Martial Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142378','1','4','0','53426','4','4','1','0','0','Red Martial Shirt','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142382','3','2','10','56238','17','2','200','80','2','Savage Gladiator\'s Energy Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142383','4','2','10','56252','17','2','200','80','2','Hateful Gladiator\'s Energy Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142384','4','2','10','56409','17','2','213','80','2','Deadly Gladiator\'s Energy Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142385','4','2','10','56238','17','2','232','80','2','Furious Gladiator\'s Energy Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142386','4','2','10','60816','17','2','245','80','2','Relentless Gladiator\'s Energy Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142388','3','2','10','56248','17','2','200','80','2','Savage Gladiator\'s Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142389','4','2','10','56259','17','2','200','80','2','Hateful Gladiator\'s Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142390','4','2','10','56413','17','2','213','80','2','Deadly Gladiator\'s Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142391','4','2','10','56248','17','2','232','80','2','Furious Gladiator\'s Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142392','4','2','10','60849','17','2','245','80','2','Relentless Gladiator\'s Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142395','3','4','0','53454','12','4','200','75','0','Figurine - Twilight Serpent','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142413','3','4','0','53453','12','4','200','75','0','Figurine - Sapphire Owl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142418','3','4','0','53456','12','4','200','75','0','Figurine - Emerald Boar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142435','4','2','15','53471','13','1','200','80','3','Titansteel Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142443','3','2','4','53476','21','2','175','77','3','Cudgel of Saronite Justice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142444','3','2','16','38679','25','1','200','80','0','Savage Gladiator\'s War Edge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142445','3','2','2','55930','15','2','200','80','0','Savage Gladiator\'s Longbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142446','3','2','18','55933','26','2','200','80','0','Savage Gladiator\'s Heavy Crossbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142447','3','2','3','56175','26','1','200','80','0','Savage Gladiator\'s Rifle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142448','3','2','19','56614','26','2','200','80','0','Savage Gladiator\'s Touch of Defeat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142449','4','2','16','38679','25','1','200','80','0','Hateful Gladiator\'s War Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142450','4','2','16','38679','25','1','213','80','0','Deadly Gladiator\'s War Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142451','4','2','16','38679','25','1','232','80','0','Furious Gladiator\'s War Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142483','4','2','16','60853','25','1','245','80','0','Relentless Gladiator\'s War Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142484','4','2','3','56176','26','1','200','80','0','Hateful Gladiator\'s Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142485','4','2','3','56177','26','1','213','80','0','Deadly Gladiator\'s Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142486','4','2','3','56175','26','1','232','80','0','Furious Gladiator\'s Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142487','4','2','3','60844','26','1','245','80','0','Relentless Gladiator\'s Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142489','4','2','2','55929','15','2','200','80','0','Hateful Gladiator\'s Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142490','4','2','2','55928','15','2','213','80','0','Deadly Gladiator\'s Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142491','4','2','2','58933','15','2','232','80','0','Furious Gladiator\'s Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142492','4','2','2','60833','15','2','245','80','0','Relentless Gladiator\'s Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142494','4','2','18','55932','26','2','200','80','0','Hateful Gladiator\'s Heavy Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142495','4','2','18','55931','26','2','213','80','0','Deadly Gladiator\'s Heavy Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142496','4','2','18','58935','26','2','232','80','0','Furious Gladiator\'s Heavy Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142498','4','2','18','60828','26','2','245','80','0','Relentless Gladiator\'s Heavy Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142501','4','2','19','56616','26','2','200','80','0','Hateful Gladiator\'s Touch of Defeat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142502','4','2','19','56617','26','2','213','80','0','Deadly Gladiator\'s Touch of Defeat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142503','4','2','19','56613','26','2','232','80','0','Furious Gladiator\'s Touch of Defeat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142504','4','2','19','60851','26','2','245','80','0','Relentless Gladiator\'s Touch of Defeat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142508','4','4','6','53532','14','1','200','80','4','Titansteel Shield Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142511','3','2','19','56614','26','2','200','80','0','Savage Gladiator\'s Baton of Light','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142512','4','2','19','56616','26','2','200','80','0','Hateful Gladiator\'s Baton of Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142513','4','2','19','56617','26','2','213','80','0','Deadly Gladiator\'s Baton of Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142514','4','2','19','56613','26','2','232','80','0','Furious Gladiator\'s Baton of Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142515','4','2','19','60805','26','2','245','80','0','Relentless Gladiator\'s Baton of Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142517','3','2','19','56614','26','2','200','80','0','Savage Gladiator\'s Piercing Touch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142518','4','2','19','56616','26','2','200','80','0','Hateful Gladiator\'s Piercing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142519','4','2','19','56617','26','2','213','80','0','Deadly Gladiator\'s Piercing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142520','4','2','19','56613','26','2','232','80','0','Furious Gladiator\'s Piercing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142521','4','2','19','60836','26','2','245','80','0','Relentless Gladiator\'s Piercing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142523','3','4','0','39505','23','3','200','80','7','Savage Gladiator\'s Endgame','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142524','4','4','0','39505','23','3','200','80','7','Hateful Gladiator\'s Endgame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142525','4','4','0','39505','23','3','213','80','7','Deadly Gladiator\'s Endgame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142526','4','4','0','39505','23','3','232','80','7','Furious Gladiator\'s Endgame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142527','4','4','0','39505','23','3','251','80','7','Relentless Gladiator\'s Endgame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142529','3','4','0','39505','23','3','200','80','7','Savage Gladiator\'s Reprieve','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142530','4','4','0','39505','23','3','200','80','7','Hateful Gladiator\'s Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142531','4','4','0','39505','23','3','213','80','7','Deadly Gladiator\'s Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142532','4','4','0','39505','23','3','232','80','7','Furious Gladiator\'s Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142533','4','4','0','39505','23','3','251','80','7','Relentless Gladiator\'s Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142535','3','4','0','39505','23','3','200','80','7','Savage Gladiator\'s Grimoire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142536','4','4','0','39505','23','3','200','80','7','Hateful Gladiator\'s Grimoire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142537','4','4','0','39505','23','3','213','80','7','Deadly Gladiator\'s Grimoire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142538','4','4','0','39505','23','3','232','80','7','Furious Gladiator\'s Grimoire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142539','4','4','0','39505','23','3','251','80','7','Relentless Gladiator\'s Grimoire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142549','4','4','4','43886','1','7','200','72','0','Armored Titanium Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142550','4','4','2','45779','1','7','200','72','0','Weakness Spectralizers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142551','4','4','3','53564','1','7','200','72','0','Truesight Ice Blinders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142552','4','4','4','43886','1','7','200','72','0','Charged Titanium Specs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142553','4','4','1','44949','1','7','200','72','0','Visage Liquification Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142554','4','4','2','45780','1','7','200','72','0','Greensight Gogs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142555','4','4','3','53564','1','7','200','72','0','Electroflux Sight Enhancers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142556','3','4','6','56885','14','1','200','80','4','Savage Gladiator\'s Shield Wall','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142557','3','4','6','56414','14','1','200','80','4','Savage Gladiator\'s Barrier','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142558','4','4','6','56886','14','1','200','80','4','Hateful Gladiator\'s Shield Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142559','4','4','6','56887','14','1','213','80','4','Deadly Gladiator\'s Shield Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142560','4','4','6','59214','14','1','232','80','4','Furious Gladiator\'s Shield Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142561','4','4','6','56501','14','1','251','80','4','Relentless Gladiator\'s Shield Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142563','4','4','6','56415','14','1','200','80','4','Hateful Gladiator\'s Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142564','4','4','6','56416','14','1','213','80','4','Deadly Gladiator\'s Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142565','4','4','6','56415','14','1','232','80','4','Furious Gladiator\'s Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142566','4','4','6','60854','14','1','251','80','4','Relentless Gladiator\'s Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142568','3','4','6','56414','14','1','200','80','4','Savage Gladiator\'s Redoubt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142569','4','4','6','56415','14','1','200','80','4','Hateful Gladiator\'s Redoubt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142570','4','4','6','56416','14','1','213','80','4','Deadly Gladiator\'s Redoubt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142571','4','4','6','56414','14','1','232','80','4','Furious Gladiator\'s Redoubt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142572','4','4','6','51721','14','1','251','80','4','Relentless Gladiator\'s Redoubt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142574','3','4','8','34953','28','2','200','80','0','Savage Gladiator\'s Idol of Resolve','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142575','3','4','8','34953','28','2','200','80','0','Savage Gladiator\'s Idol of Steadfastness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142576','3','4','8','9659','28','2','200','80','0','Savage Gladiator\'s Idol of Tenacity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142577','4','4','8','9659','28','2','200','80','0','Hateful Gladiator\'s Idol of Tenacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142578','4','4','8','9659','28','2','213','80','0','Deadly Gladiator\'s Idol of Tenacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142579','4','4','8','9659','28','2','232','80','0','Furious Gladiator\'s Idol of Tenacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142580','4','4','8','9659','28','2','251','80','0','Relentless Gladiator\'s Idol of Tenacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142582','4','4','8','34953','28','2','200','80','0','Hateful Gladiator\'s Idol of Steadfastness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142583','4','4','8','34953','28','2','213','80','0','Deadly Gladiator\'s Idol of Steadfastness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142584','4','4','8','34953','28','2','232','80','0','Furious Gladiator\'s Idol of Steadfastness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142585','4','4','8','34953','28','2','251','80','0','Relentless Gladiator\'s Idol of Steadfastness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142587','4','4','8','34953','28','2','200','80','0','Hateful Gladiator\'s Idol of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142588','4','4','8','34953','28','2','213','80','0','Deadly Gladiator\'s Idol of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142589','4','4','8','34953','28','2','232','80','0','Furious Gladiator\'s Idol of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142591','4','4','8','34953','28','2','251','80','0','Relentless Gladiator\'s Idol of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142593','3','4','9','25246','28','2','200','80','0','Savage Gladiator\'s Totem of Indomitability','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142594','3','4','9','25246','28','2','200','80','0','Savage Gladiator\'s Totem of Survival','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142595','3','4','9','46045','28','2','200','80','0','Savage Gladiator\'s Totem of the Third Wind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142596','4','4','9','46045','28','2','200','80','0','Hateful Gladiator\'s Totem of the Third Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142597','4','4','9','46045','28','2','213','80','0','Deadly Gladiator\'s Totem of the Third Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142598','4','4','9','46045','28','2','232','80','0','Furious Gladiator\'s Totem of the Third Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142599','4','4','9','46045','28','2','251','80','0','Relentless Gladiator\'s Totem of the Third Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142601','4','4','9','25246','28','2','200','80','0','Hateful Gladiator\'s Totem of Survival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142602','4','4','9','25246','28','2','213','80','0','Deadly Gladiator\'s Totem of Survival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142603','4','4','9','25246','28','2','232','80','0','Furious Gladiator\'s Totem of Survival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142604','4','4','9','25246','28','2','251','80','0','Relentless Gladiator\'s Totem of Survival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142606','4','4','9','25246','28','2','200','80','0','Hateful Gladiator\'s Totem of Indomitability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142607','4','4','9','25246','28','2','213','80','0','Deadly Gladiator\'s Totem of Indomitability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142608','4','4','9','25246','28','2','232','80','0','Furious Gladiator\'s Totem of Indomitability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142609','4','4','9','25246','28','2','251','80','0','Relentless Gladiator\'s Totem of Indomitability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142611','3','4','7','34960','28','2','200','80','0','Savage Gladiator\'s Libram of Fortitude','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142612','3','4','7','1103','28','2','200','80','0','Savage Gladiator\'s Libram of Justice','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142613','4','4','7','1103','28','2','200','80','0','Hateful Gladiator\'s Libram of Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142614','4','4','7','1103','28','2','213','80','0','Deadly Gladiator\'s Libram of Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142615','4','4','7','1103','28','2','232','80','0','Furious Gladiator\'s Libram of Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142616','4','4','7','1103','28','2','251','80','0','Relentless Gladiator\'s Libram of Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142618','3','4','10','51913','28','2','200','80','0','Savage Gladiator\'s Sigil of Strife','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142619','4','4','10','51913','28','2','200','80','0','Hateful Gladiator\'s Sigil of Strife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142620','4','4','10','51913','28','2','213','80','0','Deadly Gladiator\'s Sigil of Strife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142621','4','4','10','51913','28','2','232','80','0','Furious Gladiator\'s Sigil of Strife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142622','4','4','10','51913','28','2','251','80','0','Relentless Gladiator\'s Sigil of Strife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142625','4','4','4','39539','5','6','136','70','0','Merciless Gladiator\'s Plate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142626','4','4','4','39540','10','6','136','70','0','Merciless Gladiator\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142627','4','4','4','44561','1','6','136','70','0','Merciless Gladiator\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142628','4','4','4','45932','7','6','136','70','0','Merciless Gladiator\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142629','4','4','4','39543','3','6','136','70','0','Merciless Gladiator\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142630','4','4','4','41133','5','6','123','70','0','Gladiator\'s Scaled Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142631','4','4','4','41134','10','6','123','70','0','Gladiator\'s Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142632','4','4','4','41135','1','6','123','70','0','Gladiator\'s Scaled Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142633','4','4','4','41136','7','6','123','70','0','Gladiator\'s Scaled Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142634','4','4','4','41137','3','6','123','70','0','Gladiator\'s Scaled Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142635','4','4','4','41133','5','6','123','70','0','Gladiator\'s Ornamented Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142636','4','4','4','41134','10','6','123','70','0','Gladiator\'s Ornamented Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142637','4','4','4','41135','1','6','123','70','0','Gladiator\'s Ornamented Headcover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142638','4','4','4','41136','7','6','123','70','0','Gladiator\'s Ornamented Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142639','4','4','4','41137','3','6','123','70','0','Gladiator\'s Ornamented Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142642','4','4','0','39126','11','1','200','80','0','Titanium Impact Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142643','4','4','0','39128','11','1','200','80','0','Titanium Earthguard Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142644','4','4','0','39124','11','1','200','80','0','Titanium Spellshock Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142645','4','4','0','32008','2','1','200','80','0','Titanium Impact Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142646','4','4','0','53566','2','1','200','80','0','Titanium Earthguard Chain','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142647','4','4','0','39214','2','1','200','80','0','Titanium Spellshock Necklace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142654','4','4','4','39539','5','6','200','80','0','Hateful Gladiator\'s Dreadplate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142655','4','4','4','39540','10','6','200','80','0','Hateful Gladiator\'s Dreadplate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142656','4','4','4','44561','1','6','200','80','0','Hateful Gladiator\'s Dreadplate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142657','4','4','4','45932','7','6','200','80','0','Hateful Gladiator\'s Dreadplate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142658','4','4','4','39543','3','6','200','80','0','Hateful Gladiator\'s Dreadplate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142659','4','4','3','41144','5','5','136','70','0','Merciless Gladiator\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142660','4','4','3','41145','10','5','136','70','0','Merciless Gladiator\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142661','4','4','3','44009','1','5','136','70','0','Merciless Gladiator\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142662','4','4','3','41148','7','5','136','70','0','Merciless Gladiator\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142663','4','4','3','41149','3','5','136','70','0','Merciless Gladiator\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142664','4','4','3','41144','5','5','146','70','0','Vengeful Gladiator\'s Ringmail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142665','4','4','3','41145','10','5','146','70','0','Vengeful Gladiator\'s Ringmail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142666','4','4','3','41147','1','5','146','70','0','Vengeful Gladiator\'s Ringmail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142667','4','4','3','41148','7','5','146','70','0','Vengeful Gladiator\'s Ringmail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142668','4','4','3','41149','3','5','146','70','0','Vengeful Gladiator\'s Ringmail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142669','4','4','3','41144','5','5','123','70','0','Gladiator\'s Linked Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142670','4','4','3','41145','10','5','123','70','0','Gladiator\'s Linked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142671','4','4','3','44009','1','5','123','70','0','Gladiator\'s Linked Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142672','4','4','3','41148','7','5','123','70','0','Gladiator\'s Linked Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142673','4','4','3','41149','3','5','123','70','0','Gladiator\'s Linked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142674','4','4','3','40623','5','5','123','70','0','Gladiator\'s Chain Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142675','4','4','3','40624','10','5','123','70','0','Gladiator\'s Chain Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142676','4','4','3','42882','1','5','123','70','0','Gladiator\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142677','4','4','3','40626','7','5','123','70','0','Gladiator\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142678','4','4','3','40628','3','5','123','70','0','Gladiator\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142680','4','4','2','41443','10','8','123','70','0','Gladiator\'s Kodohide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142681','4','4','2','47172','1','8','123','70','0','Gladiator\'s Kodohide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142682','4','4','2','41445','7','8','123','70','0','Gladiator\'s Kodohide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142683','4','4','2','41758','3','8','123','70','0','Gladiator\'s Kodohide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142684','4','4','2','41446','5','8','123','70','0','Gladiator\'s Kodohide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142685','4','4','2','41443','10','8','123','70','0','Gladiator\'s Wyrmhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142686','4','4','2','47172','1','8','123','70','0','Gladiator\'s Wyrmhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142687','4','4','2','41445','7','8','123','70','0','Gladiator\'s Wyrmhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142688','4','4','2','41758','3','8','123','70','0','Gladiator\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142689','4','4','2','41446','5','8','123','70','0','Gladiator\'s Wyrmhide Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142690','4','4','2','41443','10','8','136','70','0','Merciless Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142691','4','4','2','47172','1','8','136','70','0','Merciless Gladiator\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142692','4','4','2','41445','7','8','136','70','0','Merciless Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142693','4','4','2','41758','3','8','136','70','0','Merciless Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142694','4','4','2','41446','5','8','136','70','0','Merciless Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142695','4','4','2','41138','10','8','136','70','0','Merciless Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142696','4','4','2','44876','1','8','136','70','0','Merciless Gladiator\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142697','4','4','2','41140','7','8','136','70','0','Merciless Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142698','4','4','2','41142','3','8','136','70','0','Merciless Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142699','4','4','2','41143','5','8','136','70','0','Merciless Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142703','4','4','1','41154','10','7','123','70','0','Gladiator\'s Mooncloth Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142704','4','4','1','41794','1','7','123','70','0','Gladiator\'s Mooncloth Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142705','4','4','1','41155','7','7','123','70','0','Gladiator\'s Mooncloth Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142706','4','4','1','42171','3','7','123','70','0','Gladiator\'s Mooncloth Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142707','4','4','1','41157','20','7','123','70','0','Gladiator\'s Mooncloth Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142708','4','4','1','41154','10','7','123','70','0','Gladiator\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142709','4','4','1','41794','1','7','123','70','0','Gladiator\'s Satin Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142710','4','4','1','41155','7','7','123','70','0','Gladiator\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142711','4','4','1','42171','3','7','123','70','0','Gladiator\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142712','4','4','1','41157','20','7','123','70','0','Gladiator\'s Satin Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142713','4','4','1','40622','3','7','123','70','0','Gladiator\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142714','4','4','1','41234','1','7','123','70','0','Gladiator\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142715','4','4','1','40059','10','7','123','70','0','Gladiator\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142716','4','4','1','40056','20','7','123','70','0','Gladiator\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142717','4','4','1','39952','7','7','123','70','0','Gladiator\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142718','4','4','1','41706','3','7','123','70','0','Gladiator\'s Felweave Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142719','4','4','1','45149','1','7','123','70','0','Gladiator\'s Felweave Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142720','4','4','1','45236','10','7','123','70','0','Gladiator\'s Felweave Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142721','4','4','1','44788','20','7','123','70','0','Gladiator\'s Felweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142722','4','4','1','41713','7','7','123','70','0','Gladiator\'s Felweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142723','3','4','4','54817','9','6','187','78','0','Ornate Saronite Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142724','3','4','4','53007','10','6','187','78','0','Ornate Saronite Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142725','3','4','4','52233','5','6','187','78','0','Ornate Saronite Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142726','3','4','4','53577','7','6','187','78','0','Ornate Saronite Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142727','3','4','4','51577','3','6','187','78','0','Ornate Saronite Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142728','3','4','4','50615','1','6','187','78','0','Ornate Saronite Skullshield','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142729','3','4','4','53578','6','6','187','78','0','Ornate Saronite Waistguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142730','3','4','4','52568','8','6','187','78','0','Ornate Saronite Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142731','3','4','2','56715','7','7','187','78','0','Leggings of Visceral Strikes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142758','3','4','1','53633','10','7','155','0','0','Time-Twisted Wraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142760','3','4','1','53625','8','7','155','0','0','Sandals of Mystical Evolution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142761','3','4','2','53632','10','8','155','0','0','Time-Stop Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142762','3','4','2','53626','8','8','155','0','0','Treads of Torn Future','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142763','3','4','3','56342','10','5','155','0','0','Bindings of Sabotage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142765','3','4','4','53639','10','5','155','0','0','Gauntlets of the Disturbed Giant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142766','3','4','3','53627','8','5','155','0','0','Spiked Treads of Mutation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142767','3','4','4','49734','8','6','155','0','0','Invigorating Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142768','3','4','4','53629','8','6','155','0','0','Boots of the Unbowed Protector','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142785','2','4','1','56093','6','7','174','0','0','Mammoth Sinew Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142786','2','2','7','56004','13','1','174','0','3','Daschal\'s Serrated Blade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142787','2','4','1','56034','9','7','174','0','0','Ironwool Bindings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142788','2','4','1','56007','6','7','174','0','0','Frosthowl Cinch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142789','2','4','1','55901','8','7','174','0','0','Boots of the Howling Winds','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142790','2','4','1','55476','10','7','174','0','0','K3 Surgeon\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142791','2','4','0','56103','11','8','174','0','0','Ring of Order','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142792','2','4','1','56141','20','7','174','0','0','Vestments of Dun Niffelem','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142793','2','4','0','31603','2','4','174','0','0','Locket of Snowcrest','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142794','2','2','10','50147','17','2','174','0','2','Hardened Vine of the Mauler','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142795','2','4','1','56055','7','7','174','0','0','Leggings of Renewed Hope','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142796','2','4','0','56045','23','4','174','0','7','Lantern of Enchanted Flame','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142798','2','4','2','56081','8','8','174','0','0','Mammoth Hide Galoshes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142799','2','2','8','50326','17','1','174','0','1','Snowblind Butcher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142800','2','4','2','56012','3','8','174','0','0','Gale-wind Guard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142801','2','4','2','56577','9','7','174','0','0','Nomadic Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142802','2','4','2','56333','6','8','174','0','0','Hardened Whipping Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142803','2','4','2','55908','5','8','174','0','0','Buckshot-Proof Battlesurgeon\'s Protector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142804','2','4','2','56132','8','8','174','0','0','Spiked Iceclimber\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142805','2','4','2','49919','3','8','174','0','0','Njormeld\'s Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142806','2','4','2','56578','9','7','174','0','0','Storm-weathered Cuffs','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142807','2','2','7','55892','13','1','174','0','3','Blade of the Inception','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142808','2','4','0','52417','2','4','174','0','0','Bouldercrag\'s Pendant','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142809','2','4','2','56579','10','8','174','0','0','Bloodied Leather Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142810','2','4','3','51873','1','5','174','0','0','Wooly Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142811','2','2','15','56140','21','1','174','0','3','Twisted Reflection','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142812','2','4','0','52373','11','8','174','0','0','The \"D\" Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142813','2','4','3','56582','5','5','174','0','0','Chestplate of the Northern Ranger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142814','2','4','3','55903','6','5','174','0','0','Broken Chastity Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142815','2','4','3','56092','8','5','174','0','0','Mammoth Mukluks','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142816','2','4','3','56585','9','5','174','0','0','Cuffs of Invention','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142817','2','4','3','56587','7','5','174','0','0','Reforged Chain Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142818','2','4','3','56136','6','5','174','0','0','Stormstalker\'s Clutch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142819','2','2','4','50201','21','1','174','0','3','Maker\'s Touch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142820','2','4','3','51885','3','5','174','0','0','Mantle of Bouldercrag','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142821','2','4','3','56589','6','5','174','0','0','Belt of the Stormforged','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142822','2','2','3','31210','26','1','174','0','0','K3 Pachyderm Prevention Device','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142823','2','2','4','50199','13','1','174','0','3','Ricket\'s Beatstick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142824','2','2','1','51385','17','1','174','0','1','Maker\'s Edge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142825','2','4','4','51899','9','6','174','0','0','Polished Tusk Shackles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142826','2','4','4','56018','6','6','174','0','0','Goblin Damage Absorber','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142827','2','4','4','56106','5','6','174','0','0','Rockshaper\'s Resolve','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142828','2','2','10','50142','17','2','174','0','2','Garm\'s Ward','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142829','2','4','4','50905','1','6','174','0','0','Plated Skullguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142830','2','4','4','56102','9','6','174','0','0','Ring of Jokkum','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142831','2','2','15','56076','21','1','174','0','3','Maiden\'s Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142832','2','4','4','56596','7','6','174','0','0','Coldblooded Legplates','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142833','2','4','4','56598','8','6','174','0','0','Jawbreakers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142834','2','4','4','51297','3','6','174','0','0','Mantle of Long Winter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142835','2','4','4','56600','10','5','174','0','0','Backhanded Grips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142836','2','4','4','56584','8','6','174','0','0','Rockshaper Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142841','2','4','1','56056','7','7','174','0','0','Leggings of the Frozen Wastes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142842','2','4','1','56011','3','7','174','0','0','Fur-Lined Shoulder Warmers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142843','2','4','1','52491','1','7','174','0','0','Mildred\'s Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142844','3','4','1','56105','20','7','187','0','0','Robes of Lightning','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142845','2','4','0','55905','11','8','174','0','0','Brunnhildar Runed Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142846','2','4','1','56091','8','7','174','0','0','Jormungar Galoshes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142847','2','4','1','56137','10','7','174','0','0','Terrace Gazer\'s Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142848','2','2','15','50125','13','1','174','0','3','Razor-sharp Icicle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142849','2','4','1','56005','20','7','174','0','0','Flowing Valkyrion Robes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142850','2','4','1','51192','1','7','174','0','0','Flamebringer\'s Crown','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142851','4','4','7','1103','28','2','200','80','0','Hateful Gladiator\'s Libram of Fortitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142852','4','4','7','34960','28','2','213','80','0','Deadly Gladiator\'s Libram of Fortitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142853','4','4','7','34960','28','2','232','80','0','Furious Gladiator\'s Libram of Fortitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142854','4','4','7','34960','28','2','251','80','0','Relentless Gladiator\'s Libram of Fortitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142857','2','2','10','50141','17','2','174','0','2','Thorim\'s Riding Crop','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142858','2','2','18','56001','26','2','174','0','0','Crossbow of the Storms','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142859','2','2','5','50316','17','2','174','0','1','Thorim\'s Crusher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142860','2','4','6','55904','14','1','174','0','4','Broodmother\'s Protector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142861','2','2','15','50121','13','1','174','0','3','Jormungar Fang','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142862','2','2','13','56025','22','1','174','0','7','Hyldnir Painbringer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142863','2','2','16','56113','25','2','174','0','0','Sharpened Hyldnir Harpoon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142864','2','4','0','49229','11','8','174','0','0','Frozen Mood Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142865','2','4','2','56006','9','7','174','0','0','Frost Hardened Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142866','2','4','2','56009','10','8','174','0','0','Fur-Lined Mittens','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142867','2','4','2','49928','7','6','174','0','0','Cured Proto-Drake Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142868','2','2','4','50203','13','1','174','0','3','Hyldnir Headcracker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142869','2','4','2','49920','3','8','174','0','0','Yeti Hide Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142870','2','4','2','56021','5','8','174','0','0','Hibernal Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142871','2','4','2','56580','9','7','174','0','0','Bracer of Tarbash','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142872','2','4','2','56098','1','8','174','0','0','Proto-Drake Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142874','2','4','2','49979','8','8','174','0','0','Wooly Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142875','2','4','2','56581','7','6','174','0','0','Worg-Hide Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142876','2','4','4','51297','3','6','174','0','0','Light-Touched Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142877','2','4','4','51900','5','6','174','0','0','Chestguard of the Frozen Ascent','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142878','2','4','4','51904','1','6','174','0','0','Vrykul Training Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142879','2','4','4','51904','1','6','174','0','0','Crown of Hyldnir','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142880','2','4','4','51895','10','5','174','0','0','Astrid\'s Riding Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142881','2','4','4','55845','7','6','174','0','0','Bjornrittar\'s Chilled Legguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142882','2','4','4','56391','6','6','174','0','0','Thorim\'s Grasp','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142883','2','4','4','56042','8','6','174','0','0','Iva\'s Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142884','2','4','4','56133','8','6','174','0','0','Steel-tipped Snowboots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142885','2','4','4','51891','1','6','174','0','0','Mountaineer\'s Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142886','2','4','3','56583','10','5','174','0','0','Gloves of the Howling Peaks','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142887','2','4','3','49362','3','5','174','0','0','Pauldrons of the Ascent','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142888','2','4','3','51886','9','5','174','0','0','Summit Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142889','2','4','3','56601','6','5','174','0','0','Mildred\'s Grasp','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142890','2','4','3','56099','7','5','174','0','0','Proto-scale Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142891','2','4','3','56590','8','5','174','0','0','Brunnhildar Snowkickers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142892','2','4','3','51886','9','5','174','0','0','Scaled Proto-Wristguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142893','2','4','3','54933','3','5','174','0','0','Shoulders of Earthen Might','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142895','2','4','3','56575','1','5','174','0','0','Scaled Jormungar Protector','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142896','2','4','3','56576','5','5','174','0','0','Valkyrion Tracker\'s Chestguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142943','7','2','1','23904','17','1','1','0','1','Bloodied Arcanite Reaper','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142944','7','2','15','23248','13','1','1','0','3','Balanced Heartseeker','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142945','7','2','7','25648','21','1','1','0','3','Venerable Dal\'Rend\'s Sacred Charge','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142946','7','2','2','30926','15','2','1','0','0','Charmed Ancient Bone Bow','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142947','7','2','10','45947','17','2','1','0','2','Dignified Headmaster\'s Charge','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142948','7','2','4','34109','21','2','1','0','3','Devout Aurastone Hammer','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142949','7','4','4','29964','3','6','1','0','0','Polished Spaulders of Valor','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142950','7','4','3','15809','3','5','1','0','0','Champion Herod\'s Shoulder','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142951','7','4','3','30925','3','5','1','0','0','Mystical Pauldrons of Elements','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142952','7','4','2','28179','3','8','1','0','0','Stained Shadowcraft Spaulders','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142984','7','4','2','25700','3','8','1','0','0','Preened Ironfeather Shoulders','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142985','7','4','1','29798','3','7','1','0','0','Tattered Dreadmist Mantle','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142987','4','4','0','56181','12','4','200','80','0','Darkmoon Card: Greatness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142988','4','4','0','56182','12','4','200','80','0','Darkmoon Card: Illusion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142989','4','4','0','56178','12','4','200','80','0','Darkmoon Card: Berserker!','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142990','4','4','0','56179','12','4','200','80','0','Darkmoon Card: Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142991','7','4','0','6337','12','4','1','0','0','Swift Hand of Justice','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('142992','7','4','0','24784','12','4','1','0','0','Discerning Eye of the Beast','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143068','4','4','4','54462','3','6','115','70','0','Blessed Spaulders of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143069','4','4','4','54459','5','6','115','70','0','Blessed Breastplate of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143070','4','4','4','54460','10','6','115','70','0','Blessed Gauntlets of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143071','4','4','4','54461','7','6','115','70','0','Blessed Legplates of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143072','4','4','1','54448','20','7','115','70','0','Blessed Robe of Undead Cleansing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143073','4','4','1','54449','10','7','115','70','0','Blessed Gloves of Undead Cleansing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143074','4','4','1','54447','3','7','115','70','0','Blessed Mantle of Undead Cleansing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143075','4','4','1','14658','7','7','115','70','0','Blessed Trousers of Undead Cleansing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143076','4','4','2','54454','5','8','115','70','0','Blessed Tunic of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143077','4','4','2','54453','3','8','115','70','0','Blessed Shoulderpads of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143078','4','4','2','54451','10','8','115','70','0','Blessed Grips of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143079','4','4','2','54452','7','8','115','70','0','Blessed Leggings of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143080','4','4','3','54457','5','5','115','70','0','Blessed Hauberk of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143081','4','4','3','54458','3','5','115','70','0','Blessed Pauldrons of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143082','4','4','3','54456','10','5','115','70','0','Blessed Handguards of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143083','4','4','3','54455','7','5','115','70','0','Blessed Greaves of Undead Slaying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143085','4','4','6','54064','14','6','200','80','4','Royal Crest of Lordaeron','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143129','3','4','3','56722','5','5','187','78','0','Razorstrike Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143130','3','4','3','52333','3','8','187','78','0','Virulent Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143131','3','4','3','53236','9','7','187','78','0','Eaglebane Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143132','3','4','3','56718','1','7','187','78','0','Nightshock Hood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143133','3','4','3','56716','6','5','187','78','0','Nightshock Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143154','1','4','0','54171','19','7','75','0','0','Tabard of the Argent Crusade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143155','1','4','0','54175','19','7','75','0','0','Tabard of the Ebon Blade','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143156','1','4','0','54177','19','7','75','0','0','Tabard of the Wyrmrest Accord','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143157','1','4','0','54176','19','7','75','0','0','Tabard of the Kirin Tor','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143160','3','4','1','54189','7','7','158','0','0','Leggings of Fastidious Decapitation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143161','3','4','2','54194','7','6','158','0','0','Legguards of Solemn Revenge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143162','3','4','3','54195','7','5','158','0','0','Ceremonial Pike Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143163','3','4','4','54196','7','6','158','0','0','Legplates of the Vengeful Mendicant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143164','3','4','1','57269','6','7','175','0','0','Sly Mojo Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143165','3','4','2','57270','6','8','175','0','0','Strange Voodoo Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143167','3','4','3','51888','6','5','175','0','0','Ranger\'s Belt of the Fallen Empire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143168','3','4','4','57264','6','6','175','0','0','Clasp of the Fallen Demi-God','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143171','3','4','1','57267','8','7','175','0','0','Fur-lined Moccasins','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143172','3','4','2','57268','8','8','175','0','0','Rhino Hide Kneeboots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143173','3','4','3','56485','8','5','175','0','0','Scaled Boots of Fallen Hope','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143174','3','4','4','57271','8','6','175','0','0','Trollkickers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143176','3','4','4','49734','8','6','175','0','0','Slippers of the Mojo Dojo','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143177','3','4','0','56875','11','8','175','0','0','Voodoo Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143178','3','4','0','56874','11','8','175','0','0','Ring of Foul Mojo','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143179','3','4','0','56873','11','8','175','0','0','Solid Platinum Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143180','3','4','0','41951','11','8','175','0','0','Lion\'s Head Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143181','3','4','1','49464','3','7','155','0','0','Shoulders of the Northern Lights','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143182','3','4','2','51715','3','8','155','0','0','Cured Mammoth Hide Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143183','3','4','3','54933','3','5','155','0','0','Tundra Tracker\'s Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143184','3','4','4','51577','3','6','155','0','0','Tundra Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143185','3','2','19','56148','26','2','174','0','0','Wand of Chilled Renewal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143186','3','2','19','57177','26','2','174','0','0','Iceshrieker\'s Touch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143187','3','2','16','56150','25','2','174','0','0','Weighted Throwing Axe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143188','3','2','16','56100','25','2','174','0','0','Razor-sharp Ice Shards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143189','3','4','0','51243','11','8','174','0','0','Amberglow Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143190','3','4','0','56027','11','8','174','0','0','Iceforged Battle Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143191','3','4','0','56035','11','8','174','0','0','Jagged Ice Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143192','3','4','0','56104','11','8','174','0','0','Ring of the Northern Winds','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143193','3','4','1','56072','3','7','174','0','0','Lightning Infused Mantle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143194','3','4','2','56591','3','8','174','0','0','Charred Leather Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143195','3','4','3','56135','3','5','174','0','0','Stormforged Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143197','3','4','4','56097','3','6','174','0','0','Pauldrons of Extinguished Hatred','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143198','3','4','4','51927','3','6','174','0','0','Mantle of Volkhan','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143200','3','4','1','56131','7','7','174','0','0','Snowdrift Pantaloons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143201','3','4','2','56054','7','6','174','0','0','Leggings of Heightened Renewal','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143202','3','4','3','56595','7','5','174','0','0','Jormungar Hide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143203','3','4','4','56033','7','6','174','0','0','Iron Colossus Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143204','2','4','1','56026','20','7','174','0','0','Hyldnir Runeweaver\'s Garb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143207','3','4','2','56605','5','8','187','0','0','Hardened Tongue Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143208','3','4','3','56608','5','5','187','0','0','Lightningbringer\'s Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143209','3','4','4','56609','5','6','187','0','0','Breastplate of Jagged Stone','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143210','3','4','1','56017','10','7','174','0','0','Gloves of the Servant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143211','3','4','2','56610','10','8','174','0','0','Rough Climber\'s Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143212','3','4','3','56014','10','5','187','0','0','Gauntlets of the Windreacher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143213','3','4','4','51932','10','6','187','0','0','Gauntlets of Vigilance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143244','2','4','0','12567','2','1','138','70','0','Crystal Citrine Necklace','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143245','2','4','0','31603','2','1','138','70','0','Crystal Chalcedony Amulet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143246','3','4','0','31616','11','4','150','73','0','Earthshadow Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143247','3','4','0','31800','11','4','159','73','0','Jade Ring of Slaying','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143248','2','4','0','4284','11','1','162','77','0','Stoneguard Band','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143249','2','4','0','9836','11','1','162','77','0','Shadowmight Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143250','3','4','0','54488','11','1','187','78','0','Ring of Earthen Might','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143251','3','4','0','34189','11','1','187','78','0','Ring of Scarlet Shadows','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143252','3','4','0','39120','11','1','187','78','0','Windfire Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143253','3','4','0','31664','11','1','187','78','0','Ring of Northern Tears','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143255','3','4','2','56726','10','8','187','78','0','Seafoam Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143256','3','4','2','54952','8','7','187','78','0','Jormscale Footpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143257','3','4','2','56695','5','5','187','78','0','Wildscale Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143258','3','4','2','54950','3','8','187','78','0','Purehorn Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143260','3','4','2','56701','1','7','187','78','0','Eviscerator\'s Facemask','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143261','3','4','2','56720','1','7','187','78','0','Overcast Headguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143262','3','4','2','54925','3','8','187','78','0','Overcast Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143263','3','4','2','54924','5','5','187','78','0','Overcast Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143264','3','4','2','54920','9','7','187','78','0','Overcast Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143265','3','4','2','57622','10','8','187','78','0','Overcast Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143266','3','4','2','57621','6','5','187','78','0','Overcast Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143271','3','4','2','54923','7','7','187','78','0','Overcast Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143273','3','4','2','56719','8','7','187','78','0','Overcast Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143277','3','4','0','44841','11','5','167','73','0','Jedoga\'s Greatring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143278','3','4','1','54512','16','7','167','73','0','Cloak of the Darkcaster','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143279','3','4','4','51520','5','6','167','73','0','Battlechest of the Twilight Cult','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143280','3','4','4','52500','1','6','200','80','0','Faceguard of the Hammer Clan','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143281','3','2','1','54521','17','1','200','80','1','Edge of Oblivion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143282','3','4','0','33906','2','3','200','80','0','Shadowseeker\'s Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143283','3','4','1','54522','16','7','200','80','0','Subterranean Waterfall Shroud','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143284','3','2','18','54525','26','2','200','80','0','Amanitar Skullbow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143285','3','4','0','34204','2','3','200','80','0','Amulet of the Spell Flinger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143286','3','4','2','54523','7','8','200','80','0','Legguards of Swarming Attacks','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143287','3','4','1','52348','10','7','200','80','0','Silken Bridge Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143300','4','4','0','54556','19','7','1','0','0','Loremaster\'s Colors','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143305','3','4','1','51925','16','7','179','76','0','Shroud of Akali','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143306','3','4','0','53042','11','3','179','76','0','Gal\'darah\'s Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143309','3','4','0','51280','2','3','179','76','0','Amulet of the Stampede','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143310','3','4','4','52931','5','6','200','80','0','Engraved Chestplate of Eck','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143311','3','4','3','50612','1','5','200','80','0','Helmet of the Shrine','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143312','3','4','2','51519','8','8','200','80','0','Gorloc Muddy Footwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143313','3','4','1','54579','7','7','200','80','0','Leggings of the Ruins Dweller','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143327','1','4','0','54646','23','2','70','0','0','Stratholme Lily','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143348','4','4','0','54722','19','7','1','0','0','Tabard of the Explorer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143349','4','4','0','54723','19','7','1','0','0','Tabard of Brute Force','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143353','3','4','4','51615','7','6','175','75','0','Void Sentry Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143358','3','4','0','54999','2','3','175','75','0','Pendant of Shadow Beams','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143363','3','4','1','55000','16','7','175','75','0','Screeching Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143375','3','4','1','55001','7','7','175','75','0','Trousers of the Arakkoa','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143382','3','4','0','44703','11','3','175','75','0','Band of Eyes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143387','3','4','4','51927','3','6','175','75','0','Shoulderplates of the Beholder','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143401','3','4','1','55014','20','7','200','80','0','Water-Drenched Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143402','3','4','4','55015','8','6','200','80','0','The Obliterator Greaves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143403','3','4','2','50908','1','8','200','80','0','Shroud of Darkness','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143404','3','4','0','39212','2','3','200','80','0','Zuramat\'s Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143405','3','4','4','50507','8','6','200','80','0','Sabatons of Erekem','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143406','3','4','1','28693','16','7','200','80','0','Cloak of the Gushing Wound','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143407','3','2','4','57084','13','1','200','80','3','Stormstrike Mace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143408','3','4','0','39126','11','3','200','80','0','Solitaire of Reflecting Beams','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143409','3','2','6','55017','17','1','200','80','1','Saliva Corroded Pike','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143410','3','4','3','55018','5','5','200','80','0','Moragg\'s Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143433','3','4','2','56706','3','8','187','78','0','Eviscerator\'s Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143434','3','4','2','56703','5','5','187','78','0','Eviscerator\'s Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143435','3','4','2','56702','9','7','187','78','0','Eviscerator\'s Bindings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143436','3','4','2','56704','10','8','187','78','0','Eviscerator\'s Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143437','3','4','2','56709','6','5','187','78','0','Eviscerator\'s Waistguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143438','3','4','2','56705','7','7','187','78','0','Eviscerator\'s Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143439','3','4','2','56708','8','7','187','78','0','Eviscerator\'s Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143442','3','4','3','54935','6','7','187','78','0','Swiftarrow Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143443','3','4','3','52363','8','7','187','78','0','Swiftarrow Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143444','3','4','3','56585','9','7','187','78','0','Swiftarrow Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143445','3','4','3','54937','5','5','187','78','0','Swiftarrow Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143446','3','4','3','54932','10','8','187','78','0','Swiftarrow Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143447','3','4','3','56735','1','7','187','78','0','Swiftarrow Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143448','3','4','3','56736','7','7','187','78','0','Swiftarrow Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143449','3','4','3','54933','3','8','187','78','0','Swiftarrow Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143450','3','4','3','56728','6','7','187','78','0','Stormhide Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143451','3','4','3','56733','8','7','187','78','0','Stormhide Stompers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143452','3','4','3','57620','9','7','187','78','0','Stormhide Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143453','3','4','3','55018','5','5','187','78','0','Stormhide Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143454','3','4','3','56729','10','8','187','78','0','Stormhide Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143455','3','4','3','50611','1','7','187','78','0','Stormhide Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143456','3','4','3','56731','7','7','187','78','0','Stormhide Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143457','3','4','3','56732','3','8','187','78','0','Stormhide Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143458','4','4','3','56587','7','7','200','80','0','Giantmaim Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143459','4','4','3','56711','9','7','200','80','0','Giantmaim Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143460','4','4','3','56712','6','7','200','80','0','Giantmaim Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143461','4','4','3','51109','5','5','200','80','0','Revenant\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143469','4','4','3','56724','8','7','200','80','0','Revenant\'s Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143475','3','4','3','54932','10','8','200','80','0','Grips of the Chilling Revenant ','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143476','3','4','2','52514','5','8','200','80','0','Trollwoven Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143481','4','4','2','51715','3','8','200','80','0','Trollwoven Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143482','3','4','0','31664','11','1','187','78','0','Savage Titanium Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143484','4','4','2','55207','6','5','200','80','0','Trollwoven Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143486','1','4','0','63017','1','-1','1','0','0','Mohawk Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143495','4','4','2','55206','7','7','200','80','0','Earthgiving Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143498','3','4','0','31664','11','1','187','78','0','Savage Titanium Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143499','1','4','0','18059','0','4','1','0','0','Iron Boot Flask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143500','4','4','4','53286','7','1','200','80','0','Bolstered Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143502','4','4','2','55205','8','7','200','80','0','Earthgiving Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143515','3','4','0','54808','23','7','22','15','7','Mystic Tome','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143555','4','4','0','54963','12','4','200','0','0','Deputy Pa\'trolla Badge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143565','4','4','1','56737','16','7','200','80','0','Durable Nerubhide Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143566','4','4','1','56738','16','7','200','80','0','Ice Striker\'s Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143573','4','4','0','55033','12','4','200','80','0','Tears of Bitter Anguish','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143582','4','4','0','39123','11','3','213','80','0','Titanium Frostguard Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143583','4','4','1','55040','20','7','213','80','0','Glacial Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143584','4','4','1','55048','6','7','213','80','0','Glacial Waistband','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143585','4','4','1','55042','8','7','213','80','0','Glacial Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143586','4','4','4','35276','5','7','213','80','0','Icebane Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143587','4','4','4','55047','6','1','213','80','0','Icebane Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143588','4','4','4','55044','8','6','213','80','0','Icebane Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143590','4','4','2','35290','5','7','213','80','0','Polar Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143591','4','4','2','55046','6','8','213','80','0','Polar Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143592','4','4','2','55049','8','8','213','80','0','Polar Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143593','4','4','3','36436','5','7','213','80','0','Icy Scale Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143594','4','4','3','55050','6','5','213','80','0','Icy Scale Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143595','4','4','3','55054','8','5','213','80','0','Icy Scale Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143600','1','2','6','53147','17','2','85','75','1','Brunnhildar Harpoon','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143601','1','2','1','52564','17','1','85','75','1','Brunnhildar Great Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143611','4','2','7','8090','13','1','200','80','3','Krol Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143612','4','2','16','47933','25','1','200','80','0','Spineslicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143613','4','2','15','43846','13','1','200','80','3','The Dusk Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143651','5','2','20','20619','17','1','200','0','1','Crafty\'s Pole','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143654','3','4','0','55787','23','7','25','20','7','Tome of the Dawn','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143655','3','4','0','55959','23','7','25','20','7','Book of Survival','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143656','3','4','0','55956','23','7','35','30','7','Tome of Kings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143657','3','4','0','55960','23','7','35','30','7','Royal Guide of Escape Routes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143659','0','2','15','55261','13','4','136','70','0','Bloodied Prison Shank','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143660','3','4','0','55264','23','7','45','40','7','Fire Eater\'s Guide','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143661','3','4','0','55980','23','7','45','40','7','Book of Stars','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143663','3','4','0','55981','23','7','55','50','7','Stormbound Tome','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143664','3','4','0','55982','23','7','55','50','7','Manual of Clouds','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143666','3','4','0','55264','23','7','65','60','7','Hellfire Tome','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143667','3','4','0','55265','23','7','65','60','7','Book of Clever Tricks','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143727','4','4','2','54256','5','8','213','80','0','Valorous Bonescythe Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143728','4','4','2','54423','10','8','213','80','0','Valorous Bonescythe Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143729','4','4','2','54396','1','8','213','80','0','Valorous Bonescythe Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143730','4','4','2','54281','7','8','213','80','0','Valorous Bonescythe Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143731','4','4','2','54289','3','8','213','80','0','Valorous Bonescythe Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143732','4','4','1','54387','1','7','200','80','0','Heroes\' Circlet of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143733','4','4','1','54387','1','7','200','80','0','Crown of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143734','4','4','3','54408','10','5','200','80','0','Heroes\' Cryptstalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143735','4','4','3','54375','1','5','200','80','0','Heroes\' Cryptstalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143736','4','4','3','54275','7','5','200','80','0','Heroes\' Cryptstalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143737','4','4','3','54296','3','5','200','80','0','Heroes\' Cryptstalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143738','4','4','3','54254','5','5','200','80','0','Heroes\' Cryptstalker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143739','4','4','4','54253','5','1','200','80','0','Dreadnaught Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143740','4','4','4','48928','5','1','200','80','0','Heroes\' Dreadnaught Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143741','4','4','4','54432','10','1','200','80','0','Dreadnaught Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143742','4','4','4','54403','1','1','200','80','0','Heroes\' Dreadnaught Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143743','4','4','4','54405','10','1','200','80','0','Heroes\' Dreadnaught Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143744','4','4','4','54403','1','4','200','80','0','Dreadnaught Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143745','4','4','4','54272','7','1','200','80','0','Heroes\' Dreadnaught Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143746','4','4','4','54271','7','6','200','80','0','Dreadnaught Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143747','4','4','4','54310','3','1','200','80','0','Heroes\' Dreadnaught Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143748','4','4','4','54309','3','6','200','80','0','Dreadnaught Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143749','4','4','2','57538','1','8','200','80','0','Heroes\' Dreamwalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143750','4','4','2','54407','10','8','200','80','0','Heroes\' Dreamwalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143751','4','4','2','54406','10','8','200','80','0','Heroes\' Dreamwalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143752','4','4','2','54407','10','8','200','80','0','Heroes\' Dreamwalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143753','4','4','2','57539','1','8','200','80','0','Heroes\' Dreamwalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143754','4','4','2','57538','1','8','200','80','0','Heroes\' Dreamwalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143755','4','4','2','54274','7','8','200','80','0','Heroes\' Dreamwalker Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143756','4','4','2','54273','7','8','200','80','0','Heroes\' Dreamwalker Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143757','4','4','2','54290','3','8','200','80','0','Heroes\' Dreamwalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143758','4','4','2','54290','3','8','200','80','0','Heroes\' Dreamwalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143759','4','4','2','54290','3','8','200','80','0','Heroes\' Dreamwalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143760','4','4','2','54274','7','8','200','80','0','Heroes\' Dreamwalker Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143761','4','4','2','54230','20','8','200','80','0','Heroes\' Dreamwalker Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143762','4','4','3','54260','5','5','200','80','0','Earthshatter Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143763','4','4','3','54398','1','5','200','80','0','Heroes\' Earthshatter Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143764','4','4','3','45014','10','5','200','80','0','Heroes\' Earthshatter Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143765','4','4','3','54424','10','5','200','80','0','Heroes\' Earthshatter Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143766','4','4','3','45014','10','5','200','80','0','Heroes\' Earthshatter Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143767','4','4','3','54259','5','5','200','80','0','Earthshatter Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143768','4','4','3','54397','1','5','200','80','0','Heroes\' Earthshatter Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143769','4','4','3','54397','1','5','200','80','0','Heroes\' Earthshatter Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143770','4','4','3','45228','7','5','200','80','0','Heroes\' Earthshatter Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143771','4','4','3','45228','7','5','200','80','0','Heroes\' Earthshatter Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143772','4','4','3','54306','3','5','200','80','0','Heroes\' Earthshatter Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143773','4','4','3','54304','3','5','200','80','0','Heroes\' Earthshatter Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143774','4','4','3','54304','3','5','200','80','0','Heroes\' Earthshatter Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143775','4','4','3','54259','5','5','200','80','0','Heroes\' Earthshatter Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143776','4','4','3','54282','7','5','200','80','0','Earthshatter War-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143777','4','4','1','57530','1','7','200','80','0','Frostfire Circlet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143778','4','4','1','54418','10','7','200','80','0','Heroes\' Frostfire Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143779','4','4','1','54276','7','7','200','80','0','Heroes\' Frostfire Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143780','4','4','1','54268','20','7','200','80','0','Heroes\' Frostfire Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143781','4','4','1','54297','3','7','200','80','0','Heroes\' Frostfire Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143782','4','4','1','54422','10','7','200','80','0','Gloves of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143783','4','4','1','54422','10','7','200','80','0','Heroes\' Handwraps of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143784','4','4','1','54280','7','7','200','80','0','Leggings of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143785','4','4','1','54302','3','7','200','80','0','Heroes\' Mantle of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143786','4','4','1','54280','7','7','200','80','0','Heroes\' Pants of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143787','4','4','1','54399','1','7','200','80','0','Heroes\' Plagueheart Circlet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143788','4','4','1','54431','10','7','200','80','0','Heroes\' Plagueheart Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143789','4','4','1','54283','7','7','200','80','0','Heroes\' Plagueheart Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143790','4','4','1','54270','20','7','200','80','0','Heroes\' Plagueheart Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143791','4','4','1','54308','3','7','200','80','0','Heroes\' Plagueheart Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143792','4','4','1','54269','20','7','200','80','0','Heroes\' Raiments of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143793','4','4','4','54255','5','1','200','80','0','Heroes\' Redemption Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143794','4','4','4','54255','5','1','200','80','0','Heroes\' Redemption Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143795','4','4','4','57546','1','1','200','80','0','Heroes\' Redemption Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143796','4','4','4','54420','10','1','200','80','0','Heroes\' Redemption Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143797','4','4','4','54419','10','1','200','80','0','Redemption Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143798','4','4','4','54277','7','6','200','80','0','Redemption Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143799','4','4','4','54419','10','1','200','80','0','Heroes\' Redemption Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143800','4','4','4','57546','1','4','200','80','0','Redemption Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143801','4','4','4','57546','1','4','200','80','0','Heroes\' Redemption Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143802','4','4','4','54279','7','1','200','80','0','Heroes\' Redemption Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143803','4','4','4','54278','7','6','200','80','0','Heroes\' Redemption Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143804','4','4','4','54301','3','1','200','80','0','Heroes\' Redemption Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143805','4','4','4','54300','3','6','200','80','0','Heroes\' Redemption Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143806','4','4','4','54299','3','1','200','80','0','Redemption Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143807','4','4','4','54255','5','1','200','80','0','Redemption Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143808','4','4','1','54269','20','7','200','80','0','Robe of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143809','4','4','4','54253','5','1','200','80','0','Heroes\' Scourgeborne Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143810','4','4','1','54302','3','7','200','80','0','Shoulderpads of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143811','4','4','4','48928','5','1','200','80','0','Heroes\' Scourgeborne Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143812','4','4','4','54371','1','1','200','80','0','Heroes\' Scourgeborne Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143813','4','4','4','51834','10','1','200','80','0','Heroes\' Scourgeborne Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143814','4','4','4','54405','10','1','200','80','0','Heroes\' Scourgeborne Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143815','4','4','4','54370','1','4','200','80','0','Heroes\' Scourgeborne Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143816','4','4','4','54272','7','1','200','80','0','Heroes\' Scourgeborne Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143817','4','4','4','54271','7','6','200','80','0','Heroes\' Scourgeborne Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143818','4','4','4','54288','3','1','200','80','0','Heroes\' Scourgeborne Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143819','4','4','4','54287','3','6','200','80','0','Heroes\' Scourgeborne Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143820','4','4','2','54261','20','8','200','80','0','Heroes\' Dreamwalker Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143822','4','4','2','54261','20','8','200','80','0','Heroes\' Dreamwalker Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143828','2','2','19','56560','26','2','174','0','0','Touch of Light','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143829','2','4','0','6337','12','4','174','0','0','Crusader\'s Locket','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143830','2','4','3','51299','3','5','174','0','0','Cobalt\'s Shoulderguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143831','2','4','4','51906','6','6','174','0','0','Enchanted Plate Waistguard','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143832','2','2','8','50326','17','1','174','0','1','The Argent Resolve','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143833','2','2','7','56343','13','1','174','0','3','Blade of Echoes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143834','2','2','10','50138','17','2','174','0','2','Staff of Redeemed Souls','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143835','2','2','4','50208','21','1','174','0','3','Hand of Gustav','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143836','2','4','0','56783','12','4','174','0','0','Thorny Rose Brooch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143837','2','4','0','56782','12','4','174','0','0','Softly Glowing Orb','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143838','2','4','0','56786','12','4','174','0','0','Chuchu\'s Tiny Box of Horrors','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143839','2','4','1','56496','8','7','174','0','0','Leiah\'s Footpads','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143840','2','4','2','51860','1','8','174','0','0','Sixen\'s Skullcap','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143841','2','4','3','56205','6','5','174','0','0','Argent Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143842','2','4','4','52372','10','5','174','0','0','Jayde\'s Reinforced Handguards','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143843','2','4','6','56501','14','1','174','0','4','Iron Coffin Lid','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143844','2','4','4','51892','3','6','174','0','0','Ebon Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143845','2','4','4','56569','7','6','174','0','0','Legplates of Dominion','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143846','2','4','4','51904','1','6','174','0','0','Helmet of the Dedicated','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143847','2','4','4','51895','10','5','174','0','0','Demolisher\'s Grips','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143848','2','4','4','51899','9','6','174','0','0','Bracers of Icy Resolve','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143849','2','4','0','35359','2','4','174','0','0','Chain of the Sovereign','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143855','2','4','1','56034','9','7','174','0','0','Adepts Wristwraps','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143856','2','4','1','55367','10','7','174','0','0','Sigrid\'s Mittens','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143857','2','4','1','55901','8','7','174','0','0','Duke Lankral\'s Velvet Slippers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143858','2','2','10','50133','17','2','174','0','2','Vrykul Crusher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143859','2','4','1','56509','1','7','174','0','0','Shadow Vault Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143860','3','4','4','55301','6','6','171','76','0','Brilliant Saronite Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143861','2','4','1','26064','16','7','174','0','0','Bone Witch\'s Drape','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143862','2','4','1','56573','3','7','174','0','0','Mantle of the Underhalls','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143863','2','4','1','52420','7','7','174','0','0','Pantaloons of the Water Magi','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143864','3','4','4','55302','9','6','171','76','0','Brilliant Saronite Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143865','3','4','4','55306','3','6','171','76','0','Brilliant Saronite Pauldrons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143866','2','4','1','56571','6','7','174','0','0','Lithe Stalker\'s Cord','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143870','3','4','4','50905','1','6','179','78','0','Brilliant Saronite Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143871','3','2','7','55309','21','2','175','77','3','Saronite Spellblade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143872','2','4','1','52068','3','7','174','0','0','Weeping Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143873','2','2','19','56562','26','2','174','0','0','Frail Bone Wand','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143874','2','4','0','56567','11','8','174','0','0','Lady Nightswood\'s Engagement Ring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143875','2','2','0','50073','13','1','174','0','3','Axe of the Cunning','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143877','2','4','0','53242','11','8','174','0','0','Blood-forged Circle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143878','2','4','1','56572','3','7','174','0','0','Mantle of Unholy Power','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143879','2','4','1','56565','9','7','174','0','0','Gryphon Rider\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143880','2','2','19','56479','26','2','174','0','0','Fair Touch of the Crusader','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143881','2','4','1','53244','20','7','174','0','0','Demolisher Driver\'s Dustcoat','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143882','2','4','1','52491','1','7','174','0','0','Cultist\'s Cowl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143883','2','2','8','50326','17','1','174','0','1','Arete\'s Command','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143884','2','4','0','51280','2','4','174','0','0','Amulet of the Malefic Necromancer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143885','2','2','5','50325','17','2','174','0','1','Scourgehammer','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143888','2','2','4','50203','13','1','174','0','3','Blunt Brainwasher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143889','2','4','1','56488','16','7','174','0','0','Hulking Abomination Hide Cloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143890','2','2','13','51152','21','1','174','0','7','Interrogator\'s Flaming Knuckles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143891','2','4','2','56484','5','8','174','0','0','Jhaeqon\'s Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143892','2','4','2','56335','6','8','174','0','0','Refurbished Demolisher Gear Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143893','2','2','19','57391','26','2','174','0','0','Olakin\'s Enchanted Torch','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143894','2','4','2','49979','8','8','174','0','0','Gryphon Hide Moccasins','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143895','2','4','2','56568','7','6','174','0','0','Leggings of Silent Echoes','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143896','2','4','2','56564','7','6','174','0','0','Grotesque Butcher\'s Pants','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143897','2','2','0','51463','21','1','174','0','3','Frost Climber\'s Hatchet','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143898','2','2','0','51463','13','1','174','0','3','Icy Quick Edge','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143899','2','2','1','51385','17','1','174','0','1','Sapph\'s Cleaver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143900','2','2','16','56482','25','2','174','0','0','Fleshwerk Throwing Glaive','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143903','2','4','0','51243','11','8','174','0','0','Ring of the Fallen Shadow Adept','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143904','2','4','2','51865','10','8','174','0','0','Discarded Slaughterhouse Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143905','2','4','2','51860','1','8','174','0','0','Fur-lined Helm','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143906','2','4','2','56400','5','8','174','0','0','Cunning Leather Tunic','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143907','2','4','2','49918','3','8','174','0','0','Spear-Sisters Mantle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143908','2','4','2','56359','8','8','174','0','0','Boots of the Fallen Thane','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143909','2','4','2','56334','6','8','174','0','0','Belt of Njorndar','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143910','2','4','2','56510','10','8','174','0','0','Gloves of the Flayed','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143911','2','2','15','49207','13','1','174','0','3','Vile\'s Poker','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143912','2','4','2','56504','5','8','174','0','0','Vest of Jotunheim','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143913','2','4','2','53055','9','7','174','0','0','Efrem\'s Bracers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143914','2','4','2','56497','6','8','174','0','0','Girdle of Reprieve','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143915','2','2','15','49206','13','1','174','0','3','Pilot\'s Knife','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143916','2','2','4','50210','21','1','174','0','3','Mace of the Final Command','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143917','2','2','15','56140','21','1','174','0','3','Ritualist\'s Bloodletter','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143918','2','2','18','50162','26','2','174','0','0','Shooter\'s Glory','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143919','2','2','15','49206','13','1','174','0','3','Curved Assassin\'s Dagger','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143920','2','2','10','50145','17','2','174','0','2','Growler\'s Intimidation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143921','2','2','10','50133','17','2','174','0','2','Staff of Interrogation','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143922','2','2','7','49199','13','1','174','0','3','Honed Lightblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143923','2','2','7','49199','13','1','174','0','3','Bloodblade','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143924','2','4','1','56566','16','7','174','0','0','Illskar\'s Greatcloak','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143925','2','4','1','56557','16','7','174','0','0','Shadow Vault Shawl','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143926','2','4','0','56558','11','8','174','0','0','Signet of Baron Sliver','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143927','2','2','10','50141','17','2','174','0','2','Wrought-Iron Staff','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143928','2','2','2','56508','15','2','174','0','0','Bow of Bone and Sinew','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143929','2','2','5','50325','17','2','174','0','1','Vile\'s Uglystick','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143930','2','4','4','51896','8','6','174','0','0','Accelerator Stompers','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143931','2','4','3','56485','8','5','174','0','0','Savryn\'s Muddy Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143932','2','4','3','56483','7','5','174','0','0','Drivetrain Chain Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143933','2','4','3','51884','10','5','174','0','0','Gauntlets of Urgency','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143934','2','4','3','56561','9','5','174','0','0','Enchanted Bracelets of the Scout','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143935','2','4','3','56512','5','5','174','0','0','Links of the Battlemender','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143936','2','4','3','56331','10','5','174','0','0','Battlesurgeon\'s Gauntlets','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143937','2','4','3','52303','1','5','174','0','0','Blood-stalker\'s Cover','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143938','2','4','4','54812','6','6','174','0','0','Belt of Rising Hope','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143939','2','4','4','56371','5','6','174','0','0','Breastplate of Splattered Blood','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143940','2','4','4','56574','7','6','174','0','0','Plated Legs of the Unholy','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143941','2','4','4','49725','3','6','174','0','0','Grimy Saronite Pauldrons','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143942','2','4','4','51899','9','6','174','0','0','Jotunheim Shackles','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143943','2','4','4','56563','10','5','174','0','0','Gauntlets of the Holy Gladiator','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143944','2','4','4','51899','9','6','174','0','0','Rings of Nergeld','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143945','2','4','4','56505','5','6','174','0','0','Blackened Breastplate of the Vault','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143946','2','4','4','56500','5','6','174','0','0','Chestplate of the Glacial Crusader','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143947','2','4','4','51906','6','6','174','0','0','Stability Girdle','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143948','2','4','3','56346','8','5','174','0','0','Blood-encrusted Boots','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143969','3','4','1','55370','6','7','187','78','0','Frostsavage Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143970','3','4','1','55368','8','7','187','78','0','Frostsavage Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143971','3','4','1','52493','1','7','187','78','0','Frostsavage Cowl','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143972','3','4','1','55363','20','7','187','78','0','Frostsavage Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143973','3','4','1','51301','3','7','187','78','0','Frostsavage Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143974','3','4','1','55366','9','7','187','78','0','Frostsavage Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143975','3','4','1','55364','7','7','187','78','0','Frostsavage Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143976','2','4','3','56374','10','5','174','0','0','Chain Gloves of the Quarry','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143977','2','4','3','56570','5','5','174','0','0','Links of the Sleep-Watcher','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143978','2','4','3','51873','1','5','174','0','0','Circlet of Suffering','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143979','2','4','3','54195','7','5','174','0','0','Glaciel Ranger\'s Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143980','2','4','3','51882','9','5','174','0','0','Thane\'s Restraints','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143981','2','4','3','56499','10','5','174','0','0','Gauntlets of Onu\'zun','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143982','2','4','3','49362','3','5','174','0','0','Architect\'s Spaulders','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143988','4','4','1','56114','16','7','200','80','0','Gale-Proof Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143989','4','4','4','56216','6','1','200','80','0','Remembrance Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143990','4','4','2','56117','5','8','200','80','0','Blade-Scarred Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143991','4','4','2','56121','7','8','200','80','0','Legguards of Composure','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143992','4','4','0','48510','2','4','200','80','0','Volitant Amulet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143993','4','4','0','43407','11','5','213','80','0','Greatring of Collision','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143994','4','4','4','53912','7','6','213','80','0','Belabored Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143995','4','4','1','56122','1','7','213','80','0','Enamored Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143996','4','4','3','53830','8','5','213','80','0','Sabatons of Firmament','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('143998','4','4','3','56120','5','5','213','80','0','Chestguard of Flagrant Prowess','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144000','4','4','4','56127','5','1','213','80','0','Dragonstorm Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144002','4','4','1','56126','20','7','213','80','0','The Sanctum\'s Flowing Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144003','4','4','3','54865','3','5','213','80','0','Upstanding Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144004','4','4','3','56128','10','5','213','80','0','Bountiful Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144005','4','4','1','35312','16','7','226','80','0','Pennant Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144006','4','4','4','56129','1','-1','226','80','0','Obsidian Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144007','4','4','2','54623','1','8','226','80','0','Headpiece of Reconciliation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144008','4','4','1','56215','9','7','226','80','0','Unsullied Cuffs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144011','4','4','2','56130','7','8','226','80','0','Leggings of the Honored','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144013','3','4','0','43122','12','4','174','0','0','Cannoneer\'s Fuselighter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144014','3','4','0','56514','12','4','174','0','0','Fezzik\'s Pocketwatch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144015','3','4','0','56513','12','4','174','0','0','Cannoneer\'s Morale','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144016','3','4','1','56521','9','7','174','0','0','Wristguard of the Bone Witch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144017','3','4','0','35358','2','4','174','0','0','Emeline\'s Locket','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144018','3','4','1','56522','6','7','174','0','0','Bridenbrad\'s Sash','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144019','3','4','1','56527','1','7','174','0','0','The Argent Skullcap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144020','3','4','1','56537','16','7','174','0','0','Bloodbane\'s Fall','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144021','3','4','1','56539','8','7','174','0','0','The Darkspeaker\'s Footpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144022','3','4','0','31138','23','4','174','0','7','The Witching Grimoire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144023','3','4','0','56553','23','4','174','0','7','Bonecaster\'s Endgame','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144024','3','4','2','56540','8','8','174','0','0','The Darkspeaker\'s Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144025','3','4','1','28693','16','7','174','0','0','Bloodbane Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144026','3','4','1','56538','16','7','174','0','0','Bloodbane\'s Resolve','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144027','3','4','1','56070','16','7','174','0','0','Bloodbane Shroud','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144028','3','2','15','52445','13','1','174','0','3','Vengance Shiv','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144029','3','2','7','52571','13','1','174','0','3','Quickblade of Cold Return','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144030','3','4','3','56541','8','5','174','0','0','The Darkspeaker\'s Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144031','3','4','4','56542','8','6','174','0','0','The Darkspeaker\'s Iron Walkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144032','3','4','6','50607','14','1','174','0','4','Bulwark of Redemption','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144033','3','4','0','40035','2','4','174','0','0','The Severed Noose of Westwind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144034','3','4','0','9857','2','4','174','0','0','Amulet of the Crusade','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144035','3','4','0','56781','2','4','174','0','0','Reinforced Titanium Neckguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144036','3','4','2','56516','9','7','174','0','0','Njorndar Furywraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144037','3','4','3','56517','9','5','174','0','0','Iskalder\'s Fate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144038','3','4','4','56518','9','6','174','0','0','Battlescar Spirebands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144039','3','4','0','56558','11','8','174','0','0','Signet of Bridenbrad','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144040','3','4','4','52304','1','6','174','0','0','The Crusader\'s Resolution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144041','3','4','2','56523','6','8','174','0','0','Belt of the Never-Forgotten','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144042','3','4','3','56524','6','5','174','0','0','Chained Belt of Remembrance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144043','3','4','4','56526','6','6','174','0','0','Girdle of Eternal Memory','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144044','3','4','2','57523','1','8','174','0','0','Tirion\'s Headwrap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144045','3','4','3','56534','1','5','174','0','0','Crusader\'s Coif','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144046','3','4','4','56532','1','6','174','0','0','The Argent Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144050','4','2','20','55572','17','1','200','0','1','Mastercraft Kalu\'ak Fishing Pole','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144051','3','2','15','55573','13','1','187','78','3','Traditional Flensing Knife','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144052','3','2','4','55574','21','1','187','78','3','Totemic Purification Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144053','3','2','6','57482','17','2','187','78','2','Whale-Stick Harpoon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144054','3','4','2','55608','5','8','166','76','0','Whale-Skin Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144055','3','4','2','55611','5','8','166','76','0','Whale-Skin Vest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144057','3','4','4','55605','5','6','166','76','0','Ivory-Reinforced Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144058','3','4','4','55612','5','6','166','76','0','Whalebone Carapace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144059','3','4','3','55604','5','5','166','76','0','Cuttlefish Scale Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144060','3','4','3','55603','5','5','166','76','0','Cuttlefish Tooth Ringmail','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144061','3','4','1','55606','20','7','166','76','0','Pigment-Stained Robes','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144062','3','4','1','55607','20','7','166','76','0','Turtle-Minders Robe','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144063','3','4','0','55609','12','4','200','75','0','Figurine - Monarch Crab','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144073','4','4','0','55773','12','8','200','70','0','Frenzyheart Insignia of Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144074','4','4','0','34188','12','8','200','70','0','Oracle Talisman of Ablution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144091','7','2','15','3363','13','1','1','0','3','Sharpened Scarlet Kris','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144092','7','2','8','23264','17','1','1','0','1','Reforged Truesilver Champion','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144093','7','2','3','28636','26','1','1','0','0','Upgraded Dwarven Hand Cannon','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144094','7','2','4','21956','21','2','1','0','3','The Blessed Hammer of Grace','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144095','7','2','10','20298','17','2','1','0','2','Grand Staff of Jordan','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144096','7','2','7','29769','13','1','1','0','3','Battleworn Thrash Blade','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144097','7','4','0','37841','12','4','1','0','0','Inherited Insignia of the Horde','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144098','7','4','0','37840','12','4','1','0','0','Inherited Insignia of the Alliance','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144099','7','4','4','28282','3','6','1','0','0','Strengthened Stockade Pauldrons','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144100','7','4','4','29971','3','6','1','0','0','Pristine Lightforge Spaulders','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144101','7','4','3','34651','3','5','1','0','0','Prized Beastmaster\'s Mantle','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144102','7','4','3','34697','3','5','1','0','0','Aged Pauldrons of The Five Thunders','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144103','7','4','2','25687','3','8','1','0','0','Exceptional Stormshroud Shoulders','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144104','3','4','1','55691','6','7','187','78','0','Fishy Cinch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144105','7','4','2','34643','3','8','1','0','0','Lasting Feralheart Spaulders','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144106','3','4','2','43065','6','8','187','78','0','Glitterscale Wrap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144107','7','4','1','23737','3','7','1','0','0','Exquisite Sunderseer Mantle','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144108','3','2','19','55698','26','2','187','78','0','Shinygem Rod','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144109','3','4','3','57526','1','5','187','78','0','Toothslice Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144110','3','4','3','58223','1','5','187','78','0','Sharkjaw Cap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144111','3','4','4','55695','3','6','187','78','0','Gold Star Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144112','3','4','4','55696','3','6','187','78','0','Glimmershell Shoulder Protectors','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144116','3','4','1','55757','10','7','187','78','0','Muddied Crimson Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144117','3','4','2','55760','7','6','174','78','0','Azure Strappy Pants','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144118','3','2','16','55762','25','2','187','78','0','Stolen Vrykul Harpoon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144120','3','4','4','55772','10','5','187','78','0','Giant-Sized Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144121','3','4','4','55758','10','5','187','78','0','Sparkly Shiny Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144122','3','4','3','55763','7','5','187','78','0','Scavenged Feathery Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144123','3','4','4','55771','7','6','187','78','0','Discarded Titanium Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144166','3','2','15','55818','13','1','187','78','3','Lightblade Rivener','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144167','3','4','1','51004','16','7','187','78','0','Shroud of Dedicated Research','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144170','3','4','2','51003','1','8','187','78','0','Helm of the Majestic Stag','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144171','3','4','3','55825','3','8','187','78','0','Spaulders of Grounded Lightning','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144173','3','2','15','51703','21','1','200','80','3','Flameheart Spell Scalpel','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144174','3','2','10','50536','17','2','200','80','2','Stave of Shrouded Mysteries','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144176','3','4','4','51686','6','6','200','80','0','Girdle of the Warrior Magi','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144179','3','4','2','55856','7','8','200','80','0','Mind-Expanding Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144180','4','4','1','55877','20','7','200','80','0','Robes of Crackling Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144181','4','4','2','55884','6','8','200','80','0','Ghostflicker Waistband','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144182','4','4','3','55900','8','5','200','80','0','Boots of Twinkling Stars','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144183','4','4','4','53132','10','-1','200','80','0','Fireproven Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144187','3','2','7','50514','13','1','187','78','3','Fang of Truth','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144188','3','4','1','55943','16','7','187','78','0','Cloak of Peaceful Resolutions','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144189','3','4','3','55962','6','5','187','78','0','Giant Ring Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144190','3','4','2','55964','3','8','187','78','0','Spaulders of Frozen Knives','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144191','3','2','1','53056','17','1','200','80','1','Ice-Rimed Chopper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144192','3','2','0','55974','13','1','200','80','3','Stalactite Chopper','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144193','3','2','15','49373','13','1','200','80','3','Broken Stalactite','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144194','3','4','2','55976','7','8','200','80','0','Giant-Friend Kilt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144195','3','4','4','49876','3','6','200','80','0','Spaulders of the Giant Lords','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144196','3','4','1','55993','6','6','187','78','0','Sash of the Wizened Wyrm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144197','3','4','4','55990','9','6','187','78','0','Bracers of Accorded Courtesy','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144198','3','4','4','55983','5','6','200','80','0','Breastplate of the Solemn Council','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144199','3','2','4','55984','21','2','200','80','3','Gavel of the Brewing Storm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144200','3','4','1','55989','9','7','200','80','0','Ancestral Sinew Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144201','3','4','4','55986','8','6','200','80','0','Sabatons of Draconic Vigor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144202','4','4','1','55987','8','7','200','80','0','Sandals of Crimson Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144203','4','4','2','55988','9','8','200','80','0','Dragonfriend Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144204','4','4','3','55991','10','5','200','80','0','Grips of Fierce Pronouncements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144205','4','4','4','55992','7','6','200','80','0','Legplates of Bloody Reprisal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144210','4','4','0','23171','23','4','200','77','7','Faces of Doom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144211','2','4','1','53085','10','7','138','68','0','Frostwoven Gloves','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144213','3','4','0','6497','2','4','35','30','0','Darkmoon Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144214','3','2','19','9063','26','2','187','78','0','Purifying Torch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144215','3','4','0','7271','2','4','35','30','0','Darkmoon Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144216','3','4','1','56070','16','7','187','78','0','Cloak of Holy Extermination','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144217','3','2','15','56069','13','1','45','40','3','Darkmoon Dirk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144218','3','2','1','56086','17','1','45','40','1','Darkmoon Executioner','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144219','3','2','10','56080','17','2','45','40','2','Darkmoon Magestaff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144239','3','4','4','56180','7','6','187','78','0','Standard Issue Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144240','3','4','4','56183','7','6','187','78','0','Special Issue Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144241','3','2','13','56203','22','1','187','78','7','Unholy Persuader','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144242','3','4','1','56190','16','7','187','78','0','Dark Soldier Cape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144243','3','4','4','56196','8','6','187','78','0','Toxin-Tempered Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144244','3','2','5','56206','17','1','200','80','1','Argent Skeleton Crusher','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144245','3','2','3','56210','26','1','200','80','0','Zombie Sweeper Shotgun','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144247','3','4','4','55312','1','6','200','80','0','Fang-Deflecting Faceguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144248','3','4','3','56218','1','5','200','80','0','Battle Mender\'s Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144249','3','2','8','56219','17','1','200','80','1','Runeblade of Demonstrable Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144250','3','2','7','52928','13','1','200','80','3','Reaper of Dark Souls','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144253','4','4','0','56181','12','4','200','80','0','Darkmoon Card: Greatness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144254','4','4','0','56181','12','4','200','80','0','Darkmoon Card: Greatness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144255','4','4','0','56181','12','4','200','80','0','Darkmoon Card: Greatness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144256','3','4','1','56260','10','7','200','80','0','Sterile Flesh-Handling Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144257','3','4','3','56261','3','5','200','80','0','Spaulders of the Black Arrow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144258','3','4','2','56262','9','8','200','80','0','Wound-Binder\'s Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144283','4','4','0','44357','11','3','200','80','0','Signet of Hopeful Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144295','4','4','3','56267','5','5','200','80','0','Polished Regimental Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144296','4','4','4','56269','1','-1','200','80','0','Helm of Purified Thoughts','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144297','4','4','2','56399','8','8','200','80','0','Boots of the Neverending Path','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144302','4','4','1','56293','6','7','200','80','0','Belt of Dark Mending','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144303','4','4','2','56295','5','8','200','80','0','Darkheart Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144305','4','4','3','56296','7','5','200','80','0','Kilt of Dark Mercy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144306','4','4','4','56297','8','1','200','80','0','Death-Inured Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144308','4','4','0','53042','11','5','200','80','0','Signet of Edward the Odd','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144309','4','4','1','56301','6','7','200','80','0','Sash of Jordan','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144310','4','2','15','56302','13','1','200','80','3','Namlak\'s Supernumerary Sticker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144311','4','2','7','56304','13','1','200','80','3','Avool\'s Sword of Jin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144312','4','4','4','56305','3','1','200','80','0','Wapach\'s Spaulders of Solidarity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144313','4','4','6','42409','14','6','200','80','4','Zom\'s Crackling Bulwark','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144333','4','4','2','56398','8','8','200','80','0','Ghostcrawler\'s Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144334','3','4','0','41951','11','8','175','0','0','Ring of Temerity','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144335','3','4','0','51243','11','8','175','0','0','Band of Motivation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144336','3','4','0','56339','11','8','175','0','0','Flourishing Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144337','3','4','0','56664','11','8','175','0','0','Staunch Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144338','3','4','1','51044','9','7','175','0','0','Cuffs of Gratitude','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144339','3','4','2','53245','9','7','175','0','0','Soaring Wristwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144340','3','4','3','51357','9','5','175','0','0','Bindings of Raelorasz','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144341','3','4','4','51899','9','6','175','0','0','Bracers of Reverence','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144342','3','4','2','56054','7','6','167','0','0','Tattooed Deerskin Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144343','3','4','1','56056','7','7','167','0','0','Conferred Pantaloons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144344','3','4','3','51324','7','5','167','0','0','Labyrinthine Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144345','3','4','4','51902','7','6','167','0','0','Dalaran Warden\'s Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144346','3','4','1','56870','7','7','146','0','0','Warchief\'s Leggings of Wisdom','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144347','3','4','2','56871','7','6','146','0','0','Warchief\'s Legguards of Heroism','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144348','3','4','3','56869','7','5','146','0','0','Warchief\'s Leggings of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144349','3','4','4','56872','7','6','146','0','0','Warchief\'s Legplates of Carnage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144350','3','4','1','56011','3','7','163','0','0','Mantle of Thwarted Evil','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144351','3','4','2','51857','3','8','163','0','0','Shoulderpads of Abhorrence','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144352','3','4','4','51927','3','6','163','0','0','Shoulderplates of the Abolished','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144353','3','4','3','51883','3','5','163','0','0','Epaulets of the Faceless Ones','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144354','3','4','3','51310','5','5','174','0','0','Assault Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144355','3','4','1','56784','20','7','167','0','0','Incursion Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144356','3','4','2','56785','5','8','167','0','0','Vest of the Assailant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144357','3','4','4','56787','5','6','167','0','0','Besieging Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144358','3','4','1','52441','8','7','159','0','0','Kilix\'s Silk Slippers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144359','3','4','2','49903','8','8','159','0','0','Don Soto\'s Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144360','3','4','3','51195','8','5','159','0','0','Husk Shard Sabatons','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144361','3','4','4','51131','8','6','159','0','0','Greaves of the Traitor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144362','3','4','4','56759','10','5','159','0','0','Expelling Gauntlets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144363','3','4','3','51884','10','5','159','0','0','Purging Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144364','3','4','2','56758','10','8','159','0','0','Wraps of Quelled Bane','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144365','3','4','1','51145','10','7','159','0','0','Gloves of Banished Infliction','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144366','3','4','1','52387','9','7','159','0','0','Shameful Cuffs','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144367','3','4','2','56774','9','7','159','0','0','Scorned Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144368','3','4','3','52485','9','5','159','0','0','Accused Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144369','3','4','4','50752','9','6','159','0','0','Disavowed Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144370','3','4','1','49464','3','7','175','0','0','Mantle of the Intrepid Explorer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144371','3','4','2','51857','3','8','175','0','0','Shoulderpads of the Adventurer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144372','3','4','3','51883','3','5','175','0','0','Spaulders of Lost Secrets','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144373','3','4','4','51577','3','6','175','0','0','Pauldrons of Reconnaissance','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144374','3','4','0','9857','2','4','151','0','0','Amulet of the Tranquil Mind','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144375','3','4','0','34204','2','4','151','0','0','Razor-Blade Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144376','3','4','0','9657','2','4','151','0','0','Necklace of Fragmented Light','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144377','3','4','0','9852','2','4','151','0','0','Woven Steel Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144378','3','4','1','56011','3','7','174','0','0','Mantle of the Flesh Giant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144379','3','4','2','51857','3','8','174','0','0','Shoulderpads of Fleshwerks','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144380','3','4','3','51883','3','5','174','0','0','Giant Champion\'s Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144381','3','4','4','49876','3','6','174','0','0','Pauldrons of Morbidus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144382','3','4','1','51370','20','7','183','0','0','Robes of Refrained Celebration','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144383','3','4','4','56777','5','6','183','0','0','Battleplate of Unheard Ovation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144384','3','4','3','51310','5','5','183','0','0','Chestguard of Unwanted Success','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144385','3','4','2','50025','5','8','183','0','0','Tunic of the Unduly Victorious','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144386','3','4','0','56764','11','8','174','0','0','Newt-Eye Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144387','3','4','0','56766','11','8','174','0','0','Bat-Wool Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144388','3','4','0','56765','11','8','174','0','0','Frog-Toe Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144391','3','4','0','32008','2','4','174','0','0','Cast Steel Choker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144392','3','4','0','43701','2','4','174','0','0','Necklace of Permeation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144393','3','2','18','50166','26','2','174','0','0','Polished Zombie Exterminator','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144394','3','2','19','55296','26','2','174','0','0','Encrusted Zombie Finger','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144395','3','2','19','55296','26','2','174','0','0','Touch of Unlife','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144396','3','4','1','51145','10','7','187','0','0','Gloves of the Time Guardian','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144397','3','4','2','49251','10','8','187','0','0','Handwraps of Preserved History','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144398','3','4','3','51884','10','5','187','0','0','Grips of Chronological Events','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144399','3','4','4','52406','10','5','187','0','0','Gauntlets of The Culling','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144400','3','4','0','31603','2','4','146','0','0','Necklace of Calm Skies','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144401','3','4','0','34034','2','4','146','0','0','Hundred Tooth Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144402','3','4','0','15420','2','4','146','0','0','Tiled-Stone Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144403','3','4','0','9859','2','4','146','0','0','Amulet of Constrained Power','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144404','3','4','1','56788','20','7','187','0','0','Bauble-Woven Gown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144405','3','4','2','52514','5','8','187','0','0','Exotic Leather Tunic','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144406','3','4','3','52412','5','5','187','0','0','Gilded Ringmail Hauberk','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144407','3','4','4','56789','5','6','187','0','0','Silver-Plated Battlechest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144408','3','4','1','52530','1','7','187','0','0','Cowl of the Vindictive Captain','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144409','3','4','2','56791','1','8','187','0','0','Headguard of Retaliation','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144410','3','4','3','56792','1','5','187','0','0','Helmet of Just Retribution','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144411','3','4','4','52302','1','6','187','0','0','Platehelm of Irate Revenge','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144412','3','4','4','52302','1','6','187','0','0','Faceguard of Punishment','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144415','3','2','10','56238','17','2','200','80','2','Savage Gladiator\'s War Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144416','3','2','10','56238','17','2','200','80','2','Savage Gladiator\'s Focus Staff','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144417','4','2','10','56252','17','2','200','80','2','Hateful Gladiator\'s War Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144418','4','2','10','56252','17','2','200','80','2','Hateful Gladiator\'s Focus Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144419','4','2','10','56409','17','2','213','80','2','Deadly Gladiator\'s War Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144420','4','2','10','56409','17','2','213','80','2','Deadly Gladiator\'s Focus Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144421','4','2','10','56238','17','2','232','80','2','Furious Gladiator\'s War Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144422','4','2','10','56238','17','2','232','80','2','Furious Gladiator\'s Focus Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144423','4','2','10','60816','17','2','245','80','2','Relentless Gladiator\'s War Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144424','4','2','10','60804','17','2','245','80','2','Relentless Gladiator\'s Focus Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144428','2','4','3','55018','5','5','76','76','0','Dark Frostscale Chestpiece','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144429','4','4','1','27088','16','7','156','70','0','Volanthius Shroud','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144431','4','4','1','27088','16','7','156','70','0','Cloak of Certain Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144436','3','4','3','56673','7','7','167','75','0','Dark Frostscale Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144437','3','4','3','55018','5','5','171','76','0','Dark Frostscale Breastplate','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144438','3','4','3','56675','8','7','175','77','0','Dragonstompers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144440','3','4','2','56680','7','7','167','75','0','Dark Iceborne Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144441','3','4','2','56679','5','5','171','76','0','Dark Iceborne Chestguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144442','3','4','2','56677','8','7','175','77','0','Bugsquashers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144443','3','4','3','56672','7','7','167','75','0','Dark Nerubian Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144444','3','4','3','55018','5','5','171','76','0','Dark Nerubian Chestpiece','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144445','3','4','3','56725','8','5','175','77','0','Scaled Icewalkers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144504','4','2','3','57236','26','1','200','80','0','Nesingwary 4000','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144505','3','2','15','56796','13','1','187','78','3','Dustbringer','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144579','3','4','0','23716','12','4','146','0','0','Medallion of Heroism','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144583','3','4','2','56868','7','6','146','0','0','Warchief\'s Legguards of Brutality','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144590','3','4','3','56876','7','5','146','0','0','Warchief\'s Leggings of Foresight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144591','3','4','3','56876','7','5','146','0','0','Wrynn\'s Leggings of Foresight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144592','3','4','3','56869','7','5','146','0','0','Wrynn\'s Leggings of Valor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144593','3','4','1','56870','7','7','146','0','0','Wrynn\'s Leggings of Wisdom','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144594','3','4','2','56868','7','6','146','0','0','Wrynn\'s Legguards of Brutality','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144595','3','4','2','56871','7','6','146','0','0','Wrynn\'s Legguards of Heroism','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144596','3','4','4','56872','7','6','146','0','0','Wrynn\'s Legplates of Carnage','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144597','3','4','0','23716','12','4','146','0','0','Medallion of Heroism','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144604','1','2','10','46701','17','2','20','60','0','Borrowed Broom','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144635','1','2','3','56908','26','-1','80','70','0','Dalaran Rifle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144636','1','2','4','56901','13','2','80','70','3','Dalaran Cudgel','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144637','1','2','18','56909','26','-1','80','70','0','Dalaran Crossbow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144638','1','2','7','56903','13','1','80','70','3','Dalaran Sword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144639','1','2','8','56902','17','1','80','70','1','Dalaran Greatsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144640','1','2','1','40300','17','1','80','70','1','Dalaran Great Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144641','1','2','13','56907','21','8','80','70','7','Dalaran Knuckles','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144642','1','2','0','39387','21','1','80','70','3','Dalaran Axe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144643','1','2','2','56904','15','-1','80','70','0','Dalaran Bow','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144644','1','2','16','26361','25','4','80','70','0','Dalaran Dart','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144645','1','2','5','56905','17','2','80','70','3','Dalaran Hammer','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144647','1','4','0','57029','1','7','1','0','0','Violet Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144648','1','4','0','57033','1','7','1','0','0','Purple Turban','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144649','3','4','4','56883','10','5','159','70','0','Crystalbark\'s Toenail','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144652','1','2','15','39978','13','1','80','70','3','Dalaran Dagger','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144654','1','2','6','56910','17','2','80','70','1','Dalaran Spear','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144655','1','2','10','56912','17','2','80','70','2','Dalaran Stave','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144657','4','4','0','31899','2','4','213','0','0','Torque of the Red Dragonflight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144658','4','4','0','39212','2','4','213','0','0','Chain of the Ancient Wyrm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144659','4','4','0','31604','2','4','213','0','0','Pendant of the Dragonsworn','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144660','4','4','0','9658','2','4','213','0','0','Drakescale Collar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144661','4','4','0','6490','2','4','226','0','0','Wyrmrest Necklace of Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144662','4','4','0','23713','2','4','226','0','0','Life-Binder\'s Locket','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144664','4','4','0','39210','2','4','226','0','0','Favor of the Dragon Queen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144665','4','4','0','9854','2','4','226','0','0','Nexus War Champion Beads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144666','3','4','2','55359','5','8','159','70','0','Flumblub\'s Seat Cushion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144667','3','4','1','56924','1','7','159','70','0','Mammoth-Hair Crown','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144668','3','4','1','56927','20','7','159','70','0','Egg-Warming Blanket','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144669','3','4','3','56929','9','5','159','70','0','Worgen-Scored Shackles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144670','3','4','4','56930','6','6','159','70','0','Soul-Sealed Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144671','3','4','3','56937','7','5','167','72','0','Highlord\'s Padded Legguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144672','3','4','2','56943','3','8','167','72','0','Seal-Fur Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144673','3','4','1','56951','8','6','167','72','0','Mammoth-Riding Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144674','3','4','1','56953','9','7','167','72','0','Ichor-Stained Wraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144675','3','4','3','56958','10','5','167','72','0','Rock-Giant\'s Pinky Cover','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144676','3','4','2','56963','7','6','167','72','0','Syreian\'s Leggings','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144677','3','4','4','56964','7','6','174','74','0','Eternal Observer\'s Legplates','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144678','1','4','0','56981','23','4','1','0','0','Wine Glass','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144679','1','4','0','56995','23','4','1','0','0','Red Wine Glass','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144681','3','4','0','3258','11','3','183','76','0','Titanium Brain-Gear','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144682','3','4','0','45351','2','5','183','76','0','Time-Forward Talisman','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144683','3','4','0','34336','11','3','175','74','0','King\'s Eyesocket','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144685','3','4','3','51883','3','5','175','74','0','Calcified Web Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144686','3','4','2','56988','10','8','175','74','0','Ethereal Terror Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144687','3','4','1','51733','16','7','175','74','0','Loque\'Nahak\'s Pelt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144688','3','4','0','39432','2','3','175','74','0','Loque\'Nahak\'s Severed Fang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144691','3','4','4','51899','9','6','175','74','0','Aotona\'s Collar','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144692','1','4','0','57042','20','7','1','0','0','Dalaran Nurse\'s Gown','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144693','1','4','0','50486','4','7','1','0','0','Wound Dressing','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144694','1','4','0','57043','4','7','1','0','0','Antiseptic-Soaked Dressing','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144695','3','4','4','51904','1','6','183','76','0','Corroded Faceguard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144696','3','4','2','56516','9','7','183','76','0','Giant\'s Toewrap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144697','3','4','3','57051','5','5','183','76','0','Val\'kyr Vestments','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144703','2','2','15','57080','13','1','187','78','3','Dark Herring','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144708','3','2','5','31265','17','1','187','80','1','Dirkee\'s Superstructure','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144719','3','4','0','57578','0','3','75','75','0','Frenzyheart Brew','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144731','2','4','0','6487','23','4','60','0','0','Bouquet of Ebon Roses','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144732','3','4','2','57302','1','8','183','78','0','Azure Dragonleather Helm','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144734','3','2','4','57332','21','1','175','0','3','Hammer of Quiet Mourning','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144735','3','2','0','57334','13','1','175','0','3','Crescent of Brooding Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144736','3','2','7','52928','13','1','175','0','3','Sword of Heartwrenching Slaughter','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144737','1','4','0','57337','20','7','1','0','0','Draenic Silk Robes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144740','3','4','2','45782','1','7','183','0','0','Mechanized Snow Goggles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144741','3','4','3','45782','1','7','183','0','0','Mechanized Snow Goggles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144742','3','4','4','45782','1','7','183','0','0','Mechanized Snow Goggles','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144743','1','4','1','15337','1','7','29','24','0','Cultist Acolyte\'s Hood Target','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144745','3','2','7','57384','13','1','174','0','3','Blade of the Empty Void','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144746','3','2','15','49373','13','1','174','0','3','Knife of the Tarnished Soul','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144747','3','2','4','57385','21','2','174','0','3','Hammer of Wrenching Change','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144748','3','2','10','50535','17','2','174','0','2','Stave of Youthful Sorrow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144785','1','4','0','58015','20','4','1','0','0','Pilgrim\'s Dress','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144788','1','4','0','58013','8','4','1','0','0','Pilgrim\'s Boots','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144800','1','4','0','58603','20','7','1','0','0','Spring Robes','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144802','1','4','0','57617','23','2','1','0','0','Egg Basket','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144803','1','4','0','59492','1','4','1','0','0','Spring Circlet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144869','4','4','0','55773','12','8','200','70','0','Frenzyheart Insignia of Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144870','4','4','0','34188','12','8','200','70','0','Oracle Talisman of Ablution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144891','4','4','2','55647','8','8','200','80','0','Titan-Forged Boots of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144892','4','4','2','55647','8','8','200','80','0','Titan-Forged Boots of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144893','4','4','2','55749','8','8','200','80','0','Titan-Forged Boots of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144894','4','4','4','55651','8','6','200','80','0','Titan-Forged Greaves of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144895','4','4','4','55650','8','6','200','80','0','Titan-Forged Greaves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144896','4','4','3','56949','8','5','200','80','0','Titan-Forged Sabatons of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144897','4','4','3','56949','8','5','200','80','0','Titan-Forged Sabatons of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144898','4','4','3','55652','8','5','200','80','0','Titan-Forged Sabatons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144899','4','4','1','55653','8','7','200','80','0','Titan-Forged Slippers of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144900','4','4','1','55654','8','7','200','80','0','Titan-Forged Slippers of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144901','4','4','4','55312','1','6','200','80','0','Titan-Forged Plate Headcover of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144902','4','4','4','55311','1','6','200','80','0','Titan-Forged Plate Helm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144903','4','4','3','57526','1','5','200','80','0','Titan-Forged Chain Helm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144904','4','4','3','58223','1','5','200','80','0','Titan-Forged Mail Helm of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144905','4','4','3','58223','1','5','200','80','0','Titan-Forged Ringmail Helm of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144906','4','4','2','57700','1','8','200','80','0','Titan-Forged Leather Helm of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144907','4','4','2','57700','1','8','200','80','0','Titan-Forged Leather Helm of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144908','4','4','2','57705','1','8','200','80','0','Titan-Forged Leather Helm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144909','4','4','1','57707','1','7','200','80','0','Titan-Forged Hood of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144910','4','4','1','57706','1','7','200','80','0','Titan-Forged Hood of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144912','4','4','0','39984','12','4','200','80','0','Flow of Knowledge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144914','4','4','0','57709','12','4','200','80','0','Anvil of Titans','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144915','1','2','14','34365','0','4','1','0','0','Elune\'s Candle','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144924','4','2','1','57733','17','1','115','70','1','Arcanite Ripper (NEW)','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144926','4','2','8','52261','17','1','200','80','1','Titansteel Deflector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144930','4','4','2','57749','8','7','200','80','0','Windripper Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144931','4','4','2','57748','7','7','200','80','0','Windripper Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144934','4','4','0','52459','11','3','200','80','0','Loop of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144935','4','4','0','52632','11','5','200','80','0','Ring of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144948','4','2','1','50965','17','1','200','80','1','Titansteel Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('144949','4','4','4','45782','1','7','200','72','0','Unbreakable Healing Amplifiers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145037','4','4','0','57994','4','7','1','0','0','Epic Purple Shirt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145052','2','4','2','46626','7','7','55','48','0','Gruffscale Leggings','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145061','0','2','14','58186','17','4','1','0','1','Foam Sword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145067','1','4','0','57617','23','2','1','0','0','Egg Basket','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145073','1','2','14','58372','13','7','1','0','0','Spring Flowers','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145074','4','2','8','59509','17','1','200','80','1','Claymore of the Prophet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145075','4','2','4','59077','13','1','200','80','3','Ironforge Smasher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145076','4','2','0','59078','13','1','200','80','3','Teldrassil Protector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145077','4','2','15','59583','13','1','200','80','3','Dagger of the Rising Moon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145078','4','2','15','59080','21','1','200','80','3','Dagger of Lunar Purity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145085','4','2','15','58166','21','1','200','80','3','Titansteel Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145086','4','2','16','58948','25','1','232','80','0','Rising Sun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145106','4','4','0','43837','11','5','226','80','0','Strength of the Automaton','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145107','4','4','4','59701','1','4','226','80','0','Iron Riveted War Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145108','4','4','2','59741','9','8','226','80','0','Mechanist\'s Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145109','4','4','3','59631','10','5','226','80','0','Gloves of the Fiery Behemoth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145110','4','2','7','59382','13','1','232','80','3','Titanguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145111','4','4','4','59713','9','6','226','80','0','Mimiron\'s Inferno Couplings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145112','4','4','0','44841','11','3','226','80','0','The Leviathan\'s Coil','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145113','4','4','0','35367','11','3','226','80','0','Glowing Ring of Reclamation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145114','4','4','9','25246','28','2','226','80','0','Steamcaller\'s Totem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145115','4','4','0','61864','23','3','226','80','0','Leviathan Fueling Manual','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145116','4','4','0','35358','2','4','226','80','0','Freya\'s Choker of Warding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145117','4','4','1','59730','10','7','226','80','0','Constructor\'s Handwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145118','4','4','3','59280','1','5','226','80','0','Steamworker\'s Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145119','4','4','1','61867','6','7','226','80','0','Embrace of the Leviathan','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145120','1','2','20','58167','17','2','1','0','1','Basic Fishing Pole','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145128','4','2','10','59623','17','2','200','80','2','Silvery Sylvan Stave','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145129','4','2','7','59079','21','1','200','80','3','Gnomeregan Bonechopper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145130','4','2','3','59581','26','1','200','80','0','Blunderbuss of Khaz Modan','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145131','3','4','0','59068','12','4','200','80','0','Jouster\'s Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145132','4','2','13','58897','21','1','239','80','7','Golden Saronite Dragon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145133','4','4','0','39211','2','3','239','80','0','Pendant of Fiery Havoc','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145134','4','4','4','59702','7','6','239','80','0','Plated Leggings of Ruination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145135','4','4','1','58980','8','7','239','80','0','Boots of Fiery Resolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145136','4','4','2','59136','3','8','239','80','0','Shoulderpads of Dormant Energies','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145137','4','2','3','58902','26','1','232','80','0','Veranus\' Bane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145138','4','4','1','58998','16','7','226','80','0','Drape of the Drakerider','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145139','4','4','4','59708','6','6','226','80','0','Dragonslayer\'s Brace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145140','4','4','4','59210','3','1','226','80','0','Razorscale Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145141','4','4','2','58763','7','8','226','80','0','Proto-hide Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145142','4','2','7','58939','13','1','232','80','3','Remorse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145143','4','4','3','59273','7','5','226','80','0','Saronite Mesh Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145144','4','4','10','51913','28','2','226','80','0','Sigil of Deflection','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145145','4','4','7','34960','28','2','226','80','0','Libram of the Sacred Shield','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145146','4','4','1','59027','9','7','226','80','0','Shackles of the Odalisque','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145147','4','2','4','58909','21','1','232','80','3','Guiding Star','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145148','4','4','0','59249','12','4','226','80','0','Living Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145149','4','4','2','59100','9','8','226','80','0','Bracers of the Broodmother','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145150','4','4','1','61871','1','7','226','80','0','Collar of the Wyrmhunter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145151','4','4','3','59153','6','5','226','80','0','Belt of the Fallen Wyrm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145152','3','4','0','31603','2','3','200','80','0','Pendant of Azure Dreams','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145153','3','4','0','34318','2','3','200','80','0','Susurrating Shell Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145154','3','4','0','31604','2','3','200','80','0','Necklace of Valiant Blood','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145155','3','4','0','39211','2','3','200','80','0','Choker of Spiral Focus','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145156','3','4','1','59042','6','6','200','80','0','Sash of Shattering Hearts','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145157','4','4','0','33808','11','5','226','80','0','Cindershard Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145158','4','4','0','59320','12','4','226','80','0','Heart of Iron','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145159','3','4','2','59066','8','8','200','80','0','Treads of Nimble Evasion','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145160','3','4','4','59064','6','6','200','80','0','Girdle of Valorous Defeat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145161','4','4','4','59700','6','6','226','80','0','Girdle of Embers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145162','4','4','2','59738','8','8','226','80','0','Flamestalker Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145163','3','4','4','53629','8','6','200','80','0','Stanchions of Unseatable Furor','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145164','4','4','3','59660','1','5','226','80','0','Helm of the Furnace Master','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145165','4','2','1','58876','17','1','232','80','1','Worldcarver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145166','4','4','4','59707','8','1','226','80','0','Charred Saronite Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145167','4','4','4','59207','5','1','226','80','0','Lifeforge Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145168','4','4','0','44841','11','3','226','80','0','Pyrelight Circle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145169','4','4','9','61970','28','2','226','80','0','Totem of the Dancing Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145170','4','2','19','59390','26','2','232','80','0','Scepter of Creation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145171','4','2','10','58920','17','2','232','80','2','Intensity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145176','0','2','14','58187','17','4','1','0','1','Foam Sword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145177','0','2','14','58188','17','4','1','0','1','Foam Sword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145178','0','2','14','58189','17','4','1','0','1','Foam Sword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145179','0','2','14','58190','17','4','1','0','1','Foam Sword','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145181','3','4','2','59043','6','8','200','80','0','Wrap of the Everliving Tree','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145182','3','4','4','54517','10','1','200','80','0','Gauntlets of Shattered Pride','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145183','3','4','3','59067','8','5','200','80','0','Treads of the Glorious Spirit','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145184','3','4','3','59044','6','5','200','80','0','Cinch of Bonded Servitude','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145185','4','4','2','59112','6','8','226','80','0','Flamewrought Cinch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145186','4','4','1','61862','3','7','226','80','0','Soot-Covered Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145187','4','4','3','59284','9','5','226','80','0','Wristguards of the Firetender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145193','4','4','0','39209','2','3','226','80','0','Insurmountable Fervor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145203','4','2','4','59082','13','1','200','80','3','Grimhorn Crusher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145204','4','2','0','59510','13','1','200','80','3','Axe of the Sen\'jin Protector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145205','4','2','8','59595','17','1','200','80','1','Greatsword of the Sin\'dorei','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145206','3','4','0','9860','2','3','200','80','0','Choker of Feral Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145207','3','4','0','43701','2','3','200','80','0','Necklace of Stolen Skulls','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145208','4','2','7','59511','21','1','200','80','3','Blade of the Keening Banshee','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145209','3','4','1','59073','6','6','200','80','0','Sash of Trumpted Pride','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145210','4','2','3','59582','26','1','200','80','0','Sen\'jin Beakblade Longrifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145211','3','4','2','49378','6','8','200','80','0','Waistguard of Equine Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145212','4','2','10','59626','17','2','200','80','2','Staff of Feral Furies','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145213','3','4','0','48508','2','3','200','80','0','Pendant of Emerald Crusader','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145214','4','2','15','59585','21','1','200','80','3','Scalpel of the Royal Apothecary','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145215','3','4','3','59074','6','5','200','80','0','Links of Unquenched Savagery','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145216','3','4','4','54517','10','1','200','80','0','Gauntlets of Mending Touch','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145217','3','4','4','59075','6','6','200','80','0','Clinch of Savage Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145218','3','4','4','55986','8','6','200','80','0','Blood-Caked Stompers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145219','3','4','0','59069','12','4','200','80','0','Jouster\'s Fury','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145220','3','4','2','51519','8','8','200','80','0','Treads of the Earnest Squire','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145221','3','4','3','59076','8','5','200','80','0','Treads of Whispering Dreams','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145222','4','2','15','59594','13','1','200','80','3','Spinal Destroyer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145223','3','4','0','39210','2','3','200','80','0','Razor\'s Edge Pendant','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145224','4','4','1','51374','16','7','226','80','0','Drape of the Lithe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145225','4','4','4','61879','5','1','226','80','0','Steelbreaker\'s Embrace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145226','4','4','4','59191','1','-1','226','80','0','Ancient Iron Heaume','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145227','4','4','3','59252','3','5','226','80','0','Iron-studded Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145228','4','4','4','59710','10','1','226','80','0','Handguards of the Enclave','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145232','4','4','2','59743','8','8','226','80','0','Runed Ironhide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145233','4','2','8','58947','17','1','232','80','1','Stormrune Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145234','4','2','10','58931','17','2','232','80','2','Rapture','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145235','4','4','0','39125','11','3','226','80','0','Radiant Seal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145236','4','4','0','40051','2','3','226','80','0','Unblinking Eye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145237','4','4','2','59128','20','8','226','80','0','Phaelia\'s Vestments of the Sprouting Seed','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145238','4','4','1','59733','7','7','226','80','0','Overload Legwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145239','4','4','3','59272','10','5','226','80','0','Runeshaper\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145240','4','4','1','61875','20','7','226','80','0','Raiments of the Iron Council','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145241','4','4','4','59695','6','6','239','80','0','Belt of Colossal Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145242','4','4','1','58997','16','7','239','80','0','Drape of Mortal Downfall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145243','4','4','0','35437','2','4','239','80','0','Sapphire Amulet of Renewal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145244','4','4','3','59248','8','5','239','80','0','Greaves of Swift Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145245','4','4','2','59744','3','8','239','80','0','Shoulderpads of the Intruder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145246','4','2','15','59369','13','1','232','80','3','Golem-Shard Sticker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145247','4','4','0','52632','11','3','226','80','0','Signet of the Earthshaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145248','4','4','4','59697','7','6','226','80','0','Clockwork Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145249','4','4','3','59248','8','5','226','80','0','Brass-lined Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145250','4','4','0','43407','11','5','226','80','0','Crazed Construct Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145251','4','4','4','59715','3','1','226','80','0','Shoulderplates of the Deconstructor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145252','4','4','4','59205','9','6','226','80','0','Horologist\'s Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145253','4','4','1','59015','3','7','226','80','0','Mantle of Wavering Calm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145254','4','4','10','51913','28','2','226','80','0','Sigil of the Vengeful Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145255','4','4','9','54871','28','2','226','80','0','Thunderfall Totem','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145256','4','2','10','58927','17','2','232','80','2','Twisted Visage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145257','4','2','19','59389','26','2','232','80','0','Quartz Crystal Wand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145258','4','4','1','59735','8','7','226','80','0','Sandals of Rash Temperament','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145259','4','4','3','59271','5','5','226','80','0','Quartz-studded Harness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145260','4','4','2','59094','8','8','226','80','0','Boots of Hasty Revival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145261','4','2','3','58899','26','1','232','80','0','Giant\'s Bane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145262','4','4','0','48510','2','4','226','80','0','Necklace of Unerring Mettle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145263','4','4','0','59318','12','4','226','80','0','Wrathstone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145264','4','4','4','61876','9','1','226','80','0','Decimator\'s Armguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145265','4','4','2','59744','3','8','226','80','0','Shoulderpads of the Monolith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145266','4','2','7','58937','13','1','232','80','3','Malice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145267','4','4','4','59714','7','1','226','80','0','Saronite Plated Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145268','4','4','4','54711','10','1','226','80','0','Gloves of the Pythonic Guardian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145269','4','4','4','59213','9','6','226','80','0','Unfaltering Armguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145270','4','4','8','34954','28','2','226','80','0','Idol of the Crying Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145271','4','4','0','61877','23','3','226','80','0','Ironmender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145272','4','4','1','59508','20','7','226','80','0','Robes of the Umbral Brute','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145273','4','4','1','59006','10','7','226','80','0','Handwraps of Plentiful Recovery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145274','4','4','3','59257','7','5','226','80','0','Leggings of the Stoneweaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145275','4','4','1','59728','9','7','226','80','0','Bracers of Unleashed Magic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145280','4','4','0','61552','4','7','43','0','0','Shirt of Uber','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145282','4','2','5','58912','17','1','219','80','1','Ironsoul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145283','4','4','4','59302','9','6','219','80','0','Flamewatch Armguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145284','4','2','13','59378','22','1','219','80','7','Kinetic Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145285','4','4','0','9860','2','3','219','80','0','Might of the Leviathan','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145286','4','4','0','59324','12','4','219','80','0','Pyrite Infuser','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145287','4','2','7','59383','21','1','219','80','3','Firesoul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145288','4','4','3','59766','5','5','219','80','0','Firestrider Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145289','4','4','1','59721','1','7','219','80','0','Lifespark Visage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145291','4','4','1','58987','9','7','219','80','0','Combustion Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145292','4','4','0','59311','12','4','219','80','0','Energy Siphon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145293','4','4','2','59759','10','8','226','80','0','Handguards of Potent Cures','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145294','4','2','19','59392','26','2','232','80','0','Petrified Ivy Sprig','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145295','4','4','4','59217','7','1','226','80','0','Gilded Steel Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145296','4','2','16','58949','25','1','232','80','0','Twirling Blades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145297','4','4','0','39124','11','3','226','80','0','Shimmering Seal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145298','4','2','7','58941','13','1','219','80','3','Razorscale Talon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145299','4','4','4','59158','1','-1','219','80','0','Dragonsteel Faceplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145300','4','4','3','59778','3','5','226','80','0','Mantle of Fiery Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145301','4','4','3','59773','9','5','219','80','0','Bracers of the Smothering Inferno','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145302','4','4','2','59590','8','8','219','80','0','Treads of the Invader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145303','4','4','0','11990','11','5','219','80','0','Band of Draconic Guile','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145304','4','4','4','59232','6','6','219','80','0','Stormtempered Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145305','4','4','4','59748','5','1','219','80','0','Breastplate of the Afterlife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145306','4','4','1','58979','6','7','219','80','0','Binding of the Dragon Matriarch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145307','4','4','3','59770','7','5','219','80','0','Ironscale Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145308','4','4','0','59524','12','4','219','80','0','Eye of the Broodmother','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145309','4','2','3','58901','26','1','219','80','0','Rifle of the Platinum Guard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145310','4','4','4','59306','10','1','219','80','0','Gauntlets of the Iron Furnace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145311','4','2','6','58916','17','1','219','80','1','Relentless Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145312','4','4','2','59096','10','8','219','80','0','Gloves of Smoldering Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145313','4','4','0','59313','12','4','219','80','0','Furnace Stone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145314','4','4','0','58973','23','3','219','80','0','Igniter Rod','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145315','4','2','4','58736','13','1','232','80','3','Stonerender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145316','4','4','3','59763','9','5','219','80','0','Armbraces of the Vibrant Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145317','4','4','1','59029','16','7','219','80','0','Shawl of the Caretaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145318','4','4','1','58995','16','7','219','80','0','Drape of Fuming Anger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145319','4','4','1','35430','16','7','226','80','0','Cloak of the Makers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145320','4','4','4','59704','3','6','226','80','0','Shoulderplates of the Eternal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145321','4','4','4','59753','3','1','219','80','0','Pauldrons of Tempered Will','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145322','4','4','1','58985','16','7','219','80','0','Cloak of the Iron Council','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145324','4','4','2','59101','7','8','219','80','0','Leggings of Swift Reflexes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145325','4','4','2','58761','10','8','226','80','0','Gloves of the Stonereaper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145326','4','4','0','35313','11','3','226','80','0','Platinum Band of the Aesir','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145327','4','2','2','58878','15','1','232','80','0','Siren\'s Cry','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145329','4','4','3','59633','1','5','219','80','0','Circlet of True Sight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145330','4','4','4','59150','8','1','219','80','0','Greaves of Iron Intensity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145331','4','2','7','58940','13','1','219','80','3','Rune-Etched Nightblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145332','4','2','15','59376','21','1','219','80','3','Stormtip','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145333','4','4','3','59764','6','5','219','80','0','Belt of the Iron Servant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145334','4','4','4','59716','5','1','226','80','0','Unbreakable Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145335','4','4','4','58229','5','1','219','80','0','Valorous Darkruned Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145336','4','4','4','58231','1','1','219','80','0','Valorous Darkruned Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145337','4','4','4','58230','10','1','219','80','0','Valorous Darkruned Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145338','4','4','4','58330','7','1','219','80','0','Valorous Darkruned Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145339','4','4','4','58233','3','1','219','80','0','Valorous Darkruned Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145340','4','4','4','58229','5','1','219','80','0','Valorous Darkruned Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145341','4','4','4','58247','10','1','219','80','0','Valorous Darkruned Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145342','4','4','4','58231','1','4','219','80','0','Valorous Darkruned Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145343','4','4','4','58329','7','6','219','80','0','Valorous Darkruned Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145344','4','4','4','58249','3','6','219','80','0','Valorous Darkruned Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145345','4','4','2','58239','10','8','219','80','0','Valorous Nightsong Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145346','4','4','2','59573','1','8','219','80','0','Valorous Nightsong Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145347','4','4','2','58335','7','8','219','80','0','Valorous Nightsong Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145348','4','4','2','58337','20','8','219','80','0','Valorous Nightsong Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145349','4','4','2','58243','3','8','219','80','0','Valorous Nightsong Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145350','4','4','2','58242','1','8','219','80','0','Valorous Nightsong Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145351','4','4','2','58239','10','8','219','80','0','Valorous Nightsong Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145352','4','4','2','58243','3','8','219','80','0','Valorous Nightsong Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145353','4','4','2','58335','7','8','219','80','0','Valorous Nightsong Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145354','4','4','2','58337','20','8','219','80','0','Valorous Nightsong Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145355','4','4','2','58250','10','8','219','80','0','Valorous Nightsong Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145356','4','4','2','59574','1','8','219','80','0','Valorous Nightsong Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145357','4','4','2','58334','7','8','219','80','0','Valorous Nightsong Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145358','4','4','2','59055','20','8','219','80','0','Valorous Nightsong Raiments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145359','4','4','2','58243','3','8','219','80','0','Valorous Nightsong Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145360','4','4','3','58338','10','5','219','80','0','Valorous Scourgestalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145361','4','4','3','59656','1','5','219','80','0','Valorous Scourgestalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145362','4','4','3','58256','7','5','219','80','0','Valorous Scourgestalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145363','4','4','3','58257','3','5','219','80','0','Valorous Scourgestalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145364','4','4','3','58253','5','5','219','80','0','Valorous Scourgestalker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145365','4','4','1','59670','1','7','219','80','0','Valorous Kirin Tor Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145367','4','4','1','59431','7','7','219','80','0','Valorous Kirin Tor Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145368','4','4','1','59517','5','7','219','80','0','Valorous Kirin Tor Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145369','4','4','1','58262','3','7','219','80','0','Valorous Kirin Tor Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145370','4','4','4','58265','10','1','219','80','0','Valorous Aegis Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145371','4','4','4','59612','7','6','219','80','0','Valorous Aegis Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145372','4','4','4','59611','1','4','219','80','0','Valorous Aegis Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145373','4','4','4','59617','3','1','219','80','0','Valorous Aegis Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145374','4','4','4','59618','5','1','219','80','0','Valorous Aegis Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145375','4','4','4','59610','5','1','219','80','0','Valorous Aegis Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145376','4','4','4','58270','10','1','219','80','0','Valorous Aegis Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145377','4','4','4','59611','1','4','219','80','0','Valorous Aegis Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145378','4','4','2','59757','8','8','219','80','0','Boots of the Petrified Forest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145379','4','4','4','59614','7','6','219','80','0','Valorous Aegis Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145380','4','4','4','59616','3','6','219','80','0','Valorous Aegis Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145381','4','4','4','59610','5','1','219','80','0','Valorous Aegis Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145382','4','4','4','59611','1','1','219','80','0','Valorous Aegis Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145383','4','4','4','58275','10','1','219','80','0','Valorous Aegis Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145384','4','4','4','59613','7','1','219','80','0','Valorous Aegis Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145385','4','4','4','59615','3','1','219','80','0','Valorous Aegis Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145386','4','4','1','58284','1','7','219','80','0','Valorous Cowl of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145387','4','4','1','58331','10','7','219','80','0','Valorous Gloves of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145388','4','4','1','58332','7','7','219','80','0','Valorous Leggings of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145389','4','4','1','58333','20','7','219','80','0','Valorous Robe of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145390','4','4','1','58283','3','7','219','80','0','Valorous Shoulderpads of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145391','4','4','1','58284','1','7','219','80','0','Valorous Circlet of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145392','4','4','1','58331','10','7','219','80','0','Valorous Handwraps of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145393','4','4','1','58283','3','7','219','80','0','Valorous Mantle of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145394','4','4','1','58332','7','7','219','80','0','Valorous Pants of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145395','4','4','1','58333','20','7','219','80','0','Valorous Raiments of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145396','4','4','2','58287','5','8','219','80','0','Valorous Terrorblade Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145397','4','4','2','58288','10','8','219','80','0','Valorous Terrorblade Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145398','4','4','2','59648','1','8','219','80','0','Valorous Terrorblade Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145399','4','4','2','58290','7','8','219','80','0','Valorous Terrorblade Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145400','4','4','2','58291','3','8','219','80','0','Valorous Terrorblade Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145401','4','4','3','58293','10','5','219','80','0','Valorous Worldbreaker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145402','4','4','3','59647','1','5','219','80','0','Valorous Worldbreaker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145403','4','4','3','58339','7','5','219','80','0','Valorous Worldbreaker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145404','4','4','3','58296','3','5','219','80','0','Valorous Worldbreaker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145405','4','4','3','59485','20','5','219','80','0','Valorous Worldbreaker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145406','4','4','3','58293','10','5','219','80','0','Valorous Worldbreaker Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145408','4','4','3','59647','1','5','219','80','0','Valorous Worldbreaker Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145409','4','4','3','58339','7','5','219','80','0','Valorous Worldbreaker Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145410','4','4','3','58296','3','5','219','80','0','Valorous Worldbreaker Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145411','4','4','3','59485','20','5','219','80','0','Valorous Worldbreaker Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145412','4','4','3','59646','1','5','219','80','0','Valorous Worldbreaker Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145413','4','4','3','59488','20','5','219','80','0','Valorous Worldbreaker Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145414','4','4','3','58298','10','5','219','80','0','Valorous Worldbreaker Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145415','4','4','3','58301','3','5','219','80','0','Valorous Worldbreaker Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145416','4','4','3','58639','7','5','219','80','0','Valorous Worldbreaker War-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145417','4','4','1','59396','1','7','219','80','0','Valorous Deathbringer Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145418','4','4','0','39124','11','3','219','80','0','Lady Maye\'s Sapphire Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145419','4','4','1','58302','10','7','219','80','0','Valorous Deathbringer Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145420','4','4','1','58327','7','7','219','80','0','Valorous Deathbringer Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145421','4','4','1','58328','20','7','219','80','0','Valorous Deathbringer Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145422','4','4','1','58307','3','7','219','80','0','Valorous Deathbringer Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145423','4','4','1','59723','9','7','219','80','0','Runetouch Wristwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145424','4','4','4','58308','5','1','219','80','0','Valorous Siegebreaker Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145425','4','4','4','59677','1','1','219','80','0','Valorous Siegebreaker Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145426','4','4','4','58309','10','1','219','80','0','Valorous Siegebreaker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145427','4','4','4','58311','7','1','219','80','0','Valorous Siegebreaker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145428','4','4','4','58312','3','1','219','80','0','Valorous Siegebreaker Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145429','4','4','4','58308','5','1','219','80','0','Valorous Siegebreaker Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145430','4','4','4','58313','10','1','219','80','0','Valorous Siegebreaker Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145431','4','4','4','59677','1','4','219','80','0','Valorous Siegebreaker Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145432','4','4','4','58314','7','6','219','80','0','Valorous Siegebreaker Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145433','4','4','4','58315','3','6','219','80','0','Valorous Siegebreaker Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145434','4','4','4','59204','8','1','226','80','0','Greaves of the Rockmender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145435','4','4','1','61871','1','7','226','80','0','Cowl of the Absolute','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145436','4','4','7','34961','28','2','226','80','0','Libram of the Resolute','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145437','4','2','7','58943','21','1','232','80','3','Runescribed Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145438','4','4','0','31905','11','3','226','80','0','Ring of the Faithful Servant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145439','4','4','2','59184','1','8','226','80','0','Unwavering Stare','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145440','4','4','3','59139','3','5','226','80','0','Amice of the Stoic Watch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145441','4','4','1','61873','8','7','226','80','0','Sandals of the Ancient Keeper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145442','4','2','4','58908','13','1','239','80','3','Sorthalis, Hammer of the Watchers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145443','4','4','0','7271','2','4','239','80','0','Charm of Meticulous Timing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145444','4','4','3','59632','10','5','239','80','0','Gloves of the Steady Hand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145445','4','4','4','59197','5','1','239','80','0','Breastplate of the Devoted','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145446','4','4','1','61881','9','7','239','80','0','Grasps of Reason','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145447','4','4','0','44703','2','3','226','80','0','Watchful Eye of Fate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145448','4','2','15','59373','13','1','232','80','3','Perilous Bite','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145449','4','2','13','58895','21','1','232','80','7','The Masticator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145450','4','4','6','61884','14','6','226','80','4','Northern Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145451','4','4','0','39123','11','3','226','80','0','Frozen Loop','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145452','4','4','4','59201','7','6','226','80','0','Frostplate Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145453','4','4','2','59746','5','8','226','80','0','Winter\'s Icy Embrace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145454','4','4','3','59236','9','5','226','80','0','Frost-bound Chain Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145455','4','4','2','59755','6','8','226','80','0','Belt of the Crystal Tree','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145456','4','4','0','44841','11','5','226','80','0','Loop of the Agile','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145457','4','2','10','58930','17','2','239','80','2','Staff of Endless Winter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145458','4','2','1','58874','17','1','219','80','1','Stormedge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145459','4','4','0','9852','2','3','239','80','0','Frigid Strength of Hodir','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145460','4','4','3','59159','9','5','239','80','0','Bindings of Winter Gale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145461','4','4','1','58996','16','7','239','80','0','Drape of Icy Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145462','4','4','2','59121','10','8','239','80','0','Gloves of the Frozen Glade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145463','4','2','4','59365','13','1','232','80','3','Vulmir, the Northern Tempest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145464','4','4','1','59672','1','7','219','80','0','Cowl of Icy Breaths','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145466','4','4','0','59237','12','4','226','80','0','Scale of Fates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145467','4','4','3','59148','6','5','226','80','0','Belt of the Betrayed','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145468','4','4','1','61887','7','7','226','80','0','Leggings of Lost Love','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145469','4','4','0','43095','11','5','226','80','0','Sif\'s Promise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145470','4','4','6','65031','14','6','239','80','4','Wisdom\'s Hold','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145471','4','4','0','44086','11','3','239','80','0','Fate\'s Clutch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145472','4','4','4','59706','1','-1','239','80','0','Warhelm of the Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145473','4','4','2','59737','5','8','239','80','0','Embrace of the Gladiator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145474','4','4','3','59270','3','5','239','80','0','Pauldrons of the Combatant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145479','4','2','10','58925','17','2','232','80','2','The Lifebinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145480','4','4','0','9858','2','3','226','80','0','Nymph Heart Charm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145481','4','4','4','59699','10','1','226','80','0','Gauntlets of Ruthless Reprisal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145482','4','4','2','59127','7','8','226','80','0','Leggings of the Lifetender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145483','4','4','1','59727','8','7','226','80','0','Boots of the Servant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145484','4','2','15','58881','13','1','239','80','3','Bladetwister','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145485','4','4','0','48507','2','4','239','80','0','Bronze Pendant of the Vanir','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145486','4','4','1','59002','16','7','239','80','0','Drape of the Sullen Goddess','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145487','4','4','4','61889','10','1','239','80','0','Handguards of Revitalization','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145488','4','4','1','59732','7','7','239','80','0','Leggings of the Enslaved Idol','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145489','4','2','13','59387','21','1','232','80','7','Insanity\'s Grip','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145490','4','4','0','59319','12','4','226','80','0','Pandora\'s Plea','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145491','4','4','2','58747','6','8','226','80','0','Waistguard of the Creator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145492','4','4','2','59132','3','8','226','80','0','Malleable Steelweave Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145493','4','4','1','58977','16','7','226','80','0','Asimov\'s Drape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145494','4','2','13','59379','22','1','239','80','7','Delirium\'s Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145495','4','4','0','43407','11','3','239','80','0','Conductive Seal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145496','4','4','1','59035','16','7','239','80','0','Titanskin Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145497','4','4','1','59988','1','7','239','80','0','Crown of Luminescence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145498','4','2','6','58915','17','1','232','80','1','Lotrafen, Spear of the Damned','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145501','4','4','4','59696','8','1','226','80','0','Boots of the Underdweller','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145502','4','4','4','59711','1','1','226','80','0','Helm of the Faceless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145503','4','4','0','31616','11','5','226','80','0','Metallic Loop of the Sufferer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145504','4','4','3','59185','7','5','226','80','0','Darkcore Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145505','4','4','4','59194','6','1','226','80','0','Belt of Clinging Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145507','4','4','0','34132','12','4','226','80','0','The General\'s Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145508','4','4','1','59726','6','7','226','80','0','Belt of the Darkspeaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145509','4','4','8','54700','28','2','226','80','0','Idol of the Corruptor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145510','4','4','7','34960','28','2','226','80','0','Libram of Discord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145511','4','2','19','59391','26','2','232','80','0','Scepter of Lost Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145512','4','4','2','59123','10','8','226','80','0','Grips of the Unbroken','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145513','4','4','3','59166','8','5','226','80','0','Boots of the Forgotten Depths','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145514','4','4','1','59015','3','7','226','80','0','Mantle of the Unknowing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145515','4','4','0','34336','11','3','226','80','0','Ring of the Vacant Eye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145516','4','2','8','58946','17','1','239','80','1','Voldrethar, Dark Blade of Oblivion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145517','4','4','0','54999','2','3','239','80','0','Pendulum of Infinity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145518','4','4','0','59269','12','4','239','80','0','Flare of the Heavens','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145519','4','4','2','59129','20','8','239','80','0','Vestments of the Blind Denizen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145520','4','4','1','59009','10','7','239','80','0','Handwraps of the Vigilant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145521','4','2','5','58910','17','1','232','80','1','Earthshaper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145522','4','4','0','59322','12','4','226','80','0','Blood of the Old God','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145523','4','4','2','59739','1','8','226','80','0','Garona\'s Guise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145524','4','4','3','61885','5','5','226','80','0','Chestguard of Insidious Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145525','4','4','0','43095','11','5','226','80','0','Godbane Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145527','4','2','15','58888','21','1','232','80','3','Soulscribe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145529','4','4','1','59028','16','7','226','80','0','Shawl of Haunted Memories','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145530','4','4','0','50376','11','3','226','80','0','Sanity\'s Bond','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145531','4','4','3','61886','5','5','226','80','0','Chestguard of the Fallen God','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145532','4','4','1','59989','1','7','226','80','0','Cowl of Dark Whispers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145533','4','2','6','58913','17','1','239','80','1','Dark Edge of Depravity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145534','4','4','0','53042','11','5','239','80','0','Seal of the Betrayed King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145535','4','4','0','59317','12','4','239','80','0','Show of Faith','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145536','4','4','2','59740','7','8','239','80','0','Legguards of Cunning Deception','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145537','4','4','1','59037','8','7','239','80','0','Treads of the False Oracle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145538','4','4','0','31604','2','4','226','80','0','Titanstone Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145539','4','4','0','48512','2','3','226','80','0','Pendant of Focused Energies','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145540','4','4','0','45948','11','5','226','80','0','Bladebearer\'s Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145541','4','4','1','51736','16','7','226','80','0','Shroud of Alteration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145542','4','4','4','59219','8','1','226','80','0','Greaves of the Stonewarder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145543','4','4','3','59274','3','5','226','80','0','Shoulders of Misfortune','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145544','4','4','3','59258','7','5','226','80','0','Leggings of the Tortured Earth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145547','4','4','2','59742','6','8','226','80','0','Relic Hunter\'s Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145548','4','4','2','58641','6','8','226','80','0','Belt of the Sleeper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145549','4','4','1','59731','9','7','226','80','0','Grips of Chaos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145550','4','4','4','55389','6','6','226','80','0','Belt of the Titans','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145551','4','4','4','59224','6','6','226','80','0','Indestructible Plate Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145552','4','4','4','59209','6','1','226','80','0','Plate Girdle of Righteousness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145553','4','4','3','59145','6','5','226','80','0','Belt of Dragons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145554','4','4','3','59157','6','5','226','80','0','Blue Belt of Chaos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145555','4','4','2','59111','6','8','226','80','0','Death-warmed Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145556','4','4','2','59084','6','8','226','80','0','Belt of Arctic Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145557','4','4','1','58978','6','7','226','80','0','Sash of Ancient Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145558','4','4','1','58990','6','7','226','80','0','Cord of the White Dawn','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145559','4','4','4','53671','8','1','226','80','0','Battlelord\'s Plate Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145560','4','4','4','59667','8','1','226','80','0','Spiked Deathdealers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145561','4','4','4','59212','8','1','226','80','0','Treads of Destiny','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145562','4','4','3','59168','8','5','226','80','0','Boots of Living Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145563','4','4','3','59652','8','5','226','80','0','Lightning Grounded Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145564','4','4','2','59117','8','8','226','80','0','Footpads of Silence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145565','4','4','2','59093','8','8','226','80','0','Boots of Wintry Endurance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145566','4','4','1','59433','8','7','226','80','0','Spellslinger\'s Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145567','4','4','1','61873','8','7','226','80','0','Savior\'s Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145570','4','2','18','58880','26','2','239','80','0','Skyforge Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145574','1','4','0','59981','19','4','1','0','0','Stormwind Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145577','1','4','0','59977','19','4','1','0','0','Ironforge Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145578','1','4','0','59976','19','4','1','0','0','Gnomeregan Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145579','1','4','0','59974','19','7','1','0','0','Darnassus Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145580','1','4','0','59975','19','4','1','0','0','Exodar Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145581','1','4','0','59978','19','4','1','0','0','Orgrimmar Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145582','1','4','0','59979','19','4','1','0','0','Sen\'jin Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145583','1','4','0','59983','19','4','1','0','0','Undercity Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145584','1','4','0','59982','19','4','1','0','0','Thunder Bluff Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145585','1','4','0','59980','19','4','1','0','0','Silvermoon City Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145587','4','4','6','59295','14','6','239','80','4','Bulwark of Algalon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145588','4','4','1','59001','16','7','239','80','0','Drape of the Skyborn','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145594','4','4','4','59712','7','1','239','80','0','Legplates of the Endless Void','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145599','4','4','4','59703','8','1','239','80','0','Sabatons of Lifeless Night','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145605','4','2','15','60171','13','1','232','80','3','Daschal\'s Bite','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145607','4','2','15','58884','13','1','239','80','3','Fang of Oblivion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145608','4','4','0','45362','11','5','239','80','0','Brann\'s Signet Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145609','4','4','0','59321','12','4','239','80','0','Comet\'s Trail','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145610','4','4','3','59658','1','5','239','80','0','Boundless Gaze','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145611','4','4','2','59745','9','8','239','80','0','Solar Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145612','4','2','4','61654','21','1','239','80','3','Constellus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145613','4','2','10','58921','17','2','239','80','2','Dreambinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145614','4','4','0','24646','11','3','239','80','0','Starshine Circle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145615','4','4','3','59649','8','5','239','80','0','Planewalker Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145616','4','4','2','59135','6','8','239','80','0','Star-beaded Clutch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145617','4','4','0','58971','23','3','239','80','0','Cosmos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145618','4','4','1','59034','16','7','239','80','0','Sunglimmer Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145619','4','4','1','59032','6','7','239','80','0','Starwatcher\'s Binding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145620','4','2','15','58885','21','1','239','80','3','Starshard Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145626','3','4','1','58419','16','7','24','19','0','Spidersilk Drape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145627','3','4','0','9852','2','-1','34','29','0','Amulet of Truesight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145629','2','4','1','58418','6','7','44','39','0','Shadoweave Belt','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145630','0','2','0','58420','13','1','81','57','0','Invisible Axe','1','Solo per trasmog!','1','5000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145631','3','4','0','18155','12','8','54','49','0','High-powered Flashlight','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145663','4','4','4','59694','9','1','239','80','0','Armbands of Bedlam','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145664','1','4','0','58541','4','4','1','0','0','Silvermoon Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145665','4','4','1','59734','10','7','239','80','0','Pharos Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145666','1','4','0','58538','4','4','1','0','0','Ironforge Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145667','1','4','0','58542','4','4','1','0','0','Stormwind Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145668','1','4','0','58536','4','4','1','0','0','Exodar Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145669','1','4','0','58540','4','4','1','0','0','Sen\'jin Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145670','1','4','0','58535','4','4','1','0','0','Darnassus Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145671','1','4','0','58537','4','4','1','0','0','Gnomeregan Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145672','1','4','0','58539','4','4','1','0','0','Orgrimmar Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145673','1','4','0','58543','4','4','1','0','0','Thunder Bluff Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145674','1','4','0','58544','4','4','1','0','0','Undercity Doublet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145675','4','4','0','53560','11','5','219','80','0','Power Enhancing Loop','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145676','4','4','4','59167','5','1','219','80','0','Chestplate of Vicious Potency','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145677','4','4','2','59116','3','8','219','80','0','Treacherous Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145679','4','4','3','59775','10','5','219','80','0','Gloves of Taut Grip','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145680','4','4','4','59747','9','6','219','80','0','Armbands of the Construct','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145682','4','4','6','59289','14','6','219','80','4','Pulsing Spellshield','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145685','4','2','15','59374','21','1','219','80','3','Plasma Foil','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145686','4','4','2','59761','5','8','219','80','0','Vest of the Glowing Crescent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145687','4','4','3','59769','1','5','219','80','0','Helm of Veiled Energies','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145688','4','4','0','52632','11','5','213','80','0','Inscribed Band of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145689','4','4','0','52459','11','3','213','80','0','Inscribed Loop of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145690','4','4','0','52632','11','5','213','80','0','Inscribed Ring of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145691','4','4','0','52459','11','3','213','80','0','Inscribed Signet of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145694','4','4','1','59718','6','7','219','80','0','Conductive Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145695','4','2','10','58923','17','2','219','80','2','Spire of Withering Dreams','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145696','4','4','0','31907','2','4','219','80','0','Mark of the Unyielding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145697','4','4','4','59229','3','1','219','80','0','Shoulderguards of the Solemn Watch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145698','4','4','4','59754','8','1','219','80','0','Sabatons of the Iron Watcher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145699','4','4','0','48509','2','4','219','80','0','Pendant of the Piercing Glare','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145700','4','2','7','58942','13','1','219','80','3','Stoneguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145701','4','4','3','59768','8','5','219','80','0','Greaves of the Earthbinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145702','4','4','0','52632','11','3','219','80','0','Emerald Signet Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145703','4','4','0','59326','12','4','219','80','0','Spark of Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145704','4','4','1','54674','16','7','219','80','0','Shawl of the Shattered Giant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145707','4','4','6','59288','14','6','219','80','4','Shieldwall of the Breaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145708','4','4','4','59300','7','6','219','80','0','Archaedas\' Lost Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145709','4','4','2','59105','6','8','219','80','0','Nimble Climber\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145711','4','4','3','59776','3','5','219','80','0','Ironaya\'s Discarded Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145712','4','4','4','59138','5','1','219','80','0','Chestplate of Titanic Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145713','4','2','19','58952','26','2','219','80','0','Nurturing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145808','3','4','0','31800','11','5','200','80','0','Runed Mana Band','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145809','3','4','0','45948','11','5','200','80','0','Scarlet Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145810','3','4','1','55663','16','5','200','80','0','Cloak of Crimson Snow','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145811','3','4','1','49738','16','5','200','80','0','Frostguard Drape','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145812','3','4','0','51280','2','5','200','80','0','Emerald Choker','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145813','3','4','0','31603','2','5','200','80','0','Sky Sapphire Amulet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145819','4','4','0','48508','2','3','226','80','0','Spiked Battleguard Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145820','4','4','0','48512','2','3','226','80','0','Broach of the Wailing Night','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145821','4','4','0','48507','2','4','226','80','0','Shard of the Crystal Forest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145822','4','4','0','48510','2','3','226','80','0','Evoker\'s Charm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145823','4','4','0','6543','2','4','226','80','0','Frozen Tear of Elune','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145824','4','4','4','58746','6','6','226','80','0','Belt of the Singing Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145825','4','4','4','58770','6','6','226','80','0','Shieldwarder Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145826','4','4','4','58756','6','1','226','80','0','Girdle of Unyielding Trust','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145827','4','4','3','58743','6','5','226','80','0','Belt of the Ardent Marksman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145828','4','4','3','58773','6','5','226','80','0','Windchill Binding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145829','4','4','2','58747','6','8','226','80','0','Belt of the Twilight Assassin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145830','4','4','2','58745','6','8','226','80','0','Belt of the Living Thicket','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145831','4','4','1','58769','6','7','226','80','0','Sash of Potent Incantations','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145832','4','4','1','59722','3','7','219','80','0','Mantle of the Preserver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145833','4','4','4','58748','10','1','226','80','0','Bladebreaker Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145834','4','4','4','58750','10','1','226','80','0','Gauntlets of the Royal Watch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145835','4','4','4','58749','10','1','226','80','0','Gauntlets of Serene Blessing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145836','4','4','3','58760','10','5','226','80','0','Gloves of Unerring Aim','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145837','4','4','3','58758','10','5','226','80','0','Gloves of Augury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145838','4','4','2','58761','10','8','226','80','0','Gloves of the Blind Stalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145839','4','4','2','58762','10','8','226','80','0','Grips of the Secret Grove','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145840','4','4','1','61878','10','7','226','80','0','Touch of the Occult','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145841','4','4','4','58767','7','6','226','80','0','Legplates of the Violet Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145842','4','4','4','58774','7','1','226','80','0','Wyrmguard Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145843','4','4','4','58766','7','6','226','80','0','Legguards of the Peaceful Covenant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145844','4','4','3','58764','7','5','226','80','0','Leggings of the Tireless Sentry','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145845','4','4','3','58765','7','5','226','80','0','Leggings of the Weary Mystic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145846','4','4','2','58763','7','8','226','80','0','Leggings of Wavering Shadow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145847','4','4','2','58772','7','8','226','80','0','Wildstrider Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145848','4','4','1','58768','7','7','226','80','0','Legwraps of the Master Conjurer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145849','3','4','0','55956','23','7','159','70','7','Twilight Tome','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145850','3','4','0','55265','23','7','159','70','7','Rituals of the New Moon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145851','3','4','0','55265','23','7','159','70','7','Rituals of the New Moon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145852','3','4','0','55265','23','7','159','70','7','Rituals of the New Moon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145853','3','4','0','55265','23','7','159','70','7','Rituals of the New Moon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145854','3','4','0','55265','23','7','159','70','7','Rituals of the New Moon','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145858','3','2','20','20619','17','2','20','0','1','Nat\'s Lucky Fishing Pole','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145859','4','4','0','31616','11','5','206','80','1','The 5 Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145860','1','4','0','58587','1','7','1','0','0','Crystal Tiara','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145861','1','2','14','58588','17','2','6','0','2','Diamond-tipped Cane','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145864','4','4','2','59758','1','8','219','80','0','Cover of the Keepers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145865','4','4','1','59020','20','7','219','80','0','Raiments of the Corrupted','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145866','4','4','0','48007','12','4','219','80','0','Elemental Focus Stone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145867','4','4','3','59765','5','5','226','80','0','Breastplate of the Stoneshaper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145868','4','2','8','59364','17','1','232','80','1','Aesir\'s Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145869','4','4','2','59091','9','8','226','80','0','Fluxing Energy Coils','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145870','4','2','3','58900','26','1','232','80','0','Magnetized Projectile Emitter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145871','4','4','0','59327','11','3','226','80','0','Seal of Ulduar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145872','4','2','2','58739','15','1','219','80','0','Avalanche','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145873','4','4','1','59040','16','7','219','80','0','Winter\'s Frigid Embrace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145874','4','4','0','31616','11','3','219','80','0','Signet of Winter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145876','4','2','4','58736','13','1','232','80','3','Shiver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145877','4','4','6','59287','14','6','232','80','4','The Boreal Guard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145886','4','2','10','58919','17','2','232','80','2','Icecore Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145887','4','4','6','61838','14','6','232','80','4','Ice Layered Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145888','4','4','4','59170','9','1','226','80','0','Bitter Cold Armguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145892','4','2','4','59367','13','1','219','80','3','Legacy of Thunder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145893','4','4','2','59092','1','8','219','80','0','Guise of the Midgard Serpent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145894','4','4','1','59012','7','7','219','80','0','Leggings of Unstable Discharge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145895','4','4','3','59772','6','5','219','80','0','Belt of the Blood Pit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145927','4','4','1','59719','10','7','219','80','0','Handwraps of Resonance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145928','4','4','4','59751','10','1','226','80','0','Gauntlets of the Thunder God','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145929','4','4','0','59325','12','4','226','80','0','Sif\'s Remembrance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145930','4','2','15','59371','13','1','232','80','3','Combatant\'s Bootblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145931','4','4','0','48009','12','4','226','80','0','Mjolnir Runestone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145933','4','4','0','59307','2','4','226','80','0','Pendant of the Shallow Grave','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145934','4','2','10','58928','17','2','219','80','2','Unraveling Reach','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145935','4','4','4','59676','1','1','219','80','0','Ironbark Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145936','4','4','4','59752','7','6','219','80','0','Legplates of Flourishing Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145937','4','2','3','56176','26','1','239','80','0','Furious Gladiator\'s Shotgun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145938','4','2','2','58934','15','2','239','80','0','Furious Gladiator\'s Recurve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145939','4','2','18','55932','26','2','239','80','0','Furious Gladiator\'s Repeater','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145940','4','4','2','59119','5','8','219','80','0','Tunic of the Limber Stalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145941','4','4','3','59774','5','5','219','80','0','Chestguard of the Lasher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145943','4','4','3','61842','10','5','226','80','0','Gloves of Whispering Winds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145945','4','4','0','59308','2','4','226','80','0','Seed of Budding Carnage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145946','4','4','0','39127','11','3','226','80','0','Fire Orchid Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145947','4','2','7','58938','13','1','232','80','3','Serilas, Blood Blade of Invar One-Arm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145948','4','2','1','55925','17','1','239','80','1','Furious Gladiator\'s Sunderer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145949','4','2','5','58962','17','1','239','80','1','Furious Gladiator\'s Crusher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145950','4','2','8','57463','17','1','239','80','1','Furious Gladiator\'s Claymore','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145951','4','2','6','58963','17','1','239','80','2','Furious Gladiator\'s Halberd','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145952','4','2','10','56259','17','2','239','80','2','Furious Gladiator\'s Greatstaff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145953','4','2','10','56252','17','2','239','80','2','Furious Gladiator\'s Combat Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145954','4','2','10','56252','17','2','239','80','2','Furious Gladiator\'s Acute Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145955','4','2','10','56252','17','2','239','80','2','Furious Gladiator\'s Skirmish Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145956','4','2','10','56252','17','2','239','80','2','Furious Gladiator\'s Light Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145957','4','2','0','56204','13','1','239','80','3','Furious Gladiator\'s Handaxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145958','4','2','15','56226','13','1','239','80','3','Furious Gladiator\'s Spike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145959','4','2','4','58958','13','1','239','80','3','Furious Gladiator\'s Truncheon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145960','4','2','7','58966','13','1','239','80','3','Furious Gladiator\'s Longblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145961','4','2','0','56204','22','1','239','80','3','Furious Gladiator\'s Dicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145962','4','2','15','56226','22','1','239','80','3','Furious Gladiator\'s Dirk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145963','4','2','13','56256','22','1','239','80','7','Furious Gladiator\'s Left Razor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145964','4','2','4','58958','22','1','239','80','3','Furious Gladiator\'s Punisher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145965','4','2','7','58966','22','1','239','80','3','Furious Gladiator\'s Swiftblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145966','4','2','0','56204','22','1','239','80','3','Furious Gladiator\'s Splitter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145967','4','2','15','56226','22','1','239','80','3','Furious Gladiator\'s Eviscerator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145968','4','2','13','58951','22','1','239','80','7','Furious Gladiator\'s Left Claw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145969','4','2','13','56257','21','1','239','80','7','Furious Gladiator\'s Grasp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145970','4','2','15','56220','21','1','239','80','3','Furious Gladiator\'s Mageblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145971','4','2','4','58960','21','1','239','80','3','Furious Gladiator\'s Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145972','4','2','4','58906','21','1','219','80','3','Pulse Baton','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145973','4','4','1','56737','16','7','219','80','0','Stylish Power Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145974','4','4','2','59760','3','8','219','80','0','Shoulderguards of Assimilation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145975','4','4','4','59749','6','1','219','80','0','Cable of the Metrognome','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145976','4','4','1','59033','10','7','219','80','0','Static Charge Handwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145982','4','4','4','59163','7','6','226','80','0','Fused Alloy Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145983','4','4','0','58701','19','4','80','0','0','Furious Gladiator\'s Tabard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145988','4','4','4','59218','8','1','226','80','0','Greaves of the Iron Army','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145989','4','4','3','59779','8','5','226','80','0','Tempered Mercury Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145990','4','2','7','58735','21','1','232','80','3','Fusion Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145991','3','2','20','58715','17','1','200','70','1','Bone Fishing Pole','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145992','3','2','20','58716','17','1','200','70','1','Jeweled Fishing Pole','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145993','4','4','2','59279','1','8','226','80','0','Mimiron\'s Flight Goggles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145994','3','4','0','31664','11','1','200','78','0','Lost Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145995','3','4','0','35359','2','1','200','78','0','Forgotten Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145996','4','2','6','58914','17','1','219','80','1','Hoperender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145997','4','4','4','58235','10','1','219','80','0','Gauntlets of the Wretched','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('145998','1','4','0','37617','1','7','10','0','0','Battered Jungle Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146008','4','4','0','34034','2','4','219','80','0','Choker of the Abyss','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146009','4','4','2','59756','9','8','219','80','0','Bindings of the Depths','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146010','4','4','0','34336','11','5','219','80','0','Darkstone Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146011','4','2','15','59375','13','1','219','80','3','Shadowbite','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146012','4','4','1','59725','20','7','219','80','0','Vestments of the Piercing Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146013','4','4','1','59031','3','7','219','80','0','Underworld Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146014','4','4','1','59026','16','7','219','80','0','Saronite Animus Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146015','4','4','0','31899','2','4','219','80','0','Pendant of Endless Despair','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146016','4','2','8','58945','17','1','219','80','1','Abaddon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146017','5','2','4','61655','21','1','245','80','3','Val\'anyr, Hammer of Ancient Kings','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146018','4','2','18','58879','26','2','219','80','0','Deliverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146019','4','4','3','59777','7','5','219','80','0','Leggings of the Insatiable','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146021','4','4','0','59316','12','4','219','80','0','Royal Seal of King Llane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146022','4','4','0','34274','2','3','219','80','0','Pendant of a Thousand Maws','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146024','4','2','15','59372','13','1','219','80','3','Kingsbane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146025','4','2','10','58917','17','2','219','80','2','Devotion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146028','4','4','4','59750','1','-1','219','80','0','Faceguard of the Eyeless Horror','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146030','4','4','1','59036','8','7','219','80','0','Treads of the Dragon Council','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146031','4','2','0','58877','13','1','219','80','3','Touch of Madness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146032','4','4','1','58999','16','7','226','80','0','Drape of the Faceless General','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146033','4','2','10','58926','17','2','232','80','2','Tortured Earth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146034','4','4','1','59720','7','7','226','80','0','Leggings of Profound Darkness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146035','4','2','4','61656','21','1','232','80','3','Aesuga, Hand of the Ardent Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146036','4','2','7','58944','13','1','232','80','3','Void Sabre','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146037','4','4','4','59143','3','6','226','80','0','Shoulderplates of the Celestial Watch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146038','4','4','0','59323','12','4','226','80','0','Dark Matter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146039','4','4','4','59233','5','1','226','80','0','Breastplate of the Timeless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146040','4','4','0','48507','2','4','226','80','0','Strength of the Heavens','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146041','4','4','4','59140','6','6','226','80','0','Starfall Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146042','4','4','1','59000','16','7','226','80','0','Drape of the Messenger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146043','4','4','2','59526','10','8','226','80','0','Gloves of the Endless Dark','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146044','4','4','3','59771','3','5','226','80','0','Observer\'s Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146045','4','4','1','59018','10','7','226','80','0','Pulsar Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146046','4','4','0','44357','11','3','226','80','0','Nebula Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146047','4','4','0','48508','2','4','226','80','0','Pendant of the Somber Witness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146048','4','4','0','44358','11','5','226','80','0','Band of Lights','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146049','4','4','2','59762','7','8','226','80','0','Zodiac Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146050','4','4','1','59724','8','7','226','80','0','Starlight Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146051','4','4','0','59328','12','4','226','80','0','Meteorite Crystal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146057','4','4','4','58776','5','6','213','80','0','Titan-Forged Chestguard of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146058','4','4','4','58775','5','6','213','80','0','Titan-Forged Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146059','4','4','3','58777','5','5','213','80','0','Titan-Forged Chain Armor of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146060','4','4','3','58778','5','5','213','80','0','Titan-Forged Ringmail of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146061','4','4','3','58778','5','5','213','80','0','Titan-Forged Mail Armor of Domination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146062','4','4','2','58779','5','8','213','80','0','Titan-Forged Leather Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146063','4','4','2','59684','20','8','213','80','0','Titan-Forged Leather Chestguard of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146064','4','4','2','59684','20','8','213','80','0','Titan-Forged Leather Chestguard of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146065','4','4','1','52361','20','7','213','80','0','Titan-Forged Raiment of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146066','4','4','1','58783','20','7','213','80','0','Titan-Forged Raiment of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146067','4','2','5','58911','17','1','232','80','1','Hammer of Crushing Whispers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146068','4','4','1','59717','3','7','226','80','0','Amice of Inconceivable Horror','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146069','1','2','14','58809','21','2','1','77','2','Alliance Lance','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146070','1','2','14','58873','21','2','1','77','2','Horde Lance','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146071','4','4','4','60347','6','6','213','80','0','Titan-Forged Girdle of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146072','4','4','4','60346','6','6','213','80','0','Titan-Forged Girdle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146073','4','4','3','60345','6','5','213','80','0','Titan-Forged Waistguard of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146074','4','4','3','60345','6','5','213','80','0','Titan-Forged Waistguard of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146075','4','4','3','60344','6','5','213','80','0','Titan-Forged Waistguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146076','4','4','2','58814','6','8','213','80','0','Titan-Forged Belt of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146077','4','4','2','58814','6','8','213','80','0','Titan-Forged Belt of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146078','4','4','2','58815','6','8','213','80','0','Titan-Forged Belt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146079','4','4','1','58816','6','7','213','80','0','Titan-Forged Cord of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146080','4','4','1','58817','6','7','213','80','0','Titan-Forged Cord of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146081','4','4','0','58820','12','4','213','80','0','Titan-Forged Rune of Audacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146082','4','4','0','58819','12','4','213','80','0','Titan-Forged Rune of Determination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146083','4','4','0','58822','12','4','213','80','0','Titan-Forged Rune of Accuracy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146084','4','4','0','58823','12','4','213','80','0','Titan-Forged Rune of Cruelty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146085','4','4','0','58821','12','4','213','80','0','Titan-Forged Rune of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146086','4','4','0','58824','12','4','213','80','0','Platinum Disks of Battle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146087','4','4','0','58824','12','4','213','80','0','Platinum Disks of Sorcery','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146088','4','4','0','58824','12','4','213','80','0','Platinum Disks of Swiftness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146095','4','4','2','59114','6','8','226','80','0','Soul-Devouring Cinch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146096','4','4','0','28831','11','3','226','80','0','Signet of Soft Lament','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146097','4','2','4','58740','13','1','232','80','3','Caress of Insanity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146103','4','4','0','59429','4','7','219','0','0','Shirt of Titanic Scaling','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146104','4','4','0','59430','4','7','226','0','0','Shirt of the Yogg-Slayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146105','4','4','0','52955','4','7','239','0','0','Shirt of the Future Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146106','1','2','14','59115','21','2','1','75','2','Argent Lance','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146111','4','4','4','58246','5','1','226','80','0','Conqueror\'s Darkruned Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146113','4','4','4','58748','10','1','226','80','0','Conqueror\'s Darkruned Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146115','4','4','4','59332','1','4','226','80','0','Conqueror\'s Darkruned Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146116','4','4','4','58969','7','6','226','80','0','Conqueror\'s Darkruned Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146117','4','4','4','59334','3','6','226','80','0','Conqueror\'s Darkruned Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146118','4','4','4','58246','5','1','226','80','0','Conqueror\'s Darkruned Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146119','4','4','4','59335','10','1','226','80','0','Conqueror\'s Darkruned Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146120','4','4','4','59332','1','1','226','80','0','Conqueror\'s Darkruned Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146121','4','4','4','60033','7','1','226','80','0','Conqueror\'s Darkruned Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146122','4','4','4','59336','3','1','226','80','0','Conqueror\'s Darkruned Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146123','4','4','2','59057','5','8','226','80','0','Conqueror\'s Terrorblade Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146124','4','4','2','59340','10','8','226','80','0','Conqueror\'s Terrorblade Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146125','4','4','2','59341','1','8','226','80','0','Conqueror\'s Terrorblade Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146126','4','4','2','59342','7','8','226','80','0','Conqueror\'s Terrorblade Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146127','4','4','2','59344','3','8','226','80','0','Conqueror\'s Terrorblade Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146129','4','4','1','61892','1','7','226','80','0','Conqueror\'s Kirin Tor Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146130','4','4','1','62580','5','7','226','80','0','Conqueror\'s Kirin Tor Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146131','4','4','1','58258','10','7','219','80','0','Valorous Kirin Tor Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146132','4','4','1','61878','10','7','226','80','0','Conqueror\'s Kirin Tor Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146133','4','4','1','61894','7','7','226','80','0','Conqueror\'s Kirin Tor Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146134','4','4','1','61895','3','7','226','80','0','Conqueror\'s Kirin Tor Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146135','4','4','1','61912','10','7','226','80','0','Conqueror\'s Deathbringer Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146136','4','4','1','61913','3','7','226','80','0','Conqueror\'s Deathbringer Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146137','4','4','1','61917','20','7','226','80','0','Conqueror\'s Deathbringer Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146138','4','4','8','34954','28','2','226','80','0','Idol of the Flourishing Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146139','4','4','1','61918','7','7','226','80','0','Conqueror\'s Deathbringer Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146140','4','4','1','61919','1','7','226','80','0','Conqueror\'s Deathbringer Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146141','4','4','3','59058','5','5','226','80','0','Conqueror\'s Scourgestalker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146142','4','4','3','61840','10','5','226','80','0','Conqueror\'s Scourgestalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146143','4','4','3','59659','1','5','226','80','0','Conqueror\'s Scourgestalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146144','4','4','3','59404','7','5','226','80','0','Conqueror\'s Scourgestalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146145','4','4','3','59407','3','5','226','80','0','Conqueror\'s Scourgestalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146146','4','4','4','59047','5','1','226','80','0','Conqueror\'s Siegebreaker Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146148','4','4','4','59417','10','1','226','80','0','Conqueror\'s Siegebreaker Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146149','4','4','4','59419','3','6','226','80','0','Conqueror\'s Siegebreaker Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146150','4','4','4','59420','7','6','226','80','0','Conqueror\'s Siegebreaker Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146151','4','4','4','59675','1','4','226','80','0','Conqueror\'s Siegebreaker Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146152','4','4','4','59608','3','6','226','80','0','Conqueror\'s Aegis Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146153','4','4','4','59606','7','6','226','80','0','Conqueror\'s Aegis Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146154','4','4','4','59602','5','1','226','80','0','Conqueror\'s Aegis Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146155','4','4','4','59427','10','1','226','80','0','Conqueror\'s Aegis Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146156','4','4','4','59603','1','4','226','80','0','Conqueror\'s Aegis Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146157','4','4','2','59436','3','8','226','80','0','Conqueror\'s Nightsong Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146158','4','4','2','59437','10','8','226','80','0','Conqueror\'s Nightsong Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146159','4','4','2','59438','20','8','226','80','0','Conqueror\'s Nightsong Raiments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146160','4','4','2','59439','7','8','226','80','0','Conqueror\'s Nightsong Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146161','4','4','2','59441','1','8','226','80','0','Conqueror\'s Nightsong Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146162','4','4','4','59047','5','1','226','80','0','Conqueror\'s Siegebreaker Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146163','4','4','1','61891','10','7','226','80','0','Conqueror\'s Handwraps of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146164','4','4','4','59446','10','1','226','80','0','Conqueror\'s Siegebreaker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146165','4','4','1','59447','3','7','226','80','0','Conqueror\'s Mantle of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146166','4','4','4','59675','1','1','226','80','0','Conqueror\'s Siegebreaker Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146167','4','4','4','59448','3','1','226','80','0','Conqueror\'s Siegebreaker Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146168','4','4','1','59451','20','7','226','80','0','Conqueror\'s Raiments of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146169','4','4','4','59449','7','1','226','80','0','Conqueror\'s Siegebreaker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146170','4','4','1','59450','7','7','226','80','0','Conqueror\'s Pants of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146172','4','4','1','59480','1','7','226','80','0','Conqueror\'s Circlet of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146173','4','4','4','59602','5','1','226','80','0','Conqueror\'s Aegis Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146174','4','4','4','59458','10','1','226','80','0','Conqueror\'s Aegis Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146175','4','4','4','59603','1','1','226','80','0','Conqueror\'s Aegis Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146176','4','4','4','59605','7','1','226','80','0','Conqueror\'s Aegis Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146177','4','4','4','59607','3','1','226','80','0','Conqueror\'s Aegis Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146178','4','4','4','59602','5','1','226','80','0','Conqueror\'s Aegis Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146179','4','4','4','59458','10','1','226','80','0','Conqueror\'s Aegis Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146180','4','4','4','59603','1','4','226','80','0','Conqueror\'s Aegis Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146181','4','4','4','59604','7','6','226','80','0','Conqueror\'s Aegis Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146182','4','4','4','59609','3','1','226','80','0','Conqueror\'s Aegis Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146183','4','4','2','59477','10','8','226','80','0','Conqueror\'s Nightsong Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146184','4','4','2','59572','1','8','226','80','0','Conqueror\'s Nightsong Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146185','4','4','2','59479','7','8','226','80','0','Conqueror\'s Nightsong Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146186','4','4','2','59438','20','8','226','80','0','Conqueror\'s Nightsong Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146187','4','4','2','59436','3','8','226','80','0','Conqueror\'s Nightsong Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146188','4','4','1','61891','10','7','226','80','0','Conqueror\'s Gloves of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146189','4','4','2','59477','10','8','226','80','0','Conqueror\'s Nightsong Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146190','4','4','1','59447','3','7','226','80','0','Conqueror\'s Shoulderpads of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146191','4','4','2','59572','1','8','226','80','0','Conqueror\'s Nightsong Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146192','4','4','2','59479','7','8','226','80','0','Conqueror\'s Nightsong Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146193','4','4','1','59451','20','7','226','80','0','Conqueror\'s Robe of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146194','4','4','2','59438','20','8','226','80','0','Conqueror\'s Nightsong Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146195','4','4','1','59450','7','7','226','80','0','Conqueror\'s Leggings of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146196','4','4','2','59436','3','8','226','80','0','Conqueror\'s Nightsong Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146197','4','4','1','59480','1','7','226','80','0','Conqueror\'s Cowl of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146198','4','4','3','59486','20','5','226','80','0','Conqueror\'s Worldbreaker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146199','4','4','3','59481','10','5','226','80','0','Conqueror\'s Worldbreaker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146200','4','4','3','59483','10','5','226','80','0','Conqueror\'s Worldbreaker Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146201','4','4','3','59644','1','5','226','80','0','Conqueror\'s Worldbreaker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146202','4','4','3','59484','7','5','226','80','0','Conqueror\'s Worldbreaker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146203','4','4','3','59487','3','5','226','80','0','Conqueror\'s Worldbreaker Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146204','4','4','3','59489','3','5','226','80','0','Conqueror\'s Worldbreaker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146205','4','4','3','59486','20','5','226','80','0','Conqueror\'s Worldbreaker Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146206','4','4','3','59486','20','5','226','80','0','Conqueror\'s Worldbreaker Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146207','4','4','3','59481','10','5','226','80','0','Conqueror\'s Worldbreaker Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146208','4','4','3','59491','7','5','226','80','0','Conqueror\'s Worldbreaker War-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146209','4','4','3','59644','1','5','226','80','0','Conqueror\'s Worldbreaker Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146210','4','4','3','58339','7','5','226','80','0','Conqueror\'s Worldbreaker Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146211','4','4','3','59489','3','5','226','80','0','Conqueror\'s Worldbreaker Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146212','4','4','3','59643','1','5','226','80','0','Conqueror\'s Worldbreaker Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146213','4','4','4','58264','5','1','219','80','0','Valorous Aegis Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146214','4','4','4','58264','5','1','226','80','0','Conqueror\'s Aegis Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146215','4','4','4','58269','1','1','226','80','0','Conqueror\'s Aegis Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146216','4','4','4','58270','10','1','219','80','0','Valorous Aegis Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146217','4','4','4','58265','10','1','226','80','0','Conqueror\'s Aegis Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146218','4','4','4','58274','7','6','226','80','0','Conqueror\'s Aegis Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146219','4','4','4','58275','10','1','226','80','0','Conqueror\'s Aegis Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146220','4','4','4','58269','1','4','226','80','0','Conqueror\'s Aegis Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146221','4','4','4','58269','1','4','219','80','0','Valorous Aegis Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146222','4','4','4','58277','7','1','226','80','0','Conqueror\'s Aegis Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146223','4','4','4','58277','7','1','219','80','0','Aegis Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146224','4','4','4','59454','7','6','219','80','0','Valorous Aegis Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146225','4','4','4','58278','3','1','226','80','0','Conqueror\'s Aegis Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146226','4','4','4','58272','3','6','219','80','0','Valorous Aegis Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146227','4','4','4','58268','3','1','226','80','0','Conqueror\'s Aegis Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146228','4','4','4','59051','5','1','226','80','0','Conqueror\'s Aegis Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146230','4','4','1','58280','1','7','226','80','0','Conqueror\'s Circlet of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146231','4','4','1','58284','1','7','219','80','0','Valorous Cowl of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146232','4','4','4','58229','5','1','226','80','0','Conqueror\'s Darkruned Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146233','4','4','4','58229','5','1','226','80','0','Conqueror\'s Darkruned Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146234','4','4','4','58231','1','1','226','80','0','Conqueror\'s Darkruned Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146235','4','4','4','58247','10','1','226','80','0','Conqueror\'s Darkruned Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146236','4','4','4','58230','10','1','226','80','0','Conqueror\'s Darkruned Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146237','4','4','4','58231','1','4','226','80','0','Conqueror\'s Darkruned Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146238','4','4','4','58330','7','1','226','80','0','Conqueror\'s Darkruned Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146239','4','4','4','58329','7','6','226','80','0','Conqueror\'s Darkruned Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146240','4','4','4','58233','3','1','226','80','0','Conqueror\'s Darkruned Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146241','4','4','4','58249','3','6','226','80','0','Conqueror\'s Darkruned Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146242','4','4','1','58302','10','7','226','80','0','Conqueror\'s Deathbringer Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146243','4','4','1','59396','1','7','226','80','0','Conqueror\'s Deathbringer Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146244','4','4','1','58327','7','7','226','80','0','Conqueror\'s Deathbringer Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146245','4','4','1','58328','20','7','226','80','0','Conqueror\'s Deathbringer Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146246','4','4','1','58307','3','7','226','80','0','Conqueror\'s Deathbringer Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146247','4','4','1','58331','10','7','219','80','0','Valorous Gloves of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146248','4','4','1','58331','10','7','226','80','0','Conqueror\'s Gloves of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146249','4','4','1','58258','10','7','219','80','0','Valorous Kirin Tor Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146250','4','4','1','58259','1','7','219','80','0','Valorous Kirin Tor Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146251','4','4','1','59431','7','7','219','80','0','Valorous Kirin Tor Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146252','4','4','1','58262','3','7','219','80','0','Valorous Kirin Tor Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146253','4','4','1','58261','20','7','219','80','0','Valorous Kirin Tor Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146254','4','4','1','58332','7','7','219','80','0','Valorous Leggings of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146255','4','4','1','58283','3','7','226','80','0','Conqueror\'s Shoulderpads of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146256','4','4','1','58332','7','7','226','80','0','Conqueror\'s Leggings of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146257','4','4','1','58333','20','7','226','80','0','Conqueror\'s Robe of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146258','4','4','1','58333','20','7','219','80','0','Valorous Robe of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146259','4','4','1','58283','3','7','219','80','0','Valorous Shoulderpads of Sanctification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146260','4','4','2','58250','10','8','219','80','0','Valorous Nightsong Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146261','4','4','2','58239','10','8','219','80','0','Valorous Nightsong Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146262','4','4','2','58251','1','8','219','80','0','Valorous Nightsong Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146263','4','4','2','58242','1','8','219','80','0','Valorous Nightsong Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146264','4','4','2','58335','7','8','219','80','0','Valorous Nightsong Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146265','4','4','2','58334','7','8','219','80','0','Valorous Nightsong Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146266','4','4','2','58243','3','8','219','80','0','Valorous Nightsong Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146267','4','4','2','59055','20','8','219','80','0','Valorous Nightsong Raiments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146268','4','4','2','58337','20','8','219','80','0','Valorous Nightsong Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146269','4','4','2','58243','3','8','219','80','0','Valorous Nightsong Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146270','4','4','2','58243','3','8','219','80','0','Valorous Nightsong Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146271','4','4','2','58335','7','8','219','80','0','Valorous Nightsong Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146272','4','4','2','58337','20','8','219','80','0','Valorous Nightsong Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146273','4','4','3','58338','10','5','226','80','0','Conqueror\'s Scourgestalker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146274','4','4','3','58255','1','5','226','80','0','Conqueror\'s Scourgestalker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146275','4','4','3','58256','7','5','226','80','0','Conqueror\'s Scourgestalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146276','4','4','3','58257','3','5','226','80','0','Conqueror\'s Scourgestalker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146277','4','4','3','58253','5','5','226','80','0','Conqueror\'s Scourgestalker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146278','4','4','4','58308','5','1','219','80','0','Valorous Siegebreaker Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146279','4','4','4','58308','5','1','219','80','0','Valorous Siegebreaker Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146280','4','4','4','58313','10','1','219','80','0','Valorous Siegebreaker Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146281','4','4','4','59677','1','1','219','80','0','Valorous Siegebreaker Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146282','4','4','4','59677','1','4','219','80','0','Valorous Siegebreaker Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146283','4','4','4','58309','10','1','219','80','0','Valorous Siegebreaker Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146284','4','4','4','58311','7','1','219','80','0','Valorous Siegebreaker Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146285','4','4','4','58314','7','6','219','80','0','Valorous Siegebreaker Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146286','4','4','4','58312','3','1','219','80','0','Valorous Siegebreaker Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146287','4','4','4','58315','3','6','219','80','0','Valorous Siegebreaker Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146288','4','4','2','58287','5','8','226','80','0','Conqueror\'s Terrorblade Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146289','4','4','2','58288','10','8','226','80','0','Conqueror\'s Terrorblade Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146290','4','4','2','58322','1','8','226','80','0','Conqueror\'s Terrorblade Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146291','4','4','2','58290','7','8','226','80','0','Conqueror\'s Terrorblade Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146292','4','4','2','58291','3','8','226','80','0','Conqueror\'s Terrorblade Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146293','4','4','3','59488','20','5','226','80','0','Conqueror\'s Worldbreaker Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146294','4','4','3','58299','1','5','226','80','0','Conqueror\'s Worldbreaker Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146295','4','4','3','58293','10','5','226','80','0','Conqueror\'s Worldbreaker Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146296','4','4','3','58298','10','5','226','80','0','Conqueror\'s Worldbreaker Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146297','4','4','3','58293','10','5','226','80','0','Conqueror\'s Worldbreaker Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146298','4','4','3','59485','20','5','226','80','0','Conqueror\'s Worldbreaker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146299','4','4','3','58294','1','5','226','80','0','Conqueror\'s Worldbreaker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146300','4','4','3','58294','1','5','226','80','0','Conqueror\'s Worldbreaker Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146301','4','4','3','58339','7','5','226','80','0','Conqueror\'s Worldbreaker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146302','4','4','3','58339','7','5','226','80','0','Conqueror\'s Worldbreaker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146303','4','4','3','58301','3','5','226','80','0','Conqueror\'s Worldbreaker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146304','4','4','3','58296','3','5','226','80','0','Conqueror\'s Worldbreaker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146305','4','4','3','58296','3','5','226','80','0','Conqueror\'s Worldbreaker Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146306','4','4','3','59485','20','5','226','80','0','Conqueror\'s Worldbreaker Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146307','4','4','3','58639','7','5','226','80','0','Conqueror\'s Worldbreaker Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146309','4','4','2','58239','10','8','219','80','0','Valorous Nightsong Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146312','4','4','0','34132','12','4','226','80','0','Vanquished Clutches of Yogg-Saron','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146313','4','4','2','59573','1','8','219','80','0','Valorous Nightsong Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146320','4','4','1','59001','16','7','226','80','0','Drape of the Skyherald','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146321','4','4','1','59034','16','7','226','80','0','Sunglimmer Drape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146322','4','4','0','45362','11','5','226','80','0','Brann\'s Sealing Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146323','4','4','0','24646','11','3','226','80','0','Starshine Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146324','3','4','0','39121','11','3','175','77','0','Gondria\'s Spectral Claw','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146331','3','4','4','59533','8','6','200','80','0','Conqueror\'s Terrorblade Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146339','4','2','3','58899','26','1','219','80','0','Mimiron\'s Repeater','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146340','4','4','4','59306','10','1','219','80','0','Adamant Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146341','4','4','1','26233','16','7','219','80','0','Drape of the Spellweaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146342','4','2','2','59552','15','1','219','80','0','Golemheart Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146343','4','4','0','31907','2','4','219','80','0','Fervor of the Protectorate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146344','4','4','1','59031','3','7','219','80','0','Iceshear Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146345','4','4','4','59747','9','6','219','80','0','Bracers of Righteous Reformation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146346','4','4','3','59650','8','5','219','80','0','Boots of Unsettled Prey','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146347','4','4','1','59553','16','7','219','80','0','Cloak of the Dormant Blaze','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146349','3','4','0','59630','1','7','1','0','0','Chef\'s Hat','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146350','4','2','10','58928','17','2','219','80','2','Pillar of Fortitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146351','4','2','4','58908','13','1','219','80','3','Bloodcrush Cudgel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146373','4','4','0','39162','2','5','226','80','0','Furious Gladiator\'s Pendant of Sundering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146374','4','4','0','39162','2','5','245','80','0','Relentless Gladiator\'s Pendant of Sundering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146723','1','4','0','59905','1','4','1','0','0','Pilgrim\'s Hat','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146735','1','4','0','59921','1','4','10','0','0','Synthebrew Goggles','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146800','1','4','0','59999','20','7','1','0','0','Pilgrim\'s Attire','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146817','1','4','0','61333','19','7','1','0','0','Silver Covenant Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146818','1','4','0','61334','19','7','1','0','0','Sunreaver Tabard','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146824','1','4','0','60042','20','4','1','0','0','Pilgrim\'s Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146860','1','4','0','60348','1','4','1','0','0','Whimsical Skull Mask','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146861','1','4','0','60349','23','7','30','0','0','Bouquet of Orange Marigolds','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146874','3','4','0','60400','19','7','1','0','0','Argent Crusader\'s Tabard','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146958','4','2','15','60576','13','1','245','80','3','Steel Bladebreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146959','4','4','0','53042','11','5','245','80','0','Band of the Violent Temperment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146960','4','4','3','61825','5','5','245','80','0','Breastplate of Cruel Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146961','4','4','4','62005','9','1','245','80','0','Boneshatter Armplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146962','4','4','4','61000','5','1','245','80','0','Chestplate of the Towering Monstrosity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146963','4','4','6','61780','14','6','245','80','4','Crystal Plated Vanguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146964','4','4','6','61780','14','6','258','80','4','Crystal Plated Vanguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146965','4','4','3','61825','5','5','258','80','0','Breastplate of Cruel Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146966','4','4','0','53042','11','5','258','80','0','Band of the Violent Temperment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146967','4','4','4','62005','9','1','258','80','0','Boneshatter Armplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146968','4','4','4','61000','5','1','258','80','0','Chestplate of the Towering Monstrosity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146969','4','2','15','60610','13','1','258','80','3','Steel Bladebreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146970','4','4','1','61403','16','7','245','80','0','Drape of the Untamed Predator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146971','4','4','1','61403','16','7','258','80','0','Drape of the Untamed Predator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146972','4','4','1','61233','6','7','245','80','0','Cord of the Tenebrous Mist','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146973','4','4','1','61233','6','7','258','80','0','Cord of the Tenebrous Mist','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146974','4','4','2','61927','7','8','245','80','0','Leggings of the Broken Beast','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146975','4','4','2','61927','7','8','258','80','0','Leggings of the Broken Beast','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146976','4','4','1','61401','16','7','245','80','0','Shawl of the Refreshing Winds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146977','4','4','1','61401','16','7','258','80','0','Shawl of the Refreshing Winds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146978','1','4','9','34958','28','2','1','1','0','Totem of the Earthen Ring','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146979','4','2','15','60577','21','1','245','80','3','Blade of Tarasque','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146980','4','2','15','60577','21','1','258','80','3','Blade of Tarasque','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146985','4','4','4','61365','8','1','245','80','0','Boots of the Courageous','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146986','4','4','4','61365','8','1','258','80','0','Boots of the Courageous','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146988','4','4','2','61707','8','8','245','80','0','Boots of the Unrelenting Storm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146989','4','4','2','61707','8','8','258','80','0','Boots of the Unrelenting Storm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146990','4','4','3','61939','6','5','245','80','0','Belt of the Ice Burrower','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146991','4','4','3','61939','6','5','258','80','0','Belt of the Ice Burrower','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146992','4','4','1','61722','20','7','245','80','0','Flowing Vestments of Ascent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146993','4','4','1','61722','20','7','258','80','0','Flowing Vestments of Ascent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146994','4','2','18','60579','26','2','245','80','0','Talonstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146995','4','2','18','60664','26','2','258','80','0','Talonstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146996','4','2','0','60578','13','1','245','80','3','Lionhead Slasher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146997','4','4','4','61372','8','1','245','80','0','Dawnbreaker Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('146999','4','4','4','61342','6','6','245','80','0','Bloodbath Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147000','4','4','2','61930','5','8','245','80','0','Cuirass of Calamitous Fate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147001','4','2','0','60649','13','1','258','80','3','Lionhead Slasher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147002','4','4','4','61342','6','6','258','80','0','Bloodbath Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147003','4','4','4','61372','8','1','258','80','0','Dawnbreaker Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147004','4','4','2','61930','5','8','258','80','0','Cuirass of Calamitous Fate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147041','4','4','0','59319','12','4','245','80','0','Solace of the Defeated','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147042','4','4','1','26064','16','7','245','80','0','Pride of the Eredar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147043','4','4','0','39210','2','3','245','80','0','Charge of the Demon Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147051','4','4','1','61170','7','7','245','80','0','Leggings of the Soothing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147052','4','4','4','62025','7','1','245','80','0','Legguards of Feverish Dedication','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147053','4','4','0','61788','23','3','245','80','0','Symbol of Transgression','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147054','4','4','0','39126','11','3','245','80','0','Band of Deplorable Violence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147055','4','4','2','61650','9','8','245','80','0','Bracers of the Autumn Willow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147056','4','4','3','62050','9','5','245','80','0','Bracers of Cloudy Omen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147057','4','4','4','62024','7','6','245','80','0','Legplates of Failing Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147059','4','4','0','59319','12','4','258','80','0','Solace of the Defeated','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147060','4','4','0','39210','2','3','258','80','0','Charge of the Demon Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147061','4','4','4','62025','7','1','258','80','0','Legguards of Feverish Dedication','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147062','4','4','1','61170','7','7','258','80','0','Leggings of the Soothing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147063','4','4','1','26064','16','7','258','80','0','Pride of the Eredar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147064','4','4','0','61788','23','3','258','80','0','Symbol of Transgression','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147066','4','4','2','61650','9','8','258','80','0','Bracers of the Autumn Willow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147067','4','4','4','62024','7','6','258','80','0','Legplates of Failing Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147068','4','4','3','62050','9','5','258','80','0','Bracers of Cloudy Omen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147069','4','2','1','60580','17','1','245','80','1','Justicebringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147070','4','4','0','39127','11','5','245','80','0','Ring of Callous Aggression','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147071','4','4','2','61706','8','8','245','80','0','Treads of the Icewalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147072','4','4','4','61368','6','6','245','80','0','Girdle of Bloodied Scars','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147073','4','4','3','62051','9','5','245','80','0','Bracers of the Untold Massacre','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147074','4','4','3','62051','9','5','258','80','0','Bracers of the Untold Massacre','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147075','4','4','0','39127','11','5','258','80','0','Ring of Callous Aggression','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147076','4','4','4','61368','6','6','258','80','0','Girdle of Bloodied Scars','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147077','4','4','2','61706','8','8','258','80','0','Treads of the Icewalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147078','4','2','1','60650','17','1','258','80','1','Justicebringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147079','4','4','6','61781','14','6','245','80','4','Bastion of Purity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147080','4','4','0','61410','12','4','245','80','0','Satrina\'s Impeding Scarab','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147081','4','4','1','61234','6','7','245','80','0','Cord of Biting Cold','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147082','4','4','4','61347','5','1','245','80','0','Chestplate of the Frostborn Hero','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147083','4','4','3','61988','7','5','245','80','0','Legguards of Concealed Hatred','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147084','4','4','1','61234','6','7','258','80','0','Cord of Biting Cold','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147085','4','4','6','61781','14','6','258','80','4','Bastion of Purity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147086','4','4','4','61347','5','1','258','80','0','Chestplate of the Frostborn Hero','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147087','4','4','3','61988','7','5','258','80','0','Legguards of Concealed Hatred','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147088','4','4','0','61410','12','4','258','80','0','Satrina\'s Impeding Scarab','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147089','4','4','1','61405','16','7','245','80','0','Cloak of Displacement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147090','4','4','3','61961','8','5','245','80','0','Boots of Tremoring Earth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147092','4','4','1','61235','8','7','245','80','0','Boots of the Mourning Widow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147093','4','4','4','62004','9','6','245','80','0','Vambraces of the Broken Bond','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147094','4','4','2','61713','20','8','245','80','0','Vestments of the Shattered Fellowship','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147095','4','4','1','61405','16','7','258','80','0','Cloak of Displacement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147096','4','4','2','61713','20','8','258','80','0','Vestments of the Shattered Fellowship','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147097','4','4','1','61235','8','7','258','80','0','Boots of the Mourning Widow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147098','4','4','4','62004','9','6','258','80','0','Vambraces of the Broken Bond','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147099','4','4','3','61961','8','5','258','80','0','Boots of Tremoring Earth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147104','4','2','15','60610','13','1','245','80','3','Twin Spike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147105','4','4','0','39209','2','3','245','80','0','The Executioner\'s Malice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147106','4','4','3','61941','8','5','245','80','0','Sabatons of Ruthless Judgment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147107','4','4','2','61652','6','8','245','80','0','Belt of the Merciless Killer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147108','4','4','4','62000','9','6','245','80','0','Bracers of the Shieldmaiden','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147109','4','4','3','61941','8','5','258','80','0','Sabatons of Ruthless Judgment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147110','4','4','0','39209','2','3','258','80','0','The Executioner\'s Malice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147111','4','4','4','62000','9','6','258','80','0','Bracers of the Shieldmaiden','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147112','4','4','2','61652','6','8','258','80','0','Belt of the Merciless Killer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147113','4','2','15','60610','13','1','258','80','3','Twin Spike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147114','4','2','10','60582','17','2','245','80','2','Lupine Longstaff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147115','4','4','0','61413','12','4','245','80','0','Death\'s Verdict','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147116','4','4','0','48509','2','4','245','80','0','The Arbiter\'s Muse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147121','4','4','4','62026','7','6','245','80','0','Legguards of Ascension','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147126','4','4','1','61721','20','7','245','80','0','Skyweaver Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147129','4','4','1','61721','20','7','258','80','0','Skyweaver Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147130','4','2','10','60653','17','2','258','80','2','Lupine Longstaff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147131','4','4','0','61413','12','4','258','80','0','Death\'s Verdict','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147132','4','4','4','62026','7','6','258','80','0','Legguards of Ascension','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147133','4','4','0','48509','2','4','258','80','0','The Arbiter\'s Muse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147138','4','4','0','61377','23','3','245','80','0','Chalice of Searing Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147139','4','4','0','39162','2','4','245','80','0','Wail of the Val\'kyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147140','4','4','2','61639','6','8','245','80','0','Cord of Pale Thorns','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147141','4','4','1','61236','9','7','245','80','0','Bindings of Dark Essence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147142','4','4','4','61849','5','1','245','80','0','Breastplate of the Frozen Lake','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147143','4','4','1','61236','9','7','258','80','0','Bindings of Dark Essence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147144','4','4','0','39162','2','4','258','80','0','Wail of the Val\'kyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147145','4','4','2','61639','6','8','258','80','0','Cord of Pale Thorns','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147146','4','4','0','61377','23','3','258','80','0','Chalice of Searing Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147147','4','4','4','61849','5','1','258','80','0','Breastplate of the Frozen Lake','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147148','4','2','0','60613','13','1','245','80','3','Stormpike Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147149','4','4','0','39123','11','3','245','80','0','Signet of the Traitor King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147150','4','4','4','62290','8','1','245','80','0','Greaves of the 7th Legion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147151','4','4','2','61653','9','8','245','80','0','Bracers of Dark Determination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147152','4','4','3','61962','6','5','245','80','0','Belt of Deathly Dominion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147153','4','4','3','61962','6','5','258','80','0','Belt of Deathly Dominion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147154','4','4','4','62290','8','1','258','80','0','Greaves of the 7th Legion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147155','4','4','2','61653','9','8','258','80','0','Bracers of Dark Determination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147156','4','2','0','60578','13','1','258','80','3','Stormpike Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147157','4','4','0','39123','11','3','258','80','0','Signet of the Traitor King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147170','4','4','2','60526','6','8','200','80','0','Belt of Fierce Competition','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147171','4','4','4','60525','7','1','200','80','0','Legguards of Abandoned Fealty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147172','4','4','4','55312','1','6','200','80','0','Helm of the Bested Gallant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147173','4','4','1','60523','9','7','200','80','0','Bindings of the Wicked','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147174','4','4','2','60457','6','8','200','80','0','Binding of the Tranquil Glade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147175','4','4','3','60524','8','5','200','80','0','Scale Boots of the Outlander','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147176','4','4','4','60528','5','1','200','80','0','Breastplate of the Imperial Joust','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147177','4','4','2','60530','10','8','200','80','0','Gloves of the Argent Fanatic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147178','4','4','3','60531','5','5','200','80','0','Carapace of Grim Visions','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147181','4','4','1','60527','6','7','200','80','0','Belt of the Churning Blaze','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147182','4','4','0','59316','12','4','245','80','0','Reign of the Unliving','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147183','4','4','1','33732','16','7','245','80','0','Strength of the Nerub','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147184','4','4','3','62162','7','5','245','80','0','Legguards of the Lurking Threat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147185','4','4','1','60529','7','7','200','80','0','Leggings of the Haggard Apprentice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147186','4','4','2','61926','7','8','245','80','0','Legwraps of the Awakening','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147187','4','4','1','61185','7','7','245','80','0','Leggings of the Deepening Void','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147188','4','4','0','59316','12','4','258','80','0','Reign of the Unliving','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147189','4','4','1','61185','7','7','258','80','0','Leggings of the Deepening Void','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147190','4','4','2','61926','7','8','258','80','0','Legwraps of the Awakening','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147191','4','4','3','62162','7','5','258','80','0','Legguards of the Lurking Threat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147192','4','4','1','33732','16','7','258','80','0','Strength of the Nerub','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147193','4','2','4','61659','21','1','245','80','3','Misery\'s End','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147194','4','4','1','61237','8','7','245','80','0','Footpads of the Icy Floe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147195','4','4','4','61341','6','1','245','80','0','Belt of the Forgotten Martyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147197','4','4','4','60532','10','1','200','80','0','Gauntlets of the Stouthearted Crusader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147199','4','4','4','60638','8','1','200','80','0','Greaves of the Grand Paladin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147200','4','4','0','39125','11','3','200','80','0','Signet of Purity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147201','4','4','4','60639','8','1','200','80','0','Boots of Heartfelt Repentance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147202','4','4','2','55856','7','8','200','80','0','Leggings of Brazen Trespass','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147203','4','4','1','61238','9','7','245','80','0','Armbands of the Ashen Saint','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147204','4','4','3','59179','5','5','245','80','0','Chestguard of Flowing Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147205','4','4','1','61237','8','7','258','80','0','Footpads of the Icy Floe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147206','4','2','4','61660','21','1','258','80','3','Misery\'s End','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147207','4','4','4','61341','6','1','258','80','0','Belt of the Forgotten Martyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147208','4','4','1','61238','9','7','258','80','0','Armbands of the Ashen Saint','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147209','4','4','3','59179','5','5','258','80','0','Chestguard of Flowing Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147210','4','4','2','60465','3','8','200','80','0','Mantle of Gnarled Overgrowth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147211','4','4','3','60537','9','5','200','80','0','Wristguards of Ceaseless Regret','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147212','4','4','4','60539','10','-1','200','80','0','Mercy\'s Hold','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147213','4','4','0','48010','12','4','200','80','0','Abyssal Rune','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147214','4','4','0','61414','12','4','200','80','0','Banner of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147215','4','4','0','59322','12','4','200','80','0','Tears of the Vanquished','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147216','4','4','0','61415','12','4','200','80','0','The Black Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147217','4','4','2','60536','1','8','200','80','0','Gaze of the Somber Keeper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147218','4','4','1','60540','6','7','200','80','0','The Confessor\'s Binding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147219','4','4','0','39212','2','3','200','80','0','Brilliant Hailstone Amulet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147220','4','4','4','60478','1','-1','200','80','0','Helm of the Violent Fray','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147221','4','4','2','60545','3','8','200','80','0','Shoulderpads of the Infamous Knave','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147222','4','4','0','49005','11','5','200','80','0','Uruka\'s Band of Zeal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147223','4','4','0','50376','11','3','245','80','0','Ring of the Darkmender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147224','4','4','0','50376','11','3','258','80','0','Ring of the Darkmender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147225','4','4','1','15040','16','7','245','80','0','Maiden\'s Favor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147226','4','4','1','60518','3','7','200','80','0','Mantle of Inconsolable Fear','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147227','4','4','4','60544','6','6','200','80','0','Girdle of the Pallid Knight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147228','4','4','3','60546','7','5','200','80','0','Leggings of the Bloodless Knight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147229','4','4','4','60641','6','6','200','80','0','Girdle of Arrogant Downfall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147230','4','4','1','60549','10','7','200','80','0','Handwraps of Surrendered Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147231','4','4','3','60640','6','5','200','80','0','Belt of Merciless Cruelty','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147232','4','4','1','31131','16','7','200','80','0','Drape of the Undefeated','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147233','4','2','6','60657','17','1','245','80','2','Archon Glaive','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147234','4','4','4','62059','10','1','245','80','0','Gloves of Bitter Reprisal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147235','4','4','1','61243','10','7','245','80','0','Gloves of the Lifeless Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147236','4','4','1','61243','10','7','258','80','0','Gloves of the Lifeless Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147237','4','4','0','39126','11','3','258','80','0','Band of Deplorable Violence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147238','4','4','1','15040','16','7','258','80','0','Maiden\'s Favor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147239','4','2','6','60657','17','1','258','80','2','Archon Glaive','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147240','4','4','4','62059','10','1','258','80','0','Gloves of Bitter Reprisal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147243','4','4','0','39129','11','3','219','80','0','Mark of the Relentless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147244','4','4','3','60551','5','5','219','80','0','Chestguard of the Ravenous Fiend','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147245','4','4','3','60505','3','5','219','80','0','Pauldrons of Concealed Loathing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147248','4','4','2','60642','8','8','219','80','0','Treads of Dismal Fortune','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147249','4','4','2','60550','7','8','219','80','0','Leggings of the Snowy Bramble','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147250','4','4','3','60488','3','5','219','80','0','Pauldrons of the Deafening Gale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147251','4','4','3','61219','5','5','245','80','0','Cuirass of Cruel Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147252','4','4','0','53042','11','5','245','80','0','Ring of the Violent Temperament','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147253','4','4','4','62143','9','1','245','80','0','Boneshatter Vambraces','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147254','4','4','4','61525','5','1','245','80','0','Hauberk of the Towering Monstrosity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147255','4','2','15','60591','13','1','245','80','3','Stygian Bladebreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147256','4','4','1','61402','16','7','245','80','0','Drape of the Refreshing Winds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147257','4','4','1','61404','16','7','245','80','0','Cloak of the Untamed Predator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147258','4','4','1','59003','6','7','245','80','0','Belt of the Tenebrous Mist','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147259','4','4','2','61250','7','8','245','80','0','Legwraps of the Broken Beast','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147260','4','4','6','61785','14','6','245','80','4','Forlorn Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147261','4','2','15','60592','21','1','245','80','3','Barb of Tarasque','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147262','4','4','2','61249','8','8','245','80','0','Boots of the Harsh Winter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147263','4','4','4','61540','8','1','245','80','0','Sabatons of the Courageous','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147264','4','4','1','62082','20','7','245','80','0','Flowing Robes of Ascent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147265','4','4','3','61254','6','5','245','80','0','Binding of the Ice Burrower','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147266','4','2','0','60659','13','1','245','80','3','Blood Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147267','4','2','18','60595','26','2','245','80','0','Death\'s Head Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147268','4','4','4','62138','6','6','245','80','0','Bloodbath Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147269','4','4','4','61545','8','1','245','80','0','Dawnbreaker Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147270','4','4','2','61208','5','8','245','80','0','Vest of Calamitous Fate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147271','4','4','0','59319','12','4','245','80','0','Solace of the Fallen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147272','4','4','0','39210','2','3','245','80','0','Charge of the Eredar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147273','4','4','4','62127','7','1','245','80','0','Legplates of Feverish Dedication','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147274','4','4','1','62074','7','7','245','80','0','Pants of the Soothing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147275','4','4','1','43290','16','7','245','80','0','Pride of the Demon Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147276','4','4','0','61790','23','3','245','80','0','Talisman of Heedless Sins','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147277','4','4','2','61182','9','8','245','80','0','Bindings of the Autumn Willow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147278','4','4','0','50376','11','3','245','80','0','Circle of the Darkmender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147279','4','4','4','62119','7','6','245','80','0','Leggings of Failing Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147280','4','4','3','61113','9','5','245','80','0','Wristwraps of Cloudy Omen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147281','4','4','3','61253','9','5','245','80','0','Bracers of the Silent Massacre','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147282','4','4','0','39127','11','5','245','80','0','Band of Callous Aggression','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147283','4','4','4','62137','6','6','245','80','0','Belt of Bloodied Scars','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147284','4','4','2','61173','8','8','245','80','0','Icewalker Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147285','4','2','1','60596','17','1','245','80','1','Dual-blade Butcher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147286','4','4','1','61872','6','7','245','80','0','Belt of Biting Cold','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147287','4','4','6','62299','14','6','245','80','4','Bastion of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147288','4','4','4','61485','5','1','245','80','0','Chestplate of the Frostwolf Hero','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147289','4','4','3','62102','7','5','245','80','0','Leggings of Concealed Hatred','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147290','4','4','0','61410','12','4','245','80','0','Juggernaut\'s Vitality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147291','4','4','1','61406','16','7','245','80','0','Shroud of Displacement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147292','4','4','2','61720','20','8','245','80','0','Robes of the Shattered Fellowship','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147293','4','4','1','62109','8','7','245','80','0','Sandals of the Mourning Widow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147294','4','4','4','61550','9','6','245','80','0','Bracers of the Broken Bond','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147295','4','4','3','61114','8','5','245','80','0','Sabatons of Tremoring Earth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147296','4','4','3','61104','8','5','245','80','0','Greaves of Ruthless Judgment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147297','4','4','0','39209','2','3','245','80','0','The Executioner\'s Vice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147298','4','4','4','61550','9','6','245','80','0','Armguards of the Shieldmaiden','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147299','4','4','2','61181','6','8','245','80','0','Belt of the Pitiless Killer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147300','4','2','15','60660','13','1','245','80','3','Gouge of the Frigid Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147301','4','4','1','61866','20','7','245','80','0','Skyweaver Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147302','4','2','10','60598','17','2','245','80','2','Twin\'s Pact','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147303','4','4','0','61413','12','4','245','80','0','Death\'s Choice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147304','4','4','4','62122','7','6','245','80','0','Legplates of Ascension','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147305','4','4','0','48509','2','4','245','80','0','Legionnaire\'s Gorget','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147306','4','4','1','61827','9','7','245','80','0','Dark Essence Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147307','4','4','0','39162','2','4','245','80','0','Cry of the Val\'kyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147308','4','4','2','62081','6','8','245','80','0','Belt of Pale Thorns','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147309','4','4','0','61791','23','3','245','80','0','Mystifying Charm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147310','4','4','4','61499','5','1','245','80','0','Chestplate of the Frozen Lake','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147311','4','4','3','61103','6','5','245','80','0','Waistguard of Deathly Dominion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147312','4','4','4','62140','8','1','245','80','0','Greaves of the Saronite Citadel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147313','4','4','2','61175','9','8','245','80','0','Armbands of Dark Determination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147314','4','2','0','60603','13','1','245','80','3','Hellscream Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147315','4','4','0','39123','11','3','245','80','0','Band of the Traitor King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147316','4','4','0','59316','12','4','245','80','0','Reign of the Dead','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147317','4','4','1','62076','7','7','245','80','0','Breeches of the Deepening Void','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147318','4','4','2','61252','7','8','245','80','0','Leggings of the Awakening','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147319','4','4','3','62101','7','5','245','80','0','Leggings of the Lurking Threat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147320','4','4','1','26141','16','7','245','80','0','Might of the Nerub','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147321','4','4','1','62110','8','7','245','80','0','Boots of the Icy Floe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147322','4','2','4','60685','21','1','245','80','3','Suffering\'s End','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147323','4','4','4','62136','6','1','245','80','0','Girdle of the Forgotten Martyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147324','4','4','1','61814','9','7','245','80','0','Bindings of the Ashen Saint','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147325','4','4','3','62104','5','5','245','80','0','Cuirass of Flowing Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147326','4','4','1','62069','10','7','245','80','0','Handwraps of the Lifeless Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147327','4','4','0','39126','11','3','245','80','0','Lurid Manifestation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147328','4','4','1','15163','16','7','245','80','0','Maiden\'s Adoration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147329','4','2','6','60602','17','1','245','80','1','Hellion Glaive','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147330','4','4','4','62113','10','1','245','80','0','Gauntlets of Bitter Reprisal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147412','4','4','3','61219','5','5','258','80','0','Cuirass of Cruel Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147413','4','4','0','53042','11','5','258','80','0','Ring of the Violent Temperament','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147414','4','4','4','62143','9','1','258','80','0','Boneshatter Vambraces','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147415','4','4','4','61525','5','1','258','80','0','Hauberk of the Towering Monstrosity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147416','4','2','15','60591','13','1','258','80','3','Stygian Bladebreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147417','4','4','1','61402','16','7','258','80','0','Drape of the Refreshing Winds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147418','4','4','1','61404','16','7','258','80','0','Cloak of the Untamed Predator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147419','4','4','1','59003','6','7','258','80','0','Belt of the Tenebrous Mist','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147420','4','4','2','61250','7','8','258','80','0','Legwraps of the Broken Beast','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147421','4','4','6','61785','14','6','258','80','4','Forlorn Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147422','4','2','15','60592','21','1','258','80','3','Barb of Tarasque','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147423','4','4','2','61249','8','8','258','80','0','Boots of the Harsh Winter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147424','4','4','4','61551','8','1','258','80','0','Sabatons of the Courageous','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147425','4','4','1','62082','20','7','258','80','0','Flowing Robes of Ascent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147426','4','4','3','61112','6','5','258','80','0','Binding of the Ice Burrower','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147427','4','2','0','60659','13','1','258','80','3','Blood Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147428','4','2','18','60595','26','2','258','80','0','Death\'s Head Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147429','4','4','4','62138','6','6','258','80','0','Bloodbath Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147430','4','4','4','61545','8','1','258','80','0','Dawnbreaker Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147431','4','4','2','61208','5','8','258','80','0','Vest of Calamitous Fate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147432','4','4','0','59319','12','4','258','80','0','Solace of the Fallen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147433','4','4','0','39210','2','3','258','80','0','Charge of the Eredar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147434','4','4','4','62127','7','1','258','80','0','Legplates of Feverish Dedication','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147435','4','4','1','62074','7','7','258','80','0','Pants of the Soothing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147436','4','4','1','43290','16','7','258','80','0','Pride of the Demon Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147437','4','4','0','61790','23','3','258','80','0','Talisman of Heedless Sins','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147438','4','4','2','61182','9','8','258','80','0','Bindings of the Autumn Willow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147439','4','4','0','50376','11','3','258','80','0','Circle of the Darkmender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147440','4','4','4','62119','7','6','258','80','0','Leggings of Failing Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147441','4','4','3','61113','9','5','258','80','0','Wristwraps of Cloudy Omen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147442','4','4','3','61253','9','5','258','80','0','Bracers of the Silent Massacre','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147443','4','4','0','39127','11','5','258','80','0','Band of Callous Aggression','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147444','4','4','4','62137','6','6','258','80','0','Belt of Bloodied Scars','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147445','4','4','2','61173','8','8','258','80','0','Icewalker Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147446','4','2','1','60596','17','1','258','80','1','Dual-blade Butcher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147447','4','4','1','61872','6','7','258','80','0','Belt of Biting Cold','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147448','4','4','6','62299','14','6','258','80','4','Bastion of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147449','4','4','4','61485','5','1','258','80','0','Chestplate of the Frostwolf Hero','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147450','4','4','3','62102','7','5','258','80','0','Leggings of Concealed Hatred','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147451','4','4','0','61410','12','4','258','80','0','Juggernaut\'s Vitality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147452','4','4','1','61406','16','7','258','80','0','Shroud of Displacement','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147453','4','4','2','61720','20','8','258','80','0','Robes of the Shattered Fellowship','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147454','4','4','1','62109','8','7','258','80','0','Sandals of the Mourning Widow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147455','4','4','4','61550','9','6','258','80','0','Bracers of the Broken Bond','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147456','4','4','3','61114','8','5','258','80','0','Sabatons of Tremoring Earth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147457','4','4','3','61104','8','5','258','80','0','Greaves of Ruthless Judgment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147458','4','4','0','39209','2','3','258','80','0','The Executioner\'s Vice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147459','4','4','4','61550','9','6','258','80','0','Armguards of the Shieldmaiden','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147460','4','4','2','61181','6','8','258','80','0','Belt of the Pitiless Killer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147461','4','2','15','60660','13','1','258','80','3','Gouge of the Frigid Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147462','4','4','1','61866','20','7','258','80','0','Skyweaver Vestments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147463','4','2','10','60598','17','2','258','80','2','Twin\'s Pact','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147464','4','4','0','61413','12','4','258','80','0','Death\'s Choice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147465','4','4','4','62122','7','6','258','80','0','Legplates of Ascension','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147466','4','4','0','48509','2','4','258','80','0','Legionnaire\'s Gorget','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147467','4','4','1','61827','9','7','258','80','0','Dark Essence Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147468','4','4','0','39162','2','4','258','80','0','Cry of the Val\'kyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147469','4','4','2','62081','6','8','258','80','0','Belt of Pale Thorns','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147470','4','4','0','61791','23','3','258','80','0','Mystifying Charm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147471','4','4','4','61499','5','1','258','80','0','Chestplate of the Frozen Lake','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147472','4','4','3','61103','6','5','258','80','0','Waistguard of Deathly Dominion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147473','4','4','4','62140','8','1','258','80','0','Greaves of the Saronite Citadel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147474','4','4','2','61175','9','8','258','80','0','Armbands of Dark Determination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147475','4','2','0','60603','13','1','258','80','3','Hellscream Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147476','4','4','0','39123','11','3','258','80','0','Band of the Traitor King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147477','4','4','0','59316','12','4','258','80','0','Reign of the Dead','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147478','4','4','1','62076','7','7','258','80','0','Breeches of the Deepening Void','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147479','4','4','2','61205','7','8','258','80','0','Leggings of the Awakening','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147480','4','4','3','62101','7','5','258','80','0','Leggings of the Lurking Threat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147481','4','4','1','26141','16','7','258','80','0','Might of the Nerub','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147482','4','4','1','62110','8','7','258','80','0','Boots of the Icy Floe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147483','4','2','4','61657','21','1','258','80','3','Suffering\'s End','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147484','4','4','4','62136','6','1','258','80','0','Girdle of the Forgotten Martyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147485','4','4','1','59004','9','7','258','80','0','Bindings of the Ashen Saint','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147486','4','4','3','62104','5','5','258','80','0','Cuirass of Flowing Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147487','4','4','1','62069','10','7','258','80','0','Handwraps of the Lifeless Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147489','4','4','0','39126','11','3','258','80','0','Lurid Manifestation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147490','4','4','1','15163','16','7','258','80','0','Maiden\'s Adoration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147491','4','2','6','60602','17','1','258','80','1','Hellion Glaive','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147492','4','4','4','62113','10','1','258','80','0','Gauntlets of Bitter Reprisal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147493','4','2','1','60562','17','1','219','80','1','Edge of Ruin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147494','4','4','0','39162','2','3','219','80','0','Ancient Pendant of Arathor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147495','4','4','4','60555','7','6','219','80','0','Legplates of Relentless Onslaught','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147496','4','4','2','60557','9','8','219','80','0','Armbands of the Wary Lookout','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147497','4','4','4','60556','1','1','219','80','0','Helm of the Crestfallen Challenger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147498','4','4','2','60554','10','8','219','80','0','Gloves of Dismal Fortune','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147500','4','2','7','60564','13','1','219','80','3','Peacekeeper Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147501','4','4','1','61408','16','7','219','80','0','Kurisu\'s Indecision','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147502','4','4','4','60502','3','6','219','80','0','Majestic Silversmith Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147503','4','4','4','60560','7','6','219','80','0','Legplates of the Argent Armistice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147504','4','4','2','60643','8','8','219','80','0','Barkhide Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147506','4','2','7','60617','13','1','258','80','3','Silverwing Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147508','4','2','4','60561','13','1','219','80','3','Aledar\'s Battlestar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147509','4','2','4','61663','21','2','219','80','3','Mariel\'s Sorrow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147510','4','4','4','60644','6','1','219','80','0','Trueheart Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147511','4','4','4','63410','8','1','219','80','0','Plated Greaves of Providence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147512','4','4','0','33534','11','3','219','80','0','Sinner\'s Confession','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147513','4','2','7','60674','13','1','258','80','3','Orgrim\'s Deflector','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147514','4','4','4','60508','3','1','219','80','0','Regal Aurous Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147515','4','2','8','60665','17','1','258','80','1','Decimation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147516','4','2','8','60670','17','1','258','80','1','Fleshrender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147517','4','2','7','60666','21','1','258','80','3','Blade of the Unbroken Covenant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147518','4','2','7','60671','21','1','258','80','3','Mortalis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147519','4','2','5','60652','17','1','258','80','1','Catastrophe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147520','4','2','5','60669','17','1','258','80','1','Grievance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147521','4','2','3','60667','26','1','258','80','0','BRK-1000','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147522','4','2','6','40365','17','1','219','80','1','Marrowstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147523','4','2','3','60623','26','1','258','80','0','Fezzik\'s Autocannon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147524','4','2','10','60611','17','2','258','80','2','Clemency','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147525','4','2','10','60672','17','2','258','80','2','Sufferance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147526','4','2','4','61679','13','1','258','80','3','Remorseless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147527','4','4','1','60570','20','7','219','80','0','Embrace of Madness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147528','4','2','4','60673','13','1','258','80','3','Cudgel of the Damned','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147529','4','4','2','60510','1','8','219','80','0','Mask of Distant Memory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147545','4','4','1','61260','16','7','272','80','0','Vereesa\'s Dexterity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147546','4','4','1','61400','16','7','272','80','0','Sylvanas\' Cunning','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147547','4','4','1','61260','16','7','272','80','0','Varian\'s Furor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147548','4','4','1','61400','16','7','272','80','0','Garrosh\'s Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147549','4','4','1','61260','16','7','272','80','0','Magni\'s Resolution','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147550','4','4','1','61400','16','7','272','80','0','Cairne\'s Endurance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147551','4','4','1','61400','16','7','272','80','0','Aethas\' Intensity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147552','4','4','1','61260','16','7','272','80','0','Jaina\'s Radiance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147553','4','4','1','61260','16','7','272','80','0','Bolvar\'s Devotion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147554','4','4','1','61400','16','7','272','80','0','Lady Liadrin\'s Conviction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147560','4','4','1','60568','8','7','219','80','0','Boots of the Crackling Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147561','4','4','3','60569','10','5','219','80','0','Gloves of the Dark Exile','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147562','4','4','0','39211','2','4','219','80','0','Symbol of Redemption','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147563','4','4','3','60646','6','5','219','80','0','Girdle of the Dauntless Conqueror','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147564','4','4','1','60520','1','7','219','80','0','Gaze of the Unknown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147565','4','4','4','60575','9','1','219','80','0','Vambraces of Unholy Command','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147566','4','4','0','40038','2','4','219','80','0','The Warlord\'s Depravity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147567','4','4','4','60574','10','1','219','80','0','Gauntlets of Revelation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147568','4','2','3','60647','26','1','219','80','0','True-aim Long Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147569','4','2','15','60572','21','1','219','80','3','Spectral Kris','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147570','4','4','4','61897','9','6','245','80','0','Saronite Swordbreakers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147571','4','4','4','62141','9','6','245','80','0','Saronite Swordbreakers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147572','4','4','4','62003','9','1','245','80','0','Titanium Spikeguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147573','4','4','4','62142','9','1','245','80','0','Titanium Spikeguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147574','4','4','4','62002','9','6','245','80','0','Sunforged Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147575','4','4','4','61550','9','6','245','80','0','Sunforged Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147576','4','4','3','62051','9','5','245','80','0','Crusader\'s Dragonscale Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147577','4','4','3','61253','9','5','245','80','0','Crusader\'s Dragonscale Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147578','4','4','0','35431','11','5','232','80','0','Carnivorous Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147579','4','4','3','62050','9','5','245','80','0','Black Chitin Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147580','4','4','3','61113','9','5','245','80','0','Black Chitin Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147581','4','4','2','61653','9','8','245','80','0','Bracers of Swift Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147582','4','4','2','61175','9','8','245','80','0','Bracers of Swift Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147583','4','4','2','61650','9','8','245','80','0','Moonshadow Armguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147584','4','4','2','61182','9','8','245','80','0','Moonshadow Armguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147585','4','4','1','61241','9','7','245','80','0','Bejeweled Wizard\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147586','4','4','1','61827','9','7','245','80','0','Bejeweled Wizard\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147587','4','4','1','61238','9','7','245','80','0','Royal Moonshroud Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147588','4','4','1','61814','9','7','245','80','0','Royal Moonshroud Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147589','4','4','4','62047','5','3','245','80','0','Titanium Razorplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147590','4','4','4','61485','5','3','245','80','0','Titanium Razorplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147591','4','4','4','61347','5','1','245','80','0','Breastplate of the White Knight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147592','4','4','4','62052','5','1','245','80','0','Breastplate of the White Knight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147593','4','4','4','61849','5','1','245','80','0','Sunforged Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147594','4','4','4','61499','5','1','245','80','0','Sunforged Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147595','4','4','3','61825','5','5','245','80','0','Crusader\'s Dragonscale Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147596','4','4','3','61219','5','5','245','80','0','Crusader\'s Dragonscale Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147597','4','4','3','59179','5','5','245','80','0','Ensorcelled Nerubian Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147598','4','4','3','62104','5','5','245','80','0','Ensorcelled Nerubian Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147599','4','4','2','61930','5','8','245','80','0','Knightbane Carapace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147600','4','4','2','61208','5','8','245','80','0','Knightbane Carapace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147601','4','4','2','61720','20','8','245','80','0','Lunar Eclipse Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147602','4','4','2','61713','20','8','245','80','0','Lunar Eclipse Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147603','4','4','1','61717','20','7','245','80','0','Merlin\'s Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147604','4','4','1','61866','20','7','245','80','0','Merlin\'s Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147605','4','4','1','61722','20','7','245','80','0','Royal Moonshroud Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147606','4','4','1','62082','20','7','245','80','0','Royal Moonshroud Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147607','4','4','0','34274','2','4','232','80','0','Collar of Ceaseless Torment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147608','4','4','2','61706','8','8','232','80','0','Acidmaw Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147609','4','4','4','62065','10','1','232','80','0','Gauntlets of Rising Anger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147610','4','4','3','62051','9','5','232','80','0','Armbands of the Northern Stalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147611','4','4','4','62001','9','6','232','80','0','Dreadscale Armguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147612','4','2','19','60605','26','2','232','80','0','Rod of Imprisoned Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147613','4','4','2','61932','3','8','232','80','0','Shoulderpads of the Glacial Wilds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147614','4','4','4','62006','6','6','232','80','0','Girdle of the Impaler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147615','4','4','4','62008','6','1','232','80','0','Belt of the Frozen Reach','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147616','4','4','3','61938','3','5','232','80','0','Shoulderguards of the Spirit Walker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147617','4','4','1','61682','6','7','232','80','0','Icehowl Cinch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147618','4','4','0','39123','11','3','232','80','0','Firestorm Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147619','4','4','0','59307','2','4','232','80','0','Amulet of Binding Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147620','4','4','1','61170','7','7','232','80','0','Leggings of the Demonic Messenger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147621','4','4','3','61939','6','5','232','80','0','Girdle of the Farseer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147658','4','2','19','60586','26','2','245','80','0','Brimstone Igniter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147659','4','2','16','60590','25','1','245','80','0','Crimson Star','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147660','4','2','16','60588','25','1','245','80','0','Blades of the Sable Cross','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147661','4','4','7','34960','28','2','245','80','0','Libram of Valiance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147662','4','4','7','34961','28','2','245','80','0','Libram of Veracity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147663','4','4','1','61241','9','7','232','80','0','Felspark Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147664','4','4','7','34960','28','2','245','80','0','Libram of Defiance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147665','4','4','9','25246','28','2','245','80','0','Totem of Calming Tides','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147666','4','4','9','54871','28','2','245','80','0','Totem of Electrifying Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147667','4','4','9','62300','28','2','245','80','0','Totem of Quaking Earth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147668','4','4','8','54700','28','2','245','80','0','Idol of Mutilation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147669','4','4','2','61639','6','8','232','80','0','Belt of the Winter Solstice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147670','4','4','8','34954','28','2','245','80','0','Idol of Lunar Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147671','4','4','8','34954','28','2','245','80','0','Idol of Flaring Growth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147672','4','4','10','51913','28','2','245','80','0','Sigil of Insolence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147673','4','4','10','51913','28','2','245','80','0','Sigil of Virulence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147674','4','4','4','62039','1','4','245','80','0','Helm of Thunderous Rampage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147675','4','4','4','62115','1','4','245','80','0','Faceplate of Thunderous Rampage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147676','4','2','15','60610','13','1','232','80','3','Dirk of the Night Watch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147677','4','4','4','62027','1','1','245','80','0','Faceplate of the Honorbound','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147678','4','4','4','62117','1','1','245','80','0','Headplate of the Honorbound','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147679','4','4','0','48510','2','4','232','80','0','Endurance of the Infernal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147680','4','4','4','61999','9','1','232','80','0','Armguards of the Nether Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147681','4','4','4','62035','1','4','245','80','0','Heaume of the Restless Watch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147682','4','4','4','62116','1','4','245','80','0','Helm of the Restless Watch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147683','4','4','3','61941','8','5','232','80','0','Sentinel Scouting Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147684','4','4','3','62098','1','5','245','80','0','Coif of the Brooding Dragon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147685','4','4','3','61984','1','5','245','80','0','Helm of the Brooding Dragon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147686','4','4','3','61985','1','5','245','80','0','Helm of Inner Warmth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147687','4','4','3','62053','1','5','245','80','0','Headguard of Inner Warmth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147688','4','4','2','61210','1','8','245','80','0','Mask of Lethal Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147689','4','4','2','62160','1','8','245','80','0','Hood of Lethal Intent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147690','4','4','2','62159','1','8','245','80','0','Helm of Abundant Growth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147691','4','4','2','61198','1','8','245','80','0','Mask of Abundant Growth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147692','4','4','1','62073','1','7','245','80','0','Hood of Smoldering Aftermath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147693','4','4','1','61162','1','7','245','80','0','Hood of Fiery Aftermath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147694','4','4','1','61188','1','7','245','80','0','Helm of Clouded Sight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147695','4','4','1','62071','1','7','245','80','0','Hood of Clouded Sight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147696','4','4','4','61731','3','6','245','80','0','Shoulderplates of Trembling Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147697','4','4','4','62010','3','6','245','80','0','Pauldrons of Trembling Rage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147698','4','4','4','62011','3','1','245','80','0','Shoulderplates of Enduring Order','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147699','4','4','4','62134','3','1','245','80','0','Shoulderguards of Enduring Order','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147700','4','4','0','39128','11','3','232','80','0','Loop of the Twin Val\'kyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147701','4','4','4','62133','3','1','245','80','0','Shoulderplates of the Cavalier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147702','4','4','4','62014','3','1','245','80','0','Pauldrons of the Cavalier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147703','4','4','0','39120','11','5','232','80','0','Planestalker Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147704','4','4','3','61995','3','5','245','80','0','Epaulets of the Devourer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147705','4','4','3','62107','3','5','245','80','0','Pauldrons of the Devourer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147706','4','4','3','61226','3','5','245','80','0','Shoulders of the Groundbreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147707','4','4','3','61938','3','5','245','80','0','Mantle of the Groundbreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147708','4','4','2','61933','3','8','245','80','0','Duskstalker Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147709','4','4','2','61213','3','8','245','80','0','Duskstalker Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147710','4','4','2','61201','3','8','245','80','0','Epaulets of the Fateful Accord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147711','4','4','4','61297','6','6','232','80','0','Girdle of the Nether Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147712','4','4','2','61932','3','8','245','80','0','Shoulders of the Fateful Accord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147713','4','4','1','61190','3','7','245','80','0','Mantle of Catastrophic Emanation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147714','4','4','1','62092','3','7','245','80','0','Pauldrons of Catastrophic Emanation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147715','4','4','1','61172','3','7','245','80','0','Pauldrons of Revered Mortality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147716','4','4','1','62087','3','7','245','80','0','Mantle of Revered Mortality','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147717','4','4','4','62035','1','-1','232','80','0','Faceplate of the Silver Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147718','4','4','3','61984','1','5','232','80','0','Helm of the Silver Ranger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147719','4','4','2','61903','10','8','232','80','0','Gloves of the Silver Assassin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147720','4','4','4','62009','3','1','232','80','0','Pauldrons of the Silver Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147721','4','4','1','61561','8','7','232','80','0','Sandals of the Silver Magus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147724','4','2','15','60658','21','1','232','80','3','Blade of the Silver Disciple','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147725','4','4','0','61409','12','4','232','80','0','Victor\'s Call','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147726','4','4','0','45854','12','4','232','80','0','Talisman of Volatile Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147727','4','4','0','7244','12','4','232','80','0','Fervor of the Frostborn','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147728','4','4','0','48009','12','4','232','80','0','Binding Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147729','4','4','0','44841','11','5','245','80','0','Bloodshed Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147730','4','4','0','33808','11','5','245','80','0','Dexterous Brightstone Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147731','4','4','0','35313','11','3','245','80','0','Clutch of Fortification','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147732','4','4','0','43095','11','3','245','80','0','Band of the Invoker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147733','4','4','0','39123','11','3','245','80','0','Heartmender Circle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147734','4','4','0','59322','12','4','245','80','0','Mark of Supremacy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147735','4','4','0','59320','12','4','245','80','0','Glyph of Indomitability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147736','4','2','15','60609','13','1','232','80','3','Icefall Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147737','4','2','8','60608','17','1','232','80','1','Reckoning','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147738','4','4','4','61372','8','1','232','80','0','Sabatons of the Lingering Vortex','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147739','4','4','2','61930','5','8','232','80','0','Armor of Shifting Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147740','4','2','3','60607','26','1','232','80','0','The Diplomat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147741','4','2','18','60579','26','2','232','80','0','Baelgun\'s Heavy Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147742','4','4','0','60705','23','3','232','80','0','Chalice of Benedictus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147743','4','2','10','60611','17','2','232','80','2','Enlightenment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147744','4','4','3','62093','10','5','232','80','0','Gloves of the Azure Prophet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147745','4','4','1','61243','10','7','232','80','0','Gloves of Looming Shadow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147746','4','4','2','62159','1','8','232','80','0','Helm of the Snowy Grotto','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147747','4','4','0','59307','2','4','232','80','0','Darkbane Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147748','4','4','1','61162','1','7','232','80','0','Khadgar\'s Hood of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147749','4','4','1','61721','20','7','232','80','0','Khadgar\'s Robe of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147750','4','4','1','61189','7','7','232','80','0','Khadgar\'s Leggings of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147751','4','4','1','61190','3','7','232','80','0','Khadgar\'s Shoulderpads of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147752','4','4','1','61163','10','7','232','80','0','Khadgar\'s Gauntlets of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147753','4','4','1','61163','10','7','245','80','0','Khadgar\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147754','4','4','1','61162','1','7','245','80','0','Khadgar\'s Hood of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147755','4','4','1','61189','7','7','245','80','0','Khadgar\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147756','4','4','1','61721','20','7','245','80','0','Khadgar\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147757','4','4','1','61190','3','7','245','80','0','Khadgar\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147758','4','4','1','61190','3','7','258','80','0','Khadgar\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147759','4','4','1','61721','20','7','258','80','0','Khadgar\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147760','4','4','1','61189','7','7','258','80','0','Khadgar\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147761','4','4','1','61162','1','7','258','80','0','Khadgar\'s Hood of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147762','4','4','1','61163','10','7','258','80','0','Khadgar\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147763','4','4','1','62066','10','7','258','80','0','Sunstrider\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147764','4','4','1','62070','1','7','258','80','0','Sunstrider\'s Hood of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147765','4','4','1','62075','7','7','258','80','0','Sunstrider\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147766','4','4','1','62080','20','7','258','80','0','Sunstrider\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147767','4','4','1','62090','3','7','258','80','0','Sunstrider\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147768','4','4','1','62090','3','7','245','80','0','Sunstrider\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147769','4','4','1','62080','20','7','245','80','0','Sunstrider\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147770','4','4','1','62075','7','7','245','80','0','Sunstrider\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147771','4','4','1','62070','1','7','245','80','0','Sunstrider\'s Hood of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147772','4','4','1','62066','10','7','245','80','0','Sunstrider\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147773','4','4','1','62066','10','7','232','80','0','Sunstrider\'s Gauntlets of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147774','4','4','1','62070','1','7','232','80','0','Sunstrider\'s Hood of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147775','4','4','1','62075','7','7','232','80','0','Sunstrider\'s Leggings of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147776','4','4','1','62080','20','7','232','80','0','Sunstrider\'s Robe of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147777','4','4','1','62090','3','7','232','80','0','Sunstrider\'s Shoulderpads of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147778','4','4','1','61184','1','7','245','80','0','Kel\'Thuzad\'s Hood of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147779','4','4','1','61717','20','7','245','80','0','Kel\'Thuzad\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147780','4','4','1','61185','7','7','245','80','0','Kel\'Thuzad\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147781','4','4','1','61187','3','7','245','80','0','Kel\'Thuzad\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147782','4','4','1','61183','10','7','245','80','0','Kel\'Thuzad\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147783','4','4','1','61183','10','7','232','80','0','Kel\'Thuzad\'s Gloves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147784','4','4','1','61184','1','7','232','80','0','Kel\'Thuzad\'s Hood of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147785','4','4','1','61185','7','7','232','80','0','Kel\'Thuzad\'s Leggings of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147786','4','4','1','61717','20','7','232','80','0','Kel\'Thuzad\'s Robe of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147787','4','4','1','61187','3','7','232','80','0','Kel\'Thuzad\'s Shoulderpads of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147788','4','4','1','61183','10','7','258','80','0','Kel\'Thuzad\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147789','4','4','1','61184','1','7','258','80','0','Kel\'Thuzad\'s Hood of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147790','4','4','1','61185','7','7','258','80','0','Kel\'Thuzad\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147791','4','4','1','61717','20','7','258','80','0','Kel\'Thuzad\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147792','4','4','1','61187','3','7','258','80','0','Kel\'Thuzad\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147793','4','4','1','62092','3','7','258','80','0','Gul\'dan\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147794','4','4','1','62083','20','7','258','80','0','Gul\'dan\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147795','4','4','1','62076','7','7','258','80','0','Gul\'dan\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147796','4','4','1','62073','1','7','258','80','0','Gul\'dan\'s Hood of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147797','4','4','1','62068','10','7','258','80','0','Gul\'dan\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147798','4','4','1','62092','3','7','232','80','0','Gul\'dan\'s Shoulderpads of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147799','4','4','1','62083','20','7','232','80','0','Gul\'dan\'s Robe of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147800','4','4','1','62076','7','7','232','80','0','Gul\'dan\'s Leggings of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147801','4','4','1','62073','1','7','232','80','0','Gul\'dan\'s Hood of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147802','4','4','1','62068','10','7','232','80','0','Gul\'dan\'s Gloves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147803','4','4','1','62068','10','7','245','80','0','Gul\'dan\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147804','4','4','1','62073','1','7','245','80','0','Gul\'dan\'s Hood of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147805','4','4','1','62076','7','7','245','80','0','Gul\'dan\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147806','4','4','1','62083','20','7','245','80','0','Gul\'dan\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147807','4','4','1','62092','3','7','245','80','0','Gul\'dan\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147808','4','2','0','60613','13','1','232','80','3','The Lion\'s Maw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147809','4','2','4','61659','21','1','232','80','3','Argent Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147810','4','2','7','60617','13','1','232','80','3','Crusader\'s Glory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147811','4','4','4','62045','5','1','232','80','0','Chestguard of the Warden','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147812','4','4','6','61777','14','6','232','80','4','Vigilant Ward','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147813','4','4','3','61985','1','5','232','80','0','Helmet of the Crypt Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147814','4','2','7','61692','13','1','232','80','3','Westfall Saber','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147815','4','2','10','60611','17','2','232','80','2','Cold Convergence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147816','4','2','4','60675','13','1','232','80','3','The Grinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147829','4','4','3','61995','3','5','232','80','0','Pauldrons of the Timeless Hunter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147830','4','4','4','62021','7','6','232','80','0','Legplates of the Silver Hand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147832','4','4','2','61933','3','8','232','80','0','Spaulders of the Snow Bandit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147834','4','2','6','60619','17','1','232','80','2','Fordragon Blades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147835','4','4','6','61776','14','6','232','80','4','Bulwark of the Royal Guard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147836','4','4','4','62023','7','6','232','80','0','Legplates of the Immortal Spider','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147837','4','4','1','61233','6','7','232','80','0','Cinch of the Undying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147838','4','4','1','61721','20','7','232','80','0','Vestments of the Sleepless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147849','4','4','0','34274','2','4','232','80','0','Collar of Unending Torment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147850','4','4','3','61253','9','5','232','80','0','Bracers of the Northern Stalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147851','4','4','4','61486','10','1','232','80','0','Gauntlets of Mounting Anger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147852','4','4','4','61535','9','6','232','80','0','Dreadscale Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147853','4','4','2','62079','8','8','232','80','0','Acidmaw Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147854','4','4','0','35431','11','5','232','80','0','Gormok\'s Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147855','4','4','1','61861','6','7','232','80','0','Icehowl Binding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147856','4','2','19','61271','26','2','232','80','0','Scepter of Imprisoned Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147857','4','4','2','61201','3','8','232','80','0','Pauldrons of the Glacial Wilds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147858','4','4','4','62136','6','1','232','80','0','Girdle of the Frozen Reach','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147859','4','4','4','62137','6','6','232','80','0','Belt of the Impaler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147860','4','4','3','61226','3','5','232','80','0','Pauldrons of the Spirit Walker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147861','4','4','1','61827','9','7','232','80','0','Felspark Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147862','4','4','0','39123','11','3','232','80','0','Firestorm Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147863','4','4','2','61179','6','8','232','80','0','Belt of the Bloodhoof Emissary','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147864','4','4','0','59307','2','4','232','80','0','Pendant of Binding Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147865','4','4','1','62074','7','7','232','80','0','Legwraps of the Demonic Messenger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147866','4','4','3','61254','6','5','232','80','0','Darkspear Ritual Binding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147867','4','4','3','61104','8','5','232','80','0','Warsong Poacher\'s Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147868','4','4','0','39120','11','5','232','80','0','Planestalker Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147869','4','4','4','61541','9','1','232','80','0','Armplates of the Nether Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147870','4','4','4','62138','6','6','232','80','0','Belt of the Nether Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147871','4','2','15','60621','13','1','232','80','3','Orcish Deathblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147872','4','4','0','48510','2','4','232','80','0','Fortitude of the Infernal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147873','4','4','1','62108','8','7','232','80','0','Sunreaver Magus\' Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147874','4','2','15','60592','21','1','232','80','3','Sunreaver Disciple\'s Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147875','4','4','3','62098','1','5','232','80','0','Sunreaver Ranger\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147876','4','4','4','62115','1','-1','232','80','0','Sunreaver Champion\'s Faceplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147877','4','4','4','62129','3','1','232','80','0','Sunreaver Defender\'s Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147878','4','4','2','61209','10','8','232','80','0','Sunreaver Assassin\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147879','4','4','0','45854','12','4','232','80','0','Fetish of Volatile Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147880','4','4','0','48009','12','4','232','80','0','Binding Stone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147881','4','4','0','61409','12','4','232','80','0','Vengeance of the Forsaken','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147882','4','4','0','7244','12','4','232','80','0','Eitrigg\'s Oath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147883','4','2','3','60623','26','1','232','80','0','Widebarrel Flintlock','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147884','4','2','8','60682','17','1','232','80','1','Edge of Agony','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147885','4','4','4','61551','8','1','232','80','0','Greaves of the Lingering Vortex','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147886','4','2','15','60625','13','1','232','80','3','Nemesis Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147887','4','4','2','61208','5','8','232','80','0','Vest of Shifting Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147888','4','4','0','39128','11','3','232','80','0','Band of the Twin Val\'kyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147889','4','4','1','61865','10','7','232','80','0','Looming Shadow Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147890','4','4','0','59307','2','4','232','80','0','Darkbane Amulet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147891','4','4','2','61198','1','8','232','80','0','Helm of the High Mesa','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147892','4','2','10','60626','17','2','232','80','2','Illumination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147893','4','4','3','62095','10','5','232','80','0','Sen\'jin Ritualist Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147894','4','2','4','61658','21','1','232','80','3','Mace of the Earthborn Chieftain','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147895','4','4','6','62145','14','6','232','80','4','Pride of the Kor\'kron','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147896','4','4','4','61499','5','1','232','80','0','Stoneskin Chestplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147897','4','4','3','62053','1','5','232','80','0','Helm of the Crypt Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147898','4','2','0','60603','13','1','232','80','3','Frostblade Hatchet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147899','4','2','7','60628','13','1','232','80','3','Ardent Guard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147900','4','2','10','60672','17','2','232','80','2','Perdition','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147901','4','4','3','62106','3','5','232','80','0','Pauldrons of the Shadow Hunter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147902','4','4','4','62118','7','6','232','80','0','Legplates of Redeemed Blood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147903','4','2','7','60684','13','1','232','80','3','Forsaken Bonecarver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147904','4','4','2','61213','3','8','232','80','0','Shoulderpads of the Snow Bandit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147905','4','2','4','60673','13','2','232','80','3','Blackhorn Bludgeon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147906','4','4','1','62080','20','7','232','80','0','Robes of the Sleepless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147907','4','2','18','60686','26','2','232','80','0','Darkmaw Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147908','4','4','4','62119','7','6','232','80','0','Sunwalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147909','4','4','1','61806','6','7','232','80','0','Belt of the Eternal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147910','4','4','6','61783','14','6','232','80','4','Aegis of the Coliseum','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147911','4','2','6','60633','17','1','232','80','1','Anguish','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147913','4','4','0','60704','23','3','232','80','0','Lightbane Focus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147914','4','4','1','61188','1','7','232','80','0','Velen\'s Cowl of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147915','4','4','0','34274','2','4','245','80','0','Collar of Ceaseless Torment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147916','4','4','3','62051','9','5','245','80','0','Armbands of the Northern Stalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147917','4','4','4','62065','10','1','245','80','0','Gauntlets of Rising Anger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147918','4','4','4','62001','9','6','245','80','0','Dreadscale Armguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147919','4','4','2','61706','8','8','245','80','0','Acidmaw Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147920','4','4','0','35431','11','5','245','80','0','Carnivorous Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147921','4','4','1','61682','6','7','245','80','0','Icehowl Cinch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147922','4','2','19','60605','26','2','245','80','0','Rod of Imprisoned Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147923','4','4','2','61932','3','8','245','80','0','Shoulderpads of the Glacial Wilds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147924','4','4','4','62008','6','1','245','80','0','Belt of the Frozen Reach','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147925','4','4','4','62007','6','6','245','80','0','Girdle of the Impaler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147926','4','4','3','61938','3','5','245','80','0','Shoulderguards of the Spirit Walker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147927','4','4','1','61241','9','7','245','80','0','Felspark Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147928','4','4','0','39123','11','3','245','80','0','Firestorm Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147929','4','4','2','61639','6','8','245','80','0','Belt of the Winter Solstice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147930','4','4','0','59307','2','4','245','80','0','Amulet of Binding Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147931','4','4','1','61170','7','7','245','80','0','Leggings of the Demonic Messenger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147932','4','4','3','61939','6','5','245','80','0','Girdle of the Farseer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147933','4','4','3','61941','8','5','245','80','0','Sentinel Scouting Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147934','4','4','0','39120','11','5','245','80','0','Planestalker Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147935','4','4','4','61999','9','1','245','80','0','Armguards of the Nether Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147936','4','4','1','61722','20','7','232','80','0','Velen\'s Robe of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147937','4','4','4','61354','6','6','245','80','0','Girdle of the Nether Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147938','4','2','15','60610','13','1','245','80','3','Dirk of the Night Watch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147939','4','4','0','48510','2','4','245','80','0','Endurance of the Infernal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147940','4','4','1','61561','8','7','245','80','0','Sandals of the Silver Magus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147941','4','2','15','60658','21','1','245','80','3','Blade of the Silver Disciple','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147942','4','4','3','61984','1','5','245','80','0','Helm of the Silver Ranger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147943','4','4','4','62035','1','-1','245','80','0','Faceplate of the Silver Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147944','4','4','4','62009','3','1','245','80','0','Pauldrons of the Silver Defender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147945','4','4','2','61903','10','8','245','80','0','Gloves of the Silver Assassin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147946','4','4','0','45854','12','4','245','80','0','Talisman of Volatile Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147947','4','4','0','48009','12','4','245','80','0','Binding Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147948','4','4','0','61409','12','4','245','80','0','Victor\'s Call','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147949','4','4','0','7244','12','4','245','80','0','Fervor of the Frostborn','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147950','4','2','3','60607','26','1','245','80','0','The Diplomat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147951','4','2','8','60608','17','1','245','80','1','Reckoning','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147952','4','4','4','61372','8','1','245','80','0','Sabatons of the Lingering Vortex','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147953','4','2','15','60609','13','1','245','80','3','Icefall Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147954','4','4','2','61930','5','8','245','80','0','Armor of Shifting Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147955','4','4','0','39128','11','3','245','80','0','Loop of the Twin Val\'kyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147956','4','4','1','61243','10','7','245','80','0','Gloves of Looming Shadow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147957','4','4','0','59307','2','4','245','80','0','Darkbane Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147958','4','4','0','60705','23','3','245','80','0','Chalice of Benedictus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147959','4','4','2','62159','1','8','245','80','0','Helm of the Snowy Grotto','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147960','4','2','10','60611','17','2','245','80','2','Enlightenment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147961','4','4','3','62093','10','5','245','80','0','Gloves of the Azure Prophet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147962','4','2','4','61659','21','1','245','80','3','Argent Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147963','4','4','6','61777','14','6','245','80','4','Vigilant Ward','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147964','4','4','4','62045','5','1','245','80','0','Chestguard of the Warden','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147965','4','4','3','61985','1','5','245','80','0','Helmet of the Crypt Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147966','4','2','0','60613','13','1','245','80','3','The Lion\'s Maw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147967','4','2','7','60617','13','1','245','80','3','Crusader\'s Glory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147968','4','2','10','60611','17','2','245','80','2','Cold Convergence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147969','4','4','3','61995','3','5','245','80','0','Pauldrons of the Timeless Hunter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147970','4','4','4','62021','7','6','245','80','0','Legplates of the Silver Hand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147971','4','2','7','61692','13','1','245','80','3','Westfall Saber','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147972','4','4','2','61933','3','8','245','80','0','Spaulders of the Snow Bandit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147973','4','2','4','60675','13','1','245','80','3','The Grinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147974','4','4','1','61721','20','7','245','80','0','Vestments of the Sleepless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147975','4','2','18','60579','26','2','245','80','0','Baelgun\'s Heavy Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147976','4','4','4','62023','7','6','245','80','0','Legplates of the Immortal Spider','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147977','4','4','1','61233','6','7','245','80','0','Cinch of the Undying','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147978','4','4','6','61776','14','6','245','80','4','Bulwark of the Royal Guard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147979','4','2','6','60619','17','1','245','80','2','Fordragon Blades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147980','4','4','1','61170','7','7','232','80','0','Velen\'s Leggings of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147981','4','4','1','61172','3','7','232','80','0','Velen\'s Shoulderpads of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147982','4','4','1','61168','10','7','232','80','0','Velen\'s Gloves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147983','4','4','1','61168','10','7','245','80','0','Velen\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147984','4','4','1','61188','1','7','245','80','0','Velen\'s Cowl of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147985','4','4','1','61170','7','7','245','80','0','Velen\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147986','4','4','1','61722','20','7','245','80','0','Velen\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147987','4','4','1','61172','3','7','245','80','0','Velen\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147988','4','4','0','34274','2','4','245','80','0','Collar of Unending Torment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147989','4','4','3','61253','9','5','245','80','0','Bracers of the Northern Stalker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147990','4','4','4','61486','10','1','245','80','0','Gauntlets of Mounting Anger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147991','4','4','4','61535','9','6','245','80','0','Dreadscale Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147992','4','4','2','62079','8','8','245','80','0','Acidmaw Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147993','4','4','0','35431','11','5','245','80','0','Gormok\'s Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147994','4','4','1','61861','6','7','245','80','0','Icehowl Binding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147995','4','2','19','61271','26','2','245','80','0','Scepter of Imprisoned Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147996','4','4','2','61201','3','8','245','80','0','Pauldrons of the Glacial Wilds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147997','4','4','4','62136','6','1','245','80','0','Girdle of the Frozen Reach','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147998','4','4','4','62137','6','6','245','80','0','Belt of the Impaler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('147999','4','4','3','61226','3','5','245','80','0','Pauldrons of the Spirit Walker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148000','4','4','1','61827','9','7','245','80','0','Felspark Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148001','4','4','0','39123','11','3','245','80','0','Firestorm Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148002','4','4','2','61179','6','8','245','80','0','Belt of the Bloodhoof Emissary','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148003','4','4','0','59307','2','4','245','80','0','Pendant of Binding Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148004','4','4','1','62074','7','7','245','80','0','Legwraps of the Demonic Messenger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148005','4','4','3','61254','6','5','245','80','0','Darkspear Ritual Binding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148006','4','4','3','61104','8','5','245','80','0','Warsong Poacher\'s Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148007','4','4','0','39120','11','5','245','80','0','Planestalker Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148008','4','4','4','61541','9','1','245','80','0','Armplates of the Nether Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148009','4','4','4','62138','6','6','245','80','0','Belt of the Nether Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148010','4','2','15','60621','13','1','245','80','3','Orcish Deathblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148011','4','4','0','48510','2','4','245','80','0','Fortitude of the Infernal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148012','4','4','1','62108','8','7','245','80','0','Sunreaver Magus\' Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148013','4','2','15','60592','21','1','245','80','3','Sunreaver Disciple\'s Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148014','4','4','3','62098','1','5','245','80','0','Sunreaver Ranger\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148015','4','4','4','62115','1','-1','245','80','0','Sunreaver Champion\'s Faceplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148016','4','4','4','62129','3','1','245','80','0','Sunreaver Defender\'s Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148017','4','4','2','61209','10','8','245','80','0','Sunreaver Assassin\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148018','4','4','0','45854','12','4','245','80','0','Fetish of Volatile Power','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148019','4','4','0','48009','12','4','245','80','0','Binding Stone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148020','4','4','0','61409','12','4','245','80','0','Vengeance of the Forsaken','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148021','4','4','0','7244','12','4','245','80','0','Eitrigg\'s Oath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148022','4','2','3','60623','26','1','245','80','0','Widebarrel Flintlock','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148023','4','2','8','60682','17','1','245','80','1','Edge of Agony','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148024','4','4','4','61551','8','1','245','80','0','Greaves of the Lingering Vortex','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148025','4','2','15','60625','13','1','245','80','3','Nemesis Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148026','4','4','2','61208','5','8','245','80','0','Vest of Shifting Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148027','4','4','0','39128','11','3','245','80','0','Band of the Twin Val\'kyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148028','4','4','1','61865','10','7','245','80','0','Looming Shadow Wraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148029','4','4','1','61172','3','7','258','80','0','Velen\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148030','4','4','0','59307','2','4','245','80','0','Darkbane Amulet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148031','4','4','1','61722','20','7','258','80','0','Velen\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148032','4','4','0','60704','23','3','245','80','0','Lightbane Focus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148033','4','4','1','61170','7','7','258','80','0','Velen\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148034','4','4','2','61198','1','8','245','80','0','Helm of the High Mesa','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148035','4','4','1','61188','1','7','258','80','0','Velen\'s Cowl of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148036','4','2','10','60626','17','2','245','80','2','Illumination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148037','4','4','1','61168','10','7','258','80','0','Velen\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148038','4','4','3','62095','10','5','245','80','0','Sen\'jin Ritualist Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148039','4','2','4','61658','21','1','245','80','3','Mace of the Earthborn Chieftain','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148040','4','4','6','62145','14','6','245','80','4','Pride of the Kor\'kron','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148041','4','4','4','61499','5','1','245','80','0','Stoneskin Chestplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148042','4','4','3','62053','1','5','245','80','0','Helm of the Crypt Lord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148043','4','2','0','60603','13','1','245','80','3','Frostblade Hatchet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148044','4','2','7','60628','13','1','245','80','3','Ardent Guard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148045','4','2','10','60672','17','2','245','80','2','Perdition','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148046','4','4','3','62106','3','5','245','80','0','Pauldrons of the Shadow Hunter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148047','4','4','4','62118','7','6','245','80','0','Legplates of the Redeemed Blood Knight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148048','4','2','7','60684','13','1','245','80','3','Forsaken Bonecarver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148049','4','4','2','61213','3','8','245','80','0','Shoulderpads of the Snow Bandit','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148050','4','2','4','60673','13','2','245','80','3','Blackhorn Bludgeon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148051','4','4','1','62080','20','7','245','80','0','Robes of the Sleepless','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148052','4','2','18','60686','26','2','245','80','0','Darkmaw Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148053','4','4','4','62119','7','6','245','80','0','Sunwalker Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148054','4','4','1','61806','6','7','245','80','0','Belt of the Eternal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148055','4','4','6','61783','14','6','245','80','4','Aegis of the Coliseum','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148056','4','2','6','60663','17','1','245','80','1','Anguish','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148057','4','4','1','62067','10','7','258','80','0','Zabra\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148058','4','4','1','62071','1','7','258','80','0','Zabra\'s Cowl of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148059','4','4','1','62074','7','7','258','80','0','Zabra\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148060','4','4','1','62082','20','7','258','80','0','Zabra\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148061','4','4','1','62087','3','7','258','80','0','Zabra\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148062','4','4','1','62087','3','7','245','80','0','Zabra\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148063','4','4','1','62082','20','7','245','80','0','Zabra\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148064','4','4','1','62074','7','7','245','80','0','Zabra\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148065','4','4','1','62071','1','7','245','80','0','Zabra\'s Cowl of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148066','4','4','1','62067','10','7','245','80','0','Zabra\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148067','4','4','1','62067','10','7','232','80','0','Zabra\'s Gloves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148068','4','4','1','62071','1','7','232','80','0','Zabra\'s Cowl of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148069','4','4','1','62074','7','7','232','80','0','Zabra\'s Leggings of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148070','4','4','1','62082','20','7','232','80','0','Zabra\'s Robe of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148071','4','4','1','62087','3','7','232','80','0','Zabra\'s Shoulderpads of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148072','4','4','1','61168','10','7','232','80','0','Velen\'s Handwraps of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148073','4','4','1','61188','1','7','232','80','0','Velen\'s Circlet of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148074','4','4','1','61170','7','7','232','80','0','Velen\'s Pants of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148075','4','4','1','61722','20','7','232','80','0','Velen\'s Raiments of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148076','4','4','1','61172','3','7','232','80','0','Velen\'s Mantle of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148077','4','4','1','61168','10','7','245','80','0','Velen\'s Handwraps of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148078','4','4','1','61188','1','7','245','80','0','Velen\'s Circlet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148079','4','4','1','61170','7','7','245','80','0','Velen\'s Pants of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148080','4','4','1','61722','20','7','245','80','0','Velen\'s Raiments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148081','4','4','1','61172','3','7','245','80','0','Velen\'s Mantle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148082','4','4','1','61172','3','7','258','80','0','Velen\'s Mantle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148083','4','4','1','61722','20','7','258','80','0','Velen\'s Raiments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148084','4','4','1','61170','7','7','258','80','0','Velen\'s Pants of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148085','4','4','1','61188','1','7','258','80','0','Velen\'s Circlet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148086','4','4','1','61168','10','7','258','80','0','Velen\'s Handwraps of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148087','4','4','1','62067','10','7','258','80','0','Zabra\'s Handwraps of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148088','4','4','1','62071','1','7','258','80','0','Zabra\'s Circlet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148089','4','4','1','62074','7','7','258','80','0','Zabra\'s Pants of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148090','4','4','1','62082','20','7','258','80','0','Zabra\'s Raiments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148091','4','4','1','62087','3','7','258','80','0','Zabra\'s Mantle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148092','4','4','1','62087','3','7','245','80','0','Zabra\'s Mantle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148093','4','4','1','62082','20','7','245','80','0','Zabra\'s Raiments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148094','4','4','1','62074','7','7','245','80','0','Zabra\'s Pants of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148095','4','4','1','62071','1','7','245','80','0','Zabra\'s Circlet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148096','4','4','1','62067','10','7','245','80','0','Zabra\'s Handwraps of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148097','4','4','1','62067','10','7','232','80','0','Zabra\'s Handwraps of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148098','4','4','1','62071','1','7','232','80','0','Zabra\'s Circlet of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148099','4','4','1','62074','7','7','232','80','0','Zabra\'s Pants of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148100','4','4','1','62082','20','7','232','80','0','Zabra\'s Raiments of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148101','4','4','1','62087','3','7','232','80','0','Zabra\'s Mantle of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148102','4','4','2','62159','1','8','232','80','0','Malfurion\'s Headpiece of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148129','4','4','2','61713','20','8','232','80','0','Malfurion\'s Robe of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148130','4','4','2','61926','7','8','232','80','0','Malfurion\'s Leggings of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148131','4','4','2','61932','3','8','232','80','0','Malfurion\'s Spaulders of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148132','4','4','2','61902','10','8','232','80','0','Malfurion\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148133','4','4','2','61902','10','8','245','80','0','Malfurion\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148134','4','4','2','62159','1','8','245','80','0','Malfurion\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148135','4','4','2','61926','7','8','245','80','0','Malfurion\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148136','4','4','2','61713','20','8','245','80','0','Malfurion\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148137','4','4','2','61932','3','8','245','80','0','Malfurion\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148138','4','4','2','61932','3','8','258','80','0','Malfurion\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148139','4','4','2','61713','20','8','258','80','0','Malfurion\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148140','4','4','2','61926','7','8','258','80','0','Malfurion\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148141','4','4','2','62159','1','8','258','80','0','Malfurion\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148142','4','4','2','61902','10','8','258','80','0','Malfurion\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148143','4','4','2','61197','10','8','258','80','0','Runetotem\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148144','4','4','2','61198','1','8','258','80','0','Runetotem\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148145','4','4','2','61205','7','8','258','80','0','Runetotem\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148146','4','4','2','61720','20','8','258','80','0','Runetotem\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148147','4','4','2','61201','3','8','258','80','0','Runetotem\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148148','4','4','2','61201','3','8','245','80','0','Runetotem\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148149','4','4','2','61720','20','8','245','80','0','Runetotem\'s Robe of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148150','4','4','2','61205','7','8','245','80','0','Runetotem\'s Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148151','4','4','2','61198','1','8','245','80','0','Runetotem\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148152','4','4','2','61197','10','8','245','80','0','Runetotem\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148153','4','4','2','61197','10','8','232','80','0','Runetotem\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148154','4','4','2','61198','1','8','232','80','0','Runetotem\'s Headpiece of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148155','4','4','2','61205','7','8','232','80','0','Runetotem\'s Leggings of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148156','4','4','2','61720','20','8','232','80','0','Runetotem\'s Robe of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148157','4','4','2','61201','3','8','232','80','0','Runetotem\'s Spaulders of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148158','4','4','2','62159','1','8','232','80','0','Malfurion\'s Cover of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148159','4','4','2','61713','20','8','232','80','0','Malfurion\'s Vestments of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148160','4','4','2','61926','7','8','232','80','0','Malfurion\'s Trousers of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148161','4','4','2','61932','3','8','232','80','0','Malfurion\'s Mantle of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148162','4','4','2','61902','10','8','232','80','0','Malfurion\'s Gloves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148163','4','4','2','61902','10','8','245','80','0','Malfurion\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148164','4','4','2','62159','1','8','245','80','0','Malfurion\'s Cover of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148165','4','4','2','61926','7','8','245','80','0','Malfurion\'s Trousers of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148166','4','4','2','61713','20','8','245','80','0','Malfurion\'s Vestments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148167','4','4','2','61932','3','8','245','80','0','Malfurion\'s Mantle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148168','4','4','2','61932','3','8','258','80','0','Malfurion\'s Mantle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148169','4','4','2','61713','20','8','258','80','0','Malfurion\'s Vestments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148170','4','4','2','61926','7','8','258','80','0','Malfurion\'s Trousers of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148171','4','4','2','62159','1','8','258','80','0','Malfurion\'s Cover of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148172','4','4','2','61902','10','8','258','80','0','Malfurion\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148173','4','4','2','61197','10','8','258','80','0','Runetotem\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148174','4','4','2','61198','1','8','258','80','0','Runetotem\'s Cover of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148175','4','4','2','61205','7','8','258','80','0','Runetotem\'s Trousers of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148176','4','4','2','61720','20','8','258','80','0','Runetotem\'s Vestments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148177','4','4','2','61201','3','8','258','80','0','Runetotem\'s Mantle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148178','4','4','2','61201','3','8','245','80','0','Runetotem\'s Mantle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148179','4','4','2','61720','20','8','245','80','0','Runetotem\'s Vestments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148180','4','4','2','61205','7','8','245','80','0','Runetotem\'s Trousers of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148181','4','4','2','61198','1','8','245','80','0','Runetotem\'s Cover of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148182','4','4','2','61197','10','8','245','80','0','Runetotem\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148183','4','4','2','61197','10','8','232','80','0','Runetotem\'s Gloves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148184','4','4','2','61198','1','8','232','80','0','Runetotem\'s Cover of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148185','4','4','2','61205','7','8','232','80','0','Runetotem\'s Trousers of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148186','4','4','2','61720','20','8','232','80','0','Runetotem\'s Vestments of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148187','4','4','2','61201','3','8','232','80','0','Runetotem\'s Mantle of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148188','4','4','2','61203','1','8','232','80','0','Runetotem\'s Headguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148189','4','4','2','61720','20','8','232','80','0','Runetotem\'s Raiments of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148190','4','4','2','61204','7','8','232','80','0','Runetotem\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148191','4','4','2','61201','3','8','232','80','0','Runetotem\'s Shoulderpads of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148192','4','4','2','61202','10','8','232','80','0','Runetotem\'s Handgrips of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148193','4','4','2','61202','10','8','245','80','0','Runetotem\'s Handgrips of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148194','4','4','2','61203','1','8','245','80','0','Runetotem\'s Headguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148195','4','4','2','61204','7','8','245','80','0','Runetotem\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148196','4','4','2','61720','20','8','245','80','0','Runetotem\'s Raiments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148197','4','4','2','61201','3','8','245','80','0','Runetotem\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148198','4','4','2','61201','3','8','258','80','0','Runetotem\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148199','4','4','2','61720','20','8','258','80','0','Runetotem\'s Raiments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148200','4','4','2','61204','7','8','258','80','0','Runetotem\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148201','4','4','2','61203','1','8','258','80','0','Runetotem\'s Headguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148202','4','4','2','61202','10','8','258','80','0','Runetotem\'s Handgrips of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148203','4','4','2','61902','10','8','258','80','0','Malfurion\'s Handgrips of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148204','4','4','2','62159','1','8','258','80','0','Malfurion\'s Headguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148205','4','4','2','61926','7','8','258','80','0','Malfurion\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148206','4','4','2','61713','20','8','258','80','0','Malfurion\'s Raiments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148207','4','4','2','61932','3','8','258','80','0','Malfurion\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148208','4','4','2','61932','3','8','245','80','0','Malfurion\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148209','4','4','2','61713','20','8','245','80','0','Malfurion\'s Raiments of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148210','4','4','2','61926','7','8','245','80','0','Malfurion\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148211','4','4','2','62159','1','8','245','80','0','Malfurion\'s Headguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148212','4','4','2','61902','10','8','245','80','0','Malfurion\'s Handgrips of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148213','4','4','2','61902','10','8','232','80','0','Malfurion\'s Handgrips of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148214','4','4','2','62159','1','8','232','80','0','Malfurion\'s Headguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148215','4','4','2','61926','7','8','232','80','0','Malfurion\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148216','4','4','2','61713','20','8','232','80','0','Malfurion\'s Raiments of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148217','4','4','2','61932','3','8','232','80','0','Malfurion\'s Shoulderpads of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148218','4','4','2','62160','1','8','232','80','0','VanCleef\'s Helmet of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148219','4','4','2','61930','5','8','232','80','0','VanCleef\'s Breastplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148220','4','4','2','61927','7','8','232','80','0','VanCleef\'s Legplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148221','4','4','2','61933','3','8','232','80','0','VanCleef\'s Pauldrons of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148222','4','4','2','61903','10','8','232','80','0','VanCleef\'s Gauntlets of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148223','4','4','2','61930','5','8','245','80','0','VanCleef\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148224','4','4','2','61903','10','8','245','80','0','VanCleef\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148225','4','4','2','62160','1','8','245','80','0','VanCleef\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148226','4','4','2','61927','7','8','245','80','0','VanCleef\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148227','4','4','2','61933','3','8','245','80','0','VanCleef\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148228','4','4','2','61933','3','8','258','80','0','VanCleef\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148229','4','4','2','61927','7','8','258','80','0','VanCleef\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148230','4','4','2','62160','1','8','258','80','0','VanCleef\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148231','4','4','2','61903','10','8','258','80','0','VanCleef\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148232','4','4','2','61930','5','8','258','80','0','VanCleef\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148233','4','4','2','61208','5','8','258','80','0','Garona\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148234','4','4','2','61209','10','8','258','80','0','Garona\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148235','4','4','2','61210','1','8','258','80','0','Garona\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148236','4','4','2','61250','7','8','258','80','0','Garona\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148237','4','4','2','61213','3','8','258','80','0','Garona\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148238','4','4','2','61213','3','8','245','80','0','Garona\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148239','4','4','2','61250','7','8','245','80','0','Garona\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148240','4','4','2','61210','1','8','245','80','0','Garona\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148241','4','4','2','61209','10','8','245','80','0','Garona\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148242','4','4','2','61208','5','8','245','80','0','Garona\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148243','4','4','2','61208','5','8','232','80','0','Garona\'s Breastplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148244','4','4','2','61209','10','8','232','80','0','Garona\'s Gauntlets of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148245','4','4','2','61210','1','8','232','80','0','Garona\'s Helmet of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148246','4','4','2','61250','7','8','232','80','0','Garona\'s Legplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148247','4','4','2','61213','3','8','232','80','0','Garona\'s Pauldrons of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148250','4','4','3','61984','1','5','232','80','0','Windrunner\'s Headpiece of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148251','4','4','3','61825','5','5','232','80','0','Windrunner\'s Tunic of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148252','4','4','3','62162','7','5','232','80','0','Windrunner\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148253','4','4','3','61995','3','5','232','80','0','Windrunner\'s Spaulders of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148254','4','4','3','62094','10','5','232','80','0','Windrunner\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148255','4','4','3','61825','5','5','245','80','0','Windrunner\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148256','4','4','3','62094','10','5','245','80','0','Windrunner\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148257','4','4','3','61984','1','5','245','80','0','Windrunner\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148258','4','4','3','62162','7','5','245','80','0','Windrunner\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148259','4','4','3','61995','3','5','245','80','0','Windrunner\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148260','4','4','3','61995','3','5','258','80','0','Windrunner\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148261','4','4','3','62162','7','5','258','80','0','Windrunner\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148262','4','4','3','61984','1','5','258','80','0','Windrunner\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148263','4','4','3','62094','10','5','258','80','0','Windrunner\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148264','4','4','3','61828','5','5','258','80','0','Windrunner\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148265','4','4','3','61219','5','5','258','80','0','Windrunner\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148266','4','4','3','62096','10','5','258','80','0','Windrunner\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148267','4','4','3','62098','1','5','258','80','0','Windrunner\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148268','4','4','3','62101','7','5','258','80','0','Windrunner\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148269','4','4','3','62107','3','5','258','80','0','Windrunner\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148270','4','4','3','62107','3','5','245','80','0','Windrunner\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148271','4','4','3','62101','7','5','245','80','0','Windrunner\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148272','4','4','3','62098','1','5','245','80','0','Windrunner\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148273','4','4','3','62096','10','5','245','80','0','Windrunner\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148274','4','4','3','61219','5','5','245','80','0','Windrunner\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148275','4','4','3','61096','5','5','232','80','0','Windrunner\'s Tunic of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148276','4','4','3','62096','10','5','232','80','0','Windrunner\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148277','4','4','3','62098','1','5','232','80','0','Windrunner\'s Headpiece of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148278','4','4','3','62101','7','5','232','80','0','Windrunner\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148279','4','4','3','62107','3','5','232','80','0','Windrunner\'s Spaulders of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148280','4','4','3','61985','1','5','232','80','0','Nobundo\'s Headpiece of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148281','4','4','3','59179','5','5','232','80','0','Nobundo\'s Tunic of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148282','4','4','3','61988','7','5','232','80','0','Nobundo\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148283','4','4','3','61938','3','5','232','80','0','Nobundo\'s Spaulders of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148284','4','4','3','62093','10','5','232','80','0','Nobundo\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148285','4','4','3','59179','5','5','245','80','0','Nobundo\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148286','4','4','3','62093','10','5','245','80','0','Nobundo\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148287','4','4','3','61985','1','5','245','80','0','Nobundo\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148288','4','4','3','61988','7','5','245','80','0','Nobundo\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148289','4','4','3','61938','3','5','245','80','0','Nobundo\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148290','4','4','3','61938','3','5','258','80','0','Nobundo\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148291','4','4','3','61988','7','5','258','80','0','Nobundo\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148292','4','4','3','61985','1','5','258','80','0','Nobundo\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148293','4','4','3','62093','10','5','258','80','0','Nobundo\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148294','4','4','3','59179','5','5','258','80','0','Nobundo\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148295','4','4','3','62104','5','5','232','80','0','Thrall\'s Tunic of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148296','4','4','3','62095','10','5','232','80','0','Thrall\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148297','4','4','3','62053','1','5','232','80','0','Thrall\'s Headpiece of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148298','4','4','3','62102','7','5','232','80','0','Thrall\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148299','4','4','3','61226','3','5','232','80','0','Thrall\'s Spaulders of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148300','4','4','3','62104','5','5','245','80','0','Thrall\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148301','4','4','3','62095','10','5','245','80','0','Thrall\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148302','4','4','3','62053','1','5','245','80','0','Thrall\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148303','4','4','3','62102','7','5','245','80','0','Thrall\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148304','4','4','3','61226','3','5','245','80','0','Thrall\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148305','4','4','3','62104','5','5','258','80','0','Thrall\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148306','4','4','3','62095','10','5','258','80','0','Thrall\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148307','4','4','3','62053','1','5','258','80','0','Thrall\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148308','4','4','3','62102','7','5','258','80','0','Thrall\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148309','4','4','3','61226','3','5','258','80','0','Thrall\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148310','4','4','3','59181','5','5','232','80','0','Nobundo\'s Hauberk of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148312','4','4','3','62093','10','5','232','80','0','Nobundo\'s Gloves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148313','4','4','3','61985','1','5','232','80','0','Nobundo\'s Helm of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148314','4','4','3','61988','7','5','232','80','0','Nobundo\'s Kilt of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148315','4','4','3','61938','3','5','232','80','0','Nobundo\'s Shoulderpads of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148316','4','4','3','59179','5','5','245','80','0','Nobundo\'s Hauberk of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148317','4','4','3','62093','10','5','245','80','0','Nobundo\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148318','4','4','3','61985','1','5','245','80','0','Nobundo\'s Helm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148319','4','4','3','61988','7','5','245','80','0','Nobundo\'s Kilt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148320','4','4','3','61938','3','5','245','80','0','Nobundo\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148321','4','4','3','61938','3','5','258','80','0','Nobundo\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148322','4','4','3','61988','7','5','258','80','0','Nobundo\'s Kilt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148323','4','4','3','61985','1','5','258','80','0','Nobundo\'s Helm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148324','4','4','3','62093','10','5','258','80','0','Nobundo\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148325','4','4','3','59179','5','5','258','80','0','Nobundo\'s Hauberk of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148326','4','4','3','62104','5','5','258','80','0','Thrall\'s Hauberk of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148327','4','4','3','62095','10','5','258','80','0','Thrall\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148328','4','4','3','62053','1','5','258','80','0','Thrall\'s Helm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148329','4','4','3','62102','7','5','258','80','0','Thrall\'s Kilt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148330','4','4','3','61226','3','5','258','80','0','Thrall\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148331','4','4','3','61226','3','5','245','80','0','Thrall\'s Shoulderpads of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148332','4','4','3','62102','7','5','245','80','0','Thrall\'s Kilt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148333','4','4','3','62053','1','5','245','80','0','Thrall\'s Helm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148334','4','4','3','62095','10','5','245','80','0','Thrall\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148335','4','4','3','62104','5','5','245','80','0','Thrall\'s Hauberk of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148336','4','4','3','62104','5','5','232','80','0','Thrall\'s Hauberk of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148337','4','4','3','62095','10','5','232','80','0','Thrall\'s Gloves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148338','4','4','3','62053','1','5','232','80','0','Thrall\'s Helm of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148339','4','4','3','62102','7','5','232','80','0','Thrall\'s Kilt of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148340','4','4','3','61226','3','5','232','80','0','Thrall\'s Shoulderpads of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148341','4','4','3','59179','5','5','232','80','0','Nobundo\'s Chestguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148342','4','4','3','62093','10','5','232','80','0','Nobundo\'s Grips of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148343','4','4','3','61985','1','5','232','80','0','Nobundo\'s Faceguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148344','4','4','3','61988','7','5','232','80','0','Nobundo\'s War-Kilt of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148345','4','4','3','61938','3','5','232','80','0','Nobundo\'s Shoulderguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148346','4','4','3','59179','5','5','245','80','0','Nobundo\'s Chestguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148347','4','4','3','62093','10','5','245','80','0','Nobundo\'s Grips of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148348','4','4','3','61985','1','5','245','80','0','Nobundo\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148349','4','4','3','61988','7','5','245','80','0','Nobundo\'s War-Kilt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148350','4','4','3','61938','3','5','245','80','0','Nobundo\'s Shoulderguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148351','4','4','3','61938','3','5','258','80','0','Nobundo\'s Shoulderguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148352','4','4','3','61988','7','5','258','80','0','Nobundo\'s War-Kilt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148353','4','4','3','61985','1','5','258','80','0','Nobundo\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148354','4','4','3','62093','10','5','258','80','0','Nobundo\'s Grips of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148355','4','4','3','59179','5','5','258','80','0','Nobundo\'s Chestguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148356','4','4','3','62105','5','5','258','80','0','Thrall\'s Chestguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148357','4','4','3','62097','10','5','258','80','0','Thrall\'s Grips of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148358','4','4','3','62100','1','5','258','80','0','Thrall\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148359','4','4','3','62103','7','5','258','80','0','Thrall\'s War-Kilt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148360','4','4','3','61226','3','5','258','80','0','Thrall\'s Shoulderguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148361','4','4','3','61226','3','5','245','80','0','Thrall\'s Shoulderguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148362','4','4','3','62103','7','5','245','80','0','Thrall\'s War-Kilt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148363','4','4','3','62100','1','5','245','80','0','Thrall\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148364','4','4','3','62097','10','5','245','80','0','Thrall\'s Grips of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148365','4','4','3','62105','5','5','245','80','0','Thrall\'s Chestguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148366','4','4','3','62104','5','5','232','80','0','Thrall\'s Chestguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148367','4','4','3','62097','10','5','232','80','0','Thrall\'s Grips of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148368','4','4','3','62100','1','5','232','80','0','Thrall\'s Faceguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148369','4','4','3','62103','7','5','232','80','0','Thrall\'s War-Kilt of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148370','4','4','3','61226','3','5','232','80','0','Thrall\'s Shoulderguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148371','4','4','4','62039','1','4','232','80','0','Wrynn\'s Helmet of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148372','4','4','4','62048','5','1','232','80','0','Wrynn\'s Battleplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148373','4','4','4','62019','7','6','232','80','0','Wrynn\'s Legplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148374','4','4','4','62010','3','6','232','80','0','Wrynn\'s Shoulderplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148375','4','4','4','62064','10','1','232','80','0','Wrynn\'s Gauntlets of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148376','4','4','4','62048','5','1','245','80','0','Wrynn\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148377','4','4','4','62064','10','1','245','80','0','Wrynn\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148378','4','4','4','62039','1','4','245','80','0','Wrynn\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148379','4','4','4','62019','7','6','245','80','0','Wrynn\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148380','4','4','4','62010','3','6','245','80','0','Wrynn\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148381','4','4','4','62010','3','6','258','80','0','Wrynn\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148382','4','4','4','62019','7','6','258','80','0','Wrynn\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148383','4','4','4','62039','1','4','258','80','0','Wrynn\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148384','4','4','4','62064','10','1','258','80','0','Wrynn\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148385','4','4','4','62048','5','1','258','80','0','Wrynn\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148386','4','4','4','61525','5','1','232','80','0','Hellscream\'s Battleplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148387','4','4','4','62113','10','1','232','80','0','Hellscream\'s Gauntlets of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148388','4','4','4','62117','1','4','232','80','0','Hellscream\'s Helmet of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148389','4','4','4','62118','7','6','232','80','0','Hellscream\'s Legplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148390','4','4','4','62135','3','6','232','80','0','Hellscream\'s Shoulderplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148391','4','4','4','61525','5','1','245','80','0','Hellscream\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148392','4','4','4','62113','10','1','245','80','0','Hellscream\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148393','4','4','4','62117','1','4','245','80','0','Hellscream\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148394','4','4','4','62118','7','6','245','80','0','Hellscream\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148395','4','4','4','62135','3','6','245','80','0','Hellscream\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148396','4','4','4','61525','5','1','258','80','0','Hellscream\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148397','4','4','4','62113','10','1','258','80','0','Hellscream\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148398','4','4','4','62117','1','4','258','80','0','Hellscream\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148399','4','4','4','62118','7','6','258','80','0','Hellscream\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148400','4','4','4','62135','3','6','258','80','0','Hellscream\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148402','4','2','1','60850','17','1','258','80','1','Relentless Gladiator\'s Sunderer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148404','4','2','5','60808','17','1','258','80','1','Relentless Gladiator\'s Crusher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148406','4','2','8','60810','17','1','258','80','1','Relentless Gladiator\'s Claymore','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148408','4','2','15','60834','21','1','258','80','3','Relentless Gladiator\'s Mageblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148410','4','2','10','60812','17','2','258','80','2','Relentless Gladiator\'s Skirmish Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148412','4','2','10','60804','17','2','258','80','2','Relentless Gladiator\'s Acute Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148414','4','2','10','60812','17','2','258','80','2','Relentless Gladiator\'s Combat Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148420','4','2','2','60841','15','2','258','80','0','Relentless Gladiator\'s Recurve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148422','4','2','18','60842','26','2','258','80','0','Relentless Gladiator\'s Repeater','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148424','4','2','3','60847','26','1','258','80','0','Relentless Gladiator\'s Shotgun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148426','4','2','0','60814','22','1','258','80','3','Relentless Gladiator\'s Dicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148428','4','2','15','60815','22','1','258','80','3','Relentless Gladiator\'s Dirk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148429','4','4','4','62039','1','1','232','80','0','Wrynn\'s Greathelm of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148430','4','4','4','62039','1','1','245','80','0','Wrynn\'s Greathelm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148432','4','2','13','60830','22','1','258','80','7','Relentless Gladiator\'s Left Razor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148433','4','4','4','62039','1','1','258','80','0','Wrynn\'s Greathelm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148435','4','2','4','60838','22','1','258','80','3','Relentless Gladiator\'s Punisher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148436','4','4','4','62048','5','1','232','80','0','Wrynn\'s Breastplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148438','4','2','7','60832','22','1','258','80','3','Relentless Gladiator\'s Swiftblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148440','4','2','0','60825','22','1','258','80','3','Relentless Gladiator\'s Splitter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148442','4','2','15','60817','22','1','258','80','3','Relentless Gladiator\'s Eviscerator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148444','4','2','13','60829','22','1','258','80','7','Relentless Gladiator\'s Left Claw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148445','4','4','4','62020','7','1','232','80','0','Wrynn\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148446','4','4','4','62020','7','1','245','80','0','Wrynn\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148447','4','4','4','62020','7','1','258','80','0','Wrynn\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148448','4','4','4','62009','3','1','232','80','0','Wrynn\'s Pauldrons of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148449','4','4','4','62064','10','1','232','80','0','Wrynn\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148450','4','4','4','62048','5','1','245','80','0','Wrynn\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148451','4','4','4','62048','5','1','258','80','0','Wrynn\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148452','4','4','4','62064','10','1','245','80','0','Wrynn\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148453','4','4','4','62064','10','1','258','80','0','Wrynn\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148454','4','4','4','62009','3','1','245','80','0','Wrynn\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148455','4','4','4','62009','3','1','258','80','0','Wrynn\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148456','4','4','4','61525','5','1','232','80','0','Hellscream\'s Breastplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148457','4','4','4','62114','10','1','232','80','0','Hellscream\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148458','4','4','4','62117','1','1','232','80','0','Hellscream\'s Greathelm of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148459','4','4','4','62127','7','1','232','80','0','Hellscream\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148460','4','4','4','62129','3','1','232','80','0','Hellscream\'s Pauldrons of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148461','4','4','4','61525','5','1','245','80','0','Hellscream\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148462','4','4','4','62114','10','1','245','80','0','Hellscream\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148463','4','4','4','62117','1','1','245','80','0','Hellscream\'s Greathelm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148464','4','4','4','62127','7','1','245','80','0','Hellscream\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148465','4','4','4','62129','3','1','245','80','0','Hellscream\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148466','4','4','4','61525','5','1','258','80','0','Hellscream\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148467','4','4','4','62114','10','1','258','80','0','Hellscream\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148468','4','4','4','62117','1','1','258','80','0','Hellscream\'s Greathelm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148469','4','4','4','62127','7','1','258','80','0','Hellscream\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148470','4','4','4','62129','3','1','258','80','0','Hellscream\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148472','4','4','4','62032','1','4','232','80','0','Thassarian\'s Helmet of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148474','4','4','4','61347','5','1','232','80','0','Thassarian\'s Battleplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148476','4','4','4','61853','7','6','232','80','0','Thassarian\'s Legplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148478','4','4','4','62012','3','6','232','80','0','Thassarian\'s Shoulderplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148480','4','4','4','62059','10','1','232','80','0','Thassarian\'s Gauntlets of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148481','4','4','4','61347','5','1','245','80','0','Thassarian\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148482','4','4','4','62059','10','1','245','80','0','Thassarian\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148483','4','4','4','62032','1','4','245','80','0','Thassarian\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148484','4','4','4','61853','7','6','245','80','0','Thassarian\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148485','4','4','4','62012','3','6','245','80','0','Thassarian\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148486','4','4','4','62012','3','6','258','80','0','Thassarian\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148487','4','4','4','61853','7','6','258','80','0','Thassarian\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148488','4','4','4','62032','1','4','258','80','0','Thassarian\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148489','4','4','4','62059','10','1','258','80','0','Thassarian\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148490','4','4','4','61347','5','1','258','80','0','Thassarian\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148491','4','4','4','61485','5','1','258','80','0','Koltira\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148492','4','4','4','61486','10','1','258','80','0','Koltira\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148493','4','4','4','62115','1','4','258','80','0','Koltira\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148494','4','4','4','62122','7','6','258','80','0','Koltira\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148495','4','4','4','62130','3','6','258','80','0','Koltira\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148496','4','4','4','62130','3','6','245','80','0','Koltira\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148497','4','4','4','62122','7','6','245','80','0','Koltira\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148498','4','4','4','62115','1','4','245','80','0','Koltira\'s Helmet of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148499','4','4','4','61486','10','1','245','80','0','Koltira\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148500','4','4','4','61485','5','1','245','80','0','Koltira\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148501','4','4','4','61485','5','1','232','80','0','Koltira\'s Battleplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148502','4','4','4','61486','10','1','232','80','0','Koltira\'s Gauntlets of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148503','4','4','4','62115','1','4','232','80','0','Koltira\'s Helmet of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148504','4','4','4','62122','7','6','232','80','0','Koltira\'s Legplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148505','4','4','4','62130','3','6','232','80','0','Koltira\'s Shoulderplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148507','4','2','0','60811','13','1','258','80','3','Relentless Gladiator\'s Handaxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148509','4','2','15','60817','13','1','258','80','3','Relentless Gladiator\'s Spike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148511','4','2','4','60852','13','1','258','80','3','Relentless Gladiator\'s Truncheon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148513','4','2','7','60832','13','1','258','80','3','Relentless Gladiator\'s Longblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148515','4','2','13','60821','21','1','258','80','7','Relentless Gladiator\'s Grasp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148517','4','2','6','60826','17','1','258','80','2','Relentless Gladiator\'s Halberd','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148519','4','2','4','60845','21','1','258','80','3','Relentless Gladiator\'s Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148521','4','2','10','60812','17','2','258','80','2','Relentless Gladiator\'s Light Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148523','4','2','10','60822','17','2','258','80','2','Relentless Gladiator\'s Greatstaff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148529','4','4','4','62032','1','1','232','80','0','Thassarian\'s Faceguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148531','4','4','4','61347','5','1','232','80','0','Thassarian\'s Chestguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148533','4','4','4','61854','7','1','232','80','0','Thassarian\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148535','4','4','4','62011','3','1','232','80','0','Thassarian\'s Pauldrons of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148537','4','4','4','62059','10','1','232','80','0','Thassarian\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148538','4','4','4','61347','5','1','245','80','0','Thassarian\'s Chestguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148539','4','4','4','62059','10','1','245','80','0','Thassarian\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148540','4','4','4','62032','1','1','245','80','0','Thassarian\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148541','4','4','4','61854','7','1','245','80','0','Thassarian\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148542','4','4','4','62011','3','1','245','80','0','Thassarian\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148543','4','4','4','62011','3','1','258','80','0','Thassarian\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148544','4','4','4','61854','7','1','258','80','0','Thassarian\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148545','4','4','4','62032','1','1','258','80','0','Thassarian\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148546','4','4','4','62059','10','1','258','80','0','Thassarian\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148547','4','4','4','61347','5','1','258','80','0','Thassarian\'s Chestguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148548','4','4','4','61485','5','1','258','80','0','Koltira\'s Chestguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148549','4','4','4','61487','10','1','258','80','0','Koltira\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148550','4','4','4','62115','1','1','258','80','0','Koltira\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148551','4','4','4','62123','7','1','258','80','0','Koltira\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148552','4','4','4','62131','3','1','258','80','0','Koltira\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148553','4','4','4','62131','3','1','245','80','0','Koltira\'s Pauldrons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148554','4','4','4','62123','7','1','245','80','0','Koltira\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148555','4','4','4','62115','1','1','245','80','0','Koltira\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148556','4','4','4','61487','10','1','245','80','0','Koltira\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148557','4','4','4','61485','5','1','245','80','0','Koltira\'s Chestguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148558','4','4','4','61485','5','1','232','80','0','Koltira\'s Chestguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148559','4','4','4','61487','10','1','232','80','0','Koltira\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148560','4','4','4','62115','1','1','232','80','0','Koltira\'s Faceguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148561','4','4','4','62123','7','1','232','80','0','Koltira\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148562','4','4','4','62131','3','1','232','80','0','Koltira\'s Pauldrons of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148564','4','4','4','62035','1','4','232','80','0','Turalyon\'s Headpiece of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148566','4','4','4','61849','5','1','232','80','0','Turalyon\'s Tunic of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148568','4','4','4','61856','7','6','232','80','0','Turalyon\'s Greaves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148572','4','4','4','62014','3','1','232','80','0','Turalyon\'s Spaulders of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148574','4','4','4','62062','10','1','232','80','0','Turalyon\'s Gloves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148575','4','4','4','61849','5','1','245','80','0','Turalyon\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148576','4','4','4','62062','10','1','245','80','0','Turalyon\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148577','4','4','4','62035','1','4','245','80','0','Turalyon\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148578','4','4','4','61856','7','6','245','80','0','Turalyon\'s Greaves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148579','4','4','4','62014','3','1','245','80','0','Turalyon\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148580','4','4','4','62014','3','1','258','80','0','Turalyon\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148581','4','4','4','61856','7','6','258','80','0','Turalyon\'s Greaves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148582','4','4','4','62035','1','4','258','80','0','Turalyon\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148583','4','4','4','62062','10','1','258','80','0','Turalyon\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148584','4','4','4','61849','5','1','258','80','0','Turalyon\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148585','4','4','4','62133','3','1','258','80','0','Liadrin\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148586','4','4','4','62119','7','6','258','80','0','Liadrin\'s Greaves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148587','4','4','4','62116','1','4','258','80','0','Liadrin\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148588','4','4','4','62112','10','1','258','80','0','Liadrin\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148589','4','4','4','61499','5','1','258','80','0','Liadrin\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148590','4','4','4','62133','3','1','245','80','0','Liadrin\'s Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148591','4','4','4','62119','7','6','245','80','0','Liadrin\'s Greaves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148592','4','4','4','62116','1','4','245','80','0','Liadrin\'s Headpiece of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148593','4','4','4','62112','10','1','245','80','0','Liadrin\'s Gloves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148594','4','4','4','61499','5','1','245','80','0','Liadrin\'s Tunic of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148595','4','4','4','62133','3','1','232','80','0','Liadrin\'s Spaulders of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148596','4','4','4','62119','7','6','232','80','0','Liadrin\'s Greaves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148597','4','4','4','62116','1','4','232','80','0','Liadrin\'s Headpiece of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148598','4','4','4','62112','10','1','232','80','0','Liadrin\'s Gloves of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148599','4','4','4','61499','5','1','232','80','0','Liadrin\'s Tunic of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148602','4','4','4','61849','5','1','232','80','0','Turalyon\'s Battleplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148603','4','4','4','62062','10','1','232','80','0','Turalyon\'s Gauntlets of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148604','4','4','4','62035','1','4','232','80','0','Turalyon\'s Helm of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148605','4','4','4','61846','7','6','232','80','0','Turalyon\'s Legplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148606','4','4','4','62015','3','6','232','80','0','Turalyon\'s Shoulderplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148607','4','4','4','61849','5','1','245','80','0','Turalyon\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148608','4','4','4','62062','10','1','245','80','0','Turalyon\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148609','4','4','4','62035','1','4','245','80','0','Turalyon\'s Helm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148610','4','4','4','61846','7','6','245','80','0','Turalyon\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148611','4','4','4','62015','3','6','245','80','0','Turalyon\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148612','4','4','4','62015','3','6','258','80','0','Turalyon\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148613','4','4','4','61846','7','6','258','80','0','Turalyon\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148614','4','4','4','62035','1','4','258','80','0','Turalyon\'s Helm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148615','4','4','4','62062','10','1','258','80','0','Turalyon\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148616','4','4','4','61849','5','1','258','80','0','Turalyon\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148617','4','4','4','61499','5','1','258','80','0','Liadrin\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148618','4','4','4','62111','10','1','258','80','0','Liadrin\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148619','4','4','4','62116','1','4','258','80','0','Liadrin\'s Helm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148620','4','4','4','62124','7','6','258','80','0','Liadrin\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148621','4','4','4','62132','3','6','258','80','0','Liadrin\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148622','4','4','4','62132','3','6','245','80','0','Liadrin\'s Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148623','4','4','4','62124','7','6','245','80','0','Liadrin\'s Legplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148624','4','4','4','62116','1','4','245','80','0','Liadrin\'s Helm of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148625','4','4','4','62111','10','1','245','80','0','Liadrin\'s Gauntlets of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148626','4','4','4','61499','5','1','245','80','0','Liadrin\'s Battleplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148627','4','4','4','62132','3','6','232','80','0','Liadrin\'s Shoulderplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148628','4','4','4','62124','7','6','232','80','0','Liadrin\'s Legplates of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148629','4','4','4','62116','1','4','232','80','0','Liadrin\'s Helm of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148630','4','4','4','62111','10','1','232','80','0','Liadrin\'s Gauntlets of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148631','4','4','4','61499','5','1','232','80','0','Liadrin\'s Battleplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148632','4','4','4','61849','5','1','232','80','0','Turalyon\'s Breastplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148633','4','4','4','62062','10','1','232','80','0','Turalyon\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148634','4','4','4','62035','1','1','232','80','0','Turalyon\'s Faceguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148635','4','4','4','61855','7','1','232','80','0','Turalyon\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148636','4','4','4','62013','3','1','232','80','0','Turalyon\'s Shoulderguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148637','4','4','4','62013','3','1','245','80','0','Turalyon\'s Shoulderguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148638','4','4','4','61855','7','1','245','80','0','Turalyon\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148639','4','4','4','62035','1','1','245','80','0','Turalyon\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148640','4','4','4','62062','10','1','245','80','0','Turalyon\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148641','4','4','4','61849','5','1','245','80','0','Turalyon\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148642','4','4','4','61849','5','1','258','80','0','Turalyon\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148643','4','4','4','62062','10','1','258','80','0','Turalyon\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148644','4','4','4','62035','1','1','258','80','0','Turalyon\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148645','4','4','4','61855','7','1','258','80','0','Turalyon\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148646','4','4','4','62013','3','1','258','80','0','Turalyon\'s Shoulderguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148647','4','4','4','62134','3','1','258','80','0','Liadrin\'s Shoulderguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148648','4','4','4','62126','7','1','258','80','0','Liadrin\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148649','4','4','4','62116','1','1','258','80','0','Liadrin\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148650','4','4','4','62112','10','1','258','80','0','Liadrin\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148651','4','4','4','61499','5','1','258','80','0','Liadrin\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148652','4','4','4','61499','5','1','232','80','0','Liadrin\'s Breastplate of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148653','4','4','4','62112','10','1','232','80','0','Liadrin\'s Handguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148654','4','4','4','62116','1','1','232','80','0','Liadrin\'s Faceguard of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148655','4','4','4','62126','7','1','232','80','0','Liadrin\'s Legguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148656','4','4','4','62134','3','1','232','80','0','Liadrin\'s Shoulderguards of Conquest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148657','4','4','4','61499','5','1','245','80','0','Liadrin\'s Breastplate of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148658','4','4','4','62112','10','1','245','80','0','Liadrin\'s Handguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148659','4','4','4','62116','1','1','245','80','0','Liadrin\'s Faceguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148660','4','4','4','62126','7','1','245','80','0','Liadrin\'s Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148661','4','4','4','62134','3','1','245','80','0','Liadrin\'s Shoulderguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148663','4','2','4','60715','13','2','226','80','7','Tankard O\' Terror','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148666','4','4','1','61400','16','7','258','80','0','Drape of the Sunreavers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148667','4','4','1','61400','16','7','258','80','0','Shawl of the Devout Crusader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148668','4','4','1','61400','16','7','258','80','0','Cloak of Serrated Blades','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148669','4','4','1','61400','16','7','258','80','0','Cloak of the Triumphant Combatant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148670','4','4','1','61400','16','7','258','80','0','Cloak of the Unflinching Guardian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148671','4','4','1','61260','16','7','258','80','0','Drape of Bitter Incantation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148672','4','4','1','61260','16','7','258','80','0','Shawl of Fervent Crusader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148673','4','4','1','61260','16','7','258','80','0','Cloak of the Silver Covenant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148674','4','4','1','61260','16','7','258','80','0','Cloak of the Victorious Combatant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148675','4','4','1','61260','16','7','258','80','0','Cloak of the Unmoving Guardian','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148677','7','4','3','28712','5','5','1','1','0','Champion\'s Deathdealer Breastplate','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148683','7','4','3','31416','5','5','1','1','0','Mystical Vest of Elements','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148685','7','4','4','29958','5','6','1','1','0','Polished Breastplate of Valor','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148687','7','4','2','25699','5','8','1','1','0','Preened Ironfeather Breastplate','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148689','7','4','2','28160','5','8','1','1','0','Stained Shadowcraft Tunic','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148691','7','4','1','29792','20','7','1','1','0','Tattered Dreadmist Robe','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148693','4','2','4','61658','21','1','245','80','3','Heartsmasher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148695','4','2','1','60596','17','1','245','80','1','Mor\'kosh, the Bloodreaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148697','4','2','2','62470','15','1','245','80','0','Frenzystrike Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148699','4','2','4','60673','13','1','245','80','3','Blood and Glory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148701','4','2','7','61689','21','1','245','80','3','Spellharvest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148703','4','2','13','61676','21','1','245','80','7','The Facebreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148705','4','2','10','61690','17','2','245','80','2','Attrition','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148708','4','2','7','60666','21','1','245','80','3','Spellstorm Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148709','4','2','4','61659','21','1','245','80','3','Heartcrusher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148710','4','2','10','61686','17','2','245','80','2','Paragon\'s Breadth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148711','4','2','2','61687','15','1','245','80','0','Rhok\'shalla, the Shadow\'s Bane','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148712','4','2','13','61678','21','1','245','80','7','The Spinebreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148713','4','2','1','61688','17','1','245','80','1','Lothar\'s Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148714','4','2','4','60675','13','1','245','80','3','Honor of the Fallen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148716','7','2','4','28799','13','2','1','1','3','Venerable Mass of McGowan','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148718','7','2','5','31265','17','1','1','1','1','Repurposed Lava Dredger','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148722','4','4','0','59320','12','4','245','80','0','Shard of the Crystal Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148724','4','4','0','59322','12','4','245','80','0','Talisman of Resurgence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148725','4','4','1','61163','10','7','232','80','0','Khadgar\'s Gauntlets ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148726','4','4','1','62177','1','7','232','80','0','Khadgar\'s Hood ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148727','4','4','1','61189','7','7','232','80','0','Khadgar\'s Leggings ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148728','4','4','1','61721','20','7','232','80','0','Khadgar\'s Robe ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148729','4','4','1','61190','3','7','232','80','0','Khadgar\'s Shoulderpads ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148730','4','4','1','62066','10','7','232','80','0','Sunstrider\'s Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148731','4','4','1','62070','1','7','232','80','0','Sunstrider\'s Hood ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148732','4','4','1','62075','7','7','232','80','0','Sunstrider\'s Leggings ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148733','4','4','1','62182','20','7','232','80','0','Sunstrider\'s Robe ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148734','4','4','1','62090','3','7','232','80','0','Sunstrider\'s Shoulderpads ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148735','4','4','1','62068','10','7','232','80','0','Gul\'dan\'s Gloves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148736','4','4','1','62073','1','7','232','80','0','Gul\'dan\'s Hood ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148737','4','4','1','62076','7','7','232','80','0','Gul\'dan\'s Leggings ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148738','4','4','1','62083','20','7','232','80','0','Gul\'dan\'s Robe ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148739','4','4','1','62092','3','7','232','80','0','Gul\'dan\'s Shoulderpads ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148740','4','4','1','61183','10','7','232','80','0','Kel\'Thuzad\'s Gloves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148741','4','4','1','62178','1','7','232','80','0','Kel\'Thuzad\'s Hood ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148742','4','4','1','61185','7','7','232','80','0','Kel\'Thuzad\'s Leggings ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148743','4','4','1','61717','20','7','232','80','0','Kel\'Thuzad\'s Robe ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148744','4','4','1','61187','3','7','232','80','0','Kel\'Thuzad\'s Shoulderpads ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148745','4','4','1','62176','1','7','232','80','0','Velen\'s Cowl ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148746','4','4','1','61168','10','7','232','80','0','Velen\'s Gloves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148747','4','4','1','61170','7','7','232','80','0','Velen\'s Leggings ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148748','4','4','1','61171','20','7','232','80','0','Velen\'s Robe ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148749','4','4','1','61172','3','7','232','80','0','Velen\'s Shoulderpads ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148750','4','4','1','62071','1','7','232','80','0','Zabra\'s Cowl ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148751','4','4','1','62067','10','7','232','80','0','Zabra\'s Gloves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148752','4','4','1','62074','7','7','232','80','0','Zabra\'s Leggings ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148753','4','4','1','62082','20','7','232','80','0','Zabra\'s Robe ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148754','4','4','1','62087','3','7','232','80','0','Zabra\'s Shoulderpads ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148755','4','4','1','62176','1','7','232','80','0','Velen\'s Circlet ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148756','4','4','1','61168','10','7','232','80','0','Velen\'s Handwraps ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148757','4','4','1','61172','3','7','232','80','0','Velen\'s Mantle ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148758','4','4','1','61170','7','7','232','80','0','Velen\'s Pants ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148759','4','4','1','61722','20','7','232','80','0','Velen\'s Raiments ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148760','4','4','1','62071','1','7','232','80','0','Zabra\'s Circlet ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148761','4','4','1','62067','10','7','232','80','0','Zabra\'s Handwraps ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148762','4','4','1','62087','3','7','232','80','0','Zabra\'s Mantle ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148763','4','4','1','62074','7','7','232','80','0','Zabra\'s Pants ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148764','4','4','1','62082','20','7','232','80','0','Zabra\'s Raiments ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148769','4','4','2','61197','10','8','232','80','0','Runetotem\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148770','4','4','2','61198','1','8','232','80','0','Runetotem\'s Headpiece ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148771','4','4','2','62088','7','8','232','80','0','Runetotem\'s Leggings ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148772','4','4','2','61720','20','8','232','80','0','Runetotem\'s Robe ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148773','4','4','2','61201','3','8','232','80','0','Runetotem\'s Spaulders ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148774','4','4','2','61901','10','8','232','80','0','Malfurion\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148775','4','4','2','62171','1','8','232','80','0','Malfurion\'s Headpiece ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148776','4','4','2','61709','7','8','232','80','0','Malfurion\'s Leggings ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148777','4','4','2','61713','20','8','232','80','0','Malfurion\'s Robe ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148778','4','4','2','61931','3','8','232','80','0','Malfurion\'s Spaulders ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148781','4','4','2','61198','1','8','232','80','0','Runetotem\'s Cover ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148782','4','4','2','61197','10','8','232','80','0','Runetotem\'s Gloves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148783','4','4','2','61201','3','8','232','80','0','Runetotem\'s Mantle ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148784','4','4','2','62088','7','8','232','80','0','Runetotem\'s Trousers ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148785','4','4','2','61720','20','8','232','80','0','Runetotem\'s Vestments ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148786','4','4','2','62171','1','8','232','80','0','Malfurion\'s Cover ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148787','4','4','2','61901','10','8','232','80','0','Malfurion\'s Gloves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148788','4','4','2','61931','3','8','232','80','0','Malfurion\'s Mantle ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148789','4','4','2','61709','7','8','232','80','0','Malfurion\'s Trousers ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148790','4','4','2','61713','20','8','232','80','0','Malfurion\'s Vestments ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148794','4','4','2','61202','10','8','232','80','0','Runetotem\'s Handgrips ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148795','4','4','2','61203','1','8','232','80','0','Runetotem\'s Headguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148796','4','4','2','62089','7','8','232','80','0','Runetotem\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148797','4','4','2','61720','20','8','232','80','0','Runetotem\'s Raiments ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148798','4','4','2','61201','3','8','232','80','0','Runetotem\'s Shoulderpads ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148799','4','4','2','61902','10','8','232','80','0','Malfurion\'s Handgrips ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148800','4','4','2','62172','1','8','232','80','0','Malfurion\'s Headguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148801','4','4','2','61926','7','8','232','80','0','Malfurion\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148802','4','4','2','61713','20','8','232','80','0','Malfurion\'s Raiments ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148803','4','4','2','61931','3','8','232','80','0','Malfurion\'s Shoulderpads ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148804','4','4','2','61208','5','8','232','80','0','Garona\'s Breastplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148805','4','4','2','61209','10','8','232','80','0','Garona\'s Gauntlets ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148806','4','4','2','61210','1','8','232','80','0','Garona\'s Helmet ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148807','4','4','2','61250','7','8','232','80','0','Garona\'s Legplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148808','4','4','2','61213','3','8','232','80','0','Garona\'s Pauldrons ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148809','4','4','2','61930','5','8','232','80','0','VanCleef\'s Breastplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148810','4','4','2','61903','10','8','232','80','0','VanCleef\'s Gauntlets ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148811','4','4','2','62174','1','8','232','80','0','VanCleef\'s Helmet ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148812','4','4','2','61927','7','8','232','80','0','VanCleef\'s Legplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148813','4','4','2','62175','3','8','232','80','0','VanCleef\'s Pauldrons ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148814','4','4','3','62096','10','5','232','80','0','Windrunner\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148815','4','4','3','62098','1','5','232','80','0','Windrunner\'s Headpiece ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148816','4','4','3','62101','7','5','232','80','0','Windrunner\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148817','4','4','3','62107','3','5','232','80','0','Windrunner\'s Spaulders ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148818','4','4','3','61096','5','5','232','80','0','Windrunner\'s Tunic ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148819','4','4','3','62169','10','5','232','80','0','Windrunner\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148820','4','4','3','61942','1','5','232','80','0','Windrunner\'s Headpiece ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148821','4','4','3','62162','7','5','232','80','0','Windrunner\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148822','4','4','3','61995','3','5','232','80','0','Windrunner\'s Spaulders ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148823','4','4','3','61825','5','5','232','80','0','Windrunner\'s Tunic ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148824','4','4','3','62165','10','5','232','80','0','Nobundo\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148825','4','4','3','61980','1','5','232','80','0','Nobundo\'s Headpiece ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148826','4','4','3','62164','7','5','232','80','0','Nobundo\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148827','4','4','3','61938','3','5','232','80','0','Nobundo\'s Spaulders ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148828','4','4','3','59179','5','5','232','80','0','Nobundo\'s Tunic ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148829','4','4','3','62095','10','5','232','80','0','Thrall\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148830','4','4','3','62053','1','5','232','80','0','Thrall\'s Headpiece ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148831','4','4','3','62102','7','5','232','80','0','Thrall\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148832','4','4','3','61226','3','5','232','80','0','Thrall\'s Spaulders ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148833','4','4','3','62104','5','5','232','80','0','Thrall\'s Tunic ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148836','4','4','3','62165','10','5','232','80','0','Nobundo\'s Gloves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148837','4','4','3','59181','5','5','232','80','0','Nobundo\'s Hauberk ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148838','4','4','3','61980','1','5','232','80','0','Nobundo\'s Helm ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148839','4','4','3','62164','7','5','232','80','0','Nobundo\'s Kilt ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148840','4','4','3','61938','3','5','232','80','0','Nobundo\'s Shoulderpads ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148841','4','4','3','62095','10','5','232','80','0','Thrall\'s Gloves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148842','4','4','3','62104','5','5','232','80','0','Thrall\'s Hauberk ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148843','4','4','3','62193','1','5','232','80','0','Thrall\'s Helm ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148844','4','4','3','62103','7','5','232','80','0','Thrall\'s Kilt ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148845','4','4','3','61226','3','5','232','80','0','Thrall\'s Shoulderpads ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148846','4','4','3','59179','5','5','232','80','0','Nobundo\'s Chestguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148847','4','4','3','61953','1','5','232','80','0','Nobundo\'s Faceguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148848','4','4','3','62166','10','5','232','80','0','Nobundo\'s Grips ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148849','4','4','3','61996','3','5','232','80','0','Nobundo\'s Shoulderguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148850','4','4','3','61988','7','5','232','80','0','Nobundo\'s War-Kilt ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148851','4','4','3','62104','5','5','232','80','0','Thrall\'s Chestguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148852','4','4','3','62190','1','5','232','80','0','Thrall\'s Faceguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148853','4','4','3','62097','10','5','232','80','0','Thrall\'s Grips ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148854','4','4','3','62192','3','5','232','80','0','Thrall\'s Shoulderguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148855','4','4','3','62103','7','5','232','80','0','Thrall\'s War-Kilt ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148860','4','4','4','61525','5','1','232','80','0','Hellscream\'s Battleplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148861','4','4','4','62113','10','1','232','80','0','Hellscream\'s Gauntlets ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148862','4','4','4','62117','1','4','232','80','0','Hellscream\'s Helmet ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148863','4','4','4','62118','7','6','232','80','0','Hellscream\'s Legplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148864','4','4','4','62135','3','6','232','80','0','Hellscream\'s Shoulderplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148865','4','4','4','59705','5','1','232','80','0','Wrynn\'s Battleplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148866','4','4','4','58748','10','1','232','80','0','Wrynn\'s Gauntlets ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148867','4','4','4','62040','1','4','232','80','0','Wrynn\'s Helmet ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148868','4','4','4','62019','7','6','232','80','0','Wrynn\'s Legplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148869','4','4','4','62010','3','6','232','80','0','Wrynn\'s Shoulderplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148870','4','4','4','61525','5','1','232','80','0','Hellscream\'s Breastplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148871','4','4','4','62117','1','1','232','80','0','Hellscream\'s Greathelm ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148872','4','4','4','62114','10','1','232','80','0','Hellscream\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148873','4','4','4','62127','7','1','232','80','0','Hellscream\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148874','4','4','4','62129','3','1','232','80','0','Hellscream\'s Pauldrons ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148875','4','4','4','62049','5','1','232','80','0','Wrynn\'s Breastplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148876','4','4','4','62038','1','1','232','80','0','Wrynn\'s Greathelm ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148877','4','4','4','59709','10','1','232','80','0','Wrynn\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148878','4','4','4','62020','7','1','232','80','0','Wrynn\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148879','4','4','4','62009','3','1','232','80','0','Wrynn\'s Pauldrons ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148880','4','4','4','61485','5','1','232','80','0','Koltira\'s Battleplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148881','4','4','4','61486','10','1','232','80','0','Koltira\'s Gauntlets ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148882','4','4','4','62115','1','4','232','80','0','Koltira\'s Helmet ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148883','4','4','4','62122','7','6','232','80','0','Koltira\'s Legplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148884','4','4','4','62130','3','6','232','80','0','Koltira\'s Shoulderplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148885','4','4','4','61485','5','1','232','80','0','Thassarian\'s Battleplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148886','4','4','4','61350','10','1','232','80','0','Thassarian\'s Gauntlets ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148887','4','4','4','62033','1','4','232','80','0','Thassarian\'s Helmet ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148888','4','4','4','61853','7','6','232','80','0','Thassarian\'s Legplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148889','4','4','4','62012','3','6','232','80','0','Thassarian\'s Shoulderplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148890','4','4','4','61485','5','1','232','80','0','Koltira\'s Chestguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148891','4','4','4','62115','1','1','232','80','0','Koltira\'s Faceguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148892','4','4','4','61487','10','1','232','80','0','Koltira\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148893','4','4','4','62123','7','1','232','80','0','Koltira\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148894','4','4','4','62131','3','1','232','80','0','Koltira\'s Pauldrons ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148895','4','4','4','59716','5','1','232','80','0','Thassarian\'s Chestguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148896','4','4','4','62031','1','1','232','80','0','Thassarian\'s Faceguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148897','4','4','4','61386','10','1','232','80','0','Thassarian\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148898','4','4','4','61854','7','1','232','80','0','Thassarian\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148899','4','4','4','62011','3','1','232','80','0','Thassarian\'s Pauldrons ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148900','4','4','4','61849','5','1','232','80','0','Turalyon\'s Tunic ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148901','4','4','4','62014','3','1','232','80','0','Turalyon\'s Spaulders ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148902','4','4','4','62036','1','4','232','80','0','Turalyon\'s Headpiece ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148903','4','4','4','61856','7','6','232','80','0','Turalyon\'s Greaves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148904','4','4','4','61394','10','1','232','80','0','Turalyon\'s Gloves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148905','4','4','4','61499','5','1','232','80','0','Liadrin\'s Tunic ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148906','4','4','4','62133','3','1','232','80','0','Liadrin\'s Spaulders ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148907','4','4','4','62116','1','4','232','80','0','Liadrin\'s Headpiece ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148908','4','4','4','62119','7','6','232','80','0','Liadrin\'s Greaves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148909','4','4','4','62112','10','1','232','80','0','Liadrin\'s Gloves ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148910','4','4','4','61499','5','1','232','80','0','Liadrin\'s Battleplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148911','4','4','4','62111','10','1','232','80','0','Liadrin\'s Gauntlets ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148912','4','4','4','62116','1','4','232','80','0','Liadrin\'s Helm ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148913','4','4','4','62124','7','6','232','80','0','Liadrin\'s Legplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148914','4','4','4','62132','3','6','232','80','0','Liadrin\'s Shoulderplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148915','4','4','4','61849','5','1','232','80','0','Turalyon\'s Battleplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148916','4','4','4','58748','10','1','232','80','0','Turalyon\'s Gauntlets ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148917','4','4','4','62037','1','4','232','80','0','Turalyon\'s Helm ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148918','4','4','4','61846','7','6','232','80','0','Turalyon\'s Legplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148919','4','4','4','62015','3','6','232','80','0','Turalyon\'s Shoulderplates ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148922','4','4','4','61499','5','1','232','80','0','Liadrin\'s Breastplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148923','4','4','4','62116','1','1','232','80','0','Liadrin\'s Faceguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148924','4','4','4','62112','10','1','232','80','0','Liadrin\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148925','4','4','4','62126','7','1','232','80','0','Liadrin\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148926','4','4','4','62134','3','1','232','80','0','Liadrin\'s Shoulderguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148927','4','4','4','61849','5','1','232','80','0','Turalyon\'s Breastplate ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148928','4','4','4','62034','1','1','232','80','0','Turalyon\'s Faceguard ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148929','4','4','4','59709','10','1','232','80','0','Turalyon\'s Handguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148930','4','4','4','61855','7','1','232','80','0','Turalyon\'s Legguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148931','4','4','4','62013','3','1','232','80','0','Turalyon\'s Shoulderguards ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148933','3','4','0','60797','0','-1','80','0','0','Wormhole Generator: Northrend','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148945','3','4','0','19667','1','7','200','0','0','Gnomish Thinking Cap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148954','4','4','0','52632','11','5','226','80','0','Etched Band of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148955','4','4','0','52459','11','3','226','80','0','Etched Loop of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148956','4','4','0','52632','11','5','226','80','0','Etched Ring of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148957','4','4','0','52459','11','3','226','80','0','Etched Signet of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148974','4','4','2','48681','9','8','226','80','0','Titan-Forged Armwraps of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148975','4','4','2','48681','9','8','226','80','0','Titan-Forged Armwraps of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148976','4','4','2','48682','9','8','226','80','0','Titan-Forged Armwraps of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148977','4','4','4','48662','9','6','226','80','0','Titan-Forged Bracers of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148978','4','4','4','48664','9','6','226','80','0','Titan-Forged Bracers of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148979','4','4','1','48687','9','7','226','80','0','Titan-Forged Cuffs of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148980','4','4','3','48673','9','5','226','80','0','Titan-Forged Wristguards of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148981','4','4','3','48673','9','5','226','80','0','Titan-Forged Wristguards of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148982','4','4','3','48673','9','5','226','80','0','Titan-Forged Wristguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148983','4','4','3','60195','7','5','232','80','0','Titan-Forged Chain Leggings of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148987','4','4','2','60860','7','8','232','80','0','Titan-Forged Leather Legguards of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148988','4','4','2','60877','7','8','232','80','0','Titan-Forged Leather Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148990','4','4','3','60891','7','5','232','80','0','Titan-Forged Mail Leggings of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148991','4','4','1','60893','7','7','232','80','0','Titan-Forged Cloth Leggings of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148992','4','4','4','60898','7','6','232','80','0','Titan-Forged Plate Legguards of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148993','4','4','4','58794','7','6','232','80','0','Titan-Forged Plate Legguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148994','4','4','3','60891','7','5','232','80','0','Titan-Forged Ringmail Leggings of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148997','4','4','1','60916','7','7','232','80','0','Titan-Forged Cloth Trousers of Domination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148998','4','4','2','60860','7','8','232','80','0','Titan-Forged Leather Legguards of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('148999','4','4','0','39129','11','5','226','80','0','Titan-Forged Band of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149000','4','4','0','39129','11','5','226','80','0','Titan-Forged Band of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149052','3','4','0','61012','19','7','75','0','0','Tabard of Conquest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149054','3','4','0','61013','19','7','75','0','0','Tabard of Conquest','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149074','4','4','0','29947','12','4','200','80','0','Coren\'s Chromium Coaster','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149076','4','4','0','43431','12','4','200','80','0','Mithril Pocketwatch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149078','4','4','0','18047','12','4','200','80','0','Ancient Pickled Egg','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149080','4','4','0','53485','12','4','200','80','0','Brawler\'s Souvenir','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149086','4','4','0','58700','19','4','80','0','0','Relentless Gladiator\'s Tabard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149116','4','4','0','49636','12','4','200','80','0','Bitter Balebrew Charm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149118','4','4','0','49650','12','4','200','80','0','Bubbling Brightbrew Charm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149120','4','2','15','23262','13','1','200','80','7','Direbrew\'s Bloody Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149121','4','4','0','47325','11','3','200','80','0','Ring of Ghoulish Glee','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149123','4','4','0','47325','11','3','200','80','0','The Horseman\'s Seal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149124','4','4','0','47325','11','3','200','80','0','Wicked Witch\'s Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149126','4','4','4','51920','1','8','200','80','0','The Horseman\'s Horrific Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149128','4','2','7','31419','21','1','200','80','3','The Horseman\'s Baleful Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149179','4','4','1','61481','6','7','245','80','0','Relentless Gladiator\'s Cord of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149181','4','4','1','61480','9','7','245','80','0','Relentless Gladiator\'s Cuffs of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149183','4','4','1','61482','8','7','245','80','0','Relentless Gladiator\'s Treads of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149185','4','2','19','60836','26','2','245','80','0','Relentless Gladiator\'s Wand of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149187','4','4','0','39505','23','3','251','80','7','Relentless Gladiator\'s Compendium','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149189','4','2','15','60848','21','1','245','80','3','Relentless Gladiator\'s Blade of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149191','4','2','15','60834','21','1','258','80','3','Relentless Gladiator\'s Blade of Celerity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149227','3','2','15','61992','21','1','187','78','3','Skoll\'s Fang','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149231','4','4','1','61235','8','7','232','80','0','Boots of the Grieving Soul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149232','4','4','1','62109','8','7','232','80','0','Sandals of the Grieving Soul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149233','4','4','1','62109','8','7','245','80','0','Sandals of the Grieving Soul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149234','4','4','1','61235','8','7','245','80','0','Boots of the Grieving Soul','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149235','4','4','3','61961','8','5','232','80','0','Boots of Tortured Space','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149236','4','4','3','61114','8','5','232','80','0','Sabatons of Tortured Space','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149237','4','4','3','61114','8','5','245','80','0','Sabatons of Tortured Space','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149238','4','4','3','61961','8','5','245','80','0','Boots of Tortured Space','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149278','1','4','0','62218','4','8','1','0','0','Goblin Rocket Pack','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149296','4','2','7','62984','13','1','232','80','3','Singed Vis\'kag the Bloodletter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149297','4','2','0','62983','13','1','232','80','3','Empowered Deathbringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149298','4','2','7','62970','21','1','232','80','3','Glinting Azuresong Mageblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149299','4','2','8','62985','17','1','232','80','1','Keen Obsidian Edged Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149301','4','2','6','62977','17','1','232','80','2','Reclaimed Thunderstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149302','4','2','6','62977','17','1','232','80','2','Reclaimed Shadowstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149303','4','2','7','52784','13','1','232','80','3','Gleaming Quel\'Serrar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149304','4','2','15','62971','21','1','232','80','3','Sharpened Fang of the Mystics','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149305','4','2','3','63201','26','1','232','80','0','Snub-Nose Blastershot Launcher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149306','4','4','0','16132','2','-1','232','80','0','Eskhandar\'s Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149307','4','4','1','29719','16','7','232','80','0','Fluttering Sapphiron Drape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149308','4','4','0','29717','23','7','232','80','7','Antique Cornerstone Grimoire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149309','4','4','0','9823','11','3','232','80','0','Runed Ring of Binding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149310','4','4','0','26374','12','2','232','80','0','Purified Shard of the Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149312','4','4','0','30764','12','3','232','0','0','Purified Onyxia Blood Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149313','4','4','0','26391','11','3','232','0','0','Polished Dragonslayer\'s Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149314','4','4','0','9860','2','3','232','0','0','Sparkling Onyxia Tooth Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149315','4','4','1','62986','1','7','232','80','0','Nemesis Skullcover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149316','4','4','1','62980','1','7','232','80','0','Circlet of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149317','4','4','1','62980','1','7','232','80','0','Coronet of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149318','4','4','1','62978','1','7','232','80','0','Netherwind Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149319','4','4','3','62976','1','5','232','80','0','Dragonstalker\'s Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149320','4','4','4','62987','1','6','232','80','0','Faceguard of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149321','4','4','4','62987','1','6','232','80','0','Greathelm of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149322','4','4','2','62981','1','8','232','80','0','Bloodfang Mask','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149323','4','4','4','62979','1','6','232','80','0','Judgement Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149324','4','4','4','62979','1','6','232','80','0','Judgement Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149325','4','4','4','62979','1','6','232','80','0','Judgement Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149326','4','4','2','64902','1','8','232','80','0','Stormrage Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149327','4','4','2','64902','1','8','232','80','0','Stormrage Antlers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149328','4','4','2','64902','1','8','232','80','0','Stormrage Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149329','4','4','3','62982','1','5','232','80','0','Gaze of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149330','4','4','3','62982','1','5','232','80','0','Cowl of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149331','4','4','3','62982','1','5','232','80','0','Coif of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149332','4','4','4','62974','1','6','232','80','0','Frostforged Ringhelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149333','4','4','4','62974','1','6','232','80','0','Frostforged Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149437','4','2','15','62972','13','1','232','80','3','Rusted Gutgore Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149463','4','4','0','26374','12','2','232','80','0','Purified Shard of the Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149464','4','4','0','26374','12','2','245','80','0','Shiny Shard of the Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149465','4','2','15','62972','13','1','245','80','3','Tarnished Gutgore Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149466','4','4','4','62974','1','6','245','80','0','Frostforged Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149467','4','4','4','62974','1','6','245','80','0','Frostforged Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149468','4','4','3','62982','1','5','245','80','0','Helm of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149469','4','4','3','62982','1','5','245','80','0','Crown of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149470','4','4','3','62982','1','5','245','80','0','Helmet of Ten Storms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149471','4','4','2','64902','1','8','245','80','0','Stormrage Coverlet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149472','4','4','2','64902','1','8','245','80','0','Stormrage Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149473','4','4','2','64902','1','8','245','80','0','Stormrage Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149474','4','4','4','62979','1','6','245','80','0','Judgement Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149475','4','4','4','62979','1','6','245','80','0','Judgement Heaume','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149476','4','4','4','62979','1','6','245','80','0','Judgement Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149477','4','4','2','62981','1','8','245','80','0','Bloodfang Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149478','4','4','4','62987','1','6','245','80','0','Helmet of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149479','4','4','4','62987','1','6','245','80','0','Helm of Wrath','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149480','4','4','3','34367','1','5','245','80','0','Dragonstalker\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149481','4','4','1','62978','1','7','245','80','0','Netherwind Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149482','4','4','1','62980','1','7','245','80','0','Aurora of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149483','4','4','1','62980','1','7','245','80','0','Halo of Transcendence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149484','4','4','1','62986','1','7','245','80','0','Nemesis Skullcap','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149485','4','4','0','9860','2','3','245','0','0','Sparkling Onyxia Tooth Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149486','4','4','0','26391','11','3','245','0','0','Polished Dragonslayer\'s Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149487','4','4','0','30764','12','3','245','0','0','Purified Onyxia Blood Talisman','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149488','4','4','0','26374','12','2','245','80','0','Shiny Shard of the Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149489','4','4','0','9823','11','3','245','80','0','Signified Ring of Binding','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149490','4','4','0','29717','23','7','245','80','7','Antediluvian Cornerstone Grimoire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149491','4','4','1','29719','16','7','245','80','0','Flowing Sapphiron Drape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149492','4','4','0','16132','2','-1','245','80','0','Eskhandar\'s Links','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149493','4','2','3','63201','26','1','245','80','0','Rifled Blastershot Launcher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149494','4','2','15','62971','21','1','245','80','3','Honed Fang of the Mystics','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149495','4','2','7','52784','13','1','245','80','3','Burnished Quel\'Serrar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149496','4','2','6','62977','17','1','245','80','2','Reinforced Shadowstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149497','4','2','6','62977','17','1','245','80','2','Reinforced Thunderstrike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149498','4','2','8','62985','17','1','245','80','1','Sharpened Obsidian Edged Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149499','4','2','7','62970','21','1','245','80','3','Polished Azuresong Mageblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149500','4','2','0','62983','13','1','245','80','3','Raging Deathbringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149501','4','2','7','62984','13','1','245','80','3','Tempered Vis\'kag the Bloodletter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149623','5','2','1','65153','17','1','284','80','1','Shadowmourne','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149682','4','2','15','59375','13','1','219','80','3','Black Knight\'s Rondel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149686','4','4','0','62936','12','4','277','80','0','Maghia\'s Misguided Quill','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149715','3','4','0','63867','1','4','1','0','0','Forever-Lovely Rose','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149778','1','2','8','2380','17','1','2','1','1','Worn Greatsword','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149783','4','2','4','64744','13','1','219','80','3','Lucky Old Sun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149784','4','4','4','64844','7','6','219','80','0','Minister\'s Number One Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149785','4','4','2','64561','3','8','219','80','0','Bewildering Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149786','4','4','2','65307','20','8','219','80','0','Robes of the Cheating Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149787','4','4','3','64666','9','5','219','80','0','Seven Stormy Mornings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149788','4','4','1','64613','10','7','219','80','0','Cold Sweat Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149789','4','2','15','64743','13','1','219','80','3','Heartshiver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149790','4','2','10','64742','17','2','219','80','2','Blood Boil Lancet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149791','4','4','4','64845','5','1','219','80','0','Lost Reliquary Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149792','4','4','1','64640','16','7','219','80','0','Accursed Crawling Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149793','4','2','10','64741','17','2','219','80','2','Tower of the Mouldering Corpse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149794','4','4','4','64722','7','6','219','80','0','Legplates of Frozen Granite','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149795','4','4','4','64721','8','1','219','80','0','Sollerets of Suffering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149796','4','4','1','64614','6','7','219','80','0','Essence of Anger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149797','4','4','4','64724','9','6','219','80','0','Brace Guards of the Starless Night','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149798','4','4','3','64665','8','5','219','80','0','Soul Screaming Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149799','4','4','0','54999','2','4','219','80','0','Coil of Missing Gems','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149800','4','4','0','33534','11','3','219','80','0','Spiteful Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149801','4','2','10','64739','17','2','219','80','2','Unspeakable Secret','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149802','4','2','5','64740','17','1','219','80','1','Garfrost\'s Two-Ton Hammer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149803','4','4','0','31657','11','5','219','80','0','Ring of Carnelian and Bone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149804','4','4','3','64650','1','5','219','80','0','Polished Mirror Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149805','4','4','1','64579','8','7','219','80','0','Ice-Steeped Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149806','4','4','2','64562','6','8','219','80','0','Flayer\'s Black Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149807','4','2','15','64737','13','1','219','80','3','Krick\'s Beetle Stabber','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149808','4','4','4','64847','6','6','219','80','0','Bent Gold Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149809','4','4','1','64591','9','7','219','80','0','Wristguards of Subterranean Moss','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149810','4','4','3','64699','6','5','219','80','0','Scabrous Zombie Leather Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149811','4','4','3','64662','7','5','219','80','0','Black Dragonskin Breeches','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149812','4','4','0','31906','11','5','219','80','0','Purloined Wedding Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149813','4','2','3','52413','26','1','219','80','0','Rimebane Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149816','4','4','4','64854','5','1','219','80','0','Scourgelord\'s Frigid Chestplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149817','4','4','2','64563','7','8','219','80','0','Shaggy Wyrmleather Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149818','4','4','0','9852','2','3','219','80','0','Painfully Sharp Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149819','4','4','4','64951','1','-1','219','80','0','Skeleton Lord\'s Cranium','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149820','4','4','3','64696','9','5','219','80','0','Gondria\'s Spectral Bracer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149821','4','4','6','64881','14','6','219','80','4','Protector of Frigid Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149822','4','4','1','64621','7','7','219','80','0','Rimewoven Silks','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149823','4','4','1','17238','16','7','219','80','0','Cloak of the Fallen Cardinal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149824','4','4','3','64946','1','5','219','80','0','Horns of the Spurned Val\'kyr','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149825','4','4','1','64616','20','7','219','80','0','Palebone Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149826','4','4','3','64680','5','5','219','80','0','Shroud of Rime','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149827','4','2','7','64757','13','1','219','80','3','Ghoulslicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149828','4','4','1','64597','10','7','219','80','0','Marwyn\'s Macabre Fingertips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149829','4','4','4','64718','3','1','219','80','0','Valonforth\'s Tarnished Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149830','4','4','2','64949','1','8','219','80','0','Fallen Sentry\'s Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149831','4','4','3','64710','8','5','219','80','0','Muddied Boots of Brill','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149832','4','4','1','64647','16','7','219','80','0','Eerie Runeblade Polisher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149833','4','2','7','64753','21','1','219','80','3','Splintered Icecrown Parapet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149834','4','4','1','64607','3','7','219','80','0','Frayed Abomination Stitching Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149835','4','4','6','64882','14','6','219','80','4','Splintered Door of the Citadel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149836','4','4','3','64712','7','5','219','80','0','Frostsworn Bone Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149837','4','4','3','64682','10','5','219','80','0','Mitts of Burning Hail','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149838','4','4','2','64564','10','8','219','80','0','Carpal Tunnelers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149839','4','2','8','64750','17','1','219','80','1','Mourning Malice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149840','4','2','0','64749','13','1','219','80','3','Hate-Forged Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149841','4','4','2','64533','5','8','219','80','0','Blackened Geist Ribs','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149842','4','4','1','64648','16','7','219','80','0','Tapestry of the Frozen Throne','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149843','4','4','4','64723','10','1','219','80','0','Crystalline Citadel Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149844','4','2','2','64748','15','1','219','80','0','Crypt Fiend Slayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149845','4','2','4','65164','21','2','219','80','3','Bone Golem Scapula','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149846','4','2','15','64746','21','1','219','80','3','Chilled Heart of the Glacier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149847','4','4','3','64662','7','5','219','80','0','Legguards of Untimely Demise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149848','4','4','2','64558','3','8','219','80','0','Grim Lasher Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149849','4','4','1','64599','1','7','219','80','0','Tattered Glacial-Woven Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149851','4','4','4','64950','1','-1','219','80','0','Greathelm of the Silver Hand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149852','4','2','19','64745','26','2','219','80','0','Coffin Nail','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149853','4','4','4','64856','6','6','219','80','0','Titanium Links of Lore','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149854','4','4','1','64606','3','7','219','80','0','Mantle of Tattered Feathers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149855','4','4','4','64843','10','1','219','80','0','Plated Grips of Korth\'azz','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149888','4','2','1','63876','17','1','264','80','1','Shadow\'s Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149890','4','4','1','64343','8','7','264','80','0','Deathfrost Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149891','4','4','1','64241','7','7','264','80','0','Leggings of Woven Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149892','4','4','1','43421','7','7','264','80','0','Lightweave Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149893','4','4','1','65408','8','7','264','80','0','Sandals of Consecration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149894','4','4','2','64489','8','8','264','80','0','Blessed Cenarion Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149895','4','4','2','64414','8','8','264','80','0','Footpads of Impending Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149896','4','4','3','65409','8','8','264','80','0','Earthsoul Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149897','4','4','3','65410','8','8','264','80','0','Rock-Steady Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149898','4','4','2','64486','7','8','264','80','0','Legwraps of Unleashed Nature','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149899','4','4','2','64416','7','8','264','80','0','Bladeborn Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149900','4','4','3','65038','7','8','264','80','0','Lightning-Infused Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149901','4','4','3','64821','7','8','264','80','0','Draconic Bonesplinter Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149902','4','4','4','64852','7','-1','264','80','0','Puresteel Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149903','4','4','4','64848','7','-1','264','80','0','Legplates of Painful Death','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149904','4','4','4','64848','7','-1','264','80','0','Pillars of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149905','4','4','4','64846','8','1','264','80','0','Protectors of Life','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149906','4','4','4','64789','8','1','264','80','0','Hellfrozen Bonegrinders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149907','4','4','4','64789','8','1','264','80','0','Boots of Kingly Upheaval','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149916','1','4','0','63430','9','4','1','0','0','Lovely Charm Bracelet','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149919','4','2','5','64393','17','1','264','80','1','Cryptmaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149949','4','4','0','64169','11','5','264','80','0','Band of the Bone Colossus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149950','4','4','2','64414','8','8','264','80','0','Frostbitten Fur Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149951','4','4','4','64569','5','1','264','80','0','Gendarme\'s Cuirass','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149952','4','4','3','67434','1','5','264','80','0','Snowserpent Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149960','4','4','4','64796','9','6','264','80','0','Bracers of Dark Reckoning','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149964','4','4','4','64572','7','1','264','80','0','Legguards of Lost Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149967','4','4','0','64230','11','3','264','80','0','Marrowgar\'s Frigid Eye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149968','4','2','15','64646','21','1','264','80','3','Frozen Bonespike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149975','4','4','0','64194','2','4','264','80','0','Bone Sentinel\'s Amulet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149976','4','4','6','65030','14','6','264','80','4','Bulwark of Smouldering Steel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149977','4','4','0','64176','11','3','264','80','0','Loop of the Endless Labyrinth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149978','4','4','1','64347','6','7','264','80','0','Crushing Coldwraith Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149979','4','4','2','64491','10','8','264','80','0','Handguards of Winter\'s Respite','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149980','4','4','4','64998','3','1','264','80','0','Rusted Bonespike Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149981','4','2','18','64371','26','2','271','80','0','Fal\'inrush, Defender of Quel\'thalas','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149982','4','2','15','64669','13','1','264','80','3','Heartpierce','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149983','4','4','4','64789','8','1','264','80','0','Blood-Soaked Saronite Stompers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149985','4','4','0','64229','11','3','264','80','0','Juggernaut Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149986','4','4','4','64570','1','1','264','80','0','Broken Ram Skull Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149987','4','4','2','64398','3','8','264','80','0','Cultist\'s Bloodsoaked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149988','4','4','3','64821','7','5','264','80','0','Leggings of Northern Lights','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149989','4','4','0','64190','2','3','264','80','0','Ahn\'kahar Onyx Neckguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149990','4','4','0','33864','11','3','264','80','0','Ring of Maddening Whispers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149991','4','4','1','64243','3','7','264','80','0','Shoulders of Mercy Killing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149992','4','2','10','64342','17','2','264','80','2','Nibelung','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149993','4','4','3','65036','8','5','264','80','0','Necrophotic Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149994','4','4','1','64345','9','7','264','80','0','The Lady\'s Brittle Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149995','4','4','4','64668','10','1','264','80','0','Fallen Lord\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149996','4','4','2','64490','20','8','264','80','0','Deathwhisper Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149997','4','2','4','64508','13','1','271','80','3','Mithrios, Bronzebeard\'s Legacy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149998','4','4','1','64304','16','7','264','80','0','Shadowvault Slayer\'s Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('149999','4','4','0','64169','11','5','264','80','0','Skeleton Lord\'s Circle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150000','4','4','3','64824','9','5','264','80','0','Scourge Hunter\'s Vambraces','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150001','4','4','2','64426','5','8','264','80','0','Ikfirus\'s Sack of Wonder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150002','4','4','4','64795','9','1','264','80','0','Polar Bear Claw Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150003','4','4','4','64622','3','1','264','80','0','Boneguard Commander\'s Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150005','4','4','0','64219','2','3','264','80','0','Amulet of the Silent Eulogy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150006','4','4','1','64160','1','7','264','80','0','Corp\'rethar Ceremonial Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150008','4','4','0','64170','11','3','264','80','0','Ring of Rapid Ascent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150009','4','4','2','64489','8','8','264','80','0','Boots of Unnatural Growth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150010','4','4','4','64660','6','1','264','80','0','Waistband of Righteous Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150011','4','4','1','65002','10','7','264','80','0','Gunship Captain\'s Mittens','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150012','4','2','0','64480','13','1','271','80','1','Havoc\'s Call, Blade of Lordaeron Kings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150014','4','4','1','64300','16','7','264','80','0','Greatcloak of the Turned Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150015','4','4','3','65035','6','5','264','80','0','Belt of the Blood Nova','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150016','4','2','15','64681','13','1','264','80','3','Rib Spreader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150019','4','4','1','64307','16','7','264','80','0','Winding Sheet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150020','4','4','4','64622','3','6','264','80','0','Raging Behemoth\'s Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150021','4','4','2','64424','10','8','264','80','0','Aldriana\'s Gloves of Secrecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150022','4','4','3','64819','3','5','264','80','0','Dual-Bladed Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150023','4','4','0','64213','2','4','264','80','0','Bile-Encrusted Medallion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150024','4','4','4','64569','5','1','264','80','0','Blightborne Warplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150025','4','4','0','64225','11','5','264','80','0','Seal of Many Mouths','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150026','4','4','2','64488','1','8','264','80','0','Helm of the Elder Moon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150027','4','4','4','64658','5','1','264','80','0','Rot-Resistant Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150028','4','2','4','64514','21','1','264','80','3','Trauma','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150030','4','4','3','65034','9','5','264','80','0','Bloodsunder\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150032','4','4','1','64165','9','7','264','80','0','Death Surgeon\'s Sleeves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150033','4','2','19','64357','26','2','264','80','0','Corpse-Impaling Spike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150034','4','2','2','65744','15','1','264','80','0','Zod\'s Repeating Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150035','4','2','13','64461','21','1','264','80','7','Black Bruise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150036','4','4','4','64784','6','6','264','80','0','Belt of Broken Bones','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150037','4','4','4','64571','10','1','264','80','0','Fleshrending Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150038','4','4','3','64828','5','5','264','80','0','Carapace of Forgotten Kings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150040','4','2','10','64340','17','2','264','80','2','Distant Land','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150041','4','4','2','64486','7','8','264','80','0','Leather of Stitched Scourge Parts','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150042','4','4','2','64416','7','8','264','80','0','Gangrenous Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150046','4','2','7','64153','13','1','251','80','3','Quel\'Delar, Cunning of the Shadows','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150047','4','2','7','64153','21','1','251','80','3','Quel\'Delar, Lens of the Mind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150048','4','2','8','64152','17','1','251','80','1','Quel\'Delar, Might of the Faithful','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150049','4','2','8','64152','17','1','251','80','1','Quel\'Delar, Ferocity of the Scorned','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150050','4','2','4','41873','13','1','251','80','3','Cudgel of Furious Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150051','4','2','4','64954','21','2','251','80','3','Hammer of Purified Flame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150052','4','2','5','64158','17','1','251','80','1','Lightborn Spire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150055','1','2','15','6442','22','1','2','1','3','Worn Dirk','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150056','4','4','1','64241','7','7','264','80','0','Plaguebringer\'s Stained Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150057','1','2','15','37170','22','1','2','1','3','Sharp Dirk','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150059','4','4','3','65033','3','5','264','80','0','Horrific Flesh Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150060','4','4','4','64688','1','-1','264','80','0','Faceplate of the Forgotten','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150061','4','4','0','64203','2','4','264','80','0','Holiday\'s Grace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150062','4','4','1','64343','8','7','264','80','0','Plague Scientist\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150063','4','4','1','64208','6','7','264','80','0','Lingering Illness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150064','4','4','3','65032','10','5','264','80','0','Unclean Surgical Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150065','4','4','6','65056','14','6','264','80','4','Icecrown Glacial Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150067','4','4','2','64422','6','8','264','80','0','Astrylian\'s Sutured Cinch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150068','4','2','7','64546','21','1','264','80','3','Rigormortis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150069','4','4','2','64492','6','8','264','80','0','Professor\'s Bloodied Smock','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150070','4','2','8','64557','17','1','271','80','1','Glorenzelg, High-Blade of the Silver Hand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150071','4','4','3','64822','8','5','264','80','0','Treads of the Wasteland','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150072','4','4','4','64570','1','4','264','80','0','Landsoul\'s Horned Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150073','4','4','2','64427','1','8','264','80','0','Geistlord\'s Punishment Sack','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150074','4','4','1','54674','16','7','264','80','0','Royal Crimson Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150075','4','4','4','64571','10','1','264','80','0','Taldaram\'s Plated Fists','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150078','4','4','4','64523','5','1','251','80','0','Ymirjar Lord\'s Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150079','4','4','4','64525','10','1','251','80','0','Ymirjar Lord\'s Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150080','4','4','4','64527','1','4','251','80','0','Ymirjar Lord\'s Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150081','4','4','4','64568','7','6','251','80','0','Ymirjar Lord\'s Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150082','4','4','4','64618','3','6','251','80','0','Ymirjar Lord\'s Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150087','4','4','2','63692','5','8','251','80','0','Shadowblade Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150088','4','4','2','63693','10','8','251','80','0','Shadowblade Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150089','4','4','2','63690','1','8','251','80','0','Shadowblade Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150090','4','4','2','63691','7','8','251','80','0','Shadowblade Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150094','4','4','4','64592','5','1','251','80','0','Scourgelord Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150095','4','4','4','64593','10','1','251','80','0','Scourgelord Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150096','4','4','4','64594','1','4','251','80','0','Scourgelord Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150097','4','4','4','64595','7','6','251','80','0','Scourgelord Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150098','4','4','4','64705','3','6','251','80','0','Scourgelord Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150105','4','4','2','63689','3','8','251','80','0','Shadowblade Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150106','4','4','2','64730','20','8','251','80','0','Lasherweave Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150107','4','4','2','64448','10','8','251','80','0','Lasherweave Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150108','4','4','2','64446','1','8','251','80','0','Lasherweave Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150109','4','4','2','64458','7','8','251','80','0','Lasherweave Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150113','4','4','2','64457','3','8','251','80','0','Lasherweave Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150114','4','4','3','64810','10','5','251','80','0','Ahn\'Kahar Blood Hunter\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150115','4','4','3','65130','1','5','251','80','0','Ahn\'Kahar Blood Hunter\'s Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150116','4','4','3','64812','7','5','251','80','0','Ahn\'Kahar Blood Hunter\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150117','4','4','3','64804','3','5','251','80','0','Ahn\'Kahar Blood Hunter\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150118','4','4','3','64814','5','5','251','80','0','Ahn\'Kahar Blood Hunter\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150169','4','2','16','64770','25','1','232','80','0','Papa\'s Brand New Knife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150170','4','4','0','64174','11','3','264','80','0','Valanar\'s Other Signet Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150171','4','4','2','64496','3','8','264','80','0','Shoulders of Frost-Tipped Thorns','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150172','4','4','1','64162','20','7','264','80','0','Sanguine Silk Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150173','4','4','0','64440','23','3','264','80','0','Shadow Silk Spindle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150174','4','4','0','64173','11','3','264','80','0','Incarnadine Band of Mending','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150175','4','4','4','64689','9','6','264','80','0','Crypt Keeper\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150176','4','4','1','64214','10','7','264','80','0','San\'layn Ritualist Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150177','4','4','3','65039','5','5','264','80','0','Mail of Crimson Coins','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150178','4','2','6','64379','17','1','264','80','1','Bloodfall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150179','4','2','4','64500','13','1','264','80','3','Last Word','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150180','4','4','0','64201','2','3','264','80','0','Lana\'thel\'s Chain of Flagellation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150181','4','2','10','64337','17','2','264','80','2','Dying Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150182','4','4','0','64222','2','3','264','80','0','Blood Queen\'s Crimson Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150183','4','2','15','64677','13','1','264','80','3','Lungbreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150184','4','2','13','64463','22','1','264','80','7','Keleseth\'s Seducer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150185','4','4','0','64170','11','3','264','80','0','Devium\'s Eternally Cold Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150186','4','4','0','64227','11','5','264','80','0','Frostbrood Sapphire Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150187','4','4','4','64784','6','6','264','80','0','Coldwraith Links','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150188','4','4','3','64823','10','5','264','80','0','Anub\'ar Stalker\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150190','4','4','4','64789','8','1','264','80','0','Grinning Skull Greatboots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150191','4','2','0','64769','13','1','232','80','3','Nighttime','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150192','4','4','4','64572','7','6','264','80','0','Scourge Reaver\'s Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150193','4','4','1','64605','3','7','232','80','0','Very Fashionable Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150194','4','4','4','64830','10','1','232','80','0','Weeping Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150195','4','4','0','64211','2','4','264','80','0','Noose of Malachite','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150196','4','4','0','64207','2','4','232','80','0','Love\'s Prisoner','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150197','4','4','3','64693','1','5','232','80','0','Eyes of Bewilderment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150198','4','4','0','64254','12','4','232','80','0','Needle-Encrusted Scorpion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150199','4','4','4','64667','7','6','264','80','0','Leggings of Dying Candles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150202','4','4','3','65040','1','5','264','80','0','Snowstorm Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150203','4','2','15','64768','13','1','232','80','3','Blood Weeper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150204','4','2','19','64700','26','2','264','80','0','Wand of the Drowned Contessa','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150205','4','4','1','28951','16','7','264','80','0','Frostbinder\'s Shredded Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150206','4','4','2','65136','1','8','232','80','0','Frayed Scoundrel\'s Cap','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150207','4','4','4','64721','8','1','232','80','0','Black Spire Sabatons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150208','4','4','4','64813','3','6','232','80','0','Pauldrons of the Souleater','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150209','4','4','3','64696','9','5','232','80','0','Essence of Suffering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150210','4','2','7','64767','21','1','232','80','3','Seethe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150211','4','4','0','43085','2','4','232','80','0','Arcane Loops of Anger','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150212','4','4','2','64550','10','8','232','80','0','Essence of Desire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150213','4','4','1','64565','20','7','232','80','0','Mord\'rethar Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150214','4','4','3','64650','1','5','232','80','0','Helm of the Spirit Shock','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150215','4','4','4','64721','8','1','232','80','0','Recovered Reliquary Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150227','4','2','15','64766','21','1','232','80','3','Surgeon\'s Needle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150228','4','4','0','34034','2','4','232','80','0','Barbed Ymirheim Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150229','4','4','4','64722','7','6','232','80','0','Legguards of the Frosty Depths','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150230','4','4','4','64833','9','1','232','80','0','Malykriss Vambraces','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150233','4','4','3','64698','3','5','232','80','0','Spurned Val\'kyr Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150234','4','4','4','64853','3','1','232','80','0','Shoulderplates of Frozen Blood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150235','4','4','0','67667','12','4','232','80','0','Ick\'s Rotting Thumb','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150240','4','4','1','64283','10','7','251','80','0','Dark Coven Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150241','4','4','1','64286','1','7','251','80','0','Dark Coven Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150242','4','4','1','64287','7','7','251','80','0','Dark Coven Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150243','4','4','1','64288','20','7','251','80','0','Dark Coven Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150244','4','4','1','64289','3','7','251','80','0','Dark Coven Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150255','7','4','0','31657','11','5','1','0','1','Dread Pirate Ring','1','Solo per trasmog!','1','100000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150259','4','4','0','64256','12','4','232','80','0','Nevermelting Ice Crystal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150260','4','4','0','64252','12','4','232','80','0','Ephemeral Snowflake','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150262','4','2','18','64765','26','2','232','80','0','Felglacier Bolter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150263','4','4','1','64952','6','7','232','80','0','Braid of Salt and Fire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150264','4','4','2','64552','9','8','232','80','0','Chewed Leather Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150265','4','4','3','64662','7','5','232','80','0','Blackened Ghoul Skin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150266','4','4','1','64608','20','7','232','80','0','Ancient Polar Bear Hide','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150267','4','2','1','64764','17','1','232','80','1','Tyrannical Beheader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150268','4','2','7','64763','13','1','232','80','3','Rimefang\'s Claw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150269','4','4','2','64553','7','8','232','80','0','Fleshwerk Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150270','4','4','3','64699','6','5','232','80','0','Belt of Rotted Fingernails','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150271','4','4','0','9833','11','5','232','80','0','Band of Stained Souls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150272','4','4','4','64836','5','1','232','80','0','Frost Wyrm Ribcage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150273','4','2','10','64762','17','2','232','80','2','Engraved Gargoyle Femur','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150275','4','4','1','64267','10','7','251','80','0','Bloodmage Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150276','4','4','1','64892','1','7','251','80','0','Bloodmage Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150277','4','4','1','64269','7','7','251','80','0','Bloodmage Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150278','4','4','1','64858','20','7','251','80','0','Bloodmage Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150279','4','4','1','64893','3','7','251','80','0','Bloodmage Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150283','4','4','3','64665','8','5','232','80','0','Mudslide Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150284','4','4','4','64723','10','1','232','80','0','Rusty Frozen Fingerguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150285','4','4','4','64854','5','1','232','80','0','Icebound Bronze Cuirass','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150286','4','4','1','64579','8','7','232','80','0','Prelate\'s Snowshoes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150287','3','4','0','63888','8','7','1','0','0','Boots of the Bay','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150290','4','2','0','64761','13','1','232','80','3','Falric\'s Wrist-Chopper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150291','4','2','19','64760','26','2','232','80','0','Soulsplinter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150292','4','4','1','64609','9','7','232','80','0','Bracer of Worn Molars','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150293','4','4','2','64558','3','8','232','80','0','Spaulders of Black Betrayal','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150294','4','4','4','64716','5','1','232','80','0','Chestpiece of High Treason','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150295','4','4','3','64701','8','5','232','80','0','Spiked Toestompers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150296','4','2','6','64758','17','1','232','80','1','Orca-Hunter\'s Harpoon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150297','4','4','3','64703','5','5','232','80','0','Frostsworn Bone Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150298','4','4','1','65155','1','7','232','80','0','Sightless Crown of Ulmaas','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150299','4','4','1','64581','10','7','232','80','0','Suspiciously Soft Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150300','4','4','2','64559','5','8','232','80','0','Choking Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150302','4','2','7','64756','13','1','232','80','3','Liar\'s Tongue','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150303','4','2','4','64755','13','2','232','80','3','Black Icicle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150304','4','4','3','64704','10','5','232','80','0','Hoarfrost Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150305','4','4','4','64857','8','1','232','80','0','Grinning Skull Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150306','4','4','0','26537','11','5','232','80','0','The Lady\'s Promise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150308','4','4','2','64560','8','8','232','80','0','Blighted Leather Footpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150309','4','4','0','64447','23','7','232','80','7','Shriveled Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150310','4','4','0','64197','2','4','232','80','0','Fossilized Ammonite Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150311','4','4','4','64950','1','6','232','80','0','Second Helm of the Executioner','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150312','4','4','2','64547','5','8','232','80','0','Chestguard of Broken Branches','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150313','4','4','0','44358','11','3','232','80','0','Oath of Empress Zoe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150314','4','4','1','64953','6','7','232','80','0','Strip of Remorse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150315','4','2','13','41398','21','1','232','80','7','Seven-Fingered Claws','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150318','4','4','2','64373','9','8','232','80','0','Ghostly Wristwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150319','4','2','15','64754','13','1','232','80','3','Unsharpened Ice Razor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150324','4','4','4','64999','3','6','251','80','0','Lightsworn Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150325','4','4','4','64633','7','6','251','80','0','Lightsworn Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150326','4','4','4','64630','1','4','251','80','0','Lightsworn Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150327','4','4','4','64627','10','1','251','80','0','Lightsworn Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150328','4','4','4','64637','5','1','251','80','0','Lightsworn Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150333','4','4','2','64421','9','8','264','80','0','Toskk\'s Maximized Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150339','4','4','0','64261','12','4','251','80','0','Sliver of Pure Ice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150340','4','4','0','43609','12','4','251','80','0','Muradin\'s Spyglass','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150341','4','4','0','64923','12','7','251','80','0','Unidentifiable Organ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150342','4','4','0','61413','12','4','251','80','0','Whispering Fanged Skull','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150343','4','4','0','61413','12','4','264','80','0','Whispering Fanged Skull','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150344','4','4','0','64923','12','7','264','80','0','Unidentifiable Organ','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150345','4','4','0','43609','12','4','264','80','0','Muradin\'s Spyglass','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150346','4','4','0','64261','12','4','264','80','0','Sliver of Pure Ice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150348','4','4','0','64245','12','4','277','80','0','Dislodged Foreign Object','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150349','4','4','0','64239','12','4','277','80','0','Corpse Tongue Coin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150351','4','4','0','64711','12','4','264','80','0','Tiny Abomination in a Jar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150352','4','4','0','64239','12','4','264','80','0','Corpse Tongue Coin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150353','4','4','0','64245','12','4','264','80','0','Dislodged Foreign Object','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150354','4','4','0','64237','12','4','264','80','0','Bauble of True Blood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150355','4','4','0','48008','12','4','264','80','0','Herkuml War Token','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150356','4','4','0','64264','12','4','264','80','0','Corroded Skeleton Key','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150357','4','4','0','64236','12','4','264','80','0','Maghia\'s Misguided Quill','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150358','4','4','0','64631','12','4','264','80','0','Purified Lunar Dust','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150359','4','4','0','64236','12','4','264','80','0','Althor\'s Abacus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150360','4','4','0','64247','12','4','264','80','0','Phylactery of the Nameless Lich','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150361','4','4','0','64251','12','4','264','80','0','Sindragosa\'s Flawless Fang','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150362','4','4','0','64244','12','4','264','80','0','Deathbringer\'s Will','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150363','4','4','0','64244','12','4','277','80','0','Deathbringer\'s Will','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150364','4','4','0','64251','12','4','277','80','0','Sindragosa\'s Flawless Fang','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150365','4','4','0','64247','12','4','277','80','0','Phylactery of the Nameless Lich','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150366','4','4','0','64236','12','4','277','80','0','Althor\'s Abacus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150375','4','4','0','63959','11','4','251','80','0','Ashen Band of Courage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150376','4','4','0','63958','11','4','251','80','0','Ashen Band of Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150377','4','4','0','63960','11','4','251','80','0','Ashen Band of Destruction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150378','4','4','0','63949','11','4','251','80','0','Ashen Band of Wisdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150384','4','4','0','63960','11','4','259','80','0','Ashen Band of Greater Destruction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150386','4','4','0','63949','11','4','259','80','0','Ashen Band of Greater Wisdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150387','4','4','0','63958','11','4','259','80','0','Ashen Band of Greater Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150388','4','4','0','63959','11','4','259','80','0','Ashen Band of Greater Courage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150391','4','4','1','64257','10','7','251','80','0','Crimson Acolyte Handwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150392','4','4','1','64258','1','7','251','80','0','Crimson Acolyte Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150393','4','4','1','64255','7','7','251','80','0','Crimson Acolyte Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150394','4','4','1','64167','20','7','251','80','0','Crimson Acolyte Raiments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150396','4','4','1','64183','3','7','251','80','0','Crimson Acolyte Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150397','4','4','0','63960','11','4','268','80','0','Ashen Band of Unmatched Destruction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150398','4','4','0','63960','11','4','277','80','0','Ashen Band of Endless Destruction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150399','4','4','0','63949','11','4','268','80','0','Ashen Band of Unmatched Wisdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150400','4','4','0','63949','11','4','277','80','0','Ashen Band of Endless Wisdom','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150401','4','4','0','63958','11','4','268','80','0','Ashen Band of Unmatched Vengeance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150402','4','4','0','63958','11','4','277','80','0','prova','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150403','4','4','0','63959','11','4','268','80','0','Ashen Band of Unmatched Courage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150404','4','4','0','63959','11','4','277','80','0','Ashen Band of Endless Courage','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150411','4','2','0','64472','13','1','264','80','1','Scourgeborne Waraxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150412','4','2','7','64535','13','1','264','80','3','Bloodvenom Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150413','4','4','3','64820','6','5','264','80','0','Nerub\'ar Stalker\'s Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150414','4','4','0','64173','11','5','264','80','0','Might of Blight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150415','4','2','1','64879','17','1','264','80','1','Bryntroll, the Bone Arbiter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150416','4','4','4','64664','8','1','264','80','0','Boots of the Funeral March','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150417','4','4','2','64474','9','8','264','80','0','Bracers of Eternal Dreaming','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150418','4','4','1','64242','20','7','264','80','0','Robe of the Waking Nightmare','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150421','4','4','0','64216','2','3','264','80','0','Sindragosa\'s Cruel Claw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150423','4','4','0','64441','23','3','264','80','0','Sundial of Eternal Dusk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150424','4','4','0','31498','11','3','264','80','0','Memory of Malygos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150425','4','2','6','64390','17','1','271','80','1','Oathbinder, Charge of the Ranger-General','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150426','4','2','15','64996','13','1','271','80','3','Heaven\'s Fall, Kryss of a Thousand Lies','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150427','4','2','7','64531','21','1','271','80','3','Bloodsurge, Kel\'Thuzad\'s Blade of Agony','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150428','4','2','4','64520','21','1','271','80','3','Royal Scepter of Terenas II','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150429','4','2','10','64334','17','2','271','80','2','Archus, Greatstaff of Antonidas','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150442','5','2','8','64030','17','1','76','60','1','Ashbringer (Extra Effects)','1','Mazza che culo che hai avuto..','1','10000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150444','4','2','3','64366','26','1','264','80','0','Rowan\'s Rifle of Silver Bullets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150447','4','4','0','64173','11','3','264','80','0','Harbinger\'s Bone Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150449','4','4','1','64163','3','7','264','80','0','Stiffened Corpse Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150450','4','4','3','65037','7','5','264','80','0','Leggings of Dubious Charms','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150451','4','4','4','64660','6','1','264','80','0','Belt of the Lonely Noble','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150452','4','4','0','64272','2','3','264','80','0','Wodin\'s Lucky Necklace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150453','4','4','0','64174','11','5','264','80','0','Ring of Rotting Sinew','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150454','4','4','8','58200','28','2','264','80','0','Idol of the Black Willow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150455','4','4','7','54524','28','2','264','80','0','Libram of Three Truths','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150456','4','4','8','39652','28','2','264','80','0','Idol of the Crying Moon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150457','4','4','8','64624','28','2','264','80','0','Idol of the Lunar Eclipse','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150458','4','4','9','64629','28','2','264','80','0','Bizuri\'s Totem of Shattered Ice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150459','4','4','10','64573','28','2','264','80','0','Sigil of the Hanged Man','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150460','4','4','7','64625','28','2','264','80','0','Libram of Blinding Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150461','4','4','7','64626','28','2','264','80','0','Libram of the Eternal Tower','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150462','4','4','10','64615','28','2','264','80','0','Sigil of the Bone Gryphon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150463','4','4','9','64628','28','2','264','80','0','Totem of the Avalanche','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150464','4','4','9','46045','28','2','264','80','0','Totem of the Surging Sea','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150466','4','4','1','64328','16','7','264','80','0','Sentinel\'s Winter Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150467','4','4','1','33096','16','7','264','80','0','Might of the Ocean Serpent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150468','4','4','1','59028','16','7','264','80','0','Drape of the Violet Tower','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150469','4','4','1','58977','16','7','264','80','0','Volde\'s Cloak of the Night Sky','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150470','4','4','1','64326','16','7','264','80','0','Recovered Scarlet Onslaught Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150472','4','2','19','64360','26','2','264','80','0','Nightmare Ender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150474','4','2','16','64454','25','1','264','80','0','Shrapnel Star','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150603','4','2','5','63834','17','1','277','80','1','Cryptmaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150604','4','4','0','64169','11','5','277','80','0','Band of the Bone Colossus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150605','4','4','3','65131','1','5','277','80','0','Snowserpent Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150606','4','4','4','64584','5','1','277','80','0','Gendarme\'s Cuirass','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150607','4','4','2','64437','8','8','277','80','0','Frostbitten Fur Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150608','4','2','15','64649','21','1','277','80','3','Frozen Bonespike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150609','4','4','0','64194','2','4','277','80','0','Bone Sentinel\'s Amulet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150610','4','4','0','64230','11','3','277','80','0','Marrowgar\'s Frigid Eye','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150611','4','4','4','64799','9','6','277','80','0','Bracers of Dark Reckoning','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150612','4','4','4','64588','7','1','277','80','0','Legguards of Lost Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150613','4','4','1','64349','6','7','277','80','0','Crushing Coldwraith Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150614','4','4','0','64176','11','3','277','80','0','Loop of the Endless Labyrinth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150615','4','4','2','64510','10','8','277','80','0','Handguards of Winter\'s Respite','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150616','4','4','6','65029','14','6','277','80','4','Bulwark of Smouldering Steel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150617','4','4','4','65000','3','1','277','80','0','Rusted Bonespike Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150618','4','4','0','64227','11','5','277','80','0','Frostbrood Sapphire Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150619','4','4','3','64827','10','5','277','80','0','Anub\'ar Stalker\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150620','4','4','4','64798','6','6','277','80','0','Coldwraith Links','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150621','4','2','15','64678','13','1','277','80','3','Lungbreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150622','4','4','0','64170','11','3','277','80','0','Devium\'s Eternally Cold Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150623','4','4','4','64674','7','6','277','80','0','Leggings of Dying Candles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150624','4','4','4','64588','7','6','277','80','0','Scourge Reaver\'s Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150625','4','4','4','64797','8','1','277','80','0','Grinning Skull Greatboots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150626','4','4','3','65175','1','5','277','80','0','Snowstorm Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150627','4','4','0','64211','2','4','277','80','0','Noose of Malachite','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150628','4','4','1','28951','16','7','277','80','0','Frostbinder\'s Shredded Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150629','4','4','1','64279','20','7','277','80','0','Robe of the Waking Nightmare','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150630','4','4','2','64484','9','8','277','80','0','Bracers of Eternal Dreaming','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150631','4','2','19','64360','26','2','277','80','0','Nightmare Ender','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150632','4','4','4','64672','8','1','277','80','0','Boots of the Funeral March','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150633','4','4','0','64216','2','3','277','80','0','Sindragosa\'s Cruel Claw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150635','4','4','0','64441','23','3','277','80','0','Sundial of Eternal Dusk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150636','4','4','0','31498','11','3','277','80','0','Memory of Malygos','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150638','4','2','2','64356','15','1','277','80','0','Zod\'s Repeating Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150639','4','4','4','64797','8','1','277','80','0','Blood-Soaked Saronite Stompers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150640','4','4','4','64587','1','1','277','80','0','Broken Ram Skull Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150641','4','2','15','64671','13','1','277','80','3','Heartpierce','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150642','4','4','0','64229','11','3','277','80','0','Juggernaut Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150643','4','4','1','64278','3','7','277','80','0','Shoulders of Mercy Killing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150644','4','4','0','33864','11','3','277','80','0','Ring of Maddening Whispers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150645','4','4','3','64832','7','5','277','80','0','Leggings of Northern Lights','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150646','4','4','2','64431','3','8','277','80','0','Cultist\'s Bloodsoaked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150647','4','4','0','64190','2','3','277','80','0','Ahn\'kahar Onyx Neckguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150648','4','2','10','64342','17','2','277','80','2','Nibelung','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150649','4','4','2','64507','20','8','277','80','0','Deathwhisper Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150650','4','4','4','64694','10','1','277','80','0','Fallen Lord\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150651','4','4','1','64361','9','7','277','80','0','The Lady\'s Brittle Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150652','4','4','3','65187','8','5','277','80','0','Necrophotic Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150653','4','4','1','64304','16','7','277','80','0','Shadowvault Slayer\'s Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150654','4','2','0','64472','13','1','277','80','1','Scourgeborne Waraxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150655','4','4','3','64831','9','5','277','80','0','Scourge Hunter\'s Vambraces','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150656','4','4','2','64435','5','8','277','80','0','Ikfirus\'s Sack of Wonder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150657','4','4','0','64169','11','5','277','80','0','Skeleton Lord\'s Circle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150658','4','4','0','64219','2','3','277','80','0','Amulet of the Silent Eulogy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150659','4','4','4','64800','9','1','277','80','0','Polar Bear Claw Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150660','4','4','4','64707','3','1','277','80','0','Boneguard Commander\'s Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150661','4','4','1','64224','1','7','277','80','0','Corp\'rethar Ceremonial Crown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150663','4','4','1','64359','10','7','277','80','0','Gunship Captain\'s Mittens','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150664','4','4','0','64170','11','3','277','80','0','Ring of Rapid Ascent','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150665','4','4','2','64489','8','8','277','80','0','Boots of Unnatural Growth','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150667','4','4','4','64702','6','1','277','80','0','Waistband of Righteous Fury','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150668','4','4','1','64300','16','7','277','80','0','Greatcloak of the Turned Champion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150670','4','4','2','64439','9','8','277','80','0','Toskk\'s Maximized Wristguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150671','4','4','3','65186','6','5','277','80','0','Belt of the Blood Nova','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150672','4','2','7','64536','13','1','277','80','3','Bloodvenom Blade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150673','4','4','3','64829','3','5','277','80','0','Dual-Bladed Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150674','4','4','4','64707','3','6','277','80','0','Raging Behemoth\'s Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150675','4','4','2','64434','10','8','277','80','0','Aldriana\'s Gloves of Secrecy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150676','4','2','15','64683','13','1','277','80','3','Rib Spreader','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150677','4','4','1','64307','16','7','277','80','0','Winding Sheet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150678','4','4','0','64225','11','5','277','80','0','Seal of Many Mouths','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150679','4','4','2','64503','1','8','277','80','0','Helm of the Elder Moon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150680','4','4','4','64695','5','1','277','80','0','Rot-Resistant Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150681','4','4','4','64584','5','1','277','80','0','Blightborne Warplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150682','4','4','0','64213','2','4','277','80','0','Bile-Encrusted Medallion','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150684','4','2','19','64357','26','2','277','80','0','Corpse-Impaling Spike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150685','4','2','4','64515','21','1','277','80','3','Trauma','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150686','4','4','1','64231','9','7','277','80','0','Death Surgeon\'s Sleeves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150687','4','4','3','65185','9','5','277','80','0','Bloodsunder\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150688','4','4','3','64837','6','5','277','80','0','Nerub\'ar Stalker\'s Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150689','4','4','3','64838','5','5','277','80','0','Carapace of Forgotten Kings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150690','4','4','4','64585','10','1','277','80','0','Fleshrending Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150691','4','4','4','64798','6','6','277','80','0','Belt of Broken Bones','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150692','4','2','13','64462','21','1','277','80','7','Black Bruise','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150693','4','4','0','64173','11','5','277','80','0','Might of Blight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150694','4','4','1','64291','7','7','277','80','0','Plaguebringer\'s Stained Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150695','4','2','10','64340','17','2','277','80','2','Distant Land','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150696','4','4','2','64502','7','8','277','80','0','Leather of Stitched Scourge Parts','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150697','4','4','2','64432','7','8','277','80','0','Gangrenous Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150698','4','4','3','65176','3','5','277','80','0','Horrific Flesh Epaulets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150699','4','4','1','64351','8','7','277','80','0','Plague Scientist\'s Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150700','4','4','0','64203','2','4','277','80','0','Holiday\'s Grace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150701','4','4','4','64692','1','-1','277','80','0','Faceplate of the Forgotten','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150702','4','4','1','64389','6','7','277','80','0','Lingering Illness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150703','4','4','3','65174','10','5','277','80','0','Unclean Surgical Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150704','4','2','7','64542','21','1','277','80','3','Rigormortis','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150705','4','4','2','64501','6','8','277','80','0','Professor\'s Bloodied Smock','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150706','4','4','0','64711','12','4','277','80','0','Tiny Abomination in a Jar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150707','4','4','2','64430','6','8','277','80','0','Astrylian\'s Sutured Cinch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150708','4','2','4','64511','13','1','277','80','3','Last Word','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150709','4','2','1','64879','17','1','277','80','1','Bryntroll, the Bone Arbiter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150710','4','2','13','64464','22','1','277','80','7','Keleseth\'s Seducer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150711','4','4','3','64835','8','5','277','80','0','Treads of the Wasteland','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150712','4','4','4','64587','1','4','277','80','0','Landsoul\'s Horned Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150713','4','4','2','64429','1','8','277','80','0','Geistlord\'s Punishment Sack','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150714','4','4','0','64174','11','3','277','80','0','Valanar\'s Other Signet Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150715','4','4','2','64444','3','8','277','80','0','Shoulders of Frost-Tipped Thorns','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150716','4','4','4','64585','10','1','277','80','0','Taldaram\'s Plated Fists','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150717','4','4','1','64860','20','7','277','80','0','Sanguine Silk Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150718','4','4','1','54674','16','7','277','80','0','Royal Crimson Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150719','4','4','0','64440','23','3','277','80','0','Shadow Silk Spindle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150720','4','4','0','64173','11','3','277','80','0','Incarnadine Band of Mending','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150721','4','4','4','64690','9','6','277','80','0','Crypt Keeper\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150722','4','4','1','64383','10','7','277','80','0','San\'layn Ritualist Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150723','4','4','3','65173','5','5','277','80','0','Mail of Crimson Coins','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150724','4','4','0','64222','2','3','277','80','0','Blood Queen\'s Crimson Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150725','4','2','10','64337','17','2','277','80','2','Dying Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150726','4','4','0','64237','12','4','277','80','0','Bauble of True Blood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150727','4','2','6','64554','17','1','277','80','1','Bloodfall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150728','4','4','0','64201','2','3','277','80','0','Lana\'thel\'s Chain of Flagellation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150729','4','4','6','65055','14','6','277','80','4','Icecrown Glacial Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150730','4','2','8','64397','17','1','284','80','1','Glorenzelg, High-Blade of the Silver Hand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150731','4','2','10','64334','17','2','284','80','2','Archus, Greatstaff of Antonidas','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150732','4','2','7','64530','21','1','284','80','3','Bloodsurge, Kel\'Thuzad\'s Blade of Agony','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150733','4','2','18','64371','26','2','284','80','0','Fal\'inrush, Defender of Quel\'thalas','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150734','4','2','4','64521','21','1','284','80','3','Royal Scepter of Terenas II','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150735','4','2','6','64554','17','1','284','80','1','Oathbinder, Charge of the Ranger-General','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150736','4','2','15','64997','13','1','284','80','3','Heaven\'s Fall, Kryss of a Thousand Lies','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150737','4','2','0','64480','13','1','284','80','3','Havoc\'s Call, Blade of Lordaeron Kings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150738','4','2','4','64313','13','1','284','80','3','Mithrios, Bronzebeard\'s Legacy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150741','3','4','1','64043','1','4','200','75','0','Vile Fumigator\'s Mask','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150759','4','2','0','64471','13','1','251','80','1','Bone Warden\'s Splitter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150760','4','2','4','64516','13','1','251','80','3','Bonebreaker Scepter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150761','4','2','8','64396','17','1','251','80','1','Citadel Enforcer\'s Claymore','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150762','4','4','3','64809','6','5','251','80','0','Linked Scourge Vertebrae','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150763','4','4','0','64199','2','4','251','80','0','Marrowgar\'s Scratching Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150764','4','4','1','61403','16','7','251','80','0','Shawl of Nerubian Silk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150765','4','4','1','64258','1','7','251','80','0','Crimson Acolyte Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150766','4','4','1','64257','10','7','251','80','0','Crimson Acolyte Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150767','4','4','1','64183','3','7','251','80','0','Crimson Acolyte Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150768','4','4','1','64167','20','7','251','80','0','Crimson Acolyte Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150769','4','4','1','64255','7','7','251','80','0','Crimson Acolyte Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150771','4','2','7','64544','21','1','251','80','3','Frost Needle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150772','4','4','4','64655','8','1','251','80','0','Ancient Skeletal Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150773','4','4','1','64374','6','7','251','80','0','Cord of the Patronizing Practitioner','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150774','4','4','3','65224','9','5','251','80','0','Coldwraith Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150775','4','4','4','64633','7','6','251','80','0','Corrupted Silverplate Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150776','4','2','2','64354','15','1','251','80','0','Njorndar Bone Bow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150777','4','4','3','64810','10','5','251','80','0','Handgrips of Frost and Sleet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150778','4','4','2','63688','6','8','251','80','0','Soulthief\'s Braided Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150779','4','4','4','64527','1','4','251','80','0','Deathspeaker Zealot\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150780','4','4','2','64408','5','8','251','80','0','Chestguard of the Frigid Noose','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150781','4','4','0','64433','23','3','251','80','0','Scourgelord\'s Baton','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150782','4','4','1','64295','10','7','251','80','0','Sister\'s Handshrouds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150783','4','4','2','64469','8','8','251','80','0','Boots of the Frozen Seed','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150784','4','4','3','65226','6','5','251','80','0','Deathspeaker Disciple\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150785','4','4','1','64376','9','7','251','80','0','Bracers of Dark Blessings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150786','4','4','4','64775','5','1','251','80','0','Ghoul Commander\'s Cuirass','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150787','4','2','0','64472','13','1','251','80','1','Frost Giant\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150788','4','4','4','64771','8','1','251','80','0','Bone Drake\'s Enameled Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150789','4','4','3','64818','9','5','251','80','0','Icecrown Rampart Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150790','4','4','0','64171','11','3','251','80','0','Abomination\'s Bloody Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150791','4','4','1','64325','16','7','251','80','0','Saronite Gargoyle Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150792','4','4','3','64804','3','5','251','80','0','Pauldrons of Lost Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150793','4','2','15','64675','21','1','251','80','3','Midnight Sun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150794','4','4','6','64409','14','6','251','80','4','Neverending Winter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150795','4','4','2','64470','6','8','251','80','0','Cord of Dark Suffering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150796','4','4','4','64772','9','6','251','80','0','Bracers of Pale Illumination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150797','4','4','3','65227','1','5','251','80','0','Ice-Reinforced Vrykul Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150798','4','2','1','64321','17','1','251','80','1','Ramaladni\'s Blade of Culling','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150799','4','4','2','64402','10','8','251','80','0','Scourge Stranglers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150800','4','4','3','64817','5','5','251','80','0','Hauberk of a Thousand Cuts','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150801','4','4','4','64523','5','1','251','80','0','Blade-Scored Carapace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150802','4','4','4','64772','9','6','251','80','0','Gargoyle Spit Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150803','4','4','0','64174','11','5','251','80','0','Saurfang\'s Cold-Forged Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150804','4','4','1','64296','8','7','251','80','0','Icecrown Spire Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150805','4','2','10','64341','17','2','251','80','2','Mag\'hari Chieftain\'s Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150806','4','4','2','64458','7','8','251','80','0','Leggings of Unrelenting Blood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150807','4','4','1','64258','1','7','251','80','0','Thaumaturge\'s Crackling Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150808','4','4','4','64568','7','1','251','80','0','Deathforged Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150809','4','4','0','64218','2','4','251','80','0','Soulcleave Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150810','4','2','4','64499','13','2','251','80','3','Gutbuster','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150811','4','4','4','64525','10','1','251','80','0','Festering Fingerguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150812','4','4','3','64816','8','5','251','80','0','Taldron\'s Long Neglected Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150815','4','2','7','64073','13','1','132','70','1','Shadowmourne Monster Offhand','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150819','4','4','2','64457','3','8','251','80','0','Lasherweave Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150820','4','4','2','64458','7','8','251','80','0','Lasherweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150821','4','4','2','64446','1','8','251','80','0','Lasherweave Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150822','4','4','2','64448','10','8','251','80','0','Lasherweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150823','4','4','2','64730','20','8','251','80','0','Lasherweave Vestment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150824','4','4','2','64457','3','8','251','80','0','Lasherweave Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150825','4','4','2','64458','7','8','251','80','0','Lasherweave Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150826','4','4','2','64446','1','8','251','80','0','Lasherweave Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150827','4','4','2','64448','10','8','251','80','0','Lasherweave Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150828','4','4','2','64456','20','8','251','80','0','Lasherweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150830','4','4','3','65228','5','5','251','80','0','Frost Witch\'s Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150831','4','4','3','65230','10','5','251','80','0','Frost Witch\'s Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150832','4','4','3','65227','1','5','251','80','0','Frost Witch\'s Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150833','4','4','3','65232','7','5','251','80','0','Frost Witch\'s War-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150834','4','4','3','65233','3','5','251','80','0','Frost Witch\'s Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150835','4','4','3','65228','5','5','251','80','0','Frost Witch\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150836','4','4','3','65230','10','5','251','80','0','Frost Witch\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150837','4','4','3','65227','1','5','251','80','0','Frost Witch\'s Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150838','4','4','3','65232','7','5','251','80','0','Frost Witch\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150839','4','4','3','65233','3','5','251','80','0','Frost Witch\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150841','4','4','3','65228','5','5','251','80','0','Frost Witch\'s Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150842','4','4','3','65230','10','5','251','80','0','Frost Witch\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150843','4','4','3','65227','1','5','251','80','0','Frost Witch\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150844','4','4','3','65232','7','5','251','80','0','Frost Witch\'s Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150845','4','4','3','65233','3','5','251','80','0','Frost Witch\'s Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150846','4','4','4','64618','3','6','251','80','0','Ymirjar Lord\'s Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150847','4','4','4','64568','7','6','251','80','0','Ymirjar Lord\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150848','4','4','4','64527','1','4','251','80','0','Ymirjar Lord\'s Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150849','4','4','4','64525','10','1','251','80','0','Ymirjar Lord\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150850','4','4','4','64523','5','1','251','80','0','Ymirjar Lord\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150852','4','4','0','53560','2','4','251','80','0','Precious\'s Putrid Collar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150853','4','4','4','64705','3','6','251','80','0','Scourgelord Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150854','4','4','4','64595','7','6','251','80','0','Scourgelord Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150855','4','4','4','64594','1','4','251','80','0','Scourgelord Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150856','4','4','4','64593','10','1','251','80','0','Scourgelord Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150857','4','4','4','64592','5','1','251','80','0','Scourgelord Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150858','4','4','2','63691','7','8','251','80','0','Plague-Soaked Leather Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150859','4','4','1','35430','16','7','251','80','0','Cloak of Many Skins','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150860','4','4','4','64999','3','6','251','80','0','Lightsworn Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150861','4','4','4','64633','7','6','251','80','0','Lightsworn Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150862','4','4','4','64630','1','4','251','80','0','Lightsworn Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150863','4','4','4','64627','10','1','251','80','0','Lightsworn Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150864','4','4','4','64637','5','1','251','80','0','Lightsworn Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150865','4','4','4','64999','3','6','251','80','0','Lightsworn Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150866','4','4','4','64633','7','6','251','80','0','Lightsworn Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150867','4','4','4','64630','1','4','251','80','0','Lightsworn Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150868','4','4','4','64627','10','1','251','80','0','Lightsworn Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150869','4','4','4','64637','5','1','251','80','0','Lightsworn Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150965','4','4','4','64569','5','1','264','80','0','Castle Breaker\'s Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150966','4','2','10','64330','17','2','251','80','2','Abracadaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150967','4','4','4','64627','10','1','251','80','0','Festergut\'s Gaseous Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150968','4','4','4','64569','5','1','264','80','0','Cataclysmic Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150969','4','4','4','64658','5','1','264','80','0','Chestplate of Unspoken Truths','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150970','4','4','3','64828','5','5','264','80','0','Longstrider\'s Vest','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150971','4','4','3','65039','5','5','264','80','0','Mail of the Geyser','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150972','4','4','2','64426','5','8','264','80','0','Shadow Seeker\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150973','4','4','2','64490','20','8','264','80','0','Vestments of Spruce and Fir','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150974','4','4','1','64350','20','7','264','80','0','Meteor Chaser\'s Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150975','4','4','1','64162','20','7','264','80','0','Ermine Coronation Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150976','4','4','4','64668','10','1','264','80','0','Gauntlets of Overexposure','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150977','4','4','4','64571','10','1','264','80','0','Gatecrasher\'s Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150978','4','4','4','64571','10','1','264','80','0','Gauntlets of the Kraken','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150979','4','4','3','64823','10','5','264','80','0','Logsplitters','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150980','4','4','3','65032','10','5','264','80','0','Blizzard Keeper\'s Mitts','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150981','4','4','2','64491','10','8','264','80','0','Gloves of the Great Horned Owl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150982','4','4','2','64424','10','8','264','80','0','Cat Burglar\'s Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150983','4','4','1','65002','10','7','264','80','0','Gloves of False Gestures','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150984','4','4','1','64214','10','7','264','80','0','Gloves of Ambivalence','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150985','4','4','2','64455','9','8','251','80','0','Wrists of Septic Shock','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150986','4','4','0','64176','11','3','251','80','0','Signet of Putrefaction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150987','4','4','4','64784','6','6','264','80','0','Malevolent Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150988','4','4','1','64183','3','7','251','80','0','Bloodstained Surgeon\'s Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150989','4','4','4','64660','6','1','264','80','0','Lich Killer\'s Lanyard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150990','4','4','1','64269','7','7','251','80','0','Kilt of Untreated Wounds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150991','4','4','4','64784','6','6','264','80','0','Verdigris Chain Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150992','4','4','3','65035','6','5','264','80','0','Waistband of Despair','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150993','4','4','3','64820','6','5','264','80','0','Band of the Night Raven','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150994','4','4','2','64492','6','8','264','80','0','Belt of Petrified Ivy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150995','4','4','2','64635','6','8','264','80','0','Vengeful Noose','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150996','4','4','1','64347','6','7','264','80','0','Belt of Omission','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150997','4','4','1','64208','6','7','264','80','0','Circle of Ossus','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150998','4','2','10','64336','17','2','251','80','2','Shaft of Glacial Ice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('150999','4','2','16','48157','25','1','251','80','0','Gluth\'s Fetching Knife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151000','4','4','4','64774','6','6','251','80','0','Flesh-Shaper\'s Gurney Strap','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151001','4','4','0','64229','11','5','251','80','0','Rotface\'s Rupturing Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151002','4','4','3','65130','1','5','251','80','0','Taldron\'s Short-Sighted Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151003','4','2','13','64466','21','1','251','80','7','Abomination Knuckles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151004','4','2','4','64506','21','1','251','80','3','Lockjaw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151005','4','4','1','64369','10','7','251','80','0','Gloves of Broken Fingers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151006','4','4','3','65259','8','5','251','80','0','Shuffling Shoes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151007','4','4','1','64294','9','7','251','80','0','Ether-Soaked Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151008','4','4','0','64203','2','4','251','80','0','Choker of Filthy Diamonds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151009','4','4','2','64442','20','8','251','80','0','Chestguard of the Failed Experiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151010','4','2','7','64537','13','1','251','80','3','The Facelifter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151011','4','2','15','64656','13','1','251','80','3','Flesh-Carving Scalpel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151012','4','4','0','64213','2','3','251','80','0','Infected Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151013','4','4','2','63690','1','8','251','80','0','Discarded Bag of Entrails','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151014','4','4','4','64618','3','6','251','80','0','Scalpel-Sharpening Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151015','4','4','3','64804','3','5','251','80','0','Shoulderpads of the Morbid Ritual','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151016','4','4','0','64205','2','4','251','80','0','Pendant of Split Veins','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151017','4','4','1','64348','6','7','251','80','0','Cauterized Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151018','4','4','4','64637','5','1','251','80','0','Chestplate of Septic Stitches','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151019','4','4','3','65231','7','5','251','80','0','Rippling Flesh Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151020','4','4','1','64893','3','7','251','80','0','Shoulders of Ruinous Senility','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151021','4','2','7','64540','13','1','251','80','3','Soulbreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151022','4','2','6','64382','17','1','251','80','2','Hersir\'s Greatspear','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151023','4','4','2','64399','8','8','251','80','0','Taldaram\'s Soft Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151024','4','4','0','64230','11','5','251','80','0','Thrice Fanged Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151025','4','4','4','64568','7','6','251','80','0','Battle-Maiden\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151125','4','4','4','64706','3','6','264','80','0','Sanctified Scourgelord Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151126','4','4','4','64603','7','6','264','80','0','Sanctified Scourgelord Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151127','4','4','4','64601','1','4','264','80','0','Sanctified Scourgelord Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151128','4','4','4','64602','10','1','264','80','0','Sanctified Scourgelord Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151129','4','4','4','64600','5','1','264','80','0','Sanctified Scourgelord Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151130','4','4','4','64706','3','6','264','80','0','Sanctified Scourgelord Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151131','4','4','4','64603','7','6','264','80','0','Sanctified Scourgelord Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151132','4','4','4','64602','10','1','264','80','0','Sanctified Scourgelord Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151133','4','4','4','64601','1','4','264','80','0','Sanctified Scourgelord Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151134','4','4','4','64600','5','1','264','80','0','Sanctified Scourgelord Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151135','4','4','2','64496','3','8','264','80','0','Sanctified Lasherweave Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151136','4','4','2','64486','7','8','264','80','0','Sanctified Lasherweave Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151137','4','4','2','64488','1','8','264','80','0','Sanctified Lasherweave Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151138','4','4','2','64494','10','8','264','80','0','Sanctified Lasherweave Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151139','4','4','2','64732','20','8','264','80','0','Sanctified Lasherweave Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151140','4','4','2','64496','3','8','264','80','0','Sanctified Lasherweave Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151141','4','4','2','64490','20','8','264','80','0','Sanctified Lasherweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151142','4','4','2','64486','7','8','264','80','0','Sanctified Lasherweave Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151143','4','4','2','64488','1','8','264','80','0','Sanctified Lasherweave Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151144','4','4','2','64494','10','8','264','80','0','Sanctified Lasherweave Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151145','4','4','2','64732','20','8','264','80','0','Sanctified Lasherweave Vestment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151146','4','4','2','64486','7','8','264','80','0','Sanctified Lasherweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151147','4','4','2','64496','3','8','264','80','0','Sanctified Lasherweave Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151148','4','4','2','64494','10','8','264','80','0','Sanctified Lasherweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151149','4','4','2','64488','1','8','264','80','0','Sanctified Lasherweave Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151150','4','4','3','64828','5','5','264','80','0','Sanctified Ahn\'Kahar Blood Hunter\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151151','4','4','3','64819','3','5','264','80','0','Sanctified Ahn\'Kahar Blood Hunter\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151152','4','4','3','64821','7','5','264','80','0','Sanctified Ahn\'Kahar Blood Hunter\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151153','4','4','3','65129','1','5','264','80','0','Sanctified Ahn\'Kahar Blood Hunter\'s Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151154','4','4','3','64823','10','5','264','80','0','Sanctified Ahn\'Kahar Blood Hunter\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151155','4','4','1','64895','3','7','264','80','0','Sanctified Bloodmage Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151156','4','4','1','64242','20','7','264','80','0','Sanctified Bloodmage Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151157','4','4','1','64241','7','7','264','80','0','Sanctified Bloodmage Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151158','4','4','1','65647','1','7','264','80','0','Sanctified Bloodmage Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151159','4','4','1','64235','10','7','264','80','0','Sanctified Bloodmage Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151160','4','4','4','64998','3','6','264','80','0','Sanctified Lightsworn Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151161','4','4','4','64667','7','6','264','80','0','Sanctified Lightsworn Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151162','4','4','4','64688','1','4','264','80','0','Sanctified Lightsworn Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151163','4','4','4','64668','10','1','264','80','0','Sanctified Lightsworn Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151164','4','4','4','64658','5','1','264','80','0','Sanctified Lightsworn Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151165','4','4','4','64658','5','1','264','80','0','Sanctified Lightsworn Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151166','4','4','4','64998','3','6','264','80','0','Sanctified Lightsworn Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151167','4','4','4','64688','1','4','264','80','0','Sanctified Lightsworn Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151168','4','4','4','64667','7','6','264','80','0','Sanctified Lightsworn Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151169','4','4','4','64668','10','1','264','80','0','Sanctified Lightsworn Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151170','4','4','4','64998','3','6','264','80','0','Sanctified Lightsworn Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151171','4','4','4','64667','7','6','264','80','0','Sanctified Lightsworn Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151172','4','4','4','64668','10','1','264','80','0','Sanctified Lightsworn Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151173','4','4','4','64688','1','4','264','80','0','Sanctified Lightsworn Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151174','4','4','4','64658','5','1','264','80','0','Sanctified Lightsworn Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151175','4','4','1','64163','3','7','264','80','0','Sanctified Crimson Acolyte Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151176','4','4','1','64162','20','7','264','80','0','Sanctified Crimson Acolyte Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151177','4','4','1','64212','7','7','264','80','0','Sanctified Crimson Acolyte Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151178','4','4','1','64160','1','7','264','80','0','Sanctified Crimson Acolyte Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151179','4','4','1','64159','10','7','264','80','0','Sanctified Crimson Acolyte Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151180','4','4','1','64162','20','7','264','80','0','Sanctified Crimson Acolyte Raiments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151181','4','4','1','64212','7','7','264','80','0','Sanctified Crimson Acolyte Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151182','4','4','1','64163','3','7','264','80','0','Sanctified Crimson Acolyte Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151183','4','4','1','64159','10','7','264','80','0','Sanctified Crimson Acolyte Handwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151184','4','4','1','64160','1','7','264','80','0','Sanctified Crimson Acolyte Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151185','4','4','2','64398','3','8','264','80','0','Sanctified Shadowblade Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151186','4','4','2','64416','7','8','264','80','0','Sanctified Shadowblade Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151187','4','4','2','64427','1','8','264','80','0','Sanctified Shadowblade Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151188','4','4','2','64943','10','8','264','80','0','Sanctified Shadowblade Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151189','4','4','2','64426','5','8','264','80','0','Sanctified Shadowblade Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151190','4','4','3','65039','5','5','264','80','0','Sanctified Frost Witch\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151191','4','4','3','65032','10','5','264','80','0','Sanctified Frost Witch\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151192','4','4','3','65040','1','5','264','80','0','Sanctified Frost Witch\'s Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151193','4','4','3','65038','7','5','264','80','0','Sanctified Frost Witch\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151194','4','4','3','65033','3','5','264','80','0','Sanctified Frost Witch\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151195','4','4','3','65039','5','5','264','80','0','Sanctified Frost Witch\'s Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151196','4','4','3','65032','10','5','264','80','0','Sanctified Frost Witch\'s Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151197','4','4','3','65040','1','5','264','80','0','Sanctified Frost Witch\'s Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151198','4','4','3','65038','7','5','264','80','0','Sanctified Frost Witch\'s War-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151199','4','4','3','65033','3','5','264','80','0','Sanctified Frost Witch\'s Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151200','4','4','3','65039','5','5','264','80','0','Sanctified Frost Witch\'s Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151201','4','4','3','65032','10','5','264','80','0','Sanctified Frost Witch\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151202','4','4','3','65040','1','5','264','80','0','Sanctified Frost Witch\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151203','4','4','3','65038','7','5','264','80','0','Sanctified Frost Witch\'s Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151204','4','4','3','65033','3','5','264','80','0','Sanctified Frost Witch\'s Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151205','4','4','1','64277','3','7','264','80','0','Sanctified Dark Coven Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151206','4','4','1','64276','20','7','264','80','0','Sanctified Dark Coven Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151207','4','4','1','64290','7','7','264','80','0','Sanctified Dark Coven Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151208','4','4','1','64274','1','7','264','80','0','Sanctified Dark Coven Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151209','4','4','1','64284','10','7','264','80','0','Sanctified Dark Coven Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151210','4','4','4','64622','3','6','264','80','0','Sanctified Ymirjar Lord\'s Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151211','4','4','4','64572','7','6','264','80','0','Sanctified Ymirjar Lord\'s Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151212','4','4','4','64570','1','4','264','80','0','Sanctified Ymirjar Lord\'s Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151213','4','4','4','64571','10','1','264','80','0','Sanctified Ymirjar Lord\'s Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151214','4','4','4','64569','5','1','264','80','0','Sanctified Ymirjar Lord\'s Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151215','4','4','4','64622','3','6','264','80','0','Sanctified Ymirjar Lord\'s Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151216','4','4','4','64572','7','6','264','80','0','Sanctified Ymirjar Lord\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151217','4','4','4','64571','10','1','264','80','0','Sanctified Ymirjar Lord\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151218','4','4','4','64570','1','4','264','80','0','Sanctified Ymirjar Lord\'s Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151219','4','4','4','64569','5','1','264','80','0','Sanctified Ymirjar Lord\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151220','4','4','4','64580','5','1','277','80','0','Sanctified Ymirjar Lord\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151221','4','4','4','64577','1','4','277','80','0','Sanctified Ymirjar Lord\'s Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151222','4','4','4','64578','10','1','277','80','0','Sanctified Ymirjar Lord\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151223','4','4','4','64576','7','6','277','80','0','Sanctified Ymirjar Lord\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151224','4','4','4','64623','3','6','277','80','0','Sanctified Ymirjar Lord\'s Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151225','4','4','4','64580','5','1','277','80','0','Sanctified Ymirjar Lord\'s Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151226','4','4','4','64578','10','1','277','80','0','Sanctified Ymirjar Lord\'s Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151227','4','4','4','64577','1','4','277','80','0','Sanctified Ymirjar Lord\'s Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151228','4','4','4','64576','7','6','277','80','0','Sanctified Ymirjar Lord\'s Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151229','4','4','4','64623','3','6','277','80','0','Sanctified Ymirjar Lord\'s Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151230','4','4','1','64285','10','7','277','80','0','Sanctified Dark Coven Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151231','4','4','1','64281','1','7','277','80','0','Sanctified Dark Coven Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151232','4','4','1','64291','7','7','277','80','0','Sanctified Dark Coven Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151233','4','4','1','64279','20','7','277','80','0','Sanctified Dark Coven Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151234','4','4','1','64278','3','7','277','80','0','Sanctified Dark Coven Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151235','4','4','3','65176','3','5','277','80','0','Sanctified Frost Witch\'s Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151236','4','4','3','65172','7','5','277','80','0','Sanctified Frost Witch\'s Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151237','4','4','3','65175','1','5','277','80','0','Sanctified Frost Witch\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151238','4','4','3','65174','10','5','277','80','0','Sanctified Frost Witch\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151239','4','4','3','65173','5','5','277','80','0','Sanctified Frost Witch\'s Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151240','4','4','3','65176','3','5','277','80','0','Sanctified Frost Witch\'s Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151241','4','4','3','65172','7','5','277','80','0','Sanctified Frost Witch\'s War-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151242','4','4','3','65175','1','5','277','80','0','Sanctified Frost Witch\'s Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151243','4','4','3','65174','10','5','277','80','0','Sanctified Frost Witch\'s Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151244','4','4','3','65173','5','5','277','80','0','Sanctified Frost Witch\'s Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151245','4','4','3','65176','3','5','277','80','0','Sanctified Frost Witch\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151246','4','4','3','65172','7','5','277','80','0','Sanctified Frost Witch\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151247','4','4','3','65175','1','5','277','80','0','Sanctified Frost Witch\'s Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151248','4','4','3','65174','10','5','277','80','0','Sanctified Frost Witch\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151249','4','4','3','65173','5','5','277','80','0','Sanctified Frost Witch\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151250','4','4','2','64435','5','8','277','80','0','Sanctified Shadowblade Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151251','4','4','2','64944','10','8','277','80','0','Sanctified Shadowblade Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151252','4','4','2','64429','1','8','277','80','0','Sanctified Shadowblade Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151253','4','4','2','64432','7','8','277','80','0','Sanctified Shadowblade Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151254','4','4','2','64431','3','8','277','80','0','Sanctified Shadowblade Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151255','4','4','1','64224','1','7','277','80','0','Sanctified Crimson Acolyte Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151256','4','4','1','64386','10','7','277','80','0','Sanctified Crimson Acolyte Handwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151257','4','4','1','64221','3','7','277','80','0','Sanctified Crimson Acolyte Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151258','4','4','1','64385','7','7','277','80','0','Sanctified Crimson Acolyte Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151259','4','4','1','64860','20','7','277','80','0','Sanctified Crimson Acolyte Raiments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151260','4','4','1','64386','10','7','277','80','0','Sanctified Crimson Acolyte Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151261','4','4','1','64224','1','7','277','80','0','Sanctified Crimson Acolyte Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151262','4','4','1','64385','7','7','277','80','0','Sanctified Crimson Acolyte Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151263','4','4','1','64860','20','7','277','80','0','Sanctified Crimson Acolyte Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151264','4','4','1','64221','3','7','277','80','0','Sanctified Crimson Acolyte Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151265','4','4','4','64695','5','1','277','80','0','Sanctified Lightsworn Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151266','4','4','4','64692','1','4','277','80','0','Sanctified Lightsworn Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151267','4','4','4','64694','10','1','277','80','0','Sanctified Lightsworn Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151268','4','4','4','64697','7','6','277','80','0','Sanctified Lightsworn Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151269','4','4','4','65000','3','6','277','80','0','Sanctified Lightsworn Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151270','4','4','4','64694','10','1','277','80','0','Sanctified Lightsworn Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151271','4','4','4','64674','7','6','277','80','0','Sanctified Lightsworn Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151272','4','4','4','64692','1','4','277','80','0','Sanctified Lightsworn Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151273','4','4','4','65000','3','6','277','80','0','Sanctified Lightsworn Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151274','4','4','4','64695','5','1','277','80','0','Sanctified Lightsworn Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151275','4','4','4','64695','5','1','277','80','0','Sanctified Lightsworn Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151276','4','4','4','64694','10','1','277','80','0','Sanctified Lightsworn Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151277','4','4','4','64692','1','4','277','80','0','Sanctified Lightsworn Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151278','4','4','4','64674','7','6','277','80','0','Sanctified Lightsworn Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151279','4','4','4','65000','3','6','277','80','0','Sanctified Lightsworn Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151280','4','4','1','64250','10','7','277','80','0','Sanctified Bloodmage Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151281','4','4','1','64897','1','7','277','80','0','Sanctified Bloodmage Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151282','4','4','1','64246','7','7','277','80','0','Sanctified Bloodmage Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151283','4','4','1','64859','20','7','277','80','0','Sanctified Bloodmage Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151284','4','4','1','64896','3','7','277','80','0','Sanctified Bloodmage Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151285','4','4','3','64827','10','5','277','80','0','Sanctified Ahn\'Kahar Blood Hunter\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151286','4','4','3','65131','1','5','277','80','0','Sanctified Ahn\'Kahar Blood Hunter\'s Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151287','4','4','3','64832','7','5','277','80','0','Sanctified Ahn\'Kahar Blood Hunter\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151288','4','4','3','64829','3','5','277','80','0','Sanctified Ahn\'Kahar Blood Hunter\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151289','4','4','3','64840','5','5','277','80','0','Sanctified Ahn\'Kahar Blood Hunter\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151290','4','4','2','64503','1','8','277','80','0','Sanctified Lasherweave Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151291','4','4','2','64504','10','8','277','80','0','Sanctified Lasherweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151292','4','4','2','64444','3','8','277','80','0','Sanctified Lasherweave Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151293','4','4','2','64502','7','8','277','80','0','Sanctified Lasherweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151294','4','4','2','64734','20','8','277','80','0','Sanctified Lasherweave Vestment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151295','4','4','2','64504','10','8','277','80','0','Sanctified Lasherweave Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151296','4','4','2','64503','1','8','277','80','0','Sanctified Lasherweave Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151297','4','4','2','64502','7','8','277','80','0','Sanctified Lasherweave Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151298','4','4','2','64507','20','8','277','80','0','Sanctified Lasherweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151299','4','4','2','64444','3','8','277','80','0','Sanctified Lasherweave Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151300','4','4','2','64734','20','8','277','80','0','Sanctified Lasherweave Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151301','4','4','2','64504','10','8','277','80','0','Sanctified Lasherweave Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151302','4','4','2','64503','1','8','277','80','0','Sanctified Lasherweave Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151303','4','4','2','64502','7','8','277','80','0','Sanctified Lasherweave Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151304','4','4','2','64444','3','8','277','80','0','Sanctified Lasherweave Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151305','4','4','4','64584','5','1','277','80','0','Sanctified Scourgelord Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151306','4','4','4','64587','1','4','277','80','0','Sanctified Scourgelord Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151307','4','4','4','64585','10','1','277','80','0','Sanctified Scourgelord Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151308','4','4','4','64588','7','6','277','80','0','Sanctified Scourgelord Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151309','4','4','4','64707','3','6','277','80','0','Sanctified Scourgelord Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151310','4','4','4','64584','5','1','277','80','0','Sanctified Scourgelord Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151311','4','4','4','64585','10','1','277','80','0','Sanctified Scourgelord Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151312','4','4','4','64587','1','4','277','80','0','Sanctified Scourgelord Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151313','4','4','4','64588','7','6','277','80','0','Sanctified Scourgelord Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151314','4','4','4','64707','3','6','277','80','0','Sanctified Scourgelord Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151325','4','4','3','64809','6','5','251','80','0','Blood-Drinker\'s Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151326','4','2','19','64995','26','2','251','80','0','Wand of Ruby Claret','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151327','4','4','1','65289','6','7','264','80','0','Wrathful Gladiator\'s Cord of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151328','4','4','1','65290','8','7','264','80','0','Wrathful Gladiator\'s Treads of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151329','4','4','1','65296','9','7','264','80','0','Wrathful Gladiator\'s Cuffs of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151330','4','4','1','61562','16','5','264','80','0','Wrathful Gladiator\'s Cloak of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151331','4','4','0','39162','2','5','264','80','0','Wrathful Gladiator\'s Pendant of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151332','4','4','1','61563','16','5','264','80','0','Wrathful Gladiator\'s Cloak of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151333','4','4','0','39162','2','5','264','80','0','Wrathful Gladiator\'s Pendant of Subjugation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151334','4','4','1','61648','16','5','264','80','0','Wrathful Gladiator\'s Cloak of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151335','4','4','0','39162','2','5','264','80','0','Wrathful Gladiator\'s Pendant of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151336','4','4','0','39129','11','5','264','80','0','Wrathful Gladiator\'s Band of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151337','4','4','1','65443','6','7','264','80','0','Wrathful Gladiator\'s Cord of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151338','4','4','1','65291','8','7','264','80','0','Wrathful Gladiator\'s Treads of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151339','4','4','1','65296','9','7','264','80','0','Wrathful Gladiator\'s Cuffs of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151340','4','4','2','65179','6','8','264','80','0','Wrathful Gladiator\'s Belt of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151341','4','4','2','65182','8','8','264','80','0','Wrathful Gladiator\'s Boots of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151342','4','4','2','65178','9','8','264','80','0','Wrathful Gladiator\'s Armwraps of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151343','4','4','2','65179','6','8','264','80','0','Wrathful Gladiator\'s Belt of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151344','4','4','2','65182','8','8','264','80','0','Wrathful Gladiator\'s Boots of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151345','4','4','2','65178','9','8','264','80','0','Wrathful Gladiator\'s Armwraps of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151346','4','4','1','61563','16','5','264','80','0','Wrathful Gladiator\'s Cloak of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151347','4','4','0','39162','2','5','264','80','0','Wrathful Gladiator\'s Pendant of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151348','4','4','1','61562','16','5','264','80','0','Wrathful Gladiator\'s Cloak of Deliverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151349','4','4','0','39162','2','5','264','80','0','Wrathful Gladiator\'s Pendant of Deliverance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151350','4','4','3','65459','6','5','264','80','0','Wrathful Gladiator\'s Waistguard of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151351','4','4','3','65461','8','5','264','80','0','Wrathful Gladiator\'s Sabatons of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151352','4','4','3','65458','9','5','264','80','0','Wrathful Gladiator\'s Wristguards of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151353','4','4','0','39162','2','5','264','80','0','Wrathful Gladiator\'s Pendant of Sundering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151354','4','4','1','61564','16','5','264','80','0','Wrathful Gladiator\'s Cloak of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151355','4','4','0','39162','2','5','264','80','0','Wrathful Gladiator\'s Pendant of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151356','4','4','1','42615','16','5','264','80','0','Wrathful Gladiator\'s Cloak of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151357','4','4','0','39162','2','5','264','80','0','Wrathful Gladiator\'s Pendant of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151358','4','4','0','39129','11','5','264','80','0','Wrathful Gladiator\'s Band of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151359','4','4','4','65239','6','6','264','80','0','Wrathful Gladiator\'s Girdle of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151360','4','4','4','65241','8','6','264','80','0','Wrathful Gladiator\'s Greaves of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151361','4','4','4','65244','9','6','264','80','0','Wrathful Gladiator\'s Bracers of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151362','4','4','4','65240','6','6','264','80','0','Wrathful Gladiator\'s Girdle of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151363','4','4','4','65242','8','6','264','80','0','Wrathful Gladiator\'s Greaves of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151364','4','4','4','65245','9','6','264','80','0','Wrathful Gladiator\'s Bracers of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151365','4','4','1','65443','6','7','264','80','0','Wrathful Gladiator\'s Cord of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151366','4','4','1','65444','8','7','264','80','0','Wrathful Gladiator\'s Treads of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151367','4','4','1','65445','9','7','264','80','0','Wrathful Gladiator\'s Cuffs of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151368','4','4','2','65200','6','8','264','80','0','Wrathful Gladiator\'s Belt of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151369','4','4','2','65201','8','8','264','80','0','Wrathful Gladiator\'s Boots of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151370','4','4','2','65199','9','8','264','80','0','Wrathful Gladiator\'s Armwraps of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151371','4','4','3','65236','6','5','264','80','0','Wrathful Gladiator\'s Waistguard of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151372','4','4','3','65237','8','5','264','80','0','Wrathful Gladiator\'s Sabatons of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151373','4','4','3','65238','9','5','264','80','0','Wrathful Gladiator\'s Wristguards of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151374','4','4','3','65236','6','5','264','80','0','Wrathful Gladiator\'s Waistguard of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151375','4','4','3','65237','8','5','264','80','0','Wrathful Gladiator\'s Sabatons of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151376','4','4','3','65238','9','5','264','80','0','Wrathful Gladiator\'s Wristguards of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151377','4','4','0','37840','12','4','264','80','0','Medallion of the Alliance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151378','4','4','0','37841','12','4','264','80','0','Medallion of the Horde','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151379','4','4','1','64167','20','7','251','80','0','Bloodsoul Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151380','4','4','1','64372','8','7','251','80','0','Pale Corpse Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151381','4','4','0','64225','11','3','251','80','0','Cerise Coiled Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151382','4','4','1','64323','16','7','251','80','0','Heartsick Mender\'s Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151383','4','4','4','64618','3','1','251','80','0','Spaulders of the Blood Princes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151384','4','2','15','64654','13','1','251','80','3','Bloodsipper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151385','4','2','3','64363','26','1','251','80','0','Stakethrower','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151386','4','4','4','64780','10','1','251','80','0','Throatrender Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151387','4','4','0','44357','11','5','251','80','0','Seal of the Twilight Queen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151388','4','2','1','65309','17','1','264','80','1','Wrathful Gladiator\'s Decapitator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151389','4','2','1','65310','17','1','277','80','1','Wrathful Gladiator\'s Sunderer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151390','4','2','5','65314','17','1','264','80','1','Wrathful Gladiator\'s Bonegrinder','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151391','4','2','5','65312','17','1','277','80','1','Wrathful Gladiator\'s Crusher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151392','4','2','8','65315','17','1','264','80','1','Wrathful Gladiator\'s Greatsword','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151393','4','2','8','65316','17','1','277','80','1','Wrathful Gladiator\'s Claymore','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151394','4','2','2','65318','15','2','264','80','0','Wrathful Gladiator\'s Longbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151395','4','2','2','65317','15','2','277','80','0','Wrathful Gladiator\'s Recurve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151396','4','4','0','39505','23','3','270','80','7','Wrathful Gladiator\'s Endgame','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151397','4','2','15','65320','21','1','264','80','3','Wrathful Gladiator\'s Spellblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151398','4','2','15','65325','21','1','277','80','3','Wrathful Gladiator\'s Blade of Celerity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151399','4','2','15','65323','21','1','277','80','3','Wrathful Gladiator\'s Mageblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151400','4','2','10','65332','17','2','264','80','2','Wrathful Gladiator\'s War Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151401','4','2','10','65331','17','2','277','80','2','Wrathful Gladiator\'s Combat Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151402','4','2','10','65333','17','2','264','80','2','Wrathful Gladiator\'s Focus Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151403','4','2','10','65334','17','2','277','80','2','Wrathful Gladiator\'s Acute Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151404','4','2','10','65332','17','2','264','80','2','Wrathful Gladiator\'s Battle Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151405','4','2','10','65331','17','2','277','80','2','Wrathful Gladiator\'s Skirmish Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151406','4','2','15','65324','21','1','264','80','3','Wrathful Gladiator\'s Blade of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151407','4','4','0','39505','23','3','270','80','7','Wrathful Gladiator\'s Compendium','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151408','4','4','0','39505','23','3','270','80','7','Wrathful Gladiator\'s Grimoire','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151409','4','4','0','39505','23','3','270','80','7','Wrathful Gladiator\'s Reprieve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151410','4','2','19','65366','26','2','264','80','0','Wrathful Gladiator\'s Touch of Defeat','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151411','4','2','18','65335','26','2','264','80','0','Wrathful Gladiator\'s Heavy Crossbow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151412','4','2','18','65337','26','2','277','80','0','Wrathful Gladiator\'s Repeater','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151413','4','4','4','65246','5','6','270','80','0','Wrathful Gladiator\'s Dreadplate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151414','4','4','4','65247','10','6','270','80','0','Wrathful Gladiator\'s Dreadplate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151415','4','4','4','65248','1','6','270','80','0','Wrathful Gladiator\'s Dreadplate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151416','4','4','4','65249','7','6','270','80','0','Wrathful Gladiator\'s Dreadplate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151417','4','4','10','51913','28','2','270','80','0','Wrathful Gladiator\'s Sigil of Strife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151418','4','4','4','65579','3','6','270','80','0','Wrathful Gladiator\'s Dreadplate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151419','4','4','2','65162','20','8','270','80','0','Wrathful Gladiator\'s Kodohide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151420','4','4','2','65152','10','8','270','80','0','Wrathful Gladiator\'s Kodohide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151421','4','4','2','65154','1','8','270','80','0','Wrathful Gladiator\'s Kodohide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151422','4','4','2','65157','7','8','270','80','0','Wrathful Gladiator\'s Kodohide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151423','4','4','8','9659','28','2','270','80','0','Wrathful Gladiator\'s Idol of Tenacity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151424','4','4','2','65649','3','8','270','80','0','Wrathful Gladiator\'s Kodohide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151425','4','4','2','65162','20','8','270','80','0','Wrathful Gladiator\'s Dragonhide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151426','4','4','2','65152','10','8','270','80','0','Wrathful Gladiator\'s Dragonhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151427','4','4','2','65154','1','8','270','80','0','Wrathful Gladiator\'s Dragonhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151428','4','4','2','65157','7','8','270','80','0','Wrathful Gladiator\'s Dragonhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151429','4','4','8','34953','28','2','270','80','0','Wrathful Gladiator\'s Idol of Resolve','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151430','4','4','2','65649','3','8','270','80','0','Wrathful Gladiator\'s Dragonhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151431','4','2','10','65166','17','2','264','80','2','Wrathful Gladiator\'s Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151432','4','2','10','65167','17','2','277','80','2','Wrathful Gladiator\'s Greatstaff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151433','4','4','2','65162','20','8','270','80','0','Wrathful Gladiator\'s Wyrmhide Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151434','4','4','2','65152','10','8','270','80','0','Wrathful Gladiator\'s Wyrmhide Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151435','4','4','2','65154','1','8','270','80','0','Wrathful Gladiator\'s Wyrmhide Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151436','4','4','2','65157','7','8','270','80','0','Wrathful Gladiator\'s Wyrmhide Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151437','4','4','8','34953','28','2','270','80','0','Wrathful Gladiator\'s Idol of Steadfastness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151438','4','4','2','65649','3','8','270','80','0','Wrathful Gladiator\'s Wyrmhide Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151439','4','2','0','65357','22','1','264','80','1','Wrathful Gladiator\'s Hacker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151440','4','2','0','65361','22','1','277','80','1','Wrathful Gladiator\'s Dicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151441','4','2','15','65343','22','1','264','80','3','Wrathful Gladiator\'s Shiv','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151442','4','2','15','65342','22','1','277','80','3','Wrathful Gladiator\'s Dirk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151443','4','2','13','65308','22','1','264','80','7','Wrathful Gladiator\'s Left Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151444','4','2','13','65349','22','1','277','80','7','Wrathful Gladiator\'s Left Razor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151445','4','2','4','65377','22','1','264','80','3','Wrathful Gladiator\'s Bonecracker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151446','4','2','4','65378','22','1','277','80','3','Wrathful Gladiator\'s Punisher','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151447','4','2','7','65390','22','1','264','80','3','Wrathful Gladiator\'s Quickblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151448','4','2','7','65385','22','1','277','80','3','Wrathful Gladiator\'s Swiftblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151449','4','2','3','65364','26','1','264','80','0','Wrathful Gladiator\'s Rifle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151450','4','2','3','65365','26','1','277','80','0','Wrathful Gladiator\'s Shotgun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151451','4','2','19','65370','26','2','264','80','0','Wrathful Gladiator\'s Wand of Alacrity','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151452','4','4','6','65580','14','1','270','80','4','Wrathful Gladiator\'s Barrier','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151453','4','2','4','65379','21','1','264','80','3','Wrathful Gladiator\'s Gavel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151454','4','2','4','65380','21','1','277','80','3','Wrathful Gladiator\'s Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151455','4','4','6','65581','14','1','270','80','4','Wrathful Gladiator\'s Redoubt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151456','4','2','10','65327','17','2','264','80','2','Wrathful Gladiator\'s Energy Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151457','4','2','10','65330','17','2','277','80','2','Wrathful Gladiator\'s Light Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151458','4','4','3','65463','5','5','270','80','0','Wrathful Gladiator\'s Chain Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151459','4','4','3','65464','10','5','270','80','0','Wrathful Gladiator\'s Chain Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151460','4','4','3','65919','1','5','270','80','0','Wrathful Gladiator\'s Chain Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151461','4','4','3','65465','7','5','270','80','0','Wrathful Gladiator\'s Chain Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151462','4','4','3','65214','3','5','270','80','0','Wrathful Gladiator\'s Chain Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151463','4','4','1','65274','20','7','270','80','0','Wrathful Gladiator\'s Silk Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151464','4','4','1','65279','10','7','270','80','0','Wrathful Gladiator\'s Silk Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151465','4','4','1','65280','1','7','270','80','0','Wrathful Gladiator\'s Silk Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151466','4','4','1','65282','7','7','270','80','0','Wrathful Gladiator\'s Silk Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151467','4','4','1','65285','3','7','270','80','0','Wrathful Gladiator\'s Silk Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151468','4','4','4','65271','5','6','270','80','0','Wrathful Gladiator\'s Ornamented Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151469','4','4','4','65272','10','6','270','80','0','Wrathful Gladiator\'s Ornamented Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151470','4','4','4','65270','1','6','270','80','0','Wrathful Gladiator\'s Ornamented Headcover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151471','4','4','4','65273','7','6','270','80','0','Wrathful Gladiator\'s Ornamented Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151472','4','4','7','1103','28','2','270','80','0','Wrathful Gladiator\'s Libram of Justice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151473','4','4','4','65268','3','6','270','80','0','Wrathful Gladiator\'s Ornamented Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151474','4','4','4','65271','5','6','270','80','0','Wrathful Gladiator\'s Scaled Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151475','4','4','4','65272','10','6','270','80','0','Wrathful Gladiator\'s Scaled Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151476','4','4','4','65270','1','6','270','80','0','Wrathful Gladiator\'s Scaled Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151477','4','4','4','65273','7','6','270','80','0','Wrathful Gladiator\'s Scaled Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151478','4','4','7','34960','28','2','270','80','0','Wrathful Gladiator\'s Libram of Fortitude','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151479','4','4','4','65268','3','6','270','80','0','Wrathful Gladiator\'s Scaled Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151480','4','2','6','65382','17','1','264','80','2','Wrathful Gladiator\'s Pike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151481','4','2','6','65648','17','1','277','80','2','Wrathful Gladiator\'s Halberd','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151482','4','4','1','65447','20','7','270','80','0','Wrathful Gladiator\'s Mooncloth Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151483','4','4','1','65952','10','7','270','80','0','Wrathful Gladiator\'s Mooncloth Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151484','4','4','1','65281','1','7','270','80','0','Wrathful Gladiator\'s Mooncloth Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151485','4','4','1','65451','7','7','270','80','0','Wrathful Gladiator\'s Mooncloth Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151486','4','4','1','65286','3','7','270','80','0','Wrathful Gladiator\'s Mooncloth Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151487','4','4','1','65447','20','7','270','80','0','Wrathful Gladiator\'s Satin Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151488','4','4','1','65452','10','7','270','80','0','Wrathful Gladiator\'s Satin Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151489','4','4','1','65281','1','7','270','80','0','Wrathful Gladiator\'s Satin Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151490','4','4','1','65451','7','7','270','80','0','Wrathful Gladiator\'s Satin Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151491','4','4','1','65286','3','7','270','80','0','Wrathful Gladiator\'s Satin Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151492','4','4','2','65198','5','8','270','80','0','Wrathful Gladiator\'s Leather Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151493','4','4','2','65188','10','8','270','80','0','Wrathful Gladiator\'s Leather Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151494','4','4','2','65195','1','8','270','80','0','Wrathful Gladiator\'s Leather Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151495','4','4','2','65203','7','8','270','80','0','Wrathful Gladiator\'s Leather Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151496','4','4','2','65202','3','8','270','80','0','Wrathful Gladiator\'s Leather Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151497','4','4','3','65218','20','5','270','80','0','Wrathful Gladiator\'s Ringmail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151498','4','4','3','65219','10','5','270','80','0','Wrathful Gladiator\'s Ringmail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151499','4','4','3','65221','1','5','270','80','0','Wrathful Gladiator\'s Ringmail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151500','4','4','3','65235','7','5','270','80','0','Wrathful Gladiator\'s Ringmail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151501','4','4','9','46045','28','2','270','80','0','Wrathful Gladiator\'s Totem of the Third Wind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151502','4','4','3','65597','3','5','270','80','0','Wrathful Gladiator\'s Ringmail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151503','4','4','3','65218','20','5','270','80','0','Wrathful Gladiator\'s Linked Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151504','4','4','3','65219','10','5','270','80','0','Wrathful Gladiator\'s Linked Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151505','4','4','3','65221','1','5','270','80','0','Wrathful Gladiator\'s Linked Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151506','4','4','3','65235','7','5','270','80','0','Wrathful Gladiator\'s Linked Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151507','4','4','9','25246','28','2','270','80','0','Wrathful Gladiator\'s Totem of Indomitability','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151508','4','4','3','65597','3','5','270','80','0','Wrathful Gladiator\'s Linked Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151509','4','4','3','65218','20','5','270','80','0','Wrathful Gladiator\'s Mail Armor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151510','4','4','3','65219','10','5','270','80','0','Wrathful Gladiator\'s Mail Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151511','4','4','3','65221','1','5','270','80','0','Wrathful Gladiator\'s Mail Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151512','4','4','3','65235','7','5','270','80','0','Wrathful Gladiator\'s Mail Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151513','4','4','9','25246','28','2','270','80','0','Wrathful Gladiator\'s Totem of Survival','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151514','4','4','3','65597','3','5','270','80','0','Wrathful Gladiator\'s Mail Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151515','4','2','0','65363','13','1','264','80','1','Wrathful Gladiator\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151516','4','2','0','65361','13','1','277','80','1','Wrathful Gladiator\'s Handaxe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151517','4','2','15','65401','13','1','264','80','3','Wrathful Gladiator\'s Shanker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151518','4','2','15','65340','13','1','277','80','3','Wrathful Gladiator\'s Spike','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151519','4','2','4','65372','13','1','264','80','3','Wrathful Gladiator\'s Pummeler','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151520','4','2','4','65376','13','1','277','80','3','Wrathful Gladiator\'s Truncheon','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151521','4','2','7','65389','13','1','264','80','3','Wrathful Gladiator\'s Slicer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151522','4','2','7','65388','13','1','277','80','3','Wrathful Gladiator\'s Longblade','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151523','4','2','13','65353','21','1','264','80','7','Wrathful Gladiator\'s Right Ripper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151524','4','2','13','65404','21','1','277','80','7','Wrathful Gladiator\'s Grasp','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151525','4','2','0','65363','22','1','264','80','1','Wrathful Gladiator\'s Chopper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151526','4','2','0','65361','22','1','277','80','1','Wrathful Gladiator\'s Splitter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151527','4','2','15','65401','22','1','264','80','3','Wrathful Gladiator\'s Mutilator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151528','4','2','15','65340','22','1','277','80','3','Wrathful Gladiator\'s Eviscerator','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151529','4','2','13','65350','22','1','277','80','7','Wrathful Gladiator\'s Left Claw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151530','4','2','13','65351','22','1','264','80','7','Wrathful Gladiator\'s Left Render','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151531','4','2','19','65371','26','2','264','80','0','Wrathful Gladiator\'s Piercing Touch','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151532','4','2','19','65369','26','2','264','80','0','Wrathful Gladiator\'s Baton of Light','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151533','4','4','6','65582','14','1','270','80','4','Wrathful Gladiator\'s Shield Wall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151534','4','4','0','58691','19','4','80','0','0','Wrathful Gladiator\'s Tabard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151535','4','2','16','65394','25','1','264','80','0','Wrathful Gladiator\'s War Edge','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151536','4','4','1','65275','20','7','270','80','0','Wrathful Gladiator\'s Felweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151537','4','4','1','65277','10','7','270','80','0','Wrathful Gladiator\'s Felweave Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151538','4','4','1','65284','1','7','270','80','0','Wrathful Gladiator\'s Felweave Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151539','4','4','1','65283','7','7','270','80','0','Wrathful Gladiator\'s Felweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151540','4','4','1','65288','3','7','270','80','0','Wrathful Gladiator\'s Felweave Amice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151541','4','4','4','65251','5','6','270','80','0','Wrathful Gladiator\'s Plate Chestpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151542','4','4','4','65252','10','6','270','80','0','Wrathful Gladiator\'s Plate Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151543','4','4','4','65253','1','6','270','80','0','Wrathful Gladiator\'s Plate Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151544','4','4','4','65266','7','6','270','80','0','Wrathful Gladiator\'s Plate Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151545','4','4','4','65267','3','6','270','80','0','Wrathful Gladiator\'s Plate Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151548','4','4','0','64190','2','3','251','80','0','Collar of Haughty Disdain','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151550','4','4','2','63691','7','8','251','80','0','Ivory-Inlaid Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151551','4','4','3','65228','5','5','251','80','0','Chestguard of Siphoned Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151552','4','4','2','64457','3','8','251','80','0','Shoulderpads of the Searing Kiss','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151553','4','2','19','64358','26','2','251','80','0','Lana\'thel\'s Bloody Nail','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151554','4','4','1','64892','1','7','251','80','0','Cowl of Malefic Repose','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151555','4','4','4','64661','6','1','251','80','0','Tightening Waistband','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151556','4','4','4','64525','10','1','251','80','0','Veincrusher Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151557','4','4','0','52459','11','3','251','80','0','Runed Signet of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151558','4','4','0','52459','11','3','251','80','0','Runed Loop of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151559','4','4','0','52632','11','5','251','80','0','Runed Ring of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151560','4','4','0','52632','11','5','251','80','0','Runed Band of the Kirin Tor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151561','4','2','3','64365','26','1','251','80','0','Dreamhunter\'s Carbine','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151562','4','2','5','64393','17','1','251','80','1','Oxheart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151563','4','4','4','64779','9','1','251','80','0','Taiga Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151564','4','4','4','64774','6','6','251','80','0','Ironrope Belt of Ymirjar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151565','4','4','2','63689','3','8','251','80','0','Skinned Whelp Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151566','4','4','3','64812','7','5','251','80','0','Legguards of the Twisted Dream','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151568','4','4','0','39162','2','5','245','80','0','Titan-Forged Pendant of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151569','4','4','0','39162','2','5','245','80','0','Titan-Forged Pendant of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151570','4','4','1','61563','16','5','245','80','0','Titan-Forged Cloak of Ascendancy','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151571','4','4','1','61564','16','5','245','80','0','Titan-Forged Cloak of Victory','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151572','4','4','1','60169','3','7','251','80','0','Titan-Forged Shoulderpads of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151573','4','4','1','60161','3','7','251','80','0','Titan-Forged Shoulderpads of Domination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151574','4','4','2','61447','3','8','251','80','0','Titan-Forged Spaulders of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151575','4','4','2','61447','3','8','251','80','0','Titan-Forged Spaulders of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151576','4','4','2','60929','3','8','251','80','0','Titan-Forged Spaulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151577','4','4','3','61461','3','5','251','80','0','Titan-Forged Shoulders of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151578','4','4','3','61280','3','5','251','80','0','Titan-Forged Shoulders of Dominance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151579','4','4','3','61280','3','5','251','80','0','Titan-Forged Shoulders of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151580','4','4','4','61831','3','6','251','80','0','Titan-Forged Shoulderplates of Triumph','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151581','4','4','4','60908','3','6','251','80','0','Titan-Forged Shoulderplates of Salvation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151582','4','2','10','64338','17','2','251','80','2','Sister Svalna\'s Aether Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151583','4','4','3','65276','10','5','251','80','0','Stormbringer Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151584','4','4','1','46455','16','7','251','80','0','Lich Wrappings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151585','4','4','2','64446','1','8','251','80','0','Sister Svalna\'s Spangenhelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151586','4','4','4','64999','3','1','251','80','0','Emerald Saint\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151682','4','4','4','64705','3','6','251','80','0','Scourgelord Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151683','4','4','4','64595','7','6','251','80','0','Scourgelord Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151684','4','4','4','64594','1','4','251','80','0','Scourgelord Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151685','4','4','4','64593','10','1','251','80','0','Scourgelord Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151686','4','4','4','64592','5','1','251','80','0','Scourgelord Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151687','4','4','4','64592','5','1','251','80','0','Scourgelord Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151688','4','4','4','64593','10','1','251','80','0','Scourgelord Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151689','4','4','4','64594','1','4','251','80','0','Scourgelord Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151690','4','4','4','64595','7','6','251','80','0','Scourgelord Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151691','4','4','4','64705','3','6','251','80','0','Scourgelord Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151692','4','4','2','64457','3','8','251','80','0','Lasherweave Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151693','4','4','2','64458','7','8','251','80','0','Lasherweave Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151694','4','4','2','64446','1','8','251','80','0','Lasherweave Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151695','4','4','2','64448','10','8','251','80','0','Lasherweave Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151696','4','4','2','64730','20','8','251','80','0','Lasherweave Robes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151697','4','4','2','64456','20','8','251','80','0','Lasherweave Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151698','4','4','2','64448','10','8','251','80','0','Lasherweave Handgrips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151699','4','4','2','64446','1','8','251','80','0','Lasherweave Headguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151700','4','4','2','64458','7','8','251','80','0','Lasherweave Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151701','4','4','2','64457','3','8','251','80','0','Lasherweave Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151702','4','4','2','64731','20','8','251','80','0','Lasherweave Vestment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151703','4','4','2','64448','10','8','251','80','0','Lasherweave Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151704','4','4','2','64446','1','8','251','80','0','Lasherweave Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151705','4','4','2','64458','7','8','251','80','0','Lasherweave Trousers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151706','4','4','2','64457','3','8','251','80','0','Lasherweave Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151707','4','4','3','64814','5','5','251','80','0','Ahn\'Kahar Blood Hunter\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151708','4','4','3','64804','3','5','251','80','0','Ahn\'Kahar Blood Hunter\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151709','4','4','3','64812','7','5','251','80','0','Ahn\'Kahar Blood Hunter\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151710','4','4','3','65130','1','5','251','80','0','Ahn\'Kahar Blood Hunter\'s Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151711','4','4','3','64810','10','5','251','80','0','Ahn\'Kahar Blood Hunter\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151712','4','4','1','64271','3','7','251','80','0','Bloodmage Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151713','4','4','1','64270','20','7','251','80','0','Bloodmage Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151714','4','4','1','64269','7','7','251','80','0','Bloodmage Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151715','4','4','1','64268','1','7','251','80','0','Bloodmage Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151716','4','4','1','64267','10','7','251','80','0','Bloodmage Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151717','4','4','4','64637','5','1','251','80','0','Lightsworn Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151718','4','4','4','64627','10','1','251','80','0','Lightsworn Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151719','4','4','4','64630','1','4','251','80','0','Lightsworn Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151720','4','4','4','64633','7','6','251','80','0','Lightsworn Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151721','4','4','4','64999','3','6','251','80','0','Lightsworn Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151722','4','4','4','64637','5','1','251','80','0','Lightsworn Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151723','4','4','4','64627','10','1','251','80','0','Lightsworn Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151724','4','4','4','64630','1','4','251','80','0','Lightsworn Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151725','4','4','4','64633','7','6','251','80','0','Lightsworn Greaves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151726','4','4','4','64999','3','6','251','80','0','Lightsworn Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151727','4','4','4','64637','5','1','251','80','0','Lightsworn Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151728','4','4','4','64627','10','1','251','80','0','Lightsworn Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151729','4','4','4','64630','1','4','251','80','0','Lightsworn Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151730','4','4','4','64633','7','6','251','80','0','Lightsworn Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151731','4','4','4','64999','3','6','251','80','0','Lightsworn Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151732','4','4','1','64255','7','7','251','80','0','Crimson Acolyte Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151733','4','4','1','64196','20','7','251','80','0','Crimson Acolyte Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151734','4','4','1','64183','3','7','251','80','0','Crimson Acolyte Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151735','4','4','1','64257','10','7','251','80','0','Crimson Acolyte Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151736','4','4','1','64258','1','7','251','80','0','Crimson Acolyte Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151737','4','4','1','64258','1','7','251','80','0','Crimson Acolyte Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151738','4','4','1','64257','10','7','251','80','0','Crimson Acolyte Handwraps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151739','4','4','1','64183','3','7','251','80','0','Crimson Acolyte Mantle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151740','4','4','1','64196','20','7','251','80','0','Crimson Acolyte Raiments','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151741','4','4','1','64255','7','7','251','80','0','Crimson Acolyte Pants','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151742','4','4','2','63693','10','8','251','80','0','Shadowblade Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151743','4','4','2','63692','5','8','251','80','0','Shadowblade Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151744','4','4','2','63691','7','8','251','80','0','Shadowblade Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151745','4','4','2','63690','1','8','251','80','0','Shadowblade Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151746','4','4','2','63689','3','8','251','80','0','Shadowblade Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151747','4','4','3','65228','5','5','251','80','0','Frost Witch\'s Tunic','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151748','4','4','3','65230','10','5','251','80','0','Frost Witch\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151749','4','4','3','65227','1','5','251','80','0','Frost Witch\'s Headpiece','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151750','4','4','3','65232','7','5','251','80','0','Frost Witch\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151751','4','4','3','65233','3','5','251','80','0','Frost Witch\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151752','4','4','3','65228','5','5','251','80','0','Frost Witch\'s Chestguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151753','4','4','3','64776','10','5','251','80','0','Frost Witch\'s Grips','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151754','4','4','3','65227','1','5','251','80','0','Frost Witch\'s Faceguard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151755','4','4','3','65232','7','5','251','80','0','Frost Witch\'s War-Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151756','4','4','3','65233','3','5','251','80','0','Frost Witch\'s Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151757','4','4','3','65278','5','5','251','80','0','Frost Witch\'s Hauberk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151758','4','4','3','65230','10','5','251','80','0','Frost Witch\'s Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151759','4','4','3','65227','1','5','251','80','0','Frost Witch\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151760','4','4','3','65232','7','5','251','80','0','Frost Witch\'s Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151761','4','4','3','65233','3','5','251','80','0','Frost Witch\'s Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151762','4','4','1','64289','3','7','251','80','0','Dark Coven Shoulderpads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151763','4','4','1','64288','20','7','251','80','0','Dark Coven Robe','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151764','4','4','1','64287','7','7','251','80','0','Dark Coven Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151765','4','4','1','64286','1','7','251','80','0','Dark Coven Hood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151766','4','4','1','64283','10','7','251','80','0','Dark Coven Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151767','4','4','4','64618','3','6','251','80','0','Ymirjar Lord\'s Shoulderplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151768','4','4','4','64568','7','6','251','80','0','Ymirjar Lord\'s Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151769','4','4','4','64527','1','4','251','80','0','Ymirjar Lord\'s Helmet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151770','4','4','4','64525','10','1','251','80','0','Ymirjar Lord\'s Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151771','4','4','4','64523','5','1','251','80','0','Ymirjar Lord\'s Battleplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151772','4','4','4','64523','5','1','251','80','0','Ymirjar Lord\'s Breastplate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151773','4','4','4','64525','10','1','251','80','0','Ymirjar Lord\'s Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151774','4','4','4','64527','1','4','251','80','0','Ymirjar Lord\'s Greathelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151775','4','4','4','64568','7','6','251','80','0','Ymirjar Lord\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151776','4','4','4','64618','3','6','251','80','0','Ymirjar Lord\'s Pauldrons','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151777','4','4','1','64255','7','7','251','80','0','Leggings of the Refracted Mind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151779','4','4','0','6510','2','4','251','80','0','Rimetooth Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151782','4','4','4','64774','6','6','251','80','0','Etched Dragonbone Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151783','4','4','2','64405','9','8','251','80','0','Vambraces of the Frost Wyrm Queen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151784','4','2','13','64468','22','1','251','80','7','Splintershard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151785','4','4','3','64816','8','5','251','80','0','Wyrmwing Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151786','4','4','4','64568','7','6','251','80','0','Legplates of Aetheric Strife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151787','4','4','4','64771','8','1','251','80','0','Scourge Fanged Stompers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151788','4','2','15','64645','21','1','251','80','3','Bleak Coldarra Carver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151789','4','4','2','64448','10','8','251','80','0','Icicle Shapers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151790','4','4','1','64858','20','7','251','80','0','Robes of Azure Downfall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151791','4','4','6','64415','14','6','251','80','4','Lost Pavise of the Blue Flight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151792','4','4','3','65233','3','5','251','80','0','Shoulderguards of Crystalline Bone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151795','4','2','0','64485','13','1','258','80','1','Troggbane, Axe of the Frostborne King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151796','4','2','5','64555','17','1','258','80','1','Warmace of Menethil','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151797','4','2','10','64352','17','2','258','80','2','Tainted Twig of Nordrassil','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151798','4','2','4','64518','21','1','258','80','3','Valius, Gavel of the Lightbringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151799','4','2','10','64172','17','2','258','80','2','Halion, Staff of Forgotten Love','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151800','4','2','15','64678','13','1','258','80','3','Stormfury, Black Blade of the Betrayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151801','4','2','13','64467','21','1','258','80','7','Pugius, Fist of Defiance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151802','4','2','18','64370','26','2','258','80','0','Windrunner\'s Heartseeker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151803','4','2','15','64651','21','1','258','80','3','Tel\'thas, Dagger of the Blood King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151804','4','4','0','43423','2','4','226','80','0','Winking Eye of Love','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151805','4','4','0','52417','2','3','226','80','0','Heartbreak Charm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151806','4','4','0','9854','2','4','226','80','0','Shard of Pirouetting Happiness','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151807','4','4','0','45351','2','3','226','80','0','Sweet Perfume Broach','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151808','4','4','0','54999','2','3','226','80','0','Choker of the Pure Heart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151811','4','4','3','65033','3','5','264','80','0','Shoulderguards of Crystalline Bone','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151812','4','4','6','64417','14','6','264','80','4','Lost Pavise of the Blue Flight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151813','4','4','1','64312','20','7','264','80','0','Robes of Azure Downfall','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151814','4','4','2','64479','10','8','264','80','0','Icicle Shapers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151815','4','2','15','64646','21','1','264','80','3','Bleak Coldarra Carver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151816','4','4','4','64781','8','1','264','80','0','Scourge Fanged Stompers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151817','4','4','4','64595','7','6','264','80','0','Legplates of Aetheric Strife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151818','4','4','3','64822','8','5','264','80','0','Wyrmwing Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151819','4','2','13','64468','22','1','264','80','7','Splintershard','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151820','4','4','2','64421','9','8','264','80','0','Vambraces of the Frost Wyrm Queen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151821','4','4','4','64786','6','6','264','80','0','Etched Dragonbone Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151822','4','4','0','6510','2','4','264','80','0','Rimetooth Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151823','4','4','1','64200','7','7','264','80','0','Leggings of the Refracted Mind','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151824','4','4','4','64998','3','1','264','80','0','Emerald Saint\'s Spaulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151825','4','4','2','65160','1','8','264','80','0','Sister Svalna\'s Spangenhelm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151826','4','4','1','46455','16','7','264','80','0','Lich Wrappings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151827','4','4','3','65032','10','5','264','80','0','Stormbringer Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151828','4','2','10','64338','17','2','264','80','2','Sister Svalna\'s Aether Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151829','4','4','3','64821','7','5','264','80','0','Legguards of the Twisted Dream','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151830','4','4','2','64419','3','8','264','80','0','Skinned Whelp Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151831','4','4','4','64786','6','6','264','80','0','Ironrope Belt of Ymirjar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151832','4','4','4','64790','9','1','264','80','0','Taiga Bindings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151833','4','2','5','63834','17','1','264','80','1','Oxheart','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151834','4','2','3','64365','26','1','264','80','0','Dreamhunter\'s Carbine','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151835','4','4','4','64593','10','1','264','80','0','Veincrusher Gauntlets','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151836','4','4','4','64660','6','1','264','80','0','Tightening Waistband','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151837','4','4','1','64302','1','7','264','80','0','Cowl of Malefic Repose','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151838','4','2','19','64358','26','2','264','80','0','Lana\'thel\'s Bloody Nail','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151839','4','4','2','64478','3','8','264','80','0','Shoulderpads of the Searing Kiss','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151840','4','4','3','65039','5','5','264','80','0','Chestguard of Siphoned Elements','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151841','4','4','2','64416','7','8','264','80','0','Ivory-Inlaid Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151842','4','4','0','64190','2','3','264','80','0','Collar of Haughty Disdain','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151843','4','4','0','44357','11','5','264','80','0','Seal of the Twilight Queen','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151844','4','4','4','64791','10','1','264','80','0','Throatrender Handguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151845','4','2','3','64363','26','1','264','80','0','Stakethrower','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151846','4','2','15','64653','13','1','264','80','3','Bloodsipper','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151847','4','4','4','64705','3','1','264','80','0','Spaulders of the Blood Princes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151848','4','4','1','64323','16','7','264','80','0','Heartsick Mender\'s Cape','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151849','4','4','0','64225','11','3','264','80','0','Cerise Coiled Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151850','4','4','1','64198','8','7','264','80','0','Pale Corpse Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151851','4','4','1','64168','20','7','264','80','0','Bloodsoul Raiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151852','4','2','19','64995','26','2','264','80','0','Wand of Ruby Claret','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151853','4','4','3','64820','6','5','264','80','0','Blood-Drinker\'s Girdle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151854','4','4','4','64595','7','6','264','80','0','Battle-Maiden\'s Legguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151855','4','4','0','64230','11','5','264','80','0','Thrice Fanged Signet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151856','4','4','2','64414','8','8','264','80','0','Taldaram\'s Soft Slippers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151857','4','2','6','64379','17','1','264','80','2','Hersir\'s Greatspear','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151858','4','2','7','64541','13','1','264','80','3','Soulbreaker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151859','4','4','1','64301','3','7','264','80','0','Shoulders of Ruinous Senility','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151860','4','4','3','65038','7','5','264','80','0','Rippling Flesh Kilt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151861','4','4','4','64658','5','1','264','80','0','Chestplate of Septic Stitches','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151862','4','4','1','64181','6','7','264','80','0','Cauterized Cord','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151863','4','4','0','64205','2','4','264','80','0','Pendant of Split Veins','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151864','4','4','3','64819','3','5','264','80','0','Shoulderpads of the Morbid Ritual','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151865','4','4','4','64705','3','6','264','80','0','Scalpel-Sharpening Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151866','4','4','2','64427','1','8','264','80','0','Discarded Bag of Entrails','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151867','4','4','0','64213','2','3','264','80','0','Infected Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151868','4','2','15','64657','13','1','264','80','3','Flesh-Carving Scalpel','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151869','4','2','7','64539','13','1','264','80','3','The Facelifter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151870','4','4','2','64476','20','8','264','80','0','Chestguard of the Failed Experiment','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151871','4','4','0','64203','2','4','264','80','0','Choker of Filthy Diamonds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151872','4','4','1','64298','9','7','264','80','0','Ether-Soaked Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151873','4','4','3','65036','8','5','264','80','0','Shuffling Shoes','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151874','4','4','1','64377','10','7','264','80','0','Gloves of Broken Fingers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151875','4','2','4','64512','21','1','264','80','3','Lockjaw','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151876','4','2','13','64466','21','1','264','80','7','Abomination Knuckles','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151877','4','4','3','65132','1','5','264','80','0','Taldron\'s Short-Sighted Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151878','4','4','0','64229','11','5','264','80','0','Rotface\'s Rupturing Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151879','4','4','4','64786','6','6','264','80','0','Flesh-Shaper\'s Gurney Strap','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151880','4','2','16','48157','25','1','264','80','0','Gluth\'s Fetching Knife','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151881','4','2','10','64336','17','2','264','80','2','Shaft of Glacial Ice','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151882','4','4','1','64311','7','7','264','80','0','Kilt of Untreated Wounds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151883','4','4','1','64179','3','7','264','80','0','Bloodstained Surgeon\'s Shoulderguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151884','4','4','0','64176','11','3','264','80','0','Signet of Putrefaction','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151885','4','4','2','64483','9','8','264','80','0','Wrists of Septic Shock','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151886','4','4','4','64668','10','1','264','80','0','Festergut\'s Gaseous Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151887','4','2','10','64330','17','2','264','80','2','Abracadaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151888','4','4','1','35430','16','7','264','80','0','Cloak of Many Skins','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151889','4','4','2','64416','7','8','264','80','0','Plague-Soaked Leather Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151890','4','4','0','53560','2','4','264','80','0','Precious\'s Putrid Collar','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151891','4','4','3','64822','8','5','264','80','0','Taldron\'s Long Neglected Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151892','4','4','4','64593','10','1','264','80','0','Festering Fingerguards','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151893','4','2','4','64509','13','2','264','80','3','Gutbuster','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151894','4','4','0','64218','2','4','264','80','0','Soulcleave Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151895','4','4','4','64595','7','1','264','80','0','Deathforged Legplates','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151896','4','4','1','64945','1','7','264','80','0','Thaumaturge\'s Crackling Cowl','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151897','4','4','2','64481','7','8','264','80','0','Leggings of Unrelenting Blood','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151898','4','2','10','64341','17','2','264','80','2','Mag\'hari Chieftain\'s Staff','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151899','4','4','1','64310','8','7','264','80','0','Icecrown Spire Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151900','4','4','0','64174','11','5','264','80','0','Saurfang\'s Cold-Forged Band','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151901','4','4','4','64782','9','6','264','80','0','Gargoyle Spit Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151902','4','4','4','64592','5','1','264','80','0','Blade-Scored Carapace','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151903','4','4','3','64825','5','5','264','80','0','Hauberk of a Thousand Cuts','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151904','4','4','2','64424','10','8','264','80','0','Scourge Stranglers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151905','4','2','1','64320','17','1','264','80','1','Ramaladni\'s Blade of Culling','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151906','4','4','3','65040','1','5','264','80','0','Ice-Reinforced Vrykul Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151907','4','4','4','64782','9','6','264','80','0','Bracers of Pale Illumination','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151908','4','4','2','64477','6','8','264','80','0','Cord of Dark Suffering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151909','4','4','6','64410','14','6','264','80','4','Neverending Winter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151910','4','2','15','64676','21','1','264','80','3','Midnight Sun','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151911','4','4','3','64819','3','5','264','80','0','Pauldrons of Lost Hope','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151912','4','4','1','64325','16','7','264','80','0','Saronite Gargoyle Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151913','4','4','0','64171','11','3','264','80','0','Abomination\'s Bloody Ring','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151914','4','4','3','64824','9','5','264','80','0','Icecrown Rampart Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151915','4','4','4','64781','8','1','264','80','0','Bone Drake\'s Enameled Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151916','4','2','0','64472','13','1','264','80','1','Frost Giant\'s Cleaver','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151917','4','4','4','64787','5','1','264','80','0','Ghoul Commander\'s Cuirass','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151918','4','4','1','64204','9','7','264','80','0','Bracers of Dark Blessings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151919','4','4','3','65035','6','5','264','80','0','Deathspeaker Disciple\'s Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151920','4','4','2','64475','8','8','264','80','0','Boots of the Frozen Seed','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151921','4','4','1','64303','10','7','264','80','0','Sister\'s Handshrouds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151922','4','4','0','40786','23','3','264','80','0','Scourgelord\'s Baton','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151923','4','4','2','64423','5','8','264','80','0','Chestguard of the Frigid Noose','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151924','4','4','4','64594','1','4','264','80','0','Deathspeaker Zealot\'s Helm','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151925','4','4','2','64422','6','8','264','80','0','Soulthief\'s Braided Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151926','4','4','3','64823','10','5','264','80','0','Handgrips of Frost and Sleet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151927','4','2','2','64353','15','1','264','80','0','Njorndar Bone Bow','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151928','4','4','4','64667','7','6','264','80','0','Corrupted Silverplate Leggings','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151929','4','4','3','65034','9','5','264','80','0','Coldwraith Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151930','4','4','1','64378','6','7','264','80','0','Cord of the Patronizing Practitioner','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151931','4','4','4','64664','8','1','264','80','0','Ancient Skeletal Boots','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151932','4','2','7','64549','21','1','264','80','3','Frost Needle','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151933','4','4','1','61403','16','7','264','80','0','Shawl of Nerubian Silk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151934','4','4','0','64199','2','4','264','80','0','Marrowgar\'s Scratching Choker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151935','4','4','3','64820','6','5','264','80','0','Linked Scourge Vertebrae','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151936','4','2','8','64556','17','1','264','80','1','Citadel Enforcer\'s Claymore','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151937','4','2','4','64517','13','1','264','80','3','Bonebreaker Scepter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151938','4','2','0','64471','13','1','264','80','1','Bone Warden\'s Splitter','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151939','4','2','15','64645','21','1','271','80','3','Tel\'thas, Dagger of the Blood King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151940','4','2','18','64370','26','2','271','80','0','Windrunner\'s Heartseeker','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151941','4','2','13','64467','21','1','271','80','7','Pugius, Fist of Defiance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151942','4','2','15','65104','13','1','271','80','3','Stormfury, Black Blade of the Betrayer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151943','4','2','10','64172','17','2','271','80','2','Halion, Staff of Forgotten Love','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151944','4','2','4','64519','21','1','271','80','3','Valius, Gavel of the Lightbringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151945','4','2','10','64352','17','2','271','80','2','Tainted Twig of Nordrassil','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151946','4','2','5','64394','17','1','271','80','1','Warmace of Menethil','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151947','4','2','0','64485','13','1','271','80','1','Troggbane, Axe of the Frostborne King','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151958','3','4','2','64735','5','8','167','72','0','Pristine Glowbear Pelt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151959','3','4','2','49925','6','8','60','0','0','Vigorous Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151960','3','4','2','49985','10','8','64','0','0','Vigorous Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151961','3','4','2','49919','3','8','70','0','0','Vigorous Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151962','3','4','2','49982','9','8','55','0','0','Vigorous Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151963','3','4','2','49979','8','8','55','0','0','Vigorous Stompers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151964','3','4','2','49925','6','8','25','0','0','Vigorous Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151965','3','4','2','49985','10','8','35','0','0','Vigorous Handguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151966','3','4','2','49919','3','8','45','0','0','Vigorous Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151967','3','4','1','52117','8','7','55','0','0','Enumerated Sandals','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151968','3','4','1','51783','6','7','25','0','0','Enumerated Wrap','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151969','3','4','1','52068','3','7','70','0','0','Enumerated Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151970','3','4','1','51840','10','7','64','0','0','Enumerated Gloves','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151971','3','4','1','51783','6','7','60','0','0','Enumerated Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151972','3','4','1','52113','9','7','55','0','0','Enumerated Bracers','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151973','3','4','1','51840','10','7','35','0','0','Enumerated Handwraps','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151974','3','4','1','52068','3','7','45','0','0','Enumerated Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151975','3','4','3','51883','3','5','70','0','0','Earthbound Shoulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151976','3','4','3','51883','3','5','45','0','0','Earthbound Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151977','3','4','3','52166','6','5','60','0','0','Earthbound Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151978','3','4','3','52166','6','5','25','0','0','Earthbound Girdle','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151979','3','4','3','52164','10','5','64','0','0','Earthbound Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151980','3','4','3','52164','10','5','35','0','0','Earthbound Handgrips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151981','3','4','3','52165','9','5','55','0','0','Earthbound Wristguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151982','3','4','3','52163','8','5','55','0','0','Earthbound Boots','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151983','3','4','4','51297','3','6','70','0','0','Stalwart Shoulderguards','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151984','3','4','4','51297','3','6','45','0','0','Stalwart Shoulderpads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151985','3','4','4','52055','6','6','60','0','0','Stalwart Belt','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151987','3','4','4','52054','10','6','64','0','0','Stalwart Grips','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151989','3','4','4','52058','9','6','55','0','0','Stalwart Bands','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151990','3','4','4','52057','8','6','55','0','0','Stalwart Treads','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151991','3','4','0','26537','11','3','70','0','0','Turbulent Signet','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151992','3','4','0','31800','11','3','45','0','0','Tumultuous Ring','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151993','3','4','1','50059','16','7','60','0','0','Turbulent Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151994','3','4','1','50059','16','7','25','0','0','Tumultuous Cloak','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151995','3','4','0','31603','2','3','64','0','0','Turbulent Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151996','3','4','0','31603','2','3','35','0','0','Tumultuous Necklace','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151997','3','4','3','51883','3','5','45','0','0','Stalwart Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('151998','3','4','2','49919','3','8','45','0','0','Vigorous Spaulders','1','Solo per trasmog!','1','150000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('152019','2','4','0','64872','4','7','1','0','0','Precious\'s Ribbon','1','Solo per trasmog!','1','50000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('152252','4','4','0','65733','19','7','80','80','0','Tabard of the Lightbringer','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('152569','4','4','0','63958','11','4','251','1','0','Ashen Band of Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('152570','4','4','0','63958','11','4','259','1','0','Ashen Band of Greater Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('152571','4','4','0','63958','11','4','268','1','0','Ashen Band of Unmatched Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('152572','4','4','0','63958','11','4','277','1','0','Ashen Band of Endless Might','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('152729','1','4','1','65920','20','4','1','1','0','Recruit\'s Robe','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153048','1','4','0','34752','16','7','1','0','0','Doomsday Message','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153097','1','4','1','66184','16','7','80','75','0','Gnomeregan Drape','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153103','4','4','0','6510','2','4','258','80','0','Baltharus\' Gift','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153110','4','4','0','64230','11','5','258','80','0','Zarithrian\'s Offering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153111','4','4','4','64771','8','1','258','80','0','Scion\'s Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153112','4','4','4','64779','9','1','258','80','0','Bracers of the Heir','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153113','4','4','3','64804','3','5','258','80','0','Twilight Scale Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153114','4','4','2','64408','5','8','258','80','0','Gloaming Sark','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153115','4','4','1','64323','16','7','258','80','0','Abduction\'s Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153116','4','4','0','64225','11','3','258','80','0','Saviana\'s Tribute','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153117','4','4','2','64448','10','8','258','80','0','Changeling Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153118','4','4','1','64348','6','7','258','80','0','Misbegotten Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153119','4','4','3','65259','8','5','258','80','0','Boots of Divided Being','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153121','4','4','4','64661','6','1','258','80','0','Surrogate Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153125','4','4','4','64789','8','1','271','80','0','Apocalypse\'s Advance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153126','4','4','2','64421','9','8','271','80','0','Umbrage Armbands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153127','4','4','3','64822','8','5','271','80','0','Returning Footfalls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153129','4','4','4','64789','8','1','271','80','0','Treads of Impending Resurrection','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153132','4','4','0','64190','2','3','271','80','0','Penumbra Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153133','4','4','0','64225','11','5','271','80','0','Signet of Twilight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153134','4','4','2','64484','9','8','271','80','0','Phaseshifter\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153486','4','4','1','64345','9','7','271','80','0','Bracers of Fiery Night','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153487','4','4','4','64664','8','1','271','80','0','Foreshadow Steps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153488','4','4','3','65035','6','5','271','80','0','Split Shape Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153489','4','4','1','28951','16','7','271','80','0','Cloak of Burning Dusk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153490','4','4','0','64230','11','3','271','80','0','Ring of Phased Regeneration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153491','4','4','4','59713','9','6','251','80','0','Twilight Offering Bands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153492','4','4','0','34336','11','3','251','80','0','Ring of the Three-Headed Beast','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153493','4','4','3','59185','7','5','251','80','0','Sacrificial Mail','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153494','4','4','4','59194','6','1','251','80','0','Girdle of Oblation','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153495','4','4','0','26537','11','5','251','80','0','Old Gods\' Blessing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153496','4','4','6','61884','14','6','251','80','4','Barrier of the Earth Princess','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153497','4','4','1','59000','16','7','251','80','0','Zaetar\'s Deathshroud','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153498','4','4','1','61875','20','7','251','80','0','Earth Bride\'s Gown','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153499','4','4','0','34034','2','4','251','80','0','Amulet of the Centauri','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153500','4','4','4','64836','5','1','251','80','0','Tectonic Plate','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153501','4','4','0','9833','11','5','251','80','0','Sulfuron\'s Favor','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153502','4','4','0','39209','2','3','251','80','0','Flamelash Amulet','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153503','4','4','0','64207','2','4','251','80','0','Pendant of Burning Spirits','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153504','4','4','2','59094','8','8','251','80','0','Flamewaker\'s Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153505','4','4','4','64854','5','1','251','80','0','Salamander Skin','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153506','4','4','1','51374','16','7','251','80','0','Cloak of Mocking Winds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153507','4','4','1','59727','8','7','251','80','0','Sandfury Sandals','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153508','4','4','2','64559','5','8','251','80','0','Pulmonary Casing','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('153509','4','4','0','43085','2','4','251','80','0','Amulet of Evil Winds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154556','4','4','1','64323','16','7','271','80','0','Abduction\'s Cover','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154557','4','4','0','6510','2','4','271','80','0','Baltharus\' Gift','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154558','4','4','3','65259','8','5','271','80','0','Boots of Divided Being','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154559','4','4','4','64779','9','1','271','80','0','Bracers of the Heir','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154560','4','4','2','64448','10','8','271','80','0','Changeling Gloves','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154561','4','4','2','64408','5','8','271','80','0','Gloaming Sark','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154562','4','4','1','64348','6','7','271','80','0','Misbegotten Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154563','4','4','0','64225','11','3','271','80','0','Saviana\'s Tribute','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154564','4','4','4','64771','8','1','271','80','0','Scion\'s Treads','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154565','4','4','4','64661','6','1','271','80','0','Surrogate Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154566','4','4','3','64804','3','5','271','80','0','Twilight Scale Shoulders','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154567','4','4','0','64230','11','5','271','80','0','Zarithrian\'s Offering','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154569','4','4','0','68109','12','4','271','80','0','Sharpened Twilight Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154571','4','4','0','68107','12','4','271','80','0','Petrified Twilight Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154572','4','4','0','68106','12','4','271','80','0','Charred Twilight Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154573','4','4','0','68108','12','4','271','80','0','Glowing Twilight Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154576','4','4','0','64225','11','5','284','80','0','Signet of Twilight','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154577','4','4','3','64822','8','5','284','80','0','Returning Footfalls','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154578','4','4','4','64789','8','1','284','80','0','Apocalypse\'s Advance','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154579','4','4','4','64789','8','1','284','80','0','Treads of Impending Resurrection','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154580','4','4','2','64421','9','8','284','80','0','Umbrage Armbands','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154581','4','4','0','64190','2','3','284','80','0','Penumbra Pendant','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154582','4','4','1','64345','9','7','284','80','0','Bracers of Fiery Night','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154583','4','4','1','28951','16','7','284','80','0','Cloak of Burning Dusk','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154584','4','4','2','64484','9','8','284','80','0','Phaseshifter\'s Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154585','4','4','0','64230','11','3','284','80','0','Ring of Phased Regeneration','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154586','4','4','4','64664','8','1','284','80','0','Foreshadow Steps','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154587','4','4','3','65035','6','5','284','80','0','Split Shape Belt','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154588','4','4','0','68106','12','4','284','80','0','Charred Twilight Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154589','4','4','0','68108','12','4','284','80','0','Glowing Twilight Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154590','4','4','0','68109','12','4','284','80','0','Sharpened Twilight Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154591','4','4','0','68107','12','4','284','80','0','Petrified Twilight Scale','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154592','4','4','3','65224','9','5','251','80','0','Sul\'lithuz Scale Bracers','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154617','1','4','1','66212','16','7','80','75','0','Darkspear Shroud','1','Solo per trasmog!','1','10000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154801','4','4','1','15239','16','7','232','80','0','Icebound Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154802','4','4','1','15239','16','7','232','80','0','The Frost Lord\'s War Cloak','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154803','4','4','1','15239','16','7','232','80','0','The Frost Lord\'s Battle Shroud','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154804','4','4','1','15239','16','7','232','80','0','Shroud of Winter\'s Chill','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154805','4','4','1','15239','16','7','232','80','0','Cloak of the Frigid Winds','1','Solo per trasmog!','1','1000000'); +INSERT INTO `item_template` (`entry`, `quality`, `class`, `subclass`, `displayid`, `InventoryType`, `material`, `itemlevel`, `requiredlevel`, `sheath`, `name`, `bonding`, `description`, `stackable`, `sellprice`) VALUES('154806','4','2','10','48878','17','2','232','80','2','Frostscythe of Lord Ahune','1','Solo per trasmog!','1','1000000'); + +UPDATE item_template SET NAME = "Martin Fury" WHERE entry = 100017; diff --git a/data/sql/db-world/02_pve_quests.sql b/data/sql/db-world/02_pve_quests.sql new file mode 100644 index 0000000..4e4db0a --- /dev/null +++ b/data/sql/db-world/02_pve_quests.sql @@ -0,0 +1,84 @@ +DELETE FROM quest_template WHERE id >= 100000 AND id <= 100100; +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100000','2','3840','4290','Uccidi Illidan','Han\'al vuole che tu uccida Illidan ancora una volta.','Uccidi Illidan','Ritorna da Han\'al','22917','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100001','2','3845','4290','Uccidi Kael\'Thas','Han\'al vuole che tu uccida Kael\'Thas ancora una volta.','Uccidi Kael\'Thas','Ritorna da Han\'al','19622','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100002','2','3845','4290','Uccidi Solarian','Han\'al vuole che tu uccida Solarian ancora una volta.','Uccidi Solarian','Ritorna da Han\'al','18805','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100003','2','3607','4290','Uccidi Morogrim','Han\'al vuole che tu uccida Morogrim ancora una volta.','Uccidi Morogrim','Ritorna da Han\'al','21213','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100004','2','3607','4290','Uccidi Lady Vashj','Han\'al vuole che tu uccida Lady Vashj ancora una volta.','Uccidi Lady Vashj','Ritorna da Han\'al','21212','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100005','2','3607','4290','Uccidi Leotheras','Han\'al vuole che tu uccida Leotheras ancora una volta.','Uccidi Leotheras','Ritorna da Han\'al','21215','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100006','2','3607','4290','Uccidi The Lurker Below','Han\'al vuole che tu uccida The Lurker Below ancora una volta.','Uccidi The Lurker Below','Ritorna da Han\'al','21217','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100007','2','3836','4290','Uccidi Magtheridon','Han\'al vuole che tu uccida Magtheridon ancora una volta.','Uccidi Magtheridon','Ritorna da Han\'al','17257','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100008','2','3923','4290','Uccidi Gruul','Han\'al vuole che tu uccida Gruul ancora una volta.','Uccidi Gruul','Ritorna da Han\'al','19044','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100009','2','3805','4290','Uccidi Zul\'Jin','Han\'al vuole che tu uccida Zul\'Jin ancora una volta.','Uccidi Zul\'Jin','Ritorna da Han\'al','23863','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100010','2','3805','4290','Uccidi Malacrass','Han\'al vuole che tu uccida Malacrass ancora una volta.','Uccidi Malacrass','Ritorna da Han\'al','24239','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100011','2','3805','4290','Uccidi Jan\'Alai','Han\'al vuole che tu uccida Jan\'Alai ancora una volta.','Uccidi Jan\'Alai','Ritorna da Han\'al','23578','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100012','2','3805','4290','Uccidi Halazzi','Han\'al vuole che tu uccida Halazzi ancora una volta.','Uccidi Halazzi','Ritorna da Han\'al','23577','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100013','2','3457','4290','Uccidi Moroes','Han\'al vuole che tu uccida Moroes ancora una volta.','Uccidi Moroes','Ritorna da Han\'al','15687','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100014','2','3457','4290','Uccidi Terestian','Han\'al vuole che tu uccida Terestian ancora una volta.','Uccidi Terestian','Ritorna da Han\'al','15688','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100015','2','3457','4290','Uccidi Netherspite','Han\'al vuole che tu uccida Netherspite ancora una volta.','Uccidi Netherspite','Ritorna da Han\'al','15689','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100016','2','3457','4290','Uccidi Nightbane','Han\'al vuole che tu uccida Nightbane ancora una volta.','Uccidi Nightbane','Ritorna da Han\'al','17225','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100017','2','3457','4290','Uccidi Prince Malchezaar','Han\'al vuole che tu uccida Prince Malchezaar ancora una volta.','Uccidi Prince Malchezaar','Ritorna da Han\'al','15690','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100018','2','616','4290','Uccidi Anetheron','Han\'al vuole che tu uccida Anetheron ancora una volta.','Uccidi Anetheron','Ritorna da Han\'al','17808','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100019','2','616','4290','Uccidi Azgalor','Han\'al vuole che tu uccida Azgalor ancora una volta.','Uccidi Azgalor','Ritorna da Han\'al','17842','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100020','2','616','4290','Uccidi Archimonde','Han\'al vuole che tu uccida Archimonde ancora una volta.','Uccidi Archimonde','Ritorna da Han\'al','17968','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100021','2','3840','4290','Uccidi Gurtogg','Han\'al vuole che tu uccida Gurtogg ancora una volta.','Uccidi Gurtogg','Ritorna da Han\'al','22948','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100022','2','3840','4290','Uccidi Shahraz','Han\'al vuole che tu uccida Shahraz ancora una volta.','Uccidi Shahraz','Ritorna da Han\'al','22947','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100023','2','3840','4290','Uccidi Teron','Han\'al vuole che tu uccida Teron ancora una volta.','Uccidi Teron','Ritorna da Han\'al','22871','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100024','2','4080','4290','Uccidi Felmyst','Han\'al vuole che tu uccida Felmyst ancora una volta.','Uccidi Felmyst','Ritorna da Han\'al','25038','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100025','2','4080','4290','Uccidi Kil\'Jaeden','Han\'al vuole che tu uccida Kil\'Jaeden ancora una volta.','Uccidi Kil\'Jaeden','Ritorna da Han\'al','25315','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100026','2','1977','4290','Uccidi Arlokk','Han\'al vuole che tu uccida Arlokk ancora una volta.','Uccidi Arlokk','Ritorna da Han\'al','14515','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100027','2','1977','4290','Uccidi Jin\'do','Han\'al vuole che tu uccida Jin\'do ancora una volta.','Uccidi Jin\'do','Ritorna da Han\'al','11380','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100028','2','1977','4290','Uccidi Hakkar','Han\'al vuole che tu uccida Hakkar ancora una volta.','Uccidi Hakkar','Ritorna da Han\'al','14834','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100029','2','1583','4290','Uccidi Gyth','Han\'al vuole che tu uccida Gyth ancora una volta.','Uccidi Gyth','Ritorna da Han\'al','10339','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100030','2','1583','4290','Uccidi The Beast','Han\'al vuole che tu uccida The Beast ancora una volta.','Uccidi The Beast','Ritorna da Han\'al','10430','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100031','2','1583','4290','Uccidi Lord Valthalak','Han\'al vuole che tu uccida Lord Valthalak ancora una volta.','Uccidi Lord Valthalak','Ritorna da Han\'al','16042','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100032','2','1583','4290','Uccidi Drakkisath','Han\'al vuole che tu uccida Drakkisath ancora una volta.','Uccidi Drakkisath','Ritorna da Han\'al','10363','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100033','2','3429','4290','Uccidi Ayamiss','Han\'al vuole che tu uccida Ayamiss ancora una volta.','Uccidi Ayamiss','Ritorna da Han\'al','15369','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100034','2','3429','4290','Uccidi Ossirian','Han\'al vuole che tu uccida Ossirian ancora una volta.','Uccidi Ossirian','Ritorna da Han\'al','15339','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100035','2','2717','4290','Uccidi Golemagg','Han\'al vuole che tu uccida Golemagg ancora una volta.','Uccidi Golemagg','Ritorna da Han\'al','11988','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100036','2','2717','4290','Uccidi Sulfuron Harbinger','Han\'al vuole che tu uccida Sulfuron Harbinger ancora una volta.','Uccidi Sulfuron Harbinger','Ritorna da Han\'al','12098','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100037','2','2717','4290','Uccidi Ragnaros','Han\'al vuole che tu uccida Ragnaros ancora una volta.','Uccidi Ragnaros','Ritorna da Han\'al','11502','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100038','2','2677','4290','Uccidi Ebonroc','Han\'al vuole che tu uccida Ebonroc ancora una volta.','Uccidi Ebonroc','Ritorna da Han\'al','14601','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100039','2','2677','4290','Uccidi Firemaw','Han\'al vuole che tu uccida Firemaw ancora una volta.','Uccidi Firemaw','Ritorna da Han\'al','11983','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100040','2','2677','4290','Uccidi Chromaggus','Han\'al vuole che tu uccida Chromaggus ancora una volta.','Uccidi Chromaggus','Ritorna da Han\'al','14020','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100041','2','2677','4290','Uccidi Nefarian','Han\'al vuole che tu uccida Nefarian ancora una volta.','Uccidi Nefarian','Ritorna da Han\'al','11583','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100042','2','3428','4290','Uccidi Princess Huhuran','Han\'al vuole che tu uccida Princess Huhuran ancora una volta.','Uccidi Princess Huhuran','Ritorna da Han\'al','15509','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100043','2','3428','4290','Uccidi i Twin Emperor','Han\'al vuole che tu uccida i Twin Emperor ancora una volta.','Uccidi i Twin Emperor','Ritorna da Han\'al','15276','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100044','2','3428','4290','Uccidi Viscidus','Han\'al vuole che tu uccida Viscidus ancora una volta.','Uccidi Viscidus','Ritorna da Han\'al','15299','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100045','2','3428','4290','Uccidi Ouro','Han\'al vuole che tu uccida Ouro ancora una volta.','Uccidi Ouro','Ritorna da Han\'al','15517','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100046','2','3428','4290','Uccidi C\'Thun','Han\'al vuole che tu uccida C\'Thun ancora una volta.','Uccidi C\'Thun','Ritorna da Han\'al','15727','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100047','2','2557','4290','Uccidi Immol\'thar','Han\'al vuole che tu uccida Immol\'thar ancora una volta.','Uccidi Immol\'thar','Ritorna da Han\'al','11496','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100048','2','2557','4290','Uccidi Tortheldrin','Han\'al vuole che tu uccida Tortheldrin ancora una volta.','Uccidi Tortheldrin','Ritorna da Han\'al','11486','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100049','2','2557','4290','Uccidi Gordok','Han\'al vuole che tu uccida Gordok ancora una volta.','Uccidi Gordok','Ritorna da Han\'al','11501','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100050','2','2557','4290','Uccidi Alzzin','Han\'al vuole che tu uccida Alzzin ancora una volta.','Uccidi Alzzin','Ritorna da Han\'al','11492','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100051','2','2057','4290','Uccidi Ras Frostwhisper','Han\'al vuole che tu uccida Ras Frostwhisper ancora una volta.','Uccidi Ras Frostwhisper','Ritorna da Han\'al','10508','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100052','2','2057','4290','Uccidi Darkmaster Gandling','Han\'al vuole che tu uccida Darkmaster Gandling ancora una volta.','Uccidi Darkmaster Gandling','Ritorna da Han\'al','1853','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100053','2','722','4290','Uccidi Amnennar the Cold','Han\'al vuole che tu uccida Amnennar the Cold ancora una volta.','Uccidi Amnennar the Cold','Ritorna da Han\'al','7358','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100054','2','2100','4290','Uccidi Celebras','Han\'al vuole che tu uccida Celebras ancora una volta.','Uccidi Celebras','Ritorna da Han\'al','12225','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100055','2','2100','4290','Uccidi Theradras','Han\'al vuole che tu uccida Theradras ancora una volta.','Uccidi Theradras','Ritorna da Han\'al','12201','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100056','2','719','4290','Uccidi Lorgus Jett','Han\'al vuole che tu uccida Lorgus Jett ancora una volta.','Uccidi Lorgus Jett','Ritorna da Han\'al','12902','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100057','2','719','4290','Uccidi Old Serra\'kis','Han\'al vuole che tu uccida Old Serra\'kis ancora una volta.','Uccidi Old Serra\'kis','Ritorna da Han\'al','4830','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100058','2','719','4290','Uccidi Aku\'mai','Han\'al vuole che tu uccida Aku\'mai ancora una volta.','Uccidi Aku\'mai','Ritorna da Han\'al','4829','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100059','2','978','4290','Uccidi Nekrum Gutchewer','Han\'al vuole che tu uccida Nekrum Gutchewer ancora una volta.','Uccidi Nekrum Gutchewer','Ritorna da Han\'al','7796','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100060','2','978','4290','Uccidi Ukorz Sandscalp','Han\'al vuole che tu uccida Ukorz Sandscalp ancora una volta.','Uccidi Ukorz Sandscalp','Ritorna da Han\'al','7267','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100061','2','2017','4290','Uccidi Balnazzar','Han\'al vuole che tu uccida Balnazzar ancora una volta.','Uccidi Balnazzar','Ritorna da Han\'al','10813','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100062','2','2017','4290','Uccidi Titus Rivendare','Han\'al vuole che tu uccida Titus Rivendare ancora una volta.','Uccidi Titus Rivendare','Ritorna da Han\'al','10440','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100063','2','1584','4290','Uccidi Thaurissan','Han\'al vuole che tu uccida Thaurissan ancora una volta.','Uccidi Thaurissan','Ritorna da Han\'al','9019','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100064','2','1584','4290','Uccidi Flamelash','Han\'al vuole che tu uccida Flamelash ancora una volta.','Uccidi Flamelash','Ritorna da Han\'al','9156','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100065','2','1477','4290','Uccidi Jammal\'an','Han\'al vuole che tu uccida Jammal\'an ancora una volta.','Uccidi Jammal\'an','Ritorna da Han\'al','5710','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100066','2','1477','4290','Uccidi Shade of Eranikus','Han\'al vuole che tu uccida Shade of Eranikus ancora una volta.','Uccidi Shade of Eranikus','Ritorna da Han\'al','5709','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100067','2','1583','4290','Uccidi Mother Smolderweb','Han\'al vuole che tu uccida Mother Smolderweb ancora una volta.','Uccidi Mother Smolderweb','Ritorna da Han\'al','10596','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100068','2','1583','4290','Uccidi Overlord Wyrmthalak','Han\'al vuole che tu uccida Overlord Wyrmthalak ancora una volta.','Uccidi Overlord Wyrmthalak','Ritorna da Han\'al','9568','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100069','2','3848','4290','Uccidi Harbinger Skyriss','Han\'al vuole che tu uccida Harbinger Skyriss ancora una volta.','Uccidi Harbinger Skyriss','Ritorna da Han\'al','20912','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100070','2','3715','4290','Uccidi Kalithresh','Han\'al vuole che tu uccida Kalithresh ancora una volta.','Uccidi Kalithresh','Ritorna da Han\'al','17798','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100071','2','3789','4290','Uccidi Murmur','Han\'al vuole che tu uccida Murmur ancora una volta.','Uccidi Murmur','Ritorna da Han\'al','18708','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100072','2','3714','4290','Uccidi Kargath Bladefist','Han\'al vuole che tu uccida Kargath Bladefist ancora una volta.','Uccidi Kargath Bladefist','Ritorna da Han\'al','16808','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100073','2','1941','4290','Uccidi Aeonus','Han\'al vuole che tu uccida Aeonus ancora una volta.','Uccidi Aeonus','Ritorna da Han\'al','17881','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100074','2','4131','4290','Uccidi Priestess Delrissa','Han\'al vuole che tu uccida Priestess Delrissa ancora una volta.','Uccidi Priestess Delrissa','Ritorna da Han\'al','24560','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100075','2','4100','4290','Uccidi Infinite Corruptor','Han\'al vuole che tu uccida Infinite Corruptor completando l\'evento dell\'instance.','Uccidi Infinite Corruptor','Ritorna da Han\'al','32273','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100076','2','4228','4290','Uccidi Ley-Guardian Eregos','Han\'al vuole che tu uccida Ley-Guardian Eregosancora una volta.','Uccidi Ley-Guardian Eregos','Ritorna da Han\'al','27656','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100077','2','4416','4290','Uccidi Gal\'darah','Han\'al vuole che tu uccida Gal\'darah ancora una volta.','Uccidi Gal\'darah','Ritorna da Han\'al','29306','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100078','2','4196','4290','Uccidi Tharon\'ja','Han\'al vuole che tu uccida Tharon\'ja ancora una volta.','Uccidi Tharon\'ja','Ritorna da Han\'al','26632','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100079','2','4494','4290','Uccidi Volazj','Han\'al vuole che tu uccida Volazj ancora una volta.','Uccidi Volazj','Ritorna da Han\'al','29311','1'); +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`) VALUES('100080','2','2159','4290','Uccidi Onyxia','Han\'al vuole che tu uccida Onyxia ancora una volta.','Uccidi Onyxia','Ritorna da Han\'al','10184','1'); + +UPDATE quest_template SET `QuestLevel` = 80, minlevel = 80, OfferRewardText = "Bravo, $N", RequestItemsText = "Si, $N?" WHERE id >= 100000 AND id <= 100100; \ No newline at end of file diff --git a/data/sql/db-world/03_update.sql b/data/sql/db-world/03_update.sql new file mode 100644 index 0000000..60e170d --- /dev/null +++ b/data/sql/db-world/03_update.sql @@ -0,0 +1,119 @@ +-- update quests with rep +UPDATE `quest_template` SET `Flags` = 4226, `RewardFactionID1` = 948, `RewardFactionValue1` = 0, RewardFactionOverride1 = 10 WHERE ID BETWEEN 100000 AND 100080; + +-- mark of azeroth + +UPDATE item_template SET NAME = "Mark of Azeroth", stackable = 2147483647, description = "Il bottino di ogni avventuriero!", maxcount = 0, spellid_1 = 0, spellcharges_1 = 0, flags = 0 WHERE entry = 37711; + +-- quest rewards +UPDATE `quest_template` SET RewardItem1 = 37711, RewardAmount1 = 2 WHERE ID BETWEEN 100000 AND 100080; + +-- hearthstone trasmog sack +UPDATE item_template SET NAME = "Garga's Magic Box", description = "Non sono così egocentrico da chiamare un NPC come me." WHERE entry = 32558; + +DELETE FROM creature_questender WHERE id = 100001 AND quest <= 100080 AND quest >= 100000; +INSERT INTO creature_questender (id, quest) VALUES +(100001, 100000), +(100001, 100001), +(100001, 100002), +(100001, 100003), +(100001, 100004), +(100001, 100005), +(100001, 100006), +(100001, 100007), +(100001, 100008), +(100001, 100009), +(100001, 100010), +(100001, 100011), +(100001, 100012), +(100001, 100013), +(100001, 100014), +(100001, 100015), +(100001, 100016), +(100001, 100017), +(100001, 100018), +(100001, 100019), +(100001, 100020), +(100001, 100021), +(100001, 100022), +(100001, 100023), +(100001, 100024), +(100001, 100025), +(100001, 100026), +(100001, 100027), +(100001, 100028), +(100001, 100029), +(100001, 100030), +(100001, 100031), +(100001, 100032), +(100001, 100033), +(100001, 100034), +(100001, 100035), +(100001, 100036), +(100001, 100037), +(100001, 100038), +(100001, 100039), +(100001, 100040), +(100001, 100041), +(100001, 100042), +(100001, 100043), +(100001, 100044), +(100001, 100045), +(100001, 100046), +(100001, 100047), +(100001, 100048), +(100001, 100049), +(100001, 100050), +(100001, 100051), +(100001, 100052), +(100001, 100053), +(100001, 100054), +(100001, 100055), +(100001, 100056), +(100001, 100057), +(100001, 100058), +(100001, 100059), +(100001, 100060), +(100001, 100061), +(100001, 100062), +(100001, 100063), +(100001, 100064), +(100001, 100065), +(100001, 100066), +(100001, 100067), +(100001, 100068), +(100001, 100069), +(100001, 100070), +(100001, 100071), +(100001, 100072), +(100001, 100073), +(100001, 100074), +(100001, 100075), +(100001, 100076), +(100001, 100077), +(100001, 100078), +(100001, 100079), +(100001, 100080); + +DELETE FROM `creature_template` WHERE (entry = 100001); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES +(100001, 0, 0, 0, 0, 0, 10215, 0, 0, 0, 'Manaben', 'Han\'al Apprentice', NULL, 0, 80, 80, 0, 2007, 3, 1.1, 1.5, 1.2, 1, 0, 0, 0, 8, 33536, 2048, 0, 0, 0, 0, 0, 0, 7, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 3, 0, 10, 10, 1, 0, 0, 1, 0, 2, '', 12341); + +UPDATE creature_template SET gossip_menu_id = 60000 WHERE entry = 100001; + + +DELETE FROM gossip_menu WHERE entry = 60000; +INSERT INTO gossip_menu (entry, text_id) VALUES (60000, 100010); + +DELETE FROM npc_text WHERE ID = 100010; +INSERT INTO npc_text (ID, text0_0, text0_1, lang0, em0_0) VALUES +(100010, "Il Maestro è una persona molto stimata e famosa... aiutalo, e sarà generoso con te, $n!", 0, 0, 0); + +-- UPDATE quest_template SET method = 0, TYPE = 0, flags = 4098, rewardfactionid1 = 69, rewardfactionvalueid1 = 6, RewardFactionValueIdOverride1 = 0, unknown0 = 1 WHERE id = 100000; +UPDATE quest_template SET QuestInfoID = 0, flags = 4098, RewardFactionID1 = 948, RewardFactionValue1 = 1, RewardFactionOverride1 = 0, unknown0 = 1 WHERE ID BETWEEN 100000 AND 100080; + +DELETE FROM item_template WHERE entry >= 100017 AND entry <= 154806 AND subclass IN (0, 5, 7,8,9,10); + +-- flag raid to raid quests +UPDATE `quest_template` SET `Flags` = 4290, QuestInfoID = 62 WHERE ID BETWEEN 100000 AND 100046; +UPDATE `quest_template` SET `Flags` = 4290, QuestInfoID = 62 WHERE ID = 100080; \ No newline at end of file diff --git a/data/sql/db-world/04_vendors.sql b/data/sql/db-world/04_vendors.sql new file mode 100644 index 0000000..29b9882 --- /dev/null +++ b/data/sql/db-world/04_vendors.sql @@ -0,0 +1,151 @@ +DELETE FROM npc_text WHERE ID IN (32001, 32010); +INSERT INTO npc_text (ID, text0_0, text0_1, lang0, em0_0) VALUES +(32001, "Qui si paga in Marks of Azeroth!", 0, 0, 0), +(32010, "Ti serve più reputazione!", 0, 0, 0); + +-- Quartermaster Ozorg (Dk start set vendor) +-- FRIENDLY +DELETE FROM `creature_template` WHERE (entry = 100100); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES +(100100, 0, 0, 0, 0, 0, 16214, 0, 0, 0, 'Quartermaster Ozorg', 'Acherus Quartermaster', '', 0, 72, 72, 1, 35, 128, 1, 1.14286, 1, 0, 0, 2000, 2000, 1, 33555202, 2048, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 1, 4, 1, 1, 0, 0, 1, 0, 128, '', 12340); + +-- requires friendly with azerothshard (3000 rep) +UPDATE creature_template SET `npcflag` = 129, `unit_flags` = 768, `type_flags` = 134217728, `flags_extra` = 2, scriptname = "npc_azth_vendor", `type` = 6 WHERE entry = 100100; + +DELETE FROM npc_vendor WHERE entry = 100100; +INSERT INTO npc_vendor (entry, item, extendedcost) VALUES +(100100, 38632, 3023), -- weapon +(100100, 38633, 3023), -- weapon +(100100, 38661, 3022), -- head +(100100, 38662, 3020), -- neck +(100100, 38663, 3022), -- shoulder +(100100, 38664, 3021), -- back +(100100, 38665, 3022), -- chest +(100100, 38666, 3021), -- bracer +(100100, 38667, 3022), -- hands +(100100, 38668, 3021), -- waist +(100100, 38669, 3022), -- leg +(100100, 38670, 3021), -- feet +(100100, 38671, 3020), -- ring +(100100, 38672, 3020), -- ring +(100100, 38674, 3020), -- trinket +(100100, 38675, 3020), -- trinket +(100100, 39320, 3021), -- back +(100100, 39322, 3021), -- back +(100100, 38707, 3023), -- weapon +(100100, 34648, 3021), -- feet +(100100, 34649, 3021), -- hands +(100100, 34650, 3022), -- chest +(100100, 34651, 3021), -- waist +(100100, 34652, 3022), -- head +(100100, 34653, 3021), -- wrist +(100100, 34655, 3021), -- shoulder +(100100, 34656, 3022), -- leg +(100100, 34657, 3020), -- neck +(100100, 34658, 3020), -- ring +(100100, 34659, 3021), -- back +(100100, 34661, 3023), -- weapon +(100100, 38147, 3020); -- ring + +DELETE FROM npc_text WHERE ID = 32000; +INSERT INTO npc_text (ID, text0_0, text0_1, lang0, em0_0) VALUES +(32000, "Se tu vuoi comprare, tu dare me Marks of Azeroth!", 0, 0, 0); + +UPDATE creature_template SET MovementType = 1 WHERE entry = 100100; -- set some random movement + +-- T3 Vendor +-- HONORED +DELETE FROM `creature_template` WHERE (entry = 100101); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES +(100101, 0, 0, 0, 0, 0, 10478, 0, 0, 0, 'Lord Raymond George', 'The Argent Dawn', '', 0, 72, 72, 1, 35, 128, 1, 1.14286, 1, 0, 0, 2000, 2000, 1, 33555202, 2048, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 1, 4, 1, 1, 0, 0, 1, 0, 128, '', 12340); + +UPDATE creature_template SET `npcflag` = 129, `unit_flags` = 768, `type_flags` = 134217728, `flags_extra` = 2, scriptname = "npc_azth_vendor", `type` = 6 WHERE entry = 100101; + +DELETE FROM npc_vendor WHERE entry = 100101; +INSERT INTO npc_vendor (entry, item, extendedcost) VALUES +(100101, 22349, 3025), +(100101, 22350, 3025), +(100101, 22351, 3025), +(100101, 22352, 3025), +(100101, 22353, 3025), +(100101, 22354, 3024), +(100101, 22355, 3024), +(100101, 22356, 3024), +(100101, 22357, 3024), +(100101, 22358, 3024), +(100101, 22359, 3025), +(100101, 22360, 3025), +(100101, 22361, 3024), +(100101, 22362, 3024), +(100101, 22363, 3024), +(100101, 22364, 3024), +(100101, 22365, 3024), +(100101, 22366, 3025), +(100101, 22367, 3025), +(100101, 22368, 3024), +(100101, 22369, 3024), +(100101, 22370, 3024), +(100101, 22371, 3024), +(100101, 22372, 3024), +(100101, 22373, 3021), +(100101, 22374, 3021), +(100101, 22375, 3021), +(100101, 22376, 3021); + +DELETE FROM npc_text WHERE ID = 32002; +INSERT INTO npc_text (ID, text0_0, text0_1, lang0, em0_0) VALUES +(32002, "Salve, $N. Sei qui per aiutare gli Argent Dawn? I tuoi Marks of Azeroth saranno estremamente utili per le nostre spese...", 0, 0, 0); + +-- Heirloom Vendor +-- Neutral +DELETE FROM `creature_template` WHERE (entry = 100102); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES +(100102, 0, 0, 0, 0, 0, 3709, 0, 0, 0, 'Arsenio', '', '', 0, 80, 80, 1, 35, 128, 1, 1.14286, 1, 0, 0, 2000, 2000, 1, 33555202, 2048, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 1, 4, 1, 1, 0, 0, 1, 0, 128, '', 12340); + +UPDATE creature_template SET `npcflag` = 129, `unit_flags` = 768, `type_flags` = 134217728, +`flags_extra` = 2, scriptname = "npc_azth_vendor", `type` = 6 WHERE entry = 100102; + +DELETE FROM npc_vendor WHERE entry = 100102; +INSERT INTO npc_vendor (entry, item, extendedcost) VALUES +(100102,'42943', 3023), +(100102,'42944', 3023), +(100102,'42945', 3023), +(100102,'42946', 3023), +(100102,'42947', 3023), +(100102,'42948', 3023), +(100102,'42949', 3023), +(100102,'42950', 3023), +(100102,'42951', 3023), +(100102,'42952', 3023), +(100102,'42984', 3023), +(100102,'42985', 3023), +(100102,'42991', 3023), +(100102,'42992', 3023), +(100102,'44091', 3023), +(100102,'44092', 3023), +(100102,'44093', 3023), +(100102,'44094', 3023), +(100102,'44095', 3023), +(100102,'44096', 3023), +(100102,'44097', 3023), +(100102,'44098', 3023), +(100102,'44099', 3023), +(100102,'44100', 3023), +(100102,'44101', 3023), +(100102,'44102', 3023), +(100102,'44103', 3023), +(100102,'44105', 3023), +(100102,'44107', 3023), +(100102,'48685', 3023), +(100102,'48691', 3023), +(100102,'48677', 3023), +(100102,'48687', 3023), +(100102,'48689', 3023), +(100102,'48683', 3023), +(100102,'48716', 3023), +(100102,'48718', 3023), +(100102,'50255', 3023); + +DELETE FROM npc_text WHERE ID = 32003; +INSERT INTO npc_text (ID, text0_0, text0_1, lang0, em0_0) VALUES +(32003, "Hey, tu! Vuoi un po' di roba? L'ho rubat.. ricevuta giusto ieri... In cambio ti chiedo solo qualche Mark of Azeroth per delle... ehm.. ricerche...", 0, 0, 0); \ No newline at end of file diff --git a/data/sql/db-world/05_quest_tier3.sql b/data/sql/db-world/05_quest_tier3.sql new file mode 100644 index 0000000..bc6f0da --- /dev/null +++ b/data/sql/db-world/05_quest_tier3.sql @@ -0,0 +1,216 @@ +-- TIER 3 QUESTS +-- DRUID +UPDATE quest_template_addon SET AllowableClasses = 1024 WHERE `id` BETWEEN 9086 AND 9093; +DELETE FROM disables WHERE entry BETWEEN 9086 AND 9093; +DELETE FROM creature_questender WHERE quest BETWEEN 9086 AND 9093; +DELETE FROM creature_queststarter WHERE quest BETWEEN 9086 AND 9093; +INSERT INTO creature_questender (id, quest) VALUES +(16135, 9086), +(16135, 9087), +(16135, 9088), +(16135, 9089), +(16135, 9090), +(16135, 9091), +(16135, 9092), +(16135, 9093); +INSERT INTO creature_queststarter (id, quest) VALUES +(16135, 9086), +(16135, 9087), +(16135, 9088), +(16135, 9089), +(16135, 9090), +(16135, 9091), +(16135, 9092), +(16135, 9093); + +-- HUNTER +UPDATE quest_template_addon SET AllowableClasses = 4 WHERE id BETWEEN 9054 AND 9061; +DELETE FROM disables WHERE entry BETWEEN 9054 AND 9061; +DELETE FROM creature_questender WHERE quest BETWEEN 9054 AND 9061; +DELETE FROM creature_queststarter WHERE quest BETWEEN 9054 AND 9061; +INSERT INTO creature_questender (id, quest) VALUES +(16132, 9054), +(16132, 9055), +(16132, 9056), +(16132, 9057), +(16132, 9058), +(16132, 9059), +(16132, 9060), +(16132, 9061); +INSERT INTO creature_queststarter (id, quest) VALUES +(16132, 9054), +(16132, 9055), +(16132, 9056), +(16132, 9057), +(16132, 9058), +(16132, 9059), +(16132, 9060), +(16132, 9061); + +-- MAGE +UPDATE quest_template_addon SET AllowableClasses = 128 WHERE id BETWEEN 9095 AND 9102; +DELETE FROM disables WHERE entry BETWEEN 9095 AND 9102; +DELETE FROM creature_questender WHERE quest BETWEEN 9095 AND 9102; +DELETE FROM creature_queststarter WHERE quest BETWEEN 9095 AND 9102; +INSERT INTO creature_questender (id, quest) VALUES +(16116, 9095), +(16116, 9096), +(16116, 9097), +(16116, 9098), +(16116, 9099), +(16116, 9100), +(16116, 9101), +(16116, 9102); +INSERT INTO creature_queststarter (id, quest) VALUES +(16116, 9095), +(16116, 9096), +(16116, 9097), +(16116, 9098), +(16116, 9099), +(16116, 9100), +(16116, 9101), +(16116, 9102); + +-- PALADIN +UPDATE quest_template_addon SET AllowableClasses = 2 WHERE id BETWEEN 9043 AND 9050; +DELETE FROM disables WHERE entry BETWEEN 9043 AND 9050; +DELETE FROM creature_questender WHERE quest BETWEEN 9043 AND 9050; +DELETE FROM creature_queststarter WHERE quest BETWEEN 9043 AND 9050; +INSERT INTO creature_questender (id, quest) VALUES +(16115, 9043), +(16115, 9044), +(16115, 9045), +(16115, 9046), +(16115, 9047), +(16115, 9048), +(16115, 9049), +(16115, 9050); +INSERT INTO creature_queststarter (id, quest) VALUES +(16115, 9043), +(16115, 9044), +(16115, 9045), +(16115, 9046), +(16115, 9047), +(16115, 9048), +(16115, 9049), +(16115, 9050); + +-- PRIEST +UPDATE quest_template_addon SET AllowableClasses = 16 WHERE id BETWEEN 9111 AND 9118; +DELETE FROM disables WHERE entry BETWEEN 9111 AND 9118; +DELETE FROM creature_questender WHERE quest BETWEEN 9111 AND 9118; +DELETE FROM creature_queststarter WHERE quest BETWEEN 9111 AND 9118; +INSERT INTO creature_questender (id, quest) VALUES +(16113, 9111), +(16113, 9112), +(16113, 9113), +(16113, 9114), +(16113, 9115), +(16113, 9116), +(16113, 9117), +(16113, 9118); +INSERT INTO creature_queststarter (id, quest) VALUES +(16113, 9043), +(16113, 9044), +(16113, 9045), +(16113, 9046), +(16113, 9047), +(16113, 9048), +(16113, 9049), +(16113, 9050); + +-- ROGUE +UPDATE quest_template_addon SET AllowableClasses = 8 WHERE id BETWEEN 9077 AND 9084; +DELETE FROM disables WHERE entry BETWEEN 9077 AND 9084; +DELETE FROM creature_questender WHERE quest BETWEEN 9077 AND 9084; +DELETE FROM creature_queststarter WHERE quest BETWEEN 9077 AND 9084; +INSERT INTO creature_questender (id, quest) VALUES +(16131, 9077), +(16131, 9078), +(16131, 9079), +(16131, 9080), +(16131, 9081), +(16131, 9082), +(16131, 9083), +(16131, 9084); +INSERT INTO creature_queststarter (id, quest) VALUES +(16131, 9077), +(16131, 9078), +(16131, 9079), +(16131, 9080), +(16131, 9081), +(16131, 9082), +(16131, 9083), +(16131, 9084); + +-- SHAMAN +UPDATE quest_template_addon SET AllowableClasses = 64 WHERE id BETWEEN 9068 AND 9075; +DELETE FROM disables WHERE entry BETWEEN 9068 AND 9075; +DELETE FROM creature_questender WHERE quest BETWEEN 9068 AND 9075; +DELETE FROM creature_queststarter WHERE quest BETWEEN 9068 AND 9075; +INSERT INTO creature_questender (id, quest) VALUES +(16134, 9068), +(16134, 9069), +(16134, 9070), +(16134, 9071), +(16134, 9072), +(16134, 9073), +(16134, 9074), +(16134, 9075); +INSERT INTO creature_queststarter (id, quest) VALUES +(16134, 9068), +(16134, 9069), +(16134, 9070), +(16134, 9071), +(16134, 9072), +(16134, 9073), +(16134, 9074), +(16134, 9075); + +-- WARLOCK +UPDATE quest_template_addon SET AllowableClasses = 256 WHERE id BETWEEN 9103 AND 9110; +DELETE FROM disables WHERE entry BETWEEN 9103 AND 9110; +DELETE FROM creature_questender WHERE quest BETWEEN 9103 AND 9110; +DELETE FROM creature_queststarter WHERE quest BETWEEN 9103 AND 9110; +INSERT INTO creature_questender (id, quest) VALUES +(16133, 9103), +(16133, 9104), +(16133, 9105), +(16133, 9106), +(16133, 9107), +(16133, 9108), +(16133, 9109), +(16133, 9110); +INSERT INTO creature_queststarter (id, quest) VALUES +(16133, 9103), +(16133, 9104), +(16133, 9105), +(16133, 9106), +(16133, 9107), +(16133, 9108), +(16133, 9109), +(16133, 9110); + +-- WARRIOR +UPDATE quest_template_addon SET AllowableClasses = 1 WHERE id = 9034 OR id BETWEEN 9036 AND 9042; +DELETE FROM disables WHERE entry = 9034 OR entry BETWEEN 9036 AND 9042; +DELETE FROM creature_questender WHERE quest = 9034 OR quest BETWEEN 9036 AND 9042; +DELETE FROM creature_queststarter WHERE quest = 9034 OR quest BETWEEN 9036 AND 9042; +INSERT INTO creature_questender (id, quest) VALUES +(16112, 9034), +(16112, 9036), +(16112, 9037), +(16112, 9038), +(16112, 9039), +(16112, 9040), +(16112, 9041), +(16112, 9042); +INSERT INTO creature_queststarter (id, quest) VALUES +(16112, 9034), +(16112, 9036), +(16112, 9037), +(16112, 9038), +(16112, 9039), +(16112, 9040), +(16112, 9041), +(16112, 9042); \ No newline at end of file diff --git a/data/sql/db-world/06_pvp_quests.sql b/data/sql/db-world/06_pvp_quests.sql new file mode 100644 index 0000000..86caadb --- /dev/null +++ b/data/sql/db-world/06_pvp_quests.sql @@ -0,0 +1,216 @@ +DELETE FROM creature_template WHERE entry >= 110000 AND entry <= 120000; +INSERT INTO creature_template (entry, killcredit1, modelid1, `name`, minlevel, maxlevel, faction, npcflag, unit_flags, unit_flags2, dynamicflags, flags_extra) VALUES +-- (110000, 110000, 17519, "Template", 1, 1, 14, 0, 0, 0, 0, 0), +(110001, 110001, 17519, "Alterac Valley Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110002, 110002, 17519, "Warsong Gulch Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110003, 110003, 17519, "Arathi Basin Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110004, 110004, 17519, "Eye of the Storm Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110005, 110005, 17519, "Strand of the Ancients Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110006, 110006, 17519, "Isle of Conquest Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110007, 110007, 17519, "Arathi Basin Flag Capture Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110008, 110008, 17519, "Warsong Gulch Flag Capture Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110009, 110009, 17519, "Warsong Gulch Flag Recover Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110010, 110010, 17519, "Eye of the Storm Flag Capture Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110011, 110011, 17519, "Alterac Valley Graveyard Capture Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110012, 110012, 17519, "Alterac Valley Tower Defense Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110013, 110013, 17519, "Alterac Valley Tower Capture Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110014, 110014, 17519, "Arathi Basin Base Defense Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110015, 110015, 17519, "Alterac Valley Graveyard Capture Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110016, 110016, 17519, "Isle of Conquest Base Capture Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110017, 110017, 17519, "Isle of Conquest Base Defend Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110018, 110018, 17519, "Kill a Warrior Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110019, 110019, 17519, "Kill a Paladin Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110020, 110020, 17519, "Kill a Hunter Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110021, 110021, 17519, "Kill a Rogue Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110022, 110022, 17519, "Kill a Priest Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110023, 110023, 17519, "Kill a Death Knight Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110024, 110024, 17519, "Kill a Shaman Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110025, 110025, 17519, "Kill a Mage Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110026, 110026, 17519, "Kill a Warlock Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110027, 110027, 17519, "Kill a Druid Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110028, 110028, 17519, "Kill a Human Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110029, 110029, 17519, "Kill an Orc Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110030, 110030, 17519, "Kill a Dwarf Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110031, 110031, 17519, "Kill a Night Elf Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110032, 110032, 17519, "Kill an Undead Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110033, 110033, 17519, "Kill a Tauren Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110034, 110034, 17519, "Kill a Gnome Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110035, 110035, 17519, "Kill a Troll Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110036, 110036, 17519, "Kill a Blood Elf Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110037, 110037, 17519, "Kill a Draenei Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110038, 110038, 17519, "Get a Killing Blow Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110039, 110039, 17519, "Earn Honorable Kill Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0), +(110040, 110040, 17519, "Win Duel Kill Credit", 1, 1, 14, 0, 0, 0, 0, 0) +; + +-- debug quests +DELETE FROM quest_template WHERE id >= 110000 AND id <= 110039; +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`, ObjectiveText1) VALUES +('110000','2','3840','12482','Vinci Alterac Valley','Vinci Alterac Valley','Vinci Alterac Valley','Ritorna da Han\'al','110001','1', "Vinci Alterac Valley"), +('110001','2','3840','12482','Vinci Warsong Gulch','Vinci Warsong Gulch','Vinci Warsong Gulch','Ritorna da Han\'al','110002','1', "Vinci Warsong Gulch"), +(110002, '2','3840','12482', 'Vinci Arathi Basin', 'Vinci Arathi Basin', 'Vinci Arathi Basin', 'Ritorna da Han\'al', 110003, 1, 'Vinci Arathi Basin'), +(110003, '2','3840','12482', 'Vinci Eye of the Storm', 'Vinci Eye of the Storm', 'Vinci Eye of the Storm', 'Ritorna da Han\'al', 110004, 1, 'Vinci Eye of the Storm'), +(110004, '2','3840','12482', 'Vinci Strand of the Ancients', 'Vinci Strand of the Ancients', 'Vinci Strand of the Ancients', 'Ritorna da Han\'al', 110005, 1, 'Vinci Strand of the Ancients'), +(110005, '2','3840','12482', 'Vinci Isle of Conquest', 'Vinci Isle of Conquest', 'Vinci Isle of Conquest', 'Ritorna da Han\'al', 110006, 1, 'Vinci Isle of Conquest'), +(110006, '2','3840','12482', 'Arathi Basin Flag Capture', 'Arathi Basin Flag Capture', 'Arathi Basin Flag Capture', 'Ritorna da Han\'al', 110007, 1, 'Arathi Basin Flag Capture'), +(110007, '2','3840','12482', 'Warsong Gulch Flag Capture', 'Warsong Gulch Flag Capture', 'Warsong Gulch Flag Capture', 'Ritorna da Han\'al', 110008, 1, 'Warsong Gulch Flag Capture'), +(110008, '2','3840','12482', 'Warsong Gulch Flag Recover', 'Warsong Gulch Flag Recover', 'Warsong Gulch Flag Recover', 'Ritorna da Han\'al', 110009, 1, 'Warsong Gulch Flag Recover'), +(110009, '2','3840','12482', 'Eye of the Storm Flag Capture', 'Eye of the Storm Flag Capture', 'Eye of the Storm Flag Capture', 'Ritorna da Han\'al', 110010, 1, 'Eye of the Storm Flag Capture'), +(110010, '2','3840','12482', 'Alterac Valley Graveyard Capture', 'Alterac Valley Graveyard Capture', 'Alterac Valley Graveyard Capture', 'Ritorna da Han\'al', 110011, 1, 'Alterac Valley Graveyard Capture'), +(110011, '2','3840','12482', 'Alterac Valley Tower Defense', 'Alterac Valley Tower Defense', 'Alterac Valley Tower Defense', 'Ritorna da Han\'al', 110012, 1, 'Alterac Valley Tower Defense'), +(110012, '2','3840','12482', 'Alterac Valley Tower Capture', 'Alterac Valley Tower Capture', 'Alterac Valley Tower Capture', 'Ritorna da Han\'al', 110013, 1, 'Alterac Valley Tower Capture'), +(110013, '2','3840','12482', 'Arathi Basin Base Defense', 'Arathi Basin Base Defense', 'Arathi Basin Base Defense', 'Ritorna da Han\'al', 110014, 1, 'Arathi Basin Base Defense'), +(110014, '2','3840','12482', 'Alterac Valley Graveyard Capture', 'Alterac Valley Graveyard Capture', 'Alterac Valley Graveyard Capture', 'Ritorna da Han\'al', 110015, 1, 'Alterac Valley Graveyard Capture'), +(110015, '2','3840','12482', 'Isle of Conquest Base Capture', 'Isle of Conquest Base Capture', 'Isle of Conquest Base Capture', 'Ritorna da Han\'al', 110016, 1, 'Isle of Conquest Base Capture'), +(110016, '2','3840','12482', 'Isle of Conquest Base Defend', 'Isle of Conquest Base Defend', 'Isle of Conquest Base Defend', 'Ritorna da Han\'al', 110017, 1, 'Isle of Conquest Base Defend'), +(110017, '2','3840','12482', 'Kill a Warrior', 'Kill a Warrior', 'Kill a Warrior', 'Ritorna da Han\'al', 110018, 1, 'Kill a Warrior'), +(110018, '2','3840','12482', 'Kill a Paladin', 'Kill a Paladin', 'Kill a Paladin', 'Ritorna da Han\'al', 110019, 1, 'Kill a Paladin'), +(110019, '2','3840','12482', 'Kill a Hunter', 'Kill a Hunter', 'Kill a Hunter', 'Ritorna da Han\'al', 110020, 1, 'Kill a Hunter'), +(110020, '2','3840','12482', 'Kill a Rogue', 'Kill a Rogue', 'Kill a Rogue', 'Ritorna da Han\'al', 110021, 1, 'Kill a Rogue'), +(110021, '2','3840','12482', 'Kill a Priest', 'Kill a Priest', 'Kill a Priest', 'Ritorna da Han\'al', 110022, 1, 'Kill a Priest'), +(110022, '2','3840','12482', 'Kill a Death Knight', 'Kill a Death Knight', 'Kill a Death Knight', 'Ritorna da Han\'al', 110023, 1, 'Kill a Death Knight'), +(110023, '2','3840','12482', 'Kill a Shaman', 'Kill a Shaman', 'Kill a Shaman', 'Ritorna da Han\'al', 110024, 1, 'Kill a Shaman'), +(110024, '2','3840','12482', 'Kill a Mage', 'Kill a Mage', 'Kill a Mage', 'Ritorna da Han\'al', 110025, 1, 'Kill a Mage'), +(110025, '2','3840','12482', 'Kill a Warlock', 'Kill a Warlock', 'Kill a Warlock', 'Ritorna da Han\'al', 110026, 1, 'Kill a Warlock'), +(110026, '2','3840','12482', 'Kill a Druid', 'Kill a Druid', 'Kill a Druid', 'Ritorna da Han\'al', 110027, 1, 'Kill a Druid'), +(110027, '2','3840','12482', 'Kill a Human', 'Kill a Human', 'Kill a Human', 'Ritorna da Han\'al', 110028, 1, 'Kill a Human'), +(110028, '2','3840','12482', 'Kill an Orc', 'Kill an Orc', 'Kill an Orc', 'Ritorna da Han\'al', 110029, 1, 'Kill an Orc'), +(110029, '2','3840','12482', 'Kill a Dwarf', 'Kill a Dwarf', 'Kill a Dwarf', 'Ritorna da Han\'al', 110030, 1, 'Kill a Dwarf'), +(110030, '2','3840','12482', 'Kill a Night Elf', 'Kill a Night Elf', 'Kill a Night Elf', 'Ritorna da Han\'al', 110031, 1, 'Kill a Night Elf'), +(110031, '2','3840','12482', 'Kill an Undead', 'Kill an Undead', 'Kill an Undead', 'Ritorna da Han\'al', 110032, 1, 'Kill an Undead'), +(110032, '2','3840','12482', 'Kill a Tauren', 'Kill a Tauren', 'Kill a Tauren', 'Ritorna da Han\'al', 110033, 1, 'Kill a Tauren'), +(110033, '2','3840','12482', 'Kill a Gnome', 'Kill a Gnome', 'Kill a Gnome', 'Ritorna da Han\'al', 110034, 1, 'Kill a Gnome'), +(110034, '2','3840','12482', 'Kill a Troll', 'Kill a Troll', 'Kill a Troll', 'Ritorna da Han\'al', 110035, 1, 'Kill a Troll'), +(110035, '2','3840','12482', 'Kill a Blood Elf', 'Kill a Blood Elf', 'Kill a Blood Elf', 'Ritorna da Han\'al', 110036, 1, 'Kill a Blood Elf'), +(110036, '2','3840','12482', 'Kill a Draenei', 'Kill a Draenei', 'Kill a Draenei', 'Ritorna da Han\'al', 110037, 1, 'Kill a Draenei'), +(110037, '2','3840','12482', 'Get a Killing Blow', 'Get a Killing Blow', 'Get a Killing Blow', 'Ritorna da Han\'al', 110038, 1, 'Get a Killing Blow'), +(110038, '2','3840','12482', 'Earn Honorable Kill', 'Earn Honorable Kill', 'Earn Honorable Kill', 'Ritorna da Han\'al', 110039, 1, 'Earn Honorable Kill'), +(110039, '2','3840','12482', 'Win Duel', 'Win Duel', 'Win Duel', 'Ritorna da Han\'al', 110040, 1, 'Win Duel') +; + +UPDATE quest_template SET minlevel = 80, OfferRewardText = "Bravo, $N", RequestItemsText = "Si, $N?" WHERE id >= 110000 AND id <= 110300; + + +-- real quests +DELETE FROM quest_template WHERE id >= 110040 AND id <= 110095; +INSERT INTO `quest_template` (`id`, `QuestInfoID`, `QuestSortID`, `Flags`, `LogTitle`, `LogDescription`, `QuestDescription`, `OfferRewardText`, `RequiredNpcOrGo1`, `RequiredNpcOrGoCount1`, ObjectiveText1, RewardItem1, RewardAmount1) VALUES +(110040,'2','3840','12482','Vinci 2 Warsong Gulch','Vai, $N, la battaglia di Warsong Gulch ti attende! Da sempre orchi ed elfi della notte si sfidano in quelle terre... Prendi parte al conflitto e torna vittorioso a raccontarmelo!','Vinci Warsong Gulch','Ritorna da Han\'al','110002','2', "Warsong Gulch vinti", 37711, 2), +(110041,'2','3840','12482','Vinci 4 Warsong Gulch','Vai, $N, la battaglia di Warsong Gulch ti attende! Da sempre orchi ed elfi della notte si sfidano in quelle terre... Prendi parte al conflitto e torna vittorioso a raccontarmelo!','Vinci Warsong Gulch','Ritorna da Han\'al','110002','4', "Warsong Gulch vinti", 37711, 3), +(110042,'2','3840','12482','Vinci 2 Arathi Basin','Vai, $N, la battaglia di Arathi Basin ti attende! I Forsaken e la Lega di Arathor cercano di accumulare le ricchezze del luogo... aiuta una delle due parti e torna vincitore a raccontarmelo!','Vinci Arathi Basin','Ritorna da Han\'al','110003','2', "Arathi Basin vinti", 37711, 2), +(110043,'2','3840','12482','Vinci 4 Arathi Basin','Vai, $N, la battaglia di Arathi Basin ti attende! I Forsaken e la Lega di Arathor cercano di accumulare le ricchezze del luogo... aiuta una delle due parti e torna vincitore a raccontarmelo!','Vinci Arathi Basin','Ritorna da Han\'al','110003','4', "Arathi Basin vinti", 37711, 3), +(110044,'2','3840','12482','Vinci 2 Eye of the Storm','Vai, $N, la battaglia di Eye of the Storm ti attende! Corri a Netherstorm e prendi parte al conflitto... torna vittorioso a raccontarmelo!','Vinci Eye of the Storm','Ritorna da Han\'al','110004','2', "Eye of the Storm vinti", 37711, 2), +(110045,'2','3840','12482','Vinci 4 Eye of the Storm','Vai, $N, la battaglia di Eye of the Storm ti attende! Corri a Netherstorm e prendi parte al conflitto... torna vittorioso a raccontarmelo!','Vinci Eye of the Storm','Ritorna da Han\'al','110004','4', "Eye of the Storm vinti", 37711, 3), +(110046,'2','3840','12482','Cattura 3 flag in Arathi Basin','Cattura 3 flag in Arathi Basin!','Cattura 3 flag in Arathi Basin','Ritorna da Han\'al','110007','3', "Arathi Basin flag catturate", 37711, 2), +(110047,'2','3840','12482','Cattura 5 flag in Arathi Basin','Cattura 5 flag in Arathi Basin!','Cattura 5 flag in Arathi Basin','Ritorna da Han\'al','110007','5', "Arathi Basin flag catturate", 37711, 3), +(110048,'2','3840','12482','Cattura 3 flag in Warsong Gulch','Cattura 3 flag in Warsong Gulch!','Cattura 3 flag in Warsong Gulch','Ritorna da Han\'al','110008','3', "Warsong Gulch flag catturate", 37711, 2), +(110049,'2','3840','12482','Cattura 5 flag in Warsong Gulch','Cattura 5 flag in Warsong Gulch!','Cattura 5 flag in Warsong Gulch','Ritorna da Han\'al','110008','5', "Warsong Gulch flag catturate", 37711, 3), +(110050,'2','3840','12482','Recupera 2 flag in Warsong Gulch','Recupera 2 flag in Warsong Gulch!','Recupera 2 flag in Warsong Gulch','Ritorna da Han\'al','110009','2', "Warsong Gulch flag recuperate", 37711, 2), +(110051,'2','3840','12482','Recupera 3 flag in Warsong Gulch','Recupera 3 flag in Warsong Gulch!','Recupera 3 flag in Warsong Gulch','Ritorna da Han\'al','110009','3', "Warsong Gulch flag recuperate", 37711, 3), +(110052,'2','3840','12482','Cattura 2 flag in Eye of the Storm','Cattura 2 flag in Eye of the Storm!','Cattura 2 flag in Eye of the Storm','Ritorna da Han\'al','110010','2', "Eye of the Storm flag catturate", 37711, 2), +(110053,'2','3840','12482','Cattura 4 flag in Eye of the Storm','Cattura 4 flag in Eye of the Storm!','Cattura 4 flag in Eye of the Storm','Ritorna da Han\'al','110010','4', "Eye of the Storm flag catturate", 37711, 3), +(110054,'2','3840','12482','Difendi 3 basi in Arathi Basin','Difendi 3 basi in Arathi Basin!','Difendi 3 basi in Arathi Basin','Ritorna da Han\'al','110014','3', "Arathi Basin basi difese", 37711, 2), +(110055,'2','3840','12482','Difendi 5 basi in Arathi Basin','Difendi 5 basi in Arathi Basin!','Difendi 5 basi in Arathi Basin','Ritorna da Han\'al','110014','5', "Arathi Basin basi difese", 37711, 3), +(110056,'2','3840','12482','Nerfate il Bladestorm','Uccidi 5 Warrior','Uccidi 5 Warrior','Ritorna da Han\'al','110018','5', "Warrior Uccisi", 37711, 2), +(110057,'2','3840','12482','Mortal Strike op','Uccidi 10 Warrior','Uccidi 10 Warrior','Ritorna da Han\'al','110018','10', "Warrior Uccisi", 37711, 3), +(110058,'2','3840','12482','Come li uccido se hanno il Divine Shield?','Uccidi 5 Paladin','Uccidi 5 Paladin','Ritorna da Han\'al','110019','5', "Paladin Uccisi", 37711, 2), +(110059,'2','3840','12482','Odio per i pala','Uccidi 10 Paladin','Uccidi 10 Paladin','Ritorna da Han\'al','110019','10', "Paladin Uccisi", 37711, 3), +(110060,'2','3840','12482','Uccidili prima che ti uccidano','Uccidi 5 Hunter','Uccidi 5 Hunter','Ritorna da Han\'al','110020','5', "Hunter Uccisi", 37711, 2), +(110061,'2','3840','12482','Tanto hanno quaranta Deterrance','Uccidi 10 Hunter','Uccidi 10 Hunter','Ritorna da Han\'al','110020','10', "Warrior Hunter", 37711, 3), +(110062,'2','3840','12482','They do it from behind','Uccidi 5 Rogue','Uccidi 5 Rogue','Ritorna da Han\'al','110021','5', "Rogue Uccisi", 37711, 2), +(110063,'2','3840','12482','Stai per uccidermi? LOL no, vanish, cos, sprint, bye','Uccidi 10 Rogue','Uccidi 10 Rogue','Ritorna da Han\'al','110021','10', "Rogue Uccisi", 37711, 3), +(110064,'2','3840','12482','Ma è Illidan? Ah, no :,(','Uccidi 5 Warlock','Uccidi 5 Warlock','Ritorna da Han\'al','110026','5', "Warlock Uccisi", 37711, 2), +(110065,'2','3840','12482','Fear, fear, fear','Uccidi 10 Warlock','Uccidi 10 Warlock','Ritorna da Han\'al','110026','10', "Warlock Uccisi", 37711, 3), +(110066,'2','3840','12482','Tanto va in Bear Form e diventa immortale...','Uccidi 5 Druid','Uccidi 5 Druid','Ritorna da Han\'al','110027','5', "Druid Uccisi", 37711, 2), +(110067,'2','3840','12482','Orsopollooo','Uccidi 10 Druid','Uccidi 10 Druid','Ritorna da Han\'al','110027','10', "Druid Uccisi", 37711, 3), +(110068,'2','3840','12482','Ognuno per sè?','Uccidi 4 Human','Uccidi 4 Human','Ritorna da Han\'al','110028','4', "Human Uccisi", 37711, 2), +(110069,'2','3840','12482','Massacro a Stormwind','Uccidi 7 Human','Uccidi 7 Human','Ritorna da Han\'al','110028','7', "Human Uccisi", 37711, 3), +(110070,'2','3840','12482','Orgrimmar reputation','Uccidi 4 Orc','Uccidi 4 Orc','Ritorna da Han\'al','110029','4', "Orc Uccisi", 37711, 2), +(110071,'2','3840','12482','Ma non assomiglia a Shrek','Uccidi 7 Orc','Uccidi 7 Orc','Ritorna da Han\'al','110029','7', "Orc Uccisi", 37711, 3), +(110072,'2','3840','12482','Ma non è uno gnomo?','Uccidi 4 Dwarf','Uccidi 4 Dwarf','Ritorna da Han\'al','110030','4', "Dwarf Uccisi", 37711, 2), +(110073,'2','3840','12482','Re Magni in pensione','Uccidi 7 Dwarf','Uccidi 7 Dwarf','Ritorna da Han\'al','110030','7', "Dwarf Uccisi", 37711, 3), +(110074,'2','3840','12482','Taglialegna','Uccidi 4 Night Elf','Uccidi 4 Night Elf','Ritorna da Han\'al','110031','4', "Night Elf Uccisi", 37711, 2), +(110075,'2','3840','12482','Ma non erano buggati?','Uccidi 7 Night Elf','Uccidi 7 Night Elf','Ritorna da Han\'al','110031','7', "Night Elf Uccisi", 37711, 3), +(110076,'2','3840','12482','Ma è già morto...','Uccidi 4 Undead','Uccidi 4 Undead','Ritorna da Han\'al','110032','4', "Undead Uccisi", 37711, 2), +(110077,'2','3840','12482','Mmm... che profumino...','Uccidi 7 Undead','Uccidi 7 Undead','Ritorna da Han\'al','110032','7', "Undead Uccisi", 37711, 3), +(110078,'2','3840','12482','Mucche Killer','Uccidi 4 Tauren','Uccidi 4 Tauren','Ritorna da Han\'al','110033','4', "Tauren Uccisi", 37711, 2), +(110079,'2','3840','12482','Tutti cornuti','Uccidi 7 Tauren','Uccidi 7 Tauren','Ritorna da Han\'al','110033','7', "Tauren Uccisi", 37711, 3), +(110080,'2','3840','12482','Non si distinguono','Uccidi 4 Gnome','Uccidi 4 Gnome','Ritorna da Han\'al','110034','4', "Gnome Uccisi", 37711, 2), +(110081,'2','3840','12482','Basso è bello','Uccidi 7 Gnome','Uccidi 7 Gnome','Ritorna da Han\'al','110034','7', "Gnome Uccisi", 37711, 3), +(110082,'2','3840','12482','Rock and Troll','Uccidi 4 Troll','Uccidi 4 Troll','Ritorna da Han\'al','110035','4', "Troll Uccisi", 37711, 2), +(110083,'2','3840','12482','Vodoo is life','Uccidi 7 Troll','Uccidi 7 Troll','Ritorna da Han\'al','110035','7', "Troll Uccisi", 37711, 3), +(110084,'2','3840','12482','Sig Nicious I love you','Uccidi 4 Blood Elf','Uccidi 4 Blood Elf','Ritorna da Han\'al','110036','4', "Blood Elf Uccisi", 37711, 2), +(110085,'2','3840','12482','Preferivo senza Sunwell','Uccidi 7 Blood Elf','Uccidi 7 Blood Elf','Ritorna da Han\'al','110036','7', "Blood Elf Uccisi", 37711, 3), +(110086,'2','3840','12482','Rimandateli sul loro pianeta! Ruspa!','Uccidi 4 Draenei','Uccidi 4 Draenei','Ritorna da Han\'al','110037','4', "Draenei Uccisi", 37711, 2), +(110087,'2','3840','12482','Odio per i Draenei','Uccidi 7 Draenei','Uccidi 7 Draenei','Ritorna da Han\'al','110037','7', "Draenei Uccisi", 37711, 3), +(110088,'2','3840','12482','Occhio al Mind Control','Uccidi 5 Priest','Uccidi 5 Priest','Ritorna da Han\'al','110022','5', "Priest Uccisi", 37711, 2), +(110089,'2','3840','12482','Tanto ti shottano anche da Disci...','Uccidi 10 Priest','Uccidi 10 Priest','Ritorna da Han\'al','110022','10', "Priest Uccisi", 37711, 3), +(110090,'2','3840','12482','Incubo per i caster','Uccidi 5 Death Knight','Uccidi 5 Death Knight','Ritorna da Han\'al','110023','5', "Death Knight Uccisi", 37711, 2), +(110091,'2','3840','12482','Ah, ma è immune agli stun??','Uccidi 10 Death Knight','Uccidi 10 Death Knight','Ritorna da Han\'al','110023','10', "Death Knight Uccisi", 37711, 3), +(110092,'2','3840','12482','Non fanno abbastanza danno','Uccidi 5 Shaman','Uccidi 5 Shaman','Ritorna da Han\'al','110024','5', "Shaman Uccisi", 37711, 2), +(110093,'2','3840','12482','Ma quello è un Lava Bur..','Uccidi 10 Shaman','Uccidi 10 Shaman','Ritorna da Han\'al','110024','10', "Shaman Uccisi", 37711, 3), +(110094,'2','3840','12482','Ice Barrier indistruttibile','Uccidi 5 Mage','Uccidi 5 Mage','Ritorna da Han\'al','110025','5', "Mage Uccisi", 37711, 2), +(110095,'2','3840','12482','Ma quanto scappa col Blink?!','Uccidi 10 Mage','Uccidi 10 Mage','Ritorna da Han\'al','110025','10', "Mage Uccisi", 37711, 3); + +UPDATE quest_template SET minlevel = 80, questlevel = 80, OfferRewardText = "Bravo, $N", RequestItemsText = "Si, $N?" WHERE id >= 110040 AND id <= 110095; +UPDATE quest_template SET QuestInfoID = 41, flags = 4098, RewardFactionID1 = 948, RewardFactionValue1 = 1, RewardFactionOverride1 = 0, unknown0 = 1, QuestSortID = -241 WHERE id >= 110040 AND id <= 110095; + +DELETE FROM creature_questender WHERE id = 100001 AND quest >= 110040 AND quest <= 110095; +INSERT INTO creature_questender (id, quest) VALUES +(100001, 110040), +(100001, 110041), +(100001, 110042), +(100001, 110043), +(100001, 110044), +(100001, 110045), +(100001, 110046), +(100001, 110047), +(100001, 110048), +(100001, 110049), +(100001, 110050), +(100001, 110051), +(100001, 110052), +(100001, 110053), +(100001, 110054), +(100001, 110055), +(100001, 110056), +(100001, 110057), +(100001, 110058), +(100001, 110059), +(100001, 110060), +(100001, 110061), +(100001, 110062), +(100001, 110063), +(100001, 110064), +(100001, 110065), +(100001, 110066), +(100001, 110067), +(100001, 110068), +(100001, 110069), +(100001, 110070), +(100001, 110071), +(100001, 110072), +(100001, 110073), +(100001, 110074), +(100001, 110075), +(100001, 110076), +(100001, 110077), +(100001, 110078), +(100001, 110079), +(100001, 110080), +(100001, 110081), +(100001, 110082), +(100001, 110083), +(100001, 110084), +(100001, 110085), +(100001, 110086), +(100001, 110087), +(100001, 110088), +(100001, 110089), +(100001, 110090), +(100001, 110091), +(100001, 110092), +(100001, 110093), +(100001, 110094), +(100001, 110095); + +UPDATE quest_template SET LogDescription = CONCAT(LogDescription, " in Battleground.") WHERE id <= 110095 AND id > 110055; \ No newline at end of file diff --git a/data/sql/db-world/07_sacks_of_marks.sql b/data/sql/db-world/07_sacks_of_marks.sql new file mode 100644 index 0000000..ab36b15 --- /dev/null +++ b/data/sql/db-world/07_sacks_of_marks.sql @@ -0,0 +1,61 @@ +SET @ENTRY:=110000; +SET @MIN:=20; +SET @MAX:=20; +SET @NAME:="Sack of Marks"; +SET @DESCRIPTION:="Contiente 20 Marks of Azeroth"; +SET @EXTCOST:=3022; + + +DELETE FROM `item_template` WHERE (entry = @ENTRY); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(@ENTRY, 15, 0, -1, @NAME, 4056, 1, 4, 0, 1, 0, 0, 0, -1, -1, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, @DESCRIPTION, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 12340); + +DELETE FROM `item_loot_template` WHERE (entry = @ENTRY); +INSERT INTO `item_loot_template` (`entry`, `item`, `ChanceOrQuestChance`, `lootmode`, `groupid`, `mincountOrRef`, `maxcount`) VALUES +(@ENTRY, 37711, 100, 1, 0, @MIN, @MAX); + + +DELETE FROM npc_vendor WHERE item = @ENTRY; +INSERT INTO npc_vendor VALUES (100002, 0, @ENTRY, 0, 0, @EXTCOST); + + +SET @ENTRY:=110001; +SET @MIN:=5; +SET @MAX:=5; +SET @NAME:="Sack of Marks"; +SET @DESCRIPTION:="Contiente 5 Marks of Azeroth"; +SET @EXTCOST:=3020; + + +DELETE FROM `item_template` WHERE (entry = @ENTRY); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(@ENTRY, 15, 0, -1, @NAME, 4056, 1, 4, 0, 1, 0, 0, 0, -1, -1, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, @DESCRIPTION, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 12340); + +DELETE FROM `item_loot_template` WHERE (entry = @ENTRY); +INSERT INTO `item_loot_template` (`entry`, `item`, `ChanceOrQuestChance`, `lootmode`, `groupid`, `mincountOrRef`, `maxcount`) VALUES +(@ENTRY, 37711, 100, 1, 0, @MIN, @MAX); + + +DELETE FROM npc_vendor WHERE item = @ENTRY; +INSERT INTO npc_vendor VALUES (100002, 0, @ENTRY, 0, 0, @EXTCOST); + + +SET @ENTRY:=110002; +SET @MIN:=100; +SET @MAX:=100; +SET @NAME:="Sack of Marks"; +SET @DESCRIPTION:="Contiente 100 Marks of Azeroth"; +SET @EXTCOST:=3025; + + +DELETE FROM `item_template` WHERE (entry = @ENTRY); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(@ENTRY, 15, 0, -1, @NAME, 4056, 1, 4, 0, 1, 0, 0, 0, -1, -1, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, @DESCRIPTION, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 12340); + +DELETE FROM `item_loot_template` WHERE (entry = @ENTRY); +INSERT INTO `item_loot_template` (`entry`, `item`, `ChanceOrQuestChance`, `lootmode`, `groupid`, `mincountOrRef`, `maxcount`) VALUES +(@ENTRY, 37711, 100, 1, 0, @MIN, @MAX); + + +DELETE FROM npc_vendor WHERE item = @ENTRY; +INSERT INTO npc_vendor VALUES (100002, 0, @ENTRY, 0, 0, @EXTCOST); \ No newline at end of file diff --git a/data/sql/db-world/08_update.sql b/data/sql/db-world/08_update.sql new file mode 100644 index 0000000..ea0ac7f --- /dev/null +++ b/data/sql/db-world/08_update.sql @@ -0,0 +1,2 @@ +-- update daily quests reward to 75 +UPDATE quest_template SET RewardFactionValue1 = 3 WHERE (id <= 110095 AND id >= 110040) OR (id >= 100000 AND id <= 100100); \ No newline at end of file diff --git a/data/sql/db-world/09_lfg_rewards_update.sql b/data/sql/db-world/09_lfg_rewards_update.sql new file mode 100644 index 0000000..84c083a --- /dev/null +++ b/data/sql/db-world/09_lfg_rewards_update.sql @@ -0,0 +1,11 @@ +-- First query is the daily quest +-- RewardFactionValue1 = 3 -> 75 +-- RewardFactionValue1 = 1 -> 25 +UPDATE quest_template SET RewardFactionID1 = 948, RewardFactionValue1 = 3, RewardItem2 = 37711, RewardAmount2 = 3 WHERE id IN (SELECT firstQuestId FROM lfg_dungeon_rewards); + +-- this second query is always completed at each dungeon (except the first) +-- +UPDATE quest_template SET RewardFactionID1 = 948, RewardFactionValue1 = 1 WHERE id IN (SELECT otherQuestId FROM lfg_dungeon_rewards); + +-- revert +-- update quest_template set RewardFactionID1 = 0, RewardFactionValue1 = 0, RewardItem2 = 0, RewardAmount2 = 0 where id IN (SELECT firstQuestId FROM lfg_dungeon_rewards ) OR id IN (SELECT otherQuestId FROM lfg_dungeon_rewards); diff --git a/data/sql/db-world/10_pvp_quest_english.sql b/data/sql/db-world/10_pvp_quest_english.sql new file mode 100644 index 0000000..e7fe985 --- /dev/null +++ b/data/sql/db-world/10_pvp_quest_english.sql @@ -0,0 +1,56 @@ +UPDATE quest_template SET LogTitle = '2 Warsong Gulch Victories' WHERE id = 110040; +UPDATE quest_template SET LogTitle = '4 Warsong Gulch Victories' WHERE id = 110041; +UPDATE quest_template SET LogTitle = '2 Arathi Basin Victories' WHERE id = 110042; +UPDATE quest_template SET LogTitle = '4 Arathi Basin Victories' WHERE id = 110043; +UPDATE quest_template SET LogTitle = '2 Eye of the Storm Victories' WHERE id = 110044; +UPDATE quest_template SET LogTitle = '4 Eye of the Storm Victories' WHERE id = 110045; +UPDATE quest_template SET LogTitle = 'Defend 3 bases on Arathi Basin' WHERE id = 110046; +UPDATE quest_template SET LogTitle = 'Defend 5 bases on Arathi Basin' WHERE id = 110047; +UPDATE quest_template SET LogTitle = 'Capture 3 flags on Warsong Gulch' WHERE id = 110048; +UPDATE quest_template SET LogTitle = 'Capture 5 flags on Warsong Gulch' WHERE id = 110049; +UPDATE quest_template SET LogTitle = 'Recover 2 flags on Warsong Gulch' WHERE id = 110050; +UPDATE quest_template SET LogTitle = 'Recover 4 flags on Warsong Gulch' WHERE id = 110051; +UPDATE quest_template SET LogTitle = 'Capture 2 flags on Eye of the Storm' WHERE id = 110052; +UPDATE quest_template SET LogTitle = 'Capture 4 flags on Eye of the Storm' WHERE id = 110053; +UPDATE quest_template SET LogTitle = 'Take 3 bases on Arathi Basin' WHERE id = 110054; +UPDATE quest_template SET LogTitle = 'Take 5 bases on Arathi Basin' WHERE id = 110055; +UPDATE quest_template SET LogTitle = 'Nerf Bladestorm pls' WHERE id = 110056; +UPDATE quest_template SET LogTitle = 'Mortal Strike OP' WHERE id = 110057; +UPDATE quest_template SET LogTitle = 'How can I kill them in Divine Shield?' WHERE id = 110058; +UPDATE quest_template SET LogTitle = 'I frickin\' hate paladins!' WHERE id = 110059; +UPDATE quest_template SET LogTitle = 'Kill them before they Kill Shot you..' WHERE id = 110060; +UPDATE quest_template SET LogTitle = 'Nevermind, here comes another Deterrence' WHERE id = 110061; +UPDATE quest_template SET LogTitle = 'They do it from behind' WHERE id = 110062; +UPDATE quest_template SET LogTitle = 'Are you killing me? Lol, nope' WHERE id = 110063; +UPDATE quest_template SET LogTitle = 'IS THAT ILLIDA.. Ah, no :(' WHERE id = 110064; +UPDATE quest_template SET LogTitle = 'Fear, fear, fear, repeat in 15' WHERE id = 110065; +UPDATE quest_template SET LogTitle = 'Why focus him, he has Bear Form..' WHERE id = 110066; +UPDATE quest_template SET LogTitle = 'That is a bear! No, that is an owl! Bearowl!' WHERE id = 110067; +UPDATE quest_template SET LogTitle = 'Every man for himself?' WHERE id = 110068; +UPDATE quest_template SET LogTitle = 'Bloodshed in Stormwind' WHERE id = 110069; +UPDATE quest_template SET LogTitle = 'Runecloth for Orgrimmar reputation' WHERE id = 110070; +UPDATE quest_template SET LogTitle = 'Shrek is love, Shrek is life' WHERE id = 110071; +UPDATE quest_template SET LogTitle = 'Wait, isn\'t it a Gnome?' WHERE id = 110072; +UPDATE quest_template SET LogTitle = 'You mean the uglier Dwarf?' WHERE id = 110073; +UPDATE quest_template SET LogTitle = 'Triggered by lumberjacks' WHERE id = 110074; +UPDATE quest_template SET LogTitle = 'Teldrassil definitely has the high ground' WHERE id = 110075; +UPDATE quest_template SET LogTitle = 'Wait, they are already dead!' WHERE id = 110076; +UPDATE quest_template SET LogTitle = 'Mmm.. what a nice smell' WHERE id = 110077; +UPDATE quest_template SET LogTitle = 'Killer cows' WHERE id = 110078; +UPDATE quest_template SET LogTitle = 'You can\'t milk those' WHERE id = 110079; +UPDATE quest_template SET LogTitle = 'The smaller, the better' WHERE id = 110080; +UPDATE quest_template SET LogTitle = 'Size does not matter' WHERE id = 110081; +UPDATE quest_template SET LogTitle = 'Rock and troll' WHERE id = 110082; +UPDATE quest_template SET LogTitle = 'Vodoo dolls for everyone' WHERE id = 110083; +UPDATE quest_template SET LogTitle = 'Sig Nicious I love you' WHERE id = 110084; +UPDATE quest_template SET LogTitle = 'Merely a setback' WHERE id = 110085; +UPDATE quest_template SET LogTitle = 'Send them back to their planet! Wall!' WHERE id = 110086; +UPDATE quest_template SET LogTitle = 'Hunted by everyone' WHERE id = 110087; +UPDATE quest_template SET LogTitle = 'Shadowreaper Anduin is way too OP' WHERE id = 110088; +UPDATE quest_template SET LogTitle = 'Discipline priest OP damage' WHERE id = 110089; +UPDATE quest_template SET LogTitle = 'Wait, I can\'t stun him?' WHERE id = 110090; +UPDATE quest_template SET LogTitle = 'Anti-magic shell because we hate casters' WHERE id = 110091; +UPDATE quest_template SET LogTitle = 'Is that a Lava Bur..' WHERE id = 110092; +UPDATE quest_template SET LogTitle = 'Destroy that totem! And that one! And..' WHERE id = 110093; +UPDATE quest_template SET LogTitle = 'Ice Barrier absorbs too much' WHERE id = 110094; +UPDATE quest_template SET LogTitle = 'Stop Blinking, I hate you' WHERE id = 110095; \ No newline at end of file diff --git a/data/sql/db-world/alias.sql b/data/sql/db-world/alias.sql new file mode 100644 index 0000000..334880e --- /dev/null +++ b/data/sql/db-world/alias.sql @@ -0,0 +1,13 @@ +DROP TABLE IF EXISTS `creature_alias`; +CREATE TABLE `creature_alias` ( + `guid` BIGINT(15) NOT NULL COMMENT 'guid from creature', + `alias` CHAR(15) DEFAULT NULL, + PRIMARY KEY (`guid`) + ); + + DROP TABLE IF EXISTS `gameobject_alias`; +CREATE TABLE `gameobject_alias` ( + `guid` BIGINT(15) NOT NULL COMMENT 'guid from creature', + `alias` CHAR(15) DEFAULT NULL, + PRIMARY KEY (`guid`) + ); \ No newline at end of file diff --git a/data/sql/db-world/azth_gm_commands.sql b/data/sql/db-world/azth_gm_commands.sql new file mode 100644 index 0000000..c681b7c --- /dev/null +++ b/data/sql/db-world/azth_gm_commands.sql @@ -0,0 +1,536 @@ +# +# EDIT DEFAULT PERMISSIONS +# +# lvl 0: Player +# lvl 1: GM T1 +# lvl 2: Entertainer/Story Teller +# lvl 3: GM T2 +# lvl 4: Administrator +# +# NOTE: use "[^a-z,\,] as regexp to search rows without comma +# + + +# +# PLAYER +# + +UPDATE command SET security=0 WHERE name='dismount'; +UPDATE command SET security=0 WHERE name='lookup object'; +UPDATE command SET security=0 WHERE name='spect spectate'; +UPDATE command SET security=0 WHERE name='lookup spell id'; +UPDATE command SET security=0 WHERE name='lookup quest'; +UPDATE command SET security=0 WHERE name='lookup skill'; +UPDATE command SET security=0 WHERE name='spect version'; +UPDATE command SET security=0 WHERE name='spect watch'; +UPDATE command SET security=0 WHERE name='lookup spell'; +UPDATE command SET security=0 WHERE name='lookup map'; +UPDATE command SET security=0 WHERE name='commands'; +UPDATE command SET security=0 WHERE name='lookup itemset'; +UPDATE command SET security=0 WHERE name='lookup title'; +UPDATE command SET security=0 WHERE name='lookup area'; +UPDATE command SET security=0 WHERE name='lookup creature'; +UPDATE command SET security=0 WHERE name='lookup event'; +UPDATE command SET security=0 WHERE name='spect'; +UPDATE command SET security=0 WHERE name='spect leave'; +UPDATE command SET security=0 WHERE name='lookup faction'; +UPDATE command SET security=0 WHERE name='lookup item'; +UPDATE command SET security=0 WHERE name='lookup taxinode'; +UPDATE command SET security=0 WHERE name='spect reset'; +UPDATE command SET security=0 WHERE name='account lock'; +UPDATE command SET security=0 WHERE name='server motd'; +UPDATE command SET security=0 WHERE name='gm ingame'; +UPDATE command SET security=0 WHERE name='account'; +UPDATE command SET security=0 WHERE name='account password'; +UPDATE command SET security=0 WHERE name='debug hostil'; +UPDATE command SET security=0 WHERE name='help'; +UPDATE command SET security=0 WHERE name='qc'; +UPDATE command SET security=0 WHERE name='azth xp'; +UPDATE command SET security=0 WHERE name='azth maxskill'; +UPDATE command SET security=0 WHERE name='lookup'; + + +# +# GM T1 +# + +UPDATE command SET security=1 WHERE name='quest remove'; +UPDATE command SET security=1 WHERE name='quest add'; +UPDATE command SET security=1 WHERE name='reload command'; +UPDATE command SET security=1 WHERE name='quest'; +UPDATE command SET security=1 WHERE name='quest complete'; +UPDATE command SET security=1 WHERE name='pinfo'; +UPDATE command SET security=1 WHERE name='npc add'; +UPDATE command SET security=1 WHERE name='npc add formation'; +UPDATE command SET security=1 WHERE name='npc add item'; +UPDATE command SET security=1 WHERE name='npc add move'; +UPDATE command SET security=1 WHERE name='npc delete item'; +UPDATE command SET security=1 WHERE name='repairitems'; +UPDATE command SET security=1 WHERE name='recall'; +UPDATE command SET security=1 WHERE name='reset achievements'; +UPDATE command SET security=1 WHERE name='reset honor'; +UPDATE command SET security=1 WHERE name='reload npc_vendor'; +UPDATE command SET security=1 WHERE name='reset level'; +UPDATE command SET security=1 WHERE name='reset spells'; +UPDATE command SET security=1 WHERE name='wp modify'; +UPDATE command SET security=1 WHERE name='reset stats'; +UPDATE command SET security=1 WHERE name='reset talents'; +UPDATE command SET security=1 WHERE name='reset'; +UPDATE command SET security=1 WHERE name='respawn'; +UPDATE command SET security=1 WHERE name='npc delete'; +UPDATE command SET security=1 WHERE name='npc set level'; +UPDATE command SET security=1 WHERE name='nameannounce'; +UPDATE command SET security=1 WHERE name='mute'; +UPDATE command SET security=1 WHERE name='movegens'; +UPDATE command SET security=1 WHERE name='modify'; +UPDATE command SET security=1 WHERE name='modify speed all'; +UPDATE command SET security=1 WHERE name='character titles'; +UPDATE command SET security=1 WHERE name='modify speed backwalk'; +UPDATE command SET security=1 WHERE name='modify speed'; +UPDATE command SET security=1 WHERE name='modify reputation'; +UPDATE command SET security=1 WHERE name='modify phase'; +UPDATE command SET security=1 WHERE name='modify money'; +UPDATE command SET security=1 WHERE name='appear'; +UPDATE command SET security=1 WHERE name='neargrave'; +UPDATE command SET security=1 WHERE name='notify'; +UPDATE command SET security=1 WHERE name='npc set factionid'; +UPDATE command SET security=1 WHERE name='npc set flag'; +UPDATE command SET security=1 WHERE name='npc follow'; +UPDATE command SET security=1 WHERE name='npc info'; +UPDATE command SET security=1 WHERE name='npc follow stop'; +UPDATE command SET security=1 WHERE name='npc move'; +UPDATE command SET security=1 WHERE name='wpgps'; +UPDATE command SET security=1 WHERE name='npc set link'; +UPDATE command SET security=1 WHERE name='npc set model'; +UPDATE command SET security=1 WHERE name='npc set movetype'; +UPDATE command SET security=1 WHERE name='npc set phase'; +UPDATE command SET security=1 WHERE name='modify mana'; +UPDATE command SET security=1 WHERE name='ticket complete'; +UPDATE command SET security=1 WHERE name='morph'; +UPDATE command SET security=1 WHERE name='group remove'; +UPDATE command SET security=1 WHERE name='group disband'; +UPDATE command SET security=1 WHERE name='group leader'; +UPDATE command SET security=1 WHERE name='dev'; +UPDATE command SET security=1 WHERE name='titles'; +UPDATE command SET security=1 WHERE name='wp add'; +UPDATE command SET security=1 WHERE name='npc add temp'; +UPDATE command SET security=1 WHERE name='npc set spawntime'; +UPDATE command SET security=1 WHERE name='npc set spawndist'; +UPDATE command SET security=1 WHERE name='learn all recipes'; +UPDATE command SET security=1 WHERE name='achievement'; +UPDATE command SET security=1 WHERE name='achievement add'; +UPDATE command SET security=1 WHERE name='character changerace'; +UPDATE command SET security=1 WHERE name='modify arenapoints'; +UPDATE command SET security=1 WHERE name='quest reward'; +UPDATE command SET security=1 WHERE name='group join'; +UPDATE command SET security=1 WHERE name='npc set'; +UPDATE command SET security=1 WHERE name='gobject set state'; +UPDATE command SET security=1 WHERE name='gobject set'; +UPDATE command SET security=1 WHERE name='debug play'; +UPDATE command SET security=1 WHERE name='mailbox'; +UPDATE command SET security=1 WHERE name='account addon'; +UPDATE command SET security=1 WHERE name='instance getbossstate'; +UPDATE command SET security=1 WHERE name='instance setbossstate'; +UPDATE command SET security=1 WHERE name='lookup player'; +UPDATE command SET security=1 WHERE name='achievement checkall'; +UPDATE command SET security=1 WHERE name='learn all my'; +UPDATE command SET security=1 WHERE name='learn all'; +UPDATE command SET security=1 WHERE name='skirmish'; +UPDATE command SET security=1 WHERE name='group list'; +UPDATE command SET security=1 WHERE name='character changefaction'; +UPDATE command SET security=1 WHERE name='titles add'; +UPDATE command SET security=1 WHERE name='ticket onlinelist'; +UPDATE command SET security=1 WHERE name='ticket list'; +UPDATE command SET security=1 WHERE name='ticket comment'; +UPDATE command SET security=1 WHERE name='ticket closedlist'; +UPDATE command SET security=1 WHERE name='ticket close'; +UPDATE command SET security=1 WHERE name='ticket assign'; +UPDATE command SET security=1 WHERE name='tele'; +UPDATE command SET security=1 WHERE name='tele name'; +UPDATE command SET security=1 WHERE name='tele group'; +UPDATE command SET security=1 WHERE name='tele add'; +UPDATE command SET security=1 WHERE name='setskill'; +UPDATE command SET security=1 WHERE name='server info'; +UPDATE command SET security=1 WHERE name='send mail'; +UPDATE command SET security=1 WHERE name='send items'; +UPDATE command SET security=1 WHERE name='ticket unassign'; +UPDATE command SET security=1 WHERE name='ticket viewid'; +UPDATE command SET security=1 WHERE name='ticket viewname'; +UPDATE command SET security=1 WHERE name='titles current'; +UPDATE command SET security=1 WHERE name='titles remove'; +UPDATE command SET security=1 WHERE name='wp unload'; +UPDATE command SET security=1 WHERE name='wp show'; +UPDATE command SET security=1 WHERE name='wp load'; +UPDATE command SET security=1 WHERE name='wp event'; +UPDATE command SET security=1 WHERE name='whispers'; +UPDATE command SET security=1 WHERE name='unpossess'; +UPDATE command SET security=1 WHERE name='unmute'; +UPDATE command SET security=1 WHERE name='unlearn'; +UPDATE command SET security=1 WHERE name='unfreeze'; +UPDATE command SET security=1 WHERE name='unbindsight'; +UPDATE command SET security=1 WHERE name='unaura'; +UPDATE command SET security=1 WHERE name='ticket'; +UPDATE command SET security=1 WHERE name='revive'; +UPDATE command SET security=1 WHERE name='modify hp'; +UPDATE command SET security=1 WHERE name='announce'; +UPDATE command SET security=1 WHERE name='character reputation'; +UPDATE command SET security=1 WHERE name='combatstop'; +UPDATE command SET security=1 WHERE name='cometome'; +UPDATE command SET security=1 WHERE name='cooldown'; +UPDATE command SET security=1 WHERE name='damage'; +UPDATE command SET security=1 WHERE name='honor add kill'; +UPDATE command SET security=1 WHERE name='honor add'; +UPDATE command SET security=1 WHERE name='guild'; +UPDATE command SET security=1 WHERE name='guild rank'; +UPDATE command SET security=1 WHERE name='guid'; +UPDATE command SET security=1 WHERE name='groupsummon'; +UPDATE command SET security=1 WHERE name='gps'; +UPDATE command SET security=1 WHERE name='character rename'; +UPDATE command SET security=1 WHERE name='character customize'; +UPDATE command SET security=1 WHERE name='honor update'; +UPDATE command SET security=1 WHERE name='instance listbinds'; +UPDATE command SET security=1 WHERE name='baninfo account'; +UPDATE command SET security=1 WHERE name='baninfo character'; +UPDATE command SET security=1 WHERE name='baninfo ip'; +UPDATE command SET security=1 WHERE name='baninfo'; +UPDATE command SET security=1 WHERE name='bank'; +UPDATE command SET security=1 WHERE name='banlist account'; +UPDATE command SET security=1 WHERE name='banlist character'; +UPDATE command SET security=1 WHERE name='banlist ip'; +UPDATE command SET security=1 WHERE name='banlist'; +UPDATE command SET security=1 WHERE name='honor'; +UPDATE command SET security=1 WHERE name='gm'; +UPDATE command SET security=1 WHERE name='demorph'; +UPDATE command SET security=1 WHERE name='die'; +UPDATE command SET security=1 WHERE name='go trigger'; +UPDATE command SET security=1 WHERE name='go ticket'; +UPDATE command SET security=1 WHERE name='go taxinode'; +UPDATE command SET security=1 WHERE name='go object'; +UPDATE command SET security=1 WHERE name='gm chat'; +UPDATE command SET security=1 WHERE name='gm fly'; +UPDATE command SET security=1 WHERE name='gm visible'; +UPDATE command SET security=1 WHERE name='go grid'; +UPDATE command SET security=1 WHERE name='go graveyard'; +UPDATE command SET security=1 WHERE name='go creature'; +UPDATE command SET security=1 WHERE name='gmnotify'; +UPDATE command SET security=1 WHERE name='gmnameannounce'; +UPDATE command SET security=1 WHERE name='go xyz'; +UPDATE command SET security=1 WHERE name='go zonexy'; +UPDATE command SET security=1 WHERE name='go'; +UPDATE command SET security=1 WHERE name='distance'; +UPDATE command SET security=1 WHERE name='summon'; +UPDATE command SET security=1 WHERE name='gobject'; +UPDATE command SET security=1 WHERE name='gobject turn'; +UPDATE command SET security=1 WHERE name='gobject set phase'; +UPDATE command SET security=1 WHERE name='gobject target'; +UPDATE command SET security=1 WHERE name='gobject add temp'; +UPDATE command SET security=1 WHERE name='gobject move'; +UPDATE command SET security=1 WHERE name='gobject delete'; +UPDATE command SET security=1 WHERE name='gobject add'; +UPDATE command SET security=1 WHERE name='gobject activate'; +UPDATE command SET security=1 WHERE name='freeze'; +UPDATE command SET security=1 WHERE name='gmannounce'; +UPDATE command SET security=1 WHERE name='learn all crafts'; +UPDATE command SET security=1 WHERE name='lookup player account'; +UPDATE command SET security=1 WHERE name='additem'; +UPDATE command SET security=1 WHERE name='list'; +UPDATE command SET security=1 WHERE name='instance'; +UPDATE command SET security=1 WHERE name='list object'; +UPDATE command SET security=1 WHERE name='list item'; +UPDATE command SET security=1 WHERE name='learn all my class'; +UPDATE command SET security=1 WHERE name='kick'; +UPDATE command SET security=1 WHERE name='list creature'; +UPDATE command SET security=1 WHERE name='learn all my pettalents'; +UPDATE command SET security=1 WHERE name='learn all my spells'; +UPDATE command SET security=1 WHERE name='additemset'; +UPDATE command SET security=1 WHERE name='learn'; +UPDATE command SET security=1 WHERE name='list auras'; +UPDATE command SET security=1 WHERE name='learn all my talents'; +UPDATE command SET security=1 WHERE name='modify scale'; +UPDATE command SET security=1 WHERE name='gobject near'; +UPDATE command SET security=1 WHERE name='lookup player email'; +UPDATE command SET security=1 WHERE name='lookup player ip'; +UPDATE command SET security=1 WHERE name='modify honor'; +UPDATE command SET security=1 WHERE name='instance stats'; +UPDATE command SET security=1 WHERE name='modify gender'; +UPDATE command SET security=1 WHERE name='learn all gm'; +UPDATE command SET security=1 WHERE name='modify speed fly'; +UPDATE command SET security=1 WHERE name='maxskill'; +UPDATE command SET security=1 WHERE name='learn all lang'; +UPDATE command SET security=1 WHERE name='learn all default'; +UPDATE command SET security=1 WHERE name='modify drunk'; +UPDATE command SET security=1 WHERE name='levelup'; +UPDATE command SET security=1 WHERE name='instance unbind'; +UPDATE command SET security=1 WHERE name='lookup tele'; +UPDATE command SET security=1 WHERE name='modify speed swim'; +UPDATE command SET security=1 WHERE name='modify speed walk'; + +# +# ENTERTAINER / STORY TELLER +# + +UPDATE command SET security=2 WHERE name='guild create'; +UPDATE command SET security=2 WHERE name='ticket response append'; +UPDATE command SET security=2 WHERE name='debug play movie'; +UPDATE command SET security=2 WHERE name='npc whisper'; +UPDATE command SET security=2 WHERE name='npc yell'; +UPDATE command SET security=2 WHERE name='titles set mask'; +UPDATE command SET security=2 WHERE name='guild delete'; +UPDATE command SET security=2 WHERE name='guild uninvite'; +UPDATE command SET security=2 WHERE name='npc textemote'; +UPDATE command SET security=2 WHERE name='debug play sound'; +UPDATE command SET security=2 WHERE name='unstuck'; +UPDATE command SET security=2 WHERE name='event'; +UPDATE command SET security=2 WHERE name='modify bit'; +UPDATE command SET security=2 WHERE name='modify standstate'; +UPDATE command SET security=2 WHERE name='titles set'; +UPDATE command SET security=2 WHERE name='modify energy'; +UPDATE command SET security=2 WHERE name='modify rage'; +UPDATE command SET security=2 WHERE name='modify mount'; +UPDATE command SET security=2 WHERE name='gobject info'; +UPDATE command SET security=2 WHERE name='modify runicpower'; +UPDATE command SET security=2 WHERE name='server corpses'; +UPDATE command SET security=2 WHERE name='debug'; +UPDATE command SET security=2 WHERE name='ticket response appendln'; +UPDATE command SET security=2 WHERE name='npc playemote'; +UPDATE command SET security=2 WHERE name='npc say'; +UPDATE command SET security=2 WHERE name='event activelist'; +UPDATE command SET security=2 WHERE name='event start'; +UPDATE command SET security=2 WHERE name='event stop'; +UPDATE command SET security=2 WHERE name='wchange'; +UPDATE command SET security=2 WHERE name='pet create'; +UPDATE command SET security=2 WHERE name='itemmove'; +UPDATE command SET security=2 WHERE name='account set addon'; +UPDATE command SET security=2 WHERE name='npc'; +UPDATE command SET security=2 WHERE name='pet unlearn'; +UPDATE command SET security=2 WHERE name='npc evade'; +UPDATE command SET security=2 WHERE name='playall'; +UPDATE command SET security=2 WHERE name='ticket escalatedlist'; +UPDATE command SET security=2 WHERE name='ticket escalate'; +UPDATE command SET security=2 WHERE name='character'; +UPDATE command SET security=2 WHERE name='ticket response'; +UPDATE command SET security=2 WHERE name='npc tame'; +UPDATE command SET security=2 WHERE name='npc near'; +UPDATE command SET security=2 WHERE name='send'; +UPDATE command SET security=2 WHERE name='debug play cinematic'; +UPDATE command SET security=2 WHERE name='reload creature_linked_respawn'; +UPDATE command SET security=2 WHERE name='pet'; +UPDATE command SET security=2 WHERE name='account set'; + + +# +# GM T2 PROTECTOR +# + +UPDATE command SET security=3 WHERE name='reload locales_creature_text'; +UPDATE command SET security=3 WHERE name='unban playeraccount'; +UPDATE command SET security=3 WHERE name='reload creature_template'; +UPDATE command SET security=3 WHERE name='ban'; +UPDATE command SET security=3 WHERE name='reload gameobject_questender'; +UPDATE command SET security=3 WHERE name='cast back'; +UPDATE command SET security=3 WHERE name='ticket togglesystem'; +UPDATE command SET security=3 WHERE name='debug entervehicle'; +UPDATE command SET security=3 WHERE name='debug getitemvalue'; +UPDATE command SET security=3 WHERE name='ban account'; +UPDATE command SET security=3 WHERE name='debug threat'; +UPDATE command SET security=3 WHERE name='debug setitemvalue'; +UPDATE command SET security=3 WHERE name='wp'; +UPDATE command SET security=3 WHERE name='debug send chatmessage'; +UPDATE command SET security=3 WHERE name='gm list'; +UPDATE command SET security=3 WHERE name='ban character'; +UPDATE command SET security=3 WHERE name='debug los'; +UPDATE command SET security=3 WHERE name='debug lootrecipient'; +UPDATE command SET security=3 WHERE name='debug itemexpire'; +UPDATE command SET security=3 WHERE name='ban ip'; +UPDATE command SET security=3 WHERE name='debug getvalue'; +UPDATE command SET security=3 WHERE name='debug uws'; +UPDATE command SET security=3 WHERE name='debug getitemstate'; +UPDATE command SET security=3 WHERE name='reload conditions'; +UPDATE command SET security=3 WHERE name='reload creature_onkill_reputation'; +UPDATE command SET security=3 WHERE name='reload locales_item_set_name'; +UPDATE command SET security=3 WHERE name='cast'; +UPDATE command SET security=3 WHERE name='character level'; +UPDATE command SET security=3 WHERE name='debug moveflags'; +UPDATE command SET security=3 WHERE name='group'; +UPDATE command SET security=3 WHERE name='reload waypoint_data'; +UPDATE command SET security=3 WHERE name='reload vehicle_template_accessory'; +UPDATE command SET security=3 WHERE name='reload vehicle_accessory'; +UPDATE command SET security=3 WHERE name='reload smart_scripts'; +UPDATE command SET security=3 WHERE name='reload all spell'; +UPDATE command SET security=3 WHERE name='reload mail_level_reward'; +UPDATE command SET security=3 WHERE name='reload auctions'; +UPDATE command SET security=3 WHERE name='reload achievement_criteria_data'; +UPDATE command SET security=3 WHERE name='reload achievement_reward'; +UPDATE command SET security=3 WHERE name='reload all achievement'; +UPDATE command SET security=3 WHERE name='cast target'; +UPDATE command SET security=3 WHERE name='cast self'; +UPDATE command SET security=3 WHERE name='reload access_requirement'; +UPDATE command SET security=3 WHERE name='reload gossip_menu'; +UPDATE command SET security=3 WHERE name='reload gossip_menu_option'; +UPDATE command SET security=3 WHERE name='cast dest'; +UPDATE command SET security=3 WHERE name='reload all scripts'; +UPDATE command SET security=3 WHERE name='reload locales_gossip_menu_option'; +UPDATE command SET security=3 WHERE name='reload quest_poi'; +UPDATE command SET security=3 WHERE name='reload lfg_dungeon_rewards'; +UPDATE command SET security=3 WHERE name='reload npc_spellclick_spells'; +UPDATE command SET security=3 WHERE name='bindsight'; +UPDATE command SET security=3 WHERE name='ban playeraccount'; +UPDATE command SET security=3 WHERE name='cast dist'; +UPDATE command SET security=3 WHERE name='reload page_text'; +UPDATE command SET security=3 WHERE name='reload creature_text'; +UPDATE command SET security=3 WHERE name='debug setvalue'; +UPDATE command SET security=3 WHERE name='reload all area'; +UPDATE command SET security=3 WHERE name='reload spell_scripts'; +UPDATE command SET security=3 WHERE name='reload skill_fishing_base_level'; +UPDATE command SET security=3 WHERE name='reload skill_discovery_template'; +UPDATE command SET security=3 WHERE name='reload autobroadcast'; +UPDATE command SET security=3 WHERE name='reload config'; +UPDATE command SET security=3 WHERE name='reload creature_questender'; +UPDATE command SET security=3 WHERE name='reload creature_loot_template'; +UPDATE command SET security=3 WHERE name='reload creature_queststarter'; +UPDATE command SET security=3 WHERE name='reload disenchant_loot_template'; +UPDATE command SET security=3 WHERE name='reload reserved_name'; +UPDATE command SET security=3 WHERE name='reload skinning_loot_template'; +UPDATE command SET security=3 WHERE name='reload spell_area'; +UPDATE command SET security=3 WHERE name='reload spell_bonus_data'; +UPDATE command SET security=3 WHERE name='reload item_set_names'; +UPDATE command SET security=3 WHERE name='reload spell_required'; +UPDATE command SET security=3 WHERE name='reload spell_proc_event'; +UPDATE command SET security=3 WHERE name='reload spell_pet_auras'; +UPDATE command SET security=3 WHERE name='reload spell_loot_template'; +UPDATE command SET security=3 WHERE name='reload areatrigger_teleport'; +UPDATE command SET security=3 WHERE name='reload spell_linked_spell'; +UPDATE command SET security=3 WHERE name='reload spell_group_stack_rules'; +UPDATE command SET security=3 WHERE name='reload disables'; +UPDATE command SET security=3 WHERE name='reload event_scripts'; +UPDATE command SET security=3 WHERE name='reload fishing_loot_template'; +UPDATE command SET security=3 WHERE name='reload pickpocketing_loot_template'; +UPDATE command SET security=3 WHERE name='modify talentpoints'; +UPDATE command SET security=3 WHERE name='reload locales_item'; +UPDATE command SET security=3 WHERE name='reload locales_gameobject'; +UPDATE command SET security=3 WHERE name='reload npc_trainer'; +UPDATE command SET security=3 WHERE name='reload milling_loot_template'; +UPDATE command SET security=3 WHERE name='reload locales_quest'; +UPDATE command SET security=3 WHERE name='reload locales_points_of_interest'; +UPDATE command SET security=3 WHERE name='reload locales_page_text'; +UPDATE command SET security=3 WHERE name='reload points_of_interest'; +UPDATE command SET security=3 WHERE name='reload prospecting_loot_template'; +UPDATE command SET security=3 WHERE name='reload mail_loot_template'; +UPDATE command SET security=3 WHERE name='reload game_graveyard_zone'; +UPDATE command SET security=3 WHERE name='reload game_tele'; +UPDATE command SET security=3 WHERE name='reload gameobject_loot_template'; +UPDATE command SET security=3 WHERE name='reload gameobject_queststarter'; +UPDATE command SET security=3 WHERE name='reload gm_tickets'; +UPDATE command SET security=3 WHERE name='reload item_enchantment_template'; +UPDATE command SET security=3 WHERE name='reload reference_loot_template'; +UPDATE command SET security=3 WHERE name='reload quest_template'; +UPDATE command SET security=3 WHERE name='reload item_loot_template'; +UPDATE command SET security=3 WHERE name='reload locales_npc_text'; +UPDATE command SET security=3 WHERE name='reload areatrigger_tavern'; +UPDATE command SET security=3 WHERE name='unban'; +UPDATE command SET security=3 WHERE name='reload spell_proc'; +UPDATE command SET security=3 WHERE name='reload spell_group'; +UPDATE command SET security=3 WHERE name='hidearea'; +UPDATE command SET security=3 WHERE name='wp reload'; +UPDATE command SET security=3 WHERE name='server restart cancel'; +UPDATE command SET security=3 WHERE name='server restart'; +UPDATE command SET security=3 WHERE name='server shutdown cancel'; +UPDATE command SET security=3 WHERE name='server shutdown'; +UPDATE command SET security=3 WHERE name='server'; +UPDATE command SET security=3 WHERE name='showarea'; +UPDATE command SET security=3 WHERE name='tele del'; +UPDATE command SET security=3 WHERE name='reload locales_creature'; +UPDATE command SET security=3 WHERE name='ticket delete'; +UPDATE command SET security=3 WHERE name='unban account'; +UPDATE command SET security=3 WHERE name='unban character'; +UPDATE command SET security=3 WHERE name='unban ip'; +UPDATE command SET security=3 WHERE name='server idleshutdown cancel'; +UPDATE command SET security=3 WHERE name='instance savedata'; +UPDATE command SET security=3 WHERE name='reload skill_extra_item_template'; +UPDATE command SET security=3 WHERE name='send message'; +UPDATE command SET security=3 WHERE name='reload'; +UPDATE command SET security=3 WHERE name='guild invite'; +UPDATE command SET security=3 WHERE name='reload trinity_string'; +UPDATE command SET security=3 WHERE name='reload spell_threats'; +UPDATE command SET security=3 WHERE name='reload spell_target_position'; +UPDATE command SET security=3 WHERE name='reload areatrigger_involvedrelation'; +UPDATE command SET security=3 WHERE name='server idlerestart cancel'; +UPDATE command SET security=3 WHERE name='reload waypoint_scripts'; + + +# +# SERVER OP ( ADMIN ) +# + + +UPDATE command SET security=4 WHERE name='modify faction'; +UPDATE command SET security=4 WHERE name='account set gmlevel'; +UPDATE command SET security=4 WHERE name='pdump load'; +UPDATE command SET security=4 WHERE name='account onlinelist'; +UPDATE command SET security=4 WHERE name='account delete'; +UPDATE command SET security=4 WHERE name='debug setbit'; +UPDATE command SET security=4 WHERE name='reload all'; +UPDATE command SET security=4 WHERE name='possess'; +UPDATE command SET security=4 WHERE name='reload all gossips'; +UPDATE command SET security=4 WHERE name='reload all item'; +UPDATE command SET security=4 WHERE name='reload all quest'; +UPDATE command SET security=4 WHERE name='pet learn'; +UPDATE command SET security=4 WHERE name='pdump'; +UPDATE command SET security=4 WHERE name='pdump write'; +UPDATE command SET security=4 WHERE name='npc set entry'; +UPDATE command SET security=4 WHERE name='reload all npc'; +UPDATE command SET security=4 WHERE name='linkgrave'; +UPDATE command SET security=4 WHERE name='reload all locales'; +UPDATE command SET security=4 WHERE name='aura'; +UPDATE command SET security=4 WHERE name='reload all loot'; +UPDATE command SET security=4 WHERE name='npc set allowmove'; +UPDATE command SET security=4 WHERE name='modify spell'; +UPDATE command SET security=4 WHERE name='account set password'; +UPDATE command SET security=4 WHERE name='account create'; +UPDATE command SET security=4 WHERE name='flusharenapoints'; +UPDATE command SET security=4 WHERE name='server idlerestart'; +UPDATE command SET security=4 WHERE name='server exit'; +UPDATE command SET security=4 WHERE name='send money'; +UPDATE command SET security=4 WHERE name='saveall'; +UPDATE command SET security=4 WHERE name='save'; +UPDATE command SET security=4 WHERE name='debug send sellerror'; +UPDATE command SET security=4 WHERE name='server set loglevel'; +UPDATE command SET security=4 WHERE name='reset all'; +UPDATE command SET security=4 WHERE name='debug Mod32Value'; +UPDATE command SET security=4 WHERE name='debug areatriggers'; +UPDATE command SET security=4 WHERE name='server idleshutdown'; +UPDATE command SET security=4 WHERE name='debug send chatmmessage'; +UPDATE command SET security=4 WHERE name='debug send spellfail'; +UPDATE command SET security=4 WHERE name='server set motd'; +UPDATE command SET security=4 WHERE name='server set closed'; +UPDATE command SET security=4 WHERE name='debug send setphaseshift'; +UPDATE command SET security=4 WHERE name='debug send qinvalidmsg'; +UPDATE command SET security=4 WHERE name='debug send qpartymsg'; +UPDATE command SET security=4 WHERE name='debug send opcode'; +UPDATE command SET security=4 WHERE name='debug send largepacket'; +UPDATE command SET security=4 WHERE name='debug send equiperror'; +UPDATE command SET security=4 WHERE name='debug bg'; +UPDATE command SET security=4 WHERE name='debug arena'; +UPDATE command SET security=4 WHERE name='ticket reset'; +UPDATE command SET security=4 WHERE name='debug send channelnotify'; +UPDATE command SET security=4 WHERE name='debug send buyerror'; +UPDATE command SET security=4 WHERE name='debug send'; +UPDATE command SET security=4 WHERE name='server togglequerylog'; +UPDATE command SET security=4 WHERE name='debug setaurastate'; +UPDATE command SET security=4 WHERE name='debug spawnvehicle'; +UPDATE command SET security=4 WHERE name='debug setvid'; +UPDATE command SET security=4 WHERE name='debug update'; +UPDATE command SET security=4 WHERE name='bf'; +UPDATE command SET security=4 WHERE name='lfg options'; +UPDATE command SET security=4 WHERE name='lfg clean'; +UPDATE command SET security=4 WHERE name='lfg queue'; +UPDATE command SET security=4 WHERE name='npc set data'; +UPDATE command SET security=4 WHERE name='bf start'; +UPDATE command SET security=4 WHERE name='bf stop'; +UPDATE command SET security=4 WHERE name='bf enable'; +UPDATE command SET security=4 WHERE name='bf switch'; +UPDATE command SET security=4 WHERE name='bf timer'; +UPDATE command SET security=4 WHERE name='lfg player'; +UPDATE command SET security=4 WHERE name='lfg group'; +UPDATE command SET security=4 WHERE name='lfg'; +UPDATE command SET security=5 WHERE name='debug anim'; diff --git a/data/sql/db-world/creature_template.sql b/data/sql/db-world/creature_template.sql new file mode 100644 index 0000000..c3c53f9 --- /dev/null +++ b/data/sql/db-world/creature_template.sql @@ -0,0 +1 @@ +REPLACE INTO `creature_template` VALUES (300207, 0, 0, 0, 0, 0, 24934, 0, 0, 0, 'TimeWalking', NULL, NULL, 0, 82, 82, 0, 35, 129, 1.2, 1.5, 0.1, 2, 1700, 2700, 0, 100, 1, 1000, 2000, 1, 512, 2048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 1, 1, 1, 25, 1, 1, 0, 0, 1, 0, 0, 'TimeWalkingGossip', 12341); diff --git a/data/sql/db-world/no_info_announcer.sql b/data/sql/db-world/no_info_announcer.sql new file mode 100644 index 0000000..4add049 --- /dev/null +++ b/data/sql/db-world/no_info_announcer.sql @@ -0,0 +1,4 @@ +DELETE FROM trinity_string WHERE entry IN (7000, 7001); +INSERT INTO trinity_string (entry, content_default) VALUES (7000, "|cffff0000[Arena Queue Announcer]:|r A team joined %ux%u! |r"); +INSERT INTO trinity_string (entry, content_default) VALUES (7001, "|cffff0000[Arena Queue Announcer]:|r A team exited %ux%u! |r"); + diff --git a/data/sql/db-world/npc_text.sql b/data/sql/db-world/npc_text.sql new file mode 100644 index 0000000..cffc894 --- /dev/null +++ b/data/sql/db-world/npc_text.sql @@ -0,0 +1,7 @@ +REPLACE INTO `npc_text` VALUES (50100, 'Ciao $N! Scegli che tipo di avventura vuoi vivere.', NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1); +REPLACE INTO `npc_text` VALUES (50101, 'Questi sono i raid e dungeon che attualmente danno maggiori ricompense, approfittane!', NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1); +REPLACE INTO `npc_text` VALUES (50102, 'Scegli l\'espansione che vuoi rigiocare.', NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1); +REPLACE INTO `npc_text` VALUES (50103, 'Scegli ora quale fase giocare.', NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1); +REPLACE INTO `npc_text` VALUES (50104, 'E ora la scelta finale!', NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1); +REPLACE INTO `npc_text` VALUES (50105, 'Sei gia in modalita TimeWalking', NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1); +REPLACE INTO `npc_text` VALUES (50106, 'Non puoi usare questo NPC mentre stai usando il Looking For Group!', NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1); diff --git a/data/sql/db-world/season.sql b/data/sql/db-world/season.sql new file mode 100644 index 0000000..b634d30 --- /dev/null +++ b/data/sql/db-world/season.sql @@ -0,0 +1,25 @@ +-- -------------------------------------------------------- +-- Host: server.wownewage.com +-- Versione server: 5.7.16-0ubuntu0.16.04.1 - (Ubuntu) +-- S.O. server: Linux +-- HeidiSQL Versione: 9.3.0.4984 +-- -------------------------------------------------------- + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8mb4 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; + +-- Dump della struttura di tabella world.season +CREATE TABLE IF NOT EXISTS `season` ( + `itemLevel` int(11) NOT NULL, + `startingFrom` int(11) NOT NULL, + `endOn` int(11) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- Dump dei dati della tabella world.season: ~1 rows (circa) +/*!40000 ALTER TABLE `season` DISABLE KEYS */; +/*!40000 ALTER TABLE `season` ENABLE KEYS */; +/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; +/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; diff --git a/data/sql/db-world/trainer_spells.sql b/data/sql/db-world/trainer_spells.sql new file mode 100644 index 0000000..6bc741d --- /dev/null +++ b/data/sql/db-world/trainer_spells.sql @@ -0,0 +1,131 @@ +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','53','1','0','0','4'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','921','1','0','0','4'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1757','1','0','0','6'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1776','1','0','0','6'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1784','1','0','0','1'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','408','1','0','0','30'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','674','1','0','0','10'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','703','1','0','0','14'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1725','1','0','0','22'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1758','1','0','0','14'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1759','1','0','0','22'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1760','1','0','0','30'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1766','1','0','0','12'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1785','1','0','0','20'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1786','1','0','0','40'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1787','1','0','0','60'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1804','1','0','0','16'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1833','1','0','0','26'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1842','1','0','0','30'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1856','1','0','0','22'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1857','1','0','0','42'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1860','1','0','0','40'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1943','1','0','0','20'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','1966','1','0','0','16'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','2070','1','0','0','28'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','2094','1','0','0','34'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','2589','1','0','0','12'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','2590','1','0','0','20'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','2591','1','0','0','28'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','2836','1','0','0','24'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','2983','1','0','0','10'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','3127','1','0','0','12'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','5171','1','0','0','10'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','5277','1','0','0','8'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','5938','1','0','0','70'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','6760','1','0','0','8'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','6761','1','0','0','16'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','6762','1','0','0','24'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','6768','1','0','0','28'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','6770','1','0','0','10'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','6774','1','0','0','42'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8621','1','0','0','38'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8623','1','0','0','32'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8624','1','0','0','40'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8631','1','0','0','22'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8632','1','0','0','30'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8633','1','0','0','38'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8637','1','0','0','40'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8639','1','0','0','28'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8640','1','0','0','36'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8643','1','0','0','50'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8647','1','0','0','14'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8649','1','0','0','26'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8650','1','0','0','36'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8676','1','0','0','18'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8696','1','0','0','34'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8721','1','0','0','36'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8724','1','0','0','26'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','8725','1','0','0','34'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11197','1','0','0','46'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11198','1','0','0','56'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11267','1','0','0','42'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11268','1','0','0','50'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11269','1','0','0','58'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11273','1','0','0','44'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11274','1','0','0','52'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11275','1','0','0','60'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11279','1','0','0','44'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11280','1','0','0','52'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11281','1','0','0','60'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11289','1','0','0','46'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11290','1','0','0','54'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11293','1','0','0','46'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11294','1','0','0','54'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11297','1','0','0','48'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11299','1','0','0','48'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11300','1','0','0','56'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11303','1','0','0','52'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','11305','1','0','0','58'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','17347','1','0','0','46'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','17348','1','0','0','58'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','25300','1','0','0','60'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','25302','1','0','0','60'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26669','1','0','0','50'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26679','1','0','0','64'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26839','1','0','0','61'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26861','1','0','0','62'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26862','1','0','0','70'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26863','1','0','0','68'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26864','1','0','0','70'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26865','1','0','0','64'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26866','1','0','0','66'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26867','1','0','0','68'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26884','1','0','0','70'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','26889','1','0','0','62'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','27441','1','0','0','66'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','27448','1','0','0','64'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','31016','1','0','0','60'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','31224','1','0','0','66'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','32645','1','0','0','62'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','32684','1','0','0','69'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','34411','1','0','0','50'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','34412','1','0','0','60'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','34413','1','0','0','70'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48637','1','0','0','76'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48638','1','0','0','80'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48656','1','0','0','74'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48657','1','0','0','80'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48658','1','0','0','72'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48659','1','0','0','78'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48660','1','0','0','80'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48663','1','0','0','75'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48666','1','0','0','80'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48667','1','0','0','73'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48668','1','0','0','79'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48669','1','0','0','77'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48671','1','0','0','74'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48672','1','0','0','79'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48673','1','0','0','70'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48674','1','0','0','76'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48675','1','0','0','75'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48676','1','0','0','80'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48689','1','0','0','70'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48690','1','0','0','75'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','48691','1','0','0','80'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','51722','1','0','0','20'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','51723','1','0','0','80'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','51724','1','0','0','71'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','57934','1','0','0','75'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','57992','1','0','0','74'); +replace into `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) values('760005','57993','1','0','0','80'); diff --git a/data/sql/db-world/trainers.sql b/data/sql/db-world/trainers.sql new file mode 100644 index 0000000..a0927c7 --- /dev/null +++ b/data/sql/db-world/trainers.sql @@ -0,0 +1,14 @@ +DELETE FROM creature_template WHERE entry >= 760000 AND entry <= 760009; +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES('760000','0','0','0','0','0','24029','0','0','0','Druid PVP Trainer','','','0','70','70','2','35','49','1.1','1.14286','1','0','234','331','0','286','1','2000','2000','2','768','2048','0','0','0','0','11','0','198','295','33','7','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','1','1','0','0','1','0','0','npc_azth_vendor','12340'); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES('760001','0','0','0','0','0','24030','0','0','0','Hunter PVP Trainer','','','0','70','70','2','35','49','1.1','1.14286','1','0','234','331','0','286','1','2000','2000','2','768','2048','0','0','0','0','3','0','198','295','33','7','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','1','1','0','0','1','0','0','npc_azth_vendor','12340'); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES('760002','0','0','0','0','0','24031','0','0','0','Mage PVP Trainer','','','0','70','70','2','35','49','1.1','1.14286','1','0','248','363','0','135','1','2000','2000','8','768','2048','0','0','0','0','8','0','233','347','28','7','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','1','1','0','0','1','0','0','npc_azth_vendor','12340'); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES('760003','0','0','0','0','0','24032','0','0','0','Paladin PVP Trainer','','','0','70','70','2','35','49','1.1','1.14286','1','0','234','331','0','286','1','2000','2000','2','768','2048','0','0','0','0','2','0','198','295','33','7','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','1','1','0','0','1','0','0','npc_azth_vendor','12340'); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES('760004','0','0','0','0','0','24033','0','0','0','Priest PVP Trainer','','','0','70','70','2','35','49','1.1','1.14286','1','0','248','363','0','135','1','2000','2000','8','768','2048','0','0','0','0','5','0','233','347','28','7','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','1','1','0','0','1','0','0','npc_azth_vendor','12340'); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES('760005','0','0','0','0','0','23777','0','0','0','Rogue PVP Trainer','','','0','70','70','2','35','49','1.1','1.14286','1','0','252','357','0','304','1','2000','2000','1','768','2048','0','0','0','0','4','0','215','320','44','7','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','1','1','0','0','1','0','0','npc_azth_vendor','12340'); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES('760006','0','0','0','0','0','24034','0','0','0','Shaman PVP Trainer','','','0','70','70','2','35','49','1.1','1.14286','1','0','234','331','0','286','1','2000','2000','2','768','2048','0','0','0','0','7','0','198','295','33','7','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','1','1','0','0','1','0','0','npc_azth_vendor','12340'); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES('760007','0','0','0','0','0','24035','0','0','0','Warlock PVP Trainer','','','0','70','70','2','35','49','1.1','1.14286','1','0','248','363','0','135','1','2000','2000','8','768','2048','0','0','0','0','9','0','233','347','28','7','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','1','1','0','0','1','0','0','npc_azth_vendor','12340'); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES('760008','0','0','0','0','0','24036','0','0','0','Warrior PVP Trainer','','','0','70','70','2','35','49','1.1','1.14286','1','0','252','357','0','304','1','2000','2000','1','768','2048','0','0','0','0','1','0','215','320','44','7','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','1','1','0','0','1','0','0','npc_azth_vendor','12340'); +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES('760009','0','0','0','0','0','24036','0','0','0','Death Knight PvP Trainer','','','0','70','70','2','35','49','1.1','1.14286','1','0','252','357','0','304','1','2000','2000','1','768','2048','0','0','0','0','1','0','215','320','44','7','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','1','1','0','0','1','0','0','npc_azth_vendor','12340'); + +UPDATE creature_template SET minlevel = 82, maxlevel = 82 WHERE entry >= 760000 AND entry <= 760009; + diff --git a/data/sql/db-world/world_smartstone.sql b/data/sql/db-world/world_smartstone.sql new file mode 100644 index 0000000..2cb2711 --- /dev/null +++ b/data/sql/db-world/world_smartstone.sql @@ -0,0 +1,150 @@ +UPDATE `item_template` SET `name` = "Smartstone", `Flags` = 64, `ScriptName` = 'azth_smart_stone', stackable = 1, `spellid_1` = 36177, maxcount = 1 WHERE (entry = 32547); + + +DELETE FROM item_template WHERE entry IN (987890, 987891, 987892, 987893, 987894, 987895); +INSERT INTO item_template (entry, class, subclass, NAME, displayid, quality, description, scriptname, flags, stackable, `spellid_1`, buyprice) VALUES +(987890, 0, 8, "Change Faction!", 1542, 5, "Aggiungi alla smartstone il cambio fazione! (1 carica), ATTENZIONE: COL CAMBIO FAZIONE SI PERDE ARENA RATING. NON È POSSIBILE EFFETTUARLO SE SI HANNO ITEM IN ASTA O IN MAIL", "smart_stone_command", 64, 1, 36177, 1000), +(987891, 0, 8, "Rename!", 7629, 5, "Aggiungi alla smartstone il rename! (1 carica)", "smart_stone_command", 64, 1, 36177, 100000), +(987892, 0, 8, "Change Race!", 472, 5, "Aggiungi alla smartstone il cambio razza! (1 carica)", "smart_stone_command", 64, 1, 36177, 10000), +(987893, 0, 8, "Jukebox!", 41449, 5, "Divertiti con la tua musica! (1 carica)", "smart_stone_command", 64, 1, 36177, 10000), +(987894, 0, 8, "Herbalism Bonus Loot!", 7396, 5, "Aumenta la chance di trovare materiali usando Herbalism! (passivo)", "smart_stone_command", 64, 1, 36177, 10000), +(987895, 0, 8, "Mining Bonus Loot!", 6568, 5, "Aumenta la chance di trovare materiali usando Mining! (passivo)", "smart_stone_command", 64, 1, 36177, 10000); + + +DELETE FROM creature_template WHERE entry = 170000; +INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES +('170000','0','0','0','0','0','1060','0','0','0','Smartstore','AzerothShard',NULL,'0','82','83','0','31','1','1','1.14286','1','0','13','17','0','42','1','2000','2000','1','512','2048','0','0','0','0','0','0','9','13','100','7','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','3','1','1','1','1','0','0','1','0','2','smartstone_vendor','12340'); + +UPDATE creature_template SET npcflag = 129 WHERE entry = 170000; + +DELETE FROM npc_vendor WHERE entry = 170000; +INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `incrtime`, `ExtendedCost`) VALUES('170000','0','987890','0','0','0'); +INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `incrtime`, `ExtendedCost`) VALUES('170000','0','987891','0','0','0'); +INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `incrtime`, `ExtendedCost`) VALUES('170000','0','987892','0','0','0'); +INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `incrtime`, `ExtendedCost`) VALUES('170000','0','987893','0','0','0'); +INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `incrtime`, `ExtendedCost`) VALUES('170000','0','987894','0','0','0'); +INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `incrtime`, `ExtendedCost`) VALUES('170000','0','987895','0','0','0'); + +DELETE FROM playercreateinfo_item WHERE itemid = 32547; +INSERT INTO playercreateinfo_item (race, class, itemid, amount) VALUES +(0,0,32547,1), +(0,1,32547,1), +(0,2,32547,1), +(0,3,32547,1), +(0,4,32547,1), +(0,5,32547,1), +(0,6,32547,1), +(0,7,32547,1), +(0,8,32547,1), +(0,9,32547,1), +(0,11,32547,1), +(1,0,32547,1), +(1,1,32547,1), +(1,2,32547,1), +(1,3,32547,1), +(1,4,32547,1), +(1,5,32547,1), +(1,6,32547,1), +(1,7,32547,1), +(1,8,32547,1), +(1,9,32547,1), +(1,11,32547,1), +(2,0,32547,1), +(2,1,32547,1), +(2,2,32547,1), +(2,3,32547,1), +(2,4,32547,1), +(2,5,32547,1), +(2,6,32547,1), +(2,7,32547,1), +(2,8,32547,1), +(2,9,32547,1), +(2,11,32547,1), +(3,0,32547,1), +(3,1,32547,1), +(3,2,32547,1), +(3,3,32547,1), +(3,4,32547,1), +(3,5,32547,1), +(3,6,32547,1), +(3,7,32547,1), +(3,8,32547,1), +(3,9,32547,1), +(3,11,32547,1), +(4,0,32547,1), +(4,1,32547,1), +(4,2,32547,1), +(4,3,32547,1), +(4,4,32547,1), +(4,5,32547,1), +(4,6,32547,1), +(4,7,32547,1), +(4,8,32547,1), +(4,9,32547,1), +(4,11,32547,1), +(5,0,32547,1), +(5,1,32547,1), +(5,2,32547,1), +(5,3,32547,1), +(5,4,32547,1), +(5,5,32547,1), +(5,6,32547,1), +(5,7,32547,1), +(5,8,32547,1), +(5,9,32547,1), +(5,11,32547,1), +(6,0,32547,1), +(6,1,32547,1), +(6,2,32547,1), +(6,3,32547,1), +(6,4,32547,1), +(6,5,32547,1), +(6,6,32547,1), +(6,7,32547,1), +(6,8,32547,1), +(6,9,32547,1), +(6,11,32547,1), +(7,0,32547,1), +(7,1,32547,1), +(7,2,32547,1), +(7,3,32547,1), +(7,4,32547,1), +(7,5,32547,1), +(7,6,32547,1), +(7,7,32547,1), +(7,8,32547,1), +(7,9,32547,1), +(7,11,32547,1), +(8,0,32547,1), +(8,1,32547,1), +(8,2,32547,1), +(8,3,32547,1), +(8,4,32547,1), +(8,5,32547,1), +(8,6,32547,1), +(8,7,32547,1), +(8,8,32547,1), +(8,9,32547,1), +(8,11,32547,1), +(10,0,32547,1), +(10,1,32547,1), +(10,2,32547,1), +(10,3,32547,1), +(10,4,32547,1), +(10,5,32547,1), +(10,6,32547,1), +(10,7,32547,1), +(10,8,32547,1), +(10,9,32547,1), +(10,11,32547,1), +(11,0,32547,1), +(11,1,32547,1), +(11,2,32547,1), +(11,3,32547,1), +(11,4,32547,1), +(11,5,32547,1), +(11,6,32547,1), +(11,7,32547,1), +(11,8,32547,1), +(11,9,32547,1), +(11,11,32547,1); \ No newline at end of file diff --git a/src/ASCommon/AzthFirstKills.cpp b/src/ASCommon/AzthFirstKills.cpp new file mode 100644 index 0000000..e51af77 --- /dev/null +++ b/src/ASCommon/AzthFirstKills.cpp @@ -0,0 +1,193 @@ +#include "AzthFirstKills.h" +#include "Player.h" +#include "AzthUtils.h" +#include "InstanceScript.h" +#include +#include +#include + +class InstanceScript; + +// Copied from naxxramas.h +enum NxEncouters +{ + BOSS_PATCHWERK = 0, + BOSS_GROBBULUS = 1, + BOSS_GLUTH = 2, + BOSS_NOTH = 3, + BOSS_HEIGAN = 4, + BOSS_LOATHEB = 5, + BOSS_ANUB = 6, + BOSS_FAERLINA = 7, + BOSS_MAEXXNA = 8, + BOSS_THADDIUS = 9, + BOSS_RAZUVIOUS = 10, + BOSS_GOTHIK = 11, + BOSS_HORSEMAN = 12, + BOSS_SAPPHIRON = 13, + BOSS_KELTHUZAD = 14, + MAX_ENCOUNTERS, +}; + +AzthFirstKills* AzthFirstKills::instance() +{ + static AzthFirstKills instance; + return &instance; +} + +bool AzthFirstKills::canCompleteAchi(Player */* player */, uint32 /* achiId */) +{ + return true; + /* + uint32 plLevel=sAZTH->GetAZTHPlayer(player)->isTimeWalking() ? sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel() : player->getLevel(); + uint32 groupLevel=sAZTH->GetAZTHPlayer(player)->getGroupLevel(false); + + uint32 level=sAzthUtils->maxTwLevel(groupLevel, plLevel); + + switch (achiId) { + case ACHI_NAXXRAMAS: + { + if (InstanceScript* iscript=player->GetInstanceScript()) { + if ( + iscript->GetBossState(BOSS_MAEXXNA) == DONE && + iscript->GetBossState(BOSS_LOATHEB) == DONE && + iscript->GetBossState(BOSS_HORSEMAN) == DONE && + iscript->GetBossState(BOSS_THADDIUS) == DONE + ) { + return level == TIMEWALKING_LVL_NAXX; + } + } + return false; + } + case ACHI_OBSIDIAN: + return level == TIMEWALKING_LVL_VAS_LVL13; + case ACHI_MAGIC_SEEKER: + return level == TIMEWALKING_LVL_VAS_LVL13; + case ACHI_DEATH_DEMISE: + case ACHI_CELESTIAL_DEFENDER: + return level == TIMEWALKING_LVL_VAS_LVL4; + case ACHI_GRAND_CRUSADER: + return level == TIMEWALKING_LVL_VAS_LVL4; + } + + if (achiId == ACHI_FALL_OF_LK) { + if (player->GetInstanceScript() && player->GetInstanceScript()->GetData(DATA_AZTH_HARD_MODE)) { + return true; + } + + return false; + } + + return true; + * */ +} + +void AzthFirstKills::setRealmCompleted(const AchievementEntry* achievement) +{ + this->currentFirstKills[achievement->ID] = std::chrono::system_clock::now(); +} + +bool AzthFirstKills::isRealmCompleted(AchievementEntry const* achievement, bool originalValue) { + if (!achievement) //should never happen + return originalValue; + + // if first kill exists in our std::map and has been achieved more than 1 minute ago + // then it has been completed. + std::map::iterator itr=this->currentFirstKills.find(achievement->ID); + if (itr!=this->currentFirstKills.end() + && (std::chrono::system_clock::now() - itr->second) > std::chrono::minutes(1)) + return true; + + // if the first kill does not exists in our map, it is not completed + return false; +/* + time_t now = time(0); + struct tm * tnow = std::gmtime(&now); + + switch(achievement->ID) { + case ACHI_NAXXRAMAS: + if (tnow->tm_mon >= 0) { // January : 1-1 + return false; + } + break; + case ACHI_OBSIDIAN: + if (tnow->tm_mon >= 1) {// February + AchievementEntry const* achievement = sAchievementStore.LookupEntry(ACHI_NAXXRAMAS); + if (isRealmCompleted(achievement, false)) + return false; + } + break; + case ACHI_MAGIC_SEEKER: + if (tnow->tm_mon >= 2) { // March + AchievementEntry const* achievement = sAchievementStore.LookupEntry(ACHI_OBSIDIAN); + if (isRealmCompleted(achievement, false)) + return false; + } + break; + case ACHI_DEATH_DEMISE: + if (tnow->tm_mon >= 3) { // Avril + AchievementEntry const* achievement = sAchievementStore.LookupEntry(ACHI_MAGIC_SEEKER); + if (isRealmCompleted(achievement, false)) + return false; + } + break; + case ACHI_CELESTIAL_DEFENDER: + if (tnow->tm_mon >= 4) { // May + AchievementEntry const* achievement = sAchievementStore.LookupEntry(ACHI_DEATH_DEMISE); + if (isRealmCompleted(achievement, false)) + return false; + } + break; + case ACHI_GRAND_CRUSADER: + if (tnow->tm_mon >= 7) { // August + AchievementEntry const* achievement = sAchievementStore.LookupEntry(ACHI_CELESTIAL_DEFENDER); + if (isRealmCompleted(achievement, false)) + return false; + } + break; + case ACHI_FALL_OF_LK: + if (tnow->tm_mon >= 8) { // September + AchievementEntry const* achievement = sAchievementStore.LookupEntry(ACHI_CELESTIAL_DEFENDER); + if (isRealmCompleted(achievement, false)) + return false; + } + break; + } + + // we assume that the achievement + // has been completed (not available) at this point + return true; + */ +} + + +void AzthFirstKills::loadCurrentFirstkills() { + uint32 t= static_cast(sAzthUtils->getStartsOfYear()); + + QueryResult fkAchievements = CharacterDatabase.PQuery("SELECT DISTINCT(achievement) FROM character_achievement WHERE achievement IN (%u,%u,%u,%u,%u,%u,%u) AND date >= %u", + ACHI_NAXXRAMAS, + ACHI_OBSIDIAN, + ACHI_MAGIC_SEEKER, + ACHI_DEATH_DEMISE, + ACHI_CELESTIAL_DEFENDER, + ACHI_GRAND_CRUSADER, + ACHI_FALL_OF_LK, + t + ); + + if (fkAchievements) + { + do { + Field* fkAchievementsFields = fkAchievements->Fetch(); + + if (!fkAchievementsFields) + break; + + uint32 achievement = fkAchievementsFields[0].GetUInt32(); + // initialize all completed first kill with the timestamp of beginning of the year ( > 1 minute ) + this->currentFirstKills[achievement]=std::chrono::system_clock::from_time_t(t); + } while (fkAchievements->NextRow()); + + } + +} diff --git a/src/ASCommon/AzthFirstKills.h b/src/ASCommon/AzthFirstKills.h new file mode 100644 index 0000000..202c1da --- /dev/null +++ b/src/ASCommon/AzthFirstKills.h @@ -0,0 +1,38 @@ +#ifndef AZTH_FIRST_KILL_H +#define AZTH_FIRST_KILL_H + +#include "Common.h" +#include "DatabaseEnv.h" +#include "DBCEnums.h" +#include "DBCStores.h" +#include "Player.h" +#include + +class Player; + +enum FirstKills:uint32 { + ACHI_NAXXRAMAS=1402, //-- "Conqueror of Naxxramas" + ACHI_OBSIDIAN=456, //-- "Obsidian Slayer", + ACHI_MAGIC_SEEKER=1400, //-- "Magic Seeker", + ACHI_DEATH_DEMISE=3117, //-- "Death's Demise", + ACHI_CELESTIAL_DEFENDER=3259, //-- "Celestial Defender", + ACHI_GRAND_CRUSADER=4078, //-- "Grand Crusader", + ACHI_FALL_OF_LK=4576, //-- "Fall of the Lich King", +}; + +class AzthFirstKills +{ +public: + static AzthFirstKills* instance(); + + void loadCurrentFirstkills(); + bool isRealmCompleted(AchievementEntry const* achievement, bool originalValue); + void setRealmCompleted(AchievementEntry const* achievement); + bool canCompleteAchi(Player *player, uint32 achiId); +private: + std::map currentFirstKills; +}; + +#define sAzthFirstKills AzthFirstKills::instance() + +#endif diff --git a/src/ASCommon/AzthLanguage.cpp b/src/ASCommon/AzthLanguage.cpp new file mode 100644 index 0000000..f72d693 --- /dev/null +++ b/src/ASCommon/AzthLanguage.cpp @@ -0,0 +1,78 @@ +#include "AzthLanguage.h" +#include "AzthLanguageStrings.h" +#include "AzthPlayer.h" +#include "Player.h" +#include "SharedDefines.h" +#include "AZTH.h" + +class Player; + +AzthLangString::AzthLangString(std::string const def, std::string const it) +{ + this->def = def; + this->it = it; +} + +AzthLangString::~AzthLangString() +{ +} + +AzthLang::AzthLang() +{ + strings = std::unordered_map(); +} + +AzthLang::~AzthLang() +{ + //for (map::iterator it = strings.begin(); it != strings.end(); ++it) + // delete it->second; +} + +AzthLang* AzthLang::instance() +{ + static AzthLang instance; + return &instance; +} + +void AzthLang::add(uint32 strId, std::string const def, std::string const it) +{ + this->strings[strId]=new AzthLangString(def,it); +} + +const char * AzthLang::get(uint32 strId, Player const* pl) const +{ + AzthCustomLangs loc = AZTH_LOC_EN; + + if (pl) + loc = sAZTH->GetAZTHPlayer((Player*)pl)->getCustLang(); + + std::unordered_map::const_iterator itr=strings.find(strId); + if (itr != strings.end()) + { + switch (loc) + { + case AZTH_LOC_IT: + return itr->second->it.c_str(); + break; + case AZTH_LOC_EN: + return itr->second->def.c_str(); + break; + } + } + + return "Unknown Azth string"; +} + +const char * AzthLang::getf(uint32 strId, Player const* pl, ...) const +{ + const char *format = get(strId, pl); + va_list ap; + char str [2048]; + va_start(ap, pl); + vsnprintf(str, 2048, format, ap); + va_end(ap); + + const char *ret=&str[0]; + + return ret; +} diff --git a/src/ASCommon/AzthLanguage.h b/src/ASCommon/AzthLanguage.h new file mode 100644 index 0000000..d8cd788 --- /dev/null +++ b/src/ASCommon/AzthLanguage.h @@ -0,0 +1,38 @@ +#ifndef AZTHLANGUAGE_H +#define AZTHLANGUAGE_H + +#include "Config.h" +#include "Common.h" +#include + +class Player; + +class AzthLangString { +public: + friend class AzthLang; + + AzthLangString(std::string const def, std::string const it); + AzthLangString() {}; + ~AzthLangString(); +private: + std::string def; + std::string it; +}; + +class AzthLang { + +public: + std::unordered_map strings; + explicit AzthLang(); + ~AzthLang(); + + static AzthLang* instance(); + + void loadStrings(); + virtual const char * get(uint32 strId, Player const* pl) const; + virtual const char * getf(uint32 strId, Player const* pl, ...) const; + void add(uint32 strId, std::string const def, std::string const it); +}; + +#define sAzthLang AzthLang::instance() +#endif /* AZTHLANGUAGE_H */ diff --git a/src/ASCommon/AzthLanguageStrings.cpp b/src/ASCommon/AzthLanguageStrings.cpp new file mode 100644 index 0000000..8223162 --- /dev/null +++ b/src/ASCommon/AzthLanguageStrings.cpp @@ -0,0 +1,142 @@ +#include "AzthLanguageStrings.h" + +void AzthLang::loadStrings() { + this->add(AZTH_LANG_REMOVED_ITEMS, + "Items removed from npc", + "Item rimossi dall'npc"); + this->add(AZTH_LANG_PVP_NPC_SET_ADVICE, + "Current equipped items will be moved in bag, make sure you have enough space. Do you want continue?", + "Gli item attualmente equippati saranno spostati nella borsa, assicurati di avere abbastanza spazio. Vuoi proseguire?"); + this->add(AZTH_LANG_PVP_NPC_CANNOT_EQUIP, + "Item |cffff0000|Hitem:%u::::::::::::|h[%s]|h|r cannot be equipped, maybe it's unique and you already got or you don't have the requirements", + "L'item |cffff0000|Hitem:%u::::::::::::|h[%s]|h|r non può essere equippato, forse è unico e già lo possiedi oppure non hai i requisiti"); + this->add(AZTH_LANG_RESET_AURAS_ADVICE, + "Reset aura can only be used while in rest state and not in combat! Go to an Inn", + "Il comando reset aura può essere utilizzato solo mentre si è in rest e non in combat. Recati in una locanda."); + this->add(AZTH_LANG_SHOW_BANK_ITEMS, + "Show my deposited items, from %u to %u", + "Mostra gli items depositati, da %u a %u"); + + this->add(AZTH_LANG_INSTANCE_ONLY, "Must be in instance!", "Devi essere in un instance!"); + this->add(AZTH_LANG_RAID_COMBAT, "One of your raid member is in combat!", "Uno dei membri del raid è in combat!"); + + this->add(AZTH_LANG_GROUP_LEVEL_REG, "|cffff0000 %s level has been registered in group with value: %s. Group size: %u|r", "|cffff0000 Il livello di %s è stato registrato all'interno del gruppo con il valore: %s. Dimensione gruppo: %u|r"); + this->add(AZTH_LANG_INSTANCE_LEVEL_REG, "|cffff0000 %s level has been registered in this instance with value: %s. Players in instance: %u|r", "|cffff0000 Il livello di %s è stato registrato all'interno dell'instance con il valore: %s. Players in instance: %u|r"); + + //common + this->add(AZTH_LANG_COMMON_TEMPORARILY, "temporarily", "temporaneamente"); + this->add(AZTH_LANG_COMMON_NOTVALIDPARAMTER, "Parameter not valid", "Parametro non valido"); + this->add(AZTH_LANG_CHECK_EMAIL, "Check your mailbox", "Controlla la tua mail!"); + this->add(AZTH_LANG_BAG_FULL_SENT_TO_MAIL, "Hai le borse piene! Controlla la mailbox!", "Hai le borse piene! Controlla la mailbox!"); + + //collection npc + this->add(AZTH_LANG_COLLECTION_DEPOSIT_ITEMS, "Store Items from your main backpack", "Deposita un item dalla tua borsa principale"); + this->add(AZTH_LANG_COLLECTION_SEARCH_ITEMS, "Search an item by name", "Ricerca un item per nome"); + this->add(AZTH_LANG_COLLECTION_SEARCH_ITEMS_CODE, "Insert name, and press accept button", "Inserisci il nome e premi sul bottone accept"); + this->add(AZTH_LANG_COLLECTION_ITEM_NOT_RECOVERED, "Item not recovered, unique? bag full?", "Item non recuperato, unique? borse piene?"); + this->add(AZTH_LANG_COLLECTION_ITEM_NOT_VALID, "This item is not valid", "Questo item non è valido"); + this->add(AZTH_LANG_COLLECTION_ITEM_WITH_DURATION, "Unable to store items with a duration", "Non è possibile depositare items con una durata temporanea!"); + this->add(AZTH_LANG_COLLECTION_ITEM_NOT_EMPTY_BAG, "Unable to store bag not empty", "Non è possibile depositare borse non vuote!"); + this->add(AZTH_LANG_COLLECTION_ITEM_NOT_STACKED, "Unable to store not stacked item", "Non possono essere depositati item raggruppati in un unico slot (stacked)"); + this->add(AZTH_LANG_COLLECTION_ITEM_ASHEN_BAND, "Unable to store the Ashen Band", "Non è possibile depositare l'Ashen Band!"); + this->add(AZTH_LANG_COLLECTION_ITEM_ALREADY_STORED, "You have already deposited this item", "Hai già depositato questo item!"); + this->add(AZTH_LANG_COLLECTION_ITEM_STORED, "Item stored", "Item depositato"); + + //multidimension + this->add(AZTH_LANG_MULTIDIMENSION_CLASSIC_EXPCHECK, "|cffff0000 You are in the Classic dimension, you can not access the maps of a most recent expansions|r", "|cffff0000 Sei nella dimensione Classic, non è possibile accedere a mappe di espansioni più recenti|r"); + this->add(AZTH_LANG_MULTIDIMENSION_TBC_EXPCHECK, "|cffff0000 You are in the TBC dimension, you can not access the maps of a most recent expansions|r", "|cffff0000 Sei nella dimensione TBC, non è possibile accedere a mappe di espansioni più recenti|r"); + this->add(AZTH_LANG_MULTIDIMENSION_GUILD_GROUPCHECK, "|cffff0000 You can not access in a group with characters of other guilds that are in Guild dimension|r", "|cffff0000 Non è possibile entrare in gruppo con personaggi di altre gilde presenti nella dimensione Guild World|r"); + this->add(AZTH_LANG_MULTIDIMENSION_TW_CHECK60, "You must be at level 60 or lower to access this dimension, try using Timewalking", "E' necessario essere di livello 60 o inferiore per entrare in questa dimensione, prova ad usare il Timewalking"); + this->add(AZTH_LANG_MULTIDIMENSION_TW_CHECK70, "You must be at level 70 or lower to access this dimension, try using Timewalking", "E' necessario essere di livello 70 o inferiore per entrare in questa dimensione, prova ad usare il Timewalking"); + this->add(AZTH_LANG_MULTIDIMENSION_GUILD_ACCESSCHECK, "You must be in a guild to access this dimension", "E' necessario essere in una gilda per entrare in questa dimensione!"); + this->add(AZTH_LANG_MULTIDIMENSION_GM_ACCESSCHECK, "You must be a Game Master to access this dimension", "E' necessario essere un Game Master per accedere a questa dimensione!"); + this->add(AZTH_LANG_MULTIDIMENSION_TEMP_TELEPORT, "|cffff0000 You have been teleported into the dimension ", "|cffff0000 Sei stato trasportato nella dimensione "); + this->add(AZTH_LANG_MULTIDIMENSION_CANNOT_BE_SUMMONED, "|cffff0000 You cannot be summoned in this dimension!|r", "|cffff0000 Non puoi essere summonato in questa dimensione!|r"); + this->add(AZTH_LANG_MULTIDIMENSION_CANNOT_BE_SUMMONED_SUMMONER, "|cffff0000 You can not summon a player from dimension %s to dimension %s |r", "|cffff0000 Non puoi summonare il player dalla dimensione %s alla dimensione %s |r"); + + //PvP instant Set/Items + this->add(AZTH_LANG_PVPITEMS_LEVEL_CHECK, "|cffff0000|Hitem:%u::::::::::::|h[%s]|h|r has too high level!", "|cffff0000|Hitem:%u::::::::::::|h[%s]|h|r ha un livello troppo alto!"); + this->add(AZTH_LANG_PVPITEMS_MLEVEL_CHECK, "|cffff0000 Your medium item level is too high: %u|r", "|cffff0000 Il tuo item level medio è troppo alto: %u|r"); + this->add(AZTH_LANG_PVPITEMS_REMOVED, "The tournament PvP set has been removed", "Il set pvp tournament e' stato rimosso"); + this->add(AZTH_LANG_PVPITEMS_FORCE_REMOVED, "Your PVP set has been removed, you can not change zone with a temporary set equipped!", "Il tuo set PVP e' stato rimosso, non puoi cambiare zona con un set temporaneo!"); + + //full pvp accounts + this->add(AZTH_LANG_PVPACCOUNT_DUNGEON, "You are using a Full-PvP characters, you can not join raid or dungeons.", "Stai usando un personaggio Full-PvP, non puoi partecipare a raid/dungeons."); + + //custom commands + this->add(AZTH_LANG_CCOMMANDS_QUEST, "Syntax: .qc $quest\n\nCheck if $quest has a bug.", "Sintassi: .qc $quest\n\nControlla se la $quest è buggata."); + this->add(AZTH_LANG_CCOMANDS_QUEST_HASBUG, "[%s] has a bug!", "[%s] è buggata!"); + this->add(AZTH_LANG_CCOMANDS_QUEST_HASBUGANDCOMPLETED, "[%s] has a bug so it has been completed!", "[%s] è buggata ed è stata completata!"); + this->add(AZTH_LANG_CCOMANDS_QUEST_NOBUG, "[%s] not seems to has a bug, if you think it has, report it in bugtracker, thanks.", "[%s] non risulta essere buggata, se ritieni che lo sia ti preghiamo di segnalarcelo utilizzando il bugtracker."); + + //timewalking + this->add(AZTH_LANG_TW_LEVEL_MAX, "This mode has maximum item level: %u", "Questa modalità ha l'item level massimo: %u"); + this->add(AZTH_LANG_TW_MODE_ON, "You are in |cffff0000 Timewalking level: %s|r mode", "Sei in modalità |cffff0000 Timewalking livello: %s|r"); + this->add(AZTH_LANG_TW_MODE_OFF, "You exited from |cffff0000 Timewalking|r mode!", "Sei uscito dalla modalità |cffff0000 Timewalking!|r"); + this->add(AZTH_LANG_TW_NEW_ITEM_OBTAINED, "Congrats! you got |cffff0000|Hitem:%u::::::::::::|h[%s]|h|r x%d|r ", "Complimenti! hai ottenuto |cffff0000|Hitem:%u::::::::::::|h[%s]|h|r x%d|r "); + this->add(AZTH_LANG_TW_GROUP_CHECK_LEADER, "|cffff0000 Invited Player is not at your same Timewalking Level!|r", "|cffff0000 Il Player invitato non è al tuo stesso livello di Timewalking!|r"); + this->add(AZTH_LANG_TW_GROUP_CHECK_PLAYER, "|cffff0000 The Leader is in Timewalking, you must set Timewalking at same level of the leader party to join|r", "|cffff0000 Il Leader del party è in Timewalking. Devi settare il suo stesso livello per poter entrare nel party!|r"); + this->add(AZTH_LANG_TW_MOA_BONUS, "Marks of Azeroth bonus gained for level %s!", "Ottenuto bonus Marks of Azeroth per il livello %s!"); + this->add(AZTH_LANG_TW_ASREP_BONUS, "AzerothShard reputation bonus gained for level: %s!", "Ottenuto bonus reputazione con AzerothShard per il livello %s!"); + this->add(AZTH_LANG_TW_BOSS_KILLED, "Defeated %u of %u Bosses in this instance in %u minutes", "Sconfitti %u su %u Bosses in questa incursione. Tempo impiegato: %u minuti."); + this->add(AZTH_LANG_TW_LAST_BOSS_KILLED, "Congratulations! Final Boss Defeated!", "Congratulazioni! Boss finale SCONFITTO!"); + this->add(AZTH_LANG_TW_INSTANCE_COMPLETED, "AMAZING! All bosses has been defeated!", "SBALORDITIVO! Tutti i boss sono stati sconfitti!"); + this->add(AZTH_LANG_TW_REP_REMOVED_KILL, "|cffff0000 AzerothShard Reputation Lost:|r you've killed a low level boss, shame on you!", "|cffff0000 Reputazione con AzerothShard persa:|r vergognati! hai ucciso un boss di basso livello!"); + this->add(AZTH_LANG_TW_REP_REMOVED_LOGOUT, "|cffff0000 AzerothShard Reputation Lost.|r last Adventure activity: %d days", "|cffff0000 Reputazione con AzerothShard persa.|r Ultima attività dell'Adventure: %d giorni."); + + //season tournament + this->add(AZTH_LANG_TOURNAMENT_LEVEL_TOOHIGH, "|cffff0000|Hitem:%u::::::::::::|h[%s]|h|r has a too high level! Remove it to play this season.", "|cffff0000|Hitem:%u::::::::::::|h[%s]|h|r ha un livello troppo alto! Rimuovilo per poter giocare questa season."); + this->add(AZTH_LANG_TOURNAMENT_LEVEL_ACTUAL, "Current season only allows items with |cffff0000%d|r maximum level", "L'attuale Season ha livello massimo |cffff0000%d|r"); + + //ss + this->add(AZTH_LANG_SS_README, "THINGS TO KNOW!", "COSE DA SAPERE!"); + this->add(AZTH_LANG_SS_TELEPORT_BACK, "Teleport me back", "Riportami indietro"); + this->add(AZTH_LANG_SS_TELEPORT_DISABLED, "Teleport has been currently disabled", "Il teleport è attualmente disabilitato"); + this->add(AZTH_LANG_SS_BACK, "Back", "Indietro"); + this->add(AZTH_LANG_SS_VALUE, "Insert a value" , "Inserisci un valore"); + this->add(AZTH_LANG_SS_POSSES_CHECK, "|CFF7BBEF7[SmartStone]|r: You already have a smartstone!", "|CFF7BBEF7[SmartStone]|r: Hai già una smartstone!"); + this->add(AZTH_LANG_SS_NEWAPP, "You have just unlocked a new app for your SmartStone", "Hai sbloccato una nuova app per la tua SmartStone!"); + this->add(AZTH_LANG_SS_CHANGE_RACE, "Relog to change race", "Rilogga per cambiare razza"); + this->add(AZTH_LANG_SS_CHANGE_FACTION, "Relog to change faction", "Rilogga per cambiare fazione"); + this->add(AZTH_LANG_SS_CHANGE_NAME, "Relog to change name!", "Rilogga per cambiare nome!"); + + //hs + this->add(AZTH_LANG_HS_QUESTS,"===== Quests: =====", "===== Missioni: ====="); + this->add(AZTH_LANG_HS_PVP_QUEST,"PvP Daily Quest: %s","Missione PvP giornaliera: %s"); + this->add(AZTH_LANG_HS_DAILY_QUEST,"PvE Daily Quest: %s","Missione PvE giornaliera: %s"); + this->add(AZTH_LANG_HS_WEEKLY_QUEST,"Weekly Quest: %s","Missione settimanale: %s"); + this->add(AZTH_LANG_HS_TW_QUESTS,"===== Adventure Quests: =====","===== Missioni Adventure: ====="); + this->add(AZTH_LANG_HS_TW_WEEKLY_QUEST,"Raid: %s","Incursione: %s"); + this->add(AZTH_LANG_HS_TW_WEEKLY_RANDOM_QUEST,"Random Raid: %s","Incursione casuale: %s"); + this->add(AZTH_LANG_HS_TW_DAILY_QUEST,"Daily quest: %s","Missione giornaliera: %s"); + this->add(AZTH_LANG_HS_TW_DAILY_RANDOM_QUEST,"Random Daily quest: %s","Missione giornaliera casuale: %s"); + + this->add(AZTH_LANG_HS_QUEST_LIMIT_REACHED,"You reached the limit of this quest category in your quest log, remove or complete one before.","Hai raggiunto il limite massimo di quest di tale categoria nel tuo quest log, rimuovine o completane una prima."); + this->add(AZTH_LANG_HS_QUEST_LIMIT_SUFFIX,"[LIMIT REACHED]","[LIMITE RAGGIUNTO]"); + + //bg item level + this->add(AZTH_LANG_BG_ITEM_LEVEL_RESET, "Max item level set to its default value.","L'item level massimo e' stato riportato al valore predefinito."); + this->add(AZTH_LANG_BG_ITEM_LEVEL_CHANGED, "Max item level changed.", "L'item level massimo e' stato cambiato."); + + //rating bonus + this->add(AZTH_LANG_BR_ACTIVE_BONUS,"|CFF7BBEF7[Rating Bonus]|r: Active bonus on %s %.2fx.","|CFF7BBEF7[Rating Bonus]|r: Bonus attivo in %s %.2fx."); + this->add(AZTH_LANG_BR_NO_BONUS,"|CFF7BBEF7[Rating Bonus]|r: There are no bonuses right now!.","|CFF7BBEF7[Rating Bonus]|r: Non ci sono bonus attivi!."); + + //donation vendor + this->add(AZTH_LANG_DONATION_UPDATE_MENU, "|TInterface/PaperDollInfoFrame/UI-GearManager-Undo:30:30:-18:0|tUpdate menu", "|TInterface/PaperDollInfoFrame/UI-GearManager-Undo:30:30:-18:0|tAggiorna"); + this->add(AZTH_LANG_DONATION_BACK, "|TInterface/ICONS/Ability_Spy:30:30:-18:0|tBack..", "|TInterface/ICONS/Ability_Spy:30:30:-18:0|tIndietro.."); + this->add(AZTH_LANG_DONATION_ITEM_RECEIVED, "Item received: |cffff0000|Hitem:%u::::::::::::|h[%s]|h|r", "Item ricevuto: |cffff0000|Hitem:%u::::::::::::|h[%s]|h|r"); + this->add(AZTH_LANG_DONATION_ITEM_NO_DB, "Error: item doesn't exist in database!", "Errore: l'item non esiste nel database!"); + + //dimension npc + this->add(AZTH_LANG_DIMENSION_CURRENT, "Currenlty you are on dimension: ", "Attualmente sei nella dimensione: "); + this->add(AZTH_LANG_DIMENSION_ILLUSORY, "Illusory World: Standard Dimension", "[PRINCIPALE] Illusory World: Dimensione standard."); + this->add(AZTH_LANG_DIMENSION_GUILD, "Guild World: Guild Houses dimension", "Guild World: Dimensione delle case di gilda."); + this->add(AZTH_LANG_DIMENSION_PVP, "Corrupted World: PvP Dimension", "Corrupted World: Dimensione riservata al pvp"); + this->add(AZTH_LANG_DIMENSION_ENTERTAIN, "Toys Land: Entertaining World events", "Toys Land: Dimensione dedicata agli eventi di intrattenimento"); + this->add(AZTH_LANG_DIMENSION_GDR, "Warcraft Tales: RPG Dimension", "Warcraft Tales: Dimensione dedicata al GDR"); + this->add(AZTH_LANG_DIMENSION_LVL60, "Classic World: Level 60 Dimension", "Classic World: Dimensione con livello limite 60"); + this->add(AZTH_LANG_DIMENSION_LVL70, "TBC World: Level 70 Dimension", "TBC World: Dimensione con livello limite 70"); + this->add(AZTH_LANG_DIMENSION_TEST, "Test World: Dimension reserverd for test (be careful!)", "Test World: Dimensione riservata ai test (siate cauti!)"); + this->add(AZTH_LANG_DIMENSION_GM, "GameMaster World: Dimension for GM and Developers", "GameMaster World: Benvenuti GM e Developers, questo è il vostro mondo!"); +} diff --git a/src/ASCommon/AzthLanguageStrings.h b/src/ASCommon/AzthLanguageStrings.h new file mode 100644 index 0000000..0e43521 --- /dev/null +++ b/src/ASCommon/AzthLanguageStrings.h @@ -0,0 +1,122 @@ +#ifndef AZTHLANGUAGE_STRINGS_H +#define AZTHLANGUAGE_STRINGS_H + +#include "AzthLanguage.h" // including LanguageStrings.h will include the system too + +enum AzthLangStrEnum +{ + AZTH_LANG_REMOVED_ITEMS = 0, + AZTH_LANG_PVP_NPC_SET_ADVICE, + AZTH_LANG_PVP_NPC_CANNOT_EQUIP, + AZTH_LANG_RESET_AURAS_ADVICE, + AZTH_LANG_SHOW_BANK_ITEMS, + AZTH_LANG_INSTANCE_ONLY, + AZTH_LANG_RAID_COMBAT, + AZTH_LANG_GROUP_LEVEL_REG, + AZTH_LANG_INSTANCE_LEVEL_REG, + //collection npc + AZTH_LANG_COLLECTION_DEPOSIT_ITEMS, + AZTH_LANG_COLLECTION_SEARCH_ITEMS, + AZTH_LANG_COLLECTION_SEARCH_ITEMS_CODE, + AZTH_LANG_COLLECTION_ITEM_NOT_RECOVERED, + AZTH_LANG_COLLECTION_ITEM_NOT_VALID, + AZTH_LANG_COLLECTION_ITEM_WITH_DURATION, + AZTH_LANG_COLLECTION_ITEM_NOT_EMPTY_BAG, + AZTH_LANG_COLLECTION_ITEM_NOT_STACKED, + AZTH_LANG_COLLECTION_ITEM_ASHEN_BAND, + AZTH_LANG_COLLECTION_ITEM_ALREADY_STORED, + AZTH_LANG_COLLECTION_ITEM_STORED, + //common + AZTH_LANG_COMMON_TEMPORARILY, + AZTH_LANG_COMMON_NOTVALIDPARAMTER, + AZTH_LANG_CHECK_EMAIL, + AZTH_LANG_BAG_FULL_SENT_TO_MAIL, + //ss + AZTH_LANG_SS_README, + AZTH_LANG_SS_TELEPORT_BACK, + AZTH_LANG_SS_TELEPORT_DISABLED, + AZTH_LANG_SS_BACK, + AZTH_LANG_SS_VALUE, + AZTH_LANG_SS_POSSES_CHECK, + AZTH_LANG_SS_NEWAPP, + AZTH_LANG_SS_CHANGE_RACE, + AZTH_LANG_SS_CHANGE_FACTION, + AZTH_LANG_SS_CHANGE_NAME, + //hs + AZTH_LANG_HS_QUESTS, + AZTH_LANG_HS_PVP_QUEST, + AZTH_LANG_HS_DAILY_QUEST, + AZTH_LANG_HS_WEEKLY_QUEST, + AZTH_LANG_HS_TW_QUESTS, + AZTH_LANG_HS_TW_WEEKLY_QUEST, + AZTH_LANG_HS_TW_WEEKLY_RANDOM_QUEST, + AZTH_LANG_HS_TW_DAILY_QUEST, + AZTH_LANG_HS_TW_DAILY_RANDOM_QUEST, + AZTH_LANG_HS_QUEST_LIMIT_REACHED, + AZTH_LANG_HS_QUEST_LIMIT_SUFFIX, + //multidimension + AZTH_LANG_MULTIDIMENSION_CLASSIC_EXPCHECK, + AZTH_LANG_MULTIDIMENSION_TBC_EXPCHECK, + AZTH_LANG_MULTIDIMENSION_GUILD_GROUPCHECK, + AZTH_LANG_MULTIDIMENSION_TW_CHECK60, + AZTH_LANG_MULTIDIMENSION_TW_CHECK70, + AZTH_LANG_MULTIDIMENSION_GUILD_ACCESSCHECK, + AZTH_LANG_MULTIDIMENSION_GM_ACCESSCHECK, + AZTH_LANG_MULTIDIMENSION_TEMP_TELEPORT, + AZTH_LANG_MULTIDIMENSION_CANNOT_BE_SUMMONED, + AZTH_LANG_MULTIDIMENSION_CANNOT_BE_SUMMONED_SUMMONER, + //custom commands + AZTH_LANG_CCOMMANDS_QUEST, + AZTH_LANG_CCOMANDS_QUEST_HASBUG, + AZTH_LANG_CCOMANDS_QUEST_HASBUGANDCOMPLETED, + AZTH_LANG_CCOMANDS_QUEST_NOBUG, + //season tournament + AZTH_LANG_TOURNAMENT_LEVEL_TOOHIGH, + AZTH_LANG_TOURNAMENT_LEVEL_ACTUAL, + //pvp account + AZTH_LANG_PVPACCOUNT_DUNGEON, + //pvp items + AZTH_LANG_PVPITEMS_LEVEL_CHECK, + AZTH_LANG_PVPITEMS_MLEVEL_CHECK, + AZTH_LANG_PVPITEMS_REMOVED, + AZTH_LANG_PVPITEMS_FORCE_REMOVED, + //timewalking & mythic + AZTH_LANG_TW_LEVEL_MAX, + AZTH_LANG_TW_MODE_ON, + AZTH_LANG_TW_MODE_OFF, + AZTH_LANG_TW_NEW_ITEM_OBTAINED, + AZTH_LANG_TW_GROUP_CHECK_LEADER, + AZTH_LANG_TW_GROUP_CHECK_PLAYER, + AZTH_LANG_TW_MOA_BONUS, + AZTH_LANG_TW_ASREP_BONUS, + AZTH_LANG_TW_BOSS_KILLED, + AZTH_LANG_TW_LAST_BOSS_KILLED, + AZTH_LANG_TW_INSTANCE_COMPLETED, + AZTH_LANG_TW_REP_REMOVED_KILL, + AZTH_LANG_TW_REP_REMOVED_LOGOUT, + //rating bonus + AZTH_LANG_BR_ACTIVE_BONUS, + AZTH_LANG_BR_NO_BONUS, + //bg item level + AZTH_LANG_BG_ITEM_LEVEL_RESET, + AZTH_LANG_BG_ITEM_LEVEL_CHANGED, + //donation vendor + AZTH_LANG_DONATION_UPDATE_MENU, + AZTH_LANG_DONATION_ABILITY, + AZTH_LANG_DONATION_BACK, + AZTH_LANG_DONATION_ITEM_RECEIVED, + AZTH_LANG_DONATION_ITEM_NO_DB, + // dimension npc + AZTH_LANG_DIMENSION_CURRENT, + AZTH_LANG_DIMENSION_ILLUSORY, + AZTH_LANG_DIMENSION_GUILD, + AZTH_LANG_DIMENSION_PVP, + AZTH_LANG_DIMENSION_ENTERTAIN, + AZTH_LANG_DIMENSION_GDR, + AZTH_LANG_DIMENSION_LVL60, + AZTH_LANG_DIMENSION_LVL70, + AZTH_LANG_DIMENSION_TEST, + AZTH_LANG_DIMENSION_GM +}; + +#endif diff --git a/src/ASCommon/AzthMiscPlg.cpp b/src/ASCommon/AzthMiscPlg.cpp new file mode 100644 index 0000000..34beb9b --- /dev/null +++ b/src/ASCommon/AzthMiscPlg.cpp @@ -0,0 +1,61 @@ +#include "ScriptMgr.h" +#include "InstanceScript.h" +#include "InstanceSaveMgr.h" +#include "Player.h" +#include "Map.h" +#include "WorldSession.h" +#include "Group.h" +#include "AzthUtils.h" +#include "AZTH.h" + +class AzthMiscPlg : public MiscScript +{ +public: + AzthMiscPlg() : MiscScript("AzthMiscPlg") { } + + void OnConstructPlayer(Player* origin) override + { + sAZTH->AddAZTHPlayer(origin); + } + + void OnDestructPlayer(Player* origin) override + { + sAZTH->DeleteAZTHPlayer(origin); + } + + // [AZTH-DISABLED] + // void OnConstructObject(Object* origin) override + // { + // sAZTH->AddAZTHObject(origin); + // } + + // void OnDestructObject(Object* origin) override + // { + // sAZTH->DeleteAZTHObject(origin); + // } + + // void OnConstructGroup(Group* origin) override + // { + // sAZTH->AddAZTHGroup(origin); + // } + + // void OnDestructGroup(Group* origin) override + // { + // sAZTH->DeleteAZTHGroup(origin); + // } + + // void OnConstructInstanceSave(InstanceSave* origin) override + // { + // sAZTH->AddAZTHInstanceSave(origin); + // } + + // void OnDestructInstanceSave(InstanceSave* origin) override + // { + // sAZTH->DeleteAZTHInstanceSave(origin); + // } +}; + +void AddSC_azth_misc_plg() { + new AzthMiscPlg(); +} + diff --git a/src/ASCommon/AzthObject.cpp b/src/ASCommon/AzthObject.cpp new file mode 100644 index 0000000..12e4602 --- /dev/null +++ b/src/ASCommon/AzthObject.cpp @@ -0,0 +1,12 @@ +#include "AzthObject.h" + +AzthObject::AzthObject(Object* /*origin*/) +{ + m_dataUint32.clear(); + m_dataFloat.clear(); +} + +AzthObject::~AzthObject() { + m_dataUint32.clear(); + m_dataFloat.clear(); +} diff --git a/src/ASCommon/AzthObject.h b/src/ASCommon/AzthObject.h new file mode 100644 index 0000000..17244c8 --- /dev/null +++ b/src/ASCommon/AzthObject.h @@ -0,0 +1,63 @@ +#ifndef AZTHOBJECT_H +#define AZTHOBJECT_H + +#include "Config.h" +#include "Common.h" +#include + +enum EUint32Fields +{ + AZTH_U32FIELD_PLAYER_EXTRA_MOUNT_STATUS, +}; + +//enum EFloatFields +//{ +// +//}; + +class Object; + +class AzthObject +{ +public: + explicit AzthObject(Object *origin); + ~AzthObject(); + + void setBoolValue(uint32 index, bool value) + { + m_dataUint32[index] = value ? 1 : 0; + } + + bool getBoolValue(uint32 index) + { + return m_dataUint32[index] > 0; + } + + void setUint32Value(uint32 index, uint32 value) + { + m_dataUint32[index] = value; + } + + uint32 getUint32Value(uint32 index) + { + return m_dataUint32[index]; + } + + void setFloatValue(uint32 index, float value) + { + m_dataFloat[index] = value; + } + + float getfloatValue(uint32 index) + { + return m_dataFloat[index]; + } + + typedef std::unordered_map DataUint32; + DataUint32 m_dataUint32; + + typedef std::unordered_map DataFloat; + DataFloat m_dataFloat; +}; + +#endif /* AZTHOBJECT_H */ diff --git a/src/ASCommon/AzthPlayer.cpp b/src/ASCommon/AzthPlayer.cpp new file mode 100644 index 0000000..ae45cd1 --- /dev/null +++ b/src/ASCommon/AzthPlayer.cpp @@ -0,0 +1,705 @@ +/* + +*/ + +#include "AzthPlayer.h" +#include "Chat.h" +#include "Define.h" +#include "ObjectAccessor.h" +#include "World.h" +#include "AzthLevelStat.h" +#include "Unit.h" +#include "Pet.h" +#include "Player.h" +#include "SpellAuras.h" +#include "AccountMgr.h" +#include "MapMgr.h" +#include "MapInstanced.h" +#include "InstanceScript.h" +#include "ArenaSeason.h" +#include "AzthAchievement.h" +#include "AzthUtils.h" +#include "LFGMgr.h" +#include "AzthFirstKills.h" +#include "AZTH.h" + +class Aura; + +AzthPlayer::AzthPlayer(Player* origin) +{ + playerQuestRate = sWorld->getRate(RATE_XP_QUEST); + player = origin; + customLang = AZTH_LOC_EN; + groupLevel = 0; + tmpLevelPg = 0; + std::fill_n(arena1v1Info, 7, 0); + std::fill_n(arena3v3Info, 7, 0); + autoScalingPending = 0; + m_isPvP = false; + + m_itemsInBank.clear(); +} + +AzthPlayer::~AzthPlayer() +{ + m_itemsInBank.clear(); +} + +void AzthPlayer::InitWowarmoryFeeds() +{ + // Clear feeds + m_wowarmory_feeds.clear(); +} + +void AzthPlayer::setCustLang(AzthCustomLangs code) +{ + this->customLang = code; +} + +AzthCustomLangs AzthPlayer::getCustLang() +{ + return this->customLang; +} + +bool AzthPlayer::AzthMaxPlayerSkill() +{ + Player* target = player; + if (!target) + return false; + + if (target->getLevel() < 80) + { + ChatHandler(player->GetSession()).PSendSysMessage(LANG_LEVEL_MINREQUIRED, 80); + return false; + } + + static const SkillSpells spells[] = + { ONE_HAND_AXES, + TWO_HAND_AXES, + ONE_HAND_MACES, + TWO_HAND_MACES, + POLEARMS, + ONE_HAND_SWORDS, + TWO_HAND_SWORDS, + STAVES, + BOWS, + GUNS, + DAGGERS, + WANDS, + CROSSBOWS, + FIST_WEAPONS, + THROWN + }; + + std::list learnList; + std::size_t max = (sizeof(spells) / sizeof(spells[0])); + + for (std::size_t s = 0; s < max; s++) + { + SkillSpells spell = spells[s]; + switch (target->getClass()) + { + case CLASS_WARRIOR: + if (spell != WANDS) + learnList.push_back(spell); + break; + case CLASS_DEATH_KNIGHT: + case CLASS_PALADIN: + if (spell != THROWN && spell != STAVES && spell != BOWS && spell != GUNS && spell != DAGGERS && + spell != WANDS && spell != CROSSBOWS && spell != FIST_WEAPONS) + learnList.push_back(spell); + break; + case CLASS_HUNTER: + if (spell != ONE_HAND_MACES && spell != TWO_HAND_MACES && spell != WANDS) + learnList.push_back(spell); + break; + case CLASS_ROGUE: + if (spell != TWO_HAND_AXES && spell != TWO_HAND_MACES && spell != POLEARMS && + spell != TWO_HAND_SWORDS && spell != STAVES && spell != WANDS) + learnList.push_back(spell); + break; + case CLASS_PRIEST: + if (spell == WANDS || spell == ONE_HAND_MACES || spell == STAVES || + spell == DAGGERS) + learnList.push_back(spell); + break; + case CLASS_SHAMAN: + if (spell != THROWN && spell != ONE_HAND_SWORDS && spell != TWO_HAND_SWORDS && spell != POLEARMS && + spell != BOWS && spell != GUNS && spell != WANDS && spell != CROSSBOWS) + learnList.push_back(spell); + break; + case CLASS_WARLOCK: + case CLASS_MAGE: + if (spell == WANDS || spell == ONE_HAND_SWORDS || spell == STAVES || + spell == DAGGERS) + learnList.push_back(spell); + break; + case CLASS_DRUID: + if (spell != THROWN && spell != ONE_HAND_SWORDS && spell != TWO_HAND_SWORDS && + spell != BOWS && spell != GUNS && spell != WANDS && spell != CROSSBOWS && + spell != ONE_HAND_AXES && spell != TWO_HAND_AXES) + learnList.push_back(spell); + break; + default: + break; + } + } + + for (std::list::const_iterator spell = learnList.begin(), end = learnList.end(); spell != end; ++spell) + if (!target->HasSpell(uint32(*spell))) + target->learnSpell(uint32(*spell)); + + target->UpdateSkillsToMaxSkillsForLevel(); + return true; +} + +void AzthPlayer::AddBankItem(uint32 itemEntry, uint32 itemGuid) +{ + m_itemsInBank[itemEntry] = itemGuid; +} + +void AzthPlayer::DelBankItem(uint32 itemEntry) +{ + m_itemsInBank.erase(itemEntry); +} + +AzthPlayer::ItemInBankMap& AzthPlayer::GetBankItemsList() +{ + return m_itemsInBank; +} + +bool AzthPlayer::canEnterMap(MapEntry const* entry, InstanceTemplate const* /*instance*/, bool /*loginCheck*/) +{ + // CHECK BG or ARENA requirements (item level limit for example) + if (entry->IsBattlegroundOrArena() && !canJoinQueue(AZTH_QUEUE_BG_OR_ARENA)) + { + + player->SendTransferAborted(entry->MapID, TRANSFER_ABORT_MAP_NOT_ALLOWED); + return false; + } + + uint32 curDimension = getCurrentDimensionByAura(); + Difficulty targetDifficulty; + targetDifficulty = player->GetDifficulty(entry->IsRaid()); + + if (!entry->IsBattlegroundOrArena() && !sLFGMgr->inLfgDungeonMap(player->GetGUID(), entry->MapID, targetDifficulty)) + { + + // we could use GetContentLevelsForMapAndZone(uint32 mapid, uint32 zoneId) for a more accurate chech (?) + + if (curDimension == DIMENSION_60 && entry->Expansion() > 0) { + // CLASSIC EXPANSION CHECK + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_MULTIDIMENSION_CLASSIC_EXPCHECK, player)); + + player->SendTransferAborted(entry->MapID, TRANSFER_ABORT_MAP_NOT_ALLOWED); + return false; + + } if (curDimension == DIMENSION_70 && entry->Expansion() > 1) { + // TBC EXPANSION CHECK + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_MULTIDIMENSION_TBC_EXPCHECK, player)); + + player->SendTransferAborted(entry->MapID, TRANSFER_ABORT_MAP_NOT_ALLOWED); + return false; + } + } + + /* + * CUSTOM ITEM LEVEL CHECK + */ + uint32 ilvl = getMaxItemLevelByStatus(); + if (ilvl > 0 && !checkItems(ilvl) && (entry->IsDungeon() || entry->IsBattlegroundOrArena())) + { + ChatHandler(player->GetSession()).PSendSysMessage("|cffff0000 This zone is limited to item level: %d|r", getMaxItemLevelByStatus()); + player->SendTransferAborted(entry->MapID, TRANSFER_ABORT_MAP_NOT_ALLOWED); + return false; + } + + /* + * FULL PVP CHECK + */ + if (isPvP() && entry->IsDungeon()) + { + ChatHandler(player->GetSession()).PSendSysMessage("|cffff0000 PvP Characters cannot enter Dungeons and Raids|r"); + player->SendTransferAborted(entry->MapID, TRANSFER_ABORT_MAP_NOT_ALLOWED); + return false; + } + + return true; +} + +bool AzthPlayer::canGroup(Player* with) +{ + // player -> who invites + // with -> the invited player + Group* group = player->GetGroupInvite() != nullptr ? player->GetGroupInvite() : player->GetGroup(); + Player* leader = nullptr; + Player* invited = nullptr; + + if (group) + leader = ObjectAccessor::FindPlayer(group->GetLeaderGUID()); + + if (with) + { + invited = with; + + if (!leader) + leader = player; + } + else + invited = player; + + if (leader && sAZTH->GetAZTHPlayer(leader)->isTimeWalking() && sAZTH->GetAZTHPlayer(invited)->GetTimeWalkingLevel() != sAZTH->GetAZTHPlayer(leader)->GetTimeWalkingLevel()) + { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_TW_GROUP_CHECK_LEADER, player)); + ChatHandler(with->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_TW_GROUP_CHECK_PLAYER, with)); + return false; + } + + if (with) + { + uint32 curDimPlayer = sAZTH->GetAZTHPlayer(player)->getCurrentDimensionByPhase(); + uint32 curDimWith = sAZTH->GetAZTHPlayer(with)->getCurrentDimensionByPhase(); + /*if (curDimPlayer != curDimWith) { + ChatHandler(player->GetSession()).PSendSysMessage("|cffff0000 Non è possibile entrare in gruppo con PG di dimensioni diverse|r"); + return false; + }*/ + + if (curDimPlayer == DIMENSION_GUILD || curDimWith == DIMENSION_GUILD) + { + if (player->GetGuildId() != with->GetGuildId()) { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_MULTIDIMENSION_GUILD_GROUPCHECK, player)); + ChatHandler(with->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_MULTIDIMENSION_GUILD_GROUPCHECK, with)); + return false; + } + } + } + + return true; +} + +bool AzthPlayer::canJoinQueue(AzthQueueMasks /* type */) +{ + // [AZTH-DISABLED] + // if ((type & AZTH_QUEUE_ARENA) == type) + // if (!sASeasonMgr->canJoinArenaOrBg(player)) + // return false; + + return true; +} + +// this is the most accurate check to avoid exploit in some conditions +uint32 AzthPlayer::getCurrentDimensionByPhase() const +{ + return sAzthUtils->getCurrentDimensionByPhase(player->GetPhaseMask()); +} + +uint32 AzthPlayer::getCurrentDimensionByMark() const +{ + Aura* aura = player->GetAura(DIMENSION_SPELL_MARK); + + // if no aura, then assume we're on DIMENSION_NORMAL + uint32 currentDim = aura ? aura->GetStackAmount() : DIMENSION_NORMAL; + + return currentDim; +} + +uint32 AzthPlayer::getCurrentDimensionByAura() const +{ + uint32 dim = getCurrentDimensionByPhase(); + + if (dim == DIMENSION_NORMAL) + dim = getCurrentDimensionByMark(); // double integrity check + + return player->HasAura(DIMENSION_SPELL_MARK + dim) ? dim : DIMENSION_NORMAL; +} + +bool AzthPlayer::hasDimSpecificAura(uint32 dim) +{ + return player->HasAura(DIMENSION_SPELL_MARK + dim); +} + +bool AzthPlayer::canExplore() +{ + uint32 currentDim = getCurrentDimensionByPhase(); + + if (sAzthUtils->isPhasedDimension(currentDim)) + return false; + + return true; +} + +bool AzthPlayer::changeDimension(uint32 dim, bool validate /* = false*/, bool temp /* =false */) +{ + // dimension we're marked for + // this property will contain the special dimension + // even if we're temporary in normal (no phasing auras) + uint32 markedDimension = getCurrentDimensionByMark(); + // real dimension based on auras. If we've the + // DIMENSION_SPELL_MARK but no auras then this property will contain + // DIM_NORMAL (temporary case) + uint32 auraDimension = getCurrentDimensionByAura(); + // this is the most accurate check for validity since + // with an exploit we could have a special dimension phase even without auras + // then we must not allow it + //uint32 phaseDimension = getCurrentDimensionByPhase(); + bool changed = false; + + /*bool inGmParty=false; + if (player->GetGroup()) { + uint32 leaderGuid=player->GetGroup()->GetLeaderGUID(); + if (Player* leader = ObjectAccessor::FindPlayer(leaderGuid)) { + if (leader->GetSession()->GetSecurity() > SEC_PLAYER) { + inGmParty=true; + } + } + }*/ + + if (validate) + { + /*if (auraDimension != dim && !inGmParty && player->GetGroup()) { + ChatHandler(player->GetSession()).SendSysMessage("Non è possibile cambiare dimensione mentre si è in gruppo"); + return false; + }*/ + + if (dim == DIMENSION_60) { + if (player->getLevel() > 60 && sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel() != TIMEWALKING_LVL_AUTO) { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_MULTIDIMENSION_TW_CHECK60, player)); + return false; + } + } + + if (dim == DIMENSION_70) { + if (player->getLevel() > 70 && sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel() != TIMEWALKING_LVL_AUTO) { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_MULTIDIMENSION_TW_CHECK70, player)); + return false; + } + } + + if (dim == DIMENSION_GUILD) { + if (!player->GetGuild()) { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_MULTIDIMENSION_GUILD_ACCESSCHECK, player)); + return false; + } + } + + if (dim == DIMENSION_GM) { + if (player->GetSession()->GetSecurity() <= SEC_PLAYER) { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_MULTIDIMENSION_GM_ACCESSCHECK, player)); + return false; + } + } + } + + /*if (!inGmParty) { + if (phaseDimension != dim && player->GetGroup()) { + // if we changed phase and we're grouped + // then we should ungroup to avoid exploits + ///- If the player is in a group (or invited), remove him. If the group if then only 1 person, disband the group. + player->UninviteFromGroup(); + + if (player->GetGroup()) + player->RemoveFromGroup(); + } + }*/ + + if (!temp) + { + if (markedDimension > DIMENSION_NORMAL) { + player->RemoveAura(DIMENSION_SPELL_MARK); + changed = true; + } + } + + if (auraDimension > DIMENSION_NORMAL) + { + player->RemoveAura(DIMENSION_SPELL_MARK + auraDimension); + changed = true; + } + + if (dim > DIMENSION_NORMAL) + { + if (!temp) { + player->SetAuraStack(DIMENSION_SPELL_MARK, player, dim); + } + + player->SetAuraStack(DIMENSION_SPELL_MARK + dim, player, 1); + changed = true; + } + + if (changed) + { + player->CastSpell(player, 35517, true); + std::string msg = sAzthLang->get(AZTH_LANG_MULTIDIMENSION_TEMP_TELEPORT, player); + std::string dimName = sAzthUtils->getDimensionName(dim); + std::string suffix = temp ? sAzthLang->get(AZTH_LANG_COMMON_TEMPORARILY, player) : ""; + msg += " <" + dimName + "> " + suffix + " |r"; + + ChatHandler(player->GetSession()).PSendSysMessage("%s", msg.c_str()); + } + + return changed; +} + +bool AzthPlayer::canCompleteCriteria(AchievementCriteriaEntry const* criteria) +{ + if (!criteria) + return true; + + // first kill checks for timewalking, boss state etc + if (!sAzthFirstKills->canCompleteAchi(player, criteria->referredAchievement)) + return false; + + // achievements/criteria should not be completed in dimensions + uint32 currentDimension = getCurrentDimensionByAura(); + if (sAzthUtils->isPhasedDimension(currentDimension)) + return false; + + return true; +} + +uint32 AzthPlayer::getMaxItemLevelByStatus() +{ + // timewalking case + if (isTimeWalking()) + { + uint32 twLimit = getTwItemLevel(GetTimeWalkingLevel()); + + if (twLimit) + return twLimit; + } + + // raid case + if (player->GetMap()->IsDungeon() && player->GetMapId() == 631 /*icc*/ ) + { + if (InstanceScript * inst = player->GetInstanceScript()) { + + //[AZTH] + if (inst->GetData(DATA_AZTH_HARD_MODE)) + return 0; + } + + return 284; // 284 is the latest equippable level in wow + } + + if (player->GetMap()->IsBattlegroundOrArena() || player->GetMap()->IsDungeon()) + { + // basically, even if we've an item level limit specific for arena and bg + // we must limit custom weapons there + return 284; + } + + return 0; // no limit outside +} + +bool AzthPlayer::canEquipItem(ItemTemplate const* proto) +{ + // skip bag and quivers + if (proto->InventoryType == INVTYPE_BAG || proto->InventoryType == INVTYPE_QUIVER) + return true; + + // it is needed to avoid equip in empty slots + // [AZTH-DISABLED] + // if (hasGear()) + // return false; + // [AZTH-DISABLED] + // if (!sASeasonMgr->checkItem(proto, player)) + // return false; + + if (!checkItem(proto)) + return false; + + // do not allow to equip items with too high item level + // when not in timewalking: some items doesn't have a required level and can potentially equipped by low level players. + // excluding heirlooms + uint32 calcLevel = sAzthUtils->getCalcReqLevel(proto); + if (!isTimeWalking(true) + && proto->ScalingStatDistribution == 0 + && player->getLevel() + 15 < static_cast(calcLevel)) + { + ChatHandler(player->GetSession()).PSendSysMessage("Cannot equip this item. Its level is too high"); + return false; + } + + //Double ashen block system + if (sAzthUtils->isAshenBand(proto->ItemId)) + { + // finger slots + for (uint32 INVENTORY_INDEX = EQUIPMENT_SLOT_FINGER1; INVENTORY_INDEX <= EQUIPMENT_SLOT_FINGER2; INVENTORY_INDEX++) + { + Item* itemToCheck = player->GetItemByPos(INVENTORY_SLOT_BAG_0, INVENTORY_INDEX); + if (itemToCheck != nullptr) + { + if (sAzthUtils->isAshenBand(itemToCheck->GetEntry())) + { + ChatHandler(player->GetSession()).PSendSysMessage("Are you a double ashen abuser?!"); + return false; + } + } + } + } + + return true; +} + +// +// Passing player argument will check the player state and automatically shows a message +// +bool AzthPlayer::checkItem(ItemTemplate const* proto) +{ + uint32 _ilvl = getMaxItemLevelByStatus(); + if (_ilvl && !sAzthUtils->checkItemLvL(proto, _ilvl)) + { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_PVPITEMS_LEVEL_CHECK, player, proto->ItemId, proto->Name1.c_str())); + return false; + } + + return true; +} + +bool AzthPlayer::checkItems(uint32 iLvlMax, uint8 type /*=0*/) +{ + if (player->IsGameMaster()) + return true; + + if (type == 0) + { + // cap limit for each item + uint32 INVENTORY_END = 18; + uint32 counter = 0; + + for (uint32 INVENTORY_INDEX = 0; INVENTORY_INDEX <= INVENTORY_END; INVENTORY_INDEX++) + { + // don't check tabard or shirt + if (INVENTORY_INDEX == EQUIPMENT_SLOT_TABARD || INVENTORY_INDEX == EQUIPMENT_SLOT_BODY) + continue; + + Item* itemToCheck = player->GetItemByPos(INVENTORY_SLOT_BAG_0, INVENTORY_INDEX); + if (itemToCheck != nullptr) + { + if (!sAzthUtils->checkItemLvL(itemToCheck->GetTemplate(), iLvlMax)) + { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_PVPITEMS_LEVEL_CHECK, player, itemToCheck->GetTemplate()->ItemId, itemToCheck->GetTemplate()->Name1.c_str())); + counter++; + } + } + } + + return counter == 0; + } + else + { + uint32 avg = 0; + switch (type) + { + case 1: + avg = player->GetAverageItemLevel(); + break; + case 2: + avg = player->GetAverageItemLevelForDF(); + break; + } + + if (avg > iLvlMax) + { + ChatHandler(player->GetSession()).PSendSysMessage(sAzthLang->getf(AZTH_LANG_PVPITEMS_MLEVEL_CHECK, player), avg); + return false; + } + else + return true; + } +} + +bool AzthPlayer::isPvPFlagOn(bool def) +{ + if (getCurrentDimensionByPhase() == DIMENSION_PVP || getCurrentDimensionByPhase() == DIMENSION_ENTERTAINMENT) + { + player->SetByteFlag(UNIT_FIELD_BYTES_2, 1, UNIT_BYTE2_FLAG_PVP); + return true; + } + + return def; +} + +bool AzthPlayer::isFFAPvPFlagOn(bool def) +{ + if (getCurrentDimensionByPhase() == DIMENSION_PVP || getCurrentDimensionByPhase() == DIMENSION_ENTERTAINMENT) + { + player->SetByteFlag(UNIT_FIELD_BYTES_2, 1, UNIT_BYTE2_FLAG_FFA_PVP); + return true; + } + + return def; +} + +void AzthPlayer::CreateWowarmoryFeed(uint32 type, uint32 data, uint32 item_guid, uint32 item_quality) +{ + /* + * 1 - TYPE_ACHIEVEMENT_FEED + * 2 - TYPE_ITEM_FEED + * 3 - TYPE_BOSS_FEED + */ + + if (!player->GetGUID().IsEmpty()) + { + sLog->outError("[Wowarmory]: player is not initialized, unable to create log entry!"); + return; + } + + if (type <= 0 || type > 3) + { + sLog->outError("[Wowarmory]: unknown feed type: %d, ignore.", type); + return; + } + + if (data == 0) + { + sLog->outError("[Wowarmory]: empty data (GUID: %u), ignore.", player->GetGUID().GetCounter()); + return; + } + + WowarmoryFeedEntry feed; + feed.guid = player->GetGUID().GetCounter(); + feed.type = type; + feed.data = data; + feed.difficulty = type == 3 ? player->GetMap()->GetDifficulty() : 0; + feed.item_guid = item_guid; + feed.item_quality = item_quality; + feed.counter = 0; + feed.date = time(nullptr); + + sLog->outDebug(LOG_FILTER_NONE, "[Wowarmory]: create wowarmory feed (GUID: %u, type: %d, data: %u).", feed.guid, feed.type, feed.data); + + m_wowarmory_feeds.push_back(feed); +} + +// Solo 3v3 +uint32 AzthPlayer::getArena3v3Info(uint8 type) +{ + return arena3v3Info[type]; +} + +void AzthPlayer::setArena3v3Info(uint8 type, uint32 value) +{ + arena3v3Info[type] = value; +} + +bool AzthPlayer::isInBlackMarket() { + std::vector pos = {player->GetPositionX(), player->GetPositionY(), player->GetPositionZ()}; + // (1, 4818.27f, -1971.3f, 1069.75f, 0.174f, 0); + if (player->GetMapId() != 37) + return false; + + /*if (player->GetZoneId() != 331) + return false; + + if (pos[0] < 2650.f || pos[0] > 3100.f) + return false; + + if (pos[1] < 2250.f || pos[1] > -2800.f) + return false; + + if (pos[2] < 80.f || pos[2] > 180.f) + return false; + */ + return true; +}; diff --git a/src/ASCommon/AzthPlayer.h b/src/ASCommon/AzthPlayer.h new file mode 100644 index 0000000..f50ce5f --- /dev/null +++ b/src/ASCommon/AzthPlayer.h @@ -0,0 +1,257 @@ +#ifndef AZTHPLAYER_H +#define AZTHPLAYER_H + +#include "AzthSmartStone.h" +#include "Config.h" +#include "Define.h" +#include "CustomRates.h" +#include "AzthSharedDefines.h" +#include + +struct SmartStoneCommand; + +class CrossFaction; +class Player; +class SmartStone; +class WorldLocation; + +enum AzthQueueMasks +{ + AZTH_QUEUE_BG = 1, + AZTH_QUEUE_ARENA = 2, + AZTH_QUEUE_BG_OR_ARENA = 3, // mask BG+Arena + AZTH_QUEUE_LFG = 4 +}; + +//[AZTH] PVP Rank Patch +enum HonorKillPvPRank +{ + HKRANK00, + HKRANK01, + HKRANK02, + HKRANK03, + HKRANK04, + HKRANK05, + HKRANK06, + HKRANK07, + HKRANK08, + HKRANK09, + HKRANK10, + HKRANK11, + HKRANK12, + HKRANK13, + HKRANK14, + HKRANKMAX +}; + +struct WowarmoryFeedEntry +{ + uint32 guid; // Player GUID + time_t date; // Log date + uint32 type; // TYPE_ACHIEVEMENT_FEED, TYPE_ITEM_FEED, TYPE_BOSS_FEED + uint32 data; // TYPE_ITEM_FEED: item_entry, TYPE_BOSS_FEED: creature_entry + uint32 item_guid; // Can be 0 + uint32 item_quality; // Can be 0 + uint8 difficulty; // Can be 0 + int counter; // Can be 0 +}; + +typedef std::vector WowarmoryFeeds; + +// used for PLAYER__FIELD_KNOWN_TITLES field (uint64), (1< CompletedAchievementMap; + typedef std::unordered_map CompletedCriteriaMap; + typedef std::unordered_map ItemInBankMap; + std::vector& getSmartStoneCommands(); + std::map getLastPositionInfoFromDB(); + + // WInfi: TODO private + CompletedAchievementMap m_completed_achievement_map; + CompletedCriteriaMap m_completed_criteria_map; + + void SetTempGear(bool hasGear); + // bool hasGear(); + void SetPlayerQuestRate(float rate); + + /* + Get player quest rate. If player hasn't set it before, returns server + configuration + + @returns Quest Rate. If player set his own, return it; if he hasn't it + returns server default + */ + float GetPlayerQuestRate(); + + // uint32 getArena1v1Info(uint8 type); + // void setArena1v1Info(uint8 type, uint32 value); + uint32 getArena3v3Info(uint8 type); + void setArena3v3Info(uint8 type, uint32 value); + + void ForceKilledMonsterCredit(uint32 entry, uint64 guid); + bool passHsChecks(Quest const* qInfo, uint32 entry, uint32& realEntry, ObjectGuid guid); + time_t lastSent = time(nullptr); + + void addSmartStoneCommand(SmartStonePlayerCommand command, bool query); + void addSmartStoneCommand(uint32 id, bool query, uint64 dateExpired, int32 charges); + void removeSmartStoneCommand(SmartStonePlayerCommand command, bool query); + void decreaseSmartStoneCommandCharges(uint32 id); + bool BuySmartStoneCommand(ObjectGuid vendorguid, uint32 vendorslot, uint32 item, uint8 count, uint8 bag, uint8 slot); + bool hasSmartStoneCommand(uint32 id); + void loadAzthPlayerFromDB(); + bool AzthMaxPlayerSkill(); + bool AzthSelfChangeXp(float rate); + WorldLocation& getLastPositionInfo(uint32 dimension); + void setLastPositionInfo(uint32 dimension, WorldLocation posIinfo); + bool isInBlackMarket(); + void saveLastPositionInfoToDB(Player* pl); + bool isPvP(); + void loadPvPInfo(); + AzthCustomLangs getCustLang(); + void setCustLang(AzthCustomLangs code); + bool isPvPFlagOn(bool def); + bool isFFAPvPFlagOn(bool def); + void AddBankItem(uint32 itemEntry, uint32 itemGuid); + void DelBankItem(uint32 itemEntry); + void SetBankItemsList(ItemInBankMap itemsInBankList); + ItemInBankMap& GetBankItemsList(); + bool canEnterMap(MapEntry const* entry, InstanceTemplate const* instance = nullptr, bool loginCheck = false); + bool canJoinQueue(AzthQueueMasks type); + bool canGroup(Player* with = nullptr); + bool canExplore(); + bool canCompleteCriteria(AchievementCriteriaEntry const* criteria); + bool canEquipItem(ItemTemplate const* proto); + bool checkItems(uint32 iLvlMax, uint8 type = 0); + bool checkItem(ItemTemplate const* proto); + uint32 getMaxItemLevelByStatus(); + + //TIMEWALKING + bool canUseItem(Item* item, bool notify = false); + bool itemCheckReqLevel(ItemTemplate const* item, bool notify = false); + uint32 getPStatsLevel(bool normalized = true, bool checkInstance = true, bool checkGroup = true); + uint32 getGroupLevel(bool normalized = true, bool checkInstance = true); + uint32 getInstanceLevel(bool normalized = true); + uint32 normalizeLvl(uint32 level); + uint32 getGroupSize(bool checkInstance = true); + uint32 getInstanceSize(); + uint32 GetTimeWalkingLevel() const; + bool isTimeWalking(bool skipSpecial = false) const; + void SetTimeWalkingLevel(uint32 timeWalkingLevel, bool clearAuras = true, bool save = true, bool login = false); + void prepareTwSpells(uint32 oldLevel); + uint32 getTwItemLevel(uint32 twLevel); + time_t autoScalingPending; + + //DIMENSIONS + uint32 getCurrentDimensionByMark() const; + uint32 getCurrentDimensionByPhase() const; + uint32 getCurrentDimensionByAura() const; + bool hasDimSpecificAura(uint32 dim); + bool changeDimension(uint32 dim, bool validate = false, bool temp = false); + + // WInfi: TODO private + uint32 instanceID; + + // World of Warcraft Armory Feeds + void InitWowarmoryFeeds(); + void CreateWowarmoryFeed(uint32 type, uint32 data, uint32 item_guid, uint32 item_quality); + + // World of Warcraft Armory Feeds + WowarmoryFeeds m_wowarmory_feeds; + +private: + Player* player; + uint32 arena1v1Info[7]; // ARENA_TEAM_END + uint32 arena3v3Info[7]; // ARENA_TEAM_END + uint32 levelPlayer; + uint32 tmpLevelPg; + uint32 groupLevel; + + float playerQuestRate, maxQuestRate; + bool m_isPvP; + AzthCustomLangs customLang; + uint32 timeWalkingLevel = 0; + bool PVPTempGear = false; + + ItemInBankMap m_itemsInBank; + std::vector smartStoneCommands; + std::map lastPositionInfo; +}; + +#endif /* AZTHPLAYER_H */ diff --git a/src/ASCommon/AzthPlayerPlg.cpp b/src/ASCommon/AzthPlayerPlg.cpp new file mode 100644 index 0000000..c37a7df --- /dev/null +++ b/src/ASCommon/AzthPlayerPlg.cpp @@ -0,0 +1,113 @@ +/** + This plugin can be used for common player customizations + */ + +#include "ScriptMgr.h" +#include "InstanceScript.h" +#include "InstanceSaveMgr.h" +#include "Player.h" +#include "Map.h" +#include "WorldSession.h" +#include "AchievementMgr.h" +#include "AzthGroupMgr.h" +#include "AzthPlayer.h" +#include "azth_custom_hearthstone_mode.h" +#include "AZTH.h" + +class AzthPlayerPlg : public PlayerScript +{ +public: + AzthPlayerPlg() : PlayerScript("AzthPlayerPlg") { } + + // void OnLogin(Player* pl) override + // { + // uint32 accId = pl->GetSession()->GetAccountId(); + // // 0 + // QueryResult res = LoginDatabase.PQuery("SELECT custom_lang FROM azth_account_info WHERE id = '%d';", accId); + + // if (res != nullptr && res->GetRowCount() > 0) + // { + // Field* info = res->Fetch(); + // sAZTH->GetAZTHPlayer(pl)->setCustLang(AzthCustomLangs(info[0].GetUInt8())); + // } + + // //------------------------------AZTH BANK ITEMS---------------------------------------------- + + // QueryResult itemInBankQuery = CharacterDatabase.PQuery("SELECT item,itemEntry FROM azth_items_bank where guid = %u", pl->GetGUIDLow()); //retrieve all items from db + + // if (itemInBankQuery) + // { + // do + // { + // Field* itemInBankField = itemInBankQuery->Fetch(); + + // if (!itemInBankField) + // break; + + // uint32 itemGUID = itemInBankField[0].GetUInt32(); + // uint32 itemEntry = itemInBankField[1].GetUInt32(); + + // sAZTH->GetAZTHPlayer(pl)->AddBankItem(itemEntry, itemGUID); + + // } while (itemInBankQuery->NextRow()); + // } + + // // GM mods, see anything + // if (pl->HasFlag(PLAYER_FLAGS, PLAYER_FLAGS_DEVELOPER) /*[/AZTH]*/) + // { + // pl->SetPhaseMask(PHASEMASK_ANYWHERE, false); + // pl->GetSession()->SendSetPhaseShift(PHASEMASK_ANYWHERE); + // } + // } + + // void OnLevelChanged(Player* player, uint8 oldLevel) override + // { + // if (!player) + // return; + + // if (oldLevel == 9 && !sAZTH->GetAZTHPlayer(player)->isTimeWalking() && sConfigMgr->GetOption("Azth.LevelBonus.10.Enable", false)) + // sAZTH->SendGameMail(player, "Well done!", "You reached level 10, a small present for you by AzerothShard!", 10 * GOLD); + // } + + // // logger for custom extended costs + // void OnBeforeStoreOrEquipNewItem(Player* player, uint32 /*vendorslot*/, uint32 &item, uint8 /*count*/, uint8 /*bag*/, uint8 /*slot*/, ItemTemplate const* /*pProto*/, Creature* pVendor, VendorItem const* crItem, bool /*bStore*/) override + // { + // long price = 0; + + // if (crItem->ExtendedCost) + // { + // if (crItem->ExtendedCost <= 2997) + // return; + + // price = crItem->ExtendedCost; + // price = price * (-1); + // } + // else + // { + // /*ItemTemplate const* pProto = sObjectMgr->GetItemTemplate(item); + // if (!pProto) + // { + // return; + // } + + // if (crItem->IsGoldRequired(pProto)) + // { + // price = pProto->BuyPrice; + // }*/ + // return; + // } + + // uint32 guid = pVendor ? pVendor->GetEntry() : 0; + + // CharacterDatabase.PQuery("INSERT INTO `azth_buy_log` (`playerGuid`, `item`, `vendor`, `price`) VALUES (%u, %u, %u, %ld);", + // player->GetGUIDLow(), item, guid, price); + // } + +}; + + + +void AddSC_azth_player_plg() { + new AzthPlayerPlg(); +} + diff --git a/src/ASCommon/AzthSharedDefines.cpp b/src/ASCommon/AzthSharedDefines.cpp new file mode 100644 index 0000000..46f99e3 --- /dev/null +++ b/src/ASCommon/AzthSharedDefines.cpp @@ -0,0 +1,4 @@ +#include "AzthSharedDefines.h" + +const WorldLocation AzthSharedDef::dalaran = WorldLocation(571, 5804.15f, 624.771f, 647.767f, 1.64f); +const WorldLocation AzthSharedDef::blackMarket = WorldLocation(37, -338.08f, -206.67f, 312.54f, 4.89f); diff --git a/src/ASCommon/AzthSharedDefines.h b/src/ASCommon/AzthSharedDefines.h new file mode 100644 index 0000000..05fa0aa --- /dev/null +++ b/src/ASCommon/AzthSharedDefines.h @@ -0,0 +1,90 @@ +#ifndef SHAREDDEFINES_H +#define SHAREDDEFINES_H + +#include "Object.h" + +/* +enum AzthRbac { + RBAC_PERM_COMMAND_QUESTCOMPLETER = 1000, + RBAC_PERM_COMMAND_AZTH = 1001, + RBAC_PERM_COMMAND_AZTH_MAXSKILL = 1002, + RBAC_PERM_COMMAND_AZTH_XP = 1003, + RBAC_PERM_PVP_CUSTOM = 1004 // Arena Spectator ADDON commands +}; + */ + +enum SkillSpells { + ONE_HAND_AXES = 196, + TWO_HAND_AXES = 197, + ONE_HAND_MACES = 198, + TWO_HAND_MACES = 199, + POLEARMS = 200, + ONE_HAND_SWORDS = 201, + TWO_HAND_SWORDS = 202, + STAVES = 227, + BOWS = 264, + GUNS = 266, + DAGGERS = 1180, + WANDS = 5009, + CROSSBOWS = 5011, + FIST_WEAPONS = 15590, + THROWN = 2567, +}; + +enum AzthCustomLangs { + AZTH_LOC_IT = 1, + AZTH_LOC_EN = 0, +}; + +enum PhaseDimensionsEnum { + DIMENSION_NORMAL = 1, + DIMENSION_GUILD = 2, + DIMENSION_PVP = 3, + DIMENSION_ENTERTAINMENT = 4, + DIMENSION_RPG = 5, + DIMENSION_60 = 6, + DIMENSION_70 = 7, + DIMENSION_TEST = 8, + DIMENSION_GM = 9 +}; + +enum AzthCommonMaps { + NAXXRAMS_RAID = 533, + ULDUAR_RAID = 603, + OBSIDIAN_RAID = 615, + THE_EYE_OF_ETERNITY_RAID = 616, + TRIAL_OF_THE_CRUSADRE_RAID = 649 +}; + +#define MAX_DIMENSION 9 + +// instances +#define DATA_AZTH_HARD_MODE 10000 + +// Spells +#define AZTH_RIDE_VEHICLE_SPELL 1002000 +#define AZTH_RIDE_VEHICLE_FLY_SPELL 1002004 +#define AZTH_RIDE_MOUNT_SPELL 1002001 +#define AZTH_RIDE_MOUNT_FLY_SPELL 1002002 +#define DIMENSION_SPELL_MARK 1000000 +#define AZTH_CUSTOM_SPELL_MIN 900000 + +// Items + +// only usable in tw +#define AZTH_TW_ILVL 246 +#define AZTH_TW_ILVL_NORMAL_ONLY 247 +#define AZTH_TW_ILVL_SPECIAL_ONLY 248 + + +#define AZTH_MARK_OF_AZEROTH 37711 +#define AZTH_AS_REP 948 + +class AzthSharedDef { +public: + static const WorldLocation dalaran; + static const WorldLocation blackMarket; +}; + +#endif /* SHAREDDEFINES_H */ + diff --git a/src/ASCommon/AzthSystem.cpp b/src/ASCommon/AzthSystem.cpp new file mode 100644 index 0000000..41dcbe1 --- /dev/null +++ b/src/ASCommon/AzthSystem.cpp @@ -0,0 +1 @@ +#include "AzthSystem.h" diff --git a/src/ASCommon/AzthSystem.h b/src/ASCommon/AzthSystem.h new file mode 100644 index 0000000..6784574 --- /dev/null +++ b/src/ASCommon/AzthSystem.h @@ -0,0 +1,11 @@ +#ifndef AZTHSYSTEM_H +#define AZTHSYSTEM_H + +#include "PluginsMgr.h" + +#ifdef AZTH_WITH_UNIT_TEST + #include "tests/AzthTestSystem.h"; +#endif + +#endif /* AZTHSYSTEM_H */ + diff --git a/src/ASCommon/AzthUtils.cpp b/src/ASCommon/AzthUtils.cpp new file mode 100644 index 0000000..295a0d0 --- /dev/null +++ b/src/ASCommon/AzthUtils.cpp @@ -0,0 +1,1075 @@ +#include "AzthUtils.h" +#include "AzthLevelStat.h" +#include "Pet.h" +#include "SpellMgr.h" +#include "SpellInfo.h" +#include "AzthSharedDefines.h" +#include "Spell.h" +#include "GuildHouse.h" +#include "BattlefieldWG.h" +#include "InstanceScript.h" +#include "AZTH.h" +#include + +class InstanceScript; + +// Copied from naxxramas.h +enum NxEncouters +{ + BOSS_PATCHWERK = 0, + BOSS_GROBBULUS = 1, + BOSS_GLUTH = 2, + BOSS_NOTH = 3, + BOSS_HEIGAN = 4, + BOSS_LOATHEB = 5, + BOSS_ANUB = 6, + BOSS_FAERLINA = 7, + BOSS_MAEXXNA = 8, + BOSS_THADDIUS = 9, + BOSS_RAZUVIOUS = 10, + BOSS_GOTHIK = 11, + BOSS_HORSEMAN = 12, + BOSS_SAPPHIRON = 13, + BOSS_KELTHUZAD = 14, + MAX_ENCOUNTERS, +}; + +AzthUtils* AzthUtils::instance() +{ + static AzthUtils instance; + return &instance; +} + + +AzthUtils::AzthUtils() +{ + INVTYPE_NON_EQUIP_STRING = "Generic"; + INVTYPE_HEAD_STRING = "Heads"; + INVTYPE_NECK_STRING = "Necks"; + INVTYPE_SHOULDERS_STRING = "Shoulders"; + INVTYPE_BODY_STRING = "Body"; + INVTYPE_CHEST_STRING = "Chests"; + INVTYPE_WAIST_STRING = "Waists"; + INVTYPE_LEGS_STRING = "Legs"; + INVTYPE_FEET_STRING = "Feets"; + INVTYPE_WRISTS_STRING = "Wrists"; + INVTYPE_HANDS_STRING = "Hands"; + INVTYPE_FINGER_STRING = "Fingers"; + INVTYPE_TRINKET_STRING = "Trinkets"; + INVTYPE_WEAPON_STRING = "Weapons"; + INVTYPE_SHIELD_STRING = "Shields"; + INVTYPE_RANGED_STRING = "Ranged"; + INVTYPE_CLOAK_STRING = "Cloaks"; + INVTYPE_2HWEAPON_STRING = "2H Weapons"; + INVTYPE_BAG_STRING = "Bags"; + INVTYPE_TABARD_STRING = "Tabards"; + INVTYPE_ROBE_STRING = "Robes"; + INVTYPE_WEAPONMAINHAND_STRING = "Main Hand Weapons"; + INVTYPE_WEAPONOFFHAND_STRING = "Off Hand Weapons"; + INVTYPE_HOLDABLE_STRING = "Holdables"; + INVTYPE_AMMO_STRING = "Ammo"; + INVTYPE_THROWN_STRING = "Thrown"; + INVTYPE_RANGEDRIGHT_STRING = "Right Ranged"; + INVTYPE_QUIVER_STRING = "Quiver"; + INVTYPE_RELIC_STRING = "Relics"; + + + for (ObjectMgr::CharacterConversionMap::iterator i = sObjectMgr->FactionChangeItems.begin(); i != sObjectMgr->FactionChangeItems.end(); ++i) + this->FactionChangeItemsHorde[i->second] = i->first; + + for (uint8 i=1; i<=MAX_DIMENSION; i++) { + SpellInfo const* spellInfo =sSpellMgr->GetSpellInfo(DIMENSION_SPELL_MARK+i); + if (spellInfo) { + uint32 phase=spellInfo->Effects[0].MiscValue; + phaseMap[phase]=PhaseDimensionsEnum(i); + } + } +} + +AzthUtils::~AzthUtils() +{ +} + +time_t AzthUtils::getStartsOfYear() { + time_t now = time(0); + struct tm * tnow = std::gmtime(&now); + int currentYear = tnow->tm_year + 1900; + // is it valid until 2100? + int epochYear = currentYear - 1970; + int leapYears = (epochYear + 1) / 4; + time_t result = epochYear * 24 * 60 * 60 * 365; + // valid until 2106 + result += leapYears * 24 * 60 * 60; + + return result; +} + +void AzthUtils::sendMessageToGroup(Player *pl, Group *group, const char* msg) { + if (!group) { + // fallback + if (pl) + ChatHandler(pl->GetSession()).SendSysMessage(msg); + return; + } + + for (GroupReference* itr = group->GetFirstMember(); itr != NULL; itr = itr->next()) + { + Player* player = itr->GetSource(); + if (!player) + continue; + + ChatHandler(player->GetSession()).SendSysMessage(msg); + } +} + +void AzthUtils::loadClassSpells() { + QueryResult res = WorldDatabase.PQuery("SELECT racemask, classmask, Spell FROM playercreateinfo_spell_custom;"); + + if (!res) + { + return; + } + + + do + { + Field* fields = res->Fetch(); + uint32 raceMask = fields[0].GetUInt32(); + uint32 classMask = fields[1].GetUInt32(); + uint32 spellId = fields[2].GetUInt32(); + + if (raceMask != 0 && !(raceMask & RACEMASK_ALL_PLAYABLE)) + { + sLog->outErrorDb("Wrong race mask %u in `playercreateinfo_spell_custom` table, ignoring.", raceMask); + continue; + } + + if (classMask != 0 && !(classMask & CLASSMASK_ALL_PLAYABLE)) + { + sLog->outErrorDb("Wrong class mask %u in `playercreateinfo_spell_custom` table, ignoring.", classMask); + continue; + } + + + for (uint32 raceIndex = RACE_HUMAN; raceIndex < MAX_RACES; ++raceIndex) + { + if (raceMask == 0 || ((1 << (raceIndex - 1)) & raceMask)) + { + for (uint32 classIndex = CLASS_WARRIOR; classIndex < MAX_CLASSES; ++classIndex) + { + if (classMask == 0 || ((1 << (classIndex - 1)) & classMask)) + { + startSpells[raceIndex][classIndex].push_back(spellId); + } + } + } + } + } while (res->NextRow()); +} + +void AzthUtils::learnClassSpells(Player* player, bool /*new_level*/) +{ + ChrClassesEntry const* classEntry = sChrClassesStore.LookupEntry(player->getClass()); + if (!classEntry) + return; + + std::list spells=startSpells[player->getRace(true)][player->getClass()]; + + for (std::list::iterator it = spells.begin(); it != spells.end(); ++it) + { + uint32 s = *it; + if (!s) + continue; + + SpellInfo const* spellInfo = sSpellMgr->GetSpellInfo(s); + + do { + + if (!spellInfo) + continue; + + // skip wrong class/race skills + //if (!player->IsSpellFitByClassAndRace(spellInfo->Id)) + // continue; + + // skip other spell families + //if (spellInfo->SpellFamilyName != family) + // continue; + + // skip spells with first rank learned as talent (and all talents then also) + uint32 firstRank = sSpellMgr->GetFirstSpellInChain(spellInfo->Id); + if (GetTalentSpellCost(firstRank) > 0) + continue; + + // skip broken spells + if (!SpellMgr::IsSpellValid(spellInfo)) + continue; + + player->learnSpell(spellInfo->Id); + + } while((spellInfo = spellInfo->GetPrevRankSpell())); // learn prev ranks + } +} + + +uint32 AzthUtils::selectCorrectSpellRank(uint8 level, uint32 spellId) { + SpellInfo const* spellInfo = sSpellMgr->GetSpellInfo(spellId); + + if (!spellInfo) + return spellId; // should never happen + + // spells that must not scale + /*switch (spellId) { + case 9634: // dire bear form, scaling it cause visual issue on spell button (unfortunately it's scaled anyway, event with this check) + return spellId; + }*/ + + SpellInfo const* lastFoundSpell; + for (SpellInfo const* nextSpellInfo = spellInfo; nextSpellInfo != NULL; nextSpellInfo = nextSpellInfo->GetPrevRankSpell()) + { + lastFoundSpell = nextSpellInfo; + if ((nextSpellInfo->SpellLevel == 0 && uint32(level) >= nextSpellInfo->BaseLevel) || uint32(level) >= nextSpellInfo->SpellLevel) + return nextSpellInfo->Id; + } + + return lastFoundSpell ? lastFoundSpell->Id : spellId; // return last rank found // return 0 <- informing about not scaled spell +} + +uint32 AzthUtils::getCalcReqLevel(ItemTemplate const* pProto) { + if (pProto->RequiredLevel <= 1 && pProto->ItemLevel >= 6) { // zones >= lvl 5 + // classic rare and lower + if (pProto->ItemLevel <= 60) + return pProto->ItemLevel; + + // classic epic + if (pProto->ItemLevel > 60 && pProto->ItemLevel <= 92 && pProto->Quality >= ITEM_QUALITY_EPIC) { + return 60; + } + + // classic / dk + if (pProto->ItemLevel > 60 && pProto->ItemLevel <= 81) { + return 60; + } + + // tbc low level items + if (pProto->ItemLevel > 81 && pProto->ItemLevel <= 92) { + return 60; + } + + // tbc rare and lower + if (pProto->ItemLevel > 92 && pProto->ItemLevel <= 115) { + uint32 req = ((pProto->ItemLevel - 92) / 2) + 61; + return req > 70 ? 70 : req; + } + + // tbc epic + if (pProto->ItemLevel > 115 && pProto->ItemLevel <= 164 && pProto->Quality >= ITEM_QUALITY_EPIC) { + uint32 req = ((pProto->ItemLevel - 115) / 4) + 61; + return req > 70 ? 70 : req; + } + + if (pProto->ItemLevel == AZTH_TW_ILVL_NORMAL_ONLY) + return 1; + + //if (pProto->ItemLevel > 130 && pProto->ItemLevel <= 284) + // return 80; + + // 130 - 284 + return sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL); + } + + if (pProto->RequiredLevel == 0) + return 1; + + return pProto->RequiredLevel; +} + +float AzthUtils::getCustomMultiplier(ItemTemplate const * pProto,uint32 multiplier) { + uint32 req=getCalcReqLevel(pProto); + uint32 maxLevel = sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL); + if (req >= maxLevel) { + return multiplier; + } + else { + // ex: 131 ( boost ) / ( 80 - 60 ) + return ( (float)multiplier / float( maxLevel - req ) ) * 5; + } +} + +int32 AzthUtils::normalizeFeralAp(int32 feralBonus, int32 extraDPS, ItemTemplate const* pProto, bool isScaling) { + if (!feralBonus) + return 0; + + if (!isScaling) + return feralBonus; + + float dps; + if (pProto->Delay == 0) + return 0; + float temp = 0; + + if (pProto->Damage[0].DamageMin > 1 || pProto->Damage[0].DamageMax > 1 + || pProto->Damage[1].DamageMin > 1 || pProto->Damage[1].DamageMax > 1) { + // heirloom items (isScaling==true) must have damage min = 1 and damage max = 0 + // if it's not true, then it's a normal item scaled by our TW system (?) + // then we have to recalculate Feral AP using modified formula of item prototype (getDPS) + + temp+=1 + 0; // min 1 , max 0 + dps = temp*500/pProto->Delay; + + int32 bonus = int32((extraDPS + dps)*14.0f) - 767; + if (bonus < 0) + return 0; + + return bonus; + } + + return feralBonus; +} + +uint32 AzthUtils::calculateItemScalingValue(ItemTemplate const * pProto, Player *pl) +{ + if (pl == nullptr) + return 0; + + uint32 req=getCalcReqLevel(pProto); + if (req <= pl->getLevel()) // remove / apply + return 0; + + uint8 lowLevel = 0; // Default stats progression by item type + + /* Mul values + * 1 Normal stats progression + 2 Trinket stats progression (only seen on trinkets) + 4 Low stats progression + 8 Boosted stats progression + 16 Very low stats progression + */ + + /*if (pl->getLevel() + 10 > req) { // from 0 to 9 level diff + lowLevel = 0; // Default stats progression by item type + } else if (pl->getLevel() + 20 >= req) { // from 10 to 20 level diff + lowLevel = 4; // Low Stats progression + } else {*/ // from 21 to max level diff + //lowLevel = 16; // Very low stats progression + //} + uint32 mul; + + // SHOULDERS + mul = lowLevel ? lowLevel : 1; + if (pProto->InventoryType == INVTYPE_SHOULDERS) { + if (pProto->Class == ITEM_CLASS_ARMOR) { + switch (pProto->SubClass) { + case ITEM_SUBCLASS_ARMOR_CLOTH : + return mul + 32; //return 1 + 32; + case ITEM_SUBCLASS_ARMOR_LEATHER : + return mul + 64; //return 1 + 64; + case ITEM_SUBCLASS_ARMOR_MAIL : + return mul + 128; //return 1 + 128; + case ITEM_SUBCLASS_ARMOR_PLATE : + return mul + 128; //return 1 + 256; + } + } + + return 0; + } + + mul = lowLevel ? lowLevel : 8; + if (pProto->InventoryType == INVTYPE_CHEST || pProto->InventoryType == INVTYPE_ROBE) { + switch (pProto->SubClass) { + case ITEM_SUBCLASS_ARMOR_CLOTH: + return mul + 1048576; //return 8 + 1048576; + case ITEM_SUBCLASS_ARMOR_LEATHER: + return mul + 2097152; //return 8 + 2097152; + case ITEM_SUBCLASS_ARMOR_MAIL : + return mul + 4194304; // return 8 + 4194304; + case ITEM_SUBCLASS_ARMOR_PLATE: + return mul + 8388608; //return 8 + 8388608; + } + + return 0; + } + + // WEAPONS + 512 to 16384 <-- this is the dps modifiers ( getDPSMod ) , 32768 <-- spell power modifier, 65536 <-- it's for feral dps (unused?) + if (pProto->InventoryType == INVTYPE_2HWEAPON) { + bool isCaster=false; + for (uint8 i = 0; i < MAX_ITEM_PROTO_STATS; ++i) + { + if (i >= pProto->StatsCount) + break; + + // not accurate but mostly + if (pProto->ItemStat[i].ItemStatType == ITEM_MOD_SPELL_POWER || pProto->ItemStat[i].ItemStatType == ITEM_MOD_SPELL_PENETRATION + || pProto->ItemStat[i].ItemStatType == ITEM_MOD_HASTE_SPELL_RATING || pProto->ItemStat[i].ItemStatType == ITEM_MOD_CRIT_SPELL_RATING + || pProto->ItemStat[i].ItemStatType == ITEM_MOD_INTELLECT || pProto->ItemStat[i].ItemStatType == ITEM_MOD_SPIRIT + ) + isCaster=true; + } + + mul = lowLevel ? lowLevel : 8; + if ( isCaster ) { + return mul + 4096 + 32768; // return 8 + 4096 + 32768; // 2h dps caster + } else { + return mul + 1024; // return 8 + 1024; // 2h weapon + } + } + + if (pProto->InventoryType == INVTYPE_WEAPON || pProto->InventoryType == INVTYPE_WEAPONMAINHAND + || pProto->InventoryType == INVTYPE_WEAPONOFFHAND) { + bool isCaster=false; + for (uint8 i = 0; i < MAX_ITEM_PROTO_STATS; ++i) + { + if (i >= pProto->StatsCount) + break; + + // not accurate but mostly + if (pProto->ItemStat[i].ItemStatType == ITEM_MOD_SPELL_POWER || pProto->ItemStat[i].ItemStatType == ITEM_MOD_SPELL_PENETRATION + || pProto->ItemStat[i].ItemStatType == ITEM_MOD_HASTE_SPELL_RATING || pProto->ItemStat[i].ItemStatType == ITEM_MOD_CRIT_SPELL_RATING + || pProto->ItemStat[i].ItemStatType == ITEM_MOD_INTELLECT || pProto->ItemStat[i].ItemStatType == ITEM_MOD_SPIRIT + ) + isCaster=true; + } + + mul = lowLevel ? lowLevel : 8; + if (isCaster) { + return mul + 2048 + 32768; // return 8 + 2048 + 32768; // 1h dps caster + } else { + return mul + 512; // return 8 + 512; // 1h weapon + } + } + + // RANGED + if (pProto->InventoryType == INVTYPE_RANGED || pProto->InventoryType == INVTYPE_AMMO || pProto->InventoryType == INVTYPE_THROWN) + return 16 + 8192; // should be 16 ? + + // WANDS + if (pProto->InventoryType == INVTYPE_RANGEDRIGHT) + return 16 + 16384; // should be 16 ? + + + if (pProto->InventoryType == INVTYPE_TRINKET) { + return 2; // should be 2 ? + } + + + if (pProto->InventoryType == INVTYPE_FINGER) + return 16; // return 262144; + + + if (pProto->InventoryType == INVTYPE_NECK) + return 16; //return 262144; + + // + // special unknown cases + // + + mul = lowLevel ? lowLevel : 4; + if (pProto->InventoryType == INVTYPE_HOLDABLE || pProto->InventoryType == INVTYPE_RELIC) { + return mul; //return 4 + 512; + } + + // CLOAK + mul = lowLevel ? lowLevel : 4; + if (pProto->InventoryType == INVTYPE_CLOAK) { + return mul + 524288; //return 4 + 524288; + } + + // ARMOR + mul = lowLevel ? lowLevel : 4; + if (pProto->InventoryType == INVTYPE_SHIELD) { + return mul + 8388608; // return 4 + 8388608; + } + + mul = lowLevel ? lowLevel : 4; + if (pProto->Class == ITEM_CLASS_ARMOR) { + switch (pProto->SubClass) { + case ITEM_SUBCLASS_ARMOR_CLOTH: + return mul + 1048576; // return 4 + 1048576; + case ITEM_SUBCLASS_ARMOR_LEATHER: + return mul + 2097152; //return 4 + 2097152; + case ITEM_SUBCLASS_ARMOR_MAIL : + return mul + 4194304; //return 4 + 4194304; + case ITEM_SUBCLASS_ARMOR_PLATE: + return mul + 8388608; //return 4 + 8388608; + } + } + + return 0; + +} + + + +std::vector AzthUtils::getCategoryIconAndNameByItemType(uint32 itemType) +{ + std::vector category; + + switch (itemType) + { + case INVTYPE_NON_EQUIP: + category.push_back(INVTYPE_NON_EQUIP_STRING); + category.push_back("INV_Misc_Questionmark"); + break; + case INVTYPE_HEAD: + category.push_back(INVTYPE_HEAD_STRING); + category.push_back("INV_Helmet_12"); + break; + case INVTYPE_NECK: + category.push_back(INVTYPE_NECK_STRING); + category.push_back("INV_Jewelry_Necklace_02"); + break; + case INVTYPE_SHOULDERS: + category.push_back(INVTYPE_SHOULDERS_STRING); + category.push_back("INV_Shoulder_92"); + break; + case INVTYPE_BODY: + category.push_back(INVTYPE_BODY_STRING); + category.push_back("INV_Shirt_04"); + break; + case INVTYPE_CHEST: + category.push_back(INVTYPE_CHEST_STRING); + category.push_back("INV_Chest_Leather_05"); + break; + case INVTYPE_WAIST: + category.push_back(INVTYPE_WAIST_STRING); + category.push_back("INV_Belt_45b"); + break; + case INVTYPE_LEGS: + category.push_back(INVTYPE_LEGS_STRING); + category.push_back("INV_Pants_Cloth_10"); + break; + case INVTYPE_FEET: + category.push_back(INVTYPE_FEET_STRING); + category.push_back("INV_Boots_02"); + break; + case INVTYPE_WRISTS: + category.push_back(INVTYPE_WRISTS_STRING); + category.push_back("INV_Bracer_21c"); + break; + case INVTYPE_HANDS: + category.push_back(INVTYPE_HANDS_STRING); + category.push_back("INV_Gauntlets_12"); + break; + case INVTYPE_FINGER: + category.push_back(INVTYPE_FINGER_STRING); + category.push_back("INV_Jewelry_Talisman_08"); + break; + case INVTYPE_TRINKET: + category.push_back(INVTYPE_TRINKET_STRING); + category.push_back("INV_Jewelry_Trinket_04"); + break; + case INVTYPE_WEAPON: + category.push_back(INVTYPE_WEAPON_STRING); + category.push_back("INV_Weapon_Glave_01"); + break; + case INVTYPE_SHIELD: + category.push_back(INVTYPE_SHIELD_STRING); + category.push_back("INV_Shield_05"); + break; + case INVTYPE_RANGED: + category.push_back(INVTYPE_RANGED_STRING); + category.push_back("INV_Weapon_Crossbow_23"); + break; + case INVTYPE_CLOAK: + category.push_back(INVTYPE_CLOAK_STRING); + category.push_back("INV_Misc_Cape_18"); + break; + case INVTYPE_2HWEAPON: + category.push_back(INVTYPE_2HWEAPON_STRING); + category.push_back("INV_Mace_72"); + break; + case INVTYPE_BAG: + category.push_back(INVTYPE_BAG_STRING); + category.push_back("INV_Misc_Bag_09"); + break; + case INVTYPE_TABARD: + category.push_back(INVTYPE_TABARD_STRING); + category.push_back("INV_Shirt_Guildtabard_01"); + break; + case INVTYPE_ROBE: + category.push_back(INVTYPE_ROBE_STRING); + category.push_back("INV_Robe_Emberweavegown_a_01"); + break; + case INVTYPE_WEAPONMAINHAND: + category.push_back(INVTYPE_WEAPONMAINHAND_STRING); + category.push_back("INV_Mace_48"); + break; + case INVTYPE_WEAPONOFFHAND: + category.push_back(INVTYPE_WEAPONOFFHAND_STRING); + category.push_back("INV_Offhand_Dalaran_d_01"); + break; + case INVTYPE_HOLDABLE: + category.push_back(INVTYPE_HOLDABLE_STRING); + category.push_back("INV_Misc_Giftwrap_02"); + break; + case INVTYPE_AMMO: + category.push_back(INVTYPE_AMMO_STRING); + category.push_back("INV_Misc_Ammo_Arrow_03"); + break; + case INVTYPE_THROWN: + category.push_back(INVTYPE_THROWN_STRING); + category.push_back("INV_Throwingaxe_03"); + break; + case INVTYPE_RANGEDRIGHT: + category.push_back(INVTYPE_RANGEDRIGHT_STRING); + category.push_back("INV_Weapon_Rifle_27"); + break; + case INVTYPE_QUIVER: + category.push_back(INVTYPE_QUIVER_STRING); + category.push_back("INV_Misc_Quiver"); + break; + case INVTYPE_RELIC: + category.push_back(INVTYPE_RELIC_STRING); + category.push_back("INV_Relics_Libramofgrace"); + break; + } + + return category; +} + +std::string AzthUtils::GetItemIcon(uint32 entry, uint32 width, uint32 height, int x, int y) +{ + std::ostringstream ss; + ss << "|TInterface"; + const ItemTemplate* temp = sObjectMgr->GetItemTemplate(entry); + const ItemDisplayInfoEntry* dispInfo = NULL; + if (temp) + { + dispInfo = sItemDisplayInfoStore.LookupEntry(temp->DisplayInfoID); + if (dispInfo) + ss << "/ICONS/" << dispInfo->inventoryIcon; + } + if (!dispInfo) + ss << "/InventoryItems/WoWUnknownItem01"; + ss << ":" << width << ":" << height << ":" << x << ":" << y << "|t"; + return ss.str(); +} + + +std::string AzthUtils::getDimensionName(uint32 dim) { + std::string name = ""; + switch (dim) { + case DIMENSION_NORMAL: + name += "Illusory World"; + break; + case DIMENSION_GUILD: + name += "Guild World"; + break; + case DIMENSION_PVP: + name += "Corrupted World"; + break; + case DIMENSION_ENTERTAINMENT: + name += "Toys World"; + break; + case DIMENSION_RPG: + name += "Warcraft Tales"; + break; + case DIMENSION_60: + name += "Classic World"; + break; + case DIMENSION_70: + name += "TBC World"; + break; + break; + case DIMENSION_TEST: + name += "Test World"; + break; + case DIMENSION_GM: + name += "GameMaster World"; + break; + default: + name += "Unknown"; + break; + } + + return name; +} + +bool AzthUtils::dimIntegrityCheck(Unit const* target, uint32 phasemask) +{ + if (target && target->GetTypeId() == TYPEID_PLAYER) + { + Player const* player = target->ToPlayer(); + + if (player) + { + PhaseDimensionsEnum dim=getCurrentDimensionByPhase(phasemask); + + // If target has temporary normal dimension + // we must consider as it's in normal phase + // avoiding dimension changing from to , + // if we're summoning a player from instance to instance for example. + // Of course if we're summoning an instanced player with dimension + // outside of an instance on , + // then the map changing check will restore the correct dimension + // + // Moreover checking aura instead phase, if it differ by dim + // then the changeDimension can fix eventually exploits + // with phased players without correct aura + uint32 targetDim = sAZTH->GetAZTHPlayer((Player*)player)->getCurrentDimensionByAura(); + + if (isPhasedDimension(dim) && dim != targetDim) + return sAZTH->GetAZTHPlayer((Player*)player)->changeDimension(dim, true); + } + } + + return true; +} + +bool AzthUtils::isPhasedDimension(uint32 dim) { + return dim > DIMENSION_NORMAL; +} + +bool AzthUtils::isSharedArea(Player* /*player*/, MapEntry const *mEntry, uint32 zone, uint32 /*area*/) { + return + mEntry->IsBattlegroundOrArena() // all bg and arena + || mEntry->IsDungeon() // is dungeon + || mEntry->IsRaid() // is raid + || zone == BATTLEFIELD_WG_ZONEID; // WG must be shared mainly because it's an open world BG, then because it apply phase 1 + horde/ally phase...so can collide +} + +PhaseDimensionsEnum AzthUtils::getCurrentDimensionByPhase(uint32 phase) { + // some aura phases include 1 normal map in addition to phase itself + // we should catch also characters that, for some odd reason, have + // special dimension + normal (shouldn't happen) + phase = phase & ~PHASEMASK_NORMAL; + + if (phase>0) { + if (phaseMap.find(phase) != phaseMap.end()) + return phaseMap[phase]; + } + + return DIMENSION_NORMAL; +} + + +bool AzthUtils::checkItemLvL(ItemTemplate const* proto,uint32 level) { + // return false if item level > current season + return !(proto->InventoryType > 0 && proto->InventoryType != INVTYPE_AMMO && proto->ItemLevel > level); +} + + +int AzthUtils::getReaction(Unit const* unit, Unit const* target) { + Player const* selfPlayerOwner = unit->GetAffectingPlayer(); + Player const* targetPlayerOwner = target->GetAffectingPlayer(); + + uint32 dimUnit=selfPlayerOwner ? sAZTH->GetAZTHPlayer((Player*)selfPlayerOwner)->getCurrentDimensionByPhase() : getCurrentDimensionByPhase(unit->GetPhaseMask()); + uint32 dimTarget=targetPlayerOwner ? sAZTH->GetAZTHPlayer((Player*)targetPlayerOwner)->getCurrentDimensionByPhase() : getCurrentDimensionByPhase(target->GetPhaseMask()); + + // case of 2 players + if (selfPlayerOwner && targetPlayerOwner) { + // before guild check + if (sAZTH->GetAZTHPlayer((Player*)selfPlayerOwner)->isInBlackMarket() && sAZTH->GetAZTHPlayer((Player*)targetPlayerOwner)->isInBlackMarket()) + return REP_FRIENDLY; + + if (dimUnit == DIMENSION_PVP && dimTarget == DIMENSION_PVP) { + return REP_HOSTILE; // fight against everyone on pvp dimension (maybe we must allow it only in contested territory?) + } + } + + // [AZTH-DISABLE] + // if (dimUnit== DIMENSION_GUILD && dimTarget == DIMENSION_GUILD) { + // GH_unit *su = nullptr; + // if (!selfPlayerOwner) { + // su = GHobj.GetUnitByGuid(unit->GetGUID().GetCounter()); + + // if (!su) + // return -1; + + // if (su->type == NPC_DUMMY) + // return REP_HOSTILE; + // } + + // GH_unit *tu = nullptr; + // if (!targetPlayerOwner) { + // tu = GHobj.GetUnitByGuid(target->GetGUID().GetCounter()); + + // if (!tu) + // return -1; + + // if (tu->type == NPC_DUMMY) + // return REP_HOSTILE; + // } + + // uint32 guildUnit=selfPlayerOwner ? selfPlayerOwner->GetGuildId() : su->guild; + // uint32 guildTarget=targetPlayerOwner ? targetPlayerOwner->GetGuildId() : tu->guild; + + // // it can happen only when the unit is a creature and + // // not assigned to any guild (blackmarket NPCs for example) + // // A player with guild = 0 shouldn't be allowed to enter + // // this dimension and there are checks about it in other places + // if (!guildTarget || !guildUnit) { + // // normal creature (not assigned to any guild) + // // get the default reaction + // return -1; + // } + + // return guildUnit != guildTarget ? REP_HOSTILE : REP_FRIENDLY; + // } + + return -1; +} + +bool AzthUtils::canFly(Unit*const /*caster*/, Unit* originalCaster) +{ + if (originalCaster && originalCaster->GetTypeId() == TYPEID_PLAYER) + { + uint32 curDim = sAZTH->GetAZTHPlayer((Player*)originalCaster)->getCurrentDimensionByAura(); + + if (curDim == DIMENSION_TEST || curDim == DIMENSION_GM) + return true; + } + + // return false to continue with other checks + return false; +} + +SpellCastResult AzthUtils::checkSpellCast(Player* player, SpellInfo const* spell, bool notify) +{ + // Great feast and Fish Feast must be blocked for level < 70 + // they have been fixed in cataclysm but on wotlk it can be used + // as exploit with low level players + if (player->getLevel() < 70 && ( + spell->Id == 57399 // Well Fed - Fish Feast + || spell->Id == 57294 // Well Fed - Great Feast + )) { + return SPELL_FAILED_LOWLEVEL; + } + + if (sAZTH->GetAZTHPlayer(player)->isTimeWalking(true) && sAzthUtils->isNotAllowedSpellForTw(spell)) { + if (notify) + player->GetSession()->SendNotification("This spell is not allowed in Timewalking"); + return SPELL_FAILED_DONT_REPORT; + } + + return SPELL_CAST_OK; +} + +bool AzthUtils::canPrepareSpell(Spell* /*spell*/, Unit* /*m_caster*/, SpellInfo const* m_spellInfo, SpellCastTargets const* targets, AuraEffect const* /*triggeredByAura*/) { + // naxxramas teleport disabled when timewalking + Unit* target = targets->GetUnitTarget(); + //Player *player; + + if (!target) + return true; + + if (!m_spellInfo) + return true; + + /*if (target->GetTypeId() == TYPEID_PLAYER) + player = target->ToPlayer(); + + if (m_spellInfo->Id == 72613 && player && sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel() == TIMEWALKING_LVL_NAXX) { + if (InstanceScript* iscript=player->GetInstanceScript()) { + if ( + iscript->GetBossState(BOSS_MAEXXNA) == DONE && + iscript->GetBossState(BOSS_LOATHEB) == DONE && + iscript->GetBossState(BOSS_HORSEMAN) == DONE && + iscript->GetBossState(BOSS_THADDIUS) == DONE + ) { + player->GetSession()->SendNotification("TIMEWALKING: You cannot be teleported! You must kill all bosses."); + return true; + } else { + spell->SendCastResult(SPELL_FAILED_DONT_REPORT); + return false; + } + } + }*/ + + return true; +} + +void AzthUtils::onAuraRemove(AuraApplication * aurApp, AuraRemoveMode /*mode*/) { + Aura* aura = aurApp->GetBase(); + if (aura->GetSpellInfo()->Id == AZTH_RIDE_VEHICLE_SPELL || aura->GetSpellInfo()->Id == AZTH_RIDE_VEHICLE_FLY_SPELL || + aura->GetSpellInfo()->Id == AZTH_RIDE_MOUNT_SPELL || aura->GetSpellInfo()->Id == AZTH_RIDE_MOUNT_FLY_SPELL + ) { + Unit *caster = aura->GetCaster(); + if (caster->GetTypeId() == TYPEID_PLAYER) { + Player *player = caster->ToPlayer(); + if (player) { + if (player->IsMounted()) + player->Dismount(); + + if (player->m_mover != player && player->IsOnVehicle(player->m_mover)) + player->ExitVehicle(); + } + } + } +} + +uint32 AzthUtils::getPositionLevel(bool includeSpecialLvl, Map *map, uint32 zone, uint32 area) const { + + uint32 level=0; + + if (includeSpecialLvl) { + switch(map->GetId()) { + case NAXXRAMS_RAID: + level = TIMEWALKING_LVL_NAXX; // keep old TW level for now + break; + case OBSIDIAN_RAID: + level = TIMEWALKING_LVL_VAS_LVL13; + break; + case THE_EYE_OF_ETERNITY_RAID: + level = TIMEWALKING_LVL_VAS_LVL13; + break; + case ULDUAR_RAID: + level = TIMEWALKING_LVL_VAS_LVL4; + break; + case TRIAL_OF_THE_CRUSADRE_RAID: + level = TIMEWALKING_LVL_VAS_LVL4; + break; + } + } + + // before area table because more accurate in dungeon case + if (!level) { + LFGDungeonEntry const* dungeon = GetLFGDungeon(map->GetId(), map->GetDifficulty()); + if (dungeon && (map->IsDungeon() || map->IsRaid())) { + level = dungeon->recminlevel ? dungeon->recminlevel : ( dungeon->reclevel ? dungeon->reclevel : dungeon->minlevel); + } + } + + if (!level) { + DungeonProgressionRequirements const* ar=sObjectMgr->GetAccessRequirement(map->GetId(), map->GetDifficulty()); + if (ar) + level = ar->levelMin; + } + + if (!level) + { + AreaTableEntry const* areaEntry = sAreaTableStore.LookupEntry(area); + if (areaEntry && areaEntry->area_level > 0) + level = areaEntry->area_level; + } + + if (!level) { + // some area entry doesn't have the area_level defined, so we can try + // a workaround with LFGDungeon list on outworld zones + MapEntry const* mapEntry = sMapStore.LookupEntry(map->GetId()); + AreaTableEntry const* zoneEntry = sAreaTableStore.LookupEntry(zone); + AreaTableEntry const* areaEntry = sAreaTableStore.LookupEntry(area); + + std::string mapName = mapEntry ? mapEntry->name[0] : ""; + std::string zoneName = zoneEntry ? zoneEntry->area_name[0] : ""; + std::string areaName = areaEntry ? areaEntry->area_name[0] : ""; + + if (mapName != "" || zoneName != "" || areaName != "") { + for (uint32 i = 0; i < sLFGDungeonStore.GetNumRows(); ++i) + { + LFGDungeonEntry const* dungeon = sLFGDungeonStore.LookupEntry(i); + if (!dungeon) + continue; + + if (areaName == dungeon->name[0] || zoneName == dungeon->name[0] || mapName == dungeon->name[0]) { + level = dungeon->recminlevel ? dungeon->recminlevel : ( dungeon->reclevel ? dungeon->reclevel : (dungeon->maxlevel+dungeon->minlevel)/2); + break; + } + } + } + } + + return level; +} + +uint32 AzthUtils::getPositionLevel(bool includeSpecialLvl, Map *map, WorldLocation const& posInfo) const { + uint32 zoneid,areaid; + map->GetZoneAndAreaId(PHASEMASK_NORMAL, zoneid, areaid, posInfo.GetPositionX(), posInfo.GetPositionY(), posInfo.GetPositionY()); + return getPositionLevel(includeSpecialLvl, map, zoneid, areaid); +} + +// not count special bags +uint32 AzthUtils::getFreeSpaceInBags(Player *player) { + uint32 count=0; + + //main bag + for (uint8 i = INVENTORY_SLOT_ITEM_START; i < INVENTORY_SLOT_ITEM_END; i++) { + Item* pItem = player->GetItemByPos(INVENTORY_SLOT_BAG_0, i); + if (!pItem) + count++; + } + + // other bags + for (uint8 i = INVENTORY_SLOT_BAG_START; i < INVENTORY_SLOT_BAG_END; i++) { + if (Bag* pBag = player->GetBagByPos(i)) { + switch (pBag->GetTemplate()->Class) + { + case ITEM_CLASS_CONTAINER: + switch (pBag->GetTemplate()->SubClass) + { + case ITEM_SUBCLASS_CONTAINER: + count+=pBag->GetFreeSlots(); + break; + } + break; + } + } + } + + return count; +} + + +bool AzthUtils::isAshenBand(uint32 entry) { + switch(entry) { + //EXALTED id + case 50398: + case 52572: + case 50402: + case 50404: + case 50400: + + //REVERED id + case 50397: + case 52571: + case 50401: + case 50403: + case 50399: + + //HONORED id + case 50384: + case 52570: + case 50387: + case 50388: + case 50386: + + //FRIENDLY id + case 50377: + case 52569: + case 50376: + case 50375: + case 50378: + return true; + } + + return false; +} + +bool AzthUtils::isMythicLevel(uint32 level) +{ + return level >= TIMEWALKING_LVL_VAS_START && level <= TIMEWALKING_LVL_VAS_END; +} + +bool AzthUtils::isMythicCompLvl(uint32 reqLvl, uint32 checkLvl) { + return isMythicLevel(reqLvl) && isMythicLevel(checkLvl) && reqLvl <= checkLvl; +} + + +bool AzthUtils::canMythicHere(Unit const* source) { + if (!source->GetMap()->IsDungeon()) + return false; + + uint32 expansion = source->GetMap()->GetEntry()->Expansion(); + uint32 mapId=source->GetMap()->GetId(); + uint32 posLvl = sAzthUtils->getPositionLevel(false, source->GetMap(), source->GetZoneId(), source->GetAreaId()); + if ((posLvl > 70 || expansion >= 2) + && mapId != 603 // Ulduar + && mapId != 533 // Naxxramas + && mapId != 616 // The Eye of Eternity + && mapId != 615 // Obsidian Sanctum + && mapId != 249 // Onyxia's Lair + ) + return false; + + return true; +} diff --git a/src/ASCommon/AzthUtils.h b/src/ASCommon/AzthUtils.h new file mode 100644 index 0000000..c872367 --- /dev/null +++ b/src/ASCommon/AzthUtils.h @@ -0,0 +1,155 @@ +#ifndef AZTH_UTILS_H +#define AZTH_UTILS_H + +#include "Common.h" +#include "Define.h" +#include "Config.h" +#include "Item.h" +#include "ItemTemplate.h" +#include "ObjectMgr.h" +#include "Player.h" +#include "Group.h" +#include "SpellAuras.h" +#include "SharedDefines.h" +#include +#include +#include "AzthLevelStat.h" +#include "AzthSharedDefines.h" + +class AuraApplication; +class Group; + +class AzthUtils +{ +public: + static AzthUtils* instance(); + + std::string INVTYPE_NON_EQUIP_STRING; + std::string INVTYPE_HEAD_STRING; + std::string INVTYPE_NECK_STRING; + std::string INVTYPE_SHOULDERS_STRING; + std::string INVTYPE_BODY_STRING; + std::string INVTYPE_CHEST_STRING; + std::string INVTYPE_WAIST_STRING; + std::string INVTYPE_LEGS_STRING; + std::string INVTYPE_FEET_STRING; + std::string INVTYPE_WRISTS_STRING; + std::string INVTYPE_HANDS_STRING; + std::string INVTYPE_FINGER_STRING; + std::string INVTYPE_TRINKET_STRING; + std::string INVTYPE_WEAPON_STRING; + std::string INVTYPE_SHIELD_STRING; + std::string INVTYPE_RANGED_STRING; + std::string INVTYPE_CLOAK_STRING; + std::string INVTYPE_2HWEAPON_STRING; + std::string INVTYPE_BAG_STRING; + std::string INVTYPE_TABARD_STRING; + std::string INVTYPE_ROBE_STRING; + std::string INVTYPE_WEAPONMAINHAND_STRING; + std::string INVTYPE_WEAPONOFFHAND_STRING; + std::string INVTYPE_HOLDABLE_STRING; + std::string INVTYPE_AMMO_STRING; + std::string INVTYPE_THROWN_STRING; + std::string INVTYPE_RANGEDRIGHT_STRING; + std::string INVTYPE_QUIVER_STRING; + std::string INVTYPE_RELIC_STRING; + + AzthUtils(); + ~AzthUtils(); + + uint32 selectCorrectSpellRank(uint8 level, uint32 spellId); + + float getCustomMultiplier(ItemTemplate const * pProto, uint32 multiplier); + + uint32 getCalcReqLevel(ItemTemplate const* pProto); + + void learnClassSpells(Player* player, bool new_level); + + void loadClassSpells(); + + void sendMessageToGroup(Player *pl, Group *group, const char* msg); + + time_t getStartsOfYear(); + + bool checkItemLvL(ItemTemplate const* proto,uint32 level); + + int getReaction(Unit const* unit, Unit const* target); + + bool canFly(Unit* const caster, Unit* originalCaster); + + uint32 getFreeSpaceInBags(Player *player); + + uint32 calculateItemScalingValue(ItemTemplate const* pProto, Player *pl = NULL); + int32 normalizeFeralAp(int32 feralBonus, int32 extraDPS, ItemTemplate const* pProto, bool isScaling); + + uint32 getMaxWeaponSkillByLevel(uint32 level) { + return level * 5; + } + + bool isAshenBand(uint32 entry); + + SpellCastResult checkSpellCast(Player *player, SpellInfo const* spell, bool notify); + bool canPrepareSpell(Spell *spell, Unit *m_caster, SpellInfo const* m_spellInfo, SpellCastTargets const* targets, AuraEffect const* triggeredByAura); + void onAuraRemove(AuraApplication * aurApp, AuraRemoveMode mode); + + // [Timewalking] + uint32 getPositionLevel(bool includeSpecialLvl, Map *map, uint32 zone = 0, uint32 area = 0) const; + uint32 getPositionLevel(bool includeSpecialLvl, Map *map, WorldLocation const& posInfo) const; + + uint32 selectSpellForTW(Player* player, uint32 spellId); + + void removeTimewalkingAura(Unit * unit); + + std::string getLevelInfo(uint32 level); + + bool updateTwLevel(Player *player, Group *group=nullptr); + + int32 getSpellReduction(Player *player, SpellInfo const* spellProto); + + bool isEligibleForBonusByArea(Player const *player); + + bool canScaleSpell(SpellInfo const* spellProto); + + bool isSpecialSpellForTw(SpellInfo const* spellProto); + + bool isNotAllowedSpellForTw(SpellInfo const* spellProto); + + void setTwAuras(Unit *unit, AzthLevelStat const *stats, bool apply, bool skipDefense); + void setTwDefense(Player *player, bool apply); + AzthLevelStat const* getTwStats(Player *player, uint32 level); + + uint32 maxTwLevel(uint32 sourceLvl, uint32 compareLevel) const; + + bool disableEnchant(Player *player, SpellItemEnchantmentEntry const* pEnchant); + // [/Timewalking] + + // DIMENSIONS + std::string getDimensionName(uint32 dim); + bool isPhasedDimension(uint32 dim); + PhaseDimensionsEnum getCurrentDimensionByPhase(uint32 phase); + bool dimIntegrityCheck(Unit const* target, uint32 phasemask); + bool isSharedArea(Player *player, MapEntry const *mEntry, uint32 zone, uint32 area); + // /DIMENSIONS + + // [Flex Mythic] + bool isMythicLevel(uint32 level); + bool isMythicCompLvl(uint32 reqLvl, uint32 checkLvl); + bool canMythicHere(Unit const* source); + // [/Flex Mythic] + + // horde version of objectmgr factionchangeitems map + ObjectMgr::CharacterConversionMap FactionChangeItemsHorde; + + std::list startSpells[MAX_RACES][MAX_CLASSES]; + + std::string GetItemIcon(uint32 entry, uint32 width, uint32 height, int x, int y); + std::vector getCategoryIconAndNameByItemType(uint32 itemType); + +private: + std::map phaseMap; + +}; + +#define sAzthUtils AzthUtils::instance() + +#endif diff --git a/src/ASCommon/AzthWorldScript.cpp b/src/ASCommon/AzthWorldScript.cpp new file mode 100644 index 0000000..084cc85 --- /dev/null +++ b/src/ASCommon/AzthWorldScript.cpp @@ -0,0 +1,27 @@ +#include "Configuration/Config.h" +#include "AzthLanguageStrings.h" +#include "AzthUtils.h" +#include "ScriptMgr.h" +#include "AzthFirstKills.h" +#include "DatabaseLoader.h" + +class AzthWorldScript : public WorldScript +{ +public: + AzthWorldScript() : WorldScript("AzthWorldScript") { } + + void OnStartup() override + { + // DatabaseLoader loader("server.worldserver"); + // loader + // .AddDatabase(ExtraDatabase, "Extra"); + sAzthLang->loadStrings(); + sAzthUtils->loadClassSpells(); + sAzthFirstKills->loadCurrentFirstkills(); + } +}; + +void AddSC_AzthWorldScript() +{ + new AzthWorldScript(); +} diff --git a/src/ASCommon/PluginsMgr.cpp b/src/ASCommon/PluginsMgr.cpp new file mode 100644 index 0000000..8b0c78b --- /dev/null +++ b/src/ASCommon/PluginsMgr.cpp @@ -0,0 +1,13 @@ +#include "PluginsMgr.h" +//#include "PluginsLoader.h" + +AzthPlgMgr::AzthPlgMgr() { +} + +AzthPlgMgr::~AzthPlgMgr() { +} + +void AzthPlgMgr::Initialization() +{ + //AzthAddPlg(); +} diff --git a/src/ASCommon/PluginsMgr.h b/src/ASCommon/PluginsMgr.h new file mode 100644 index 0000000..48d1081 --- /dev/null +++ b/src/ASCommon/PluginsMgr.h @@ -0,0 +1,34 @@ +#ifndef AZTH_PLG_MGR_H +#define AZTH_PLG_MGR_H + +#include "ScriptMgr.h" + +class AzerothPlugins : public ScriptObject +{ + protected: + + AzerothPlugins(const char* name); + + public: + //Test function to show usage + virtual void onTest() { } +}; + +class AzthPlgMgr { +private: + AzthPlgMgr(); + ~AzthPlgMgr(); +public: /* singleton init */ + + static AzthPlgMgr* instance() { + static AzthPlgMgr instance; + return &instance; + } + + void Initialization(); +}; + +#define sAzthPlg AzthPlgMgr::instance() + +#endif /* AZTH_PLG_MGR_H */ + diff --git a/src/ASCommon/cs_azth_custom.cpp b/src/ASCommon/cs_azth_custom.cpp new file mode 100644 index 0000000..b18536c --- /dev/null +++ b/src/ASCommon/cs_azth_custom.cpp @@ -0,0 +1,85 @@ +/* + * Copyright (C) 2008-2015 TrinityCore + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see . + */ + +#include "Chat.h" +#include "ScriptMgr.h" +#include "AccountMgr.h" +#include "ArenaTeamMgr.h" +#include "CellImpl.h" +#include "GridNotifiers.h" +#include "Group.h" +#include "Language.h" +#include "Opcodes.h" +#include "Player.h" +#include "Pet.h" +#include "ReputationMgr.h" +#include "CustomRates.h" +#include "AzthSharedDefines.h" +#include "RatingBonus.h" +#include "AzthUtils.h" +#include "AZTH.h" + +using namespace Acore::ChatCommands; + +class azth_commandscript : public CommandScript +{ +public: + azth_commandscript() : CommandScript("azth_commandscript") { } + + ChatCommandTable GetCommands() const override + { + static ChatCommandTable azthCommandsTable = + { + { "arealevel", handlePrintAreaLevel, SEC_PLAYER, Console::No } + }; + + static ChatCommandTable commandTable = + { + { "azth", azthCommandsTable} + }; + + return commandTable; + } + + static bool handlePrintAreaLevel(ChatHandler* handler, Optional target) + { + if (!target) + target = PlayerIdentifier::FromTargetOrSelf(handler); + + if (!target || !target->IsConnected()) + { + handler->SendSysMessage(LANG_PLAYER_NOT_FOUND); + handler->SetSentErrorMessage(true); + return false; + } + + Player* targetPlayer = target->GetConnectedPlayer(); + WorldLocation pos = WorldLocation(targetPlayer->GetMapId(), targetPlayer->GetPositionX(), targetPlayer->GetPositionY(), targetPlayer->GetPositionZ(), targetPlayer->GetOrientation()); + + if (uint32 posLvl = sAzthUtils->getPositionLevel(true, targetPlayer->GetMap(), pos)) + handler->PSendSysMessage("Current area level: %d", posLvl); + else + handler->PSendSysMessage("No level for this area"); + + return true; + } +}; + + void AddSC_azth_commandscript() + { + new azth_commandscript(); + } diff --git a/src/ASCommon/tests/AzthPlgTests.cpp b/src/ASCommon/tests/AzthPlgTests.cpp new file mode 100644 index 0000000..0707187 --- /dev/null +++ b/src/ASCommon/tests/AzthPlgTests.cpp @@ -0,0 +1 @@ +#include "AzthPlgTests.h" diff --git a/src/ASCommon/tests/AzthPlgTests.h b/src/ASCommon/tests/AzthPlgTests.h new file mode 100644 index 0000000..5c8dd00 --- /dev/null +++ b/src/ASCommon/tests/AzthPlgTests.h @@ -0,0 +1,7 @@ +#ifndef AZTHPLGTESTS_H +#define AZTHPLGTESTS_H + + + +#endif /* AZTHPLGTESTS_H */ + diff --git a/src/ASCommon/tests/AzthTestSystem.cpp b/src/ASCommon/tests/AzthTestSystem.cpp new file mode 100644 index 0000000..3220575 --- /dev/null +++ b/src/ASCommon/tests/AzthTestSystem.cpp @@ -0,0 +1,27 @@ +#include "AzthTestSystem.h" +/* [TODO] fix and re-enable +class AzthTestSystem : public WorldScript { +public: + + AzthTestSystem() : WorldScript("AzthTestSystem") { + } + + void OnStartup() override { + + } + +public: + + void runTests() { + //azth_commandscript cmd = AddSC_azth_commandscript(); + + //Player *pCurrChar = LoadPlayer(1); + //ChatHandler *ch = ChatHandler(pCurrChar->GetSession()) + //cmd->handleAzthMaxSkill(ch); + } +}; + +void AddTestSystemScripts() { + new AzthTestSystem(); +} +*/ diff --git a/src/ASCommon/tests/AzthTestSystem.h b/src/ASCommon/tests/AzthTestSystem.h new file mode 100644 index 0000000..36fd77c --- /dev/null +++ b/src/ASCommon/tests/AzthTestSystem.h @@ -0,0 +1,16 @@ +#ifndef AZTHTESTSYSTEM_H +#define AZTHTESTSYSTEM_H + +#ifdef AZTH_WITH_UNIT_TEST + #include "AzthSystem.h" + + #ifdef AZTH_WITH_PLUGINS + #include "AzthPlgTests.h" + #endif + + #ifdef AZTH_WITH_CUSTOM_PLUGINS + #include "AzthCustomPlgTests.h" + #endif +#endif + +#endif /* AZTHTESTSYSTEM_H */ diff --git a/src/ASPlatform/AZTH.cpp b/src/ASPlatform/AZTH.cpp new file mode 100644 index 0000000..061aa9d --- /dev/null +++ b/src/ASPlatform/AZTH.cpp @@ -0,0 +1,384 @@ +/* + * Copyright (С) since 2019 Andrei Guluaev (Winfidonarleyan/Kargatum) https://github.com/Winfidonarleyan + */ + +#include "AZTH.h" +#include "Log.h" +#include "ArenaTeamMgr.h" +#include "BattlegroundMgr.h" +#include "DatabaseEnv.h" +#include "ObjectMgr.h" +#include "Config.h" +#include "Solo3v3.h" +//#include "ExtraDatabase.h" + +AZTH* AZTH::instance() +{ + static AZTH instance; + return &instance; +} + +void AZTH::LoadConfig(bool reload) +{ + // PvP Ranks + Tokenizer PvPRankList(sConfigMgr->GetOption("PvPRank.HKPerRank", "10,50,100,200,450,750,1300,2000,3500,6000,9500,15000,21000,30000"), ','); + for (uint8 i = 0; i < PvPRankList.size(); i++) + _PvP_Ranks[i] = atoi(PvPRankList[i]); + + _RatePvPRankExtraHonor = sConfigMgr->GetOption("PvPRank.Rate.ExtraHonor", 1); + + // External Mail + _IsExternalMailEnable = sConfigMgr->GetOption("ExternalMail", 0); + _ExternalMailInterval = sConfigMgr->GetOption("ExternalMailInterval", 1) * MINUTE * IN_MILLISECONDS; + + // Custom XP + _CustomXPSecurity = sConfigMgr->GetOption("Player.customXP.security", 0); + _CustomXPMax = sConfigMgr->GetOption("Player.customXP.maxValue", 1); + _CustomXPShowOnLogin = sConfigMgr->GetOption("Player.customXP.showOnLogin", false); + + if (!reload) + LoadContainers(); +} + +void AZTH::LoadContainers() +{ + // ArenaSlotByType + if (!ArenaTeam::ArenaSlotByType.count(ARENA_TEAM_1v1)) + ArenaTeam::ArenaSlotByType[ARENA_TEAM_1v1] = ARENA_SLOT_1v1; + + if (!ArenaTeam::ArenaSlotByType.count(ARENA_TEAM_SOLO_3v3)) + ArenaTeam::ArenaSlotByType[ARENA_TEAM_SOLO_3v3] = ARENA_SLOT_SOLO_3v3; + + // ArenaReqPlayersForType + if (!ArenaTeam::ArenaReqPlayersForType.count(ARENA_TYPE_1v1)) + ArenaTeam::ArenaReqPlayersForType[ARENA_TYPE_1v1] = 2; + + if (!ArenaTeam::ArenaReqPlayersForType.count(ARENA_TYPE_3v3_SOLO)) + ArenaTeam::ArenaReqPlayersForType[ARENA_TYPE_3v3_SOLO] = 6; + + // queueToBg + if (!BattlegroundMgr::queueToBg.count(BATTLEGROUND_QUEUE_1v1)) + BattlegroundMgr::queueToBg[BATTLEGROUND_QUEUE_1v1] = BATTLEGROUND_AA; + + if (!BattlegroundMgr::queueToBg.count(BATTLEGROUND_QUEUE_3v3_SOLO)) + BattlegroundMgr::queueToBg[BATTLEGROUND_QUEUE_3v3_SOLO] = BATTLEGROUND_AA; + + // ArenaTypeToQueue + if (!BattlegroundMgr::ArenaTypeToQueue.count(ARENA_TYPE_1v1)) + BattlegroundMgr::ArenaTypeToQueue[ARENA_TYPE_1v1] = (BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_1v1; + + if (!BattlegroundMgr::ArenaTypeToQueue.count(ARENA_TYPE_3v3_SOLO)) + BattlegroundMgr::ArenaTypeToQueue[ARENA_TYPE_3v3_SOLO] = (BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_3v3_SOLO; + + // QueueToArenaType + if (!BattlegroundMgr::QueueToArenaType.count(BATTLEGROUND_QUEUE_1v1)) + BattlegroundMgr::QueueToArenaType[BATTLEGROUND_QUEUE_1v1] = (ArenaType)ARENA_TYPE_1v1; + + if (!BattlegroundMgr::QueueToArenaType.count(BATTLEGROUND_QUEUE_3v3_SOLO)) + BattlegroundMgr::QueueToArenaType[BATTLEGROUND_QUEUE_3v3_SOLO] = (ArenaType)ARENA_TYPE_3v3_SOLO; +} + +// Add +void AZTH::AddAZTHPlayer(Player* player) +{ + if (_playersStore.count(player)) + { + sLog->outError("AZTH::AddAZTHPlayer - _playersStore.count(player)"); + return; + } + + _playersStore.insert(std::make_pair(player, new AzthPlayer(player))); +} + +void AZTH::AddAZTHObject(Object* object) +{ + if (_objectsStore.count(object)) + { + sLog->outError("AZTH::AddAZTHObject - _objectsStore.count(object)"); + return; + } + + _objectsStore.insert(std::make_pair(object, new AzthObject(object))); +} + +void AZTH::AddAZTHGroup(Group* group) +{ + if (_groupStore.count(group)) + { + sLog->outError("AZTH::AddAZTHGroup - _groupStore.count(group)"); + return; + } + + _groupStore.insert(std::make_pair(group, new AzthGroupMgr(group))); +} + +void AZTH::AddAZTHInstanceSave(InstanceSave* instanceSave) +{ + if (_instanceSaveStore.count(instanceSave)) + { + sLog->outError("AZTH::AddAZTHInstanceSave - _instanceSaveStore.count(instanceSave)"); + return; + } + + _instanceSaveStore.insert(std::make_pair(instanceSave, new AzthInstanceMgr(instanceSave))); +} + +void AZTH::AddAZTHLoot(Loot* loot) +{ + if (_lootStore.count(loot)) + { + sLog->outError("AZTH::AddAZTHLoot - _lootStore.count(instanceSave)"); + return; + } + + _lootStore.insert(std::make_pair(loot, true)); +} + +// Get +AzthPlayer* AZTH::GetAZTHPlayer(Player* player) +{ + if (!_playersStore.count(player)) + { + sLog->outError("AZTH::GetAZTHPlayer - !_playersStore.count(player)"); + return nullptr; + } + + return _playersStore[player]; +} + +AzthObject* AZTH::GetAZTHObject(Object* object) +{ + if (!_objectsStore.count(object)) + { + sLog->outError("AZTH::GetAZTHObject - !_objectsStore.count(object)"); + return nullptr; + } + + return _objectsStore[object]; +} + +AzthGroupMgr* AZTH::GetAZTHGroup(Group* group) +{ + if (!group) + { + return nullptr; + } + + if (!_groupStore.count(group)) + { + sLog->outError("AZTH::GetAZTHGroup - !_groupStore.count(group)"); + return nullptr; + } + + return _groupStore[group]; +} + +AzthInstanceMgr* AZTH::GetAZTHInstanceSave(InstanceSave* instanceSave) +{ + if (!_instanceSaveStore.count(instanceSave)) + { + sLog->outError("AZTH::GetAZTHInstanceSave - !_instanceSaveStore.count(instanceSave)"); + return nullptr; + } + + return _instanceSaveStore[instanceSave]; +} + +bool AZTH::GetAZTHLoot(Loot* loot) +{ + if (!_lootStore.count(loot)) + return false; + + return _lootStore[loot]; +} + +// Delete +void AZTH::DeleteAZTHPlayer(Player* player) +{ + if (!_playersStore.count(player)) + { + sLog->outError("AZTH::DeleteAZTHPlayer - !_playersStore.count(player)"); + return; + } + + _playersStore.erase(player); +} + +void AZTH::DeleteAZTHObject(Object* object) +{ + if (!_objectsStore.count(object)) + { + sLog->outError("AZTH::DeleteAZTHObject - !_objectsStore.count(object)"); + return; + } + + _objectsStore.erase(object); +} + +void AZTH::DeleteAZTHGroup(Group* group) +{ + if (!_groupStore.count(group)) + { + sLog->outError("AZTH::DeleteAZTHGroup - !_groupStore.count(group)"); + return; + } + + _groupStore.erase(group); +} + +void AZTH::DeleteAZTHInstanceSave(InstanceSave* instanceSave) +{ + if (!_instanceSaveStore.count(instanceSave)) + { + sLog->outError("AZTH::DeleteAZTHInstanceSave - !_instanceSaveStore.count(instanceSave)"); + return; + } + + _instanceSaveStore.erase(instanceSave); +} + +void AZTH::DeleteAZTHLoot(Loot* loot) +{ + if (!_lootStore.count(loot)) + { + sLog->outError("AZTH::DeleteAZTHLoot - !_instanceSaveStore.count(loot)"); + return; + } + + _lootStore.erase(loot); +} + +// PvP Kanks +uint32 AZTH::GetKillsPerRank(uint32 Rank) +{ + return Rank < HKRANKMAX ? _PvP_Ranks[Rank] : 0; +} + +float AZTH::GetRatePvPRankExtraHonor() +{ + return _RatePvPRankExtraHonor; +} + +// [AZTH] Custom functions +void AZTH::SendGameMail(Player* receiver, std::string subject, std::string body, uint32 money, uint32 itemId /* =0 */, uint32 itemCount /* =0 */) +{ + uint32 receiver_guid = receiver->GetGUID().GetCounter(); + + CharacterDatabaseTransaction trans = CharacterDatabase.BeginTransaction(); + MailDraft* mail = new MailDraft(subject, body); + + if (money) + mail->AddMoney(money); + + if (itemId) + { + ItemTemplate const* pProto = sObjectMgr->GetItemTemplate(itemId); + if (pProto) + { + Item* mailItem = Item::CreateItem(itemId, itemCount); + if (mailItem) + { + mailItem->SaveToDB(trans); + mail->AddItem(mailItem); + } + } + } + + mail->SendMailTo(trans, receiver ? receiver : MailReceiver(receiver_guid), MailSender(MAIL_NORMAL, 0, MAIL_STATIONERY_GM), MAIL_CHECK_MASK_RETURNED); + delete mail; + + CharacterDatabase.CommitTransaction(trans); +} + +// External Mail +bool AZTH::IsExternalMailEnable() +{ + return _IsExternalMailEnable; +} + +uint32 AZTH::GetExternalMailInterval() +{ + return _ExternalMailInterval; +} + +void AZTH::SendExternalMails() +{ + // [AZTH-DISABLED] + // sLog->outString("EXTERNAL MAIL> Sending mails in queue..."); + + // PreparedStatement* stmt = ExtraDatabase.GetPreparedStatement(EXTRA_GET_EXTERNAL_MAIL); + // PreparedQueryResult result = ExtraDatabase.Query(stmt); + // if (!result) + // { + // sLog->outError("EXTERNAL MAIL> No mails in queue..."); + // return; + // } + + // CharacterDatabaseTransaction trans = CharacterDatabase.BeginTransaction();n(); + // SQLTransaction trans2 = ExtraDatabase.BeginTransaction(); + + // MailDraft* mail = nullptr; + + // do + // { + // Field* fields = result->Fetch(); + // uint32 id = fields[0].GetUInt32(); + // uint32 receiver_guid = fields[1].GetUInt32(); + // std::string subject = fields[2].GetString(); + // std::string body = fields[3].GetString(); + // uint32 money = fields[4].GetUInt32(); + // uint32 itemId = fields[5].GetUInt32(); + // uint32 itemCount = fields[6].GetUInt32(); + + // Player* receiver = ObjectAccessor::FindPlayerByLowGUID(receiver_guid); + + // mail = new MailDraft(subject, body); + + // if (money) + // mail->AddMoney(money); + + // if (itemId) + // { + // ItemTemplate const* pProto = sObjectMgr->GetItemTemplate(itemId); + // if (pProto) + // { + // Item* mailItem = Item::CreateItem(itemId, itemCount); + // if (mailItem) + // { + // mailItem->SaveToDB(trans); + // mail->AddItem(mailItem); + // } + // } + // else + // sLog->outError("non-existing item"); + // } + + // mail->SendMailTo(trans, receiver ? receiver : MailReceiver(receiver_guid), MailSender(MAIL_NORMAL, 0, MAIL_STATIONERY_GM), MAIL_CHECK_MASK_RETURNED); + // delete mail; + + // stmt = ExtraDatabase.GetPreparedStatement(EXTRA_DEL_EXTERNAL_MAIL); + // stmt->setUInt32(0, id); + // trans2->Append(stmt); + + // } while (result->NextRow()); + + // CharacterDatabase.CommitTransaction(trans); + // ExtraDatabase.CommitTransaction(trans2); + // sLog->outError("EXTERNAL MAIL> ALL MAILS SENT!"); +} + +// Custom XP +uint32 AZTH::GetCustomXPSecurity() +{ + return _CustomXPSecurity; +} + +float AZTH::GetCustomXPMax() +{ + return _CustomXPMax; +} + +bool AZTH::IsCustomXPShowOnLogin() +{ + return _CustomXPShowOnLogin; +} diff --git a/src/ASPlatform/AZTH.h b/src/ASPlatform/AZTH.h new file mode 100644 index 0000000..885743f --- /dev/null +++ b/src/ASPlatform/AZTH.h @@ -0,0 +1,90 @@ +#ifndef _AZTH_MODULE_H_ +#define _AZTH_MODULE_H_ + +#include "Common.h" +#include "AzthPlayer.h" +#include "AzthObject.h" +#include "AzthGroupMgr.h" +#include "AzthInstanceMgr.h" +#include "Object.h" +#include "GroupMgr.h" +#include "Player.h" +#include "Spell.h" +#include + +class AZTH +{ +public: + static AZTH* instance(); + + void LoadConfig(bool reload); + void LoadContainers(); + + // Add in store + void AddAZTHPlayer(Player* player); + void AddAZTHObject(Object* object); + void AddAZTHGroup(Group* group); + void AddAZTHInstanceSave(InstanceSave* instanceSave); + void AddAZTHLoot(Loot* loot); + + // Get from store + AzthPlayer* GetAZTHPlayer(Player* player); + AzthObject* GetAZTHObject(Object* object); + AzthGroupMgr* GetAZTHGroup(Group* group); + AzthInstanceMgr* GetAZTHInstanceSave(InstanceSave* instanceSave); + bool GetAZTHLoot(Loot* loot); + + // Delete in store + void DeleteAZTHPlayer(Player* player); + void DeleteAZTHObject(Object* object); + void DeleteAZTHGroup(Group* group); + void DeleteAZTHInstanceSave(InstanceSave* instanceSave); + void DeleteAZTHLoot(Loot* loot); + + // PVP Rank Patch + uint32 GetKillsPerRank(uint32 Rank); + float GetRatePvPRankExtraHonor(); + + //[AZTH] in-game mailer + void SendGameMail(Player* receiver, std::string subject, std::string body, uint32 money, uint32 itemId = 0, uint32 itemCount = 0); + + // ExternalMail + bool IsExternalMailEnable(); + uint32 GetExternalMailInterval(); + void SendExternalMails(); + + // Custom XP + uint32 GetCustomXPSecurity(); + float GetCustomXPMax(); + bool IsCustomXPShowOnLogin(); + +private: + typedef std::unordered_map AZTHPlayersContainer; + typedef std::unordered_map AZTHObjectsContainer; + typedef std::unordered_map AZTHGroupsContainer; + typedef std::unordered_map AZTHInstanceSaveContainer; + typedef std::unordered_map AZTHLootContainer; + + AZTHPlayersContainer _playersStore; + AZTHObjectsContainer _objectsStore; + AZTHGroupsContainer _groupStore; + AZTHInstanceSaveContainer _instanceSaveStore; + AZTHLootContainer _lootStore; + + // PVP Rank Patch + uint32 _PvP_Ranks[HKRANKMAX]; + float _RatePvPRankExtraHonor = 0.0f; + + // ExternalMail + bool _IsExternalMailEnable = false; + uint32 _ExternalMailInterval = MINUTE * IN_MILLISECONDS; + + // Custom XP + uint32 _CustomXPSecurity = 0; + float _CustomXPMax = 0.0f; + bool _CustomXPShowOnLogin = false; +}; + +#define sAZTH AZTH::instance() + +#endif // _AZTH_MODULE_H_ diff --git a/src/ASPlatform/AZTH_SC.cpp b/src/ASPlatform/AZTH_SC.cpp new file mode 100644 index 0000000..d884ca9 --- /dev/null +++ b/src/ASPlatform/AZTH_SC.cpp @@ -0,0 +1,1807 @@ +/* + * Copyright (С) since 2019 Andrei Guluaev (Winfidonarleyan/Kargatum) https://github.com/Winfidonarleyan + */ + +#include "AZTH.h" +#include "ArenaSeason.h" +#include "AzthFirstKills.h" +#include "AzthUtils.h" +#include "azth_custom_hearthstone_mode.h" +#include "AzthObject.h" +#include "AzthLevelStat.h" +#include "AzthSmartStone.h" +#include "AzthPlayer.h" +#include "GuildHouse.h" +#include "Teleport.h" +#include "Solo3v3.h" +#include "SpellAuraEffects.h" +#include "ScriptMgr.h" +#include "ArenaTeamMgr.h" +#include "BattlegroundQueue.h" +#include "Pet.h" +#include "Group.h" +#include "Player.h" +#include "Battleground.h" +#include "WorldSession.h" +#include "PetitionMgr.h" +#include "MapMgr.h" + +#if AC_COMPILER == AC_COMPILER_GNU +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" +#endif + +using namespace Acore::ChatCommands; + +enum AZTHLanguage +{ + LANG_AZTH_NO_INFO_ARENA_JOINED = 7000, //[AZTH] + LANG_AZTH_NO_INFO_ARENA_EXITED = 7001, //[AZTH] +}; + +class AuraEffect; + +// SC +class Arena_SC : public ArenaScript +{ +public: + Arena_SC() : ArenaScript("Arena_SC") { } + + bool CanAddMember(ArenaTeam* team, ObjectGuid /* playerGuid */) override + { + if (!team) + return false; + + if (!team->GetMembersSize()) + return true; + + if (team->GetType() == ARENA_TEAM_1v1 || team->GetType() == ARENA_TEAM_SOLO_3v3) + return false; + + return true; + } + + void OnGetPoints(ArenaTeam* team, uint32 /* memberRating */, float& points) override + { + if (!team) + return; + + if (team->GetType() == ARENA_TEAM_1v1) + points *= sConfigMgr->GetOption("Azth.Rate.Arena1v1", 0.40f); + + if (team->GetType() == ARENA_TEAM_SOLO_3v3) + points *= sConfigMgr->GetOption("Solo.3v3.ArenaPointsMulti", 0.88f); + } + + bool CanSaveToDB(ArenaTeam* team) override + { + if (team->GetId() >= MAX_ARENA_TEAM_ID) + { + sSolo->SaveSoloDB(team); + return false; + } + + return true; + } +}; + +class Battleground_SC : public BGScript +{ +public: + Battleground_SC() : BGScript("Battleground_SC") { } + + // 1v1 Arena - Start arena after 15s, when all players are in arena + void OnBattlegroundUpdate(Battleground* bg, uint32 /*diff*/) override + { + if (bg->GetStatus() != STATUS_WAIT_JOIN) + return; + + if (bg->GetArenaType() != ARENA_TEAM_1v1) + return; + + if (bg->GetStartDelayTime() > BG_START_DELAY_15S && (bg->GetPlayersCountByTeam(TEAM_ALLIANCE) + bg->GetPlayersCountByTeam(TEAM_HORDE)) == 2) + bg->SetStartDelayTime(BG_START_DELAY_15S); + } + + bool OnBeforeSendExitMessageArenaQueue(BattlegroundQueue* /*queue*/, GroupQueueInfo* ginfo) override + { + if (!ginfo->IsRated || !ginfo->ArenaType || ginfo->Players.empty()) + return true; + + if (!sArenaTeamMgr->GetArenaTeamById(ginfo->ArenaTeamId)) + return false; + + sWorld->SendWorldText(LANG_AZTH_NO_INFO_ARENA_EXITED, ginfo->ArenaType, ginfo->ArenaType); + return false; + } + + bool OnBeforeSendJoinMessageArenaQueue(BattlegroundQueue* /*queue*/, Player* /*leader*/, GroupQueueInfo* ginfo, PvPDifficultyEntry const* /*bracketEntry*/, bool /*isRated*/) override + { + if (!ginfo->IsRated || !ginfo->ArenaType || ginfo->Players.empty()) + return true; + + if (!sArenaTeamMgr->GetArenaTeamById(ginfo->ArenaTeamId)) + return false; + + sWorld->SendWorldText(LANG_AZTH_NO_INFO_ARENA_JOINED, ginfo->ArenaType, ginfo->ArenaType); //[AZTH] + return false; + } +}; + +class Command_SC : public CommandSC +{ +public: + Command_SC() : CommandSC("Command_SC") { } + + void OnHandleDevCommand(Player* player, std::string& argstr) override + { + if (!player) + return; + + if (argstr == "on") + { + player->SetPhaseMask(uint32(PHASEMASK_ANYWHERE), false); + player->SetGameMaster(true); + } + else + { + player->SetPhaseMask(uint32(PHASEMASK_NORMAL), false); + player->SetGameMaster(false); + } + } +}; + +class Player_SC : public PlayerScript +{ +public: + Player_SC() : PlayerScript("Player_SC") { } + + void OnAchiComplete(Player* player, AchievementEntry const* achievement) override + { + if (!player) + return; + + sAZTH->GetAZTHPlayer(player)->CreateWowarmoryFeed(1, achievement->ID, 0, 0); + } + + void OnRewardKillRewarder(Player* player, bool isDungeon, float& rate) override + { + if (!player) + return; + + // [AZTH] workaround for high exp rate in dungeons + if (isDungeon && sAZTH->GetAZTHPlayer(player)->GetPlayerQuestRate() > 0) + rate *= sAZTH->GetAZTHPlayer(player)->GetPlayerQuestRate(); + } + + bool CanGiveMailRewardAtGiveLevel(Player* player, uint8 /*level*/) override + { + if (!player) + return false; + + if (sAZTH->GetAZTHPlayer(player)->isTimeWalking()) + return false; + + return true; + } + + void OnDeleteFromDB(CharacterDatabaseTransaction trans, uint32 guid) override + { + if (!guid) + return; + + trans->PAppend("DELETE FROM armory_character_stats WHERE guid = '%u'", guid); + trans->PAppend("DELETE FROM character_feed_log WHERE guid = '%u'", guid); + } + + bool CanRepopAtGraveyard(Player* player) override + { + if (!player) + return false; + + if (sAZTH->GetAZTHPlayer(player)->isInBlackMarket()) + { + if (!player->IsAlive()) + { + player->ResurrectPlayer(0.5f); + player->SpawnCorpseBones(); + } + + player->TeleportTo(AzthSharedDef::blackMarket); + return false; + } + + return true; + } + + void OnGetMaxSkillValue(Player* player, uint32 /*skill*/, int32& result, bool /*IsPure*/) override + { + if (!player) + return; + + //[AZTH] Hack for timewalking + if (sAZTH->GetAZTHPlayer(player)->isTimeWalking()) + result = sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL) * 5; + } + + bool CanAreaExploreAndOutdoor(Player* player) override + { + if (!player) + return false; + + if (!sAZTH->GetAZTHPlayer(player)->canExplore()) + return false; + + return true; + } + + void OnVictimRewardBefore(Player* player, Player* victim, uint32& killer_title, uint32& victim_title) override + { + if (!player || !victim) + return; + + // Get Killer titles, CharTitlesEntry::bit_index + // PLAYER__FIELD_KNOWN_TITLES describe which titles player can use, + // so we must find biggest pvp title , even for killer to find extra honor value + uint32 vtitle = victim->GetUInt32Value(PLAYER__FIELD_KNOWN_TITLES); + uint32 ktitle = player->GetUInt32Value(PLAYER__FIELD_KNOWN_TITLES); + + if (PLAYER_TITLE_MASK_ALL_PVP & ktitle) + for (int i = ((player->GetTeamId(true) == TEAM_ALLIANCE) ? 1 : HKRANKMAX); i != ((player->GetTeamId(true) == TEAM_ALLIANCE) ? HKRANKMAX : (2 * HKRANKMAX - 1)); i++) + if (ktitle & (1 << i)) + killer_title = i; + + if (PLAYER_TITLE_MASK_ALL_PVP & vtitle) + for (int i = ((victim->GetTeamId(true) == TEAM_ALLIANCE) ? 1 : HKRANKMAX); i != ((victim->GetTeamId(true) == TEAM_ALLIANCE) ? HKRANKMAX : (2 * HKRANKMAX - 1)); i++) + if (vtitle & (1 << i)) + victim_title = i; + } + + void OnVictimRewardAfter(Player* player, Player* /*victim*/, uint32& killer_title, uint32& victim_rank, float& honor_f) override + { + if (!player) + return; + + uint32 rank_diff = 0; + + // now find rank difference + if (killer_title == 0 && victim_rank > 4) + rank_diff = victim_rank - 4; + else if (killer_title < HKRANKMAX) + rank_diff = (victim_rank > (killer_title + 4)) ? (victim_rank - (killer_title + 4)) : 0; + else if (killer_title < (2 * HKRANKMAX - 1)) + rank_diff = (victim_rank > (killer_title - (HKRANKMAX - 1) + 4)) ? (victim_rank - (killer_title - (HKRANKMAX - 1) + 4)) : 0; + + honor_f *= 1 + sAZTH->GetRatePvPRankExtraHonor() * (((float)rank_diff) / 10.0f); + + uint32 new_title = 0; + uint32 honor_kills = player->GetUInt32Value(PLAYER_FIELD_LIFETIME_HONORABLE_KILLS); + uint32 old_title = player->GetUInt32Value(PLAYER_CHOSEN_TITLE); + + player->RemoveFlag64(PLAYER__FIELD_KNOWN_TITLES, PLAYER_TITLE_MASK_ALL_PVP); + + bool max_rank = ((honor_kills >= sAZTH->GetKillsPerRank(HKRANKMAX - 1)) ? true : false); + + for (int i = HKRANK01; i != HKRANKMAX; ++i) + { + if (honor_kills < sAZTH->GetKillsPerRank(i) || max_rank) + { + new_title = (max_rank ? HKRANKMAX - 1 : i - 1); + + if (new_title) + new_title += (player->GetTeamId(true) == TEAM_ALLIANCE ? 0 : HKRANKMAX - 1); + + break; + } + } + + player->SetFlag64(PLAYER__FIELD_KNOWN_TITLES, uint64(1) << new_title); + + if (old_title > 0 && old_title < (2 * HKRANKMAX - 1) && new_title > old_title) + player->SetUInt32Value(PLAYER_CHOSEN_TITLE, new_title); + } + + void OnCustomScalingStatValueBefore(Player* player, ItemTemplate const* proto, uint8 /*slot*/, bool /*apply*/, uint32& CustomScalingStatValue) override + { + if (!player || !proto) + return; + + if (!sAZTH->GetAZTHPlayer(player)->isTimeWalking(true)) + return; + + CustomScalingStatValue = sAzthUtils->calculateItemScalingValue(proto, player); + } + + void OnCustomScalingStatValue(Player* player, ItemTemplate const* proto, uint32& statType, int32& val, uint8 itemProtoStatNumber, uint32 ScalingStatValue, ScalingStatValuesEntry const* ssv) override + { + if (!player || !proto) + return; + + statType = proto->ItemStat[itemProtoStatNumber].ItemStatType; + uint32 posVal = proto->ItemStat[itemProtoStatNumber].ItemStatValue < 0 ? -(proto->ItemStat[itemProtoStatNumber].ItemStatValue) : proto->ItemStat[itemProtoStatNumber].ItemStatValue; + + // hack for items that don't have a required level + uint32 req = sAzthUtils->getCalcReqLevel(proto); + + ScalingStatValuesEntry const* maxSSV = sScalingStatValuesStore.LookupEntry(req); + if (maxSSV) + { + float mulMax = sAzthUtils->getCustomMultiplier(proto, (float)maxSSV->getssdMultiplier(ScalingStatValue)); + uint32 modifier = ((float)posVal / mulMax) * 10000; + + float mul = sAzthUtils->getCustomMultiplier(proto, (float)ssv->getssdMultiplier(ScalingStatValue)); + val = (mul * modifier) / 10000; + + if (proto->ItemStat[itemProtoStatNumber].ItemStatValue < 0) + val *= -1; + + //[AZTH] avoid higher values than stats. This means that there's an + // uncorrect scaling calculation + if (proto->ScalingStatValue == 0) + { + // constant reduction since even with scaling, stats are too large + if ((player->getLevel() + 20) >= (uint8)req) // from 10 to 20 level diff + val = val / 2; + else // from 21 to max level diff + val = val / 3; + + if (abs(val) > abs(proto->ItemStat[itemProtoStatNumber].ItemStatValue)) + val = proto->ItemStat[itemProtoStatNumber].ItemStatValue; + } + } + else + val = proto->ItemStat[itemProtoStatNumber].ItemStatValue; + } + + bool CanArmorDamageModifier(Player* player) override + { + if (!player) + return false; + + if (sAZTH->GetAZTHPlayer(player)->isTimeWalking(true)) + return false; + + return true; + } + + void OnGetFeralApBonus(Player* player, int32& feral_bonus, int32 dpsMod, ItemTemplate const* proto, ScalingStatValuesEntry const* ssv) override + { + if (!player) + return; + + feral_bonus = sAzthUtils->normalizeFeralAp(feral_bonus, dpsMod, proto, ssv); + } + + bool CanApplyWeaponDependentAuraDamageMod(Player* player, Item* /*item*/, WeaponAttackType /*attackType*/, AuraEffect const* aura, bool /*apply*/) override + { + if (!player) + return false; + + // but we need other effect of MOD_DAMAGE_PERCENT with SPELL_SCHOOL_MASK_NORMAL (physic spells) + if (aura->GetSpellInfo()->Id == TIMEWALKING_AURA_MOD_DAMAGESPELL) + return false; + + return true; + } + + bool CanApplyEquipSpell(Player* player, SpellInfo const* /* spellInfo */, Item* item, bool /*apply*/, bool /*form_change*/) override + { + if (!player || !item) + return false; + + // [AZTH] Timewalking + if (!sAZTH->GetAZTHPlayer(player)->itemCheckReqLevel(item->GetTemplate())) + return false; + + return true; + } + + bool CanApplyEquipSpellsItemSet(Player* player, ItemSetEffect* eff) override + { + if (!player || !eff) + return false; + + // [AZTH] Timewalking + bool found = false; + for (uint8 i = 0; i < INVENTORY_SLOT_BAG_END; ++i) + { + Item* item = player->GetItemByPos(i); + if (!item) + continue; + + ItemTemplate const* proto = item->GetTemplate(); + if (proto->ItemSet == eff->setid) + { + if (proto && !sAZTH->GetAZTHPlayer(player)->itemCheckReqLevel(proto)) + found = true; + + break; + } + } + + if (found) + return false; + + return true; + } + + bool CanCastItemCombatSpell(Player* player, Unit* /*target*/, WeaponAttackType /*attType*/, uint32 /*procVictim*/, uint32 /*procEx*/, Item* /*item*/, ItemTemplate const* proto) override + { + if (!player) + return false; + + // [AZTH] Timewalking + if (!sAZTH->GetAZTHPlayer(player)->itemCheckReqLevel(proto)) + return false; + + return true; + } + + bool CanCastItemUseSpell(Player* player, Item* item, SpellCastTargets const& /* targets */, uint8 /* cast_count */, uint32 /* glyphIndex */) override + { + if (!player) + return false; + + // [AZTH] Timewalking + if (!sAZTH->GetAZTHPlayer(player)->canUseItem(item, true)) + return false; + + return true; + } + + void OnApplyAmmoBonuses(Player* player, ItemTemplate const* proto, float& currentAmmoDPS) override + { + if (!player || !proto) + return; + + //[AZTH] Timewalking + if (!sAZTH->GetAZTHPlayer(player)->itemCheckReqLevel(proto)) + { + uint32 reqLevel = sAzthUtils->getCalcReqLevel(proto); + + if (player->getLevel() < reqLevel) + { + uint32 red = ceil(player->getLevel() * 100 / reqLevel / 2); + uint32 malus = ceil((reqLevel - player->getLevel()) / 10); + float pRed = float(red > malus ? red - malus : 1) / 100.0f; // convert to fraction + currentAmmoDPS = ceil(currentAmmoDPS * pRed); + } + } + } + + bool CanEquipItem(Player* player, uint8 /*slot*/, uint16& /*dest*/, Item* pItem, bool /* swap */, bool /* not_loading */) override + { + if (!player || !pItem) + return false; + + ItemTemplate const* proto = pItem->GetTemplate(); + if (!proto) + return false; + + //[AZTH] if you have the pvp set or not valid item for this season and you + // are equipping something, it won't be equipped + if (!player->GetSession()->PlayerLoading() && proto->InventoryType && !sAZTH->GetAZTHPlayer(player)->canEquipItem(proto)) + return false; + + return true; + } + + bool CanUnequipItem(Player* player, uint16 /* pos */, bool /* swap */) override + { + if (!player) + return false; + + // if (player->IsEquipmentPos(pos) && sAZTH->GetAZTHPlayer(player)->hasGear()) + // return false; + + return true; + } + + bool CanUseItem(Player* player, ItemTemplate const* proto, InventoryResult& result) override + { + if (!player || !proto) + { + result = EQUIP_ERR_CANT_DO_RIGHT_NOW; + return false; + } + + //if player is in bg or arena and tournament is enabled check for item level + //if it is > of the maximum level doesnt allow the equipment + if (proto->InventoryType > 0 && !sAZTH->GetAZTHPlayer(player)->canEquipItem(proto)) + { + result = EQUIP_ERR_CANT_DO_RIGHT_NOW; + return false; + } + + //[AZTH] if you are a timewalker you can equip all items + // because you are an 80 with "fake low level" + if (!sAZTH->GetAZTHPlayer(player)->isTimeWalking() && player->getLevel() < proto->RequiredLevel) + { + result = EQUIP_ERR_CANT_EQUIP_LEVEL_I; + return false; + } + + return true; + } + + bool CanSaveEquipNewItem(Player* player, Item* /*item*/, uint16 /*pos*/, bool /*update*/) override + { + if (!player) + return false; + + // if (sAZTH->GetAZTHPlayer(player)->hasGear()) + // return false; + + return true; + } + + bool CanApplyEnchantment(Player* player, Item* item, EnchantmentSlot slot, bool /*apply*/, bool /*apply_dur*/, bool /*ignore_condition*/) override + { + if (!player || !item) + return false; + + //[AZTH] Timewalking + if (!sAZTH->GetAZTHPlayer(player)->itemCheckReqLevel(item->GetTemplate())) + return false; + + uint32 enchant_id = item->GetEnchantmentId(slot); + if (!enchant_id) + return false; + + SpellItemEnchantmentEntry const* pEnchant = sSpellItemEnchantmentStore.LookupEntry(enchant_id); + if (!pEnchant) + return false; + + //[AZTH] Timewalking + if (sAzthUtils->disableEnchant(player, pEnchant)) + return false; + + return true; + } + + void OnGetQuestRate(Player* player, float& result) override + { + if (!player) + return; + + result = sAZTH->GetAZTHPlayer(player)->GetPlayerQuestRate(); + } + + bool PassedQuestKilledMonsterCredit(Player* player, Quest const* qinfo, uint32 entry, uint32 real_entry, ObjectGuid guid) override + { + if (!player || !qinfo) + return false; + + //[AZTH] it it's an Hearthstone quest and doesn't satisfy requirements, skip + // otherwise continue as normal + if (!sAZTH->GetAZTHPlayer(player)->passHsChecks(qinfo, entry, real_entry, guid)) + return false; + + return true; + } + + bool CheckItemInSlotAtLoadInventory(Player* player, Item* item, uint8 slot, uint8& err, uint16& dest) override + { + if (!player) + return false; + + //[AZTH] pvp set + // if (!sAZTH->GetAZTHPlayer(player)->hasGear()) + // return true; + + ItemTemplate const* pProto = item->GetTemplate(); + if (pProto) + { + uint8 eslot = player->FindEquipSlot(pProto, slot, false); + if (eslot == NULL_SLOT) + err = EQUIP_ERR_ITEM_CANT_BE_EQUIPPED; + + dest = ((INVENTORY_SLOT_BAG_0 << 8) | eslot); + + return false; + } + else + { + err = EQUIP_ERR_ITEM_NOT_FOUND; + return false; + } + + return true; + } + + bool NotAvoidSatisfy(Player* player, DungeonProgressionRequirements const* ar, uint32 /* target_map */, bool /* report */) override + { + if (!player) + return false; + + //[AZTH] Timewalking, avoid attunement for TBC & Classic + if (ar->levelMin <= 70 && sAZTH->GetAZTHPlayer(player)->isTimeWalking()) + return false; + + return true; + } + + void OnSave(Player* player) override + { + if (!player) + return; + + // Wowarmory feeds + CharacterDatabaseTransaction wowArmoryTrans = CharacterDatabase.BeginTransaction(); + + AzthPlayer* azthPlayer = sAZTH->GetAZTHPlayer(player); + if (!azthPlayer) + return; + + if (!azthPlayer->m_wowarmory_feeds.empty()) + { + std::ostringstream sWowarmory; + + sWowarmory << "INSERT IGNORE INTO character_feed_log (guid,type,data,date,counter,difficulty,item_guid,item_quality) VALUES "; + + for (WowarmoryFeeds::iterator iter = azthPlayer->m_wowarmory_feeds.begin(); iter < azthPlayer->m_wowarmory_feeds.end(); ++iter) + { + // guid type data date counter difficulty item_guid item_quality + sWowarmory << "(" << (*iter).guid << ", " << (*iter).type << ", " << (*iter).data << ", " << uint64((*iter).date) << ", " << (*iter).counter << ", " << uint32((*iter).difficulty) << ", " << (*iter).item_guid << ", " << (*iter).item_quality << ")"; + if (iter != azthPlayer->m_wowarmory_feeds.end() - 1) + sWowarmory << ","; + } + + wowArmoryTrans->Append(sWowarmory.str().c_str()); + + // Clear old saved feeds from storage - they are not required for server core. + azthPlayer->InitWowarmoryFeeds(); + } + + wowArmoryTrans->PAppend("DELETE FROM armory_character_stats WHERE guid = %u", player->GetGUID().GetCounter()); + + // Character stats + std::ostringstream ps; + time_t t = time(nullptr); + ps << "INSERT INTO armory_character_stats (guid, data, save_date) VALUES (" << player->GetGUID().GetCounter() << ", '"; + + for (uint16 i = 0; i < player->GetValuesCount(); ++i) + ps << player->GetUInt32Value(i) << " "; + + ps << "', " << uint64(t) << ");"; + + wowArmoryTrans->Append(ps.str().c_str()); + + CharacterDatabase.CommitTransaction(wowArmoryTrans); + } + + bool NotVisibleGloballyFor(Player* player, Player const* /* u */) override + { + if (!player) + return true; + + // if (player->GetSession()->GetSecurity() == SEC_ENTERTAINER && u->GetSession()->GetSecurity() == SEC_T1_SUPPORTER) + // return false; + + return true; + } + + // void OnGetArenaPersonalRating(Player* player, uint8 /* slot */, uint32& /* result */) override + // { + // if (!player) + // return; + + // if (slot == ArenaTeam::GetSlotByType(ARENA_TEAM_1v1)) + // result = sAZTH->GetAZTHPlayer(player)->getArena1v1Info(ARENA_TEAM_PERSONAL_RATING); + + // if (slot == ArenaTeam::GetSlotByType(ARENA_TEAM_SOLO_3v3)) + // result = sAZTH->GetAZTHPlayer(player)->getArena3v3Info(ARENA_TEAM_PERSONAL_RATING); + // } + + void OnGetArenaTeamId(Player* player, uint8 slot, uint32& result) override + { + if (!player) + return; + + // [AZTH] use static method of ArenaTeam to retrieve the slot + if (slot == ArenaTeam::GetSlotByType(ARENA_TEAM_1v1)) + result = player->GetArenaTeamIdFromDB(player->GetGUID(), ARENA_TEAM_1v1); + + if (slot == ArenaTeam::GetSlotByType(ARENA_TEAM_SOLO_3v3)) + result = player->GetArenaTeamIdFromDB(player->GetGUID(), ARENA_TEAM_SOLO_3v3); + } + + void OnIsFFAPvP(Player* player, bool& result) override + { + if (!player) + return; + + result = sAZTH->GetAZTHPlayer(player)->isFFAPvPFlagOn(result); + } + + void OnIsPvP(Player* player, bool& result) override + { + if (!player) + return; + + result = sAZTH->GetAZTHPlayer(player)->isPvPFlagOn(result); + } + + void OnGetMaxSkillValueForLevel(Player* player, uint16& result) override + { + if (!player) + return; + + if (sAZTH->GetAZTHPlayer(player)->isTimeWalking()) + result = sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL) * 5; + } + + bool NotSetArenaTeamInfoField(Player* player, uint8 slot, ArenaTeamInfoType type, uint32 value) override + { + if (!player) + return false; + + // [AZTH] avoid higher slots to be set in datafield + // if (slot == ArenaTeam::GetSlotByType(ARENA_TEAM_1v1)) + // { + // sAZTH->GetAZTHPlayer(player)->setArena1v1Info(type, value); + // return false; + // } + + if (slot == ArenaTeam::GetSlotByType(ARENA_TEAM_SOLO_3v3)) + { + sAZTH->GetAZTHPlayer(player)->setArena3v3Info(type, value); + return false; + } + + return true; + } + + void OnLoadFromDB(Player* player) override + { + if (!player) + return; + + // Cleanup old Wowarmory feeds + sAZTH->GetAZTHPlayer(player)->InitWowarmoryFeeds(); + } + + bool CanJoinInBattlegroundQueue(Player* player, ObjectGuid /*guid*/, BattlegroundTypeId /*BGTypeID*/, uint8 joinAsGroup, GroupJoinBattlegroundResult& err) override + { + if (!player) + return false; + + if (!joinAsGroup && !sAZTH->GetAZTHPlayer(player)->canJoinQueue(AZTH_QUEUE_BG)) + { + err = ERR_BATTLEGROUND_NONE; + return false; + } + + return true; + } + + bool CanBattleFieldPort(Player* player, uint8 arenaType, BattlegroundTypeId BGTypeID, uint8 action) override + { + if (!player) + return false; + + BattlegroundQueueTypeId bgQueueTypeId = BattlegroundMgr::BGQueueTypeId(BGTypeID, arenaType); + if (bgQueueTypeId == BATTLEGROUND_QUEUE_NONE) + return false; + + if ((bgQueueTypeId == (BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_1v1 || bgQueueTypeId == (BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_3v3_SOLO) && (action == 1 /*accept join*/ && !sSolo->Arena1v1CheckTalents(player))) + return false; + + return true; + } + + bool CanJoinInArenaQueue(Player* player, ObjectGuid /* BattlemasterGuid */, uint8 /* arenaslot */, BattlegroundTypeId /* BGTypeID */, uint8 joinAsGroup, uint8 /* IsRated */, GroupJoinBattlegroundResult& err) override + { + if (!player) + return false; + + if (!joinAsGroup && !sAZTH->GetAZTHPlayer(player)->canJoinQueue(AZTH_QUEUE_ARENA)) + { + err = ERR_BATTLEGROUND_NONE; + return false; + } + + return true; + } + + bool CanGroupInvite(Player* player, std::string& membername) override + { + if (!sAZTH->GetAZTHPlayer(player)->canGroup(player)) + { + player->GetSession()->SendPartyResult(PARTY_OP_INVITE, membername, ERR_BAD_PLAYER_NAME_S); + return false; + } + + return true; + } + + bool CanGroupAccept(Player* player, Group* /*group*/) override + { + if (!sAZTH->GetAZTHPlayer(player)->canGroup(player)) + { + player->GetSession()->SendPartyResult(PARTY_OP_INVITE, "", ERR_BAD_PLAYER_NAME_S); + return false; + } + + return true; + } + + bool CanSellItem(Player* player, Item* item, Creature* creature) override + { + if (item->HasFlag(ITEM_FIELD_FLAGS, ITEM_FIELD_FLAG_UNK1)) + { + player->SendSellError(SELL_ERR_CANT_SELL_ITEM, creature, item->GetGUID(), 0); + return false; + } + + return true; + } + + bool CanSendMail(Player* player, ObjectGuid /*receiverGuid*/, ObjectGuid /*mailbox*/, std::string& /*subject*/, std::string& /*body*/, uint32 /*money*/, uint32 /*COD*/, Item* /*item*/) override + { + if (sAZTH->GetAZTHPlayer(player)->isPvP()) + { + player->SendMailResult(0, MAIL_SEND, MAIL_ERR_DISABLED_FOR_TRIAL_ACC); + return false; + } + + return true; + } + + void PetitionBuy(Player* player, Creature* /*creature*/, uint32& charterid, uint32& cost, uint32& /* type */) override + { + if (!player) + return; + + bool IsPvP = sAZTH->GetAZTHPlayer(player)->isPvP(); + + switch (charterid) // arenaSlot+1 as received from client (1 from 3 case) + { + case ARENA_TEAM_CHARTER_2v2: + cost = IsPvP ? 0 : sWorld->getIntConfig(CONFIG_CHARTER_COST_ARENA_2v2); + break; + case ARENA_TEAM_CHARTER_3v3: + cost = IsPvP ? 0 : sWorld->getIntConfig(CONFIG_CHARTER_COST_ARENA_3v3); + break; + case ARENA_TEAM_CHARTER_5v5: + cost = IsPvP ? 0 : sWorld->getIntConfig(CONFIG_CHARTER_COST_ARENA_5v5); + break; + default: + return; + } + } + + void PetitionShowList(Player* player, Creature* /* creature */, uint32& CharterEntry, uint32& /* CharterDispayID */, uint32& CharterCost) override + { + if (!player) + return; + + bool IsPvP = sAZTH->GetAZTHPlayer(player)->isPvP(); + + switch (CharterEntry) + { + case ARENA_TEAM_CHARTER_2v2: + CharterCost = IsPvP ? 0 : sWorld->getIntConfig(CONFIG_CHARTER_COST_ARENA_2v2); + break; + case ARENA_TEAM_CHARTER_3v3: + CharterCost = IsPvP ? 0 : sWorld->getIntConfig(CONFIG_CHARTER_COST_ARENA_3v3); + break; + case ARENA_TEAM_CHARTER_5v5: + CharterCost = IsPvP ? 0 : sWorld->getIntConfig(CONFIG_CHARTER_COST_ARENA_5v5); + break; + default: + return; + } + } + + bool CanJoinLfg(Player* player, uint8 /*roles*/, lfg::LfgDungeonSet& /*dungeons*/, const std::string& /*comment*/) override + { + if (!player) + return false; + + if (!sAZTH->GetAZTHPlayer(player)->canJoinQueue(AZTH_QUEUE_LFG)) + return false; + + return true; + } + + bool CanInitTrade(Player* player, Player* target) override + { + if (sAZTH->GetAZTHPlayer(player)->isPvP() != sAZTH->GetAZTHPlayer(target)->isPvP()) + { + player->GetSession()->SendTradeStatus(TRADE_STATUS_NOT_ELIGIBLE); + return false; + } + + return true; + } + + bool CanEnterMap(Player* player, MapEntry const* entry, InstanceTemplate const* instance, MapDifficulty const* /*mapDiff*/, bool loginCheck) override + { + if (!sAZTH->GetAZTHPlayer(player)->canEnterMap(entry, instance, loginCheck)) + return false; + + return true; + } + + void OnSetServerSideVisibility(Player* player, ServerSideVisibilityType& type, AccountTypes& sec) override + { + if (!player || type != SERVERSIDE_VISIBILITY_GM || sec == SEC_PLAYER) + return; + + //[AZTH] xeela + // if (sec < SEC_ENTERTAINER) + // sec = SEC_ENTERTAINER; + } + + void OnSetServerSideVisibilityDetect(Player* player, ServerSideVisibilityType& type, AccountTypes& sec) override + { + if (!player || type != SERVERSIDE_VISIBILITY_GM || sec == SEC_PLAYER) + return; + + //[AZTH] xeela + // if (sec < SEC_ENTERTAINER) + // sec = SEC_ENTERTAINER; + } +}; + +class Achievement_SC : public AchievementScript +{ +public: + Achievement_SC() : AchievementScript("Achievement_SC") { } + + void SetRealmCompleted(AchievementEntry const* achievement) override + { + sAzthFirstKills->setRealmCompleted(achievement); + } + + bool IsCompletedCriteria(AchievementMgr* /*mgr*/, AchievementCriteriaEntry const* /*achievementCriteria*/, AchievementEntry const* achievement, CriteriaProgress const* progress) override + { + //[AZTH] if criteria has been achieved before this year, then it's not valid for our first kill system + if (achievement->flags & (ACHIEVEMENT_FLAG_REALM_FIRST_REACH | ACHIEVEMENT_FLAG_REALM_FIRST_KILL) && progress->date < sAzthUtils->getStartsOfYear()) + return false; + + return true; + } + + bool IsRealmCompleted(AchievementGlobalMgr const* /*globalmgr*/, AchievementEntry const* achievement, std::chrono::system_clock::time_point completionTime) override + { + if (!achievement) + return false; + + using namespace std::chrono; + + //[AZTH] do not continue, do our check instead + if (achievement->flags & ACHIEVEMENT_FLAG_REALM_FIRST_KILL) + return sAzthFirstKills->isRealmCompleted(achievement, ((completionTime == system_clock::time_point::max()) || (system_clock::now() - completionTime) > minutes(1))); + + return true; + } + + void OnBeforeCheckCriteria(AchievementMgr* mgr, AchievementCriteriaEntryList const* achievementCriteriaList) override + { + std::vector hsCheckList; //[AZTH] + + for (auto itr = achievementCriteriaList->begin(); itr != achievementCriteriaList->end(); ++itr) + sHearthstoneMode->sendQuestCredit(mgr->GetPlayer(), *itr, hsCheckList); + } + + bool CanCheckCriteria(AchievementMgr* mgr, AchievementCriteriaEntry const* achievementCriteria) override + { + if (!sAZTH->GetAZTHPlayer(mgr->GetPlayer())->canCompleteCriteria(achievementCriteria)) + return false; + + return true; + } +}; + +class Misc_SC : public MiscScript +{ +public: + Misc_SC() : MiscScript("Misc_SC") { } + + void OnAfterLootTemplateProcess(Loot* loot, LootTemplate const* tab, LootStore const& store, Player* lootOwner, bool /* personal */, bool /* noEmptyError */, uint16 lootMode) override + { + if (!sConfigMgr->GetOption("Azth.Multiplies.Drop.Enable", false)) + return; + + //Dangerous since it can drops multiple quest items + //[AZTH] give another loot process if done with correct level + if (sAzthUtils->isEligibleForBonusByArea(lootOwner) && (&store == &LootTemplates_Gameobject || &store == &LootTemplates_Creature)) + { + sAZTH->AddAZTHLoot(loot); + tab->Process(*loot, store, lootMode, lootOwner); + } + } + + // For WoW Armory + void OnItemCreate(Item* item, ItemTemplate const* itemProto, Player const* /* owner */) override + { + if (itemProto->Quality > 2 && itemProto->Flags != 2048 && (itemProto->Class == ITEM_CLASS_WEAPON || itemProto->Class == ITEM_CLASS_ARMOR)) + { + if (!item->GetOwner()) + return; + + sAZTH->GetAZTHPlayer(item->GetOwner())->CreateWowarmoryFeed(2, itemProto->ItemId, item->GetGUID().GetCounter(), itemProto->Quality); + } + } + + //[AZTH] Timewalking (maybe) + bool CanItemApplyEquipSpell(Player* player, Item* item) override + { + if (!player || item) + return false; + + ItemTemplate const* proto = item->GetTemplate(); + if (!proto) + return false; + + if (!sAZTH->GetAZTHPlayer(player)->itemCheckReqLevel(proto)) + return false; + + return true; + } + + bool CanSendAuctionHello(WorldSession const* session, ObjectGuid /* guid */, Creature* /* creature */) override + { + if (!session) + return false; + + Player* player = session->GetPlayer(); + if (!player) + return false; + + if (sAZTH->GetAZTHPlayer(session->GetPlayer())->isPvP()) + { + player->GetSession()->SendNotification("This is a Full PvP Account! You cannot use the Auction House."); + return false; + } + + return true; + } + + void ValidateSpellAtCastSpell(Player* player, uint32& /* oldSpellId */, uint32& spellId, uint8& /*castCount*/, uint8& /*castFlags*/) override + { + if (!player) + return; + + spellId = sAzthUtils->selectSpellForTW(player, spellId); + } + + void ValidateSpellAtCastSpellResult(Player* player, Unit* /* mover */, Spell* spell, uint32 oldSpellId, uint32 spellId) override + { + if (!player) + return; + + //[AZTH] Timewalking: we must send a spell cast result on prev spell + // to avoid bad visual effect in spell bar + if (oldSpellId != spellId) + spell->SetSpellInfo(sSpellMgr->GetSpellInfo(oldSpellId)); + } + + void OnInstanceSave(InstanceSave* instanceSave) override + { + sAZTH->GetAZTHInstanceSave(instanceSave)->saveToDb(); + } + + bool CanApplySoulboundFlag(Item* item, ItemTemplate const* /*proto*/) override + { + if (!item) + return false; + + // [AZTH] force soulbound using an unknown flag as workaround + if (item->HasFlag(ITEM_FIELD_FLAGS, ITEM_FIELD_FLAG_UNK1)) + return false; + + return true; + } + + void OnPlayerSetPhase(const AuraEffect* auraEff, AuraApplication const* aurApp, uint8 /*mode*/, bool /*apply*/, uint32& newPhase) override + { + if (!auraEff) + return; + + Player* player = aurApp->GetTarget()->ToPlayer(); + if (!player) + return; + + uint32 auraPhase = aurApp->GetTarget()->GetPhaseByAuras(); + + if (player->IsGameMaster() && newPhase == PHASEMASK_ANYWHERE && !player->HasFlag(PLAYER_FLAGS, PLAYER_FLAGS_DEVELOPER)) + newPhase = !auraPhase ? PHASEMASK_NORMAL : auraPhase; + } +}; + +class Unit_SC : public UnitScript +{ +public: + Unit_SC() : UnitScript("Unit_SC") { } + + void OnAuraRemove(Unit* /* unit */, AuraApplication* aurApp, AuraRemoveMode mode) override + { + sAzthUtils->onAuraRemove(aurApp, mode); + } + + bool IfNormalReaction(Unit const* unit, Unit const* target, ReputationRank& repRank) override + { + int32 _repRank = sAzthUtils->getReaction(unit, target); + if (_repRank >= 0) + { + repRank = (ReputationRank)_repRank; + return false; + } + + return true; + } + + bool IsNeedModSpellDamagePercent(Unit const* unit, AuraEffect* auraEff, float& doneTotalMod, SpellInfo const* spellProto) override + { + //[AZTH] Timewalking scaled damage spells shouldn't have the + // percent reduction of tw table, but we can apply a minor modifier + Player* modOwner = unit->GetSpellModOwner(); + if (modOwner && sAZTH->GetAZTHPlayer(modOwner)->isTimeWalking(true) && auraEff->GetId() == TIMEWALKING_AURA_MOD_DAMAGESPELL) + { + int32 reduction = sAzthUtils->getSpellReduction(modOwner, spellProto); + if (reduction >= 0) + { + // replicate conditions below + if (auraEff->GetMiscValue() & spellProto->GetSchoolMask()) + { + if (auraEff->GetSpellInfo()->EquippedItemClass == -1) + AddPct(doneTotalMod, -(reduction)); + else if (!auraEff->GetSpellInfo()->HasAttribute(SPELL_ATTR5_AURA_AFFECTS_NOT_JUST_REQ_EQUIPED_ITEM) && (auraEff->GetSpellInfo()->EquippedItemSubClassMask == 0)) + AddPct(doneTotalMod, -(reduction)); + else if (unit->ToPlayer() && unit->ToPlayer()->HasItemFitToSpellRequirements(auraEff->GetSpellInfo())) + AddPct(doneTotalMod, -(reduction)); + } + return false; + } + } + + return true; + } + + bool IsNeedModMeleeDamagePercent(Unit const* unit, AuraEffect* auraEff, float& doneTotalMod, SpellInfo const* spellProto) override + { + //[AZTH] Timewalking scaled damage spells shouldn't have the + // percent reduction of tw table, but we can apply a minor modifier + Player* modOwner = unit->GetSpellModOwner(); + if (modOwner && sAZTH->GetAZTHPlayer(modOwner)->isTimeWalking(true) && auraEff->GetId() == TIMEWALKING_AURA_MOD_DAMAGESPELL) + { + int32 reduction = sAzthUtils->getSpellReduction(modOwner, spellProto); + if (reduction >= 0) + { + // replicate conditions below + if ((auraEff->GetMiscValue() & spellProto->GetSchoolMask()) && !(auraEff->GetMiscValue() & SPELL_SCHOOL_MASK_NORMAL)) + { + if (auraEff->GetSpellInfo()->EquippedItemClass == -1) + AddPct(doneTotalMod, -(reduction)); + else if (!auraEff->GetSpellInfo()->HasAttribute(SPELL_ATTR5_AURA_AFFECTS_NOT_JUST_REQ_EQUIPED_ITEM) && (auraEff->GetSpellInfo()->EquippedItemSubClassMask == 0)) + AddPct(doneTotalMod, -(reduction)); + else if (unit->ToPlayer() && unit->ToPlayer()->HasItemFitToSpellRequirements(auraEff->GetSpellInfo())) + AddPct(doneTotalMod, -(reduction)); + } + + return false; + } + } + + return true; + } + + bool IsNeedModHealPercent(Unit const* unit, AuraEffect* auraEff, float& doneTotalMod, SpellInfo const* spellProto) override + { + //[AZTH] Timewalking scaled healing spells shouldn't have the + // percent reduction of tw table, but we can apply a minor modifier + Player* modOwner = unit->GetSpellModOwner(); + if (modOwner && sAZTH->GetAZTHPlayer(modOwner)->isTimeWalking(true) && auraEff->GetId() == TIMEWALKING_AURA_MOD_HEALING) + { + int32 reduction = sAzthUtils->getSpellReduction(modOwner, spellProto); + if (reduction >= 0) + { + AddPct(doneTotalMod, -(reduction)); + return false; + } + } + + return true; + } + + bool CanSetPhaseMask(Unit const* unit, uint32 newPhaseMask, bool /*update*/) override + { + if (!sAzthUtils->dimIntegrityCheck(unit, newPhaseMask)) + return false; + + if (newPhaseMask != uint32(PHASEMASK_ANYWHERE)) + return true; + + auto player = unit->ToPlayer(); + if (!player) + return false; + + if (!player->HasFlag(PLAYER_FLAGS, PLAYER_FLAGS_DEVELOPER)) + return false; + + return true; + } + + bool IsCustomBuildValuesUpdate(Unit const* unit, uint8 /*updateType*/, ByteBuffer& fieldBuffer, Player const* target, uint16 index) override + { + int repRank = sAzthUtils->getReaction(unit, target); + + if (target != unit && repRank >= REP_HATED) + { + // implicit change of unit fields from azth + FactionTemplateEntry const* ft1 = unit->GetFactionTemplateEntry(); + FactionTemplateEntry const* ft2 = target->GetFactionTemplateEntry(); + + if (repRank >= REP_FRIENDLY && ft1 && ft2 && !ft1->IsFriendlyTo(*ft2)) + { + if (index == UNIT_FIELD_BYTES_2) // Allow targetting opposite faction in party when enabled in config + fieldBuffer << (unit->GetUInt32Value(UNIT_FIELD_BYTES_2) & ((UNIT_BYTE2_FLAG_SANCTUARY) << 8)); // this flag is at uint8 offset 1 !! + else // pretend that all other HOSTILE players have own faction, to allow follow, heal, rezz (trade wont work) + fieldBuffer << uint32(target->GetFaction()); + + return true; + } + else if (repRank <= REP_HOSTILE && ft1 && ft2 && ft1->IsFriendlyTo(*ft2)) + { + // this needs that the realm has the PvP switch (rp pvp realm type for example) to work + fieldBuffer << (unit->GetUInt32Value(UNIT_FIELD_BYTES_2) | (UNIT_BYTE2_FLAG_FFA_PVP << 8)); + return true; + } + } + + return false; + } +}; + +class Group_SC : public GroupScript +{ +public: + Group_SC() : GroupScript("Group_SC") { } + + bool CanGroupJoinBattlegroundQueue(Group const* group, Player* member, Battleground const* bgTemplate, uint32 /*MinPlayerCount*/, bool /*isRated*/, uint32 /*arenaSlot*/) override + { + if (!group || !member) + return false; + + if (!sAZTH->GetAZTHPlayer(member)->canJoinQueue(bgTemplate->isArena() ? AZTH_QUEUE_ARENA : AZTH_QUEUE_BG)) + return false; + + return true; + } + + void OnCreate(Group* group, Player* leader) override + { + if (!group || !leader) + return; + + CharacterDatabase.PExecute("INSERT INTO azth_groups (guid, MaxLevelGroup) VALUES (%u, %u)", group->GetGUID().GetCounter(), leader->getLevel()); + } + + void OnDisband(Group* group) override + { + if (!group) + return; + + CharacterDatabase.PExecute("DELETE FROM `azth_groups` WHERE `guid` = '%u'", group->GetGUID().GetCounter()); + } +}; + +class Guild_SC : public GuildScript +{ +public: + Guild_SC() : GuildScript("Guild_SC") { } + + bool CanGuildSendBankList(Guild const* guild, WorldSession* session, uint8 /* tabId */, bool /* sendAllSlots */) override + { + if (!guild || session) + return false; + + if (session->GetPlayer() && sAZTH->GetAZTHPlayer(session->GetPlayer())->isPvP()) + return false; + + return true; + } +}; + +class World_SC : public WorldScript +{ +public: + World_SC() : WorldScript("World_SC") { } + + void OnAfterConfigLoad(bool reload) override + { + sAZTH->LoadConfig(reload); + } + + void OnUpdate(uint32 diff) override + { + if (_TimeCheckEM < diff) + { + sAZTH->SendExternalMails(); + + _TimeCheckEM = sAZTH->GetExternalMailInterval(); + } + else + _TimeCheckEM -= diff; + + if (_TimeCheckGH <= diff) + { + GHobj.ControlGuildHouse(); + _TimeCheckGH = 600000; + } + else + _TimeCheckGH -= diff; + } + + void OnStartup() override + { + GHobj.LoadGuildHouseSystem(); // [AZTH] Load Guildhouses + nsNpcTel::LoadNpcTele(); // Teleport + sHearthstoneMode->loadHearthstone(); // [AZTH] Load Hearthstone Mode + } + +private: + uint32 _TimeCheckEM = sAZTH->GetExternalMailInterval(); + uint32 _TimeCheckGH = 600000; +}; + +class Pet_SC : public PetScript +{ +public: + Pet_SC() : PetScript("Pet_SC") { } + + //[AZTH] Timewalking + void OnInitStatsForLevel(Guardian* guardian, uint8 /*petlevel*/) override + { + if (!guardian->GetOwner()) + return; + + if (guardian->GetOwner()->GetTypeId() == TYPEID_PLAYER) + { + Player* player = guardian->GetOwner()->ToPlayer(); + if (!player) + return; + + if (sAZTH->GetAZTHPlayer(player)->isTimeWalking(guardian)) + if (AzthLevelStat const* stats = sAzthUtils->getTwStats(player, player->getLevel())) + sAzthUtils->setTwAuras(guardian, stats, true, true); + } + } + + //[AZTH] Timewalking + void OnCalculateMaxTalentPointsForLevel(Pet* pet, uint8 /*level*/, uint8& points) override + { + Unit* owner = pet->GetOwner(); + if (!owner || owner->GetTypeId() != TYPEID_PLAYER) + return; + + if (!sAZTH->GetAZTHPlayer(owner->ToPlayer())->isTimeWalking()) + return; + + uint32 ConfMaxPlayerLevel = sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL); + + points = (ConfMaxPlayerLevel >= 20) ? ((ConfMaxPlayerLevel - 16) / 4) : 0; + + // Mod points from owner SPELL_AURA_MOD_PET_TALENT_POINTS + points += owner->GetTotalAuraModifier(SPELL_AURA_MOD_PET_TALENT_POINTS); + } + + //[AZTH] Timewalking + bool CanUnlearnSpellSet(Pet* pet, uint32 /*level*/, uint32 /*spell*/) override + { + if (pet->GetOwner() && sAZTH->GetAZTHPlayer(pet->GetOwner())->isTimeWalking()) + return false; + + return true; + } + + //[AZTH] Timewalking + bool CanUnlearnSpellDefault(Pet* pet, SpellInfo const* /*spellEntry*/) override + { + if (pet->GetOwner() && sAZTH->GetAZTHPlayer(pet->GetOwner())->isTimeWalking()) + return false; + + return true; + } + + //[AZTH] Timewalking + bool CanResetTalents(Pet* pet) override + { + Player* player = pet->GetOwner()->ToPlayer(); + if (!player) + return false; + + if (sAZTH->GetAZTHPlayer(player)->isTimeWalking()) + return false; + + return true; + } +}; + +class Spell_SC : public SpellSC +{ +public: + Spell_SC() : SpellSC("Spell_SC") { } + + bool CanModAuraEffectDamageDone(AuraEffect const* auraEff, Unit* /* target */, AuraApplication const* /* aurApp */, uint8 /* mode */, bool /* apply */) override + { + if (auraEff->GetSpellInfo()->Id == TIMEWALKING_AURA_MOD_DAMAGESPELL) + return false; + + return true; + } + + bool CanModAuraEffectModDamagePercentDone(AuraEffect const* auraEff, Unit* /* target */, AuraApplication const* /* aurApp */, uint8 /* mode */, bool /* apply */) override + { + //[AZTH] weapon damage is already handled by our item scaling system + // but we need other effect of MOD_DAMAGE_PERCENT with SPELL_SCHOOL_MASK_NORMAL (physic spells) + if (auraEff->GetSpellInfo()->Id == TIMEWALKING_AURA_MOD_DAMAGESPELL) + return false; + + return true; + } + + void OnSpellCheckCast(Spell* spell, bool /* strict */, SpellCastResult& res) override + { + Player* player = spell->GetCaster()->GetSpellModOwner(); + if (!player) + return; + + res = sAzthUtils->checkSpellCast(player, spell->GetSpellInfo(), true); + } + + bool CanPrepare(Spell* spell, SpellCastTargets const* targets, AuraEffect const* triggeredByAura) override + { + if (!spell) + return false; + + if (!sAzthUtils->canPrepareSpell(spell, spell->GetCaster(), spell->GetSpellInfo(), targets, triggeredByAura)) + return false; + + return true; + } + + bool CanScalingEverything(Spell* spell) override + { + //[AZTH] timewalking scale everything!!! + if (spell->GetCaster()->ToPlayer() && sAZTH->GetAZTHPlayer(spell->GetCaster()->ToPlayer())->isTimeWalking(true)) + return true; + + return false; + } + + bool CanSelectSpecTalent(Spell* spell) override + { + if (!spell) + return false; + + if (spell->GetCaster()->GetTypeId() == TYPEID_PLAYER) + { + Player* plr = spell->GetCaster()->ToPlayer(); + + if (plr->InBattlegroundQueueForBattlegroundQueueType((BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_3v3_SOLO) || + plr->InBattlegroundQueueForBattlegroundQueueType((BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_1v1)) + { + plr->GetSession()->SendAreaTriggerMessage("You can't change your talents while in queue for 1v1 or 3v3."); + return false; + } + } + + return true; + } + + void OnScaleAuraUnitAdd(Spell* spell, Unit* target, uint32 /*effectMask*/, bool /*checkIfValid*/, bool /*implicit*/, uint8 auraScaleMask, TargetInfo& targetInfo) override + { + if (!spell || !target) + return; + + if (!targetInfo.scaleAura && auraScaleMask && targetInfo.effectMask == auraScaleMask) + { + SpellInfo const* auraSpell = spell->GetSpellInfo()->GetFirstRankSpell(); + if (uint32(target->getLevel() + 10) >= auraSpell->SpellLevel) + targetInfo.scaleAura = true; + } + } + + void OnRemoveAuraScaleTargets(Spell* spell, TargetInfo& targetInfo, uint8 /* auraScaleMask */, bool& needErase) override + { + if (!spell) + return; + + // TW: Do not check for selfcast + if (needErase && !targetInfo.scaleAura && sAzthUtils->isSpecialSpellForTw(spell->m_spellInfo)) + needErase = false; + } + + void OnBeforeAuraRankForLevel(SpellInfo const* spellInfo, SpellInfo const* nextSpellInfo, uint8 level) override + { + SpellInfo const* latestSpellInfo = spellInfo; // we can use after + for (SpellInfo const* latestSpellInfo = spellInfo; latestSpellInfo != nullptr; latestSpellInfo = latestSpellInfo->GetPrevRankSpell()) + { + // Timewalking + if (!latestSpellInfo->SpellLevel && uint32(level) >= latestSpellInfo->BaseLevel) + { + nextSpellInfo = latestSpellInfo; + return; + } + else if (uint32(level) >= latestSpellInfo->SpellLevel) + { + // if found appropriate level + nextSpellInfo = latestSpellInfo; + return; + } + } + + // if any low level found, we could pass the first + // one that is in a 10 level higher range as official code did + if (uint32(level + 10) >= latestSpellInfo->SpellLevel) + { + nextSpellInfo = latestSpellInfo; + return; + } + } +}; + +class CommandAZTH_SC : public CommandScript +{ +public: + CommandAZTH_SC() : CommandScript("CommandAZTH_SC") { } + + std::vector GetCommands() const override + { + static std::vector AZTHGOCommandTable = + { + { "guildhouse", SEC_GAMEMASTER, false, &HandleGuildhouseCommand, "" } + }; + + static std::vector AZTHGobjectCommandTable = + { + { "guildadd", SEC_GAMEMASTER, false, &HandleGameObjectAddGuildCommand, "" } + }; + + static std::vector AZTHNpcCommandTable = + { + { "guildadd", SEC_GAMEMASTER, false, &HandleNpcAddGuildCommand, "" } + }; + + static std::vector AZTHCommandTable = + { + { "go", SEC_MODERATOR, false, nullptr, "", AZTHGOCommandTable}, + { "gobject", SEC_MODERATOR, false, nullptr, "", AZTHGobjectCommandTable}, + { "npc", SEC_MODERATOR, false, nullptr, "", AZTHNpcCommandTable}, + }; + + static std::vector commandTable = + { + { "azth", SEC_PLAYER, true, nullptr, "", AZTHCommandTable}, + }; + + return commandTable; + } + + // [AZTH] Guildhouse GO command + static bool HandleGuildhouseCommand(ChatHandler* handler, char const* args) + { + if (!*args) + return false; + + Player* player = handler->GetSession()->GetPlayer(); + + char* goGH = strtok((char*)args, " "); + + if (!goGH) + return false; + + uint32 guildhouse = (uint32)atof(goGH); + if (!guildhouse) + return false; + + float x; + float y; + float z; + float o; + uint32 map; + + // here i have to retrieve coordinates for the GH. + if (!GHobj.GetGuildHouseLocation(guildhouse, x, y, z, o, map)) + return false; + + // stop flight if need + if (player->IsInFlight()) + { + player->GetMotionMaster()->MovementExpired(); + player->CleanupAfterTaxiFlight(); + } + else // save only in non-flight case + player->SaveRecallPosition(); + + if (!MapMgr::IsValidMapCoord(map, x, y, z)) + { + handler->PSendSysMessage(LANG_INVALID_TARGET_COORD, x, y, map); + handler->SetSentErrorMessage(true); + return false; + } + + // teleport player to the specified location + player->TeleportTo(map, x, y, z, o); + return true; + } + + // [AZTH] Gobject guildhouse add + static bool HandleGameObjectAddGuildCommand(ChatHandler* handler, const char* args) + { + if (!*args) + return false; + + // number or [name] Shift-click form |color|Hgameobject_entry:go_id|h[name]|h|r + char* cId = handler->extractKeyFromLink((char*)args, "Hgameobject_entry"); + if (!cId) + return false; + + char* c_guildhouse = strtok(NULL, " "); + if (!c_guildhouse) + return false; + + char* c_guildhouseadd = strtok(NULL, " "); + if (!c_guildhouseadd) + return false; + + uint32 id = atol(cId); + uint32 guildhouseid = atol(c_guildhouse); + uint32 guildhouseaddid = atol(c_guildhouseadd); + + if (!id || !guildhouseid || !guildhouseaddid) + return false; + + char* spawntimeSecs = strtok(NULL, " "); + + const GameObjectTemplate* gInfo = sObjectMgr->GetGameObjectTemplate(id); + + if (!gInfo) + { + handler->PSendSysMessage(LANG_GAMEOBJECT_NOT_EXIST, id); + handler->SetSentErrorMessage(true); + return false; + } + + if (gInfo->displayId && !sGameObjectDisplayInfoStore.LookupEntry(gInfo->displayId)) + { + // report to DB errors log as in loading case + //sLog->outErrorDb("Gameobject (Entry %u GoType: %u) have invalid displayId (%u), not spawned.", id, gInfo->type, gInfo->displayId); + handler->PSendSysMessage(LANG_GAMEOBJECT_HAVE_INVALID_DATA, id); + handler->SetSentErrorMessage(true); + return false; + } + + Player* chr = handler->GetSession()->GetPlayer(); + float x = float(chr->GetPositionX()); + float y = float(chr->GetPositionY()); + float z = float(chr->GetPositionZ()); + float o = float(chr->GetOrientation()); + Map* map = chr->GetMap(); + + GameObject* pGameObj = new GameObject; + uint32 db_lowGUID = map->GenerateLowGuid(); + + if (!pGameObj->Create(db_lowGUID, gInfo->entry, map, chr->GetPhaseMaskForSpawn(), x, y, z, o, G3D::Quat(), 0, GO_STATE_READY)) + { + delete pGameObj; + return false; + } + + if (spawntimeSecs) + { + uint32 value = atoi((char*)spawntimeSecs); + pGameObj->SetRespawnTime(value); + //sLog->outDebug(LOG_FILTER_TSCR, "*** spawntimeSecs: %d", value); + } + + // fill the gameobject data and save to the db + pGameObj->SaveToDB(map->GetId(), (1 << map->GetSpawnMode()), chr->GetPhaseMaskForSpawn()); + + // this will generate a new guid if the object is in an instance + if (!pGameObj->LoadFromDB(db_lowGUID, map)) + { + delete pGameObj; + return false; + } + + map->AddToMap(pGameObj); + + std::string new_str(pGameObj->GetName()); + WorldDatabase.EscapeString(new_str); + + WorldDatabase.PQuery("INSERT INTO `guildhouses_add` (guid, type, id, add_type, comment) VALUES (%u, 1, %u, %u, '%s')", + pGameObj->GetGUID().GetCounter(), guildhouseid, guildhouseaddid, new_str.c_str()); + + // TODO: is it really necessary to add both the real and DB table guid here ? + sObjectMgr->AddGameobjectToGrid(db_lowGUID, sObjectMgr->GetGOData(db_lowGUID)); + + handler->PSendSysMessage(LANG_GAMEOBJECT_ADD, id, gInfo->name.c_str(), db_lowGUID, x, y, z); + return true; + } + + // [AZTH] add spawn of creature for a GuildHouse + static bool HandleNpcAddGuildCommand(ChatHandler* handler, const char* args) + { + if (!*args) + return false; + + char* charID = handler->extractKeyFromLink((char*)args, "Hcreature_entry"); + if (!charID) + return false; + + char* guildhouse = strtok(NULL, " "); + if (!guildhouse) + return false; + + char* guildhouseadd = strtok(NULL, " "); + if (!guildhouseadd) + return false; + + uint32 id = atoi(charID); + uint32 guildhouseid = atoi(guildhouse); + uint32 guildhouseaddid = atoi(guildhouseadd); + + if (!id || !guildhouseid || !guildhouseaddid) + return false; + + Player* chr = handler->GetSession()->GetPlayer(); + float x = chr->GetPositionX(); + float y = chr->GetPositionY(); + float z = chr->GetPositionZ(); + float o = chr->GetOrientation(); + Map* map = chr->GetMap(); + + Creature* creature = new Creature(); + if (!creature->Create(map->GenerateLowGuid(), map, chr->GetPhaseMaskForSpawn(), id, 0, x, y, z, o)) + { + delete creature; + return false; + } + + creature->SaveToDB(map->GetId(), (1 << map->GetSpawnMode()), chr->GetPhaseMaskForSpawn()); + + uint32 db_guid = creature->GetGUID().GetCounter(); + + // To call _LoadGoods(); _LoadQuests(); CreateTrainerSpells(); + creature->LoadFromDB(db_guid, map); + + std::string new_str(creature->GetName()); + WorldDatabase.EscapeString(new_str); + + WorldDatabase.PQuery("INSERT INTO `guildhouses_add` (guid, type, id, add_type, comment) VALUES (%u, 0, %u, %u, '%s')", + creature->GetGUID().GetCounter(), guildhouseid, guildhouseaddid, new_str.c_str()); + + map->AddToMap(creature); + sObjectMgr->AddCreatureToGrid(db_guid, sObjectMgr->GetCreatureData(db_guid)); + + if (guildhouseaddid == 2) + { + QueryResult guildResult = CharacterDatabase.PQuery("SELECT guildid FROM `guildhouses` WHERE id = %u", guildhouseid); + if (guildResult) + GHobj.UpdateGuardMap(creature->GetGUID().GetCounter(), guildResult->Fetch()->GetInt32()); + } + + return true; + } +}; + +void AddSC_AZTH() +{ + new Arena_SC(); + new Battleground_SC(); + new Command_SC(); + new Player_SC(); + new Achievement_SC(); + new Misc_SC(); + new Unit_SC(); + new Group_SC(); + new Guild_SC(); + new World_SC(); + new Pet_SC(); + new Spell_SC(); + new CommandAZTH_SC(); +} diff --git a/src/ArenaSolo3v3/Solo3v3.cpp b/src/ArenaSolo3v3/Solo3v3.cpp new file mode 100644 index 0000000..ec50770 --- /dev/null +++ b/src/ArenaSolo3v3/Solo3v3.cpp @@ -0,0 +1,402 @@ +/* + * Copyright (С) since 2019 Andrei Guluaev (Winfidonarleyan/Kargatum) https://github.com/Winfidonarleyan + */ + +#include "Solo3v3.h" +#include "ArenaTeamMgr.h" +#include "BattlegroundMgr.h" +#include "Config.h" +#include "Log.h" +#include "ScriptMgr.h" +#include "Chat.h" +#include "DisableMgr.h" + +Solo3v3* Solo3v3::instance() +{ + static Solo3v3 instance; + return &instance; +} + +void Solo3v3::SaveSoloDB(ArenaTeam* team) +{ + if (!team) + return; + + // Init some variables for speedup the programm + ArenaTeam* realTeams[3]; + uint32 itrRealTeam = 0; + + for (; itrRealTeam < 3; itrRealTeam++) + realTeams[itrRealTeam] = nullptr; + + itrRealTeam = 0; + uint32 oldRating = 0; + + // First get the old average rating by looping through all members in temp team and add up the rating + for (auto const& itr : team->GetMembers()) + { + ArenaTeam* plrArenaTeam = nullptr; + + // Find real arena team for player + for (auto const& itrMgr : sArenaTeamMgr->GetArenaTeams()) + { + if (itrMgr.first < 0xFFF00000 && itrMgr.second->GetCaptain() == itr.Guid && itrMgr.second->GetType() == ARENA_TEAM_SOLO_3v3) + { + plrArenaTeam = itrMgr.second; // found! + break; + } + } + + if (!plrArenaTeam) + continue; // Not found? Maybe player has left the game and deleted it before the arena game ends. + + ASSERT(itrRealTeam < 3); + realTeams[itrRealTeam++] = plrArenaTeam; + + oldRating += plrArenaTeam->GetRating(); // add up all ratings from each player team + } + + if (team->GetMembersSize() > 0) + oldRating /= team->GetMembersSize(); // Get average + + int32 ratingModifier = team->GetRating() - oldRating; // GetRating() contains the new rating and oldRating is the old average rating + + itrRealTeam = 0; + + // Let's loop again through temp arena team and add the new rating + for (auto const& _itr : team->GetMembers()) + { + ArenaTeam* plrArenaTeam = realTeams[itrRealTeam++]; + + if (!plrArenaTeam) + continue; + + ArenaTeamStats atStats = plrArenaTeam->GetStats(); + + if (int32(atStats.Rating) + ratingModifier < 0) + atStats.Rating = 0; + else + atStats.Rating += ratingModifier; + + atStats.SeasonGames = _itr.SeasonGames; + atStats.SeasonWins = _itr.SeasonWins; + atStats.WeekGames = _itr.WeekGames; + atStats.WeekWins = _itr.WeekWins; + + for (auto realMemberItr : plrArenaTeam->GetMembers()) + { + if (realMemberItr.Guid != plrArenaTeam->GetCaptain()) + continue; + + realMemberItr.PersonalRating = _itr.PersonalRating; + realMemberItr.MatchMakerRating = _itr.MatchMakerRating; + realMemberItr.SeasonGames = _itr.SeasonGames; + realMemberItr.SeasonWins = _itr.SeasonWins; + realMemberItr.WeekGames = _itr.WeekGames; + realMemberItr.WeekWins = _itr.WeekWins; + } + + plrArenaTeam->SetArenaTeamStats(atStats); + plrArenaTeam->NotifyStatsChanged(); + plrArenaTeam->SaveToDB(); + } +} + +uint32 Solo3v3::GetAverageMMR(ArenaTeam* team) +{ + if (!team) + return 0; + + uint32 matchMakerRating = 0; + uint32 playerDivider = 0; + + for (auto const& itr : team->GetMembers()) + { + matchMakerRating += itr.MatchMakerRating; + playerDivider++; + } + + //x/0 = crash + if (!playerDivider) + playerDivider++; + + matchMakerRating /= playerDivider; + + return matchMakerRating; +} + +void Solo3v3::CleanUp3v3SoloQ(Battleground* bg) +{ + // Cleanup temp arena teams for solo 3v3 + if (bg->isArena() && bg->isRated() && bg->GetArenaType() == ARENA_TYPE_3v3_SOLO) + { + ArenaTeam* tempAlliArenaTeam = sArenaTeamMgr->GetArenaTeamById(bg->GetArenaTeamIdForTeam(TEAM_ALLIANCE)); + ArenaTeam* tempHordeArenaTeam = sArenaTeamMgr->GetArenaTeamById(bg->GetArenaTeamIdForTeam(TEAM_HORDE)); + + if (tempAlliArenaTeam && tempAlliArenaTeam->GetId() >= MAX_ARENA_TEAM_ID) + { + sArenaTeamMgr->RemoveArenaTeam(tempAlliArenaTeam->GetId()); + delete tempAlliArenaTeam; + } + + if (tempHordeArenaTeam && tempHordeArenaTeam->GetId() >= MAX_ARENA_TEAM_ID) + { + sArenaTeamMgr->RemoveArenaTeam(tempHordeArenaTeam->GetId()); + delete tempHordeArenaTeam; + } + } +} + +void Solo3v3::CheckStartSolo3v3Arena(Battleground* bg) +{ + if (bg->GetArenaType() != ARENA_TYPE_3v3_SOLO) + return; + + if (bg->GetStatus() != STATUS_IN_PROGRESS) + return; // if CheckArenaWinConditions ends the game + + bool someoneNotInArena = false; + + ArenaTeam* team[2]; + team[0] = sArenaTeamMgr->GetArenaTeamById(bg->GetArenaTeamIdForTeam(TEAM_ALLIANCE)); + team[1] = sArenaTeamMgr->GetArenaTeamById(bg->GetArenaTeamIdForTeam(TEAM_HORDE)); + + ASSERT(team[0] && team[1]); + + for (int i = 0; i < 2; i++) + { + for (auto const& itr : team[i]->GetMembers()) + { + Player* plr = ObjectAccessor::FindPlayer(itr.Guid); + if (!plr) + { + someoneNotInArena = true; + continue; + } + + if (plr->GetInstanceId() != bg->GetInstanceID()) + { + if (sConfigMgr->GetOption("Solo.3v3.CastDeserterOnAfk", true)) + plr->CastSpell(plr, 26013, true); // Deserter + + someoneNotInArena = true; + } + } + } + + if (someoneNotInArena && sConfigMgr->GetOption("Solo.3v3.StopGameIncomplete", true)) + { + bg->SetRated(false); + bg->EndBattleground(TEAM_NEUTRAL); + } +} + +bool Solo3v3::CheckSolo3v3Arena(BattlegroundQueue* queue, BattlegroundBracketId bracket_id) +{ + bool soloTeam[BG_TEAMS_COUNT][MAX_TALENT_CAT]; // 2 teams and each team 3 players - set to true when slot is taken + + for (int i = 0; i < BG_TEAMS_COUNT; i++) + for (int j = 0; j < MAX_TALENT_CAT; j++) + soloTeam[i][j] = false; // default false = slot not taken + + queue->m_SelectionPools[TEAM_ALLIANCE].Init(); + queue->m_SelectionPools[TEAM_HORDE].Init(); + + uint32 MinPlayersPerTeam = sBattlegroundMgr->isArenaTesting() ? 1 : 3; + + bool filterTalents = sConfigMgr->GetOption("Solo.3v3.FilterTalents", false); + + for (int teamId = 0; teamId < 2; teamId++) // BG_QUEUE_PREMADE_ALLIANCE and BG_QUEUE_PREMADE_HORDE + { + for (BattlegroundQueue::GroupsQueueType::iterator itr = queue->m_QueuedGroups[bracket_id][teamId].begin(); itr != queue->m_QueuedGroups[bracket_id][teamId].end(); ++itr) + { + if ((*itr)->IsInvitedToBGInstanceGUID) // Skip when invited + continue; + + for (auto const& playerGuid : (*itr)->Players) + { + Player* plr = ObjectAccessor::FindPlayer(playerGuid); + if (!plr) + continue; + + if (!filterTalents && queue->m_SelectionPools[TEAM_ALLIANCE].GetPlayerCount() + queue->m_SelectionPools[TEAM_HORDE].GetPlayerCount() == MinPlayersPerTeam * 2) + return true; + + Solo3v3TalentCat plrCat = GetTalentCatForSolo3v3(plr); // get talent cat + + if ((filterTalents && soloTeam[TEAM_ALLIANCE][plrCat] == false) // is slot free in alliance team? + || (!filterTalents && queue->m_SelectionPools[TEAM_ALLIANCE].GetPlayerCount() != MinPlayersPerTeam)) + { + if (queue->m_SelectionPools[TEAM_ALLIANCE].AddGroup((*itr), MinPlayersPerTeam)) // added successfully? + { + soloTeam[TEAM_ALLIANCE][plrCat] = true; // okay take this slot + + if ((*itr)->teamId != TEAM_ALLIANCE) // move to other team + { + (*itr)->teamId = TEAM_ALLIANCE; + (*itr)->_groupType = BG_QUEUE_PREMADE_ALLIANCE; + queue->m_QueuedGroups[bracket_id][BG_QUEUE_PREMADE_ALLIANCE].push_front((*itr)); + itr = queue->m_QueuedGroups[bracket_id][BG_QUEUE_PREMADE_HORDE].erase(itr); + return CheckSolo3v3Arena(queue, bracket_id); + } + } + } + else if ((filterTalents && soloTeam[TEAM_HORDE][plrCat] == false) || !filterTalents) // nope? and in horde team? + { + if (queue->m_SelectionPools[TEAM_HORDE].AddGroup((*itr), MinPlayersPerTeam)) + { + soloTeam[TEAM_HORDE][plrCat] = true; + + if ((*itr)->teamId != TEAM_HORDE) // move to other team + { + (*itr)->teamId = TEAM_HORDE; + (*itr)->_groupType = BG_QUEUE_PREMADE_HORDE; + queue->m_QueuedGroups[bracket_id][BG_QUEUE_PREMADE_HORDE].push_front((*itr)); + itr = queue->m_QueuedGroups[bracket_id][BG_QUEUE_PREMADE_ALLIANCE].erase(itr); + return CheckSolo3v3Arena(queue, bracket_id); + } + } + } + } + } + } + + uint32 countAll = 0; + for (int i = 0; i < BG_TEAMS_COUNT; i++) + for (int j = 0; j < MAX_TALENT_CAT; j++) + if (soloTeam[i][j]) + countAll++; + + return countAll == MinPlayersPerTeam * 2 || + (!filterTalents && queue->m_SelectionPools[TEAM_ALLIANCE].GetPlayerCount() + queue->m_SelectionPools[TEAM_HORDE].GetPlayerCount() == MinPlayersPerTeam * 2); +} + +void Solo3v3::CreateTempArenaTeamForQueue(BattlegroundQueue* queue, ArenaTeam* arenaTeams[]) +{ + // Create temp arena team + for (uint32 i = 0; i < BG_TEAMS_COUNT; i++) + { + ArenaTeam* tempArenaTeam = new ArenaTeam(); // delete it when all players have left the arena match. Stored in sArenaTeamMgr + std::vector playersList; + uint32 atPlrItr = 0; + + for (auto const& itr : queue->m_SelectionPools[TEAM_ALLIANCE + i].SelectedGroups) + { + if (atPlrItr >= 3) + break; // Should never happen + + for (auto const& itr2 : itr->Players) + { + auto _PlayerGuid = itr2; + if (Player * _player = ObjectAccessor::FindPlayer(_PlayerGuid)) + { + playersList.push_back(_player); + atPlrItr++; + } + + break; + } + } + + std::stringstream ssTeamName; + ssTeamName << "Solo Team - " << (i + 1); + + tempArenaTeam->CreateTempArenaTeam(playersList, ARENA_TEAM_SOLO_3v3, ssTeamName.str()); + sArenaTeamMgr->AddArenaTeam(tempArenaTeam); + arenaTeams[i] = tempArenaTeam; + } +} + +bool Solo3v3::Arena1v1CheckTalents(Player* player) +{ + if (!player) + return false; + + if (sConfigMgr->GetOption("Arena.1v1.BlockForbiddenTalents", false) == false) + return true; + + uint32 count = 0; + for (uint32 talentId = 0; talentId < sTalentStore.GetNumRows(); ++talentId) + { + TalentEntry const* talentInfo = sTalentStore.LookupEntry(talentId); + + if (!talentInfo) + continue; + + for (int8 rank = MAX_TALENT_RANK - 1; rank >= 0; --rank) + { + if (talentInfo->RankID[rank] == 0) + continue; + + if (player->HasTalent(talentInfo->RankID[rank], player->GetActiveSpec())) + { + for (int8 i = 0; FORBIDDEN_TALENTS_IN_1V1_ARENA[i] != 0; i++) + if (FORBIDDEN_TALENTS_IN_1V1_ARENA[i] == talentInfo->TalentTab) + count += rank + 1; + } + } + } + + if (count >= 36) + { + ChatHandler(player->GetSession()).SendSysMessage("You can't join, because you have invested to much points in a forbidden talent. Please edit your talents."); + return false; + } + else + return true; +} + +Solo3v3TalentCat Solo3v3::GetTalentCatForSolo3v3(Player* player) +{ + if (!player || !sConfigMgr->GetOption("Solo.3v3.FilterTalents", false)) + return MELEE; + + uint32 count[MAX_TALENT_CAT]; + + for (int i = 0; i < MAX_TALENT_CAT; i++) + count[i] = 0; + + for (uint32 talentId = 0; talentId < sTalentStore.GetNumRows(); ++talentId) + { + TalentEntry const* talentInfo = sTalentStore.LookupEntry(talentId); + + if (!talentInfo) + continue; + + for (int8 rank = MAX_TALENT_RANK - 1; rank >= 0; --rank) + { + if (talentInfo->RankID[rank] == 0) + continue; + + if (player->HasTalent(talentInfo->RankID[rank], player->GetActiveSpec())) + { + for (int8 i = 0; SOLO_3V3_TALENTS_MELEE[i] != 0; i++) + if (SOLO_3V3_TALENTS_MELEE[i] == talentInfo->TalentTab) + count[MELEE] += rank + 1; + + for (int8 i = 0; SOLO_3V3_TALENTS_RANGE[i] != 0; i++) + if (SOLO_3V3_TALENTS_RANGE[i] == talentInfo->TalentTab) + count[RANGE] += rank + 1; + + for (int8 i = 0; SOLO_3V3_TALENTS_HEAL[i] != 0; i++) + if (SOLO_3V3_TALENTS_HEAL[i] == talentInfo->TalentTab) + count[HEALER] += rank + 1; + } + } + } + + uint32 prevCount = 0; + + Solo3v3TalentCat talCat = MELEE; // Default MELEE (if no talent points set) + + for (int i = 0; i < MAX_TALENT_CAT; i++) + { + if (count[i] > prevCount) + { + talCat = (Solo3v3TalentCat)i; + prevCount = count[i]; + } + } + + return talCat; +} diff --git a/src/ArenaSolo3v3/Solo3v3.h b/src/ArenaSolo3v3/Solo3v3.h new file mode 100644 index 0000000..4fc1e45 --- /dev/null +++ b/src/ArenaSolo3v3/Solo3v3.h @@ -0,0 +1,131 @@ +/* + * Copyright (С) since 2019 Andrei Guluaev (Winfidonarleyan/Kargatum) https://github.com/Winfidonarleyan + */ + +#ifndef _SOLO_3V3_H_ +#define _SOLO_3V3_H_ + +#include "Common.h" +#include "ArenaTeamMgr.h" +#include "BattlegroundMgr.h" +#include "Player.h" + +enum AZTHArenaType +{ + ARENA_TYPE_1v1 = 1, // Custom 1v1 Arena Rated + ARENA_TYPE_3v3_SOLO = 4 // 3v3 soloqueue +}; + +enum AZTHArenaTeamType +{ + ARENA_TEAM_1v1 = 1, // Custom 1v1 Arena Rated + ARENA_TEAM_SOLO_3v3 = 4 // 3v3 soloqueue +}; + +enum AZTHArenaSlot +{ + ARENA_SLOT_1v1 = 3, // Custom 1v1 Arena Rated + ARENA_SLOT_SOLO_3v3 = 4 // 3v3 soloqueue +}; + +enum AZTHBattlegroundQueueTypeId +{ + BATTLEGROUND_QUEUE_1v1 = 11, + BATTLEGROUND_QUEUE_3v3_SOLO = 12 +}; + +// TalentTab.dbc -> TalentTabID +const uint32 FORBIDDEN_TALENTS_IN_1V1_ARENA[] = +{ + // Healer + 201, // PriestDiscipline + 202, // PriestHoly + 382, // PaladinHoly + 262, // ShamanRestoration + 282, // DruidRestoration + + // Tanks + //383, // PaladinProtection + //163, // WarriorProtection + + 0 // End +}; + +// SOLO_3V3_TALENTS found in: TalentTab.dbc -> TalentTabID +// Warrior, Rogue, Deathknight etc. +const uint32 SOLO_3V3_TALENTS_MELEE[] = +{ + 383, // PaladinProtection + 163, // WarriorProtection + 161, + 182, + 398, + 164, + 181, + 263, + 281, + 399, + 183, + 381, + 400, + 0 // End +}; + +// Mage, Hunter, Warlock etc. +const uint32 SOLO_3V3_TALENTS_RANGE[] = +{ + 81, + 261, + 283, + 302, + 361, + 41, + 303, + 363, + 61, + 203, + 301, + 362, + 0 // End +}; + +const uint32 SOLO_3V3_TALENTS_HEAL[] = +{ + 201, // PriestDiscipline + 202, // PriestHoly + 382, // PaladinHoly + 262, // ShamanRestoration + 282, // DruidRestoration + 0 // End +}; + +enum Solo3v3TalentCat +{ + MELEE = 0, + RANGE, + HEALER, + MAX_TALENT_CAT +}; + +class Solo3v3 +{ +public: + static Solo3v3* instance(); + + void SaveSoloDB(ArenaTeam* team); + uint32 GetAverageMMR(ArenaTeam* team); + void CheckStartSolo3v3Arena(Battleground* bg); + void CleanUp3v3SoloQ(Battleground* bg); + bool CheckSolo3v3Arena(BattlegroundQueue* queue, BattlegroundBracketId bracket_id); + void CreateTempArenaTeamForQueue(BattlegroundQueue* queue, ArenaTeam* arenaTeams[]); + + // Return false, if player have invested more than 35 talentpoints in a forbidden talenttree. + bool Arena1v1CheckTalents(Player* player); + + // Returns MELEE, RANGE or HEALER (depends on talent builds) + Solo3v3TalentCat GetTalentCatForSolo3v3(Player* player); +}; + +#define sSolo Solo3v3::instance() + +#endif // _SOLO_3V3_H_ diff --git a/src/ArenaSolo3v3/Solo3v3_SC.cpp b/src/ArenaSolo3v3/Solo3v3_SC.cpp new file mode 100644 index 0000000..4d45830 --- /dev/null +++ b/src/ArenaSolo3v3/Solo3v3_SC.cpp @@ -0,0 +1,471 @@ + +/* + * Copyright (С) since 2019 Andrei Guluaev (Winfidonarleyan/Kargatum) https://github.com/Winfidonarleyan + */ + +#include "Solo3v3.h" +#include "ScriptMgr.h" +#include "ArenaTeamMgr.h" +#include "BattlegroundMgr.h" +#include "DisableMgr.h" +#include "Chat.h" +#include "Language.h" +#include "ScriptedGossip.h" +#include "Config.h" +#include "AZTH.h" + +// SC +class npc_solo3v3 : public CreatureScript +{ +public: + npc_solo3v3() : CreatureScript("npc_solo3v3") + { + for (int i = 0; i < MAX_TALENT_CAT; i++) + cache3v3Queue[i] = 0; + + lastFetchQueueList = 0; + } + + bool OnGossipHello(Player* player, Creature* me) + { + if (!player || !me) + return true; + + if (sConfigMgr->GetOption("Solo.3v3.Enable", true) == false) + { + ChatHandler(player->GetSession()).SendSysMessage("Arena disabled!"); + return true; + } + + fetchQueueList(); + std::stringstream infoQueue; + infoQueue << "Solo 3vs3 Arena\n"; + infoQueue << "Queued Players: " << (cache3v3Queue[MELEE] + cache3v3Queue[RANGE] + cache3v3Queue[HEALER]); + + if (sConfigMgr->GetOption("Solo.3v3.FilterTalents", false)) + { + infoQueue << "\n\n"; + infoQueue << "Queued Melees: " << cache3v3Queue[MELEE] << " (Longer Queues!)" << "\n"; + infoQueue << "Queued Casters: " << cache3v3Queue[RANGE] << " (Longer Queues!)" << "\n"; + infoQueue << "Queued Healers: " << cache3v3Queue[HEALER] << " (Bonus Rewards!)" << "\n"; + } + + if (player->InBattlegroundQueueForBattlegroundQueueType((BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_3v3_SOLO)) + AddGossipItemFor(player,GOSSIP_ICON_INTERACT_1, "|TInterface/ICONS/Achievement_Arena_2v2_7:30|t Leave Solo queue", GOSSIP_SENDER_MAIN, 3, "Are you sure you want to remove the solo queue?", 0, false); + + if (!player->GetArenaTeamId(ArenaTeam::GetSlotByType(ARENA_TEAM_SOLO_3v3))) + { + uint32 cost = sConfigMgr->GetOption("Solo.3v3.Cost", 1); + + if (sAZTH->GetAZTHPlayer(player)->isPvP()) + cost = 0; + + AddGossipItemFor(player,GOSSIP_ICON_INTERACT_1, "|TInterface/ICONS/Achievement_Arena_2v2_7:30|t Create new Solo arena team", GOSSIP_SENDER_MAIN, 1, "Create new solo arena team?", cost, false); + } + else + { + if (!player->InBattlegroundQueueForBattlegroundQueueType((BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_3v3_SOLO)) + { + //AddGossipItemFor(player,GOSSIP_ICON_INTERACT_1, "Queue up for 1vs1 Wargame\n", GOSSIP_SENDER_MAIN, 20); + AddGossipItemFor(player,GOSSIP_ICON_INTERACT_1, "|TInterface/ICONS/Achievement_Arena_3v3_5:30|t Queue up for 3vs3 Arena Solo\n", GOSSIP_SENDER_MAIN, 2); + AddGossipItemFor(player,GOSSIP_ICON_CHAT, "|TInterface/ICONS/Achievement_Arena_2v2_7:30|t Disband Arena team", GOSSIP_SENDER_MAIN, 5, "Are you sure?", 0, false); + } + + AddGossipItemFor(player,GOSSIP_ICON_CHAT, "|TInterface/ICONS/INV_Misc_Coin_01:30|t Show statistics", GOSSIP_SENDER_MAIN, 4); + } + + AddGossipItemFor(player,GOSSIP_ICON_CHAT, "|TInterface/ICONS/INV_Misc_Coin_03:30|t How to Use NPC?", GOSSIP_SENDER_MAIN, 8); + + AddGossipItemFor(player,GOSSIP_ICON_CHAT, infoQueue.str().c_str(), GOSSIP_SENDER_MAIN, 0); + SendGossipMenuFor(player, 60015, me->GetGUID()); + return true; + } + + + + bool OnGossipSelect(Player* player, Creature* me, uint32 /*uiSender*/, uint32 uiAction) + { + if (!player || !me) + return true; + + player->PlayerTalkClass->ClearMenus(); + + switch (uiAction) + { + case 1: // Create new Arenateam + { + if (sConfigMgr->GetOption("Solo.3v3.MinLevel", 80) <= player->getLevel()) + { + int cost = sConfigMgr->GetOption("Solo.3v3.Cost", 1); + + if (sAZTH->GetAZTHPlayer(player)->isPvP()) + cost = 0; + + if (cost >= 0 && player->GetMoney() >= uint32(cost) && CreateArenateam(player, me)) + player->ModifyMoney(sConfigMgr->GetOption("Solo.3v3.Cost", 1) * -1); + } + else + { + ChatHandler(player->GetSession()).PSendSysMessage("You need level %u+ to create an arena team.", sConfigMgr->GetOption("Solo.3v3.MinLevel", 80)); + } + + CloseGossipMenuFor(player); + return true; + } + break; + + case 2: // 3v3 Join Queue Arena (rated) + { + // check Deserter debuff + if (player->HasAura(26013) && (sConfigMgr->GetOption("Solo.3v3.CastDeserterOnAfk", true) || sConfigMgr->GetOption("Solo.3v3.CastDeserterOnLeave", true))) + { + WorldPacket data; + sBattlegroundMgr->BuildGroupJoinedBattlegroundPacket(&data, ERR_GROUP_JOIN_BATTLEGROUND_DESERTERS); + player->GetSession()->SendPacket(&data); + } + else + if (ArenaCheckFullEquipAndTalents(player) && JoinQueueArena(player, me, true, ARENA_TYPE_3v3_SOLO) == false) + ChatHandler(player->GetSession()).SendSysMessage("Something went wrong while joining queue. Already in another queue?"); + + CloseGossipMenuFor(player); + return true; + } + + case 3: // Leave Queue + { + if (player->InBattlegroundQueueForBattlegroundQueueType((BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_3v3_SOLO)) + { + uint8 arenaType = ARENA_TYPE_3v3_SOLO; + + WorldPacket Data; + Data << arenaType << (uint8)0x0 << (uint32)BATTLEGROUND_AA << (uint16)0x0 << (uint8)0x0; + player->GetSession()->HandleBattleFieldPortOpcode(Data); + CloseGossipMenuFor(player); + + } + return true; + } + + case 4: // get statistics + { + ArenaTeam* at = sArenaTeamMgr->GetArenaTeamById(player->GetArenaTeamId(ArenaTeam::GetSlotByType(ARENA_TEAM_SOLO_3v3))); + if (at) { + std::stringstream s; + s << "Rating: " << at->GetStats().Rating; + s << "\nPersonal Rating: " << player->GetArenaPersonalRating(ArenaTeam::GetSlotByType(ARENA_TEAM_SOLO_3v3)); + s << "\nRank: " << at->GetStats().Rank; + s << "\nSeason Games: " << at->GetStats().SeasonGames; + s << "\nSeason Wins: " << at->GetStats().SeasonWins; + s << "\nWeek Games: " << at->GetStats().WeekGames; + s << "\nWeek Wins: " << at->GetStats().WeekWins; + + ChatHandler(player->GetSession()).PSendSysMessage("%s", s.str().c_str()); + } + return true; + } + case 5: // Disband arenateam + { + WorldPacket Data; + Data << (uint32)player->GetArenaTeamId(ArenaTeam::GetSlotByType(ARENA_TEAM_SOLO_3v3)); + player->GetSession()->HandleArenaTeamLeaveOpcode(Data); + ChatHandler(player->GetSession()).PSendSysMessage("Arena team deleted!"); + CloseGossipMenuFor(player); + return true; + } + break; + + case 8: // Script Info + { + AddGossipItemFor(player,GOSSIP_ICON_CHAT, "Click on Create new 3v3 SoloQ Arena team", GOSSIP_SENDER_MAIN, uiAction); + AddGossipItemFor(player,GOSSIP_ICON_CHAT, "Join 3v3 SoloQ Arena and ready!", GOSSIP_SENDER_MAIN, uiAction); + AddGossipItemFor(player,GOSSIP_ICON_CHAT, "Enjoy!", GOSSIP_SENDER_MAIN, uiAction); + AddGossipItemFor(player,GOSSIP_ICON_CHAT, "<- Back", GOSSIP_SENDER_MAIN, 7); + SendGossipMenuFor(player, 68, me->GetGUID()); + return true; + } + break; + } + + OnGossipHello(player, me); + return true; + } + +private: + int cache3v3Queue[MAX_TALENT_CAT]; + uint32 lastFetchQueueList; + + bool ArenaCheckFullEquipAndTalents(Player* player) + { + if (!player) + return false; + + if (!sConfigMgr->GetOption("Arena.CheckEquipAndTalents", true)) + return true; + + std::stringstream err; + + if (player->GetFreeTalentPoints() > 0) + err << "You have currently " << player->GetFreeTalentPoints() << " free talent points. Please spend all your talent points before queueing arena.\n"; + + Item* newItem = NULL; + for (uint8 slot = EQUIPMENT_SLOT_START; slot < EQUIPMENT_SLOT_END; ++slot) + { + if (slot == EQUIPMENT_SLOT_OFFHAND || slot == EQUIPMENT_SLOT_RANGED || slot == EQUIPMENT_SLOT_TABARD || slot == EQUIPMENT_SLOT_BODY) + continue; + + newItem = player->GetItemByPos(INVENTORY_SLOT_BAG_0, slot); + if (newItem == NULL) + { + err << "Your character is not fully equipped.\n"; + break; + } + } + + if (err.str().length() > 0) + { + ChatHandler(player->GetSession()).SendSysMessage(err.str().c_str()); + return false; + } + return true; + } + + bool JoinQueueArena(Player* player, Creature* me, bool isRated, uint8 arenatype) + { + if (!player || !me) + return false; + + if (sConfigMgr->GetOption("Solo.3v3.MinLevel", 80) > player->getLevel()) + return false; + + uint8 arenaslot = ArenaTeam::GetSlotByType(ARENA_TEAM_SOLO_3v3); + uint32 arenaRating = 0; + uint32 matchmakerRating = 0; + + // ignore if we already in BG or BG queue + if (player->InBattleground() || player->InBattlegroundQueue()) + return false; + + //[AZTH] + if (!sAZTH->GetAZTHPlayer(player)->canJoinQueue(AZTH_QUEUE_ARENA)) + return false; + //[/AZTH] + + //check existance + Battleground* bg = sBattlegroundMgr->GetBattlegroundTemplate(BATTLEGROUND_AA); + if (!bg) + { + sLog->outError("Battleground: template bg (all arenas) not found"); + return false; + } + + if (DisableMgr::IsDisabledFor(DISABLE_TYPE_BATTLEGROUND, BATTLEGROUND_AA, NULL)) + { + ChatHandler(player->GetSession()).PSendSysMessage(LANG_ARENA_DISABLED); + return false; + } + + BattlegroundTypeId bgTypeId = bg->GetBgTypeID(); + BattlegroundQueueTypeId bgQueueTypeId = BattlegroundMgr::BGQueueTypeId(bgTypeId, arenatype); + PvPDifficultyEntry const* bracketEntry = GetBattlegroundBracketByLevel(bg->GetMapId(), player->getLevel()); + if (!bracketEntry) + return false; + + // check if already in queue + if (player->GetBattlegroundQueueIndex(bgQueueTypeId) < PLAYER_MAX_BATTLEGROUND_QUEUES) + //player is already in this queue + return false; + // check if has free queue slots + if (!player->HasFreeBattlegroundQueueId()) + return false; + + uint32 ateamId = 0; + + if (isRated) + { + ateamId = player->GetArenaTeamId(arenaslot); + ArenaTeam* at = sArenaTeamMgr->GetArenaTeamById(ateamId); + if (!at) + { + player->GetSession()->SendNotInArenaTeamPacket(arenatype); + return false; + } + + // get the team rating for queueing + arenaRating = at->GetRating(); + matchmakerRating = sSolo->GetAverageMMR(at); + // the arenateam id must match for everyone in the group + + if (arenaRating <= 0) + arenaRating = 1; + } + + BattlegroundQueue& bgQueue = sBattlegroundMgr->GetBattlegroundQueue(bgQueueTypeId); + bg->SetRated(isRated); + + GroupQueueInfo* ginfo = bgQueue.AddGroup(player, nullptr, bracketEntry, isRated, false, arenaRating, matchmakerRating, ateamId); + uint32 avgTime = bgQueue.GetAverageQueueWaitTime(ginfo); + uint32 queueSlot = player->AddBattlegroundQueueId(bgQueueTypeId); + + // send status packet (in queue) + WorldPacket data; + sBattlegroundMgr->BuildBattlegroundStatusPacket(&data, bg, queueSlot, STATUS_WAIT_QUEUE, avgTime, 0, arenatype, player->GetTeamId()); //?? + player->GetSession()->SendPacket(&data); + + sBattlegroundMgr->ScheduleArenaQueueUpdate(arenatype, bgQueueTypeId, bracketEntry->GetBracketId()); + + sScriptMgr->OnPlayerJoinArena(player); + + return true; + } + + bool CreateArenateam(Player* player, Creature* me) + { + if (!player || !me) + return false; + + uint8 slot = ArenaTeam::GetSlotByType(ARENA_TEAM_SOLO_3v3); + + // Check if player is already in an arena team + if (player->GetArenaTeamId(slot)) + { + player->GetSession()->SendArenaTeamCommandResult(ERR_ARENA_TEAM_CREATE_S, player->GetName(), "", ERR_ALREADY_IN_ARENA_TEAM); + return false; + } + + // Teamname = playername + // if team name exist, we have to choose another name (playername + number) + int i = 1; + std::stringstream teamName; + //teamName << "3vs3 Solo - " << player->GetName(); + teamName << player->GetName(); + do + { + if (sArenaTeamMgr->GetArenaTeamByName(teamName.str()) != NULL) // teamname exist, so choose another name + { + teamName.str(std::string()); + teamName << player->GetName() << i++; + } + else + break; + } while (i < 100); // should never happen + + // Create arena team + ArenaTeam* arenaTeam = new ArenaTeam(); + + if (!arenaTeam->Create(player->GetGUID(), ARENA_TEAM_SOLO_3v3, teamName.str(), 4283124816, 45, 4294242303, 5, 4294705149)) + { + delete arenaTeam; + return false; + } + + // Register arena team + sArenaTeamMgr->AddArenaTeam(arenaTeam); + + ChatHandler(player->GetSession()).SendSysMessage("Arena team successful created!"); + + return true; + } + + void fetchQueueList() + { + if (GetMSTimeDiffToNow(lastFetchQueueList) < 1000) + return; // prevent spamming + lastFetchQueueList = getMSTime(); + + BattlegroundQueue* queue = &sBattlegroundMgr->GetBattlegroundQueue((BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_3v3_SOLO); + //BattlegroundQueue* queue = &sBattlegroundMgr->m_BattlegroundQueues[BATTLEGROUND_QUEUE_3v3_SOLO]; + + for (int i = 0; i < MAX_TALENT_CAT; i++) + cache3v3Queue[i] = 0; + + for (int i = BG_BRACKET_ID_FIRST; i <= BG_BRACKET_ID_LAST; i++) + { + for (int j = 0; j < 2; j++) + { + for (auto queueInfo : queue->m_QueuedGroups[i][j]) + { + if (queueInfo->IsInvitedToBGInstanceGUID) // Skip when invited + continue; + + for (auto const& playerGuid : queueInfo->Players) + { + Player* _player = ObjectAccessor::FindPlayer(playerGuid); + if (!_player) + continue; + + Solo3v3TalentCat plrCat = sSolo->GetTalentCatForSolo3v3(_player); // get talent cat + cache3v3Queue[plrCat]++; + } + } + } + } + } +}; + +class Solo3v3_BG : public BGScript +{ +public: + Solo3v3_BG() : BGScript("Solo3v3_BG") { } + + void OnQueueUpdate(BattlegroundQueue* queue, BattlegroundBracketId bracket_id, bool isRated, uint32 /* arenaRatedTeamId */) override + { + if (queue->GetArenaType() != (ArenaType)ARENA_TYPE_3v3_SOLO) + return; + + Battleground* bg_template = sBattlegroundMgr->GetBattlegroundTemplate(queue->GetBGTypeID()); + if (!bg_template) + return; + + PvPDifficultyEntry const* bracketEntry = GetBattlegroundBracketById(bg_template->GetMapId(), bracket_id); + if (!bracketEntry) + return; + + // Solo 3v3 + if (sSolo->CheckSolo3v3Arena(queue, bracket_id)) + { + uint32 minLvl = bracketEntry->minLevel; + uint32 maxLvl = bracketEntry->maxLevel; + + Battleground* arena = sBattlegroundMgr->CreateNewBattleground(queue->GetBGTypeID(), minLvl, maxLvl, queue->GetArenaType(), isRated); + if (!arena) + return; + + // Create temp arena team and store arenaTeamId + ArenaTeam* arenaTeams[BG_TEAMS_COUNT]; + sSolo->CreateTempArenaTeamForQueue(queue, arenaTeams); + + // invite those selection pools + for (uint32 i = 0; i < BG_TEAMS_COUNT; i++) + for (auto const& citr : queue->m_SelectionPools[TEAM_ALLIANCE + i].SelectedGroups) + { + citr->ArenaTeamId = arenaTeams[i]->GetId(); + BattlegroundMgr::InviteGroupToBG(citr, arena, citr->teamId); + } + + // Override ArenaTeamId to temp arena team (was first set in InviteGroupToBG) + arena->SetArenaTeamIdForTeam(TEAM_ALLIANCE, arenaTeams[TEAM_ALLIANCE]->GetId()); + arena->SetArenaTeamIdForTeam(TEAM_HORDE, arenaTeams[TEAM_HORDE]->GetId()); + + // Set matchmaker rating for calculating rating-modifier on EndBattleground (when a team has won/lost) + arena->SetArenaMatchmakerRating(TEAM_ALLIANCE, sSolo->GetAverageMMR(arenaTeams[TEAM_ALLIANCE])); + arena->SetArenaMatchmakerRating(TEAM_HORDE, sSolo->GetAverageMMR(arenaTeams[TEAM_HORDE])); + + // start bg + arena->StartBattleground(); + } + } + + void OnBattlegroundUpdate(Battleground* bg, uint32 /*diff*/) override + { + if (bg->GetStatus() != STATUS_IN_PROGRESS || !bg->isArena()) + return; + + sSolo->CheckStartSolo3v3Arena(bg); + } +}; + +void AddSC_Solo_3v3_Arena() +{ + new npc_solo3v3(); + new Solo3v3_BG(); +} diff --git a/src/ChallengeMode/ChallengeModeMgr.cpp b/src/ChallengeMode/ChallengeModeMgr.cpp new file mode 100644 index 0000000..b73677b --- /dev/null +++ b/src/ChallengeMode/ChallengeModeMgr.cpp @@ -0,0 +1,45 @@ +#include "ChallengeModeMgr.h" +#include "Config.h" +#include "AzthUtils.h" + +ChallengeModeMgr* ChallengeModeMgr::instance() +{ + static ChallengeModeMgr instance; + return &instance; +} + +void ChallengeModeMgr::LoadConfig(bool /* reload */) +{ + this->deltaLevelHigher = sConfigMgr->GetOption("ChallengeMode.noReward.deltaLevelHigher", 0); + this->deltaLevelLower = sConfigMgr->GetOption("ChallengeMode.noReward.deltaLevelLower", 0); + this->startLevelHigher = sConfigMgr->GetOption("ChallengeMode.noReward.startLevelHigher", 0); + this->startLevelLower = sConfigMgr->GetOption("ChallengeMode.noReward.startLevelLower", 0); +} + +bool ChallengeModeMgr::isEligibleForReward(Player const *player) { + if (!player->IsInWorld()) + return true; + + // disable rewards only for dungeons + if (!player->GetMap()->IsDungeon() && !player->GetMap()->IsRaid()) + return true; + + WorldLocation pos = WorldLocation(player->GetMapId(), player->GetPositionX(), player->GetPositionY(), player->GetPositionZ(), player->GetOrientation()); + uint32 posLvl=sAzthUtils->getPositionLevel(false, player->GetMap(), pos); + + uint32 level = player->getLevel(); + + // disable reward when the player has a higher level than the one specified in the configs + // it can be useful to force players doing the challenges at the correct level (E.G. during the levelling) + if (this->startLevelLower && this->startLevelLower >= posLvl && level > posLvl && deltaLevelLower >= level - posLvl) { + return false; + } + + // disable reward when the player has a lower level than the one specified in the configs + // it can be useful to avoid power-levelling/character-towing or to avoid cheating on certain progression-based servers + if (this->startLevelHigher && posLvl >= this->startLevelHigher && posLvl > level && posLvl - level >= deltaLevelHigher) { + return false; + } + + return true; +} diff --git a/src/ChallengeMode/ChallengeModeMgr.h b/src/ChallengeMode/ChallengeModeMgr.h new file mode 100644 index 0000000..79eebb3 --- /dev/null +++ b/src/ChallengeMode/ChallengeModeMgr.h @@ -0,0 +1,45 @@ +/* + * Copyright (С) since 2019 Andrei Guluaev (Winfidonarleyan/Kargatum) https://github.com/Winfidonarleyan + */ + +#ifndef _CHALLENGEMODE_MGR_H_ +#define _CHALLENGEMODE_MGR_H_ + +#include "Common.h" +#include "Player.h" + +class ChallengeModeMgr +{ +public: + static ChallengeModeMgr* instance(); + + void LoadConfig(bool reload); + + bool isEligibleForReward(Player const *player); + + [[nodiscard]] uint32 getStartLevelHigher() { + return this->startLevelHigher; + } + + [[nodiscard]] uint32 getDeltaLevelLower() { + return this->deltaLevelLower; + } + + [[nodiscard]] uint32 getStartLevelLower() { + return this->startLevelLower; + } + + [[nodiscard]] uint32 getDeltaLevelHigher() { + return this->deltaLevelHigher; + } + +private: + uint32 deltaLevelHigher = 0; + uint32 startLevelHigher = 0; + uint32 deltaLevelLower = 0; + uint32 startLevelLower = 0; +}; + +#define sChallengeMode ChallengeModeMgr::instance() + +#endif // _CHALLENGEMODE_MGR_H_ diff --git a/src/ChallengeMode/ChallengeModeScript.cpp b/src/ChallengeMode/ChallengeModeScript.cpp new file mode 100644 index 0000000..6882e7c --- /dev/null +++ b/src/ChallengeMode/ChallengeModeScript.cpp @@ -0,0 +1,135 @@ +#include "ScriptMgr.h" +#include "InstanceScript.h" +#include "InstanceSaveMgr.h" +#include "Player.h" +#include "Map.h" +#include "WorldSession.h" +#include "Group.h" +#include "AzthUtils.h" +#include "AZTH.h" +#include "ChallengeModeMgr.h" + +class AzthUtils; + +class ChallengeModeWorld : public WorldScript +{ +public: + ChallengeModeWorld() : WorldScript("ChallengeModeWorld") { } + + void OnAfterConfigLoad(bool reload) override + { + sChallengeMode->LoadConfig(reload); + } +}; +class ChallengeModeMisc : public MiscScript +{ +public: + ChallengeModeMisc() : MiscScript("ChallengeModeMisc") { } + + void OnAfterLootTemplateProcess(Loot* /* loot */, LootTemplate const* /* tab */, LootStore const& /* store */, Player* /* lootOwner */, bool /* personal */, bool /* noEmptyError */, uint16 /* lootMode */) override + { + // if (!sConfigMgr->GetOption("Azth.Multiplies.Drop.Enable", false)) + // return; + + //Dangerous since it can drops multiple quest items + //[AZTH-DISABLED] give another loot process if done with correct level + // if (sAzthUtils->isEligibleForBonusByArea(lootOwner) && (&store == &LootTemplates_Gameobject || &store == &LootTemplates_Creature)) + // { + // sAZTH->AddAZTHLoot(loot); + // tab->Process(*loot, store, lootMode, lootOwner); + // } + } +}; + +class ChallengeModePlayer : public PlayerScript +{ +public: + ChallengeModePlayer() : PlayerScript("ChallengeModePlayer") { + + } + + bool OnBeforeAchiComplete(Player* player, AchievementEntry const* /* achievement */) override + { + return sChallengeMode->isEligibleForReward(player); + } + + bool OnBeforeCriteriaProgress(Player* player, AchievementCriteriaEntry const* /*criteria*/) override + { + return sChallengeMode->isEligibleForReward(player); + } + + void OnGiveXP(Player* player, uint32& amount, Unit* /* victim */) override + { + if (!sChallengeMode->isEligibleForReward(player)) { + amount = 0; + } + } +}; + +class ChallengeModeGlobal : public GlobalScript +{ +public: + + ChallengeModeGlobal() : GlobalScript("ChallengeModeGlobal") { + } + + bool OnBeforeLootEqualChanced(Player const* player, LootStoreItemList /* EqualChanced */, Loot& /* loot */, LootStore const& /* store */) override + { + if (!sChallengeMode->isEligibleForReward(player)) { + return false; + } + + return true; + } + + bool OnItemRoll(Player const* player, LootStoreItem const */* item */, float &chance, Loot &/* loot */, LootStore const& /* store */) override + { + if (!sChallengeMode->isEligibleForReward(player)) { + chance = 0; + return false; + } + + // [AZTH-DISABLED] + // this check assume that sAzthUtils->isEligibleForBonusByArea(player) has been already checked + // if (!sAZTH->GetAZTHLoot(&loot)) + // return; + + // if ((loot.quest_items.size() + loot.items.size()) >= MAX_NR_LOOT_ITEMS) + // { + // chance = 0; + // return; + // } + + // if (chance >= 100.0f || chance <= 0) + // return; + + // if (!player->GetMap()->IsDungeon() && !player->GetMap()->IsRaid()) + // return; + + // if (item->mincount >= 0) + // { + // ItemTemplate const* i = sObjectMgr->GetItemTemplate(item->itemid); + + // if (i && i->Quality < ITEM_QUALITY_RARE) + // return; + // } + + // if (&store != &LootTemplates_Gameobject && &store != &LootTemplates_Creature) + // return; + + // if (chance < 20.f) + // chance += 20.f; + + // sAZTH->DeleteAZTHLoot(&loot); + + return true; + } + +}; + +void AddSC_challengemode() { + new ChallengeModeMisc(); + new ChallengeModeGlobal(); + new ChallengeModePlayer(); + new ChallengeModeWorld(); +} diff --git a/src/GuildHouse/GuildHouse.cpp b/src/GuildHouse/GuildHouse.cpp new file mode 100644 index 0000000..4510ee5 --- /dev/null +++ b/src/GuildHouse/GuildHouse.cpp @@ -0,0 +1,485 @@ +/* + * Copyright (C) 2009-2010 Trilogy + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/** + * + * @File : GuildHouse.cpp + * + * @Authors : Lazzalf + * + * @Date : 31/03/2010 + * + * @Version : 0.1 + * + **/ + +#include "GuildHouse.h" +#include "ObjectMgr.h" +#include "GuildMgr.h" +#include "Guild.h" +#include "ObjectAccessor.h" +#include "MapMgr.h" + +GuildHouseObject GHobj; + +GuildHouseObject::GuildHouseObject() +{ + GH_map.clear(); + GH_AddHouse.clear(); + mGuildGuardID.clear(); +} + +bool GuildHouseObject::CheckGuildID(uint32 guild_id) +{ + if (!guild_id) + return false; + + if (!sGuildMgr->GetGuildById(guild_id)) + { + // sLog->outDebug(LOG_FILTER_GUILDHOUSE,"The guild %u not found", guild_id); + return false; + } + return true; +} + +bool GuildHouseObject::CheckGuildHouse(uint32 guild_id) +{ + GuildHouseMap::const_iterator itr = GH_map.find(guild_id); + if (itr == GH_map.end()) + return false; + return true; +} + +// bool GuildHouseObject::ChangeGuildHouse(uint32 guild_id, uint32 newid) +// { +// if (newid == 0) // Vendi +// { +// GuildHouseMap::iterator itr = GH_map.find(guild_id); +// if (itr == GH_map.end()) +// return true; + +// sLog->outDetail("Guild %u sold guild house %u! ", guild_id, itr->second.Id); +// QueryResult result = ExtraDatabase.PQuery("UPDATE `guildhouses` SET `guildId` = 0 WHERE `guildId` = %u", guild_id); +// RemoveGuildHouseAdd(itr->second.Id); +// GH_map.erase(guild_id); +// } +// else // Compra +// { +// QueryResult result; +// GuildHouseMap::iterator itr = GH_map.find(guild_id); + +// result = ExtraDatabase.PQuery("SELECT `x`, `y`, `z`, `map`, `minguildsize`, `price` FROM `guildhouses` WHERE `id` = %u", newid); +// if (!result) +// return false; // Id doesn't valid + +// if (!(itr == GH_map.end())) +// ChangeGuildHouse(guild_id, 0); // remove old House + +// uint32 id = newid; +// Field *fields = result->Fetch(); +// float x = fields[0].GetFloat(); +// float y = fields[1].GetFloat(); +// float z = fields[2].GetFloat(); +// uint32 map = fields[3].GetUInt32(); +// uint32 minguildsize = fields[4].GetUInt32(); +// uint32 price = fields[5].GetUInt32(); + +// uint32 add = 1; + +// result = CharacterDatabase.PQuery("SELECT `GuildHouse_Add` FROM `gh_guildadd` WHERE `guildId` = %u", guild_id); +// if (result) +// { +// Field *fields = result->Fetch(); +// add = fields[0].GetUInt32(); +// } +// else +// { +// CharacterDatabase.PQuery("INSERT INTO `gh_guildadd` (`guildId`,`GuildHouse_Add`) VALUES ( %u , 1 )", guild_id); +// } + +// GuildHouse NewGH(guild_id, id, x, y, z, map, minguildsize, price, add); +// GH_map[guild_id] = NewGH; + +// sLog->outDetail("Guild %u bought guild house %u! ", guild_id, newid); +// result = ExtraDatabase.PQuery("UPDATE `guildhouses` SET `guildId` = %u WHERE `id` = %u", guild_id, newid); +// AddGuildHouseAdd(newid, add, guild_id); +// } +// return true; +// } + +bool GuildHouseObject::GetGuildHouseLocation(uint32 guild_id, float &x, float &y, float &z, float &o, uint32 &map) +{ + GuildHouseMap::const_iterator itr = GH_map.find(guild_id); + if (itr == GH_map.end()) + return false; + x = itr->second.m_X; + y = itr->second.m_Y; + z = itr->second.m_Z; + o = itr->second.m_orient; + map = itr->second.m_map; + return true; +} + +bool GuildHouseObject::GetGuildHouseMap(uint32 guild_id, uint32 &map) +{ + GuildHouseMap::const_iterator itr = GH_map.find(guild_id); + if (itr == GH_map.end()) + return false; + map = itr->second.m_map; + return true; +} + +uint32 GuildHouseObject::GetGuildHouse_Add(uint32 guild_id) +{ + GuildHouseMap::const_iterator itr = GH_map.find(guild_id); + if (itr == GH_map.end()) + return 0; + return itr->second.GuildHouse_Add; +}; + +bool GuildHouseObject::Add_GuildhouseAdd(uint32 guild_id, uint32 add) +{ + GuildHouseMap::iterator itr = GH_map.find(guild_id); + if (itr == GH_map.end()) + return false; + uint32 NewAdd = (uint32(1) << (add-1)); + itr->second.AddGuildHouse_Add(NewAdd); + return true; +}; + +bool GuildHouseObject::RemoveGuildHouseAdd(uint32 id) +{ + for (uint32 i = 1; i < NPC_MAX; i++) + { + uint32 find = ((id << 16) | i); + GH_Add::iterator itr = GH_AddHouse.find(find); + if (itr == GH_AddHouse.end()) + continue; + if (!(itr->second.spawned)) // Do not despawn if it is already despawned + continue; + gh_Item_Vector::iterator itr2 = itr->second.AddCre.begin(); + for (; itr2 != itr->second.AddCre.end(); itr2++) + { + if (CreatureData const* data = sObjectMgr->GetCreatureData(*itr2)) + { + sObjectMgr->RemoveCreatureFromGrid(*itr2, data); + Creature* pCreature = sMapMgr->FindMap(data->mapid, 0)->GetCreature(ObjectGuid::Create(*itr2, data->id)); + if (pCreature) + pCreature->AddObjectToRemoveList(); + } + } + itr2 = itr->second.AddGO.begin(); + for (; itr2 != itr->second.AddGO.end(); itr2++) + { + if (GameObjectData const* data = sObjectMgr->GetGOData(*itr2)) + { + sObjectMgr->RemoveGameobjectFromGrid(*itr2, data); + GameObject* pGameobject = sMapMgr->FindMap(data->mapid, 0)->GetGameObject(ObjectGuid::Create(*itr2, data->id)); + if (pGameobject) + pGameobject->AddObjectToRemoveList(); + } + } + itr->second.spawned = false; + } + return true; +} + +bool GuildHouseObject::AddGuildHouseAdd(uint32 id, uint32 add, uint32 guild) +{ + for (uint8 i = 1; i < NPC_MAX; i++) + { + if (((uint32)1 << (i-1)) & add) + { + uint32 find = ((id << 16) | i); + GH_Add::iterator itr = GH_AddHouse.find(find); + if (itr == GH_AddHouse.end()) + continue; + if (itr->second.spawned) // Do not respawn if it is already spawned + continue; + gh_Item_Vector::iterator itr2 = itr->second.AddGO.begin(); + for (; itr2 != itr->second.AddGO.end(); itr2++) + { + if (GameObjectData const* data = sObjectMgr->GetGOData(*itr2)) + { + sObjectMgr->AddGameobjectToGrid(*itr2, data); + + Map* map = const_cast(sMapMgr->CreateBaseMap(data->mapid)); + + if (!map->Instanceable() && map->IsGridLoaded(data->posX, data->posY)) + { + GameObject* pGameobject = new GameObject; + //sLog->outDebug("Spawning gameobject %u", itr2->first); + if (!pGameobject->LoadFromDB(*itr2, map)) + delete pGameobject; + else + { + if (pGameobject->isSpawnedByDefault()) + map->AddToMap(pGameobject); + } + } + } + } + itr2 = itr->second.AddCre.begin(); + for (; itr2 != itr->second.AddCre.end(); itr2++) + { + if (CreatureData const* data = sObjectMgr->GetCreatureData(*itr2)) + { + sObjectMgr->AddCreatureToGrid(*itr2, data); + + if (i == 2) //Guard + { + UpdateGuardMap(*itr2, guild); + // sLog->outDebug(LOG_FILTER_GUILDHOUSE, "GuildHouse: insert guard with GUID: %u,Guild: %u", *itr2, guild); + } + + mGHUnits[(*itr2)] = new GH_unit(guild, i); + + Map* map = const_cast(sMapMgr->CreateBaseMap(data->mapid)); + + if (!map->Instanceable() && map->IsGridLoaded(data->posX, data->posY)) + { + Creature* pCreature = new Creature; + //sLog->outDebug("Spawning creature %u",itr2->first); + if (!pCreature->LoadFromDB(*itr2, map)) + delete pCreature; + else + { + map->AddToMap(pCreature); + } + } + } + + } + itr->second.spawned = true; + } + } + return true; +} + +void GuildHouseObject::LoadGuildHouse() +{ + // GH_map.clear(); + // QueryResult result = ExtraDatabase.Query("SELECT `id`,`guildId`,`x`,`y`,`z`,`map`,`minguildsize`,`price` FROM `guildhouses` ORDER BY guildId ASC"); + + // if (!result) + // { + // sLog->outError("Loaded 0 Guildhouses - NO RESULT FROM QUERY"); + // return; + // } + + // do + // { + // Field *fields = result->Fetch(); + + // uint32 id = fields[0].GetUInt32(); + // uint32 guildID = fields[1].GetUInt32(); + // float x = fields[2].GetFloat(); + // float y = fields[3].GetFloat(); + // float z = fields[4].GetFloat(); + // uint32 map = fields[5].GetUInt32(); + // uint32 min_member = fields[6].GetUInt32(); + // uint32 cost = fields[7].GetUInt32(); + // uint32 add = 1; + + // if(guildID) + // { + // if (!CheckGuildID(guildID)) + // { + // sLog->outError("Guild %u does not exist - guildhouse not loaded", guildID); + // continue; + // } + + + // QueryResult result2 = CharacterDatabase.PQuery("SELECT `GuildHouse_Add` FROM `gh_guildadd` WHERE `guildId` = %u", guildID); + // if (result2) + // { + // sLog->outError("Loaded guildadd information for guild %u", guildID); + // Field *fields2 = result2->Fetch(); + // add = fields2[0].GetUInt32(); + // } + + // GuildHouse NewGH(guildID, id, x, y, z, map, min_member, cost, add); + // GH_map[guildID] = NewGH; + + // RemoveGuildHouseAdd(id); + // AddGuildHouseAdd(id, add, guildID); + // } + // else + // { + // sLog->outError("Loading GH for guild %u failed - NOT VALID", guildID); + // // do not despawn objects/npc if a guild house does not have a guild, so both GM and players can see + // // a guild house fully if It is not purchased + // //RemoveGuildHouseAdd(id); + // } + // } + // while (result->NextRow()); + + + sLog->outDetail("Loaded %lu Guildhouses", GH_map.size()); +} + +void GuildHouseObject::LoadGuildHouseAdd() +{ + GH_AddHouse.clear(); + mGuildGuardID.clear(); + + + sLog->outDetail("Loading GuildHouse npcs - objects..."); + + QueryResult result = WorldDatabase.Query("SELECT `guid`,`type`,`id`,`add_type` FROM `guildhouses_add` ORDER BY Id ASC"); + + if (!result) + { + + sLog->outError("Loaded 0 guildhouse npcs - objects"); + return; + } + + do + { + Field *fields = result->Fetch(); + + uint32 guid = fields[0].GetUInt32(); + uint16 type = fields[1].GetUInt16(); + uint16 id = fields[2].GetUInt16(); + uint16 add_type = fields[3].GetUInt16(); + + uint32 find = 0; + find = ( (uint32)id << 16 ) | (uint32)add_type; + if (type == CREATURE) + { + if (!sObjectMgr->GetCreatureData(guid)) + { + sLog->outError("Data for creature %u not present", guid); + continue; + } + GH_AddHouse[find].AddCre.push_back(guid); + } + else if (type == OBJECT) + { + if (!sObjectMgr->GetGOData(guid)) + { + sLog->outError("Data for gameobject %u not present", guid); + continue; + } + GH_AddHouse[find].AddGO.push_back(guid); + } + } + while (result->NextRow()); + + sLog->outDetail("Loaded %lu Guildhouse objects", GH_AddHouse.size()); +} + +uint32 GuildHouseObject::GetGuildByGuardID(uint32 guid) +{ + GuildGuardID::const_iterator itr = mGuildGuardID.find(guid); + if (itr == mGuildGuardID.end()) + return 0; + return itr->second; +} + +uint32 GuildHouseObject::GetGuildByGuardID(Creature* guardia) +{ + //override della funzione presunta causa del bug delle guardie + uint32 guid = guardia->GetGUID().GetCounter(); + GuildGuardID::const_iterator i = mGuildGuardID.begin(); + for (; i != mGuildGuardID.end(); ++i) + { + if((*i).first == guid) + return (*i).second; + } + return 0; +} + +GH_unit* GuildHouseObject::GetUnitByGuid(uint32 guid) { + if (mGHUnits.find(guid) != mGHUnits.end()) + return mGHUnits[guid]; + + return nullptr; +} + +void GuildHouseObject::UpdateGuardMap(uint32 guid, uint32 guild) +{ + GuildGuardID::iterator itr = mGuildGuardID.find(guid); + if (itr == mGuildGuardID.end()) + mGuildGuardID[guid] = guild; + else + itr->second = guild; +} + +GuildHouse::GuildHouse(uint32 guild_id, uint32 guild_add) +{ + GuildId = guild_id; + GuildHouse_Add = guild_add; + Id = 0; + m_X = 0; + m_Y = 0; + m_Z = 0; + m_orient = 0; + m_map = 0; + min_member = 0; + price = 0; +} + +GuildHouse::GuildHouse(uint32 newGuildId, uint32 newId, float x, float y, float z, uint32 map, uint32 member, uint32 cost, uint32 add) +{ + GuildId = newGuildId; + Id = newId; + m_X = x; + m_Y = y; + m_Z = z; + m_map = map; + min_member = member; + price = cost; + m_orient = 0; + GuildHouse_Add = add; +} + +void GuildHouse::AddGuildHouse_Add(uint32 NewAdd) +{ + GuildHouse_Add |= NewAdd; + QueryResult result = CharacterDatabase.PQuery("UPDATE `gh_guildadd` SET `GuildHouse_Add` = %u WHERE `guildId` = %u", GuildHouse_Add, GuildId); + GHobj.AddGuildHouseAdd(Id, NewAdd, GuildId); +} + +void GuildHouseObject::LoadGuildHouseSystem() +{ + GHobj.LoadGuildHouseAdd(); + GHobj.LoadGuildHouse(); +} + +void GuildHouseObject::ControlGuildHouse() +{ + for (GuildHouseMap::iterator itr = GH_map.begin(); itr != GH_map.end(); itr++) + { + if (Guild* pGuild = sGuildMgr->GetGuildById((*itr).first)) + if (pGuild->GetMemberSize() < (*itr).second.min_member) + { + // GHobj.ChangeGuildHouse((*itr).first, 0); + CharacterDatabaseTransaction trans = CharacterDatabase.BeginTransaction(); + + if (!pGuild->ModifyBankMoney(trans, (*itr).second.price * 75000, true)) + { + continue; + } + + CharacterDatabase.CommitTransaction(trans); + sLog->outDetail("GuildHouse %u set to 0 because guild %u has low members ( < %u )", (*itr).first, pGuild->GetId(), (*itr).second.min_member ); + } + } +} diff --git a/src/GuildHouse/GuildHouse.h b/src/GuildHouse/GuildHouse.h new file mode 100644 index 0000000..6d3b374 --- /dev/null +++ b/src/GuildHouse/GuildHouse.h @@ -0,0 +1,130 @@ +/* + * Copyright (C) 2009-2010 Trilogy + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/** + * + * @File : GuildHouse.h + * + * @Authors : Lazzalf + * + * @Date : 31/03/2010 + * + * @Version : 0.1 + * + **/ + +#ifndef SC_GUILDHOUSE_SYSTEM +#define SC_GUILDHOUSE_SYSTEM + +#include "Common.h" +#include "Creature.h" + +enum GuildAdd_Type +{ + NPC_BASIC = 0x00000001, + NPC_GUARD = 0x00000002, + NPC_BUFFMAN = 0x00000004, + NPC_DUMMY = 0x00000005, + NPC_TELE = 0x00000008, +}; +#define NPC_MAX 32 + +enum GH_Item_type +{ + CREATURE = 0, + OBJECT = 1, +}; + +class GuildHouse +{ + public: + GuildHouse(uint32 guild_id = 0, uint32 guild_add = 0); + GuildHouse(uint32 guildID, uint32 id, float x, float y, float z, uint32 map, uint32 member, uint32 cost, uint32 add); + + uint32 GuildId; + uint32 Id; + uint32 GuildHouse_Add; + float m_X, m_Y, m_Z, m_orient; + uint32 m_map; + uint32 min_member; + uint32 price; + + void AddGuildHouse_Add(uint32 NewAdd); +}; + +typedef std::vector gh_Item_Vector; +class GH_Item +{ + public: + gh_Item_Vector AddCre; + gh_Item_Vector AddGO; + bool spawned; + GH_Item() + { + AddCre.clear(); + AddGO.clear(); + spawned = true; + } +}; + +class GH_unit{ +public: + uint32 guild; + uint8 type; + GH_unit(uint32 guild, uint8 type) { + this->guild = guild; + this->type = type; + } +}; + +typedef std::unordered_map GuildHouseMap; +typedef std::unordered_map GH_Add; +typedef std::unordered_map GuildHouseUnits; +typedef std::unordered_map GuildGuardID; + +class GuildHouseObject +{ + public: + GuildHouseMap GH_map; + GH_Add GH_AddHouse; + GuildGuardID mGuildGuardID; + GuildHouseUnits mGHUnits; + + GuildHouseObject(); + + void LoadGuildHouse(); + void LoadGuildHouseAdd(); + bool CheckGuildID(uint32 guild_id); + bool CheckGuildHouse(uint32 guild_id); + bool GetGuildHouseLocation(uint32 guild_id, float &x, float &y, float &z, float &o, uint32 &map); + bool GetGuildHouseMap(uint32 guild_id, uint32 &map); + uint32 GetGuildHouse_Add(uint32 guild_id); + bool Add_GuildhouseAdd(uint32 guild_id, uint32 add); + // bool ChangeGuildHouse(uint32 guild_id, uint32 newid); + bool RemoveGuildHouseAdd(uint32 id); + bool AddGuildHouseAdd(uint32 id, uint32 add, uint32 guild); + void UpdateGuardMap(uint32 guid, uint32 guild); + uint32 GetGuildByGuardID(uint32 guid); + uint32 GetGuildByGuardID(Creature* guardia); + GH_unit* GetUnitByGuid(uint32 guid); + void ControlGuildHouse(); + void LoadGuildHouseSystem(); +}; + +extern GuildHouseObject GHobj; +#endif \ No newline at end of file diff --git a/src/GuildHouse/Teleport.cpp b/src/GuildHouse/Teleport.cpp new file mode 100644 index 0000000..5f3fadd --- /dev/null +++ b/src/GuildHouse/Teleport.cpp @@ -0,0 +1,374 @@ +/** + * + * @File : sc_npc_teleport.cpp + * + * @Authors : Wilibald09 + * + * @Date : 28/08/2008 + * + * @Version : 1.2 + * + **/ + +#include "Teleport.h" +#include "Player.h" + +#define TELE nsNpcTel::CatDest +#define PAGE nsNpcTel::Page +#define PAGEI PAGE::Instance + +nsNpcTel::VCatDest nsNpcTel::TabCatDest; + +uint32 PAGE::operator [] (Player * const player) const +{ + for (VInst_t i(0); i < m_TabInstance.size(); ++i) + { + if (m_TabInstance[i].GetPlayer() == player) + return m_TabInstance[i].GetPageId(); + } + return 0; +} + +PAGE::Instance & PAGE::operator () (Player * const player) +{ + for (VInst_t i(0); i < m_TabInstance.size(); ++i) + { + if (m_TabInstance[i].GetPlayer() == player) + return m_TabInstance[i]; + } + m_TabInstance.push_back(Instance(player)); + return m_TabInstance.back(); +} + +PAGE::Instance & PAGEI::operator = (const uint32 &id) +{ + m_PageId = id; + return *this; +} + +PAGE::Instance & PAGEI::operator ++ (void) +{ + ++m_PageId; + return *this; +} + +PAGE::Instance PAGEI::operator ++ (int32) +{ + Instance tmp (*this); + ++m_PageId; + return tmp; +} + +PAGE::Instance & PAGEI::operator -- (void) +{ + --m_PageId; + return *this; +} + +PAGE::Instance PAGEI::operator -- (int32) +{ + Instance tmp (*this); + --m_PageId; + return tmp; +} + +TELE::CatDest(const uint32 &id, const std::string &name, + const Flag &flag, const uint64 &data0, const uint32 &data1) + : m_id(id), m_name(name), m_flag(flag), m_data0(data0), m_data1(data1) +{ + m_TabDest.clear(); +} + +std::string TELE::GetName(const bool IsGM /* = false */) const +{ + if (!IsGM || m_flag != FLAG_TEAM) + return m_name; + + switch (m_data0) + { + case TELEPORT_TEAM_HORDE: return std::string(m_name + " (H)"); + case TELEPORT_TEAM_ALLIANCE: return std::string(m_name + " (A)"); + } + return m_name; +} + +bool TELE::IsAllowedToTeleport(Player * const player) const +{ + if (player->IsGameMaster()) + { + if (m_flag == FLAG_GMLEVEL) + return player->GetSession()->GetSecurity() >= m_data0; + return true; + } + + switch (m_flag) + { + case FLAG_TEAM: + switch (m_data0) + { + case TELEPORT_TEAM_HORDE: return player->GetTeamId() == TEAM_HORDE; + case TELEPORT_TEAM_ALLIANCE: return player->GetTeamId() == TEAM_ALLIANCE; + case TELEPORT_TEAM_ALL: return true; + } + + case FLAG_GUILD: + return player->GetGuildId() == m_data0; + + case FLAG_GMLEVEL: + return player->GetSession()->GetSecurity() >= m_data0; + + case FLAG_ISGM: + return player->IsGameMaster(); + + case FLAG_ACCOUNT: + return player->GetSession()->GetAccountId() == m_data0; + + case FLAG_LEVEL: + return player->getLevel() >= m_data0; + + case FLAG_ITEM: + return player->HasItemCount(m_data0, m_data1, true); + + case FLAG_QUEST: + if (m_data1 < MAX_QUEST_STATUS) + return player->GetQuestStatus(m_data0) == m_data1; + return player->GetQuestRewardStatus(m_data0); + + case FLAG_GENDER: + return player->getGender() == m_data0; + + case FLAG_RACE: + return player->getRace() == m_data0; + + case FLAG_CLASS: + return player->getClass() == m_data0; + + case FLAG_REPUTATION: + return player->GetReputationRank(m_data0) >= int32(m_data1); + + case FLAG_PLAYER: + return player->GetGUID().GetCounter() == m_data0; + default: + return true; + } + + sLog->outDebug(LOG_FILTER_TSCR, "Invalid flag (category: %u). Important problem...", GetCatID()); + return false; +} + +uint32 TELE::CountOfCategoryAllowedBy(Player * const player) +{ + uint32 count (0); + for (VCatDest_t i(0); i < TabCatDest.size(); ++i) + { + if (TabCatDest[i].IsAllowedToTeleport(player)) + ++count; + } + return count; +} + +bool nsNpcTel::IsValidData(const uint32 &cat, const Flag &flag, + const uint64 &data0, const uint32 &data1) +{ + switch(flag) + { + case FLAG_TEAM: + if (data1) + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (category: %u).", cat); + if (data0 < MAX_FLAG_TEAM) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (Team) (category: %u).", cat); + return false; + + case FLAG_GUILD: + if (data1) + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (category: %u).", cat); + if (data0) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (GuildID) (category: %u).", cat); + return false; + + case FLAG_GMLEVEL: + if (data1) + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (category: %u).", cat); + if (0 < data0 && data0 < 256) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (GmLevel) (category: %u).", cat); + return false; + + case FLAG_ISGM: + if (data0) + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (category: %u).", cat); + if (data1) + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (category: %u).", cat); + return true; + + case FLAG_ACCOUNT: + if (data1) + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (category: %u).", cat); + if (data0) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (AccountID) (category: %u).", cat); + return false; + + case FLAG_LEVEL: + if (data1) + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (category: %u).", cat); + if (0 < data0 && data0 < 256) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (Level) (category: %u).", cat); + return false; + + case FLAG_ITEM: + if (!data0) + { + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (ItemID) (category: %u).", cat); + return false; + } + if (data1) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (Item Count) (category: %u).", cat); + return false; + + case FLAG_QUEST: + if (!data0) + { + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (QuestID) (category: %u).", cat); + return false; + } + if (data1 < MAX_QUEST_STATUS + 1) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (Quest Status) (category: %u).", cat); + return false; + + case FLAG_GENDER: + if (data1) + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (category: %u).", cat); + if (data0 < GENDER_NONE) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (Gender) (category: %u).", cat); + return false; + + case FLAG_RACE: + if (data1) + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (category: %u).", cat); + if (0 < data0 && data0 < MAX_RACES) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (Race) (category: %u).", cat); + return false; + + case FLAG_CLASS: + if (data1) + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (category: %u).", cat); + if (0 < data0 && data0 < MAX_CLASSES) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (Class) (category: %u).", cat); + return false; + + case FLAG_REPUTATION: + if (!data0) + { + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (Faction/Reputation) (category: %u).", cat); + return false; + } + if (data1 <= REP_EXALTED) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (Faction/Reputation) (category: %u).", cat); + return false; + + case FLAG_PLAYER: + if (data1) + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data1 (category: %u).", cat); + if (data0) + return true; + sLog->outDebug(LOG_FILTER_TSCR, "Invalid data0 (PlayerGuid) (category: %u).", cat); + return false; + default: + return false; + } + + //sLog->outDebug(LOG_FILTER_TSCR, "Invalid flag (category: %u).", cat); + return false; +} + +void nsNpcTel::LoadNpcTele() +{ + const char *Table[] = + { + "custom_npc_tele_category", + "custom_npc_tele_destination", + "custom_npc_tele_association", + }; + + QueryResult result = WorldDatabase.PQuery( + "SELECT `flag`, `data0`, `data1`, `cat_id`, C.`name` `namecat`, D.`name` `namedest`, " + // 0 1 2 3 4 5 + "`pos_X`, `pos_Y`, `pos_Z`, `orientation`, `map`, `level`, `cost` " + // 6 7 8 9 10 11 12 + "FROM `%s` C, `%s` D, `%s` A " + "WHERE C.`id` = `cat_id` AND D.`id` = `dest_id` " + "ORDER BY `namecat`, `cat_id`, `namedest`", Table[0], Table[1], Table[2]); + + nsNpcTel::TabCatDest.clear(); + + if (result) + { + //sLog->outString( "TSCR: Loading %s, %s and %s...", Table[0], Table[1], Table[2]); + + uint32 catid = 0; + uint32 nbDest = 0; + bool IsValidCat = true; + bool FirstTime = true; + + do + { + Field *fields = result->Fetch(); + + if (!IsValidCat && catid == fields[3].GetUInt32() && !FirstTime) + continue; + + IsValidCat = true; + FirstTime = false; + + if (!nsNpcTel::IsValidData(fields[3].GetUInt32(), (nsNpcTel::Flag)fields[0].GetUInt8(), + fields[1].GetUInt64(), fields[2].GetUInt32())) + { + IsValidCat = false; + catid = fields[3].GetUInt32(); + continue; + } + + if (catid != fields[3].GetUInt32()) + { + catid = fields[3].GetUInt32(); + nsNpcTel::CatDest categorie (catid, fields[4].GetString(), (nsNpcTel::Flag)fields[0].GetUInt8(), + fields[1].GetUInt64(), fields[2].GetUInt32()); + nsNpcTel::TabCatDest.push_back(categorie); + } + + nsNpcTel::Dest item = + { + fields[5].GetString(), // Name + fields[6].GetFloat(), // X + fields[7].GetFloat(), // Y + fields[8].GetFloat(), // Z + fields[9].GetFloat(), // Orientation + fields[10].GetUInt16(), // Map + fields[11].GetUInt8(), // Level + fields[12].GetUInt32(), // Cost + }; + + nsNpcTel::TabCatDest.back().AddDest(item); + ++nbDest; + } while (result->NextRow()); + + // sLog->outString(""); + // sLog->outString("TSCR: >> Loaded %u npc_teleport.", nbDest); + } + //else sLog->outString("TSCR: WARNING >> Loaded 0 npc_teleport."); +} + + +#undef TELE +#undef PAGE +#undef PAGEI diff --git a/src/GuildHouse/Teleport.h b/src/GuildHouse/Teleport.h new file mode 100644 index 0000000..e71eb80 --- /dev/null +++ b/src/GuildHouse/Teleport.h @@ -0,0 +1,150 @@ +/** + * + * @File : sc_npc_teleport.h + * + * @Authors : Wilibald09 + * + * @Date : 19/08/2008 + * + * @Version : 1.2 + * + **/ + +#ifndef TELEPORT_H +#define TELEPORT_H + +#include "Common.h" +#include + +class Player; + +namespace nsNpcTel +{ + // Different types of permissions + enum Flag + { + FLAG_TEAM = 0, + FLAG_GUILD = 1, + FLAG_GMLEVEL = 2, + FLAG_ISGM = 3, + FLAG_ACCOUNT = 4, + FLAG_LEVEL = 5, + FLAG_ITEM = 6, + FLAG_QUEST = 7, + FLAG_GENDER = 8, + FLAG_RACE = 9, + FLAG_CLASS = 10, + FLAG_REPUTATION = 11, + FLAG_PLAYER = 12, + MAX_FLAG, + }; + + // Different parameters of FLAG_TEAM + enum + { + TELEPORT_TEAM_ALL = 0, + TELEPORT_TEAM_ALLIANCE = 1, + TELEPORT_TEAM_HORDE = 2, + MAX_FLAG_TEAM, + }; + + // Structure representing the destinations + struct Dest + { + std::string m_name; + float m_X, m_Y, m_Z, m_orient; + uint16 m_map; + uint8 m_level; + uint32 m_cost; + }; + + // Class representing the categories of destinations + class CatDest + { + public: + + typedef std::vector VDest; + typedef VDest::size_type VDest_t; + + CatDest(const uint32 &id, const std::string &name, + const Flag &flag, const uint64 &data0, const uint32 &data1); + + void AddDest (const Dest &item) { m_TabDest.push_back(item); } + Dest GetDest (const uint32 &id) const { return m_TabDest[id]; } + uint32 GetCatID (void) const { return m_id; } + uint32 size (void) const { return m_TabDest.size(); } + + std::string GetName(const bool IsGM = false) const; + bool IsAllowedToTeleport(Player * const player) const; + + static uint32 CountOfCategoryAllowedBy(Player * const player); + + private: + + uint32 m_id; + std::string m_name; + Flag m_flag; + uint64 m_data0; + uint32 m_data1; + VDest m_TabDest; + }; + + // Class page for current player + class Page + { + protected: + + // Class instance for current player + class Instance + { + public: + + Instance(Player * const player, const uint32 &PageId = 0) + : m_player(player), m_PageId(PageId) {} + + Instance & operator = (const uint32 &id); + Instance & operator ++ (void); + Instance operator ++ (int32); + Instance & operator -- (void); + Instance operator -- (int32); + + uint32 GetPageId(void) const { return m_PageId; } + Player * GetPlayer(void) const { return m_player; } + + private: + + Player *m_player; + uint32 m_PageId; + }; + + + public: + + typedef std::vector VInst; + typedef VInst::size_type VInst_t; + + Page(void) { m_TabInstance.clear(); } + + Instance & operator () (Player * const player); + uint32 operator [] (Player * const player) const; + + + private: + + VInst m_TabInstance; + }; + + typedef std::vector VCatDest; + typedef VCatDest::size_type VCatDest_t; + + // Verification of data integrity + bool IsValidData(const uint32 &cat, const Flag &flag, + const uint64 &data0, const uint32 &data1); + + extern VCatDest TabCatDest; + + // Loading contents of database + void LoadNpcTele(); +} + +#endif diff --git a/src/GuildHouse/npc_guildhouse.cpp b/src/GuildHouse/npc_guildhouse.cpp new file mode 100644 index 0000000..98d880c --- /dev/null +++ b/src/GuildHouse/npc_guildhouse.cpp @@ -0,0 +1,1279 @@ +/* + * Copyright (C) 2009-2010 Trilogy + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/** + * + * @File : GuildHouse_npc.cpp + * + * @Authors : ? + * @Modific : Lazzalf + * + * @Date : 31/03/2010 + * + * @Version : 0.1 + * + * edited by sceicco + **/ + +#include "GuildHouse.h" +#include "ObjectAccessor.h" +#include "MapMgr.h" +#include "ObjectMgr.h" +#include "GuildMgr.h" +#include "ScriptMgr.h" +#include "World.h" +#include "Guild.h" +#include "Teleport.h" +#include "AccountMgr.h" +#include "AZTH.h" +#include "ScriptedGossip.h" +#include "ScriptedCreature.h" + +//[AZTH] +#include "AzthUtils.h" + +#define SPELL_ID_PASSIVE_RESURRECTION_SICKNESS 15007 + +#define MSG_GOSSIP_MARRIED "Vai in viaggio di nozze" +#define MSG_GOSSIP_TELE "Teletrasportami Alla sede di gilda" +#define MSG_GOSSIP_BUY "Crea Sede di gilda" +#define MSG_GOSSIP_SELL "Vendi sede di gilda" +#define MSG_GOSSIP_ADD "Compra aggiunte per la sede di Gilda" +#define MSG_GOSSIP_NEXTPAGE "Successivo -->" +#define MSG_GOSSIP_CLOSE "Chiudi" +#define MSG_INCOMBAT "Sei in combat!" +#define MSG_NOGUILDHOUSE "La tua gilda non possiede una casa!" +#define MSG_NOFREEGH "Purtroppo tutte le case sono occupate oppure non hai abbastanza membri per acquistarne una di quelle libere." +#define MSG_NOADDGH "Non hai altre GHAdd da comprare" +#define MSG_ALREADYHAVEGH "La tua gilda possiede gia' una sede." +#define MSG_ALREADYHAVEGHADD "La tua gilda possiede gia' questo GHAdd." +#define MSG_NOTENOUGHMONEY "Non hai abbastanza soldi per acquistare. Hai bisogno di %u gold." +#define MSG_NOTENOUGHGUILDMEMBERS "Non hai abbastanza membri in gilda per acquistare la casa. Hai bisogno di %u membri." +#define MSG_GHOCCUPIED "Sfortunatamente questa casa e' gia' occupata." +#define MSG_CONGRATULATIONS "Congratulazioni! La sede e'stata creata." +#define MSG_SOLD "La gilda e' stata venduta. ??? ???? %u ??????." +#define MSG_NOTINGUILD "Non sei in nessuna gilda." +#define MSG_CONFIRM_BUY "Conferma l'acquisto" +#define MSG_NEGATE_BUY "Nega l'acquisto" + +#define CODE_SELL "SELL" +#define MSG_CODEBOX_SELL "Scrivi \"" CODE_SELL "\" in maiuscolo per vendere la casa, dopo premi accept." + +#define OFFSET_CONFIRM_BUY_ID_TO_ACTION 2000 +#define OFFSET_CONFIRM_BUY_ADD_ID_TO_ACTION 5000 +#define OFFSET_GH_ID_TO_ACTION 7000 +#define OFFSET_SHOWBUY_FROM 12000 +#define OFFSET_GH_ADD_ID_TO_ACTION 17000 +#define OFFSET_SHOWBUY_FROM_ADD 20000 + +#define ACTION_MARRIED 1000 +#define ACTION_TELE 1001 +#define ACTION_SHOW_BUYLIST 1002 +#define ACTION_SELL_GUILDHOUSE 1003 +#define ACTION_SHOW_BUYADD_LIST 1004 +#define ACTION_CLOSE 1005 +#define ACTION_NEGATE_BUY 1011 +#define ACTION_NEGATE_BUY_ADD 1021 + +#define ICON_GOSSIP_BALOON 0 +#define ICON_GOSSIP_WING 2 +#define ICON_GOSSIP_BOOK 3 +#define ICON_GOSSIP_WHEEL1 4 +#define ICON_GOSSIP_WHEEL2 5 +#define ICON_GOSSIP_GOLD 6 +#define ICON_GOSSIP_BALOONDOTS 7 +#define ICON_GOSSIP_TABARD 8 +#define ICON_GOSSIP_XSWORDS 9 + +#define GOSSIP_COUNT_MAX 7 + +class npc_guild_master : public CreatureScript +{ + public: + npc_guild_master() : CreatureScript("guildmaster") { } + + bool isPlayerGuildLeader(Player *player) + { + return ((player->GetRank() == 0) && (player->GetGuildId() != 0)); + }; + + bool isPlayerHasGuildhouseAdd(Player *player, Creature *_creature, uint32 add, bool whisper = false) + { + uint32 guildadd = GHobj.GetGuildHouse_Add(player->GetGuildId()); + bool comprato = ((uint32(1) << (add - 1)) & guildadd); + if (comprato) + { + if (whisper) + { + char msg[200]; + sprintf(msg, MSG_ALREADYHAVEGHADD); + _creature->Whisper(MSG_ALREADYHAVEGHADD, LANG_UNIVERSAL, player, true); + } + return true; + } + return false; + }; + + bool isPlayerHasGuildhouse(Player *player, Creature *_creature, bool whisper = false) + { + if (!player || !_creature) + return false; + + uint32 map; + + if (GHobj.GetGuildHouseMap(player->GetGuildId(), map)) + { + if (whisper) + { + //whisper to player "already have etc..." + char msg[200]; + sprintf(msg, MSG_ALREADYHAVEGH); + _creature->Whisper(msg, LANG_UNIVERSAL, player); + } + return true; + } + else + return false; + }; + + void teleportPlayerToGuildHouse(Player *player, Creature *_creature) + { + if (player->GetGuildId() == 0) + { + //if player has no guild + _creature->Whisper(MSG_NOTINGUILD, LANG_UNIVERSAL, player); + return; + } + + if (!player->getAttackers().empty()) + { + //if player in combat + _creature->Say(MSG_INCOMBAT, LANG_UNIVERSAL, 0); + return; + } + + float x, y, z, o; + uint32 map; + + if (GHobj.GetGuildHouseLocation(player->GetGuildId(), x, y, z, o, map)) + { + //teleport player to the specified location + player->TeleportTo(map, x, y, z, o); + } + else + _creature->Whisper(MSG_NOGUILDHOUSE, LANG_UNIVERSAL, player); + }; + + bool showBuyList(Player *player, Creature *_creature, uint32 showFromId = 0) + { + if (!player) + return false; + + //show not occupied guildhouses + + QueryResult result; + + uint32 guildsize = 1; + + Guild * guild = sGuildMgr->GetGuildById(player->GetGuildId()); + if (guild) + guildsize = guild->GetMemberSize(); + + if (player->IsGameMaster()) + guildsize = 20000; + + result = CharacterDatabase.PQuery("SELECT `id`, `comment`, `price` FROM `guildhouses` WHERE `guildId` = 0 AND (`faction` = 3 OR `faction` = %u) AND `id` > %u AND `minguildsize` <= %u ORDER BY `id` ASC LIMIT %u", + (player->GetTeamId(true) == TEAM_HORDE)?1:0, showFromId, guildsize, GOSSIP_COUNT_MAX); + + if (result) + { + uint32 guildhouseId = 0; + std::string comment = ""; + uint32 price = 0; + do + { + Field *fields = result->Fetch(); + if (!fields) + break; + + guildhouseId = fields[0].GetInt32(); + comment = fields[1].GetString(); + price = fields[2].GetUInt32(); + + std::stringstream complete_comment; + complete_comment << "price " << price << " - " << comment; + + //send comment as a gossip item + + //transmit guildhouseId in Action variable + AddGossipItemFor(player,ICON_GOSSIP_TABARD, complete_comment.str().c_str(), GOSSIP_SENDER_MAIN, + guildhouseId + OFFSET_GH_ID_TO_ACTION); + + } while (result->NextRow()); + + if (result->GetRowCount() == GOSSIP_COUNT_MAX) + { + //assume that we have additional page + + //add link to next GOSSIP_COUNT_MAX items + AddGossipItemFor(player,ICON_GOSSIP_BALOONDOTS, MSG_GOSSIP_NEXTPAGE, GOSSIP_SENDER_MAIN, + guildhouseId + OFFSET_SHOWBUY_FROM); + } + AddGossipItemFor(player,ICON_GOSSIP_BALOONDOTS, MSG_GOSSIP_CLOSE, GOSSIP_SENDER_MAIN, + ACTION_CLOSE); + + SendGossipMenuFor(player,DEFAULT_GOSSIP_MESSAGE, _creature->GetGUID()); + + return true; + } + else + { + if (showFromId == 0) + { + //all guildhouses are occupied + _creature->Whisper(MSG_NOFREEGH, LANG_UNIVERSAL, player); + CloseGossipMenuFor(player); + } + else + { + //this condition occurs when COUNT(guildhouses) % GOSSIP_COUNT_MAX == 0 + //just show GHs from beginning + showBuyList(player, _creature, 0); + } + } + + return false; + }; + + bool showBuyAddList(Player *player, Creature *_creature, uint32 showFromId = 0) + { + if (!player) + return false; + + QueryResult result; + + uint32 guildsize = 1; + uint32 guild_add = GHobj.GetGuildHouse_Add(player->GetGuildId()); + + Guild *guild = sGuildMgr->GetGuildById(player->GetGuildId()); + if (guild) + guildsize = guild->GetMemberSize(); + + if (player->IsGameMaster()) + guildsize = 20000; + + result = WorldDatabase.PQuery("SELECT `add_type`, `comment`, `price` FROM `guildhouses_addtype` WHERE `minguildsize` <= %u AND `add_type` > %u ORDER BY `add_type` ASC LIMIT %u", + guildsize, showFromId, GOSSIP_COUNT_MAX); + + if (result) + { + uint32 add_typeId = 0; + std::string comment = ""; + uint32 price = 0; + do + { + Field *fields = result->Fetch(); + + add_typeId = fields[0].GetInt32(); + comment = fields[1].GetString(); + price = fields[2].GetUInt32(); + + uint32 comprato = ((uint32(1) << (add_typeId - 1)) & guild_add); + + std::stringstream complete_comment; + if(comprato) + complete_comment << "(Comprato) "<< comment; + else + complete_comment << "price " << price << " - " << comment; + + //send comment as a gossip item + //transmit guildhouseId in Action variable + AddGossipItemFor(player,ICON_GOSSIP_TABARD, complete_comment.str().c_str(), GOSSIP_SENDER_MAIN, + add_typeId + OFFSET_GH_ADD_ID_TO_ACTION); + + } while (result->NextRow()); + + if (result->GetRowCount() == GOSSIP_COUNT_MAX) + { + //assume that we have additional page + //add link to next GOSSIP_COUNT_MAX items + AddGossipItemFor(player,ICON_GOSSIP_BALOONDOTS, MSG_GOSSIP_NEXTPAGE, GOSSIP_SENDER_MAIN, + add_typeId + OFFSET_SHOWBUY_FROM_ADD); + } + + AddGossipItemFor(player,ICON_GOSSIP_BALOONDOTS, MSG_GOSSIP_CLOSE, GOSSIP_SENDER_MAIN, + ACTION_CLOSE); + + SendGossipMenuFor(player,DEFAULT_GOSSIP_MESSAGE, _creature->GetGUID()); + + return true; + } + else + { + if (showFromId == 0) + { + //all no GhAdd to Show + _creature->Whisper(MSG_NOADDGH, LANG_UNIVERSAL, player); + CloseGossipMenuFor(player); + } + else + { + //just show GHsAdd from beginning + showBuyAddList(player, _creature, 0); + } + } + return false; + }; + + bool confirmBuy(Player *player, Creature *_creature, uint32 guildhouseId) + { + if (!player) + return false; + + if (isPlayerHasGuildhouse(player, _creature, true)) + { + //player already have GH + return false; + } + + AddGossipItemFor(player,ICON_GOSSIP_GOLD, MSG_CONFIRM_BUY, GOSSIP_SENDER_MAIN, + guildhouseId + OFFSET_CONFIRM_BUY_ID_TO_ACTION); + AddGossipItemFor(player,ICON_GOSSIP_BALOONDOTS, MSG_NEGATE_BUY, GOSSIP_SENDER_MAIN, + ACTION_NEGATE_BUY); + + SendGossipMenuFor(player,DEFAULT_GOSSIP_MESSAGE, _creature->GetGUID()); + + return true; + }; + + void buyGuildhouse(Player *player, Creature *_creature, uint32 guildhouseId) + { + if (!player) + return; + + if (isPlayerHasGuildhouse(player, _creature, true)) + { + //player already have GH + return; + } + + QueryResult result; + + result = CharacterDatabase.PQuery("SELECT `price` FROM `guildhouses` WHERE `id` = %u AND `guildId` = 0" , guildhouseId); + + if (!result) + { + _creature->Whisper(MSG_GHOCCUPIED, LANG_UNIVERSAL, player); + return; + } + + Field *fields = result->Fetch(); + int32 price = fields[0].GetInt32(); + + if (player->GetMoney() < uint32(price) * 10000) + { + //show how much money player need to buy GH (in gold) + char msg[200]; + sprintf(msg, MSG_NOTENOUGHMONEY, price); + _creature->Whisper(msg, LANG_UNIVERSAL, player); + return; + } + + // GHobj.ChangeGuildHouse(player->GetGuildId(), guildhouseId); + + player->ModifyMoney(-(price*10000)); + _creature->Say(MSG_CONGRATULATIONS, LANG_UNIVERSAL); + }; + + bool confirmBuyAdd(Player *player, Creature *_creature, uint32 gh_Add) + { + if (!player) + return false; + + AddGossipItemFor(player,ICON_GOSSIP_GOLD, MSG_CONFIRM_BUY, GOSSIP_SENDER_MAIN, + gh_Add + OFFSET_CONFIRM_BUY_ADD_ID_TO_ACTION); + AddGossipItemFor(player,ICON_GOSSIP_BALOONDOTS, MSG_NEGATE_BUY, GOSSIP_SENDER_MAIN, + ACTION_NEGATE_BUY_ADD); + + SendGossipMenuFor(player,DEFAULT_GOSSIP_MESSAGE, _creature->GetGUID()); + + return true; + }; + + void buyGuildhouseAdd(Player *player, Creature *_creature, uint32 gh_Add) + { + if (!player) + return; + + if (isPlayerHasGuildhouseAdd(player, _creature, gh_Add, true)) + { + //player already have GHAdd + return; + } + + QueryResult result = WorldDatabase.PQuery("SELECT `price` FROM `guildhouses_addtype` WHERE `add_type` = %u ", gh_Add); + if (!result) + return; + + Field *fields = result->Fetch(); + int32 price = fields[0].GetInt32(); + + if (player->GetMoney() < uint32(price) * 10000) + { + //show how much money player need to buy GH (in gold) + char msg[200]; + sprintf(msg, MSG_NOTENOUGHMONEY, price); + _creature->Whisper(msg, LANG_UNIVERSAL, player); + return; + } + + GHobj.Add_GuildhouseAdd(player->GetGuildId(), gh_Add); + + player->ModifyMoney(-(price*10000)); + }; + + void sellGuildhouse(Player *player, Creature *_creature) + { + if (!player) + return; + + if (isPlayerHasGuildhouse(player, _creature)) + { + QueryResult result; + + result = CharacterDatabase.PQuery("SELECT `price` FROM `guildhouses` WHERE `guildId` = %u", player->GetGuildId()); + + if (!result) + return; + + Field *fields = result->Fetch(); + uint32 price = fields[0].GetUInt32(); + + // GHobj.ChangeGuildHouse(player->GetGuildId(),0); + + uint32 sellPrice = ( (price * GOLD) / 100 ) * 75; // 75% of refunding + player->ModifyMoney(sellPrice); + //display message e.g. "here your money etc." + char msg[200]; + sprintf(msg, MSG_SOLD, price * 3 / 4); + _creature->Whisper(msg, LANG_UNIVERSAL, player); + } + }; + + bool OnGossipHello(Player *player, Creature *_creature) + { + if (!player) + return true; + /* + if (isPlayerMarried(player)) + AddGossipItemFor(player,ICON_GOSSIP_BALOON, MSG_GOSSIP_MARRIED, + GOSSIP_SENDER_MAIN, ACTION_MARRIED); + */ + AddGossipItemFor(player,ICON_GOSSIP_BALOON, MSG_GOSSIP_TELE, + GOSSIP_SENDER_MAIN, ACTION_TELE); + + if (isPlayerGuildLeader(player)) + { + //show additional menu for guild leader + AddGossipItemFor(player,ICON_GOSSIP_GOLD, MSG_GOSSIP_BUY, GOSSIP_SENDER_MAIN, ACTION_SHOW_BUYLIST); + if (isPlayerHasGuildhouse(player, _creature)) + { + //and additional for guildhouse owner + AddGossipItemFor(player,ICON_GOSSIP_GOLD, MSG_GOSSIP_SELL, GOSSIP_SENDER_MAIN, ACTION_SELL_GUILDHOUSE, MSG_CODEBOX_SELL, 0, true); + AddGossipItemFor(player,ICON_GOSSIP_GOLD, MSG_GOSSIP_ADD, GOSSIP_SENDER_MAIN, ACTION_SHOW_BUYADD_LIST); + } + } + SendGossipMenuFor(player,DEFAULT_GOSSIP_MESSAGE, _creature->GetGUID()); + return true; + }; + + + bool OnGossipSelect(Player *player, Creature *_creature, uint32 sender, uint32 action ) + { + player->PlayerTalkClass->ClearMenus(); + + if (sender != GOSSIP_SENDER_MAIN) + return false; + + switch (action) + { + case ACTION_TELE: + //teleport player to GH + CloseGossipMenuFor(player); + teleportPlayerToGuildHouse(player, _creature); + break; + case ACTION_SHOW_BUYLIST: + //show list of GHs which currently not occupied + showBuyList(player, _creature); + break; + case ACTION_SHOW_BUYADD_LIST: + //show list of GHs add + showBuyAddList(player, _creature); + break; + case ACTION_CLOSE: + CloseGossipMenuFor(player); + break; + case ACTION_NEGATE_BUY: + CloseGossipMenuFor(player); + break; + case ACTION_NEGATE_BUY_ADD: + CloseGossipMenuFor(player); + break; + default: + if (action > OFFSET_SHOWBUY_FROM_ADD) + { + showBuyAddList(player, _creature, action - OFFSET_SHOWBUY_FROM_ADD); + } + else if (action > OFFSET_GH_ADD_ID_TO_ACTION) + { + confirmBuyAdd(player, _creature, action - OFFSET_GH_ADD_ID_TO_ACTION); + } + else if (action > OFFSET_SHOWBUY_FROM) + { + showBuyList(player, _creature, action - OFFSET_SHOWBUY_FROM); + } + else if (action > OFFSET_GH_ID_TO_ACTION) + { + confirmBuy(player, _creature, action - OFFSET_GH_ID_TO_ACTION); + } + else if (action > OFFSET_CONFIRM_BUY_ADD_ID_TO_ACTION) + { + //player clicked on buy list + //get guildhouseAddId from action + //guildhouseAddId = action - OFFSET_CONFIRM_BUY_ADD_ID_TO_ACTION + buyGuildhouseAdd(player, _creature, action - OFFSET_CONFIRM_BUY_ADD_ID_TO_ACTION); + CloseGossipMenuFor(player); + player->SaveToDB(false,false); + } + else if (action > OFFSET_CONFIRM_BUY_ID_TO_ACTION) + { + //player clicked on buy list + //get guildhouseId from action + //guildhouseId = action - OFFSET_CONFIRM_BUY_ID_TO_ACTION + buyGuildhouse(player, _creature, action - OFFSET_CONFIRM_BUY_ID_TO_ACTION); + CloseGossipMenuFor(player); + player->SaveToDB(false, false); + } + break; + } + + return true; + }; + + bool OnGossipSelectCode( Player *player, Creature *_creature, + uint32 sender, uint32 action, const char* sCode ) + { + if (sender == GOSSIP_SENDER_MAIN) + { + if (action == ACTION_SELL_GUILDHOUSE) + { + int i = -1; + try + { + //compare code + if (strlen(sCode) + 1 == sizeof CODE_SELL) + i = strcmp(CODE_SELL, sCode); + + } + catch(char* /*str*/) { + //TC_LOG_DEBUG("guildhouses",str); + } + + if (i == 0) + { + //right code + sellGuildhouse(player, _creature); + player->SaveToDB(false,false); + } + CloseGossipMenuFor(player); + return true; + } + } + return false; + }; +}; + +/*######## +# guild_guard +#########*/ + +#define SAY_AGGRO "Nemico individuato! Obiettivo Eliminato!" +#define SAY_WARNING "Attenzione! Ti stai avvicinando ad una sede di gilda. Allontanti o verrai ucciso se ti avvicini ulteriormente" +#define NPC_GUARD_1 5000003 + +class guild_guard : public CreatureScript +{ + public: + guild_guard() : CreatureScript("guild_guard") { } + + bool OnGossipHello(Player* player, Creature* _Creature) + { + uint32 guardguild = GHobj.GetGuildByGuardID(_Creature); + /////////////DEBUG//////////////// + char msg[500]; + if (AccountMgr::IsGMAccount(player->GetSession()->GetSecurity())) + { + _Creature->Whisper("Ciao gm!", LANG_UNIVERSAL, player); //solo gm traduzione non necessaria + if (guardguild) + { + sprintf(msg, "Il mio id di gilda: %u", guardguild); + _Creature->Whisper(msg, LANG_UNIVERSAL, player); + if (_Creature->GetEntry() == NPC_GUARD_1) + _Creature->Whisper("Il mio raggio d'azione: 100y", LANG_UNIVERSAL, player); + else + _Creature->Whisper("Il mio raggio d'azione: 50y", LANG_UNIVERSAL, player); + } + else + _Creature->Whisper("Sono una Guardia Bugga!", LANG_UNIVERSAL, player); + } + + ///////////////////////////////// + uint32 guild = player->GetGuildId(); + if (guardguild && (guild == guardguild || AccountMgr::IsGMAccount(player->GetSession()->GetSecurity()))) + { + if (_Creature->GetAI()) + { + if (_Creature->GetAI()->GetData(0)) + AddGossipItemFor(player,5, "Disable Protection", GOSSIP_SENDER_MAIN, 11); + else + AddGossipItemFor(player,5, "Activate Protection", GOSSIP_SENDER_MAIN, 10); + } + } + AddGossipItemFor(player,5, "Chiudi", GOSSIP_SENDER_MAIN, 12); + SendGossipMenuFor(player,DEFAULT_GOSSIP_MESSAGE, _Creature->GetGUID()); + return true; + }; + + bool OnGossipSelect(Player* player, Creature* _Creature, uint32 sender, uint32 action) + { + player->PlayerTalkClass->ClearMenus(); + + // Main menu + if (sender == GOSSIP_SENDER_MAIN) + { + if (action == 10) + { + if (_Creature->GetAI()) + { + _Creature->GetAI()->SetData(0,1); + _Creature->Yell("Protezione Attivata", LANG_UNIVERSAL); + } + + } + else if (action == 11) + { + if (_Creature->GetAI()) + { + _Creature->GetAI()->SetData(0,0); + _Creature->Yell("Protezione Disattivata", LANG_UNIVERSAL); + } + } + } + CloseGossipMenuFor(player); + return true; + }; + + struct guild_guardAI : public ScriptedAI + { + guild_guardAI(Creature *c) : ScriptedAI(c) + { + activate = true; + + if (me->GetEntry() == NPC_GUARD_1) + { + dist_kill = 100; + dist_warning = 140; + } + else + { + dist_kill = 50; + dist_warning = 70; + } + } + + bool activate; + uint32 Check_Timer; + uint32 dist_kill; + uint32 dist_warning; + uint32 guardguild; + + uint32 GetData(uint32 /*type*/) const override + { + if (activate) + return 1; + else + return 0; + } + + void SetData(uint32 /*id*/, uint32 value) override + { + if (value) + activate = true; + else + activate = false; + } + + void Reset() override + { + Check_Timer = 1000; + guardguild = GHobj.GetGuildByGuardID(me); + + } + + void DamageTaken(Unit* /*attacker*/, uint32& damage, DamageEffectType /*damagetype*/, SpellSchoolMask /*damageSchoolMask*/) override + { + damage = 0; + } + + void UpdateAI(uint32 uiDiff) override + { + if (!activate) + return; + + if (Check_Timer <= uiDiff) + { + + Map::PlayerList const &PlayerList = me->GetMap()->GetPlayers(); + if (!PlayerList.isEmpty()) + for (Map::PlayerList::const_iterator i = PlayerList.begin(); i != PlayerList.end(); ++i) + { + Player* plr = i->GetSource(); + + if (!plr) + continue; + + if (!plr->IsAlive() || plr->GetTransport() || !plr->CanFreeMove()) + continue; + + if (plr->GetSession() && AccountMgr::IsGMAccount(plr->GetSession()->GetSecurity())) + { + continue; + } + + if (plr->GetDistance(me) <= dist_kill) + { + uint32 guild = plr->GetGuildId(); + if (guardguild && guild != guardguild) + { + me->Yell(SAY_AGGRO, LANG_UNIVERSAL); + me->Kill(me,plr); + } + } + else if (plr->GetDistance(me) <= dist_warning) + { + uint32 guild = plr->GetGuildId(); + if (guardguild && guild != guardguild) + { + me->Whisper(SAY_WARNING, LANG_UNIVERSAL, plr); + } + } + } + Check_Timer = 2000; + } else Check_Timer -= uiDiff; + } + }; + + CreatureAI* GetAI(Creature *_Creature) const + { + return new guild_guardAI(_Creature); + }; +}; + +/*######## +# npc_buffnpc +#########*/ + +class npc_buffnpc : public CreatureScript +{ + public: + + npc_buffnpc() : CreatureScript("buffnpc") { } + + bool OnGossipHello(Player *player, Creature *_Creature) + { + //player->SetTaxiCheater(true); + + // Main Menu for Alliance + if ( player->GetTeamId(true) == TEAM_ALLIANCE ) + { + AddGossipItemFor(player, 5, "Remove Res Sickness" , GOSSIP_SENDER_MAIN, 1180); + //AddGossipItemFor(player, 5, "Give me gold" , GOSSIP_SENDER_MAIN, 1185); + //AddGossipItemFor(player, 5, "Give me Soul Shards" , GOSSIP_SENDER_MAIN, 1190); + AddGossipItemFor(player, 5, "Heal me please" , GOSSIP_SENDER_MAIN, 1195); + AddGossipItemFor(player, 5, "Ritual of Souls please" , GOSSIP_SENDER_MAIN, 1200); + AddGossipItemFor(player, 5, "Table please" , GOSSIP_SENDER_MAIN, 1205); + if (player->getLevel() > 69) + { + AddGossipItemFor(player, 5, "Buff me Arcane Intelect" , GOSSIP_SENDER_MAIN, 1210); + AddGossipItemFor(player, 5, "Buff me Mark of the Wild" , GOSSIP_SENDER_MAIN, 1215); + AddGossipItemFor(player, 5, "Buff me Thorns" , GOSSIP_SENDER_MAIN, 1220); + AddGossipItemFor(player, 5, "Buff me Blessing of Sanctuary" , GOSSIP_SENDER_MAIN, 1225); + AddGossipItemFor(player, 5, "Buff me Blessing of Might" , GOSSIP_SENDER_MAIN, 1230); + //AddGossipItemFor(player, 5, "Buff me Greater Blessing of Light" , GOSSIP_SENDER_MAIN, 1235); + AddGossipItemFor(player, 5, "Buff me Blessing of Wisdom" , GOSSIP_SENDER_MAIN, 1240); + AddGossipItemFor(player, 5, "Buff me Blessing of Kings" , GOSSIP_SENDER_MAIN, 1245); + AddGossipItemFor(player, 5, "Buff me Divine Spirit" , GOSSIP_SENDER_MAIN, 1250); + AddGossipItemFor(player, 5, "Buff me Shadow Protection" , GOSSIP_SENDER_MAIN, 1251); + AddGossipItemFor(player, 5, "Buff me Power Word: Fortitude" , GOSSIP_SENDER_MAIN, 1252); + } + } + else // Main Menu for Horde + { + AddGossipItemFor(player, 5, "Remove Res Sickness" , GOSSIP_SENDER_MAIN, 1180); + //AddGossipItemFor(player, 5, "Give me gold" , GOSSIP_SENDER_MAIN, 1185); + //AddGossipItemFor(player, 5, "Give me Soul Shards" , GOSSIP_SENDER_MAIN, 1190); + AddGossipItemFor(player, 5, "Heal me please" , GOSSIP_SENDER_MAIN, 1195); + AddGossipItemFor(player, 5, "Ritual of Souls please" , GOSSIP_SENDER_MAIN, 1200); + AddGossipItemFor(player, 5, "Table please" , GOSSIP_SENDER_MAIN, 1205); + if (player->getLevel() > 69) + { + AddGossipItemFor(player, 5, "Buff me Arcane Intelect" , GOSSIP_SENDER_MAIN, 1210); + AddGossipItemFor(player, 5, "Buff me Mark of the Wild" , GOSSIP_SENDER_MAIN, 1215); + AddGossipItemFor(player, 5, "Buff me Thorns" , GOSSIP_SENDER_MAIN, 1220); + AddGossipItemFor(player, 5, "Buff me Blessing of Sanctuary" , GOSSIP_SENDER_MAIN, 1225); + AddGossipItemFor(player, 5, "Buff me Blessing of Might" , GOSSIP_SENDER_MAIN, 1230); + //AddGossipItemFor(player, 5, "Buff me Greater Blessing of Light" , GOSSIP_SENDER_MAIN, 1235); + AddGossipItemFor(player, 5, "Buff me Blessing of Wisdom" , GOSSIP_SENDER_MAIN, 1240); + AddGossipItemFor(player, 5, "Buff me Blessing of Kings" , GOSSIP_SENDER_MAIN, 1245); + AddGossipItemFor(player, 5, "Buff me Divine Spirit" , GOSSIP_SENDER_MAIN, 1250); + AddGossipItemFor(player, 5, "Buff me Shadow Protection" , GOSSIP_SENDER_MAIN, 1251); + AddGossipItemFor(player, 5, "Buff me Power Word: Fortitude" , GOSSIP_SENDER_MAIN, 1252); + } + } + + SendGossipMenuFor(player,DEFAULT_GOSSIP_MESSAGE,_Creature->GetGUID()); + + return true; + }; + + void SendDefaultMenu_buffnpc(Player *player, Creature *_Creature, uint32 action ) + { + // Not allow in combat + if(!player->getAttackers().empty()) + { + CloseGossipMenuFor(player); + _Creature->Say(MSG_INCOMBAT, LANG_UNIVERSAL); + return; + } + + switch(action) + { + case 1180://Remove Res Sickness + if(!player->HasAura(SPELL_ID_PASSIVE_RESURRECTION_SICKNESS)) + { + OnGossipHello(player, _Creature); + return; + } + + _Creature->CastSpell(player,38588,false); // Healing effect + player->RemoveAurasDueToSpell(SPELL_ID_PASSIVE_RESURRECTION_SICKNESS); + CloseGossipMenuFor(player); + break; + + /*case 1185://Give me Gold + _Creature->CastSpell(player,46642,false); // 5000 gold + break;*/ + + /*case 1190://Give me Soul Shards + player->CastSpell(player,24827,false); + break;*/ + + case 1195: // Heal me please + CloseGossipMenuFor(player); + _Creature->CastSpell(player,/*38588*/25840,false); + break; + case 1200: // Ritual of Souls please + CloseGossipMenuFor(player); + player->CastSpell(player,58889,false); + break; + case 1205: // Table please + CloseGossipMenuFor(player); + player->CastSpell(player,58661,false); + break; + case 1210: // Buff me Arcane Intelect + CloseGossipMenuFor(player); + _Creature->CastSpell(player,42995,false); + break; + case 1215: // Buff me Mark of the Wild + CloseGossipMenuFor(player); + _Creature->CastSpell(player,48469,false); + break; + case 1220: // Buff me Thorns + CloseGossipMenuFor(player); + _Creature->CastSpell(player,26992,false); + break; + case 1225: // Buff me Blessing of Sanctuary + CloseGossipMenuFor(player); + _Creature->CastSpell(player,20911,false); + break; + case 1230: // Buff me Blessing of Might + CloseGossipMenuFor(player); + _Creature->CastSpell(player,48932,false); + break; + case 1235: // Buff me Greater Blessing of Light + CloseGossipMenuFor(player); + _Creature->CastSpell(player,27145,false); + break; + case 1240: // Buff me Blessing of Wisdom + CloseGossipMenuFor(player); + _Creature->CastSpell(player,48936,false); + break; + case 1245: // Buff me Blessing of Kings + CloseGossipMenuFor(player); + _Creature->CastSpell(player,20217,false); + break; + case 1250: // Buff me Divine Spirit + CloseGossipMenuFor(player); + _Creature->CastSpell(player,48073,false); + break; + case 1251: // Buff me Shadow Protection + CloseGossipMenuFor(player); + _Creature->CastSpell(player,48169,false); + break; + case 1252: // Buff me Power Word: Fortitude + CloseGossipMenuFor(player); + _Creature->CastSpell(player,48161,false); + break; + } + }; + + bool OnGossipSelect(Player *player, Creature *_Creature, uint32 sender, uint32 action) + { + player->PlayerTalkClass->ClearMenus(); + + // Main menu + if (sender == GOSSIP_SENDER_MAIN) + SendDefaultMenu_buffnpc( player, _Creature, action ); + + return true; + }; +}; + +/*######## +# npc_portal +#########*/ + +#define SPELL_VISUAL_TELEPORT 35517 + +// Teleport Player +void Teleport(Player *player, uint16 map, + float X, float Y, float Z, float orient) +{ + uint32 aurDim=sAZTH->GetAZTHPlayer(player)->getCurrentDimensionByAura(); + if (sAzthUtils->isPhasedDimension(aurDim) && !sAZTH->GetAZTHPlayer(player)->changeDimension(DIMENSION_NORMAL, true)) + return; + + CloseGossipMenuFor(player); + player->CastSpell(player, SPELL_VISUAL_TELEPORT, true); + if (!player->TeleportTo(map, X, Y, Z, orient) && sAzthUtils->isPhasedDimension(aurDim)) + sAZTH->GetAZTHPlayer(player)->changeDimension(aurDim); // we have to restore old dimension to avoid exploits if teleport failed +}; + +class npc_portal : public CreatureScript +{ + public: + + npc_portal() : CreatureScript("portal_npc") { } + + bool OnGossipHello(Player *player, Creature *_Creature) + { + AddGossipItemFor(player, 5, "Teleport Dalaran" , GOSSIP_SENDER_MAIN, 1005); + AddGossipItemFor(player, 5, "Teleport Shattrath" , GOSSIP_SENDER_MAIN, 1010); + AddGossipItemFor(player, 5, "Teleport Wintergrasp" , GOSSIP_SENDER_MAIN, 1100); + + // Main Menu for Alliance + if ( player->GetTeamId(true) == TEAM_ALLIANCE ) + { + AddGossipItemFor(player, 5, "Teleport Stormwind" , GOSSIP_SENDER_MAIN, 1015); + AddGossipItemFor(player, 5, "Teleport Ironforge" , GOSSIP_SENDER_MAIN, 1020); + AddGossipItemFor(player, 5, "Teleport Darnassus" , GOSSIP_SENDER_MAIN, 1025); + AddGossipItemFor(player, 5, "Teleport Exodar" , GOSSIP_SENDER_MAIN, 1030); + } + else // Main Menu for Horde + { + AddGossipItemFor(player, 5, "Teleport Orgrimmar" , GOSSIP_SENDER_MAIN, 1035); + AddGossipItemFor(player, 5, "Teleport Undercity" , GOSSIP_SENDER_MAIN, 1040); + AddGossipItemFor(player, 5, "Teleport Thunder Bluff" , GOSSIP_SENDER_MAIN, 1045); + AddGossipItemFor(player, 5, "Teleport Silvermoon" , GOSSIP_SENDER_MAIN, 1050); + } + + SendGossipMenuFor(player,DEFAULT_GOSSIP_MESSAGE,_Creature->GetGUID()); + + return true; + }; + + void SendDefaultMenu_portal_npc(Player *player, Creature *_Creature, uint32 action) + { + // Not allow in combat + if(!player->getAttackers().empty()) + { + CloseGossipMenuFor(player); + _Creature->Say(MSG_INCOMBAT, LANG_UNIVERSAL); + return; + } + + //OutdoorPvP *pvpWG = (OutdoorPvP*)sOutdoorPvPMgr->GetOutdoorPvPToZoneId(4197); + + switch(action) + { + case 1005: //Dalaran + Teleport(player, 571, 5804.15f, 624.77f, 647.8f, 1.64f); + break; + case 1010: // Shattrath + Teleport(player, 530, -1838.16f, 5301.79f, -12.5f, 5.95f); + break; + case 1015: // Stormwind + Teleport(player, 0, -8992.20f, 848.46f, 29.63f, 0); + break; + case 1020: // Ironforge + Teleport(player, 0, -4602.75f, -906.53f, 502.76f, 0); + break; + case 1025: // Darnassus + Teleport(player, 1, 9952.13f, 2283.35f, 1341.40f, 0); + break; + case 1030: // Exodar + Teleport(player, 530, -4021.21f, -11561.82f, -138.14f, 0); + break; + case 1035: // Orgrimmar + Teleport(player, 1, 1469.64f, -4221.07f, 59.23f, 0); + break; + case 1040: // Undercity + Teleport(player, 0, 1769.64f, 64.17f, -46.33f, 0); + break; + case 1045: // Thunder Bluff + Teleport(player, 1, -970.36f, 284.84f, 111.41f, 0); + break; + case 1050: // Silvermoon + Teleport(player, 530, 10000.25f, -7112.02f, 47.71f, 0); + break; + case 1100: //Wintergrasp + Teleport(player, 571, 4525.60f, 2828.08f, 390, 0.28f); //Out the Fortress + break; + } + }; + + bool OnGossipSelect(Player *player, Creature *_Creature, uint32 sender, uint32 action) + { + player->PlayerTalkClass->ClearMenus(); + + // Main menu + if (sender == GOSSIP_SENDER_MAIN) + SendDefaultMenu_portal_npc( player, _Creature, action ); + + return true; + }; +}; + +#define GOSSIP_SHOW_DEST 1000 +#define GOSSIP_TELEPORT 1001 +#define GOSSIP_NEXT_PAGEC 1002 +#define GOSSIP_PREV_PAGEC 1003 +#define GOSSIP_NEXT_PAGED 1004 +#define GOSSIP_PREV_PAGED 1005 +#define GOSSIP_MAIN_MENU 1006 + +#define NB_ITEM_PAGE 10 +#define MSG_CAT 100000 +#define MSG_DEST 100001 + +#define NEXT_PAGE "-> [Next Page]" +#define PREV_PAGE "<- [Previous Page]" +#define MAIN_MENU "<= [Main Menu]" + + +using namespace nsNpcTel; + + +namespace +{ + Page PageC, PageD; + Page Cat; + + // Conversion function int->string + std::string ConvertStr(const int64 &val) + { + std::ostringstream ostr; + ostr << val; + return ostr.str(); + }; + + // Conversion function intMoney->stringMoney + std::string ConvertMoney(const uint32 &Money) + { + std::string Str(ConvertStr(Money)); + uint32 SizeStr = Str.length(); + + if (SizeStr > 4) + Str = Str.insert(Str.length()-4, "po"); + if (SizeStr > 2) + Str = Str.insert(Str.length()-2, "pa"); + Str += "pc"; + + return Str; + }; + + // Display categories + void AffichCat(Player * const player, Creature * const creature) + { + if (PageC[player] > 0) + AddGossipItemFor(player,7, PREV_PAGE, GOSSIP_PREV_PAGEC, 0); + + VCatDest_t i (PageC[player] * NB_ITEM_PAGE); + for ( ; i < TabCatDest.size() && i < (NB_ITEM_PAGE * (PageC[player] + 1)); ++i) + { + if (TabCatDest[i].IsAllowedToTeleport(player)) + AddGossipItemFor(player,7, TabCatDest[i].GetName(player->IsGameMaster()).c_str(), GOSSIP_SHOW_DEST, i); + } + + if (i < TabCatDest.size()) + AddGossipItemFor(player,7, NEXT_PAGE, GOSSIP_NEXT_PAGEC, 0); + + SendGossipMenuFor(player,MSG_CAT, creature->GetGUID()); + }; + + // Display destination categories + void AffichDest(Player * const player, Creature * const creature) + { + if (PageD[player] > 0) + AddGossipItemFor(player,7, PREV_PAGE, GOSSIP_PREV_PAGED, 0); + + CatDest::VDest_t i (PageD[player] * NB_ITEM_PAGE); + for ( ; i < TabCatDest[Cat[player]].size() && i < (NB_ITEM_PAGE * (PageD[player] + 1)); ++i) + { + AddGossipItemFor(player,5, TabCatDest[Cat[player]].GetDest(i).m_name.c_str(), GOSSIP_TELEPORT, i); + } + + if (i < TabCatDest[Cat[player]].size()) + AddGossipItemFor(player,7, NEXT_PAGE, GOSSIP_NEXT_PAGED, 0); + + if (CatDest::CountOfCategoryAllowedBy(player) > 1) + AddGossipItemFor(player,7, MAIN_MENU, GOSSIP_MAIN_MENU, 0); + + SendGossipMenuFor(player,MSG_DEST, creature->GetGUID()); + }; + + // Verification before teleportation + void ActionTeleport(Player * const player, Creature * const creature, const uint32 &id) + { + Dest dest (TabCatDest[Cat[player]].GetDest(id)); + + if (player->getLevel() < dest.m_level && !player->IsGameMaster()) + { + std::string msg ("You do not have the required level. This destination requires level " + ConvertStr(dest.m_level) + "."); + creature->Whisper(msg.c_str(), LANG_UNIVERSAL, player); + return; + } + + if (player->GetMoney() < dest.m_cost && !player->IsGameMaster()) + { + std::string msg ("You do not have enough money. The price for teleportation is " + ConvertMoney(dest.m_cost) + "."); + creature->Whisper(msg.c_str(), LANG_UNIVERSAL, player); + return; + } + + if (!player->IsGameMaster() && dest.m_cost) + player->ModifyMoney(-1 * dest.m_cost); + + Teleport(player, dest.m_map, dest.m_X, dest.m_Y, dest.m_Z, dest.m_orient); + }; +}; + +class npc_teleport : public CreatureScript +{ + public: + npc_teleport() : CreatureScript("npc_teleport") { } + + bool OnGossipHello(Player *player, Creature *creature) + { + PageC(player) = PageD(player) = Cat(player) = 0; + + if(player->IsInCombat()) + { + CloseGossipMenuFor(player); + creature->Whisper("You are in combat. Come back later", LANG_UNIVERSAL, player); + return true; + } + AffichCat(player, creature); + return true; + }; + + bool OnGossipSelect(Player *player, Creature *creature, uint32 sender, uint32 param) + { + player->PlayerTalkClass->ClearMenus(); + switch(sender) + { + // Display destinations + case GOSSIP_SHOW_DEST: + Cat(player) = param; + AffichDest(player, creature); + break; + + // Previous categories page + case GOSSIP_PREV_PAGEC: + --PageC(player); + AffichCat(player, creature); + break; + + // Next page categories + case GOSSIP_NEXT_PAGEC: + ++PageC(player); + AffichCat(player, creature); + break; + + // Previous destinations page + case GOSSIP_PREV_PAGED: + --PageD(player); + AffichDest(player, creature); + break; + + // Next destination page + case GOSSIP_NEXT_PAGED: + ++PageD(player); + AffichDest(player, creature); + break; + + // Display main menu + case GOSSIP_MAIN_MENU: + OnGossipHello(player, creature); + break; + + // Teleportation + case GOSSIP_TELEPORT: + CloseGossipMenuFor(player); + /* what is this code? removing sickness? meh.. + if(player->HasAura(15007,0)) + { + creature->CastSpell(player,38588,false); // Healing effect + player->RemoveAurasDueToSpell(15007); + }*/ + + ActionTeleport(player, creature, param); + break; + } + return true; + }; +}; + +void AddSC_guildhouse_npcs() +{ + new npc_guild_master(); + new guild_guard(); + new npc_buffnpc(); + new npc_portal(); + new npc_teleport(); +} diff --git a/src/HearthstoneMode/PlayerHearthstoneMode.cpp b/src/HearthstoneMode/PlayerHearthstoneMode.cpp new file mode 100644 index 0000000..b6ca9f4 --- /dev/null +++ b/src/HearthstoneMode/PlayerHearthstoneMode.cpp @@ -0,0 +1,146 @@ +#include "AzthPlayer.h" +#include "Player.h" +#include "Group.h" +#include "azth_custom_hearthstone_mode.h" +#include "AzthUtils.h" + +// Send a kill credit, skipping the normal checks on raid group. +void AzthPlayer::ForceKilledMonsterCredit(uint32 entry, uint64 guid) { + uint16 addkillcount = 1; + uint32 real_entry = entry; + ObjectGuid _guid = ObjectGuid(guid); + if (guid) { + Creature* killed = player->GetMap()->GetCreature(_guid); + if (killed && killed->GetEntry()) + real_entry = killed->GetEntry(); + } + + player->StartTimedAchievement(ACHIEVEMENT_TIMED_TYPE_CREATURE, + real_entry); // MUST BE CALLED FIRST + player->UpdateAchievementCriteria( + ACHIEVEMENT_CRITERIA_TYPE_KILL_CREATURE, real_entry, addkillcount, + guid ? player->GetMap()->GetCreature(_guid) : NULL); + + for (uint8 i = 0; i < MAX_QUEST_LOG_SIZE; ++i) { + uint32 questid = player->GetQuestSlotQuestId(i); + if (!questid) + continue; + + Quest const* qInfo = sObjectMgr->GetQuestTemplate(questid); + if (!qInfo) + continue; + + QuestStatusMap::const_iterator _itr = player->getQuestStatusMap().find(questid); + if (_itr == player->getQuestStatusMap().end()) + continue; + + QuestStatusData q_status = _itr->second; + if (q_status.Status == QUEST_STATUS_INCOMPLETE && (qInfo->IsPVPQuest() && (!player->GetGroup() || (player->GetGroup()->isBFGroup() || player->GetGroup()->isBGGroup())))) + { + if (qInfo->HasSpecialFlag(QUEST_SPECIAL_FLAGS_KILL) /*&& !qInfo->HasSpecialFlag(QUEST_SPECIAL_FLAGS_CAST)*/) + { + for (uint8 j = 0; j < QUEST_OBJECTIVES_COUNT; ++j) + { + // skip GO activate objective or none + if (qInfo->RequiredNpcOrGo[j] <= 0) + continue; + + uint32 reqkill = qInfo->RequiredNpcOrGo[j]; + + if (reqkill == real_entry) + { + uint32 reqkillcount = qInfo->RequiredNpcOrGoCount[j]; + uint16 curkillcount = q_status.CreatureOrGOCount[j]; + + if (curkillcount < reqkillcount) + { + q_status.CreatureOrGOCount[j] = curkillcount + addkillcount; + + QuestStatusSaveMap::iterator __itr = player->GetQuestStatusSaveMap().find(questid); + if (__itr == player->GetQuestStatusSaveMap().end()) + continue; + + __itr->second = true; + + //player->m_QuestStatusSave[questid] = true; + + player->SendQuestUpdateAddCreatureOrGo( + qInfo, _guid, j, curkillcount, addkillcount); + } + if (player->CanCompleteQuest(questid)) + player->CompleteQuest(questid); + else + player->AdditionalSavingAddMask(ADDITIONAL_SAVING_QUEST_STATUS); + + // same objective target can be in many active quests, but not in 2 + // objectives for single quest (code optimization). + break; + } + } + } + } + } +} + +bool AzthPlayer::passHsChecks(Quest const* qInfo, uint32 entry, uint32& realEntry, ObjectGuid /*guid*/) { + uint32 qId = qInfo->GetQuestId(); + uint32 currentDimension = getCurrentDimensionByAura(); + + HearthstoneQuest* hsQuest = sHearthstoneMode->getHeartstoneQuestInfo(qId); + + // if no data present in hearthstone table + // then use normal behaviour + if (!hsQuest) { + // Do not allow official quest completition in empty/custom dimensions + if (sAzthUtils->isPhasedDimension(currentDimension)) + return false; + + return true; // pass the check if no Hs quest exists + } + + if (hsQuest->reqDimension > 0 && hsQuest->reqDimension != currentDimension) + return false; + + // positive value: return false if groupsize is higher than groupLimit + // negative value: return false if groupsize is lower than groupLimit + if ((hsQuest->groupLimit > 0 && this->getGroupSize() > uint8(hsQuest->groupLimit)) + || (hsQuest->groupLimit < 0 && this->getGroupSize() < uint8(abs(hsQuest->groupLimit)))) + return false; + + /* + * check for quests that require timewalking + */ + // normal timewalking + if (hsQuest->specialLevel > 0) { + //special timewalking + uint32 groupLevel = this->getGroupLevel(false); + uint32 specialLevel = groupLevel > 0 ? groupLevel : GetTimeWalkingLevel(); + + if (specialLevel == hsQuest->specialLevel || sAzthUtils->isMythicCompLvl(hsQuest->specialLevel, specialLevel)) { + + for (uint8 j = 0; j < QUEST_OBJECTIVES_COUNT; ++j) { + if (qInfo->RequiredNpcOrGo[j] > 0 && uint32(qInfo->RequiredNpcOrGo[j]) == entry) + realEntry = entry; + } + + return true; + } + } + else if (qInfo->GetQuestLevel() <= 80) { + uint32 groupLevel = this->getGroupLevel(); + uint32 level = groupLevel > 0 ? groupLevel : this->player->getLevel(); + + if (level >= qInfo->GetMinLevel() && qInfo->GetQuestLevel() > 0 && level <= uint32(qInfo->GetQuestLevel())) { + for (uint8 j = 0; j < QUEST_OBJECTIVES_COUNT; ++j) { + if (qInfo->RequiredNpcOrGo[j] > 0 && uint32(qInfo->RequiredNpcOrGo[j]) == entry) + realEntry = entry; + } + + return true; + } + } + + // in this case conditions above are negative + // so check has not passed + return false; +} diff --git a/src/HearthstoneMode/azth_custom_hearthstone_mode.cpp b/src/HearthstoneMode/azth_custom_hearthstone_mode.cpp new file mode 100644 index 0000000..fb3907d --- /dev/null +++ b/src/HearthstoneMode/azth_custom_hearthstone_mode.cpp @@ -0,0 +1,1216 @@ +// Copyright (c) 2016 AzerothCore +// Author: Gargarensis +// Refactored by: mik1893 +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. + +#include "azth_custom_hearthstone_mode.h" +#include +#include // now using C++ header +#include "AzthPlayer.h" +#include "ArenaTeamMgr.h" +#include "ObjectMgr.h" +#include "AZTH.h" +#include "Solo3v3.h" + +HearthstoneMode* HearthstoneMode::instance() +{ + static HearthstoneMode instance; + return &instance; +} + +// old +void HearthstoneMode::AzthSendListInventory(ObjectGuid vendorGuid, WorldSession * session, uint32 /*extendedCostStartValue*/) +{ + ;//sLog->outDebug(LOG_FILTER_NETWORKIO, "WORLD: Sent SMSG_LIST_INVENTORY"); + + Creature* vendor = session->GetPlayer()->GetNPCIfCanInteractWith(vendorGuid, UNIT_NPC_FLAG_VENDOR); + if (!vendor) + { + ;//sLog->outDebug(LOG_FILTER_NETWORKIO, "WORLD: SendListInventory - Unit (GUID: %u) not found or you can not interact with him.", uint32(GUID_LOPART(vendorGuid))); + session->GetPlayer()->SendSellError(SELL_ERR_CANT_FIND_VENDOR, NULL, ObjectGuid::Empty, 0); + return; + } + + // remove fake death + if (session->GetPlayer()->HasUnitState(UNIT_STATE_DIED)) + session->GetPlayer()->RemoveAurasByType(SPELL_AURA_FEIGN_DEATH); + + // Stop the npc if moving + if (vendor->HasUnitState(UNIT_STATE_MOVING)) + vendor->StopMoving(); + + VendorItemData const* items = vendor->GetVendorItems(); + if (!items) + { + WorldPacket data(SMSG_LIST_INVENTORY, 8 + 1 + 1); + data << uint64(vendorGuid.GetRawValue()); + data << uint8(0); // count == 0, next will be error code + data << uint8(0); // "Vendor has no inventory" + session->SendPacket(&data); + return; + } + + uint8 itemCount = items->GetItemCount(); + uint8 count = 0; + + WorldPacket data(SMSG_LIST_INVENTORY, 8 + 1 + itemCount * 8 * 4); + data << uint64(vendorGuid.GetRawValue()); + + size_t countPos = data.wpos(); + data << uint8(count); + + float discountMod = session->GetPlayer()->GetReputationPriceDiscount(vendor); + + for (uint8 slot = 0; slot < itemCount; ++slot) + { + if (VendorItem const* item = items->GetItem(slot)) + { + if (ItemTemplate const* itemTemplate = sObjectMgr->GetItemTemplate(item->item)) + { + if (!(itemTemplate->AllowableClass & session->GetPlayer()->getClassMask()) && itemTemplate->Bonding == BIND_WHEN_PICKED_UP && !session->GetPlayer()->IsGameMaster()) + continue; + // Only display items in vendor lists for the team the + // player is on. If GM on, display all items. + if (!session->GetPlayer()->IsGameMaster() && ((itemTemplate->Flags2 & ITEM_FLAGS_EXTRA_HORDE_ONLY && session->GetPlayer()->GetTeamId() == TEAM_ALLIANCE) || (itemTemplate->Flags2 == ITEM_FLAGS_EXTRA_ALLIANCE_ONLY && session->GetPlayer()->GetTeamId() == TEAM_HORDE))) + continue; + + // Items sold out are not displayed in list + uint32 leftInStock = !item->maxcount ? 0xFFFFFFFF : vendor->GetVendorItemCurrentCount(item); + if (!session->GetPlayer()->IsGameMaster() && !leftInStock) + continue; + + ConditionList conditions = sConditionMgr->GetConditionsForNpcVendorEvent(vendor->GetEntry(), item->item); + if (!sConditionMgr->IsObjectMeetToConditions(session->GetPlayer(), vendor, conditions)) + { + sLog->outError("SendListInventory: conditions not met for creature entry %u item %u", vendor->GetEntry(), item->item); + continue; + } + + // the no-patch extended cost (shown in gold) + //uint32 ExtendedToGold = item->ExtendedCost > extendedCostStartValue ? (item->ExtendedCost - extendedCostStartValue) * 10000 : 0; + //int32 price = item->IsGoldRequired(itemTemplate) ? uint32(floor(itemTemplate->BuyPrice * discountMod)) : ExtendedToGold; + + int32 price = item->IsGoldRequired(itemTemplate) ? uint32(floor(itemTemplate->BuyPrice * discountMod)) : 0; + + + data << uint32(slot + 1); // client expects counting to start at 1 + data << uint32(item->item); + data << uint32(itemTemplate->DisplayInfoID); + data << int32(leftInStock); + data << uint32(price); + data << uint32(itemTemplate->MaxDurability); + data << uint32(itemTemplate->BuyCount); + data << uint32(item->ExtendedCost); + + if (++count >= MAX_VENDOR_ITEMS) + break; + } + } + } + + if (count == 0) + { + data << uint8(0); + session->SendPacket(&data); + return; + } + + data.put(countPos, count); + session->SendPacket(&data); +} + +bool HearthstoneMode::isInArray(int val) +{ + int SUPPORTED_CRITERIA[SUPPORTED_CRITERIA_NUMBER] = { 0,1,8,30,31,32,33,37,38,39,52,53,56,76,113 }; + int i; + for (i = 0; i < SUPPORTED_CRITERIA_NUMBER; i++) { + if (SUPPORTED_CRITERIA[i] == val) + return true; + } + return false; +} + + +int HearthstoneMode::getQuality() +{ + float c = (float)rand_chance(); + //float chance = (float)c; + float i = CHANCES[0]; + int quality = 0; + while (i < c) + { + quality = quality + 1; + i = i + CHANCES[quality]; + } + if (quality > 7) + quality = QUALITY_TO_FILL_PERCENTAGE; + return quality; +} + +int HearthstoneMode::returnData0(AchievementCriteriaEntry const* criteria) +{ + int value = -1; + + switch (criteria->requiredType) + { + case 0: + value = criteria->kill_creature.creatureID; + case 1: + value = criteria->win_bg.bgMapID; + case 8: + value = criteria->complete_achievement.linkedAchievement; + break; + case 30: + value = criteria->bg_objective.objectiveId; + case 31: + value = criteria->honorable_kill_at_area.areaID; + break; + case 32: // win arena - no use of column 4 + break; + case 33: + value = criteria->play_arena.mapID; + break; + case 37: // win rated arena unsed column 4 + break; + case 38: + value = criteria->highest_team_rating.teamtype; + break; + case 39: + // MISSING !! + break; + case 52: + value = criteria->hk_class.classID; + break; + case 53: + value = criteria->hk_race.raceID; + break; + case 56: // unused + break; + case 76: // unused + break; + case 113: //unused + break; + + default: + value = -1; + + } + return value; +} + +int HearthstoneMode::returnData1(AchievementCriteriaEntry const* criteria) +{ + int value = -1; + switch (criteria->requiredType) + { + case 0: + value = criteria->kill_creature.creatureCount; + case 1: + value = criteria->win_bg.winCount; + case 8: // no column 5 + break; + case 30: + value = criteria->bg_objective.completeCount; + case 31: + value = criteria->honorable_kill_at_area.killCount; + break; + case 32: // win arena - no use of column 4 + break; + case 33: // unused + break; + case 37: // win rated arena unsed column 4 + value = criteria->win_rated_arena.count; + break; + case 38: //unused + break; + case 39: + // MISSING !! + break; + case 52: + value = criteria->hk_class.count; + break; + case 53: + value = criteria->hk_race.count; + break; + case 56: + value = criteria->get_killing_blow.killCount; + break; + case 76: + value = criteria->win_duel.duelCount; + break; + case 113: + // MISSING !! + break; + + default: + value = -1; + + } + return value; +} + +/// ---------------- START OF SCRIPTS ------------------------- /// + +class npc_han_al : public CreatureScript +{ +public: + npc_han_al() : CreatureScript("npc_han_al") { } + + uint32 _weeklyRandom(std::unordered_map &list) { + time_t t = time(NULL); + + uint32 index; + uint64 seed; + std::unordered_map::iterator _tmpItr; + + int firstTuesday = 446400; // Tuesday 1970/01/06 at 04:00 + seed = (((t - firstTuesday )/60/60/24))/7; + srand(seed); + + uint32 count= list.size(); + index=count > 0 ? rand() % count : 0; + + _tmpItr = list.begin(); + std::advance( _tmpItr, index ); + return _tmpItr->second.id; + } + + uint32 _dailyRandom(std::unordered_map &list, Player *player = NULL) { + time_t t = time(NULL); + tm *lt = localtime(&t); + + uint32 index; + uint64 seed; + std::unordered_map::iterator _tmpItr; + + seed = lt->tm_mday + lt->tm_mon + 1 + lt->tm_year + 1900 + (player ? player->GetGUID() : 0); + srand(seed); + + index=list.size() > 1 ? rand() % (list.size()) : 0; + + _tmpItr = list.begin(); + std::advance( _tmpItr, index ); + return _tmpItr->second.id; + } + + bool OnGossipSelect(Player* player, Creature* creature, uint32 sender, uint32 action) override + { + player->PlayerTalkClass->SendCloseGossip(); + + if (sender != GOSSIP_SENDER_MAIN) + return true; + + if (!action) { + creature->Whisper(sAzthLang->get(AZTH_LANG_HS_QUEST_LIMIT_REACHED, player), LANG_UNIVERSAL, player); + return true; + } + + Quest const * quest = sObjectMgr->GetQuestTemplate(action); + + + if (player->CanAddQuest(quest, false) && player->CanTakeQuest(quest, false)) + { + player->PlayerTalkClass->SendQuestGiverQuestDetails(quest, creature->GetGUID(), true); + } + + return true; + } + + bool OnGossipHello(Player* player, Creature* creature) override + { + uint32 bitmask = 0; + int gossip = 100000; + + time_t t = time(NULL); + + bool isEmpty=true; + uint32 pveId=0, pvpId=0, weeklyClassicId=0, weeklyTBCId=0, weeklyWotlkId=0, weeklyRandomTwId=0, dailyRandomTwId=0; + std::list dailyTwIds, weeklyTwIds; + std::unordered_map::iterator _tmpItr; + + // PVP + if (sHearthstoneMode->hsPvpQuests.size() > 0) { + pvpId = _dailyRandom(sHearthstoneMode->hsPvpQuests, player); + } + + Quest const * questPvp = sObjectMgr->GetQuestTemplate(pvpId); + + // PVE RANDOM + if (sHearthstoneMode->hsPveQuests.size() > 0) { + pveId = _dailyRandom(sHearthstoneMode->hsPveQuests); + } + + Quest const * questPve = sObjectMgr->GetQuestTemplate(pveId); + + // WEEKLY CLASSIC RANDOM + if (sHearthstoneMode->hsWeeklyClassicQuests.size() > 0) { + weeklyClassicId = _weeklyRandom(sHearthstoneMode->hsWeeklyClassicQuests); + } + + Quest const * questClassicWeekly = sObjectMgr->GetQuestTemplate(weeklyClassicId); + + // WEEKLY TBC RANDOM + if (sHearthstoneMode->hsWeeklyTBCQuests.size() > 0) { + weeklyTBCId = _weeklyRandom(sHearthstoneMode->hsWeeklyTBCQuests); + } + + Quest const * questTBCWeekly = sObjectMgr->GetQuestTemplate(weeklyTBCId); + + // WEEKLY WOTLK RANDOM + if (sHearthstoneMode->hsWeeklyWotlkQuests.size() > 0) { + weeklyWotlkId = _weeklyRandom(sHearthstoneMode->hsWeeklyWotlkQuests); + } + + Quest const * questWotlkWeekly = sObjectMgr->GetQuestTemplate(weeklyWotlkId); + + // WEEKLY TW + for (std::unordered_map::iterator it = sHearthstoneMode->hsTwWeeklyQuests.begin(); it != sHearthstoneMode->hsTwWeeklyQuests.end(); it++ ) + { + if (t >= it->second.startTime && t <= it->second.endTime) { + weeklyTwIds.push_back(it->second.id); + } + } + + // DAILY TW + for (std::unordered_map::iterator it = sHearthstoneMode->hsTwDailyQuests.begin(); it != sHearthstoneMode->hsTwDailyQuests.end(); it++ ) + { + if (t >= it->second.startTime && t <= it->second.endTime) { + dailyTwIds.push_back(it->second.id); + } + } + + // DAILY RANDOM TW + std::unordered_map _dailyRandomTwList; + for (std::unordered_map::iterator it = sHearthstoneMode->hsTwDailyRandomQuests.begin(); it != sHearthstoneMode->hsTwDailyRandomQuests.end(); it++ ) + { + if (t >= it->second.startTime && t <= it->second.endTime) { + _dailyRandomTwList[it->second.id] = it->second; + } + } + + if (_dailyRandomTwList.size() > 0) { + dailyRandomTwId = _dailyRandom(_dailyRandomTwList); + } + + Quest const * questDailyRandomTw = sObjectMgr->GetQuestTemplate(dailyRandomTwId); + + // WEEKLY RANDOM TW + std::unordered_map _weeklyRandomTwList; + for (std::unordered_map::iterator it = sHearthstoneMode->hsTwWeeklyRandomQuests.begin(); it != sHearthstoneMode->hsTwWeeklyRandomQuests.end(); it++ ) + { + if (t >= it->second.startTime && t <= it->second.endTime) { + _weeklyRandomTwList[it->second.id] = it->second; + } + } + + if (_weeklyRandomTwList.size() > 0) { + weeklyRandomTwId = _weeklyRandom(_weeklyRandomTwList); + } + + Quest const * questWeeklyRandomTw = sObjectMgr->GetQuestTemplate(weeklyRandomTwId); + +//"Pvp Quest Check" + int PvpMaxCheck = 0; + _tmpItr = sHearthstoneMode->hsPvpQuests.begin(); + while (_tmpItr != sHearthstoneMode->hsPvpQuests.end() && PvpMaxCheck <= MAX_PVE_QUEST_NUMBER) // NEED PVP MAX? + { + if (player->GetQuestStatus(_tmpItr->second.id) != QUEST_STATUS_NONE) + { + PvpMaxCheck = PvpMaxCheck + 1; + } + _tmpItr++; + } + if (questPvp && player->CanAddQuest(questPvp, false) && player->CanTakeQuest(questPvp, false)) + { + if (PvpMaxCheck >= MAX_PVP_QUEST_NUMBER) + pvpId = 0; // it means this player reached the limit + + isEmpty = false; + bitmask = bitmask | BITMASK_PVP; + } +//endcheck + +//"Pve Quest Check" + int PveMaxCheck = 0; + _tmpItr = sHearthstoneMode->hsPveQuests.begin(); + while (_tmpItr != sHearthstoneMode->hsPveQuests.end() && PveMaxCheck <= MAX_PVE_QUEST_NUMBER) + { + if (player->GetQuestStatus(_tmpItr->second.id) != QUEST_STATUS_NONE) + { + PveMaxCheck = PveMaxCheck + 1; + } + _tmpItr++; + } + if (questPve && player->CanAddQuest(questPve, false) && player->CanTakeQuest(questPve, false)) + { + if (PveMaxCheck >= MAX_PVE_QUEST_NUMBER) + pveId = 0; // it means this player reached the limit + + isEmpty = false; + bitmask = bitmask | BITMASK_DAILY_RANDOM; + } +//endcheck + +//"Weekly Classic Quest Check" + int WeeklyClassicMaxCheck = 0; + _tmpItr = sHearthstoneMode->hsWeeklyClassicQuests.begin(); + while (_tmpItr != sHearthstoneMode->hsWeeklyClassicQuests.end() && WeeklyClassicMaxCheck <= MAX_WEEKLY_QUEST_NUMBER) + { + if (player->GetQuestStatus(_tmpItr->second.id) != QUEST_STATUS_NONE) + { + WeeklyClassicMaxCheck = WeeklyClassicMaxCheck + 1; + } + _tmpItr++; + } + if (questClassicWeekly && player->CanAddQuest(questClassicWeekly, false) && player->CanTakeQuest(questClassicWeekly, false)) + { + if (WeeklyClassicMaxCheck >= MAX_WEEKLY_QUEST_NUMBER) + weeklyClassicId = 0; // it means this player reached the limit + + isEmpty = false; + bitmask = bitmask | BITMASK_WEEKLY_RND1; + } +//endcheck + +//"Weekly TBC Quest Check" + int WeeklyTBCMaxCheck = 0; + _tmpItr = sHearthstoneMode->hsWeeklyTBCQuests.begin(); + while (_tmpItr != sHearthstoneMode->hsWeeklyTBCQuests.end() && WeeklyTBCMaxCheck <= MAX_WEEKLY_QUEST_NUMBER) + { + if (player->GetQuestStatus(_tmpItr->second.id) != QUEST_STATUS_NONE) + { + WeeklyTBCMaxCheck = WeeklyTBCMaxCheck + 1; + } + _tmpItr++; + } + if (questTBCWeekly && player->CanAddQuest(questTBCWeekly, false) && player->CanTakeQuest(questTBCWeekly, false)) + { + if ( WeeklyTBCMaxCheck >= MAX_WEEKLY_QUEST_NUMBER) + weeklyTBCId = 0; // it means this player reached the limit + + isEmpty = false; + bitmask = bitmask | BITMASK_WEEKLY_RND2; + } +//endcheck + +//"Weekly WOTLK Quest Check" + int WeeklyWotlkMaxCheck = 0; + _tmpItr = sHearthstoneMode->hsWeeklyWotlkQuests.begin(); + while (_tmpItr != sHearthstoneMode->hsWeeklyWotlkQuests.end() && WeeklyWotlkMaxCheck <= MAX_WEEKLY_QUEST_NUMBER) + { + if (player->GetQuestStatus(_tmpItr->second.id) != QUEST_STATUS_NONE) + { + WeeklyWotlkMaxCheck = WeeklyWotlkMaxCheck + 1; + } + _tmpItr++; + } + if (questWotlkWeekly && player->CanAddQuest(questWotlkWeekly, false) && player->CanTakeQuest(questWotlkWeekly, false)) + { + if (WeeklyWotlkMaxCheck >= MAX_WEEKLY_QUEST_NUMBER) + weeklyWotlkId = 0; // it means this player reached the limit + + isEmpty = false; + bitmask = bitmask | BITMASK_WEEKLY_RND3; + } +//endcheck + + +//"TW Weekly Random Quest Check" + int TwWeeklyRandomMaxCheck = 0; + _tmpItr = sHearthstoneMode->hsTwWeeklyQuests.begin(); + while (_tmpItr != sHearthstoneMode->hsTwWeeklyRandomQuests.end() && TwWeeklyRandomMaxCheck <= MAX_WEEKLY_QUEST_NUMBER) + { + if (player->GetQuestStatus(_tmpItr->second.id) != QUEST_STATUS_NONE) + { + TwWeeklyRandomMaxCheck = TwWeeklyRandomMaxCheck + 1; + } + _tmpItr++; + } + if (questWeeklyRandomTw && player->CanAddQuest(questWeeklyRandomTw, false) && player->CanTakeQuest(questWeeklyRandomTw, false)) + { + if (TwWeeklyRandomMaxCheck >= MAX_WEEKLY_QUEST_NUMBER) + weeklyRandomTwId = 0; // it means this player reached the limit + + isEmpty = false; + bitmask = bitmask | BITMASK_TW_WEEKLY_RANDOM; + } +//endcheck + +//"TW Daily Random Quest Check" + int TwDailyRandMaxCheck = 0; + _tmpItr = sHearthstoneMode->hsTwDailyRandomQuests.begin(); + while (_tmpItr != sHearthstoneMode->hsTwDailyRandomQuests.end() && TwDailyRandMaxCheck <= MAX_PVE_QUEST_NUMBER) + { + if (player->GetQuestStatus(_tmpItr->second.id) != QUEST_STATUS_NONE) + { + TwDailyRandMaxCheck = TwDailyRandMaxCheck + 1; + } + _tmpItr++; + } + if (questDailyRandomTw && player->CanAddQuest(questDailyRandomTw, false) && player->CanTakeQuest(questDailyRandomTw, false)) + { + if (TwDailyRandMaxCheck >= MAX_WEEKLY_QUEST_NUMBER) + dailyRandomTwId = 0; // it means this player reached the limit + + isEmpty = false; + bitmask = bitmask | BITMASK_TW_DAILY_RANDOM; + } +//endcheck + + if (bitmask>0) + AddGossipItemFor(player,GOSSIP_ICON_DOT, sAzthLang->get(AZTH_LANG_HS_QUESTS, player), GOSSIP_SENDER_MAIN, 0); + + if ((bitmask & BITMASK_PVP) == BITMASK_PVP) + { + if (questPvp) + AddGossipItemFor(player,GOSSIP_ICON_BATTLE, sAzthLang->getf(AZTH_LANG_HS_PVP_QUEST, player, (questPvp->GetTitle() + (pvpId ? "" : sAzthLang->get(AZTH_LANG_HS_QUEST_LIMIT_SUFFIX, player))).c_str()), GOSSIP_SENDER_MAIN, pvpId); + } + + if (!sAZTH->GetAZTHPlayer(player)->isPvP()) { + if ((bitmask & BITMASK_DAILY_RANDOM) == BITMASK_DAILY_RANDOM) + { + if (questPve) + AddGossipItemFor(player,GOSSIP_ICON_TABARD, sAzthLang->getf(AZTH_LANG_HS_DAILY_QUEST, player, (questPve->GetTitle() + (pveId ? "" : sAzthLang->get(AZTH_LANG_HS_QUEST_LIMIT_SUFFIX, player))).c_str()), GOSSIP_SENDER_MAIN, pveId); + } + + + if ((bitmask & BITMASK_WEEKLY_RND1) == BITMASK_WEEKLY_RND1) + { + if (questClassicWeekly) + AddGossipItemFor(player,GOSSIP_ICON_TABARD, sAzthLang->getf(AZTH_LANG_HS_WEEKLY_QUEST, player, (questClassicWeekly->GetTitle() + (weeklyClassicId ? "" : sAzthLang->get(AZTH_LANG_HS_QUEST_LIMIT_SUFFIX, player))).c_str()), GOSSIP_SENDER_MAIN, weeklyClassicId); + } + + if ((bitmask & BITMASK_WEEKLY_RND2) == BITMASK_WEEKLY_RND2) + { + if (questTBCWeekly) + AddGossipItemFor(player,GOSSIP_ICON_TABARD, sAzthLang->getf(AZTH_LANG_HS_WEEKLY_QUEST, player, (questTBCWeekly->GetTitle() + (weeklyTBCId ? "" : sAzthLang->get(AZTH_LANG_HS_QUEST_LIMIT_SUFFIX, player))).c_str()), GOSSIP_SENDER_MAIN, weeklyTBCId); + } + + if ((bitmask & BITMASK_WEEKLY_RND3) == BITMASK_WEEKLY_RND3) + { + if (questWotlkWeekly) + AddGossipItemFor(player,GOSSIP_ICON_TABARD, sAzthLang->getf(AZTH_LANG_HS_WEEKLY_QUEST, player, (questWotlkWeekly->GetTitle()+ (weeklyWotlkId ? "" : sAzthLang->get(AZTH_LANG_HS_QUEST_LIMIT_SUFFIX, player) )).c_str()), GOSSIP_SENDER_MAIN, weeklyWotlkId); + } + + if (bitmask>0) + AddGossipItemFor(player,GOSSIP_ICON_DOT, sAzthLang->get(AZTH_LANG_HS_TW_QUESTS, player), GOSSIP_SENDER_MAIN, 0); + + + //"TW Weekly Quest Check & gossip" + for (std::list::const_iterator it = weeklyTwIds.begin(), end = weeklyTwIds.end(); it != end; ++it) { + int weeklyTwMaxCheck = 0; + _tmpItr = sHearthstoneMode->hsTwWeeklyQuests.begin(); + while (_tmpItr != sHearthstoneMode->hsTwWeeklyQuests.end()) + { + if (player->GetQuestStatus(_tmpItr->second.id) != QUEST_STATUS_NONE) + { + weeklyTwMaxCheck = weeklyTwMaxCheck + 1; + } + _tmpItr++; + } + + Quest const *quest = sObjectMgr->GetQuestTemplate(*it); + if (quest && player->CanAddQuest(quest, false) && player->CanTakeQuest(quest, false) && weeklyTwMaxCheck < MAX_PVE_QUEST_NUMBER) + { + if (quest) { + isEmpty = false; + AddGossipItemFor(player,GOSSIP_ICON_TABARD, sAzthLang->getf(AZTH_LANG_HS_TW_WEEKLY_QUEST, player, (quest->GetTitle() + (weeklyTwMaxCheck <= MAX_PVE_QUEST_NUMBER ? "" : sAzthLang->get(AZTH_LANG_HS_QUEST_LIMIT_SUFFIX, player) )).c_str()), GOSSIP_SENDER_MAIN, weeklyTwMaxCheck <= MAX_PVE_QUEST_NUMBER ? *it : 0); + } + } + } +//endcheck + + if ((bitmask & BITMASK_TW_WEEKLY_RANDOM) == BITMASK_TW_WEEKLY_RANDOM) + { + if (questWeeklyRandomTw) + AddGossipItemFor(player,GOSSIP_ICON_TABARD, sAzthLang->getf(AZTH_LANG_HS_TW_WEEKLY_RANDOM_QUEST, player, (questWeeklyRandomTw->GetTitle() + (weeklyRandomTwId ? "" : sAzthLang->get(AZTH_LANG_HS_QUEST_LIMIT_SUFFIX, player))).c_str()), GOSSIP_SENDER_MAIN, weeklyRandomTwId); + } + +//"TW Daily Quest Check & gossip" + for (std::list::const_iterator it = dailyTwIds.begin(), end = dailyTwIds.end(); it != end; ++it) { + int dailyTwMaxCheck = 0; + _tmpItr = sHearthstoneMode->hsTwDailyQuests.begin(); + while (_tmpItr != sHearthstoneMode->hsTwDailyQuests.end() && dailyTwMaxCheck <= MAX_PVE_QUEST_NUMBER) + { + if (player->GetQuestStatus(_tmpItr->second.id) != QUEST_STATUS_NONE) + { + dailyTwMaxCheck = dailyTwMaxCheck + 1; + } + _tmpItr++; + } + + Quest const *quest = sObjectMgr->GetQuestTemplate(*it); + if (quest && player->CanAddQuest(quest, false) && player->CanTakeQuest(quest, false)) + { + if (quest) { + isEmpty = false; + AddGossipItemFor(player,GOSSIP_ICON_TABARD, sAzthLang->getf(AZTH_LANG_HS_TW_DAILY_QUEST, player, (quest->GetTitle() + (dailyTwMaxCheck <= MAX_PVE_QUEST_NUMBER ? "" : sAzthLang->get(AZTH_LANG_HS_QUEST_LIMIT_SUFFIX, player))).c_str()), GOSSIP_SENDER_MAIN, dailyTwMaxCheck <= MAX_PVE_QUEST_NUMBER ? *it : 0); + } + } + } +//endcheck + if ((bitmask & BITMASK_TW_DAILY_RANDOM) == BITMASK_TW_DAILY_RANDOM) + { + if (questDailyRandomTw) + AddGossipItemFor(player,GOSSIP_ICON_TABARD, sAzthLang->getf(AZTH_LANG_HS_TW_DAILY_RANDOM_QUEST, player, (questDailyRandomTw->GetTitle() + (dailyRandomTwId ? "" : sAzthLang->get(AZTH_LANG_HS_QUEST_LIMIT_SUFFIX, player))).c_str()), GOSSIP_SENDER_MAIN, dailyRandomTwId); + } + } + + if (bitmask == 0) + { + gossip = isEmpty ? 100001 : 100002; + } + + /*if (PveMaxCheck >= MAX_PVE_QUEST_NUMBER && + PvpMaxCheck >= MAX_PVP_QUEST_NUMBER && + WeeklyClassicMaxCheck >= MAX_WEEKLY_QUEST_NUMBER + ) + gossip = 100003; + */ + + SendGossipMenuFor(player,gossip, creature->GetGUID()); + return true; + } +}; + +#define GOSSIP_ITEM_SHOW_ACCESS "Vorrei vedere la tua merce, per favore." + +class npc_azth_vendor : public CreatureScript +{ +public: + npc_azth_vendor() : CreatureScript("npc_azth_vendor") { } + + bool OnGossipSelect(Player* player, Creature* creature, uint32 /*sender*/, uint32 action) + { + if (action == 50000) { + player->PlayerTalkClass->ClearMenus(); + sHearthstoneMode->AzthSendListInventory(creature->GetGUID(), player->GetSession(), 100000); + return true; + } + + return false; // execute default gossipselect + + } + + bool OnGossipHello(Player* player, Creature* creature) + { + std::vector vendors = sHearthstoneMode->hsVendors; + int pos = 0; + for (std::size_t i = 0; i < vendors.size(); i++) + { + HearthstoneVendor temp = vendors.at(i); + if (temp.id == creature->GetEntry()) + pos = i; + } + + if (pos == 0) + return false; + + HearthstoneVendor vendor = vendors.at(pos); + + if (vendor.pvpVendor && !sAZTH->GetAZTHPlayer(player)->isPvP() && !player->IsGameMaster()) + { + AddGossipItemFor(player,GOSSIP_ICON_CHAT, "Non sei un player Full PvP! Non posso mostrarti nulla!", GOSSIP_SENDER_MAIN, 0); + SendGossipMenuFor(player,vendor.gossipNope, creature->GetGUID()); + return true; + } + + // if reputation id = 0 then show the gossip as normal + if (vendor.reputationId == 0) { + if (vendor.gossipOk > 0) { + SendGossipMenuFor(player,vendor.gossipOk, creature->GetGUID()); + } else { + // if not gossip set, then send the default + return false; + } + + return true; + } + + + if (vendor.reputationId < 0) + { + int16 bracket = vendor.reputationId * -1; + + ArenaTeam* at = sArenaTeamMgr->GetArenaTeamById(player->GetArenaTeamId(ArenaTeam::GetSlotByType(ARENA_TEAM_SOLO_3v3))); + + int32 rating = (bracket==ARENA_TEAM_SOLO_3v3 && at) ? at->GetStats().Rating : player->GetArenaPersonalRating(ArenaTeam::GetSlotByType(bracket)); + + if (!player->IsGameMaster() && (!creature->IsVendor() || rating < vendor.repValue)) { + std::stringstream ss; + ss << vendor.repValue; + + std::string str="You need "+ss.str(); + + str+=(bracket==ARENA_TEAM_SOLO_3v3 && at) ? " team rating in" : " personal rating in"; + + switch(bracket) { + case 1: + str+=" 1v1"; + break; + case 2: + str+=" 2v2"; + break; + case 3: + str+=" 3v3"; + break; + case 4: + str+=" 3v3 Solo Queue"; + break; + case 5: + str+=" 5v5"; + break; + } + + AddGossipItemFor(player,GOSSIP_ICON_CHAT, str, GOSSIP_SENDER_MAIN, 0); + SendGossipMenuFor(player,vendor.gossipNope, creature->GetGUID()); + } else { + if (vendor.gossipOk > 0) { + AddGossipItemFor(player,GOSSIP_ICON_VENDOR, GOSSIP_ITEM_SHOW_ACCESS, GOSSIP_SENDER_MAIN, 50000); + SendGossipMenuFor(player,vendor.gossipOk, creature->GetGUID()); + } else { + // if not gossip set, then send the default + return false; + } + } + return true; + } + + // REPUTATION VENDOR + int32 rep = player->GetReputation(vendor.reputationId); + + + if (!player->IsGameMaster() && rep < vendor.repValue) { + std::stringstream ss; + ss << vendor.repValue; + std::string str = "Hai bisogno di " + ss.str() + " reputazione con AzerothShard."; + + AddGossipItemFor(player,GOSSIP_ICON_CHAT, str, GOSSIP_SENDER_MAIN, 0); + + SendGossipMenuFor(player,vendor.gossipNope, creature->GetGUID()); + } + else { + if (vendor.gossipOk > 0 && creature->IsVendor()) { + AddGossipItemFor(player,GOSSIP_ICON_VENDOR, GOSSIP_ITEM_SHOW_ACCESS, GOSSIP_SENDER_MAIN, 50000); + SendGossipMenuFor(player,vendor.gossipOk, creature->GetGUID()); + } else { + // if not gossip set, then send the default + return false; + } + } + + return true; + } +}; + +#define GOSSIP_ITEM_RESS_ME "Vorrei resuscitare, per favore." + +class npc_azth_resser : public CreatureScript +{ +public: + npc_azth_resser() : CreatureScript("npc_azth_resser") { } + + bool OnGossipSelect(Player* player, Creature* /*creature*/, uint32 /*sender*/, uint32 action) + { + if (!player) { + return false; + } + + if (action == 50001) { + player->ResurrectPlayer(1.f, false); + player->SpawnCorpseBones(); + player->SaveToDB(false, false); + } + player->PlayerTalkClass->ClearMenus(); + return false; + } + + bool OnGossipHello(Player* player, Creature* creature) + { + AddGossipItemFor(player,GOSSIP_ICON_CHAT, GOSSIP_ITEM_RESS_ME, GOSSIP_SENDER_MAIN, 50001); + // 83 spirit healer gossip + SendGossipMenuFor(player,310262, creature->GetGUID()); + return true; + } +}; + +class item_azth_hearthstone_loot_sack : public ItemScript +{ +public: + item_azth_hearthstone_loot_sack() : ItemScript("item_azth_hearthstone_loot_sack") {} + + bool OnUse(Player* player, Item* item, SpellCastTargets const& /*target*/) + { + //sHearthstoneMode->getItems(); + CharacterDatabaseTransaction trans = CharacterDatabase.BeginTransaction(); + int16 deliverDelay = TIME_TO_RECEIVE_MAIL; + MailDraft* draft = new MailDraft("Sacca Hearthstone", ""); + int i = 1; + time_t t = time(NULL); + tm *lt = localtime(&t); + int seed = lt->tm_mday + lt->tm_mon + 1 + lt->tm_year + 1900 + lt->tm_sec + player->GetGUID().GetRawValue() + player->GetItemCount(item->GetEntry(), true, 0); + int loopCheck = 0; + + Item* newItem = Item::CreateItem(100017, 1, 0); + + while (i <= EVERYTHING) + { + //srand(seed); + int quality = 0; + quality = sHearthstoneMode->getQuality(); + uint32 id = 0; + do + { + if (sHearthstoneMode->items[quality].size() != 0) + { + id = rand() % sHearthstoneMode->items[quality].size(); + newItem = Item::CreateItem(sHearthstoneMode->items[quality][id], 1, 0); + } + loopCheck++; + } while (!sHearthstoneMode->PlayerCanUseItem(newItem, player, true) && loopCheck < MAX_RETRY_GET_ITEM); + + if (newItem) + { + newItem->SaveToDB(trans); + draft->AddItem(newItem); + } + + i = i + 1; + seed = seed + i; + } + i = 1; + loopCheck = 0; + newItem = Item::CreateItem(100017, 1, 0); + while (i <= ONLY_COMMON) + { + //srand(seed + 3); + int quality = 1; + if ((float)rand_chance() > 80.f) + { + quality = 0; + } + + uint32 id = 0; + do + { + if (sHearthstoneMode->items[quality].size() != 0) + { + id = rand() % sHearthstoneMode->items[quality].size(); + newItem = Item::CreateItem(sHearthstoneMode->items[quality][id], 1, 0); + } + loopCheck++; + } while (!sHearthstoneMode->PlayerCanUseItem(newItem, player, true) && loopCheck < MAX_RETRY_GET_ITEM); + if (newItem) + { + newItem->SaveToDB(trans); + draft->AddItem(newItem); + } + + i = i + 1; + seed = seed + i; + } + i = 1; + loopCheck = 0; + newItem = Item::CreateItem(100017, 1, 0); + while (i <= NOT_COMMON) + { + //srand(seed + 4); + int quality = 0; + quality = sHearthstoneMode->getQuality(); + while (quality < 3) + { + quality = sHearthstoneMode->getQuality(); + } + uint32 id = 0; + do + { + if (sHearthstoneMode->items[quality].size() != 0) + { + id = rand() % sHearthstoneMode->items[quality].size(); + newItem = Item::CreateItem(sHearthstoneMode->items[quality][id], 1, 0); + } + loopCheck++; + } while (!sHearthstoneMode->PlayerCanUseItem(newItem, player, true) && loopCheck < MAX_RETRY_GET_ITEM); + if (newItem) + { + newItem->SaveToDB(trans); + draft->AddItem(newItem); + } + + i = i + 1; + seed = seed + i; + } + + draft->SendMailTo(trans, MailReceiver(player), MailSender(player), MAIL_CHECK_MASK_RETURNED, deliverDelay); + CharacterDatabase.CommitTransaction(trans); + + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_CHECK_EMAIL, player)); + + player->DestroyItem(item->GetBagSlot(), item->GetSlot(), true); + return true; + } +}; + +bool HearthstoneMode::PlayerCanUseItem(Item const* item, Player* player, bool classCheck) +{ + if (!item) + return false; + + ItemTemplate const* proto = item->GetTemplate(); + + if (proto) + { + if ((proto->Flags2 & ITEM_FLAGS_EXTRA_HORDE_ONLY) && player->GetTeamId(true) != TEAM_HORDE) + return false; + + if ((proto->Flags2 & ITEM_FLAGS_EXTRA_ALLIANCE_ONLY) && player->GetTeamId(true) != TEAM_ALLIANCE) + return false; + + if ((proto->AllowableClass & player->getClassMask()) == 0 || (proto->AllowableRace & player->getRaceMask()) == 0) + return false; + + if (proto->RequiredSkill != 0) + { + if (player->GetSkillValue(proto->RequiredSkill) == 0) + return false; + else if (player->GetSkillValue(proto->RequiredSkill) < proto->RequiredSkillRank) + return false; + } + + if (proto->RequiredSpell != 0 && !player->HasSpell(proto->RequiredSpell)) + return false; + + if (player->getLevel() < proto->RequiredLevel) + return false; + + const static uint32 item_weapon_skills[MAX_ITEM_SUBCLASS_WEAPON] = + { + SKILL_AXES, SKILL_2H_AXES, SKILL_BOWS, SKILL_GUNS, SKILL_MACES, + SKILL_2H_MACES, SKILL_POLEARMS, SKILL_SWORDS, SKILL_2H_SWORDS, 0, + SKILL_STAVES, 0, 0, SKILL_FIST_WEAPONS, 0, + SKILL_DAGGERS, SKILL_THROWN, SKILL_ASSASSINATION, SKILL_CROSSBOWS, SKILL_WANDS, + SKILL_FISHING + }; + + if (classCheck && proto->Class == ITEM_CLASS_WEAPON && player->GetSkillValue(item_weapon_skills[proto->SubClass]) == 0) + return false; + + if (classCheck && proto->Class == ITEM_CLASS_ARMOR) + { + uint32 type = proto->SubClass; + uint32 pClass = player->getClass(); + + switch (type) + { + case 1: //cloth + if (pClass != CLASS_PRIEST && pClass != CLASS_MAGE && pClass != CLASS_WARLOCK) + return false; + break; + case 2: //leather + if (pClass != CLASS_ROGUE && pClass != CLASS_DRUID) + return false; + break; + case 3: //mail + if (pClass != CLASS_HUNTER && pClass != CLASS_SHAMAN) + return false; + break; + case 4: //plate + if (pClass != CLASS_WARRIOR && pClass != CLASS_PALADIN && pClass != CLASS_DEATH_KNIGHT) + return false; + break; + default: + return true; + } + } + return true; + } + return false; +} + + +void HearthstoneMode::sendQuestCredit(Player *player, AchievementCriteriaEntry const* criteria, std::vector& hsCheckList) +{ + uint32 entry = 0; + + if (!isInArray(criteria->requiredType)) + return; + + uint32 achievementType = criteria->requiredType; + + // iterate through the loaded achievemements available + for (std::vector::iterator itr = hsAchievementTable.begin(); itr != hsAchievementTable.end(); itr++) + { + if ((*itr).type == achievementType) { // match the type + int data=returnData0(criteria); + if (data > 0 && (*itr).data0 == uint32(returnData0(criteria)) && criteria->timerStartEvent == 0) // match criteria + { + entry = (*itr).creature; // set credit + break; + } + } + } + + /*for (int i = 0; i < hsAchievementTable.size(); i++) + { + if (hsAchievementTable[i].type == achievementType) + if + }*/ + + if (entry && std::find(hsCheckList.begin(), hsCheckList.end(), entry) == hsCheckList.end()) + { + hsCheckList.push_back(entry); + sAZTH->GetAZTHPlayer(player)->ForceKilledMonsterCredit(entry, 0); // send credit + } +} + +HearthstoneQuest* HearthstoneMode::getHeartstoneQuestInfo(uint64 id) +{ + std::unordered_map::iterator itr = allQuests.find(id); + if (itr != allQuests.end()) + return &itr->second; + + return nullptr; +}; + +void HearthstoneMode::loadHearthstone() +{ + uint32 count = 0; + sHearthstoneMode->hsAchievementTable.clear(); + + QueryResult hsAchiResult = CharacterDatabase.PQuery("SELECT data0, data1, creature, type FROM hearthstone_criteria_credits"); + + if (hsAchiResult) + { + do + { + HearthstoneAchievement ha = {}; + ha.data0 = (*hsAchiResult)[0].GetUInt32(); + ha.data1 = (*hsAchiResult)[1].GetUInt32(); + ha.creature = (*hsAchiResult)[2].GetUInt32(); + ha.type = (*hsAchiResult)[3].GetUInt32(); + + sHearthstoneMode->hsAchievementTable.push_back(ha); + count++; + } while (hsAchiResult->NextRow()); + } + + sLog->outString("Hearthstone Mode: loaded %u achievement definitions", count); + + int itemCount = 0; + + sHearthstoneMode->items[0].clear(); + sHearthstoneMode->items[1].clear(); + sHearthstoneMode->items[2].clear(); + sHearthstoneMode->items[3].clear(); + sHearthstoneMode->items[4].clear(); + sHearthstoneMode->items[5].clear(); + sHearthstoneMode->items[6].clear(); + sHearthstoneMode->items[7].clear(); + QueryResult result = CharacterDatabase.Query("SELECT entry FROM transmog_items WHERE entry >= 100017 LIMIT 0, 200000"); + do + { + Field* fields = result->Fetch(); + uint32 entry = fields[0].GetUInt32(); + uint32 quality = sObjectMgr->GetItemTemplate(entry)->Quality; //= fields[1].GetUInt32(); + + sHearthstoneMode->items[quality].push_back(entry); + itemCount++; + } while (result->NextRow()); + + sLog->outString("Hearthstone Mode: loaded %u transmog items", itemCount); + + uint32 questCount = 0; + sHearthstoneMode->hsPveQuests.clear(); + sHearthstoneMode->hsPvpQuests.clear(); + sHearthstoneMode->hsWeeklyClassicQuests.clear(); + sHearthstoneMode->hsWeeklyTBCQuests.clear(); + sHearthstoneMode->hsWeeklyWotlkQuests.clear(); + sHearthstoneMode->hsTwWeeklyRandomQuests.clear(); + sHearthstoneMode->hsTwWeeklyQuests.clear(); + sHearthstoneMode->hsTwDailyQuests.clear(); + sHearthstoneMode->hsTwDailyRandomQuests.clear(); + + QueryResult hsQuestResult = CharacterDatabase.PQuery("SELECT id, flag, specialLevel, reqDimension, groupLimit, startTime, endTime FROM hearthstone_quests"); + + if (hsQuestResult) + { + do + { + HearthstoneQuest hq = {}; + hq.id = (*hsQuestResult)[0].GetUInt32(); + hq.flag = (*hsQuestResult)[1].GetUInt32(); + hq.specialLevel = (*hsQuestResult)[2].GetUInt32(); + hq.reqDimension = (*hsQuestResult)[3].GetUInt32(); + hq.groupLimit = (*hsQuestResult)[4].GetInt32(); + hq.startTime = (*hsQuestResult)[5].GetUInt32(); + hq.endTime = (*hsQuestResult)[6].GetUInt32(); + uint32 bitmask = hq.flag; + + sHearthstoneMode->allQuests[hq.id]=hq; + // PVP + if ((bitmask & BITMASK_PVP) == BITMASK_PVP) + sHearthstoneMode->hsPvpQuests[hq.id]=hq; + // PVE + if ((bitmask & BITMASK_DAILY_RANDOM) == BITMASK_DAILY_RANDOM) + sHearthstoneMode->hsPveQuests[hq.id]=hq; + if ((bitmask & BITMASK_WEEKLY_RND1) == BITMASK_WEEKLY_RND1) + sHearthstoneMode->hsWeeklyClassicQuests[hq.id]=hq; + if ((bitmask & BITMASK_WEEKLY_RND2) == BITMASK_WEEKLY_RND2) + sHearthstoneMode->hsWeeklyTBCQuests[hq.id]=hq; + if ((bitmask & BITMASK_WEEKLY_RND3) == BITMASK_WEEKLY_RND3) + sHearthstoneMode->hsWeeklyWotlkQuests[hq.id]=hq; + + // TIMEWALKING + if ((bitmask & BITMASK_TW_WEEKLY_RANDOM) == BITMASK_TW_WEEKLY_RANDOM) + sHearthstoneMode->hsTwWeeklyRandomQuests[hq.id]=hq; + if ((bitmask & BITMASK_TW_WEEKLY) == BITMASK_TW_WEEKLY) + sHearthstoneMode->hsTwWeeklyQuests[hq.id]=hq; + if ((bitmask & BITMASK_TW_DAILY) == BITMASK_TW_DAILY) + sHearthstoneMode->hsTwDailyQuests[hq.id]=hq; + if ((bitmask & BITMASK_TW_DAILY_RANDOM) == BITMASK_TW_DAILY_RANDOM) + sHearthstoneMode->hsTwDailyRandomQuests[hq.id]=hq; + + questCount++; + } while (hsQuestResult->NextRow()); + } + + sLog->outString("Hearthstone Mode: loaded %u quests", questCount); + + + uint32 vendorCount = 0; + sHearthstoneMode->hsVendors.clear(); + + QueryResult hsVendorResult = CharacterDatabase.PQuery("SELECT vendorId, reputation, `value`, gossipSatisfied, gossipUnsatisfied, PvPVendor FROM reputation_vendor"); + + if (hsVendorResult) + { + do + { + HearthstoneVendor hv = {}; + hv.id = (*hsVendorResult)[0].GetUInt32(); + hv.reputationId = (*hsVendorResult)[1].GetInt32(); + hv.repValue = (*hsVendorResult)[2].GetInt32(); + hv.gossipOk = (*hsVendorResult)[3].GetUInt32(); + hv.gossipNope = (*hsVendorResult)[4].GetUInt32(); + ((*hsVendorResult)[5].GetUInt32() == 1) ? (hv.pvpVendor = true) : (hv.pvpVendor = false); //if == 1 ->pvp vendor || else-> non pvp vendor + + sHearthstoneMode->hsVendors.push_back(hv); // push the newly created element in the list + + vendorCount++; + } while (hsVendorResult->NextRow()); + } + + sLog->outString("Hearthstone Mode: loaded %u vendors", vendorCount); +} + +void AddSC_hearthstone() +{ + new npc_han_al(); + new npc_azth_vendor(); + new item_azth_hearthstone_loot_sack(); + new npc_azth_resser(); + //new azth_hearthstone_world(); +} + diff --git a/src/HearthstoneMode/azth_custom_hearthstone_mode.h b/src/HearthstoneMode/azth_custom_hearthstone_mode.h new file mode 100644 index 0000000..c9a2c7d --- /dev/null +++ b/src/HearthstoneMode/azth_custom_hearthstone_mode.h @@ -0,0 +1,121 @@ +#ifndef HEARTHSTONE_MODE_H +#define HEARTHSTONE_MODE_H + +#include "ScriptMgr.h" +#include "ScriptedCreature.h" +#include "ScriptedGossip.h" +#include "Player.h" +#include "WorldSession.h" +#include "WorldPacket.h" +#include "Chat.h" +#include "Spell.h" +#include "Define.h" +#include "GossipDef.h" +#include "Item.h" +#include "Common.h" +#include "Opcodes.h" +#include "Log.h" +#include "ObjectMgr.h" +#include // std::vector + +struct HearthstoneAchievement +{ + uint32 data0; + uint32 data1; + uint32 creature; + uint32 type; +}; + +struct HearthstoneQuest +{ + uint32 id; + uint32 flag; + uint32 specialLevel; + uint32 reqDimension; + int32 groupLimit; + uint32 startTime; + uint32 endTime; +}; + +struct HearthstoneVendor +{ + uint32 id; + int32 reputationId; + int32 repValue; + uint32 gossipOk; + uint32 gossipNope; + bool pvpVendor; +}; + +enum bitmasksHs +{ + BITMASK_NORMAL = 0, //normal quests but with hs checks + BITMASK_DAILY_RANDOM = 1, //hs daily random + BITMASK_PVP = 2, //hs daily random + BITMASK_WEEKLY_RND1 = 4, //hs weekly random + BITMASK_TW_WEEKLY = 8, //hs TW weekly + BITMASK_TW_DAILY = 16, //hs TW daily + BITMASK_TW_DAILY_RANDOM = 32, //hs TW daily random + BITMASK_WEEKLY_RND2 = 64, //hs weekly random + BITMASK_WEEKLY_RND3 = 128, //hs wotlk weekly random + BITMASK_TW_WEEKLY_RANDOM = 256, //hs tw weekly random +}; + +enum miscHs +{ + PVE_QUEST_NUMBER = 1, + MAX_PVE_QUEST_NUMBER = 0, + PVP_QUEST_NUMBER = 1, + MAX_PVP_QUEST_NUMBER = 3, + WEEKLY_QUEST_NUMBER = 0, + MAX_WEEKLY_QUEST_NUMBER = 3, + AZTH_REPUTATION_ID = 948 +}; + +enum otherMiscHs +{ + QUALITY_TO_FILL_PERCENTAGE = 1, // if percentage "explode", then use quality 1 + ONLY_COMMON = 2, // number of common item (grey, white) + NOT_COMMON = 1, // number of rare items + EVERYTHING = 2, // number of items of any quality + TIME_TO_RECEIVE_MAIL = 0, + SUPPORTED_CRITERIA_NUMBER = 15, + MAX_RETRY_GET_ITEM = 30 +}; + +class HearthstoneMode +{ + public: + static HearthstoneMode* instance(); + + void AzthSendListInventory(ObjectGuid vendorGuid, WorldSession * session, uint32 extendedCostStartValue); + void sendQuestCredit(Player *player, AchievementCriteriaEntry const* criteria, std::vector& hsCheckList); + int returnData0(AchievementCriteriaEntry const* criteria); + int returnData1(AchievementCriteriaEntry const* criteria); + std::vector hsAchievementTable; + std::unordered_map allQuests; + std::unordered_map hsPveQuests; + std::unordered_map hsPvpQuests; + std::unordered_map hsWeeklyClassicQuests; + std::unordered_map hsWeeklyTBCQuests; + std::unordered_map hsWeeklyWotlkQuests; + + std::unordered_map hsTwWeeklyRandomQuests; + std::unordered_map hsTwWeeklyQuests; + std::unordered_map hsTwDailyQuests; + std::unordered_map hsTwDailyRandomQuests; + int getQuality(); + std::vector items[8]; + bool isInArray(int val); + bool PlayerCanUseItem(Item const* item, Player* player, bool classCheck); + void loadHearthstone(); + std::vector hsVendors; + HearthstoneQuest *getHeartstoneQuestInfo(uint64 id); + + private: + float CHANCES[8] = { 10.f, 30.f, 20.f, 15.f, 5.f, 1.f, 0.5f, 1.f }; +}; + +#define sHearthstoneMode HearthstoneMode::instance() + +#endif // !HEARTHSTONE_MODE diff --git a/src/Playerstats/AzthAchievement.cpp b/src/Playerstats/AzthAchievement.cpp new file mode 100644 index 0000000..2aff729 --- /dev/null +++ b/src/Playerstats/AzthAchievement.cpp @@ -0,0 +1,114 @@ +#include "AzthAchievement.h" + +AzthAchievementMgr* AzthAchievementMgr::instance() +{ + static AzthAchievementMgr instance; + return &instance; +} + +AzthAchievement::AzthAchievement(uint32 achievement, uint32 criteria, uint32 points, uint32 category, uint32 parentCategory, uint32 difficulty, uint32 levelMax, uint32 levelMin, + uint32 level, uint32 originalPoints, std::string name, std::string description, uint32 reward, uint32 rewardCount, uint32 killCredit, uint32 specialLevelReq, uint32 reqDimension) +{ + this->achievement = achievement; + this->criteria = criteria; + this->points = points; + this->category = category; + this->parentCategory = parentCategory; + this->difficulty = difficulty; + this->levelMax = levelMax; + this->levelMin = levelMin; + this->level = level; + this->originalPoints = originalPoints; + this->name = name; + this->description = description; + this->reward = reward; + this->rewardCount = rewardCount; + this->killCredit = killCredit; + this->specialLevelReq = specialLevelReq; + this->reqDimension = reqDimension; +} + +uint32 AzthAchievement::GetAchievement() const +{ + return achievement; +} + +uint32 AzthAchievement::GetCriteria() const +{ + return criteria; +} + +uint32 AzthAchievement::GetPoints() const +{ + return points; +} + +uint32 AzthAchievement::GetCategory() const +{ + return category; +} + +uint32 AzthAchievement::GetParCategory() const +{ + return parentCategory; +} + +uint32 AzthAchievement::GetDifficulty() const +{ + return difficulty; +} + +uint32 AzthAchievement::GetLevelMax() const +{ + return levelMax; +} + +uint32 AzthAchievement::GetLevelMin() const +{ + return levelMin; +} + +uint32 AzthAchievement::GetLevel() const +{ + return level; +} + +uint32 AzthAchievement::GetOriginalPoints() const +{ + return originalPoints; +} + +std::string AzthAchievement::GetName() const +{ + return name; +} + +std::string AzthAchievement::GetDescription() const +{ + return description; +} + +uint32 AzthAchievement::GetReward() const +{ + return reward; +} + +uint32 AzthAchievement::GetRewardCount() const +{ + return rewardCount; +} + +uint32 AzthAchievement::GetKillCredit() const +{ + return killCredit; +} + +uint32 AzthAchievement::GetSpecialLevelReq() const +{ + return specialLevelReq; +} + +uint32 AzthAchievement::GetReqDimension() const +{ + return reqDimension; +} diff --git a/src/Playerstats/AzthAchievement.h b/src/Playerstats/AzthAchievement.h new file mode 100644 index 0000000..7cac470 --- /dev/null +++ b/src/Playerstats/AzthAchievement.h @@ -0,0 +1,65 @@ +#ifndef AZTH_ACHIEVEMENT_H +#define AZTH_ACHIEVEMENT_H + +#include "Common.h" +#include "Define.h" +#include "Config.h" +#include + +class AzthAchievement +{ +public: + //GETTERS + uint32 GetAchievement() const; + uint32 GetCriteria() const; + uint32 GetPoints() const; + uint32 GetCategory() const; + uint32 GetParCategory() const; + uint32 GetDifficulty() const; + uint32 GetLevelMax() const; + uint32 GetLevelMin() const; + uint32 GetLevel() const; + uint32 GetOriginalPoints() const; + std::string GetName() const; + std::string GetDescription() const; + uint32 GetReward() const; + uint32 GetRewardCount() const; + uint32 GetKillCredit() const; + uint32 GetSpecialLevelReq() const; + uint32 GetReqDimension() const; + + AzthAchievement(uint32 achievement = 0, uint32 criteria = 0, uint32 points = 0, uint32 category = 0, uint32 parentCategory = 0, uint32 difficulty = 0, uint32 levelMax = 0, + uint32 levelMin = 0, uint32 level = 0, uint32 originalPoints = 0, std::string name = "", std::string description = "", uint32 reward = 0, uint32 rewardCount = 0, uint32 killCredit = 0, + uint32 specialLevelReq = 0, uint32 reqDimension = 0); + + +private: + uint32 achievement; + uint32 criteria; + uint32 points; + uint32 category; + uint32 parentCategory; + uint32 difficulty; + uint32 levelMax; + uint32 levelMin; + uint32 level; + uint32 originalPoints; + std::string name; + std::string description; + uint32 reward; + uint32 rewardCount; + uint32 killCredit; + uint32 specialLevelReq; + uint32 reqDimension; +}; + +class AzthAchievementMgr { +public: + static AzthAchievementMgr* instance(); + + std::map achievementList; +}; + +#define sAzthAchievementMgr AzthAchievementMgr::instance() + +#endif diff --git a/src/Playerstats/AzthGroupMgr.cpp b/src/Playerstats/AzthGroupMgr.cpp new file mode 100644 index 0000000..25d3251 --- /dev/null +++ b/src/Playerstats/AzthGroupMgr.cpp @@ -0,0 +1,34 @@ +#include "AzthGroupMgr.h" +#include "DatabaseEnv.h" + +AzthGroupMgr::AzthGroupMgr(Group* original) +{ + group = original; + + QueryResult result = CharacterDatabase.PQuery("SELECT `MaxlevelGroup`, `MaxGroupSize` FROM `azth_groups` WHERE `guid` = '%u'", group->GetGUID().GetCounter()); + if (!result) + { + levelMaxGroup = 0; + groupSize = 1; + } + else + { + Field* fields = result->Fetch(); + + levelMaxGroup = fields[0].GetUInt32(); + groupSize = fields[1].GetUInt32(); + } +} + +AzthGroupMgr::~AzthGroupMgr() +{ +} + +void AzthGroupMgr::saveToDb() +{ + ASSERT(group); + + CharacterDatabase.PExecute("UPDATE azth_groups SET MaxLevelGroup = %u, MaxGroupSize = %u WHERE leaderGuid = %u", levelMaxGroup, groupSize, this->group->GetLeaderGUID().GetCounter()); +} + + diff --git a/src/Playerstats/AzthGroupMgr.h b/src/Playerstats/AzthGroupMgr.h new file mode 100644 index 0000000..94583a3 --- /dev/null +++ b/src/Playerstats/AzthGroupMgr.h @@ -0,0 +1,18 @@ +#ifndef AZTHGROUPMGR_H +#define AZTHGROUPMGR_H + +#include "Group.h" + +class AzthGroupMgr +{ +public: + explicit AzthGroupMgr(Group* original); + ~AzthGroupMgr(); + + void saveToDb(); + + uint32 levelMaxGroup; + uint32 groupSize; + Group* group; +}; +#endif diff --git a/src/Playerstats/AzthInstanceMgr.cpp b/src/Playerstats/AzthInstanceMgr.cpp new file mode 100644 index 0000000..8650bb8 --- /dev/null +++ b/src/Playerstats/AzthInstanceMgr.cpp @@ -0,0 +1,25 @@ +#include "AzthInstanceMgr.h" +#include "Log.h" +#include + + AzthInstanceMgr::AzthInstanceMgr(InstanceSave* is) + { + levelMax = 0; + groupSize = 1; + startTime = static_cast(time(nullptr)); + instanceSave = is; + } + + void AzthInstanceMgr::saveToDb() + { + if(!instanceSave) + { + // instanceSave is a variable that is initializated when an instance is created and cannot be null + // if it happens we are loosing important data and it's prone to abuses + LOG_FATAL("azth.AzthInstanceMgr","saveToDb() cannot have null instanceSave, stacktrace: %s", boost::stacktrace::to_string(boost::stacktrace::basic_stacktrace()).c_str()); + return; + } + + CharacterDatabase.PExecute("UPDATE instance SET levelPg = %u, groupSize = %u, startTime = %u WHERE id = %u", levelMax, groupSize, instanceSave->GetInstanceId(), startTime); + } + diff --git a/src/Playerstats/AzthInstanceMgr.h b/src/Playerstats/AzthInstanceMgr.h new file mode 100644 index 0000000..a283791 --- /dev/null +++ b/src/Playerstats/AzthInstanceMgr.h @@ -0,0 +1,21 @@ +#ifndef AZTHINSTANCEMGR_H +#define AZTHINSTANCEMGR_H + +#include "InstanceSaveMgr.h" + +class InstanceSave; + +class AzthInstanceMgr +{ +public: + explicit AzthInstanceMgr(InstanceSave* is); + ~AzthInstanceMgr(); + + void saveToDb(); + + InstanceSave* instanceSave; + uint32 levelMax; + uint32 groupSize; + uint32 startTime; +}; +#endif diff --git a/src/Playerstats/PStatsScripts.cpp b/src/Playerstats/PStatsScripts.cpp new file mode 100644 index 0000000..6202712 --- /dev/null +++ b/src/Playerstats/PStatsScripts.cpp @@ -0,0 +1,107 @@ +#include "ScriptMgr.h" +#include "InstanceScript.h" +#include "InstanceSaveMgr.h" +#include "Player.h" +#include "Map.h" +#include "WorldSession.h" +#include "Group.h" +#include "AzthUtils.h" +#include "AZTH.h" + +enum achievementStatsType +{ + ACHIEVEMENT_TYPE, + CRITERIA_TYPE +}; + +class AzthGroupPlg : public GroupScript { +public: + + AzthGroupPlg() : GroupScript("AzthGroupPlg") { + } + + void OnAddMember(Group* group, ObjectGuid guid) override { + Player* player = ObjectAccessor::FindPlayer(guid); + + sAzthUtils->updateTwLevel(player, group); + } +}; + +class PlayerStats : public PlayerScript +{ +public: + + PlayerStats() : PlayerScript("PlayerStats") { + } + + void OnUpdateZone(Player* /*player*/, uint32 /*newZone*/, uint32 /*newArea*/) override { + // sAzthUtils->updateTwLevel(player, player->GetGroup()); <-- we will do it in TimeWalking.cpp script, having correct order with autoscaling + } + + + // Following 2 functions store levels in a temporary map + + void OnAchiComplete(Player *player, AchievementEntry const* achievement) override { + AzthPlayer::AzthAchiData it = { + player->getLevel(), + sAZTH->GetAZTHPlayer(player)->getGroupLevel(), + sAZTH->GetAZTHPlayer(player)->getPStatsLevel(false) + }; + + sAZTH->GetAZTHPlayer(player)->m_completed_achievement_map[achievement->ID] = it; + } + + void OnCriteriaProgress(Player *player, AchievementCriteriaEntry const* criteria) override { + AzthPlayer::AzthAchiData it = { + player->getLevel(), + sAZTH->GetAZTHPlayer(player)->getGroupLevel(), + sAZTH->GetAZTHPlayer(player)->getPStatsLevel(false) + }; + + sAZTH->GetAZTHPlayer(player)->m_completed_criteria_map[criteria->ID] = it; + } + + // Following 2 functions save our temporary maps inside the db + + void OnAchiSave(CharacterDatabaseTransaction /* trans */, Player *player, uint16 achId, CompletedAchievementData achiData) override { + if (sAZTH->GetAZTHPlayer(player)->m_completed_achievement_map.find(achId) != sAZTH->GetAZTHPlayer(player)->m_completed_achievement_map.end()) { + AzthPlayer::AzthAchiData it = sAZTH->GetAZTHPlayer(player)->m_completed_achievement_map[achId]; + + CharacterDatabase.AsyncQuery(Acore::StringFormat("INSERT INTO azth_achievement_stats (playerGuid, achievement, type, level, levelParty, specialLevel, date) VALUES (%u, %u, %u, %u, %u, %u, %u)", + player->GetGUID().GetCounter(), + achId, + ACHIEVEMENT_TYPE, + it.level, + it.levelParty, + it.specialLevel, + achiData.date + ).c_str()); + + sAZTH->GetAZTHPlayer(player)->m_completed_achievement_map.erase(achId); + } + } + + void OnCriteriaSave(CharacterDatabaseTransaction /* trans */, Player* player, uint16 critId, CriteriaProgress criteriaData) override { + if (sAZTH->GetAZTHPlayer(player)->m_completed_criteria_map.find(critId) != sAZTH->GetAZTHPlayer(player)->m_completed_criteria_map.end()) { + AzthPlayer::AzthAchiData it = sAZTH->GetAZTHPlayer(player)->m_completed_criteria_map[critId]; + + CharacterDatabase.AsyncQuery(Acore::StringFormat("INSERT INTO azth_achievement_stats (playerGuid, achievement, type, level, levelParty, specialLevel, date) VALUES (%u, %u, %u, %u, %u, %u, %u)", + player->GetGUID().GetCounter(), + critId, + CRITERIA_TYPE, + it.level, + it.levelParty, + it.specialLevel, + criteriaData.date + ).c_str()); + + sAZTH->GetAZTHPlayer(player)->m_completed_criteria_map.erase(critId); + } + } + +}; + +void AddSC_playerstats() { + new AzthGroupPlg(); + new PlayerStats(); +} diff --git a/src/Playerstats/PlayerStats.cpp b/src/Playerstats/PlayerStats.cpp new file mode 100644 index 0000000..a144234 --- /dev/null +++ b/src/Playerstats/PlayerStats.cpp @@ -0,0 +1,164 @@ +#include "AzthPlayer.h" +#include "AzthLevelStat.h" +#include "Group.h" +#include "Player.h" +#include "AZTH.h" +#include "AzthGroupMgr.h" + +uint32 AzthPlayer::normalizeLvl(uint32 level) +{ + if (level>=TIMEWALKING_SPECIAL_LVL_WOTLK_START && level<=TIMEWALKING_SPECIAL_LVL_WOTLK_END) + return sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL); + + if (!player) + return level; + + uint32 rLevel = level; + + // to normalize level auto or vas we need to get the max level of the group or the level of player + // however since the special level is related to a dynamic real level (that can be increased/decreased) + // we need to get the max level in a specific time (for now, should be avoided when possible) + if (level >= TIMEWALKING_SPECIAL_LVL_MIN) + { + Group *group = player->GetGroup(); + if (group) + { + for (Group::member_citerator mitr = group->GetMemberSlots().begin(); mitr != group->GetMemberSlots().end(); ++mitr) + { + if (CharacterCacheEntry const* gpd = sCharacterCache->GetCharacterCacheByGuid(mitr->guid)) + { + if (groupLevel < gpd->Level) + rLevel = gpd->Level; + } + } + } + else + rLevel = player->getLevel(); + } + + return rLevel; +} + +uint32 AzthPlayer::getGroupLevel(bool normalize /*=true*/, bool checkInstance /*=true*/) { + if (!player) + return 0; + + uint32 groupLevel = 0; + + if (checkInstance) { + groupLevel = getInstanceLevel(normalize); + } + + + Group *group = player->GetGroup(); + if (AzthGroupMgr *azthGroup = sAZTH->GetAZTHGroup(group); azthGroup) + { + if (!azthGroup) + { + return 0; + } + + // outworld party or limit case for dungeon + groupLevel = azthGroup->levelMaxGroup; + + if (normalize) + groupLevel = normalizeLvl(groupLevel); + } + + return groupLevel; +} + +uint32 AzthPlayer::getInstanceLevel(bool normalize /*=true*/) +{ + if (!player) + return 0; + + uint32 instanceLevel=0; + + Map *map = player->FindMap(); + if (map && (map->IsDungeon() || map->IsRaid())) + { + // when in instance + InstanceSave *is = sInstanceSaveMgr->PlayerGetInstanceSave( + player->GetGUID(), map->GetId(),player->GetDifficulty((map->IsRaid()))); + + if (is && sAZTH->GetAZTHInstanceSave(is)) + { + instanceLevel = sAZTH->GetAZTHInstanceSave(is)->levelMax; + + if (normalize) + instanceLevel = normalizeLvl(instanceLevel); + } + } + + return instanceLevel; +} + +// this function help to find the current level for player stats and timewalking +// in order of importance: instance -> group -> player +// but you can disable instance or group check or both in special situations +uint32 AzthPlayer::getPStatsLevel(bool normalize /*=true*/, bool checkInstance /*=true*/, bool checkGroup /*=true*/) +{ + if (!player) + return 0; + + uint32 level = 0; + + // instance + if (checkInstance) + level = getInstanceLevel(normalize); + + // group + if (checkGroup && !level) + level = getGroupLevel(normalize); + + // player + if (!level) + { + level = isTimeWalking() ? GetTimeWalkingLevel() : player->getLevel(); + + if (normalize) + level = normalizeLvl(level); + } + + return level; +} + +uint32 AzthPlayer::getGroupSize(bool checkInstance /*=true*/) +{ + if (!player) + return 0; + + uint32 groupSize = 0; + + if (checkInstance) + groupSize = getInstanceSize(); + + if (!groupSize) + { + Group *group = player->GetGroup(); + AzthGroupMgr *azthGroup = sAZTH->GetAZTHGroup(group); + if (azthGroup) + groupSize = azthGroup->groupSize; // outworld party or limit case for dungeon + } + + return groupSize; +} + +uint32 AzthPlayer::getInstanceSize() +{ + if (!player) + return 0; + + Map *map = player->FindMap(); + if (map && (map->IsDungeon() || map->IsRaid())) + { + // caso party instance + InstanceSave *is = sInstanceSaveMgr->PlayerGetInstanceSave(player->GetGUID(), map->GetId(), player->GetDifficulty((map->IsRaid()))); + + if (is) + return sAZTH->GetAZTHInstanceSave(is)->groupSize; + } + + return 0; +} diff --git a/src/PvpItemLevel/ArenaSeason.cpp b/src/PvpItemLevel/ArenaSeason.cpp new file mode 100644 index 0000000..981ff74 --- /dev/null +++ b/src/PvpItemLevel/ArenaSeason.cpp @@ -0,0 +1,104 @@ +#include "ArenaSeason.h" +#include "AzthUtils.h" +#include "AZTH.h" +#include "Solo3v3.h" + +Season* Season::instance() +{ + static Season instance; + return &instance; +} + +Season::Season() +{ + itemLevel = uint32(0); + startingDate = time_t(0); + endDate = time_t(0); +} + +Season::Season(uint32 ItsItemLevel, time_t ItsStartingDate, time_t ItsEndDate) +{ + itemLevel = ItsItemLevel; + startingDate = ItsStartingDate; + endDate = ItsEndDate; +} + +uint32 Season::GetItemLevel() const +{ + return itemLevel; +} + + +void Season::SetItemLevel(uint32 ItsItemLevel) +{ + itemLevel = ItsItemLevel; +} + +time_t Season::GetStartingDate() const +{ + return startingDate; +} + + +void Season::SetStartingDate(time_t ItsStartingDate) +{ + startingDate = ItsStartingDate; +} + +time_t Season::GetEndDate() const +{ + return endDate; +} + +void Season::SetEndDate(time_t ItsEndDate) +{ + endDate = ItsEndDate; +} + +bool Season::IsEnabled() const +{ + return enabled; +} + +void Season::SetEnabled(bool enable) +{ + this->enabled = enable; +} + +// +// Passing player argument will check the player state and automatically shows a message +// +bool Season::checkItem(ItemTemplate const* proto, Player const* player) +{ + if (!IsEnabled()) + return true; //SYSTEM DISABLED + + if (/*player->InBattleground() ||*/ player->InArena() || /*player->InBattlegroundQueue()*/ + player->InBattlegroundQueueForBattlegroundQueueType(BATTLEGROUND_QUEUE_2v2) || + player->InBattlegroundQueueForBattlegroundQueueType(BATTLEGROUND_QUEUE_3v3) || + player->InBattlegroundQueueForBattlegroundQueueType(BATTLEGROUND_QUEUE_5v5) || + player->InBattlegroundQueueForBattlegroundQueueType((BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_3v3_SOLO) || + player->InBattlegroundQueueForBattlegroundQueueType((BattlegroundQueueTypeId)BATTLEGROUND_QUEUE_1v1) + ) + { + if (!sAzthUtils->checkItemLvL(proto, GetItemLevel())) + { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_TOURNAMENT_LEVEL_TOOHIGH, player, proto->ItemId, proto->Name1.c_str())); + return false; + } + } + + return true; +} + +bool Season::canJoinArenaOrBg(Player *pl) +{ + if (!IsEnabled()) + return true; // SYSTEM DISABLED + + if (sAZTH->GetAZTHPlayer(pl)->checkItems(GetItemLevel())) + return true; + + ChatHandler(pl->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_TOURNAMENT_LEVEL_ACTUAL, pl, sASeasonMgr->GetItemLevel())); + return false; +} diff --git a/src/PvpItemLevel/ArenaSeason.h b/src/PvpItemLevel/ArenaSeason.h new file mode 100644 index 0000000..4550c08 --- /dev/null +++ b/src/PvpItemLevel/ArenaSeason.h @@ -0,0 +1,41 @@ +#include "Common.h" +#include "Define.h" +#include "Config.h" +#include "ItemTemplate.h" +#include "Player.h" + +class Season +{ +public: + static Season* instance(); + + //GETTERS + uint32 GetItemLevel() const; + time_t GetStartingDate() const; + time_t GetEndDate() const; + bool IsEnabled() const; + + //SETTERS + void SetItemLevel(uint32 itemLevel); + void SetStartingDate(time_t startingDate); + void SetEndDate(time_t endDate); + void SetEnabled(bool enable); + + + bool checkItem(ItemTemplate const* proto); + bool checkItem(ItemTemplate const* proto, Player const* player); + + Season(); + Season(uint32 itemLevel, time_t startingDate, time_t endDate); + bool checkItems(Player *pl); + bool canJoinArenaOrBg(Player *pl); + +private: + bool enabled; + uint32 itemLevel; + time_t startingDate; + time_t endDate; +}; + + +#define sASeasonMgr Season::instance() diff --git a/src/PvpItemLevel/BGItemLevel.cpp b/src/PvpItemLevel/BGItemLevel.cpp new file mode 100644 index 0000000..d935655 --- /dev/null +++ b/src/PvpItemLevel/BGItemLevel.cpp @@ -0,0 +1,249 @@ +#include "ScriptMgr.h" +#include "Player.h" +#include "Item.h" +#include "ItemTemplate.h" +#include "Battleground.h" +#include "BattlegroundMgr.h" +#include "QueryResult.h" +#include "ArenaSeason.h" +#include "Common.h" +#include "ArenaTeam.h" +#include "Group.h" +#include "Chat.h" +#include "AzthLanguage.h" +#include "AzthLanguageStrings.h" + +uint32 defaultMaxItemLevel; + +class loadSeason : public WorldScript +{ +public: + loadSeason() : WorldScript("loadSeason") { } + + void OnStartup() override + { + QueryResult result = WorldDatabase.PQuery("SELECT * FROM season ORDER BY startingFrom;"); + QueryResult getLastDate = CharacterDatabase.PQuery("SELECT * FROM worldstates WHERE entry = 100000;"); + + if (!result) + { + sLog->outString(">> Loaded 0 season. DB table `season` is empty."); + LOG_INFO("server.loading", " "); + return; + } + + Field* arena_timestamp_table = getLastDate->Fetch(); + + bool enable; + + //get status of the system: enabled or disabled + std::istringstream(arena_timestamp_table[2].GetString()) >> enable; + + sASeasonMgr->SetEnabled(enable); + + bool actualSeasonFound = false; + + //ACTUAL TIME FROM CORE + time_t t = time(0); + struct tm* now = localtime(&t); + uint32 month = now->tm_mon + 1; + uint32 day = now->tm_mday; + uint32 seconds = (now->tm_hour * 60 * 60) + (now->tm_min * 60) + now->tm_sec; + uint32 date = (month * 31 * 24 * 60 * 60) + (day * 24 * 60 * 60) + seconds; + + //TIME FROM DB + time_t startingDate; + time_t endDate; + + do + { + Field* season_table = result->Fetch(); + + if (!season_table) + break; + + //retrieve timestamp from db + startingDate = time_t(season_table[1].GetUInt32()); + endDate = time_t(season_table[2].GetUInt32()); + + //convert start timestamp to something that can be read + struct tm* startingDateConverted = localtime(&startingDate); + + //assign value to every converted value from start timestamp + uint32 dbMonthStart = startingDateConverted->tm_mon + 1; + uint32 dbDayStart = startingDateConverted->tm_mday; + uint32 dbSecondsStart = (startingDateConverted->tm_hour * 60 * 60) + (startingDateConverted->tm_min * 60) + startingDateConverted->tm_sec; + + uint32 dbStartDate = (dbMonthStart * 31 * 24 * 60 * 60) + (dbDayStart * 24 * 60 * 60) + dbSecondsStart; + + //convert end timestamp to something that can be read + struct tm* EndDateConverted = localtime(&endDate); + + //assign value to every converted value from end timestamp + uint32 dbMonthEnd = EndDateConverted->tm_mon + 1; + uint32 dbDayEnd = EndDateConverted->tm_mday; + uint32 dbSecondsEnd = (EndDateConverted->tm_hour * 60 * 60) + (EndDateConverted->tm_min * 60) + EndDateConverted->tm_sec; + + uint32 dbEndDate = (dbMonthEnd * 31 * 24 * 60 * 60) + (dbDayEnd * 24 * 60 * 60) + dbSecondsEnd; + + if (date > dbStartDate && date < dbEndDate) + { + sASeasonMgr->SetItemLevel(season_table[0].GetUInt32()); + sASeasonMgr->SetStartingDate(time_t(season_table[1].GetUInt32())); + sASeasonMgr->SetEndDate(time_t((season_table[2].GetUInt32()))); + actualSeasonFound = true; + } + + } while (!actualSeasonFound && result->NextRow()); + + // Prevent crashes if any season found + if (sASeasonMgr->GetItemLevel() == 0) + { + sLog->outString(">> No correspondent season found. Check DB table `season`.\n"); + LOG_INFO("server.loading", " "); + sASeasonMgr->SetEnabled(false); + return; + } + + defaultMaxItemLevel = sASeasonMgr->GetItemLevel(); + + sLog->outString(">> Season script for PVP loaded, actual item level: %u\n", sASeasonMgr->GetItemLevel()); + LOG_INFO("server.loading", " "); + } +}; + +class checkItemLevel : public PlayerScript +{ +public: + checkItemLevel() : PlayerScript("checkItemLevel") {} + + //Check not compatible items + void checkPlayerItems(Player* player, bool inBattleground) + { + if (!sASeasonMgr->canJoinArenaOrBg(player) && inBattleground) + { + if (!inBattleground) + { + /*// we hope it will never happen, since we don't allow it + // it can cause a crash (to investigate why) + for (uint32 qslot = 0; qslot < PLAYER_MAX_BATTLEGROUND_QUEUES; ++qslot) + { + if (BattlegroundQueueTypeId q = player->GetBattlegroundQueueTypeId(qslot)) + { + BattlegroundQueue& queue = sBattlegroundMgr->GetBattlegroundQueue(q); + queue.RemovePlayer(player->GetGUID(), false, qslot); + player->RemoveBattlegroundQueueId(q); + } + }*/ + } + else + { + player->LeaveBattleground(); //works also with arena + } + } + } + + //Check if a player join (queue) battleground with not compatible items + void OnPlayerJoinBG(Player* /*player*/) + { + //checkPlayerItems(player, false); + } + + //Check if a player join (queue) arena with not compatible items + void OnPlayerJoinArena(Player* /*player*/) + { + //checkPlayerItems(player, false); + } + + //Check if a player is just entered in battleground/arena with not compatible items + void OnUpdateZone(Player* player, uint32 /*newZone*/, uint32 /*newArea*/) + { + if (/*player->InBattleground() ||*/ player->InArena()) + { + checkPlayerItems(player, true); + } + } + + //Check if a player equip not compatible item during battleground/arena + void OnEquip(Player* player, Item* /*item*/, uint8 /*bag*/, uint8 /*slot*/, bool /*update*/) + { + if (/*player->InBattleground() ||*/ player->InArena()) + { + checkPlayerItems(player, true); + } + } +}; + +class arenaPointsModifier : public GlobalScript +{ +public: + arenaPointsModifier() : GlobalScript("arenaPointsModifier") {} + + + void OnBeforeUpdateArenaPoints(ArenaTeam* at, std::map& ap) + { + if (sASeasonMgr->IsEnabled()) + for (ArenaTeam::MemberList::const_iterator itr = at->m_membersBegin(); itr != at->m_membersEnd(); ++itr) + { + uint32 points = ap[itr->Guid]; + + if (points == 0) + continue; + + // double arena points on standard weeks + ap[itr->Guid] = float(points * 2); + } + } +}; + +using namespace Acore::ChatCommands; + +class setMaxItemLevel : public CommandScript +{ +public: + setMaxItemLevel() : CommandScript("setMaxItemLevel") {} + + ChatCommandTable GetCommands() const override + { + static ChatCommandTable commandTable = + { + { "itemlevel", HandleSetMaxItemLevelCommand, SEC_GAMEMASTER, Console::No } + }; + + return commandTable; + } + + static bool HandleSetMaxItemLevelCommand(ChatHandler* handler, int32 itemLevel) + { + if (!handler->GetSession() || handler->GetSession()->GetPlayer()) + return true; + + if (itemLevel < -1) + { + handler->SendSysMessage(sAzthLang->get(AZTH_LANG_COMMON_NOTVALIDPARAMTER, handler->GetSession()->GetPlayer())); + return true; + } + + if (itemLevel == -1) + { + sASeasonMgr->SetItemLevel(defaultMaxItemLevel); + handler->SendSysMessage(sAzthLang->get(AZTH_LANG_BG_ITEM_LEVEL_RESET, handler->GetSession()->GetPlayer())); //solo gm + } + else + { + sASeasonMgr->SetItemLevel(itemLevel); + handler->SendSysMessage(sAzthLang->get(AZTH_LANG_BG_ITEM_LEVEL_CHANGED, handler->GetSession()->GetPlayer())); //solo gm + } + + return true; + } + +}; + +void AddSC_BGItemLevel() +{ + new checkItemLevel(); + new loadSeason(); + new arenaPointsModifier(); + new setMaxItemLevel(); +} diff --git a/src/PvpMode/PlayerPvP.cpp b/src/PvpMode/PlayerPvP.cpp new file mode 100644 index 0000000..fae1b9c --- /dev/null +++ b/src/PvpMode/PlayerPvP.cpp @@ -0,0 +1,28 @@ +#include "AzthPlayer.h" +#include "Define.h" +#include "ObjectAccessor.h" +#include "World.h" +#include "Player.h" + + +void AzthPlayer::loadPvPInfo() { + m_isPvP = false; + + uint32 accId = this->player->GetSession()->GetAccountId(); + QueryResult isPvPAccount = CharacterDatabase.PQuery("SELECT isPvP FROM azth_pvp_accounts WHERE id = '%d';", accId); + + if (isPvPAccount != nullptr && isPvPAccount->GetRowCount() > 0) + this->m_isPvP = true; + + if (!this->m_isPvP) { + uint32 characterId = this->player->GetGUID().GetCounter(); + QueryResult isPvPCharacter = CharacterDatabase.PQuery("SELECT isPvP FROM azth_pvp_characters WHERE id = '%d';", characterId); + + if (isPvPCharacter != nullptr && isPvPCharacter->GetRowCount() > 0) + this->m_isPvP = true; + } +} + +bool AzthPlayer::isPvP() { + return this->m_isPvP; +} diff --git a/src/PvpMode/ProfessionNpc.cpp b/src/PvpMode/ProfessionNpc.cpp new file mode 100644 index 0000000..fef4384 --- /dev/null +++ b/src/PvpMode/ProfessionNpc.cpp @@ -0,0 +1,350 @@ +#include "AzthLanguageStrings.h" +#include "AzthPlayer.h" +#include "AZTH.h" +#include "ScriptedGossip.h" + +#define MIN_RATING 1200 +#define AP_REQ 1000 + +class Professions_NPC : public CreatureScript +{ + public: + Professions_NPC () : CreatureScript("Professions_NPC") {} + + void CreatureWhisperBasedOnBool(const char *text, Creature *_creature, Player *pPlayer, bool value) + { + if (value) + _creature->Whisper(text, LANG_UNIVERSAL, pPlayer); + } + + uint32 PlayerMaxLevel() const + { + return sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL); + } + + bool PlayerHasItemOrSpell(const Player *plr, uint32 itemId, uint32 spellId) const + { + return plr->HasItemCount(itemId, 1, true) || plr->HasSpell(spellId); + } + + bool OnGossipHello(Player *pPlayer, Creature* _creature) + { + if (!pPlayer->IsGameMaster() + && !sAZTH->GetAZTHPlayer(pPlayer)->isPvP() && pPlayer->GetMaxPersonalArenaRatingRequirement(2) < MIN_RATING) { + std::string msg = "You need to be a Full PvP player and least "+std::to_string(MIN_RATING)+" 2v2 Rating to talk with me!"; + _creature->Whisper(msg.c_str(), LANG_UNIVERSAL, pPlayer); + return true; + } + + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Welcome to AzerothShard profession NPC", GOSSIP_SENDER_MAIN, 0); + AddGossipItemFor(pPlayer, GOSSIP_ICON_TRAINER, "[Professions] ->", GOSSIP_SENDER_MAIN, 196); + pPlayer->PlayerTalkClass->SendGossipMenu(907, _creature->GetGUID()); + return true; + } + + bool PlayerAlreadyHasTwoProfessions(const Player *pPlayer) const + { + uint32 skillCount = 0; + + if (pPlayer->HasSkill(SKILL_MINING)) + skillCount++; + if (pPlayer->HasSkill(SKILL_SKINNING)) + skillCount++; + if (pPlayer->HasSkill(SKILL_HERBALISM)) + skillCount++; + + if (skillCount >= 2) + return true; + + for (uint32 i = 1; i < sSkillLineStore.GetNumRows(); ++i) + { + SkillLineEntry const *SkillInfo = sSkillLineStore.LookupEntry(i); + if (!SkillInfo) + continue; + + if (SkillInfo->categoryId == SKILL_CATEGORY_SECONDARY) + continue; + + if ((SkillInfo->categoryId != SKILL_CATEGORY_PROFESSION) || !SkillInfo->canLink) + continue; + + const uint32 skillID = SkillInfo->id; + if (pPlayer->HasSkill(skillID)) + skillCount++; + + if (skillCount >= 2) + return true; + } + return false; + } + + bool LearnAllRecipesInProfession(Player *pPlayer, SkillType skill) + { + ChatHandler handler(pPlayer->GetSession()); + + SkillLineEntry const *SkillInfo = sSkillLineStore.LookupEntry(skill); + auto skill_name = SkillInfo->name[handler.GetSessionDbcLocale()]; + + if (!SkillInfo) + { + sLog->outError("Profession NPC: received non-valid skill ID (LearnAllRecipesInProfession)"); + return false; + } + + LearnSkillRecipesHelper(pPlayer, SkillInfo->id); + + pPlayer->SetSkill(SkillInfo->id, pPlayer->GetSkillStep(SkillInfo->id), 450, 450); + handler.PSendSysMessage(LANG_COMMAND_LEARN_ALL_RECIPES, skill_name); + + pPlayer->ModifyArenaPoints(-int32(AP_REQ)); + + return true; + } + + void LearnSkillRecipesHelper(Player *player, uint32 skillLine) + { + uint32 classmask = player->getClassMask(); + + for (uint32 j = 0; j < sSkillLineAbilityStore.GetNumRows(); ++j) + { + SkillLineAbilityEntry const *skillLineEntry = sSkillLineAbilityStore.LookupEntry(j); + if (!skillLineEntry) + continue; + + // wrong skill + if (skillLineEntry->SkillLine != skillLine) + continue; + + // not high rank + if (skillLineEntry->SupercededBySpell) + continue; + + // skip racial skills + if (skillLineEntry->RaceMask != 0) + continue; + + // skip wrong class skills + if (skillLineEntry->ClassMask && (skillLineEntry->ClassMask & classmask) == 0) + continue; + + SpellInfo const * spellInfo = sSpellMgr->GetSpellInfo(skillLineEntry->Spell); + if (!spellInfo || !SpellMgr::IsSpellValid(spellInfo)) + continue; + + player->learnSpell(skillLineEntry->Spell); + } + } + + bool IsSecondarySkill(SkillType skill) const + { + return skill == SKILL_COOKING || skill == SKILL_FIRST_AID; + } + + void CompleteLearnProfession(Player *pPlayer, Creature *pCreature, SkillType skill) + { + if (PlayerAlreadyHasTwoProfessions(pPlayer) && !IsSecondarySkill(skill)) { + pCreature->Whisper("You already know two professions!", LANG_UNIVERSAL, pPlayer); + return; + } + + if (pPlayer->GetArenaPoints() < AP_REQ) { + pCreature->Whisper("You don't have enough Arena Points to buy this profession!", LANG_UNIVERSAL, pPlayer); + return; + } + + if (!LearnAllRecipesInProfession(pPlayer, skill)) + pCreature->Whisper("Internal error occured!", LANG_UNIVERSAL, pPlayer); + } + + bool OnGossipSelect(Player* pPlayer, Creature* _creature, uint32 uiSender, uint32 uiAction) + { + if (!uiAction) + return true; + + if (!pPlayer->IsGameMaster() + && !sAZTH->GetAZTHPlayer(pPlayer)->isPvP() && pPlayer->GetMaxPersonalArenaRatingRequirement(2) < MIN_RATING) { + return true; + } + + pPlayer->PlayerTalkClass->ClearMenus(); + + if (uiSender == GOSSIP_SENDER_MAIN) + { + + switch (uiAction) + { + case 196: + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Alchemy (1000 AP)", GOSSIP_SENDER_MAIN, 1); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Blacksmithing (1000 AP)", GOSSIP_SENDER_MAIN, 2); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Leatherworking (1000 AP)", GOSSIP_SENDER_MAIN, 3); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Tailoring (1000 AP)", GOSSIP_SENDER_MAIN, 4); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Engineering (1000 AP)", GOSSIP_SENDER_MAIN, 5); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Enchanting (1000 AP)", GOSSIP_SENDER_MAIN, 6); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Jewelcrafting (1000 AP)", GOSSIP_SENDER_MAIN, 7); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Inscription (1000 AP)", GOSSIP_SENDER_MAIN, 8); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Herbalism (1000 AP)", GOSSIP_SENDER_MAIN, 11); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Skinning (1000 AP)", GOSSIP_SENDER_MAIN, 12); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Mining (1000 AP)", GOSSIP_SENDER_MAIN, 13); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "Cooking (1000 AP)", GOSSIP_SENDER_MAIN, 9); + AddGossipItemFor(pPlayer, GOSSIP_ICON_CHAT, "First Aid (1000 AP)", GOSSIP_SENDER_MAIN, 10); + + pPlayer->PlayerTalkClass->SendGossipMenu(907, _creature->GetGUID()); + break; + case 1: + if(pPlayer->HasSkill(SKILL_ALCHEMY)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + + + { + CompleteLearnProfession(pPlayer, _creature, SKILL_ALCHEMY); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + + case 2: + if(pPlayer->HasSkill(SKILL_BLACKSMITHING)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_BLACKSMITHING); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + case 3: + if(pPlayer->HasSkill(SKILL_LEATHERWORKING)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_LEATHERWORKING); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + case 4: + if(pPlayer->HasSkill(SKILL_TAILORING)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_TAILORING); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + case 5: + if(pPlayer->HasSkill(SKILL_ENGINEERING)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_ENGINEERING); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + + case 6: + if(pPlayer->HasSkill(SKILL_ENCHANTING)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_ENCHANTING); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + case 7: + if(pPlayer->HasSkill(SKILL_JEWELCRAFTING)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_JEWELCRAFTING); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + case 8: + if(pPlayer->HasSkill(SKILL_INSCRIPTION)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_INSCRIPTION); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + case 9: + if(pPlayer->HasSkill(SKILL_COOKING)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_COOKING); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + case 10: + if(pPlayer->HasSkill(SKILL_FIRST_AID)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_FIRST_AID); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + case 11: + if(pPlayer->HasSkill(SKILL_HERBALISM)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_HERBALISM); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + case 12: + if(pPlayer->HasSkill(SKILL_SKINNING)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_SKINNING); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + case 13: + if(pPlayer->HasSkill(SKILL_MINING)) + { + pPlayer->PlayerTalkClass->SendCloseGossip(); + break; + } + else + { + CompleteLearnProfession(pPlayer, _creature, SKILL_MINING); + pPlayer->PlayerTalkClass->SendCloseGossip(); + }break; + } + + + } + return true; + } +}; + +void AddSC_Professions_NPC() +{ + new Professions_NPC(); +} diff --git a/src/PvpMode/PvPMode.cpp b/src/PvpMode/PvPMode.cpp new file mode 100644 index 0000000..729328d --- /dev/null +++ b/src/PvpMode/PvPMode.cpp @@ -0,0 +1,230 @@ +#include "ScriptMgr.h" +#include "Player.h" +#include "LFG.h" +#include "azth_custom_hearthstone_mode.h" +#include "AzthUtils.h" +#include "AzthPlayer.h" +#include "MapMgr.h" +#include "AZTH.h" + +class PvPMode : public GlobalScript +{ +public: + PvPMode() : GlobalScript("PvPMode") {} + + void OnInitializeLockedDungeons(Player* player, uint8& /*level*/, uint32& lockData, lfg::LFGDungeonData const* /*dungeon*/) override + { + if (sAZTH->GetAZTHPlayer(player)->isPvP()) + { + lockData = 6; // LFG_LOCKSTATUS_RAID_LOCKED; //disable raid/dungeon if is a character/pvp account + } + } + + void OnAfterInitializeLockedDungeons(Player* player) override + { + if ((player->GetMap()->IsDungeon() && !player->GetMap()->IsBattlegroundOrArena()) && sAZTH->GetAZTHPlayer(player)->isPvP()) + { + player->TeleportTo(player->m_recallMap, player->m_recallX, player->m_recallY, player->m_recallZ, player->m_recallO); + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_PVPACCOUNT_DUNGEON, player)); + } + } +}; + +class PvPModeFirstLogin : public PlayerScript +{ +public: + PvPModeFirstLogin() : PlayerScript("PvPModeFirstLogin") {} + + void OnCreate(Player* player) override + { + sAZTH->GetAZTHPlayer(player)->loadPvPInfo(); + + if (sAZTH->GetAZTHPlayer(player)->isPvP()) { + player->setCinematic(1); + player->SetLevel(80); + + WorldLocation startLoc; + startLoc.m_positionX = 4718.45f; + startLoc.m_positionY = -1974.84f; + startLoc.m_positionZ = 1086.91f; + startLoc.m_orientation = 0.06f; + startLoc.m_mapId = 1; + + player->Relocate(&startLoc); + player->ResetMap(); + player->SetMap(sMapMgr->CreateMap(1, player)); + + CharacterDatabase.PQuery("REPLACE INTO azth_pvp_characters (id,isPvP) VALUES(%d, 1)", player->GetGUID().GetCounter()); + + player->SaveToDB(false,false); + } + } + + void OnFirstLogin(Player* player) override + { + if (sAZTH->GetAZTHPlayer(player)->isPvP()) + { + // restore at first login flag for now, to be used inside OnLogin function + //player->SetAtLoginFlag(AT_LOGIN_FIRST); + } + } + + void OnLogin(Player* player) override + { + sAZTH->GetAZTHPlayer(player)->loadPvPInfo(); + + if (sAZTH->GetAZTHPlayer(player)->isPvP()){ + if (!player->HasAchieved(13))//if (player->HasAtLoginFlag(AT_LOGIN_FIRST)) + { + // delevel + levelup to fix achievements + player->GiveLevel(79); + player->GiveLevel(80); + + player->SetHonorPoints(2000); + + player->InitTalentForLevel(); + player->LearnDefaultSkills(); + player->SetUInt32Value(PLAYER_XP, 0); + sAzthUtils->learnClassSpells(player, false); + + sAZTH->GetAZTHPlayer(player)->changeDimension(DIMENSION_PVP); + + // riding + flying + player->learnSpell(34091); // artisan riding + player->learnSpell(54197); // coldweather flying + + player->learnSpell(41514); // flying mount, netherdrake + player->learnSpell(54753); // ground mount, bear + + // Cast spells that teach dual spec + // Both are also ImplicitTarget self and must be cast by player + player->CastSpell(player, 63680, true, NULL, NULL, player->GetGUID()); + player->CastSpell(player, 63624, true, NULL, NULL, player->GetGUID()); + + + // explore all zones + for (uint8 i = 0; iSetFlag(PLAYER_EXPLORED_ZONES_1 + i, 0xFFFFFFFF); + + player->UpdateSkillsToMaxSkillsForLevel(); // set all skills + + sAZTH->GetAZTHPlayer(player)->AzthMaxPlayerSkill(); + + player->StoreNewItemInBestSlots(23162, 8); + + player->RemoveAtLoginFlag(AT_LOGIN_FIRST); + + for (uint8 i = INVENTORY_SLOT_ITEM_START; i < INVENTORY_SLOT_ITEM_END; i++) + { + if (Item* pItem = player->GetItemByPos(INVENTORY_SLOT_BAG_0, i)) + { + uint16 eDest; + // equip offhand weapon/shield if it attempt equipped before main-hand weapon + InventoryResult msg = player->CanEquipItem(NULL_SLOT, eDest, pItem, false); + if (msg == EQUIP_ERR_OK) + { + player->RemoveItem(INVENTORY_SLOT_BAG_0, i, true); + player->EquipItem(eDest, pItem, true); + } + // move other items to more appropriate slots (ammo not equipped in special bag) + else + { + ItemPosCountVec sDest; + msg = player->CanStoreItem(NULL_BAG, NULL_SLOT, sDest, pItem, false); + if (msg == EQUIP_ERR_OK) + { + player->RemoveItem(INVENTORY_SLOT_BAG_0, i, true); + pItem = player->StoreItem(sDest, pItem, true); + } + + // if this is ammo then use it + msg = player->CanUseAmmo(pItem->GetEntry()); + if (msg == EQUIP_ERR_OK) + player->SetAmmo(pItem->GetEntry()); + } + } + } + + player->SetHealth(player->GetMaxHealth()); + if (player->getPowerType() == POWER_MANA || player->getClass() == CLASS_DRUID) + { + player->SetPower(POWER_MANA, player->GetMaxPower(POWER_MANA)); + } + + + //player->TeleportTo(1, 4718.45, -1974.84, 1086.91, 0.19); //teleport to black market + player->SaveToDB(false, false); + } + + + player->SetTaxiCheater(true); // must be set at each login + } + } + + void OnMapChanged(Player* player) override { + if (!player) + return; + + MapEntry const* mEntry = sMapStore.LookupEntry(player->GetMapId()); + + if (player->InArena() && mEntry->IsBattleArena() && !player->IsSpectator()) { + switch(player->getClass()) { + case CLASS_WARLOCK: + player->CastSpell(player, 58889, TRIGGERED_FULL_MASK); // warlock soulwell in arena + break; + case CLASS_MAGE: + player->CastSpell(player, 58661, TRIGGERED_FULL_MASK); // mage refreshment table in arena + break; + } + } + } + + // logger for custom extended costs + void OnAfterStoreOrEquipNewItem(Player* player, uint32 /*vendorslot*/, Item* item, uint8 /*count*/, uint8 /*bag*/, uint8 /*slot*/, ItemTemplate const* /*pProto*/, Creature* /*pVendor*/, VendorItem const* /*crItem*/, bool /*bStore*/) override + { + if (!sAZTH->GetAZTHPlayer(player)->isPvP()) + return; + + /*if (pVendor->GetScriptName() == "npc_azth_vendor") { + + std::vector & vendors = sHearthstoneMode->hsVendors; + int pos = 0; + for (std::size_t i = 0; i < vendors.size(); i++) + { + HearthstoneVendor temp = vendors.at(i); + if (temp.id == pVendor->GetEntry()) + pos = i; + } + + if (pos == 0) + return; + + HearthstoneVendor vendor = vendors.at(pos); + + if (vendor.pvpVendor) { + */ + // all items stored in pvp account should be soulbound + item->SetBinding(true); + item->ApplyModFlag(ITEM_FIELD_FLAGS, ITEM_FIELD_FLAG_UNK1, true); + /* try to avoid for performances + CharacterDatabaseTransaction trans = CharacterDatabase.BeginTransaction();n(); + item->SaveToDB(trans); + CharacterDatabase.CommitTransaction(trans);*/ + /* } + }*/ + } + + void OnBeforeDurabilityRepair(Player * player, ObjectGuid /*npcGUID*/, ObjectGuid /*itemGUID*/, float & discountMod, uint8 /*guildbank*/) override { + if (!sAZTH->GetAZTHPlayer(player)->isPvP()) + return; + + discountMod = 0.f; + } +}; + + +void AddSC_PvPMode() +{ + new PvPMode(); + new PvPModeFirstLogin(); +} diff --git a/src/Smartstone/Apps.h b/src/Smartstone/Apps.h new file mode 100644 index 0000000..62d0873 --- /dev/null +++ b/src/Smartstone/Apps.h @@ -0,0 +1,63 @@ +#ifndef SMARTSTONE_APPS_H +#define SMARTSTONE_APPS_H + +#include "Define.h" +#include "Common.h" +#include "Player.h" +#include "AzthLanguageStrings.h" + +#define AZTH_SMRTST_POSITION_HOUSE_INDEX 100000 + +class SmartStoneApps +{ +public: + + /* + * PvP Menu + */ + void teleportDalaran(Player *player); + + /* + * CharMenu + */ + void maxSkill(Player *player); + void changeRace(Player *player); + void changeFaction(Player *player); + void rename(Player *player); + void changeExp(Player *player, const char* code); + void resetAuras(Player *player); + + /* + * Misc + */ + void jukebox(Player *player); + void blackMarketTeleport(Player *player); + void teleportHouse(Player *owner, Player *guest); + + /* + * Utils + */ + + bool isFloatNumber(const std::string& string) { + std::string::const_iterator it = string.begin(); + bool decimalPoint = false; + int minSize = 0; + if (string.size() > 0 && (string[0] == '-' || string[0] == '+')) { + it++; + minSize++; + } + while (it != string.end()) { + if (*it == '.' || *it == ',') { + if (!decimalPoint) decimalPoint = true; + else break; + } else if (!isdigit(*it) && ((*it != 'f') || it + 1 != string.end() || !decimalPoint)) { + break; + } + ++it; + } + return string.size() > (size_t)minSize && it == string.end(); + } + +}; + +#endif diff --git a/src/Smartstone/AzthSmartStone.cpp b/src/Smartstone/AzthSmartStone.cpp new file mode 100644 index 0000000..d781ba6 --- /dev/null +++ b/src/Smartstone/AzthSmartStone.cpp @@ -0,0 +1,620 @@ +#include "AzthSmartStone.h" +#include "Common.h" +#include "Define.h" +#include "GossipDef.h" +#include "Item.h" +#include "Log.h" +#include "ObjectMgr.h" +#include "Opcodes.h" +#include "Player.h" +#include "ScriptMgr.h" +#include "ScriptedCreature.h" +#include "ScriptedGossip.h" +#include "Spell.h" +#include "WorldPacket.h" +#include "WorldSession.h" +#include "MapMgr.h" +#include "Map.h" +#include "Group.h" +#include "AZTH.h" +#include "Apps.h" + +enum SmartStoneCommands +{ + SMRTST_BLACK_MARKET=1, + SMRTST_CHANGE_FACTION=2, + SMRTST_RENAME=3, + SMRTST_CHAR_MENU=4, + SMRTST_CHANGE_RACE=5, + SMRTST_JUKEBOX=6, + SMRTST_HERBALISM_BONUS=7, + SMRTST_MINING_BONUS=8, + SMRTST_BONUS_MENU=9, + SMRTST_MAX_SKILL=10, + SMRTST_XP_CHANGE=11, + SMRTST_RESET_AURAS=12, + SMRTST_TELEPORT_DALARAN=13, + SMRTST_TELEPORT_HOUSE=14, + SMRTST_SHOP_MENU=2000, //unused + SMRTST_BACK_MENU=2001, + SMRTST_README=60402, + SMRTST_README_CHILD=60400, +}; + +/*static*/ SmartStone* SmartStone::instance() +{ + static SmartStone instance; + return &instance; +} + +std::string SmartStoneCommand::getText(Player *pl) +{ + AzthCustomLangs loc = AZTH_LOC_IT; + + if (pl) + loc = sAZTH->GetAZTHPlayer(pl)->getCustLang(); + + switch(loc) + { + case AZTH_LOC_IT: + return text_it; + break; + case AZTH_LOC_EN: + return text_def; + break; + } + + return text_def; +} + +class azth_smart_stone : public ItemScript +{ +public: + + uint32 parent = 1; + SmartStoneApps *apps; + + azth_smart_stone() : ItemScript("azth_smart_stone") { + apps = new SmartStoneApps(); + } + + Player* getHomeOwner(Player *player) { + Player *owner=player; + Player* leader=nullptr; + if (player->GetGroup()) + leader = ObjectAccessor::FindPlayer(player->GetGroup()->GetLeaderGUID()); + + if (leader) + owner = leader; + + return owner; + } + + + void OnGossipSelect(Player *player, Item *item, uint32 /*sender*/, + uint32 action) override { + + player->PlayerTalkClass->ClearMenus(); + + // hack for readme gossip menu + if (action>=SMRTST_README_CHILD || player->PlayerTalkClass->GetGossipMenu().GetMenuId() >=SMRTST_README_CHILD) { + uint32 menuId= action; //action >= SMRTST_README_CHILD ? action : player->PlayerTalkClass->GetGossipMenu().GetItemData(action)->GossipActionMenuId; + player->PlayerTalkClass->GetGossipMenu().SetMenuId(menuId); + + GossipMenuItemsMapBounds menuItemBounds = sObjectMgr->GetGossipMenuItemsMapBounds(menuId); + uint32 textId = DEFAULT_GOSSIP_MESSAGE; + + GossipMenusMapBounds menuBounds = sObjectMgr->GetGossipMenusMapBounds(menuId); + + for (GossipMenusContainer::const_iterator itr = menuBounds.first; itr != menuBounds.second; ++itr) + textId = itr->second.TextID; + + for (GossipMenuItemsContainer::const_iterator itr = menuItemBounds.first; itr != menuItemBounds.second; ++itr) + { + std::string strOptionText = itr->second.OptionText; + std::string strBoxText = itr->second.BoxText; + + int32 locale = player->GetSession()->GetSessionDbLocaleIndex(); + if (locale >= 0) + { + uint32 idxEntry = MAKE_PAIR32(menuId, itr->second.OptionID); + if (GossipMenuItemsLocale const* no = sObjectMgr->GetGossipMenuItemsLocale(idxEntry)) + { + ObjectMgr::GetLocaleString(no->OptionText, locale, strOptionText); + ObjectMgr::GetLocaleString(no->BoxText, locale, strBoxText); + } + } + + player->PlayerTalkClass->GetGossipMenu().AddMenuItem(itr->second.OptionID, itr->second.OptionIcon, strOptionText, 0, itr->second.ActionMenuID, strBoxText, itr->second.BoxMoney, itr->second.BoxCoded); + player->PlayerTalkClass->GetGossipMenu().AddGossipMenuItemData(itr->second.OptionID, itr->second.ActionMenuID, itr->second.ActionPoiID); + } + + SendGossipMenuFor(player, textId, item->GetGUID()); + return; + } + + // back to main menu command + if (action == 2001) { + parent = 1; + CloseGossipMenuFor(player); + OnUse(player, item, SpellCastTargets()); + return; + } + + SmartStoneCommand selectedCommand = sSmartStone->getCommandById(action); + + // scripted action + if (selectedCommand.type == DO_SCRIPTED_ACTION || + action >= 2000) // azeroth store + { + switch (action) { + case SMRTST_SHOP_MENU: // store + //sSmartStone->SmartStoneSendListInventory(player->GetSession()); + break; + case SMRTST_BLACK_MARKET: // black market teleport + apps->blackMarketTeleport(player); + break; + + case SMRTST_CHANGE_FACTION: // change faction + apps->changeFaction(player); + break; + + case SMRTST_RENAME: // rename + apps->rename(player); + break; + + case SMRTST_CHANGE_RACE: // change race + apps->changeRace(player); + break; + + case SMRTST_JUKEBOX: // jukebox + apps->jukebox(player); + break; + + case SMRTST_MAX_SKILL: // maxskill + apps->maxSkill(player); + break; + + case SMRTST_RESET_AURAS: + apps->resetAuras(player); + break; + + case SMRTST_TELEPORT_DALARAN: + apps->teleportDalaran(player); + break; + + case SMRTST_TELEPORT_HOUSE: + apps->teleportHouse(getHomeOwner(player), player); + break; + + case 99999: + break; + default: + sLog->outError("Smartstone: unhandled command! ID: %u, player GUID: %lu", + action, player->GetGUID().GetRawValue()); + break; + } + if (selectedCommand.charges > 0) { + sAZTH->GetAZTHPlayer(player)->decreaseSmartStoneCommandCharges( + selectedCommand.id); + } + CloseGossipMenuFor(player); + // return; + } + + // open child + if (selectedCommand.type == OPEN_CHILD) { + parent = selectedCommand.action; + CloseGossipMenuFor(player); + OnUse(player, item, SpellCastTargets()); + } + } + + void OnGossipSelectCode(Player* player, Item* /*item*/, uint32 /*sender*/, uint32 action, const char* code) override { + player->PlayerTalkClass->ClearMenus(); + + SmartStoneCommand selectedCommand = sSmartStone->getCommandById(action); + + // scripted action + if (selectedCommand.type == DO_SCRIPTED_ACTION_WITH_CODE || action == 2000) // azeroth store + { + switch (action) { + case SMRTST_XP_CHANGE: //change exp + apps->changeExp(player, code); + break; + + case 99999: + break; + default: + sLog->outError("Smartstone: unhandled command with code! ID: %u, player GUID: %lu", action, player->GetGUID().GetRawValue()); + break; + } + if (selectedCommand.charges > 0) { + sAZTH->GetAZTHPlayer(player)->decreaseSmartStoneCommandCharges(selectedCommand.id); + } + CloseGossipMenuFor(player); + } + } + + bool OnUse(Player *player, Item *item, SpellCastTargets const & /*targets*/) override + { + player->PlayerTalkClass->ClearMenus(); + + if (parent == 1) // not-to-buy commands for the main menu + { + // black market teleport id 1 + SmartStoneCommand teleport = sSmartStone->getCommandById(SMRTST_BLACK_MARKET); + + if (sConfigMgr->GetOption("Azth.Smartstone.Teleport.Enable", false)) + { + if (!sAZTH->GetAZTHPlayer(player)->isInBlackMarket()) + { + /*if (sAZTH->GetAZTHPlayer(player)->isPvP()) + AddGossipItemFor(player,teleport.icon, sAzthLang->get(AZTH_LANG_SS_TELEPORT_BACK, player), GOSSIP_SENDER_MAIN, teleport.id);*/ + + AddGossipItemFor(player,teleport.icon, teleport.getText(player), GOSSIP_SENDER_MAIN, teleport.id); + } + else + AddGossipItemFor(player,teleport.icon, sAzthLang->get(AZTH_LANG_SS_TELEPORT_BACK, player), GOSSIP_SENDER_MAIN, teleport.id); + } else { + AddGossipItemFor(player,teleport.icon, sAzthLang->get(AZTH_LANG_SS_TELEPORT_DISABLED, player), GOSSIP_SENDER_MAIN, 0); + } + + if (!sAZTH->GetAZTHPlayer(player)->isPvP()) + player->PlayerTalkClass->GetGossipMenu().AddMenuItem(SMRTST_README, 0, GOSSIP_SENDER_MAIN, SMRTST_README_CHILD); + + // menu character (rename, change faction, etc) id 4 + SmartStoneCommand characterMenu = sSmartStone->getCommandById(SMRTST_CHAR_MENU); + AddGossipItemFor(player,characterMenu.icon, characterMenu.getText(player), GOSSIP_SENDER_MAIN, characterMenu.id); + + // menu passive bonus id 9 + SmartStoneCommand passiveMenu = sSmartStone->getCommandById(SMRTST_BONUS_MENU); + AddGossipItemFor(player,passiveMenu.icon, passiveMenu.getText(player), GOSSIP_SENDER_MAIN, passiveMenu.id); + } + + if (parent == 2) // not-to-buy commands for the characters menu + { + // max skill command + SmartStoneCommand maxSkill = sSmartStone->getCommandById(SMRTST_MAX_SKILL); + AddGossipItemFor(player,maxSkill.icon, maxSkill.getText(player), GOSSIP_SENDER_MAIN, maxSkill.id); + + // azth xp command + SmartStoneCommand azthXp = sSmartStone->getCommandById(SMRTST_XP_CHANGE); + AddGossipItemFor(player,azthXp.icon, azthXp.getText(player), GOSSIP_SENDER_MAIN, azthXp.id, sAzthLang->get(AZTH_LANG_SS_VALUE, player), 0, true); + + // reset auras + SmartStoneCommand resetAuras = sSmartStone->getCommandById(SMRTST_RESET_AURAS); + AddGossipItemFor(player,resetAuras.icon, resetAuras.getText(player), GOSSIP_SENDER_MAIN, resetAuras.id); + + if (sAZTH->GetAZTHPlayer(player)->isPvP()) { + // dalaran teleport + SmartStoneCommand dalaranTeleport = sSmartStone->getCommandById(SMRTST_TELEPORT_DALARAN); + AddGossipItemFor(player,dalaranTeleport.icon, dalaranTeleport.getText(player), GOSSIP_SENDER_MAIN, dalaranTeleport.id); + } + + if (sAZTH->GetAZTHPlayer(player)->getCurrentDimensionByAura() == DIMENSION_RPG) { + Player *owner=getHomeOwner(player); + + if (MapMgr::IsValidMapCoord(sAZTH->GetAZTHPlayer(owner)->getLastPositionInfo(AZTH_SMRTST_POSITION_HOUSE_INDEX))) { + // home teleport for RPG world + SmartStoneCommand homeTeleport = sSmartStone->getCommandById(SMRTST_TELEPORT_HOUSE); + std::string str=homeTeleport.getText(player) + " (" +owner->GetName()+")"; + + AddGossipItemFor(player,homeTeleport.icon, str.c_str() , GOSSIP_SENDER_MAIN, homeTeleport.id); + } + } + } + + std::vector & playerCommands = + sAZTH->GetAZTHPlayer(player)->getSmartStoneCommands(); + int n = playerCommands.size(); + + for (int i = 0; i < n; i++) { + SmartStoneCommand command = + sSmartStone->getCommandById(playerCommands[i].id); + + // if expired or no charges + if ((playerCommands[i].duration <= static_cast(time(NULL)) && + playerCommands[i].duration != 0) || + playerCommands[i].charges == 0) { + sAZTH->GetAZTHPlayer(player)->removeSmartStoneCommand(playerCommands[i], true); + continue; + } + + std::string text = command.getText(player); + + if (playerCommands[i].charges != -1) + text = text + " (" + std::to_string(playerCommands[i].charges) + ")"; + + if (playerCommands[i].duration != 0) { + uint64 timeDiff = playerCommands[i].duration - time(NULL); + uint64 seconds = timeDiff % 60; + uint64 minutes = floor(timeDiff / 60); + uint64 hours = floor(timeDiff / 3600); + uint64 days = floor(timeDiff / 3600 / 24); + if (days >= 1) { + text = text + " (" + std::to_string(days) + " days)"; + } else { + text = text + " (" + std::to_string(hours) + ":" + + std::to_string(minutes) + ":" + std::to_string(seconds) + ")"; + } + } + + if (command.id != 0 && command.parent_menu == parent) { + if (command.type != DO_SCRIPTED_ACTION_WITH_CODE) { + AddGossipItemFor(player,command.icon, text, GOSSIP_SENDER_MAIN, command.id); + } else { + AddGossipItemFor(player,command.icon, text, GOSSIP_SENDER_MAIN, command.id, sAzthLang->get(AZTH_LANG_SS_VALUE, player), 0, true); + } + } + } + + // acquista app + + /*if (parent == 1) + AddGossipItemFor(player, + 0, "|TInterface/ICONS/INV_Misc_Coin_03:30|t Azeroth Store", + GOSSIP_SENDER_MAIN, 2000);*/ + + if (parent != 1) { + // back to main menu command + AddGossipItemFor(player,0, sAzthLang->get(AZTH_LANG_SS_BACK, player), GOSSIP_SENDER_MAIN, 2001); + } + + SendGossipMenuFor(player,DEFAULT_GOSSIP_MESSAGE, item->GetGUID()); + + parent = 1; + return false; + } +}; + +void SmartStone::loadCommands() { + // initialize count and array + uint32 count = 0; + // sHearthstoneMode->hsAchievementTable.clear(); + + // TODO: re-enable + // QueryResult ssCommandsResult = ExtraDatabase.PQuery( + // "SELECT id, text_def, text_it, item, icon, parent_menu, type, action, charges, " + // "duration FROM smartstone_commands"); + + // if (ssCommandsResult) { + // do { + // SmartStoneCommand command = {}; + // command.id = (*ssCommandsResult)[0].GetUInt32(); + // command.text_def = (*ssCommandsResult)[1].GetString(); + // command.text_it = (*ssCommandsResult)[2].GetString(); + // command.item = (*ssCommandsResult)[3].GetUInt32(); + // command.icon = (*ssCommandsResult)[4].GetUInt32(); + // command.parent_menu = (*ssCommandsResult)[5].GetUInt32(); + // command.type = (*ssCommandsResult)[6].GetUInt32(); + // command.action = (*ssCommandsResult)[7].GetUInt32(); + // command.charges = (*ssCommandsResult)[8].GetInt32(); + // command.duration = (*ssCommandsResult)[9].GetUInt64(); + + // ssCommands2.push_back(command); + + // count++; + + // } while (ssCommandsResult->NextRow()); + // } + + sLog->outString("Smartstone: loaded %u commands", count); +} + +SmartStoneCommand SmartStone::getCommandById(uint32 id) { + std::vector temp(ssCommands2); + int n = temp.size(); + for (int i = 0; i < n; i++) { + if (temp[i].id == id) + return temp[i]; + } + return nullCommand; +}; + +SmartStoneCommand SmartStone::getCommandByItem(uint32 item) { + std::vector temp(ssCommands2); + int n = temp.size(); + for (int i = 0; i < n; i++) { + if (temp[i].item == item) + return temp[i]; + } + return nullCommand; +}; + +bool SmartStone::isNullCommand(SmartStoneCommand command) { + return (command.id == 0 && command.text_def == "" && command.item == 0 && + command.icon == 0 && command.parent_menu == 0 && + command.type == 0 && command.action == 0); +}; + +SmartStonePlayerCommand SmartStone::toPlayerCommand(SmartStoneCommand command) { + SmartStonePlayerCommand result; + result.id = command.id; + result.charges = command.charges; + // result.duration = command.duration * 60 + time(NULL); + result.duration = 0; + return result; +}; + +class azth_smartstone_world : public WorldScript { +public: + + azth_smartstone_world() : WorldScript("azth_smartstone_world") { + } + + void OnAfterConfigLoad(bool /*reload*/) override { + sSmartStone->loadCommands(); + } +}; + +class azth_smartstone_player_commands : public PlayerScript { +public: + + azth_smartstone_player_commands() + : PlayerScript("azth_smartstone_player_commands") { + } + + void OnLogin(Player *player) override { + QueryResult ssCommandsResult = CharacterDatabase.PQuery( + "SELECT command, dateExpired, charges FROM " + "character_smartstone_commands WHERE playerGuid = %d ;", + player->GetGUID().GetCounter()); + + if (ssCommandsResult) { + do { + uint32 id = (*ssCommandsResult)[0].GetUInt32(); + uint64 date = (*ssCommandsResult)[1].GetUInt64(); + int32 charges = (*ssCommandsResult)[2].GetInt32(); + sAZTH->GetAZTHPlayer(player)->addSmartStoneCommand(id, false, date, charges); + } while (ssCommandsResult->NextRow()); + } + + sAZTH->GetAZTHPlayer(player)->getLastPositionInfoFromDB(); + } + + void OnLogout(Player* player) override { + sAZTH->GetAZTHPlayer(player)->saveLastPositionInfoToDB(player); + } + + void OnBeforeBuyItemFromVendor(Player* player, ObjectGuid vendorguid, uint32 vendorslot, uint32 &item, uint8 count, uint8 /*bag*/, uint8 /*slot*/) override { + if (!sSmartStone->isNullCommand(sSmartStone->getCommandByItem(item))) { + sAZTH->GetAZTHPlayer(player)->BuySmartStoneCommand(vendorguid, vendorslot, item, count, NULL_BAG, NULL_SLOT); + item = 0; + } + } + +}; + +class smartstone_vendor : public CreatureScript { +public: + + smartstone_vendor() : CreatureScript("smartstone_vendor") { + } + + bool OnGossipHello(Player* player, Creature* creature) override { + player->PlayerTalkClass->ClearMenus(); + + AddGossipItemFor(player,0, "Hello, I would like to buy new apps!", GOSSIP_SENDER_MAIN, 1); + SendGossipMenuFor(player,DEFAULT_GOSSIP_MESSAGE, creature->GetGUID()); + return true; + } + + bool OnGossipSelect(Player* player, Creature* creature, uint32 /*sender*/, uint32 action) override { + player->PlayerTalkClass->ClearMenus(); + + if (action == 1) + sSmartStone->SmartStoneSendListInventory(player->GetSession(), creature->GetGUID().GetRawValue()); + + return true; + } +}; + +void SmartStone::SmartStoneSendListInventory(WorldSession *session, uint64 vendorGuid) { + VendorItemData const *items = sObjectMgr->GetNpcVendorItemList(SMARTSTONE_VENDOR_ENTRY); + + + + if (!items) { + WorldPacket data(SMSG_LIST_INVENTORY, 8 + 1 + 1); + data << vendorGuid; + data << uint8(0); // count == 0, next will be error code + data << uint8(0); // "Vendor has no inventory" + session->SendPacket(&data); + return; + } + + uint8 itemCount = items->GetItemCount(); + uint8 count = 0; + + WorldPacket data(SMSG_LIST_INVENTORY, 8 + 1 + itemCount * 8 * 4); + data << vendorGuid; + + size_t countPos = data.wpos(); + data << uint8(count); + + for (uint8 slot = 0; slot < itemCount; ++slot) { + if (VendorItem const *item = items->GetItem(slot)) { + if (ItemTemplate const *itemTemplate = + sObjectMgr->GetItemTemplate(item->item)) { + if (!(itemTemplate->AllowableClass & + session->GetPlayer()->getClassMask()) && + itemTemplate->Bonding == BIND_WHEN_PICKED_UP && + !session->GetPlayer()->IsGameMaster()) + continue; + // Only display items in vendor lists for the team the + // player is on. If GM on, display all items. + if (!session->GetPlayer()->IsGameMaster() && + ((itemTemplate->Flags2 & ITEM_FLAGS_EXTRA_HORDE_ONLY && + session->GetPlayer()->GetTeamId() == TEAM_ALLIANCE) || + (itemTemplate->Flags2 == ITEM_FLAGS_EXTRA_ALLIANCE_ONLY && + session->GetPlayer()->GetTeamId() == TEAM_HORDE))) + continue; + + uint32 leftInStock = 0xFFFFFFFF; + + std::vector & playerCommands = sAZTH->GetAZTHPlayer(session->GetPlayer())->getSmartStoneCommands(); + int n = playerCommands.size(); + SmartStoneCommand command = sSmartStone->getCommandByItem(item->item); + + // we hide commands that the player already has + for (int i = 0; i < n; i++) { + // sLog->outError("Smartstone: isnullcommand: %u, command: %u, + // playercommand: %u", isNullCommand(command), command.id, + // playerCommands[i]); + + if (!isNullCommand(command) && command.id == playerCommands[i].id) + leftInStock = 0; + } + + /* if (!session->GetPlayer()->IsGameMaster() && !leftInStock) + continue;*/ + + /*ConditionList conditions = + sConditionMgr->GetConditionsForNpcVendorEvent(SMARTSTONE_VENDOR_ENTRY, + item->item); + if (!sConditionMgr->IsObjectMeetToConditions(session->GetPlayer(), + vendor, conditions)) + { + sLog->outError("SendListInventory: conditions not met for creature + entry %u item %u", vendor->GetEntry(), item->item); + continue; + }*/ + + // reputation discount + int32 price = item->IsGoldRequired(itemTemplate) + ? uint32(floor(itemTemplate->BuyPrice)) + : 0; + + data << uint32(slot + 1); // client expects counting to start at 1 + data << uint32(item->item); + data << uint32(itemTemplate->DisplayInfoID); + data << int32(leftInStock); + data << uint32(price); + data << uint32(itemTemplate->MaxDurability); + data << uint32(itemTemplate->BuyCount); + data << uint32(item->ExtendedCost); + + if (++count >= MAX_VENDOR_ITEMS) + break; + } + } + } + + if (count == 0) { + data << uint8(0); + session->SendPacket(&data); + return; + } + + data.put(countPos, count); + session->SendPacket(&data); +} + +void AddSC_azth_smart_stone() // Add to scriptloader normally +{ + new azth_smart_stone(); + new azth_smartstone_world(); + new azth_smartstone_player_commands(); + new smartstone_vendor(); +} diff --git a/src/Smartstone/AzthSmartStone.h b/src/Smartstone/AzthSmartStone.h new file mode 100644 index 0000000..877edc7 --- /dev/null +++ b/src/Smartstone/AzthSmartStone.h @@ -0,0 +1,76 @@ +#ifndef SMARTSTONE_H +#define SMARTSTONE_H + +#include "Define.h" +#include "Common.h" +#include "AzthLanguageStrings.h" +#include "AzthSharedDefines.h" + +class WorldSession; +class Player; + +struct SmartStoneCommand +{ + // struct doesn't have equal operator by default + bool operator==(const SmartStoneCommand& rhs) + { + return id == rhs.id; + } + + uint32 id; + std::string text_def; + std::string text_it; + uint32 item; + uint32 icon; + uint32 parent_menu; + uint32 type; + uint32 action; + int32 charges; + uint64 duration; + + std::string getText(Player *pl = nullptr); +}; + +struct SmartStonePlayerCommand +{ + bool operator==(const SmartStonePlayerCommand& rhs) + { + return id == rhs.id; + } + + uint32 id; + int32 charges; + uint64 duration; +}; + +enum MenuType +{ + DO_SCRIPTED_ACTION = 1, + OPEN_CHILD = 2, + DO_SCRIPTED_ACTION_WITH_CODE = 3 + // DO_DB_ACTION=4 [TO IMPLEMENT] +}; + +class SmartStone +{ +public: + + static SmartStone* instance(); + + int SMARTSTONE_VENDOR_ENTRY = 170000; + + const SmartStoneCommand nullCommand = SmartStoneCommand{ 0, "", "", 0, 0, 0, 0, 0, 0, 0}; + + std::vector ssCommands2; + + void loadCommands(); + void SmartStoneSendListInventory(WorldSession * session, uint64 vendorGuid); + SmartStoneCommand getCommandById(uint32 id); + SmartStoneCommand getCommandByItem(uint32 item); + bool isNullCommand(SmartStoneCommand command); + SmartStonePlayerCommand toPlayerCommand(SmartStoneCommand command); +}; + +#define sSmartStone SmartStone::instance() + +#endif diff --git a/src/Smartstone/CharApps.cpp b/src/Smartstone/CharApps.cpp new file mode 100644 index 0000000..9e92508 --- /dev/null +++ b/src/Smartstone/CharApps.cpp @@ -0,0 +1,46 @@ +#include "Apps.h" +#include "SpellAuras.h" +#include "AZTH.h" + +void SmartStoneApps::changeExp(Player *player, const char* code) { + if (isFloatNumber(code)) { + float exp = atof(code); + sAZTH->GetAZTHPlayer(player)->AzthSelfChangeXp(exp); + } else { + ChatHandler(player->GetSession()).PSendSysMessage("|CFF7BBEF7[Custom Rates]|r: Invalid rate specified!"); + } +} + +void SmartStoneApps::maxSkill(Player *player) { + sAZTH->GetAZTHPlayer(player)->AzthMaxPlayerSkill(); +} + +void SmartStoneApps::changeRace(Player *player) { + player->SetAtLoginFlag(AT_LOGIN_CHANGE_RACE); + ChatHandler(player->GetSession()) + .SendSysMessage(sAzthLang->get(AZTH_LANG_SS_CHANGE_RACE, player)); +} + +void SmartStoneApps::changeFaction(Player *player) { + player->SetAtLoginFlag(AT_LOGIN_CHANGE_FACTION); + ChatHandler(player->GetSession()) + .SendSysMessage(sAzthLang->get(AZTH_LANG_SS_CHANGE_FACTION, player)); +} + +void SmartStoneApps::rename(Player *player) { + player->SetAtLoginFlag(AT_LOGIN_RENAME); + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_SS_CHANGE_NAME, player)); +} + +void SmartStoneApps::resetAuras(Player *player) { + ChatHandler(player->GetSession()).SendSysMessage("Warning: this app is in beta stage!"); + + if (player->HasFlag(PLAYER_FLAGS, PLAYER_FLAGS_RESTING) + && !player->IsInCombat()) { + player->RemoveArenaAuras(); + + ChatHandler(player->GetSession()).SendSysMessage("PLEASE RELOG NOW!"); + } else { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_RESET_AURAS_ADVICE, player)); + } +} diff --git a/src/Smartstone/Misc.cpp b/src/Smartstone/Misc.cpp new file mode 100644 index 0000000..52729ea --- /dev/null +++ b/src/Smartstone/Misc.cpp @@ -0,0 +1,64 @@ +#include "Apps.h" +#include "MapMgr.h" +#include "AzthSharedDefines.h" +#include "GameGraveyard.h" +#include "AZTH.h" + +void SmartStoneApps::blackMarketTeleport(Player *player) +{ + if (player->IsInCombat()) + return; + + if (!sAZTH->GetAZTHPlayer(player)->isInBlackMarket()) + { + WorldLocation pos = WorldLocation(player->GetMapId(), player->GetPositionX(), player->GetPositionY(), player->GetPositionZ(), player->GetOrientation()); + sAZTH->GetAZTHPlayer(player)->setLastPositionInfo(sAZTH->GetAZTHPlayer(player)->getCurrentDimensionByAura(), pos); + + player->TeleportTo(AzthSharedDef::blackMarket); + } + else + { + WorldLocation const& pos = sAZTH->GetAZTHPlayer(player)->getLastPositionInfo(sAZTH->GetAZTHPlayer(player)->getCurrentDimensionByAura()); + if (!MapMgr::IsValidMapCoord(pos)) + return; + + Map *m = sMapMgr->FindBaseMap(pos.GetMapId()); + + if (m && m->IsDungeon()) + { + GraveyardStruct const* graveyard = sGraveyard->GetClosestGraveyard(player, TEAM_NEUTRAL); + + if (graveyard) + player->TeleportTo(graveyard->Map, graveyard->x, graveyard->y, graveyard->z, player->GetOrientation()); + } + else + player->TeleportTo(pos); + } +} + +void SmartStoneApps::teleportHouse(Player *owner, Player *guest) +{ + if (guest->IsInCombat()) + return; + + WorldLocation const& pos = sAZTH->GetAZTHPlayer(owner)->getLastPositionInfo(AZTH_SMRTST_POSITION_HOUSE_INDEX); + if (!MapMgr::IsValidMapCoord(pos)) + return; + + guest->TeleportTo(pos); +} + +void SmartStoneApps::jukebox(Player *player) +{ + if (player->FindNearestCreature(300205, 20.f, true)) + return; + + TempSummon* jukebox_summon = player->SummonCreature(300205, player->GetPositionX(), + player->GetPositionY(), player->GetPositionZ(), + player->GetOrientation(), + TEMPSUMMON_TIMED_DESPAWN, 600 * 1000, 0); + + Map* playerMap = player->GetMap(); + Creature* jukebox = playerMap->GetCreature(jukebox_summon->GetGUID()); + jukebox->GetMotionMaster()->MoveFollow(player, 2, 2); +} diff --git a/src/Smartstone/PlayerSmartstone.cpp b/src/Smartstone/PlayerSmartstone.cpp new file mode 100644 index 0000000..8a34bdb --- /dev/null +++ b/src/Smartstone/PlayerSmartstone.cpp @@ -0,0 +1,378 @@ +#include "AzthPlayer.h" +#include "Player.h" +#include "Opcodes.h" +#include "AzthSharedDefines.h" +#include "AZTH.h" + +std::vector& AzthPlayer::getSmartStoneCommands() +{ + return smartStoneCommands; +} + +void AzthPlayer::addSmartStoneCommand(SmartStonePlayerCommand command, bool query) +{ + + uint64 sec = 0; + + if (sSmartStone->getCommandById(command.id).duration > 0) + { + sec = time(NULL) + (sSmartStone->getCommandById(command.id).duration * 60); + } + + command.duration = sec; + + smartStoneCommands.push_back(command); + + if (query) + { + CharacterDatabase.PExecute( + "REPLACE INTO `character_smartstone_commands` (playerGuid, command, " + "dateExpired, charges) VALUES (%u, %u, %u, %i);", + player->GetGUID().GetCounter(), command.id, sec, command.charges); + } +} + +// called only at player login +void AzthPlayer::addSmartStoneCommand(uint32 id, bool /*query*/, uint64 dateExpired, int32 charges) +{ + if (static_cast(time(NULL)) >= dateExpired) + return; + + SmartStonePlayerCommand command; + + command.id = id; + command.charges = charges; + command.duration = dateExpired; + + smartStoneCommands.push_back(command); +} + +bool AzthPlayer::hasSmartStoneCommand(uint32 id) +{ + std::vector & playerCommands = getSmartStoneCommands(); + int n = playerCommands.size(); + + for (int i = 0; i < n; i++) + { + if (playerCommands[i].id == id) + return true; + } + + return false; +} + +void AzthPlayer::removeSmartStoneCommand(SmartStonePlayerCommand command, + bool query) { + // we need to specify the equal operator for struct to be able to run it: + smartStoneCommands.erase(std::remove(smartStoneCommands.begin(), + smartStoneCommands.end(), command), + smartStoneCommands.end()); + + if (query) { + CharacterDatabase.PExecute("DELETE FROM `character_smartstone_commands` " + "WHERE playerGuid = %u AND command = %u;", + player->GetGUID().GetCounter(), command.id); + } +} + +void AzthPlayer::decreaseSmartStoneCommandCharges(uint32 id) { + for (std::vector::size_type i = 0; i < smartStoneCommands.size(); i++) { + if (smartStoneCommands[i].id == id) { + smartStoneCommands[i].charges = smartStoneCommands[i].charges - 1; + if (smartStoneCommands[i].charges == 0 || + smartStoneCommands[i].charges < -1) + removeSmartStoneCommand(smartStoneCommands[i], true); + else + CharacterDatabase.PExecute( + "UPDATE character_smartstone_commands SET charges = %i WHERE " + "playerGuid = %u AND command = %u ;", + smartStoneCommands[i].charges, player->GetGUID().GetCounter(), id); + + return; + } + } +} + +bool AzthPlayer::BuySmartStoneCommand(ObjectGuid vendorguid, uint32 vendorslot, + uint32 item, uint8 count, uint8 bag, + uint8 slot) { + + // cheating attempt + if (count < 1) + count = 1; + + // cheating attempt + if (slot > MAX_BAG_SIZE && slot != NULL_SLOT) + return false; + + if (!player->IsAlive()) + return false; + + ItemTemplate const *pProto = sObjectMgr->GetItemTemplate(item); + if (!pProto) { + player->SendBuyError(BUY_ERR_CANT_FIND_ITEM, NULL, item, 0); + return false; + } + + if (!(pProto->AllowableClass & player->getClassMask()) && + pProto->Bonding == BIND_WHEN_PICKED_UP && !player->IsGameMaster()) { + player->SendBuyError(BUY_ERR_CANT_FIND_ITEM, NULL, item, 0); + return false; + } + + if (!player->IsGameMaster() && + ((pProto->Flags2 & ITEM_FLAGS_EXTRA_HORDE_ONLY && + player->GetTeamId(true) == TEAM_ALLIANCE) || + (pProto->Flags2 == ITEM_FLAGS_EXTRA_ALLIANCE_ONLY && + player->GetTeamId(true) == TEAM_HORDE))) + return false; + + Creature* creature = player->GetNPCIfCanInteractWith(vendorguid, UNIT_NPC_FLAG_VENDOR); + if (!creature) { + //sLog->outDebug(LOG_FILTER_NETWORKIO, "WORLD: BuyItemFromVendor - Unit (GUID: %u) not found or you can't interact with him.", uint32(GUID_LOPART(vendorguid))); + player->SendBuyError(BUY_ERR_DISTANCE_TOO_FAR, NULL, item, 0); + return false; + } + + /* ConditionList conditions = + sConditionMgr->GetConditionsForNpcVendorEvent(creature->GetEntry(), item); + if (!sConditionMgr->IsObjectMeetToConditions(this, creature, conditions)) + { + //TC_LOG_DEBUG("condition", "BuyItemFromVendor: conditions not met for + creature entry %u item %u", creature->GetEntry(), item); + SendBuyError(BUY_ERR_CANT_FIND_ITEM, creature, item, 0); + return false; + }*/ + + VendorItemData const *vItems = sObjectMgr->GetNpcVendorItemList(sSmartStone->SMARTSTONE_VENDOR_ENTRY); + if (!vItems || vItems->Empty()) { + player->SendBuyError(BUY_ERR_CANT_FIND_ITEM, NULL, item, 0); + return false; + } + + if (vendorslot >= vItems->GetItemCount()) { + player->SendBuyError(BUY_ERR_CANT_FIND_ITEM, NULL, item, 0); + return false; + } + + VendorItem const *crItem = vItems->GetItem(vendorslot); + // store diff item (cheating) + if (!crItem || crItem->item != item) { + player->SendBuyError(BUY_ERR_CANT_FIND_ITEM, NULL, item, 0); + return false; + } + + std::vector & playerCommands = getSmartStoneCommands(); + int n = playerCommands.size(); + SmartStoneCommand command = sSmartStone->getCommandByItem(item); + + for (int i = 0; i < n; i++) { + + // sLog->outError("Smartstone: isnullcommand: %u, command: %u, + // playercommand: %u", sSmartStone->isNullCommand(command), command.id, + // playerCommands[i].id); + + if (!sSmartStone->isNullCommand(command) && + command.id == playerCommands[i].id) { + player->SendBuyError(BUY_ERR_ITEM_ALREADY_SOLD, NULL, item, 0); + return false; + } + } + + // check current item amount if it limited + /* + if (crItem->maxcount != 0) + { + if (creature->GetVendorItemCurrentCount(crItem) < pProto->BuyCount * + count) + { + SendBuyError(BUY_ERR_ITEM_ALREADY_SOLD, creature, item, 0); + return false; + } + }*/ + + if (pProto->RequiredReputationFaction && + (uint32(player->GetReputationRank(pProto->RequiredReputationFaction)) < + pProto->RequiredReputationRank)) { + player->SendBuyError(BUY_ERR_REPUTATION_REQUIRE, NULL, item, 0); + return false; + } + + if (crItem->ExtendedCost) { + ItemExtendedCostEntry const *iece = + sItemExtendedCostStore.LookupEntry(crItem->ExtendedCost); + if (!iece) { + sLog->outError("Item %u have wrong ExtendedCost field value %u", + pProto->ItemId, crItem->ExtendedCost); + return false; + } + + // honor points price + if (player->GetHonorPoints() < (iece->reqhonorpoints * count)) { + player->SendEquipError(EQUIP_ERR_NOT_ENOUGH_HONOR_POINTS, NULL, NULL); + return false; + } + + // arena points price + if (player->GetArenaPoints() < (iece->reqarenapoints * count)) { + player->SendEquipError(EQUIP_ERR_NOT_ENOUGH_ARENA_POINTS, NULL, NULL); + return false; + } + + // item base price + for (uint8 i = 0; i < MAX_ITEM_EXTENDED_COST_REQUIREMENTS; ++i) { + if (iece->reqitem[i] && + !player->HasItemCount(iece->reqitem[i], + (iece->reqitemcount[i] * count))) { + player->SendEquipError(EQUIP_ERR_VENDOR_MISSING_TURNINS, NULL, NULL); + return false; + } + } + + // check for personal arena rating requirement + if (player->GetMaxPersonalArenaRatingRequirement(iece->reqarenaslot) < + iece->reqpersonalarenarating) { + // probably not the proper equip err + player->SendEquipError(EQUIP_ERR_CANT_EQUIP_RANK, NULL, NULL); + return false; + } + } + + uint32 price = 0; + if (crItem->IsGoldRequired(pProto) && + pProto->BuyPrice > + 0) // Assume price cannot be negative (do not know why it is int32) + { + uint32 maxCount = MAX_MONEY_AMOUNT / pProto->BuyPrice; + if ((uint32) count > maxCount) { + sLog->outError("Player %s tried to buy %u item id %u, causing overflow", + player->GetName().c_str(), (uint32) count, pProto->ItemId); + count = (uint8) maxCount; + } + price = pProto->BuyPrice * count; // it should not exceed MAX_MONEY_AMOUNT + + // reputation discount + /* + price = uint32(floor(price * player->GetReputationPriceDiscount(creature))); + */ + if (!player->HasEnoughMoney(price)) { + player->SendBuyError(BUY_ERR_NOT_ENOUGHT_MONEY, NULL, item, 0); + return false; + } + } + + player->ModifyMoney(-int32(price)); + + if (crItem->ExtendedCost) // case for new honor system + { + ItemExtendedCostEntry const *iece = + sItemExtendedCostStore.LookupEntry(crItem->ExtendedCost); + if (iece->reqhonorpoints) + player->ModifyHonorPoints(-int32(iece->reqhonorpoints * count)); + + if (iece->reqarenapoints) + player->ModifyArenaPoints(-int32(iece->reqarenapoints * count)); + + for (uint8 i = 0; i < MAX_ITEM_EXTENDED_COST_REQUIREMENTS; ++i) { + if (iece->reqitem[i]) + player->DestroyItemCount(iece->reqitem[i], + (iece->reqitemcount[i] * count), true); + } + } + + WorldPacket data(SMSG_BUY_ITEM, (8 + 4 + 4 + 4)); + data << uint64(1); + data << uint32(vendorslot + 1); // numbered from 1 at client + data << int32(0); + data << uint32(1); + player->GetSession()->SendPacket(&data); + + /* + if ((bag == NULL_BAG && slot == NULL_SLOT) || player->IsInventoryPos(bag, + slot)) + { + if (!player->_StoreOrEquipNewItem(vendorslot, item, count, bag, slot, + price, pProto, creature, crItem, true)) + return false; + } + else if (player->IsEquipmentPos(bag, slot)) + { + if (pProto->BuyCount * count != 1) + { + player->SendEquipError(EQUIP_ERR_ITEM_CANT_BE_EQUIPPED, NULL, NULL); + return false; + } + if (!player->_StoreOrEquipNewItem(vendorslot, item, count, bag, slot, + price, pProto, creature, crItem, false)) + return false; + } + else + { + player->SendEquipError(EQUIP_ERR_ITEM_DOESNT_GO_TO_SLOT, NULL, NULL); + return false; + }*/ + + command = sSmartStone->getCommandByItem(item); + + if (!sSmartStone->isNullCommand(command)) { + sAZTH->GetAZTHPlayer(player)->addSmartStoneCommand( + sSmartStone->toPlayerCommand(command), true); + ChatHandler(player->GetSession()) + .SendSysMessage(sAzthLang->get(AZTH_LANG_SS_NEWAPP, player)); + + sScriptMgr->OnBeforeStoreOrEquipNewItem(player, vendorslot, item, count, bag, slot, pProto, creature, crItem, false); + } + + // return crItem->maxcount != 0; + return true; +} + +WorldLocation & AzthPlayer::getLastPositionInfo(uint32 dimension) { + return lastPositionInfo[dimension]; +}; + +void AzthPlayer::setLastPositionInfo(uint32 dimension, WorldLocation posInfo) { + lastPositionInfo[dimension] = posInfo; +}; + +/** + * We should not return a reference (&) in this case since + * the returned value is local. Then must be copied + * + */ +std::map AzthPlayer::getLastPositionInfoFromDB() { + std::map lastPos; + + QueryResult savedPosResult = CharacterDatabase.PQuery( + "SELECT type, mapId, posX, posY, posZ FROM character_saved_position WHERE charGuid = %u;", player->GetGUID().GetCounter()); + + if (!savedPosResult) + return lastPos; + + do + { + Field* posFields = savedPosResult->Fetch(); + + uint32 type = posFields[0].GetUInt32(); + lastPos[type] = WorldLocation(posFields[1].GetFloat(),posFields[2].GetFloat(),posFields[3].GetFloat(), posFields[4].GetFloat(), player->GetOrientation()); + + sAZTH->GetAZTHPlayer(player)->setLastPositionInfo(type, lastPos[type]); + } while (savedPosResult->NextRow()); + + return lastPos; +}; + +void AzthPlayer::saveLastPositionInfoToDB(Player *pl) +{ + CharacterDatabaseTransaction trans = CharacterDatabase.BeginTransaction(); + + std::map::iterator it; + for ( it = lastPositionInfo.begin(); it != lastPositionInfo.end(); it++ ) + { + WorldLocation _loc= it->second; + trans->PAppend("REPLACE INTO character_saved_position(charGuid,type,posX,posY,posZ,mapId) VALUES (%u, %u, %f, %f, %f, %u);", pl->GetGUID().GetCounter(), it->first, _loc.GetPositionX(), _loc.GetPositionY(), _loc.GetPositionZ(), _loc.GetMapId()); + } + + CharacterDatabase.CommitTransaction(trans); +}; + diff --git a/src/Smartstone/PvPApps.cpp b/src/Smartstone/PvPApps.cpp new file mode 100644 index 0000000..2862559 --- /dev/null +++ b/src/Smartstone/PvPApps.cpp @@ -0,0 +1,7 @@ +#include "Apps.h" +#include "AzthSharedDefines.h" + +void SmartStoneApps::teleportDalaran(Player* player) +{ + player->TeleportTo(AzthSharedDef::dalaran); +} diff --git a/src/Timewalking/AzthLevelStat.cpp b/src/Timewalking/AzthLevelStat.cpp new file mode 100644 index 0000000..ee12ff4 --- /dev/null +++ b/src/Timewalking/AzthLevelStat.cpp @@ -0,0 +1,70 @@ +#include "AzthLevelStat.h" + + +const std::map & AzthLevelStatMgr::GetLevelStatList() +{ + const std::map &ptr = levelStatList; + return ptr; +} + +void AzthLevelStatMgr::SetLevelStatList(std::map levelStatList) +{ + this->levelStatList = levelStatList; +} + +AzthLevelStatMgr* AzthLevelStatMgr::instance() +{ + static AzthLevelStatMgr instance; + return &instance; +} + +AzthLevelStat::AzthLevelStat(uint32 level, uint32 race, uint32 Class, std::map pctMap) +{ + this->level = level; + this->race = race; + this->Class = Class; + this->pctMap = pctMap; +} + + +uint32 AzthLevelStat::GetLevel() const +{ + return level; +} + +void AzthLevelStat::SetLevel(uint32 level) +{ + this->level = level; +} + +uint32 AzthLevelStat::GetRace() const +{ + return race; +} + +void AzthLevelStat::SetRace(uint32 race) +{ + this->race = race; +} + +uint32 AzthLevelStat::GetClass() const +{ + return Class; +} + +void AzthLevelStat::SetClass(uint32 Class) +{ + this->Class = Class; +} + + +uint32 AzthLevelStat::GetPct(aura_timewalking_enum aura) +{ + return this->pctMap[aura]; +} + + +void AzthLevelStat::SetPct(aura_timewalking_enum aura, uint32 val) +{ + this->pctMap[aura]=val; +} diff --git a/src/Timewalking/AzthLevelStat.h b/src/Timewalking/AzthLevelStat.h new file mode 100644 index 0000000..37ecd2a --- /dev/null +++ b/src/Timewalking/AzthLevelStat.h @@ -0,0 +1,125 @@ +#ifndef AZTH_LEVEL_STATS_H +#define AZTH_LEVEL_STATS_H + +#include "Common.h" +#include "Define.h" +#include "Config.h" +#include + +enum aura_timewalking_enum +{ + // base stats + TIMEWALKING_AURA_MOD_STR_PCT = 909070, + TIMEWALKING_AURA_MOD_STA_PCT = 909071, + TIMEWALKING_AURA_MOD_AGI_PCT = 909072, + TIMEWALKING_AURA_MOD_INT_PCT = 909073, + TIMEWALKING_AURA_MOD_SPI_PCT = 909074, + + // special from official dbc + // TIMEWALKING_AURA_MOD_PARRY_RETAIL = 21352, // Decrease Parry -1 + // our from database + TIMEWALKING_AURA_MOD_DODGE_PCT = 909080, + TIMEWALKING_AURA_MOD_PARRY_PCT = 909081, + TIMEWALKING_AURA_MOD_BLOCK_PCT = 909082, + TIMEWALKING_AURA_MOD_CRIT_PCT = 909083, + TIMEWALKING_AURA_MOD_ARMOR_PENET_PCT = 909084, + TIMEWALKING_AURA_MOD_ALL_DAMAGE_PCT = 909085, // db version of TIMEWALKING_AURA_MOD_DAMAGESPELL + TIMEWALKING_AURA_MOD_DEFENSE_SKILL = 909086, + TIMEWALKING_AURA_MOD_MELEE_DAMAGE_PCT = 909087, + + // our from dbc + TIMEWALKING_AURA_MOD_INCREASE_HEALTH_PCT = 909090, + TIMEWALKING_AURA_MOD_RESISTANCE_PCT = 909091, + TIMEWALKING_AURA_MOD_HEALING = 909092, + TIMEWALKING_AURA_MOD_DAMAGESPELL = 909093, + TIMEWALKING_AURA_MOD_POWER_COST_SCHOOL_PCT = 909094, + TIMEWALKING_AURA_MOD_STAT_PCT = 909095, + TIMEWALKING_AURA_VISIBLE = 909096, + // other + TIMEWALKING_AURA_AUTO_LEVEL_SCALING = 909100, + + TIMEWALKING_AURA_MIN=TIMEWALKING_AURA_MOD_DODGE_PCT, + TIMEWALKING_AURA_MAX=TIMEWALKING_AURA_AUTO_LEVEL_SCALING +}; + +enum TWSpecialLevels +{ + TIMEWALKING_SPECIAL_LVL_MIN=300, + // 300 < lvl < 400 -> special levels == max_level + // raids + TIMEWALKING_SPECIAL_LVL_WOTLK_START=TIMEWALKING_SPECIAL_LVL_MIN, + TIMEWALKING_LVL_NAXX = 381, + TIMEWALKING_LVL_OBSIDIAN = 382, + TIMEWALKING_LVL_THE_EYE = 383, + TIMEWALKING_LVL_ULDUAR = 384, + // ALGALON 385 ? + TIMEWALKING_LVL_TOGC = 386, + TIMEWALKING_SPECIAL_LVL_WOTLK_END=399, + // 400 <= lvl <= 500 : special levels <= max_level + // other + TIMEWALKING_LVL_AUTO=400, + // VAS Autobalancing 50 levels available + TIMEWALKING_LVL_VAS_START=401, + TIMEWALKING_LVL_VAS_LVL1 = TIMEWALKING_LVL_VAS_START, + TIMEWALKING_LVL_VAS_LVL2 = 402, + TIMEWALKING_LVL_VAS_LVL3 = 403, + TIMEWALKING_LVL_VAS_LVL4 = 404, + TIMEWALKING_LVL_VAS_LVL5 = 405, + TIMEWALKING_LVL_VAS_LVL6 = 406, + TIMEWALKING_LVL_VAS_LVL7 = 407, + TIMEWALKING_LVL_VAS_LVL8 = 408, + TIMEWALKING_LVL_VAS_LVL9 = 409, + TIMEWALKING_LVL_VAS_LVL10 = 410, + TIMEWALKING_LVL_VAS_LVL11 = 411, + TIMEWALKING_LVL_VAS_LVL12 = 412, + TIMEWALKING_LVL_VAS_LVL13 = 413, + TIMEWALKING_LVL_VAS_LVL14 = 414, + TIMEWALKING_LVL_VAS_LVL15 = 415, + TIMEWALKING_LVL_VAS_LVL16 = 416, + TIMEWALKING_LVL_VAS_LVL17 = 417, + TIMEWALKING_LVL_VAS_LVL18 = 418, + TIMEWALKING_LVL_VAS_LVL19 = 419, + TIMEWALKING_LVL_VAS_LVL20 = 420, + TIMEWALKING_LVL_VAS_END = 450, + TIMEWALKING_SPECIAL_LVL_MAX=555, + TIMEWALKING_SPECIAL_LVL_MIXED=TIMEWALKING_SPECIAL_LVL_MAX, +}; + +class AzthLevelStat +{ +public: + //GETTERS + uint32 GetLevel() const; + uint32 GetRace() const; + uint32 GetClass() const; + uint32 GetPct(aura_timewalking_enum aura); + + //SETTERS + void SetLevel(uint32 level); + void SetRace(uint32 race); + void SetClass(uint32 Class); + void SetPct(aura_timewalking_enum aura, uint32 val); + + AzthLevelStat(uint32 level=80, uint32 race=0, uint32 Class=0, std::map pctMap = std::map()); + + std::map pctMap; +private: + uint32 level; + uint32 race; + uint32 Class; +}; + +class AzthLevelStatMgr { +public: + const std::map & GetLevelStatList(); + void SetLevelStatList(std::map levelStatList); + + static AzthLevelStatMgr* instance(); + +private: + std::map levelStatList; +}; + +#define sAzthLevelStatMgr AzthLevelStatMgr::instance() + +#endif diff --git a/src/Timewalking/AzthTimewalkingUtils.cpp b/src/Timewalking/AzthTimewalkingUtils.cpp new file mode 100644 index 0000000..2b223de --- /dev/null +++ b/src/Timewalking/AzthTimewalkingUtils.cpp @@ -0,0 +1,686 @@ +#include "AzthUtils.h" +#include "AzthLevelStat.h" +#include "Pet.h" +#include "Spell.h" +#include "AZTH.h" +#include "AzthGroupMgr.h" + +class Spell; + +std::string AzthUtils::getLevelInfo(uint32 level) { + switch (level) { + case TIMEWALKING_LVL_NAXX: + return "Naxxramas Timewalking"; + case TIMEWALKING_LVL_OBSIDIAN: + return "Obsidian Sanctum Timewalking"; + case TIMEWALKING_LVL_THE_EYE: + return "The Eye of Eternity Timewalking"; + case TIMEWALKING_LVL_TOGC: + return "Trial of the Grand Crusader"; + case TIMEWALKING_LVL_ULDUAR: + return "Ulduar"; + case TIMEWALKING_LVL_AUTO: + return "Auto scaling"; + case TIMEWALKING_SPECIAL_LVL_MIXED: + return "Mixed level"; + default: + if (sAzthUtils->isMythicLevel(level)) { + return "Flex Mythic+ level "+std::to_string(level-TIMEWALKING_LVL_VAS_START+1); + } else { + return std::to_string(level); + } + } +} + +// This function is used to decide which level must prevail +// on another when select the group level for example. +uint32 AzthUtils::maxTwLevel(uint32 sourceLvl, uint32 compareLevel) const { + uint32 maxLevel=sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL); + + if (sourceLvl == compareLevel || compareLevel<=0) + return sourceLvl; + + // normal level case (from 0 to 255) + if (sourceLvl < TIMEWALKING_SPECIAL_LVL_MIN && compareLevel < TIMEWALKING_SPECIAL_LVL_MIN) { + return sourceLvl > compareLevel ? sourceLvl : compareLevel; + } + //else special level >= TIMEWALKING_SPECIAL_LVL_MIN || compareLevel >= TIMEWALKING_SPECIAL_LVL_MIN + + + //1) TW Wotlk level case + if (sourceLvl >= TIMEWALKING_SPECIAL_LVL_WOTLK_START && sourceLvl <= TIMEWALKING_SPECIAL_LVL_WOTLK_END) { + // TW Wotlk vs TW Wotlk + if (compareLevel >= TIMEWALKING_SPECIAL_LVL_WOTLK_START && compareLevel <= TIMEWALKING_SPECIAL_LVL_WOTLK_END) { + return sourceLvl > compareLevel ? sourceLvl : compareLevel; + } + + // TW Wotlk vs lower than endlevels + // a level lower than maxlevel is also + // lower than special wotlk, so sourceLevel will prevail + if (compareLevel < maxLevel) { + return sourceLvl; + } + + // TW Wotlk vs endlevels + // if sourceLevel is a special level but + // compare level is not and it's range is from 80 to TIMEWALKING_SPECIAL_LVL_MIN -1 + // then compareLevel must prevail because TW Wotlk levels + // are something between maxlevel and maxlevel -1 + if (compareLevel >= maxLevel && compareLevel < TIMEWALKING_SPECIAL_LVL_MIN) + return compareLevel; + + // TW Wotlk vs others + // comparing another level with TW Wotlk + // it must be considered a not compatible + // case, so mixed level is used + return TIMEWALKING_SPECIAL_LVL_MIXED; + } + + //2) Mythic case + if (sourceLvl >= TIMEWALKING_LVL_VAS_START && sourceLvl <= TIMEWALKING_LVL_VAS_END) { + if (compareLevel >= TIMEWALKING_LVL_VAS_START && compareLevel <= TIMEWALKING_LVL_VAS_END) { + return sourceLvl > compareLevel ? sourceLvl : compareLevel; + } + + // comparing another level with mythic + // it must be considered a not compatible + // case, so mixed level is used + return TIMEWALKING_SPECIAL_LVL_MIXED; + } + + //3) AUTO Scaling + if (sourceLvl == TIMEWALKING_LVL_AUTO) { + // already handled at beginning of this function + // if (compareLevel == TIMEWALKING_LVL_AUTO) + // return TIMEWALKING_LVL_AUTO; + + // autoscaling is compatible only with itself + // so if compareLevel is different, we will use mixed case + return TIMEWALKING_SPECIAL_LVL_MIXED; + } + + // special level not handled, must be always considered a mixed case + // NOTE: it will avoid loops + if (sourceLvl > TIMEWALKING_SPECIAL_LVL_MIN && compareLevel < TIMEWALKING_SPECIAL_LVL_MIN) + return TIMEWALKING_SPECIAL_LVL_MIXED; + + return maxTwLevel(compareLevel, sourceLvl); // inverse case +} + +bool AzthUtils::isEligibleForBonusByArea(Player const* player) { + WorldLocation pos = WorldLocation(player->GetMapId(), player->GetPositionX(), player->GetPositionY(), player->GetPositionZ(), player->GetOrientation()); + uint32 posLvl=sAzthUtils->getPositionLevel(true, player->GetMap(), pos); + + if (posLvl>0) + { + uint32 level = sAZTH->GetAZTHPlayer((Player*)player)->getPStatsLevel(); + + if (posLvl>TIMEWALKING_SPECIAL_LVL_MIN) + { + //if (sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel() == posLvl) // with special level we must have the exact value + // return true; + } else if (level < sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL) && posLvl < sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL) // avoid double loot and other bonuses on end-game instances + && level<=posLvl) + return true; + } + + return false; +} + +// used for pet and players +void AzthUtils::setTwAuras(Unit *unit, AzthLevelStat const *stats, bool apply, bool skipDefense) { + if (apply) { + for ( auto& a : stats->pctMap) { + if (a.first != TIMEWALKING_AURA_VISIBLE && a.second > 0) + unit->SetAuraStack(a.first, unit, a.second); + } + + // stats->GetLevel is higher only when special levels + // are used (except TIMEWALKING_LVL_AUTO) + if (sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL) > stats->GetLevel()) { + // reduce melee damage based on level diff + unit->SetAuraStack(TIMEWALKING_AURA_MOD_MELEE_DAMAGE_PCT, unit, + ceil(((sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL)- stats->GetLevel())*100 / sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL)) / 2)+30); // scaling by level + 30% base + + // defense aura mod must not be applied in this context when login + // because skill is not calculated correctly. + // This code is called on loadFromDb but defense must be calculated after login instead + // so we need to call it separately + if (!skipDefense && unit->GetTypeId() == TYPEID_PLAYER) { + setTwDefense(unit->ToPlayer(), true); + } + } + + unit->SetAuraStack(TIMEWALKING_AURA_VISIBLE, unit, stats->GetLevel()); + } else { + for ( auto a : stats->pctMap) { + unit->RemoveAura(a.first); + } + + unit->RemoveAura(TIMEWALKING_AURA_MOD_MELEE_DAMAGE_PCT); + // defense aura mod must not be applied in this context when login + // because skill is not calculated correctly. + // This code is called on loadFromDb but defense must be calculated after login instead + // so we need to call it separately + if (!skipDefense && unit->GetTypeId() == TYPEID_PLAYER) { + setTwDefense(unit->ToPlayer(), false); + } + unit->RemoveAura(TIMEWALKING_AURA_VISIBLE); + } +} + +// used for pet and players +void AzthUtils::setTwDefense(Player *player, bool apply) { + player->RemoveAura(TIMEWALKING_AURA_MOD_DEFENSE_SKILL); + + if (apply) { + uint32 reduction= sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL) - player->getLevel(); + // 1 stack = 5 defense skill reduction + player->SetAuraStack(TIMEWALKING_AURA_MOD_DEFENSE_SKILL, player, reduction); + } +} + +AzthLevelStat const* AzthUtils::getTwStats(Player *player, uint32 level) { + std::map::const_iterator itr = sAzthLevelStatMgr->GetLevelStatList().find(level * 10000 + player->getRace() * 100 + player->getClass()); + + if (itr == sAzthLevelStatMgr->GetLevelStatList().end()) + return nullptr; + + return &itr->second; +} + +bool AzthUtils::updateTwLevel(Player *player,Group *group) +{ + bool result = false; + + if (!player || !sAZTH->GetAZTHPlayer(player) || player->IsGameMaster()) + return result; + + uint32 levelPlayer = sAZTH->GetAZTHPlayer(player)->isTimeWalking() ? sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel() : player->getLevel(); + + if (AzthGroupMgr *azthGroup = sAZTH->GetAZTHGroup(group); azthGroup) + { + bool updated = false; + uint32 maxLevel = sAzthUtils->maxTwLevel(levelPlayer, azthGroup->levelMaxGroup); + + if (maxLevel != azthGroup->levelMaxGroup) + { + azthGroup->levelMaxGroup = maxLevel; + updated = true; + } + + if (group->GetMembersCount() > azthGroup->groupSize) + { + azthGroup->groupSize = group->GetMembersCount(); + updated = true; + } + + if (updated) + { + std::string _slvl=sAzthUtils->getLevelInfo(azthGroup->levelMaxGroup); + std::string msg = sAzthLang->getf(AZTH_LANG_GROUP_LEVEL_REG,player, player->GetName().c_str(),_slvl.c_str(), group->GetMembersCount()); + sAzthUtils->sendMessageToGroup(player, player->GetGroup(), msg.c_str()); + azthGroup->saveToDb(); + result = true; + } + } + + Map* map = player->FindMap(); + + if (map->IsDungeon() || map->IsRaid()) + { + bool updated = false; + InstanceSave* is = sInstanceSaveMgr->PlayerGetInstanceSave(player->GetGUID(), map->GetId(), player->GetDifficulty(map->IsRaid())); + if (is) // negative condition shouldn't happen (maybe only on login?) + { + if (sAZTH->GetAZTHInstanceSave(is)->levelMax == 0) + { + sAZTH->GetAZTHPlayer(player)->instanceID = map->GetInstanceId(); + + QueryResult queryRes = CharacterDatabase.PQuery("SELECT levelPg,groupSize,startTime FROM instance WHERE id = %u", sAZTH->GetAZTHPlayer(player)->instanceID); + if (!queryRes) + return result; + + Field* fields = queryRes->Fetch(); + sAZTH->GetAZTHInstanceSave(is)->levelMax = fields[0].GetUInt32(); + sAZTH->GetAZTHInstanceSave(is)->groupSize = fields[1].GetUInt32(); + uint32 startTime = fields[2].GetUInt32(); + + if (startTime) + sAZTH->GetAZTHInstanceSave(is)->startTime = startTime; + + updated = true; + } + + uint32 maxLevel = sAzthUtils->maxTwLevel(levelPlayer, sAZTH->GetAZTHInstanceSave(is)->levelMax); + if (maxLevel != sAZTH->GetAZTHInstanceSave(is)->levelMax) + { + sAZTH->GetAZTHInstanceSave(is)->levelMax = maxLevel; + updated = true; + } + + uint32 cnt = map->GetPlayersCountExceptGMs(); + if (cnt > sAZTH->GetAZTHInstanceSave(is)->groupSize) + { + sAZTH->GetAZTHInstanceSave(is)->groupSize = cnt; + updated = true; + } + + if (updated) + { + is->InsertToDB(); + std::string _slvl = sAzthUtils->getLevelInfo(sAZTH->GetAZTHInstanceSave(is)->levelMax); + std::string msg = sAzthLang->getf(AZTH_LANG_INSTANCE_LEVEL_REG, player, player->GetName().c_str(), _slvl.c_str(), sAZTH->GetAZTHInstanceSave(is)->groupSize); + + sAzthUtils->sendMessageToGroup(player, player->GetGroup(), msg.c_str()); + result = true; + } + } + } + + return result; +} + +uint32 AzthUtils::selectSpellForTW(Player* player, uint32 spellId) { + if (sAZTH->GetAZTHPlayer(player)->isTimeWalking(true)) { + uint32 spell=this->selectCorrectSpellRank(player->getLevel(), spellId); + if (spell) + return spell; + } + + return spellId; +} + +void AzthUtils::removeTimewalkingAura(Unit *unit) { + + std::list spells; + + for (Unit::AuraApplicationMap::iterator iter = unit->GetAppliedAuras().begin(); iter != unit->GetAppliedAuras().end(); iter++) + { + AuraApplication const* aurApp = iter->second; + Aura const* aura = aurApp->GetBase(); + + if (aura->GetSpellInfo()->Id >= TIMEWALKING_AURA_MIN && aura->GetSpellInfo()->Id <= TIMEWALKING_AURA_MAX) { + continue; + } + + uint32 spellLevel = sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL); + // not not allowed -> allowed + if (!isNotAllowedSpellForTw(aura->GetSpellInfo())) { + spellLevel = aura->GetSpellInfo()->SpellLevel == 0 ? aura->GetSpellInfo()->BaseLevel : aura->GetSpellInfo()->SpellLevel; + } + + // item exploit check + if (unit->GetTypeId() == TYPEID_PLAYER) { + Player *pl = (Player*)unit; + ItemTemplate const *proto = NULL; + Item* castItem = aura->GetCastItemGUID() ? pl->GetItemByGuid(aura->GetCastItemGUID()) : NULL; + if (!castItem && aura->GetCastItemEntry()) { + proto = sObjectMgr->GetItemTemplate(aura->GetCastItemEntry()); + } else if (castItem) { + proto = castItem->GetTemplate(); + } + + if (proto) { + uint32 reqLevel=getCalcReqLevel(proto); + if (reqLevel > spellLevel) { + spellLevel = reqLevel; + } + } + } + + if (aurApp->IsPositive() || unit->IsPet() || !aura->GetSpellInfo()->HasAttribute(SPELL_ATTR3_ALLOW_AURA_WHILE_DEAD)) // not negative death persistent auras + { + // keep auras that are lower or equal to unit level + if (spellLevel > 1 && spellLevel <= unit->getLevel()) + continue; + + unit->RemoveAura(iter); + } + // xinef: special marker, 95% sure + else if (aura->GetSpellInfo()->HasAttribute(SPELL_ATTR5_REMOVE_ENTERING_ARENA)) + { + // keep auras that are lower or equal to unit level + if (spellLevel > 1 && spellLevel <= unit->getLevel()) + continue; + + unit->RemoveAura(iter); + } + } + + if (unit->GetTypeId() == TYPEID_PLAYER) { + Player *pl = (Player*)unit; + + // xinef: add talent auras + for (PlayerTalentMap::const_iterator itr = pl->GetTalentMap().begin(); itr != pl->GetTalentMap().end(); ++itr) + { + if (itr->second->State == PLAYERSPELL_REMOVED) + continue; + + // xinef: talent not in new spec + if (!(itr->second->specMask & pl->GetActiveSpecMask())) + continue; + + spells.push_back(itr->first); + } + + for (PlayerSpellMap::iterator itr = pl->GetSpellMap().begin(); itr != pl->GetSpellMap().end();) { + SpellInfo const* spellInfo = sSpellMgr->GetSpellInfo(itr->first); + if (spellInfo->IsPassive() && spellInfo->IsPositive()) { + spells.push_back(itr->first); + } + ++itr; + } + + for (uint8 i = 0; i < MAX_GLYPH_SLOT_INDEX; ++i) + { + if (uint32 glyph = pl->GetGlyph(i)) + { + if (GlyphPropertiesEntry const* glyphEntry = sGlyphPropertiesStore.LookupEntry(glyph)) + { + if (GlyphSlotEntry const* glyphSlotEntry = sGlyphSlotStore.LookupEntry(pl->GetGlyphSlot(i))) + { + const SpellInfo* spellInfo = sSpellMgr->GetSpellInfo(glyphEntry->SpellId); + if (glyphEntry->TypeFlags == glyphSlotEntry->TypeFlags) + { + if (!spellInfo->Stances) + spells.push_back(glyphEntry->SpellId); + continue; + } + } + } + } + } + + for (std::list::const_iterator iterator = spells.begin(), end = spells.end(); iterator != end; ++iterator) { + pl->RemoveAurasDueToSpell((*iterator)); + const SpellInfo *spellInfo = sSpellMgr->GetSpellInfo((*iterator)); + + if (spellInfo->IsPassive() || (spellInfo->HasAttribute(SPELL_ATTR0_DO_NOT_DISPLAY) && spellInfo->Stances)) + { + if (pl->IsNeedCastPassiveSpellAtLearn(spellInfo)) + pl->CastSpell(pl, (*iterator), true); + } + // pussywizard: cast and return, learnt spells will update profession count, etc. + else if (spellInfo->HasEffect(SPELL_EFFECT_SKILL_STEP)) + { + pl->CastSpell(pl, (*iterator), true); + } + } + + //pl->_ApplyAllLevelScaleItemMods(false); + //pl->_ApplyAllLevelScaleItemMods(true); + + //pl->InitStatsForLevel(true); + } + else if (unit->IsPet()) { + Pet *pet = (Pet*)unit; + + for (PetSpellMap::iterator itr = pet->m_spells.begin(); itr != pet->m_spells.end();) { + SpellInfo const* spellInfo = sSpellMgr->GetSpellInfo(itr->first); + if (spellInfo->IsPassive() && spellInfo->IsPositive()) { + spells.push_back(itr->first); + } + ++itr; + } + + for (std::list::const_iterator iterator = spells.begin(), end = spells.end(); iterator != end; ++iterator) { + pet->RemoveAurasDueToSpell((*iterator)); + pet->CastSpell(pet, (*iterator), true); + } + } + +} + +int32 AzthUtils::getSpellReduction(Player *player, SpellInfo const* spellProto) { + uint32 lastSpell=sSpellMgr->GetLastSpellInChain(spellProto->Id); + // special cases where we must consider valid spell + // even if no level (e.g. custom spell triggered by scripts) + switch(lastSpell) { + case 20647: // EXECUTE (triggered) + case 58381: // mind flay (triggered) + return 0; + } + + // we need to use damage/heal reduction from TW table when in TW + // at 80 special levels + uint32 twLevel=sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel(); + if (twLevel != TIMEWALKING_LVL_AUTO && twLevel >= TIMEWALKING_SPECIAL_LVL_MIN && twLevel <= TIMEWALKING_SPECIAL_LVL_MAX) + return -1; + + uint32 spellLevel = spellProto->SpellLevel == 0 ? spellProto->BaseLevel : spellProto->SpellLevel; + + if (spellLevel <= 1 && spellProto->MaxLevel == 0 && spellProto->GetNextRankSpell() == NULL) + spellLevel = sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL); // assume that spell is max level + //return -1; // not valid and not scalable. Use reduction pct from TW table + + float rate; // higher values means higher reduction + uint32 min; // min reduction + uint32 max; // max reduction + + + if (player->getLevel() > 70) { // from 71 + rate = 1.0f; + min = 0; + max = 50; + } else if (player->getLevel() >= 60) { + rate = 1.5f; + min = 30; + max = 95; + } else { + rate = 1.8f; + min = 30; + max = 95; + } + + // proportional reduction with ranked spells + if (spellLevel > player->getLevel()) { + // when spell rank has an higher level + // then player we must consider a special reduction + + // the most spell level is higher related to player level + // the more the reduction is high + uint32 diff = uint8(spellLevel - player->getLevel()); + uint32 pct = ceil((diff * rate * 100) / spellLevel); + + return pct > max ? max : ( pct < min ? min : pct ); + } else { + uint32 diff = uint8(player->getLevel() - spellLevel); + uint32 bonus = ceil((player->getLevel() + diff) / 10 / 2); + return bonus >= min ? 0 : min - bonus; + } +} + +// SPELLS TO DISABLE IN TW +bool AzthUtils::isNotAllowedSpellForTw(SpellInfo const* spellProto) { + uint32 lastSpell=sSpellMgr->GetLastSpellInChain(spellProto->Id); + + switch(lastSpell) { + // flask of the north + case 67016: + case 67017: + case 67018: + case 67019: + return true; + } + + return false; +} + +// SPELLS TO ENABLE IN TW +bool AzthUtils::isSpecialSpellForTw(SpellInfo const* spellProto) { + uint32 lastSpell=sSpellMgr->GetLastSpellInChain(spellProto->Id); + + switch(lastSpell) { + // PALADIN + case 32223: // Crusader Aura + case 54428: // Divine Plea + case 53736: // Seal of Corruption + case 31884: // Avenging Wrath + case 642: // Divine shield + case 1038: // Hand of Salvation + case 20166: // Seal of Wisdom + case 20165: // Seal of Light + case 20164: // Seal of Justice + case 20925: // Holy Shield + case 31801: // Seal of Vengeance + case 6940: // Hand of Sacrifice + case 19746: // concentration aura + case 25858: // Greater blessing of Kings + case 53563: // Beacon of Light + case 20911: // Blessing of Sanctuary + case 25899: // Greater blessing of sanctuary + + + // WARRIOR + case 2458: // Berserker stance + case 18499: // Berserker rage + case 12292: // Death Wish + case 55694: // Enraged Regeneration + case 23920: // Spell reflection + case 871: // Shield Wall + case 1719: // Recklessness + + // DRUID + case 50334: // berserker + case 29166: // innervate + case 33357: // dash + case 2893: // abolish poison + case 33891: // tree form + case 24858: // moonkin form + case 48451: // lifebloom + case 22812: // barkskin + case 53251: // wild Growth + case 62071: // savage roar + case 53201: // starfall + + // DK + case 48263: // Frost Presence + case 48265: // Unholy Presence + case 48266: // Blood Presence + case 48792: // Icebound Fortitude + case 3714: // Path of Frost + case 48707: // Anti-Magic Shell + case 49016: // Hysteria + case 49039: // Lichborne + case 49796: // Deathchill + case 49028: // Dancing rune weapon + + // HUNTER + case 19263: // Deterrence + case 5384: // Feign Death + case 13161: // Aspect of the Beast + case 62757: // Call Stabled Pet + case 13159: // Aspect of the Pack + case 34026: // Kill command + case 34027: // Kill Command (triggered) + case 19878: // Track Demons + case 19879: // Track Dragonkin + case 19880: // Track Elementals + case 19882: // Track Giants + case 5225: // Track Humanoids + case 3045: // Rapid Fire + + // WARLOCK + case 48018: // Demon circle: summon + case 132: // Detect invisibility + case 47893: // Fel armor + case 50589: // Immolation + case 48020: // demonic circle: teleport + + // SHAMAN + case 2825: // bloodlust + case 6495: // sentry totem + case 546: // water walking + case 30823: // shamanistic rage + case 49284: // earth shield + case 16191: // Mana Tide (ability triggered by Mana Tide Totem) + + // PRIEST + case 47585: // Dispersion + case 1706: // levitate + case 552: // abolish disease + case 528: // cure disease + case 47788: // guardian spirit + case 10060: // power infusion + case 64904: // Hymn of Hope (triggered) + + // ROGUE + case 51713: // Shadow Dance + + // MAGE + case 66: // Invisibility + case 11129: // Combustion + case 43046: // Molten Armor + case 43008: // Ice Armor + case 43024: // Mage Armor + case 45438: // Ice block + case 43039: // Ice Barrier + case 44645: // waterbolt (mage elemental) + return true; + } + + return false; +} + +bool AzthUtils::canScaleSpell(SpellInfo const* spellProto) { + // do not allow spell with reagents to be scaled + for (uint32 i = 0; i < MAX_SPELL_REAGENTS; i++) + { + if (spellProto->Reagent[i] > 0) + return false; + } + + return true; +} + +bool AzthUtils::disableEnchant(Player *player, SpellItemEnchantmentEntry const* pEnchant) { + uint32 level = player->getLevel(); + + // we can't only check isTimeWalking here because + // at this time timewalking variable has been already set when switching to timewalking + // so we need just to check also appropriate level + if (level >= sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL) || !sAZTH->GetAZTHPlayer(player)->isTimeWalking(true)) + return false; + + if (pEnchant->GemID) { + switch(pEnchant->GemID) { + case 42142: + case 36766: + case 42148: + case 42143: + case 42152: + case 42153: + case 42146: + case 42158: + case 42154: + case 42150: + case 42156: + case 42144: + case 42149: + case 36767: + case 42145: + case 42155: + case 42151: + case 42157: + return true; + } + } + + if (pEnchant->requiredSkillValue) { + if (pEnchant->requiredSkillValue >= 350 && level < 65) { + return true; + } else if (pEnchant->requiredSkillValue >= 275 && level < 50) { + return true; + } else if (pEnchant->requiredSkillValue >= 200 && level < 35) { + return true; + } else if (pEnchant->requiredSkillValue >= 125 && level < 20) { + return true; + } else if (pEnchant->requiredSkillValue >= 50 && level < 10) { + return true; + } + } + + + return false; +} diff --git a/src/Timewalking/PlayerTimewalking.cpp b/src/Timewalking/PlayerTimewalking.cpp new file mode 100644 index 0000000..3cb7059 --- /dev/null +++ b/src/Timewalking/PlayerTimewalking.cpp @@ -0,0 +1,400 @@ +#include "AzthPlayer.h" +#include "Player.h" +#include "AzthLevelStat.h" +#include "AzthUtils.h" +#include "Pet.h" +#include "Opcodes.h" +#include "AZTH.h" + +uint32 AzthPlayer::GetTimeWalkingLevel() const +{ + return timeWalkingLevel; +} + +bool AzthPlayer::isTimeWalking(bool skipSpecial) const +{ + if (skipSpecial && timeWalkingLevel>0 && ( timeWalkingLevel <= sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL) || timeWalkingLevel == TIMEWALKING_LVL_AUTO )) { + // it includes TIMEWALKING_LEVEL_AUTO + return true; + } else if (!skipSpecial && timeWalkingLevel>0) { + return true; + } + + return false; +} + +uint32 AzthPlayer::getTwItemLevel(uint32 twLevel) { + switch (twLevel) { + case TIMEWALKING_LVL_NAXX: + case TIMEWALKING_LVL_OBSIDIAN: + case TIMEWALKING_LVL_THE_EYE: + return 213; + break; + case TIMEWALKING_LVL_ULDUAR: + case TIMEWALKING_LVL_TOGC: + return 239; + break; + } + + return 0; +} + +void AzthPlayer::SetTimeWalkingLevel(uint32 itsTimeWalkingLevel, bool clearAuras/*=true*/, bool save /*=true*/, bool login/*=false*/) +{ + std::string lvlName=sAzthUtils->getLevelInfo(itsTimeWalkingLevel); + + if (!login) { + // hacking attempt? + if (timeWalkingLevel==0 && !sAzthUtils->isMythicLevel(itsTimeWalkingLevel) && player->getLevel()getIntConfig(CONFIG_MAX_PLAYER_LEVEL)) + return; + + uint32 iLvl=sAZTH->GetAZTHPlayer(player)->getTwItemLevel(itsTimeWalkingLevel); + if (iLvl && !sAZTH->GetAZTHPlayer(player)->checkItems(iLvl)) { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_TW_LEVEL_MAX, player, iLvl)); + return; + } + + // we should skip invalid levels and use available specials (>300) if needed + if (itsTimeWalkingLevel >= sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL) && lvlName.compare(std::to_string(itsTimeWalkingLevel)) == 0 /*equals*/) + return; + } + + uint32 realLevel = itsTimeWalkingLevel; + uint32 statsLevel = itsTimeWalkingLevel; + + uint32 oldLevel = player->getLevel(); + + if (itsTimeWalkingLevel>TIMEWALKING_SPECIAL_LVL_MIN && itsTimeWalkingLevel<=TIMEWALKING_SPECIAL_LVL_MAX) { // 300 + 255 levels + + if (itsTimeWalkingLevel == TIMEWALKING_LVL_AUTO) { + WorldLocation pos = WorldLocation(player->GetMapId(), player->GetPositionX(), player->GetPositionY(), player->GetPositionZ(), player->GetOrientation()); + + uint32 posLvl=sAzthUtils->getPositionLevel(false, player->GetMap(), pos); + realLevel = statsLevel = posLvl ? posLvl : player->getLevel(); + + switch(sAZTH->GetAZTHPlayer(player)->getCurrentDimensionByAura()) { + case DIMENSION_60: + if (player->getLevel() > 60) + realLevel = 60; + break; + case DIMENSION_70: + if (player->getLevel() > 70) + realLevel = 70; + break; + } + + } else { + realLevel = player->getLevel(); + } + } + + Player* player = this->player; + + //apply debuf/buff section (spell) and enable timewalking mode + if (itsTimeWalkingLevel > 0) + { + if (player->HasAura(TIMEWALKING_AURA_VISIBLE)) + // we must remove before set again + SetTimeWalkingLevel(0, false, false, login); + + AzthLevelStat const *stats = sAzthUtils->getTwStats(player, statsLevel); + if (!stats) + return; + + //set must be before givelevel allowing make the check inside givelevel to avoid level mail + timeWalkingLevel = itsTimeWalkingLevel; + + if (oldLevel != realLevel) + { + player->GiveLevel(realLevel); + + player->SendActionButtons(1); + + if (player->GetPet() && player->GetPet()->getLevel() != realLevel) { // could happen + player->GetPet()->GivePetLevel(realLevel); + } + } + + if (!sAzthUtils->isMythicLevel(timeWalkingLevel)) + player->SetFlag(PLAYER_FLAGS, PLAYER_FLAGS_NO_XP_GAIN); + + sAzthUtils->setTwAuras(player, stats, true, login); + + if (player->GetPet() && (!player->HasAura(TIMEWALKING_AURA_VISIBLE) || (player->GetPet()->HasAura(TIMEWALKING_AURA_VISIBLE) && player->GetPet()->GetAura(TIMEWALKING_AURA_VISIBLE)->GetStackAmount() != stats->GetLevel()))) + sAzthUtils->setTwAuras(player->GetPet(), stats, true, login); + + if (save) + QueryResult timewalkingCharactersActive_table = CharacterDatabase.PQuery(("INSERT IGNORE INTO azth_timewalking_characters_active (`id`, `level`) VALUES ('%d', '%d');"), player->GetGUID().GetCounter(), sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel()); + + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_TW_MODE_ON, player, lvlName.c_str())); + } + else + { + // used just to be able to loop on keys to remove auras + AzthLevelStat const *stats = sAzthUtils->getTwStats(player, player->getLevel()); + if (!stats) + return; + + if (save) { + if (!sAzthUtils->isMythicLevel(timeWalkingLevel)) + player->GiveLevel(sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL)); + + player->SendActionButtons(1); + + if (player->GetPet() && !sAzthUtils->isMythicLevel(timeWalkingLevel)) { + player->GetPet()->GivePetLevel(sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL)); + } + } + + if (!sAzthUtils->isMythicLevel(timeWalkingLevel)) + player->RemoveFlag(PLAYER_FLAGS, PLAYER_FLAGS_NO_XP_GAIN); + + sAzthUtils->setTwAuras(player, stats, false, login); + if (player->GetPet()) { + sAzthUtils->setTwAuras(player->GetPet(), stats, false, login); + } + + // reset must be after givelevel allowing make the check inside givelevel to avoid level mail + timeWalkingLevel = 0; + + if (save) { + QueryResult timewalkingCharactersActive_table = CharacterDatabase.PQuery(("DELETE FROM azth_timewalking_characters_active WHERE `id`=%d;"), player->GetGUID().GetCounter()); + // we announce it only when not login, because TW could be removed temporary (on level switch or on login for example) + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_TW_MODE_OFF, player)); + } + } + + prepareTwSpells(oldLevel); + + sAzthUtils->updateTwLevel(player, player->GetGroup()); + + if (clearAuras) { + sAzthUtils->removeTimewalkingAura(player); + if (player->GetPet() != NULL) { + sAzthUtils->removeTimewalkingAura(player->GetPet()); + } + } + + // START: RESET EQUIP SPELLS + player->UpdateEquipSpellsAtFormChange(); + + // unapply and reapply equip spells + for (uint8 i = 0; i < INVENTORY_SLOT_BAG_END; ++i) + { + Item* item = player->GetItemByPos(i); + if (!item) + continue; + + if (!item->IsBroken() && player->CanUseAttackType(player->GetAttackBySlot(i))) + { + player->ApplyItemEquipSpell(item, false); + player->ApplyItemEquipSpell(item, true); + } + } + + // unapply and reapply set bonuses + for (size_t setindex = 0; setindex < player->ItemSetEff.size(); ++setindex) + { + ItemSetEffect* eff = player->ItemSetEff[setindex]; + if (!eff) + continue; + + for (uint32 y = 0; y < MAX_ITEM_SET_SPELLS; ++y) + { + SpellInfo const* spellInfo = eff->spells[y]; + if (!spellInfo) + continue; + + player->ApplyEquipSpell(spellInfo, nullptr, false); + + // [AZTH] Timewalking + bool found = false; + + for (uint8 i = 0; i < INVENTORY_SLOT_BAG_END; ++i) + { + Item* item = player->GetItemByPos(i); + if (!item) + continue; + + ItemTemplate const* proto = item->GetTemplate(); + if (proto->ItemSet == eff->setid && proto && !sAZTH->GetAZTHPlayer(player)->itemCheckReqLevel(proto)) + { + break; + } + } + + if (found) + break; + + //[/AZTH] + + player->ApplyEquipSpell(spellInfo, nullptr, true); + } + } + // END: RESET EQUIP SPELLS + + /*if (save) { + player->SaveToDB(false, false); + }*/ +} + + +void AzthPlayer::prepareTwSpells(uint32 oldLevel) +{ + if (!player || !player->IsInWorld()) // shouldn't happen + return; + + bool isTw=isTimeWalking(true); + + // do nothing if we are not changing timewalking level + if (!isTw && oldLevel==player->getLevel()) + return; + + std::map spellMap; + + bool apply=isTw && player->getLevel() < sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL); + + for (auto itr : player->GetSpellMap()) + { + SpellInfo const* spellInfo = sSpellMgr->GetSpellInfo(itr.first); + + if (!itr.second->IsInSpec(player->GetActiveSpec())) //!spellInfo->HasAttribute(SPELL_ATTR4_UNK21)) + continue; + + bool isValidSpell = false; + + // All stance spells. if any better way, change it. + for (uint8 i = 0; i < MAX_SPELL_EFFECTS; ++i) + { + switch (spellInfo->SpellFamilyName) + { + case SPELLFAMILY_PALADIN: + // Paladin aura Spell + if (spellInfo->Effects[i].Effect == SPELL_EFFECT_APPLY_AREA_AURA_RAID) + isValidSpell=true; + break; + case SPELLFAMILY_DRUID: + // Druid form Spell + if (spellInfo->Effects[i].Effect == SPELL_EFFECT_APPLY_AURA && + spellInfo->Effects[i].ApplyAuraName == SPELL_AURA_MOD_SHAPESHIFT) + isValidSpell=true; + break; + } + } + + if (!isValidSpell) + continue; + + if (!sAzthUtils->canScaleSpell(spellInfo)) + continue; + + uint32 lastKnownSpell = sSpellMgr->GetLastSpellInChain(itr.first); + + while (!player->HasSpell(lastKnownSpell)) + lastKnownSpell = sSpellMgr->GetPrevSpellInChain(lastKnownSpell); + + uint32 spell = sAzthUtils->selectCorrectSpellRank(apply ? player->getLevel() : oldLevel, lastKnownSpell); + + uint32 remove = apply ? lastKnownSpell : spell; + uint32 learn = apply ? spell : lastKnownSpell; + + if (remove == learn) + continue; + + if (itr.first == remove) + { + // SUPERCED high ranks with low ranks + itr.second->Active = false; + spellMap[remove] = learn; + } + } + + for (std::map::const_iterator itr = spellMap.begin(), end = spellMap.end(); itr != end; ++itr) + { + PlayerSpellMap::iterator s = player->GetSpellMap().find(itr->second); + if (s == player->GetSpellMap().end() || player->HasActiveSpell(s->first) || player->HasActiveSpell(itr->first)) + continue; + + s->second->Active = true; + + // update ranks in action bar + WorldPacket data(SMSG_SUPERCEDED_SPELL, 4 + 4); + data << uint32(itr->first); // old + data << uint32(itr->second); // new + player->GetSession()->SendPacket(&data); + + player->SendLearnPacket(itr->first, false); // be sure that old spell is removed from spellbook + } +} + +bool AzthPlayer::canUseItem(Item * item, bool notify) { + if (!item) + return true; // we are not responsible, so continue + + ItemTemplate const* proto=item->GetTemplate(); + + if (!proto) + return true; + + if (!itemCheckReqLevel(proto, notify)) + return false; + + uint32 level = player->getLevel(); + + // we must check also level because + // this is called even when timewalking is set but level is not changed yet (when removing item bonuses) + if (level < sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL) && sAZTH->GetAZTHPlayer(player)->isTimeWalking(true)) { + if (proto->ItemLevel == AZTH_TW_ILVL_NORMAL_ONLY) + return true; + + for (uint8 i = 0; i < MAX_ITEM_PROTO_SPELLS; ++i) + { + _Spell const& spellData = proto->Spells[i]; + if (spellData.SpellId) { + SpellInfo const* spellInfo = sSpellMgr->GetSpellInfo(spellData.SpellId); + if (spellInfo && sAzthUtils->isNotAllowedSpellForTw(spellInfo)) { + if (notify) { + player->GetSession()->SendNotification("This item is not allowed in Timewalking"); + player->SendEquipError(EQUIP_ERR_NONE, item, NULL); + } + return false; + } + } + } + } + + return true; +} + +bool AzthPlayer::itemCheckReqLevel(ItemTemplate const* proto, bool notify) { + uint32 level = player->getLevel(); + + if (proto->ItemLevel == AZTH_TW_ILVL_NORMAL_ONLY) { + if (!sAZTH->GetAZTHPlayer(player)->isTimeWalking(true)) { + if (notify) { + player->GetSession()->SendNotification("This item can be used only with Timewalking level 1 to 79"); + player->SendEquipError(EQUIP_ERR_NONE, NULL, NULL); + } + + return false; + } else { + return true; // in this case we know what we're doing with this items, so we can return true directly + } + } + + // we must check also level because + // this is called even when timewalking is set but level is not changed yet (when removing item bonuses) + if (level < sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL) && sAZTH->GetAZTHPlayer(player)->isTimeWalking(true)) { + uint32 req=sAzthUtils->getCalcReqLevel(proto); + if (req > level) { + if (notify) { + player->GetSession()->SendNotification("Level Required for this item: %u", req); + player->SendEquipError(EQUIP_ERR_NONE, NULL, NULL); + } + + return false; + } + } + + return true; +} diff --git a/src/Timewalking/TimeWalking.cpp b/src/Timewalking/TimeWalking.cpp new file mode 100644 index 0000000..6b5f8d1 --- /dev/null +++ b/src/Timewalking/TimeWalking.cpp @@ -0,0 +1,886 @@ +#include "ScriptMgr.h" +#include "Unit.h" +#include "SharedDefines.h" +#include "Player.h" +#include "Common.h" +#include "raid.h" +#include "Creature.h" +#include "AzthPlayer.h" +#include "AzthLevelStat.h" +#include "AzthUtils.h" +#include "AzthAchievement.h" +#include "Pet.h" +#include "ScriptedGossip.h" +#include "LFG.h" +#include "LFGMgr.h" +#include "AutoBalance.h" +#include "MapMgr.h" +#include "ReputationMgr.h" +#include "AZTH.h" + +class ReputationMgr; + +typedef std::map RaidList; +RaidList raidList; +std::map timeWalkingLevelsStatsList; +std::map azthAchievementList; + +enum npc_timewalking_enum +{ + TIMEWALKING_GOSSIP_NPC_TEXT_MAIN = 50100, + TIMEWALKING_GOSSIP_NPC_TEXT_BONUS = 50101, + TIMEWALKING_GOSSIP_NPC_TEXT_EXP = 50102, + TIMEWALKING_GOSSIP_NPC_TEXT_PHASE = 50103, + TIMEWALKING_GOSSIP_NPC_TEXT_RAID = 50104, + TIMEWALKING_GOSSIP_NPC_TEXT_ALREADYAPPLIED = 50105, + TIMEWALKING_GOSSIP_NPC_TEXT_ACTIVELFG = 50106, + TIMEWALKING_GOSSIP_NPC_TEXT_INGROUP = 50107 +}; + +class MapMythicInfo : public DataMap::Base +{ +public: + MapMythicInfo() {} + MapMythicInfo(uint32 level) : mythicLevel(level){} + uint32 mythicLevel = 0; +}; + +class TWVasScript: public ABModuleScript +{ +public: + TWVasScript(): ABModuleScript("TWVasScript") { } + + bool OnBeforeModifyAttributes(Creature* creature, uint32 & instancePlayerCount) override + { + // it doesn't mean that we're allowing it when not in dungeon + // but we're letting module to decide via its config. + if (!creature->GetMap()->IsDungeon()) + return true; + + // Flexible content is allowed only for pre-wotlk instances and some specific wotlk + if (!sAzthUtils->canMythicHere(creature)) + return false; + + Map::PlayerList const &playerList = creature->GetMap()->GetPlayers(); + if (!playerList.isEmpty()) + { + for (Map::PlayerList::const_iterator playerIteration = playerList.begin(); playerIteration != playerList.end(); ++playerIteration) + { + if (Player* playerHandle = playerIteration->GetSource()) + { + if (playerHandle->IsGameMaster()) + continue; + + uint32 specialLevel = sAZTH->GetAZTHPlayer(playerHandle)->getPStatsLevel(false); + + MapMythicInfo *myth=creature->GetMap()->CustomData.GetDefault("AZTH_Mythic_Info"); + + if (sAzthUtils->isMythicLevel(specialLevel)) + { + myth->mythicLevel = specialLevel; + return true; + } + else if (specialLevel == TIMEWALKING_SPECIAL_LVL_MIXED && myth->mythicLevel) + { + instancePlayerCount = 100; // workaround to break "Flex modality" with mixed group + return true; + } + } + } + } + + return false; + } + + bool OnBeforeUpdateStats(Creature* creature, uint32 &scaledHealth, uint32 &scaledMana, float &damageMultiplier, uint32 &newBaseArmor) override + { + MapMythicInfo* myth = creature->GetMap()->CustomData.GetDefault("AZTH_Mythic_Info"); + + if (myth->mythicLevel) + { + uint32 mythicLvl = myth->mythicLevel - TIMEWALKING_LVL_VAS_START + 1; + + // mythic 1: 1 normal vas rate + // mythic 13: 3.13 (214%) (for ulduar) + // mythic 16: 4.17 (318%) (for naxx, eye and obsidian) + float rate = std::pow(1.1f, mythicLvl-1); // formula from 7.2.5 patch + + scaledHealth *= rate; + scaledMana *= rate; + newBaseArmor += newBaseArmor * (rate / 10); + damageMultiplier *= rate; + + return true; + } + + return false; // something wrong.... + } +}; + +class loadTimeWalkingRaid : public WorldScript +{ +public: + loadTimeWalkingRaid() : WorldScript("loadTimeWalkingRaid") { } + + void OnStartup() override + { + //Loading timewalking instance + QueryResult timewalking_table = CharacterDatabase.PQuery("SELECT id,name,exp,phase,level,bonus,criteria FROM timewalking ORDER BY exp, phase, level, name"); + if (!timewalking_table) + { + sLog->outString(">> Loaded 0 raids for TimeWalking. DB table `timewalking` is empty.\n"); + LOG_INFO("server.loading", " "); + return; + } + + do + { + Field* timeWalking_Field = timewalking_table->Fetch(); + raidList[timeWalking_Field[0].GetUInt32()] = TwRaid(timeWalking_Field[0].GetUInt32(), timeWalking_Field[1].GetString(), timeWalking_Field[2].GetUInt32(), timeWalking_Field[3].GetUInt32(), timeWalking_Field[4].GetUInt32(), timeWalking_Field[5].GetUInt32(), timeWalking_Field[6].GetUInt32()); + } while (timewalking_table->NextRow()); + + sAzthRaid->SetRaidList(raidList); + + //------------------------------------------------------------------- + //Loading levels + QueryResult timewalkingLevel_table = CharacterDatabase.PQuery("SELECT level,race,class," + "strength_pct,agility_pct,stamina_pct,intellect_pct,spirit_pct," + "dodge_pct, parry_pct, block_pct, crit_pct, armor_pen_pct, health_pct, resistance_pct, power_cost_pct, stat_pct," + "damage_pct,heal_pct FROM timewalking_levels ORDER BY level;"); + if (!timewalkingLevel_table) + { + sLog->outString(">> Loaded 0 levels for TimeWalking. DB table `timewalking_levels` is empty.\n"); + LOG_INFO("server.loading", " "); + return; + } + + do + { + Field* timeWalkingLevel_Field = timewalkingLevel_table->Fetch(); + + std::map _pctMap; + _pctMap[TIMEWALKING_AURA_MOD_STR_PCT] = timeWalkingLevel_Field[3].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_AGI_PCT] = timeWalkingLevel_Field[4].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_STA_PCT] = timeWalkingLevel_Field[5].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_INT_PCT] = timeWalkingLevel_Field[6].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_SPI_PCT] = timeWalkingLevel_Field[7].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_DODGE_PCT] = timeWalkingLevel_Field[8].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_PARRY_PCT] = timeWalkingLevel_Field[9].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_BLOCK_PCT] = timeWalkingLevel_Field[10].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_CRIT_PCT] = timeWalkingLevel_Field[11].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_ARMOR_PENET_PCT] = timeWalkingLevel_Field[12].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_INCREASE_HEALTH_PCT] = timeWalkingLevel_Field[13].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_RESISTANCE_PCT] = timeWalkingLevel_Field[14].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_POWER_COST_SCHOOL_PCT] = timeWalkingLevel_Field[15].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_STAT_PCT] = timeWalkingLevel_Field[16].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_DAMAGESPELL] = timeWalkingLevel_Field[17].GetUInt32(); + _pctMap[TIMEWALKING_AURA_MOD_HEALING] = timeWalkingLevel_Field[18].GetUInt32(); + timeWalkingLevelsStatsList[timeWalkingLevel_Field[0].GetUInt32()*10000+timeWalkingLevel_Field[1].GetUInt32()*100+timeWalkingLevel_Field[2].GetUInt32()] = AzthLevelStat(timeWalkingLevel_Field[0].GetUInt32(), timeWalkingLevel_Field[1].GetUInt32(), timeWalkingLevel_Field[2].GetUInt32(), _pctMap); + } while (timewalkingLevel_table->NextRow()); + + sAzthLevelStatMgr->SetLevelStatList(timeWalkingLevelsStatsList); + + //------------------------------------------------------------------- + //Loading achievement + QueryResult azthAchievement_table = CharacterDatabase.PQuery("SELECT achievement,criteria,Points,category,parentCategory,difficulty,levelMax,levelMin,level,originalPoints,Name,Description,reward,rewardCount,killCredit,specialLevelReq,reqDimension FROM azth_achievements WHERE criteria != 0 ORDER BY achievement;"); + if (!azthAchievement_table) + { + sLog->outString(">> Loaded 0 achievements for TimeWalking. DB table `azth_achievements` is empty.\n"); + LOG_INFO("server.loading", " "); + return; + } + + do + { + Field* azthAchievement_field = azthAchievement_table->Fetch(); + + azthAchievementList[azthAchievement_field[1].GetUInt32()] = AzthAchievement( + // achievement criteria Points category parentCategory difficulty + azthAchievement_field[0].GetUInt32(), azthAchievement_field[1].GetUInt32(), azthAchievement_field[2].GetUInt32(), azthAchievement_field[3].GetUInt32(), azthAchievement_field[4].GetUInt32(), azthAchievement_field[5].GetUInt32(), + // levelMax levelMin level originalPoints Name Description + azthAchievement_field[6].GetUInt32(), azthAchievement_field[7].GetUInt32(), azthAchievement_field[8].GetUInt32(), azthAchievement_field[9].GetUInt32(), azthAchievement_field[10].GetString(), azthAchievement_field[11].GetString(), + //reward rewardCount killcredit specialLevelReq reqDimension + azthAchievement_field[12].GetUInt32(), azthAchievement_field[13].GetUInt32(), azthAchievement_field[14].GetUInt32(), azthAchievement_field[15].GetUInt32(), azthAchievement_field[16].GetUInt32()); + } while (azthAchievement_table->NextRow()); + + sAzthAchievementMgr->achievementList = azthAchievementList; + } +}; + +class TimeWalkingGossip : public CreatureScript +{ +public: + TimeWalkingGossip() : CreatureScript("TimeWalkingGossip") {} + + bool OnGossipHello(Player* player, Creature* creature) override + { + if (player->isUsingLfg()) + { + SendGossipMenuFor(player,TIMEWALKING_GOSSIP_NPC_TEXT_ACTIVELFG, creature->GetGUID()); + return true; + } + + if (player->GetGroup()) + { + SendGossipMenuFor(player,TIMEWALKING_GOSSIP_NPC_TEXT_INGROUP, creature->GetGUID()); + return true; + } + + if (!sAZTH->GetAZTHPlayer(player)->isTimeWalking()) { + if (player->getLevel()>=sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL)) { + //AddGossipItemFor(player,GOSSIP_ICON_TABARD, "Tutte le fasi", GOSSIP_SENDER_MAIN, 5); + AddGossipItemFor(player,GOSSIP_ICON_INTERACT_1, "Livello specifico", GOSSIP_SENDER_MAIN, 6, "Imposta un livello", 0, true); + if (player->IsGameMaster()) { + AddGossipItemFor(player,GOSSIP_ICON_TRAINER, "Scaling automatico (beta)", GOSSIP_SENDER_MAIN, TIMEWALKING_LVL_AUTO+10000); + } + AddGossipItemFor(player,GOSSIP_ICON_TABARD, "TimeWalking (Wotlk)", GOSSIP_SENDER_MAIN, 4); + } + AddGossipItemFor(player,0, "|TInterface/ICONS/INV_Misc_Coin_01:30|tFlex Mythic+ (Beta)", GOSSIP_SENDER_MAIN, 9); // we can't use another icon otherwise will be automatically selected on gossip hello + } else { + AddGossipItemFor(player,0, "Esci dalla modalità TimeWalking", GOSSIP_SENDER_MAIN, 7); + } + + SendGossipMenuFor(player,TIMEWALKING_GOSSIP_NPC_TEXT_MAIN, creature->GetGUID()); + + return true; + } + + bool _is_number(const std::string& s) + { + return !s.empty() && std::find_if(s.begin(), + s.end(), [](char c) { return !isdigit(c); }) == s.end(); + } + + void setTimeWalking(Player* player,uint32 level) + { + sAZTH->GetAZTHPlayer(player)->SetTimeWalkingLevel(level, true, true, false); + player->CastSpell(player, 47292, TRIGGERED_FULL_MASK); // visual + } + + bool OnGossipSelectCode(Player* player, Creature* /*creature*/, uint32 sender, uint32 action, const char* code) override + { + player->PlayerTalkClass->ClearMenus(); + + if (sender != GOSSIP_SENDER_MAIN) + return false; + + + if (action == 6 && _is_number(code)) + { + int level = atoi(code); + // we cannot set manually a level > 80 + // special level must be set by gossip menus + if (level <= 0 || uint32(level) >= sWorld->getIntConfig(CONFIG_MAX_PLAYER_LEVEL)) + { + return false; + } + + setTimeWalking(player, level); + player->PlayerTalkClass->SendCloseGossip(); + } + + return true; + } + + bool OnGossipSelect(Player* player, Creature* creature, uint32 /*sender*/, uint32 action) override + { + player->PlayerTalkClass->ClearMenus(); + if (action == 4) + { + for (std::map::iterator it = raidList.begin(); it != raidList.end(); it++) + { + if (it->second.GetBonus() == 1) + { + AddGossipItemFor(player,GOSSIP_ICON_TABARD, "|cff00ff00|TInterface/ICONS/INV_Misc_Coin_01:30|t|rBonus: " + it->second.GetName()+"|r", GOSSIP_SENDER_MAIN, 10000+it->second.GetLevel()); + } + } + SendGossipMenuFor(player,TIMEWALKING_GOSSIP_NPC_TEXT_BONUS, creature->GetGUID()); + } + + if (action == 5) + { + std::vector expList; + + for (std::map::iterator it = raidList.begin(); it != raidList.end(); it++) + { + std::string exp; + if (it->second.GetExp() == 1) + { + exp = "Classic"; + } + else if (it->second.GetExp() == 2) + { + exp = "The Burning Crusade"; + } + else + { + exp = "Wrath of The Lich King"; + } + + if (std::find(expList.begin(), expList.end(), it->second.GetExp()) == expList.end()) { + expList.push_back(it->second.GetExp()); + AddGossipItemFor(player,GOSSIP_ICON_TABARD, exp, GOSSIP_SENDER_MAIN, it->second.GetExp()); // go to phase menu + } + } + SendGossipMenuFor(player,TIMEWALKING_GOSSIP_NPC_TEXT_EXP, creature->GetGUID()); + } + + if (action == 9) { + for (uint32 i=TIMEWALKING_LVL_VAS_START; i<=TIMEWALKING_LVL_VAS_LVL7; i++) { + AddGossipItemFor(player,GOSSIP_ICON_TABARD, "Flex Mythic+ "+std::to_string(i-TIMEWALKING_LVL_VAS_START+1), GOSSIP_SENDER_MAIN, i+10000); + } + + AddGossipItemFor(player,GOSSIP_ICON_TABARD, "Flex Mythic+ 13 Epic", GOSSIP_SENDER_MAIN, 10413); + AddGossipItemFor(player,GOSSIP_ICON_TABARD, "Flex Mythic+ 16 Heroic", GOSSIP_SENDER_MAIN, 10416); + + SendGossipMenuFor(player,TIMEWALKING_GOSSIP_NPC_TEXT_MAIN, creature->GetGUID()); + } + + if (action <= 3) //generate phase menu + { + std::vector phaseList; + + for (std::map::iterator it = raidList.begin(); it != raidList.end(); it++) + { + if (it->second.GetExp() == action) + { + if (std::find(phaseList.begin(), phaseList.end(), it->second.GetPhase()) == phaseList.end()) { + phaseList.push_back(it->second.GetPhase()); + std::stringstream s; + s << "Fase " << it->second.GetPhase(); + AddGossipItemFor(player,GOSSIP_ICON_TABARD, s.str().c_str(), GOSSIP_SENDER_MAIN, 1000 + it->second.GetPhase()); + } + } + } + SendGossipMenuFor(player,TIMEWALKING_GOSSIP_NPC_TEXT_PHASE, creature->GetGUID()); + } + else if(action >= 1000 && action < 10000) //generate raid menu + { + for (std::map::iterator it = raidList.begin(); it != raidList.end(); it++) + { + if (it->second.GetPhase() == action - 1000) + { + AddGossipItemFor(player,0, it->second.GetName(), GOSSIP_SENDER_MAIN, it->second.GetLevel()+10000); + } + } + SendGossipMenuFor(player,TIMEWALKING_GOSSIP_NPC_TEXT_RAID, creature->GetGUID()); + } + else if (action >= 10000) //apply level + { + uint32 level = action - 10000; + + if (sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel() == 0) + { + setTimeWalking(player, level); + player->PlayerTalkClass->SendCloseGossip(); + } + else + { + SendGossipMenuFor(player,TIMEWALKING_GOSSIP_NPC_TEXT_ALREADYAPPLIED, creature->GetGUID()); + } + } + + else if (action == 7) + { + setTimeWalking(player, 0 ); + player->PlayerTalkClass->SendCloseGossip(); + } + + return true; + } +}; + +class timeWalkingPlayer : public PlayerScript +{ +public: + timeWalkingPlayer() : PlayerScript("timeWalkingPlayer") {} + + bool _autoscaling(Player *player, uint32 newZone = 0, uint32 newArea = 0) + { + sAZTH->GetAZTHPlayer(player)->autoScalingPending=(player->IsInCombat() || !player->IsAlive() || !player->IsInWorld()) ? time(NULL) + 2 /*2 seconds after */: 0; + + if (sAZTH->GetAZTHPlayer(player)->autoScalingPending > 0) + return false; + + uint32 posLvl = 0; + + if (newArea && newZone) + posLvl = sAzthUtils->getPositionLevel(false, player->GetMap(), newZone, newArea); + else + { + WorldLocation pos = WorldLocation(player->GetMapId(), player->GetPositionX(), player->GetPositionY(), player->GetPositionZ(), player->GetOrientation()); + posLvl = sAzthUtils->getPositionLevel(false, player->GetMap(), pos); + } + + if (!posLvl) + return false; + + if (player->getLevel() == posLvl) + return false; + + sAZTH->GetAZTHPlayer(player)->SetTimeWalkingLevel(TIMEWALKING_LVL_AUTO, true, true, false); + + return true; + } + + void OnUpdateArea(Player* player, uint32 oldArea, uint32 newArea) override + { + if (!player) + return; + + if (oldArea != newArea && sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel() == TIMEWALKING_LVL_AUTO) + { + AreaTableEntry const* area = sAreaTableStore.LookupEntry(newArea); + if (!area) + return; + + _autoscaling(player, area->zone, newArea); + } + + sAzthUtils->updateTwLevel(player, player->GetGroup()); // needed for player stats + } + + void OnBeforeUpdate(Player *player, uint32 /*p_time*/) override + { + if (!player) + return; + + if (sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel() != TIMEWALKING_LVL_AUTO) + return; + + if (sAZTH->GetAZTHPlayer(player)->autoScalingPending > time(NULL)) + return; + + _autoscaling(player); + } + + void OnCriteriaProgress(Player *player, AchievementCriteriaEntry const* criteria) override + { + if (!player || !player->IsInWorld()) + return; + + if (sAzthAchievementMgr->achievementList.find(criteria->ID) == sAzthAchievementMgr->achievementList.end()) + return; + + AzthAchievement achi = sAzthAchievementMgr->achievementList[criteria->ID]; + + uint32 count = achi.GetRewardCount(); + uint32 reward = achi.GetReward(); + uint32 killCredit = achi.GetKillCredit(); + + if (reward == AZTH_MARK_OF_AZEROTH && player->inRandomLfgDungeon()) + { + /* initialize random seed: */ + srand (time(NULL)); + /* generate secret number between 3 and 10: */ + uint8 moaBonus = 1 + rand() % static_cast(2 - 1 + 1); + + if (player->GetGroup()) + { + std::list memberSlots = player->GetGroup()->GetMemberSlots(); + for (std::list::iterator membersIterator = memberSlots.begin(); membersIterator != memberSlots.end(); membersIterator++) + { + if ((*membersIterator).guid == player->GetGUID()) + { + uint8 role = (*membersIterator).roles; + + if (role & lfg::PLAYER_ROLE_TANK || role & lfg::PLAYER_ROLE_HEALER) + count += moaBonus; + + break; + } + } + } + } + + if (!count && !killCredit) + return; + + /* + * CHECK REQUIREMENTS + */ + if (achi.GetReqDimension() > 0 && achi.GetReqDimension() != sAZTH->GetAZTHPlayer(player)->getCurrentDimensionByAura()) + return; + + uint32 level = sAZTH->GetAZTHPlayer(player)->getPStatsLevel(false); + + // skip rewards if you don't have the required special level + if (achi.GetSpecialLevelReq() > 0 && !sAzthUtils->isMythicCompLvl(achi.GetSpecialLevelReq(), level) && level != achi.GetSpecialLevelReq()) + return; + + // if levelMin and Level max has been set, then the level must be in this range + if (achi.GetLevelMin() && achi.GetLevelMax() && (level < achi.GetLevelMin() || level > achi.GetLevelMax())) + return; + /* + * END + */ + + // to achieve it you must be in range + if (count > 0) { + ItemTemplate const* _proto = sObjectMgr->GetItemTemplate(reward); + if (!_proto) + return; + + if (_proto->IsCurrencyToken()) + { + if (player->GetMap()->IsDungeon() || player->GetMap()->IsRaid()) + { + // bonus for who complete that achievement with a recommended level + if (level <= achi.GetLevel()) + count *= 2; + } + + player->AddItem(reward, count); + } + else + { + uint32 mailItems=0; + + CharacterDatabaseTransaction trans = CharacterDatabase.BeginTransaction(); + MailDraft* draft = new MailDraft(_proto->Name1, ""); + + for (uint32 i = 0; i < count; i++) + { + Item *item = NewItemOrBag(_proto); + + if (!item->Create(sObjectMgr->GetGenerator().Generate(), _proto->ItemId, player)) { + delete item; + return; + } + + ItemPosCountVec off_dest; + if (mailItems == 0 && player->CanStoreItem(NULL_BAG, NULL_SLOT, off_dest, item, false) == EQUIP_ERR_OK) + { + player->StoreItem(off_dest, item, true); + } else { + draft->AddItem(item); + mailItems++; + + if ((i==count-1) || (mailItems > 0 && mailItems % 10 == 0)) { + draft->SendMailTo(trans, player, MailSender(player, MAIL_STATIONERY_GM), MAIL_CHECK_MASK_COPIED); + CharacterDatabase.CommitTransaction(trans); + + if (iName1, ""); + } + } + } + } + + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_TW_NEW_ITEM_OBTAINED, player, _proto->ItemId, _proto->Name1.c_str(), count)); + if (mailItems > 0) + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_BAG_FULL_SENT_TO_MAIL, player)); + } + } + + if (killCredit) + sAZTH->GetAZTHPlayer(player)->ForceKilledMonsterCredit(killCredit, 0); // send credit + + } + + bool OnBeforeQuestComplete(Player *player, uint32 quest_id) override + { + QuestStatusMap::iterator qsitr = player->getQuestStatusMap().find(quest_id); + if (qsitr == player->getQuestStatusMap().end()) // should always be true in this moment + return true; + + //if (player->GetGroup()) + // groupId=player->GetGroup()->GetLowGUID(); + + Map* map = player->FindMap(); + if (!map->IsDungeon()) + return true; + + InstanceSave* is = sInstanceSaveMgr->PlayerGetInstanceSave(player->GetGUID(), map->GetId(), player->GetDifficulty(map->IsRaid())); + if (!is) + return true; + + if (sAZTH->GetAZTHInstanceSave(is)->startTime == 0) + return true; + + uint32 guid,quest,sLevel,nLevel, instanceStart=0, questEnd, groupId; + uint8 gSize; + uint64 id=0; + + guid = player->GetGUID().GetCounter(); + quest = quest_id; + sLevel = sAZTH->GetAZTHPlayer(player)->getPStatsLevel(false); + nLevel = sAZTH->GetAZTHPlayer(player)->getPStatsLevel(true); + gSize = sAZTH->GetAZTHPlayer(player)->getGroupSize(); + + uint8 difficulty = map->GetDifficulty(); + uint32 dungeon = map->GetId(); + + /*const Quest *questTmpl = sObjectMgr->GetQuestTemplate(quest_id); + if (questTmpl && sAzthUtils->isMythicLevel(sLevel) && sLevel > TIMEWALKING_LVL_VAS_LVL1) { + for (int i=0;i<4;i++) { + if (questTmpl->RewardItemId[i] == AZTH_MARK_OF_AZEROTH) { + uint32 bonus=sLevel-TIMEWALKING_LVL_VAS_LVL1; + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_MYTHIC_MOA_BONUS, player,sLevel-TIMEWALKING_LVL_VAS_LVL1+1, bonus)); + player->AddItem(AZTH_MARK_OF_AZEROTH, bonus); + } + } + + for (int i=0;i<5;i++) { + if (questTmpl->RewardFactionId[i] == AZTH_AS_REP && questTmpl->RewardFactionValueIdOverride[i] > 0) { + uint32 bonus = (questTmpl->RewardFactionValueIdOverride[i] * std::pow(1.1, sLevel-TIMEWALKING_LVL_VAS_LVL1-1)) / 100; // proportional to mythic + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_MYTHIC_ASREP_BONUS, player, sLevel-TIMEWALKING_LVL_VAS_LVL1+1, bonus)); + player->GetReputationMgr().ModifyReputation(sFactionStore.LookupEntry(AZTH_AS_REP), bonus); + } + } + }*/ + + groupId = is->GetInstanceId(); + + instanceStart = sAZTH->GetAZTHInstanceSave(is)->startTime; + + questEnd = static_cast(time(NULL)); + + // a small trick to create unique id here + id = ObjectGuid::Create(instanceStart, groupId).GetCounter(); + + CharacterDatabase.PExecute("INSERT INTO azth_quest_log (guid, groupId, quest, dungeon, difficulty, sLevel, nLevel, gSize, instanceStartTime, questEndTime) VALUES(%u,%u,%u,%u,%u,%u,%u,%u,%u,%u);", + guid, id, quest, dungeon, difficulty, sLevel,nLevel,gSize,instanceStart,questEnd); + + return true; + } + + void OnLoadFromDB(Player *player) override + { + QueryResult timewalkingCharactersActive_table = CharacterDatabase.PQuery("SELECT id,level FROM azth_timewalking_characters_active WHERE id = %d", player->GetGUID().GetCounter()); + if (timewalkingCharactersActive_table) //if is in timewalking mode apply debuff + { + Field* timewalkingCharactersActive_field = timewalkingCharactersActive_table->Fetch(); + + sAZTH->GetAZTHPlayer(player)->SetTimeWalkingLevel(timewalkingCharactersActive_field[1].GetUInt32(), false, false , true); + } + } + + void OnLogin(Player* player) override + { + sAzthUtils->updateTwLevel(player, player->GetGroup()); // to fix level on instance that cannot be calculated OnLoadFromDB (too early) + sAZTH->GetAZTHPlayer(player)->prepareTwSpells(player->getLevel()); + sAzthUtils->setTwDefense(player, sAZTH->GetAZTHPlayer(player)->isTimeWalking(true)); + + int32 rep=player->GetReputationMgr().GetReputation(AZTH_AS_REP); + // reduce only if positive reputation + if (rep > 0) + { + QueryResult last_activity_rep = CharacterDatabase.PQuery("SELECT c.logout_time,MAX(questEndTime),MAX(instanceEndTime),MAX(instanceStartTime) FROM azth_quest_log AS q LEFT JOIN characters AS c ON q.guid=c.guid WHERE q.guid = %d;", player->GetGUID().GetCounter()); + if (last_activity_rep) + { + Field* last_activity_fields = last_activity_rep->Fetch(); + + uint32 logoutTime=last_activity_fields[0].GetUInt32(); + uint32 lastQuestEnd=last_activity_fields[1].GetUInt32(); + uint32 lastInstanceEnd=last_activity_fields[2].GetUInt32(); + uint32 lastInstanceStart=last_activity_fields[3].GetUInt32(); + + uint32 lastActivity = lastQuestEnd ? lastQuestEnd : (lastInstanceEnd ? lastInstanceEnd : lastInstanceStart); + + if (lastActivity) { + uint32 now = static_cast(time(NULL)); + uint32 diffActivity = now > lastActivity ? now - lastActivity : 0; + uint32 diffLogout = now > logoutTime ? now - logoutTime : 0; + uint32 daysActivity=diffActivity/60/60/24; + uint32 daysLogout=diffLogout/60/60/24; + if (daysActivity>5 && daysLogout > 1) { + // Gompertz formula for rep reduction growt + uint32 repRed=43000*std::exp(-4*std::exp(-float(daysLogout)/100))-810; + repRed = repRed > (uint32)rep ? rep : repRed; // never go below 0 + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_TW_REP_REMOVED_LOGOUT, player, daysActivity )); + player->GetReputationMgr().ModifyReputation(sFactionStore.LookupEntry(AZTH_AS_REP), -repRed); + } + } + } + } + } + + void OnLevelChanged(Player* player, uint8 /*oldlevel*/) override + { + sAzthUtils->updateTwLevel(player, player->GetGroup()); + } + + void OnBeforeInitTalentForLevel(Player* player, uint8& /*level*/, uint32& talentPointsForLevel) override + { + if (!sAzthUtils->isMythicLevel(sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel()) // redundant (?) + && (sAZTH->GetAZTHPlayer(player)->isTimeWalking(true) || sAZTH->GetAZTHPlayer(player)->GetTimeWalkingLevel() == TIMEWALKING_LVL_AUTO) ) + { + talentPointsForLevel = 71; // to avoid talent points reset after relog in timewalking + } + } +}; + +class achievement_timewalking_check : public AchievementCriteriaScript +{ +public: + achievement_timewalking_check(char const* name) : AchievementCriteriaScript(name) { } + + //Should be deprecated since canCompleteCriteria used in official AchievementMgr.cpp check is enough + //however you can attach this script on achievement_criteria_data if needed + bool OnCheck(Player* player, Unit* /*target*/, uint32 criteria_id) override + { + AchievementCriteriaEntry const* criteria = sAchievementCriteriaStore.LookupEntry(criteria_id); + return sAZTH->GetAZTHPlayer(player)->canCompleteCriteria(criteria); + } +}; + +class global_timewalking : public GlobalScript +{ +public: + global_timewalking() : GlobalScript("global_timewalking_script") { } + + void OnAfterUpdateEncounterState(Map* map, EncounterCreditType /*type*/, uint32 /*creditEntry*/, Unit* /*source*/, Difficulty difficulty_fixed, DungeonEncounterList const* encounters, uint32 dungeonCompleted, bool updated) override + { + if (!map->IsDungeon()) + return; + + if (!encounters) + return; + + if (!updated) + return; + + std::vector list; + + for (auto const& itr : map->GetPlayers()) + if (!itr.GetSource()->IsGameMaster()) + list.push_back(itr.GetSource()); + + if (list.size() == 0) + return; + + uint32 guid,sLevel,nLevel, instanceStart=0, now, groupId; + uint8 gSize; + uint64 id=0; + uint8 difficulty = map->GetDifficulty(); + uint32 dungeon = map->GetId(); + + for (size_t i = 0; i < list.size(); i++) + { + Player* player = list[i]; + if (!player) + return; + + InstanceSave* is = sInstanceSaveMgr->PlayerGetInstanceSave(player->GetGUID(), map->GetId(), player->GetDifficulty(map->IsRaid())); + if (!is) + return; + + if (sAZTH->GetAZTHInstanceSave(is)->startTime == 0) + return; + + uint8 count = 0; + uint8 total = 0; + + for (DungeonEncounterList::const_iterator itr = encounters->begin(); itr != encounters->end(); ++itr) + { + DungeonEncounter const* encounter = *itr; + + if (encounter->dbcEntry->mapId == dungeon && ((1 << encounter->dbcEntry->encounterIndex) & is->GetCompletedEncounterMask()) > 0) + count++; + + total++; + } + + if (!count) + return; + + guid = player->GetGUID().GetCounter(); + sLevel = sAZTH->GetAZTHPlayer(player)->getPStatsLevel(false); + nLevel = sAZTH->GetAZTHPlayer(player)->getPStatsLevel(true); + gSize = sAZTH->GetAZTHPlayer(player)->getGroupSize(); + + groupId = is->GetInstanceId(); + instanceStart = sAZTH->GetAZTHInstanceSave(is)->startTime; + now = static_cast(time(nullptr)); + + std::string lvlTxt = sAzthUtils->getLevelInfo(sLevel); + + uint32 posLevel=sAzthUtils->getPositionLevel(true, map, player->GetZoneId(), player->GetAreaId()); + if ((sAzthUtils->canMythicHere(player) && sAzthUtils->isMythicLevel(sLevel)) || // MYTHIC CASE + (nLevel<=70 && sLevel == TIMEWALKING_LVL_AUTO && nLevel <= posLevel) || // TW Auto CASE + (sLevel<=70 && sLevel <= posLevel) || // TIMEWALKING NORMAL LEVELS (AVOID ENDGAME CONTENTS) + (sLevel > 80 && sLevel == posLevel)) // TIMEWALKING SPECIAL LEVELS + { + uint32 moaBonus=1 + uint8(difficulty_fixed); + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_TW_MOA_BONUS, player, lvlTxt.c_str(), moaBonus)); + player->AddItem(AZTH_MARK_OF_AZEROTH, moaBonus); + + float mythBonus = sAzthUtils->isMythicLevel(sLevel) ? std::pow(1.1, sLevel-TIMEWALKING_LVL_VAS_LVL1+1) : 1; + // Dungeon Normal: 1 boss every 10 minutes (this value scales up with raid and difficulty) + // if time is lower it will gain more points + float timeBonus = count / (float(now-instanceStart)/60/10); + uint32 repBonus = 3 * mythBonus * timeBonus * ((map->IsRaid() ? (difficulty+1) * 3 : difficulty+1)); + + if (repBonus) + { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_TW_ASREP_BONUS, player, lvlTxt.c_str(), repBonus)); + player->GetReputationMgr().ModifyReputation(sFactionStore.LookupEntry(AZTH_AS_REP), repBonus); + } + + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_TW_BOSS_KILLED, player, count, total, uint32(round(float(now-instanceStart)/60)))); + + if (count>=total) + { + player->GetSession()->SendNotification("%s", sAzthLang->get(AZTH_LANG_TW_INSTANCE_COMPLETED, player)); + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_TW_INSTANCE_COMPLETED, player)); + } + + if (dungeonCompleted) + { + player->GetSession()->SendNotification("%s", sAzthLang->get(AZTH_LANG_TW_LAST_BOSS_KILLED, player)); + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->get(AZTH_LANG_TW_LAST_BOSS_KILLED, player)); + } + + } + else if (posLevel <= 70 && nLevel > posLevel + 10) + { + ChatHandler(player->GetSession()).SendSysMessage(sAzthLang->getf(AZTH_LANG_TW_REP_REMOVED_KILL, player, nLevel-posLevel)); + player->GetReputationMgr().ModifyReputation(sFactionStore.LookupEntry(AZTH_AS_REP), -(nLevel-posLevel)); + } + + if (count >= total) + { + // a small trick to create unique id here + id = ObjectGuid::Create(instanceStart, groupId).GetCounter(); + + CharacterDatabase.PExecute("INSERT INTO azth_quest_log (guid, groupId, quest, dungeon, difficulty, sLevel, nLevel, gSize, instanceStartTime, instanceEndTime)" + "VALUES (%u,%u,%u,%u,%u,%u,%u,%u,%u,%u)", guid, id, 0, dungeon, difficulty, sLevel,nLevel,gSize,instanceStart,now); + } + } + } + + void OnInitializeLockedDungeons(Player* player, uint8& /*level*/, uint32& lockData, lfg::LFGDungeonData const* dungeon) override + { + switch(lockData) + { + case lfg::LFG_LOCKSTATUS_MISSING_ACHIEVEMENT: + case lfg::LFG_LOCKSTATUS_QUEST_NOT_COMPLETED: + case lfg::LFG_LOCKSTATUS_MISSING_ITEM: + Player* leader = nullptr; + + ObjectGuid leaderGuid = player->GetGroup() ? player->GetGroup()->GetLeaderGUID() : player->GetGUID(); + + if (leaderGuid != player->GetGUID()) + leader = HashMapHolder::Find(leaderGuid); + + if (!leader || !leader->IsInWorld()) + leader = player; + + if (sWorld && leader->IsInWorld() && sAZTH->GetAZTHPlayer(leader) && sAZTH->GetAZTHPlayer(leader)->isTimeWalking() && dungeon && dungeon->minlevel <= 70) + lockData = 0; + break; + } + } +}; + +void AddSC_TimeWalking() +{ + new loadTimeWalkingRaid(); + new global_timewalking(); + new TimeWalkingGossip(); + new timeWalkingPlayer(); + new achievement_timewalking_check("achievement_timewalking_check"); + new TWVasScript(); +} diff --git a/src/Timewalking/raid.cpp b/src/Timewalking/raid.cpp new file mode 100644 index 0000000..709b3d4 --- /dev/null +++ b/src/Timewalking/raid.cpp @@ -0,0 +1,114 @@ +#include "raid.h" + +TwRaid* TwRaid::instance() +{ + static TwRaid instance; + return &instance; +} + +TwRaid::TwRaid() +{ + id = uint32(0); + name = std::string(""); + exp = uint32(0); + phase = uint32(0); + level = uint32(0); + bonus = uint32(0); + criteria = uint32(0); +} + +TwRaid::TwRaid(uint32 ItsId, std::string ItsName, uint32 ItsExp, uint32 ItsPhase, uint32 ItsLevel, uint32 ItsBonus, uint32 ItsCriteria) +{ + id = ItsId; + name = ItsName; + exp = ItsExp; + phase = ItsPhase; + level = ItsLevel; + bonus = ItsBonus; + criteria = ItsCriteria; +} + +std::map TwRaid::GetRaidList() const +{ + return raidList; +} + +void TwRaid::SetRaidList(std::map raidList) +{ + this->raidList = raidList; +} + +uint32 TwRaid::GetId() const +{ + return id; +} + +void TwRaid::SetId(uint32 ItsId) +{ + id = ItsId; +} + +std::string TwRaid::GetName() const +{ + return name; +} + +void TwRaid::SetName(std::string ItsName) +{ + name = ItsName; +} + +uint32 TwRaid::GetExp() const +{ + return exp; +} + +void TwRaid::SetExp(uint32 ItsExp) +{ + exp = ItsExp; +} + +uint32 TwRaid::GetPhase() const +{ + return phase; +} + +void TwRaid::SetPhase(uint32 ItsPhase) +{ + phase = ItsPhase; +} + +uint32 TwRaid::GetLevel() const +{ + return level; +} + +void TwRaid::SetLevel(uint32 ItsLevel) +{ + level = ItsLevel; +} + +uint32 TwRaid::GetBonus() const +{ + return bonus; +} + +uint32 TwRaid::hasBonus() const +{ + return bonus == 1; +} + +void TwRaid::SetBonus(uint32 ItsBonus) +{ + bonus = ItsBonus; +} + +uint32 TwRaid::GetCriteria() const +{ + return criteria; +} + +void TwRaid::SetCriteria(uint32 ItsCriteria) +{ + criteria = ItsCriteria; +} diff --git a/src/Timewalking/raid.h b/src/Timewalking/raid.h new file mode 100644 index 0000000..cf27183 --- /dev/null +++ b/src/Timewalking/raid.h @@ -0,0 +1,52 @@ +#ifndef AZTH_RAID_H +#define AZTH_RAID_H + +#include "Common.h" +#include "Define.h" +#include "Config.h" +#include + +class TwRaid +{ +public: + static TwRaid* instance(); + + //GETTERS + uint32 GetId() const; + std::string GetName() const; + uint32 GetExp() const; + uint32 GetPhase() const; + uint32 GetLevel() const; + uint32 GetBonus() const; + uint32 hasBonus() const; + uint32 GetCriteria() const; + + //SETTERS + void SetId(uint32 id); + void SetName(std::string name); + void SetExp(uint32 exp); + void SetPhase(uint32 phase); + void SetLevel(uint32 level); + void SetBonus(uint32 bonus); + void SetCriteria(uint32 criteria); + + TwRaid(); + TwRaid(uint32 id, std::string name, uint32 exp, uint32 phase, uint32 level, uint32 bonus, uint32 criteria); + + std::map GetRaidList() const; + void SetRaidList(std::map raidList); + +private: + uint32 id; + std::string name; + uint32 exp; + uint32 phase; + uint32 level; + uint32 bonus; + uint32 criteria; + std::map raidList; +}; + +#define sAzthRaid TwRaid::instance() + +#endif diff --git a/src/Tournament/RatingBonus.cpp b/src/Tournament/RatingBonus.cpp new file mode 100644 index 0000000..e4371c1 --- /dev/null +++ b/src/Tournament/RatingBonus.cpp @@ -0,0 +1,106 @@ +/** + This plugin can be used for common player customizations + */ + +#include "ScriptMgr.h" +#include "RatingBonus.h" +#include "Battleground.h" +#include "AzthLanguage.h" +#include "AzthLanguageStrings.h" + +class RatingBonus : public FormulaScript{ +public: + + RatingBonus() : FormulaScript("RatingBonus") { } + + void OnAfterArenaRatingCalculation(Battleground *const bg, int32 &winnerMatchmakerChange, int32 & /*loserMatchmakerChange*/, int32 &winnerChange, int32 & /*loserChange*/) override + { + std::vector & currBonuses = sBonusRating->getRatingBonuses(); + + // no bonuses right now + if (currBonuses.size() == 0) + return; + + for (std::size_t i = 0; i < currBonuses.size(); i++) + { + if (currBonuses[i].type == bg->GetArenaType()) + { + winnerMatchmakerChange = winnerMatchmakerChange * currBonuses[i].multiplier; + winnerChange = winnerChange * currBonuses[i].multiplier; + } + } + } + + void OnBeforeUpdatingPersonalRating(int32 &mod, uint32 type) override + { + std::vector & currBonuses = sBonusRating->getRatingBonuses(); + + // no bonuses right now + if (currBonuses.size() == 0) + return; + + for (std::size_t i = 0; i < currBonuses.size(); i++) + { + if (currBonuses[i].type == type) + { + mod = (int32)ceil(mod * currBonuses[i].multiplier); + } + } + } + +}; + +BonusRating* BonusRating::instance() +{ + static BonusRating instance; + return &instance; +} + +void BonusRating::addBonus(uint32 bracket, float multiplier) +{ + // remove an existing same-type bonus if any + removeBonus(bracket); + + Bonus bonus = {}; + bonus.type = bracket; + bonus.multiplier = multiplier; + //sLog->outString("Bonus added: bracket: %d mult: %.2f", bracket, multiplier); + bonuses.push_back(bonus); +} + +void BonusRating::removeBonus(uint32 bracket) +{ + for (std::size_t i = 0; i < bonuses.size(); i++) + { + if (bonuses[i].type == bracket) + { + //sLog->outString("Bonus removed: %d", bracket); + bonuses.erase(bonuses.begin() + i); + } + } +} + +void BonusRating::printBonusesToPlayer(ChatHandler * handler, uint32 bracket) +{ + for (std::size_t i = 0; i < bonuses.size(); i++) + { + if (bonuses[i].type == bracket || bracket == 0) + { + handler->PSendSysMessage("%s", sAzthLang->getf(AZTH_LANG_BR_ACTIVE_BONUS , handler->GetSession()->GetPlayer(), brackets[bonuses[i].type - 1], bonuses[i].multiplier)); + } + } + if (bonuses.size() == 0) + { + handler->PSendSysMessage("%s", sAzthLang->get(AZTH_LANG_BR_NO_BONUS, handler->GetSession()->GetPlayer())); + } +} + +std::vector & BonusRating::getRatingBonuses() +{ + return bonuses; +} + +void AddAzTournamentScripts() { + new RatingBonus(); +} + diff --git a/src/Tournament/RatingBonus.h b/src/Tournament/RatingBonus.h new file mode 100644 index 0000000..d2f974c --- /dev/null +++ b/src/Tournament/RatingBonus.h @@ -0,0 +1,32 @@ +#ifndef ARENABONUS_H +#define ARENABONUS_H + +#include "Define.h" +#include "Common.h" +#include "Chat.h" + +struct Bonus +{ + uint32 type; + float multiplier; +}; + +class BonusRating +{ + public: + static BonusRating* instance(); + + std::vector & getRatingBonuses(); + void addBonus(uint32 bracket, float multiplier); + void removeBonus(uint32 bracket); + void printBonusesToPlayer(ChatHandler * handler, uint32 bracket); + int AZTH_RATING_BONUS_SECURITY = 2; + const char* brackets[5] = { "1v1: ", "2v2: ", "3v3: ", "3v3 solo: ", "5v5: " }; + + private: + std::vector bonuses; +}; + +#define sBonusRating BonusRating::instance() + +#endif diff --git a/src/XpRates/AzthRateScript.cpp b/src/XpRates/AzthRateScript.cpp new file mode 100644 index 0000000..ef55153 --- /dev/null +++ b/src/XpRates/AzthRateScript.cpp @@ -0,0 +1,41 @@ +#include "ScriptMgr.h" +#include "Chat.h" +#include "Language.h" +#include "CustomRates.h" +#include "Player.h" +#include "AZTH.h" + +class AzthXPRatePlayerScripts : public PlayerScript +{ +public: + AzthXPRatePlayerScripts() : PlayerScript("AzthXPRatePlayerScripts") { } + + void OnDelete(ObjectGuid guid, uint32 /*AccountID*/) override + { + CustomRates::DeleteRateFromDB(guid); + } + + void OnLogin(Player* player) override + { + float rate = CustomRates::GetXpRateFromDB(player); + + // player has custom xp rate set. Load it from DB. Otherwise use default set in AzthPlayer::AzthPlayer + if (rate != -1) + { + sAZTH->GetAZTHPlayer(player)->SetPlayerQuestRate(rate); + + if (sAZTH->IsCustomXPShowOnLogin()) + { + if (!rate) + ChatHandler(player->GetSession()).SendSysMessage("|CFF7BBEF7[Custom Rates]|r: Your quest XP rate was set to 0. You won't gain any XP from quest completation."); + else + ChatHandler(player->GetSession()).PSendSysMessage("|CFF7BBEF7[Custom Rates]|r: Your quest XP rate was set to %.2f.", rate); + } + } + } +}; + +void AddSC_Custom_Rates() +{ + new AzthXPRatePlayerScripts(); +} diff --git a/src/XpRates/CustomRates.cpp b/src/XpRates/CustomRates.cpp new file mode 100644 index 0000000..eee6678 --- /dev/null +++ b/src/XpRates/CustomRates.cpp @@ -0,0 +1,50 @@ +#include "ScriptMgr.h" +#include "Chat.h" +#include "Language.h" +#include "CustomRates.h" +#include "Player.h" + + // [TODO] fix and re-enable +float CustomRates::GetRateFromDB(const Player *player) { + QueryResult result = CharacterDatabase.PQuery("SELECT xp_rate FROM character_xp_rate WHERE guid = %d", player->GetGUID().GetCounter()); + + if (result) { + Field *fields = result->Fetch(); + return fields[0].GetFloat(); + } + + return -1; +} + +void CustomRates::SaveRateToDB(const Player *player, float rate, bool update) +{ + if (update) + { + CharacterDatabase.PExecute("UPDATE character_xp_rate SET xp_rate = %f WHERE guid = %d", rate, player->GetGUID().GetCounter()); + } + else + { + CharacterDatabase.PExecute("INSERT INTO character_xp_rate (guid, xp_rate) VALUES (%d, %f)", player->GetGUID().GetCounter(), rate); + } +} + +void CustomRates::DeleteRateFromDB(ObjectGuid guid) +{ + CharacterDatabase.PExecute("DELETE FROM character_xp_rate WHERE guid = %d", guid.GetCounter()); +} + +float CustomRates::GetXpRateFromDB(const Player *player) +{ + return GetRateFromDB(player); +} + +void CustomRates::SaveXpRateToDB(const Player *player, float rate) +{ + float rateFromDB = CustomRates::GetXpRateFromDB(player); + bool update = true; + + if (rateFromDB == -1) + update = false; + + SaveRateToDB(player, rate, update); +} diff --git a/src/XpRates/CustomRates.h b/src/XpRates/CustomRates.h new file mode 100644 index 0000000..5566334 --- /dev/null +++ b/src/XpRates/CustomRates.h @@ -0,0 +1,24 @@ +#ifndef AZTHCUSTOMRATES_H +#define AZTHCUSTOMRATES_H + +#include "ScriptMgr.h" +#include "Chat.h" +#include "Language.h" + +// [TODO] fix and re-enable +class CustomRates { +private: + static float GetRateFromDB(const Player *player); + + static void SaveRateToDB(const Player *player, float rate, bool update); + +public: + + static void DeleteRateFromDB(ObjectGuid guid); + + static float GetXpRateFromDB(const Player *player); + + static void SaveXpRateToDB(const Player *player, float rate); +}; + +#endif diff --git a/src/XpRates/PlayerXpRates.cpp b/src/XpRates/PlayerXpRates.cpp new file mode 100644 index 0000000..41d448c --- /dev/null +++ b/src/XpRates/PlayerXpRates.cpp @@ -0,0 +1,38 @@ +#include "AzthPlayer.h" +#include "Chat.h" +#include "Player.h" +#include "AZTH.h" + +void AzthPlayer::SetPlayerQuestRate(float rate) { + playerQuestRate = rate; +} + +float AzthPlayer::GetPlayerQuestRate() { + return playerQuestRate; +} + +bool AzthPlayer::AzthSelfChangeXp(float rate) { + + //if (!player || !player->GetSession()) + // return false; + + ChatHandler* ch = new ChatHandler(player->GetSession()); + + float maxRate = sAZTH->GetCustomXPMax(); + if (rate < 0 || rate > maxRate) + { + ch->PSendSysMessage("|CFF7BBEF7[Custom Rates]|r: Invalid rate specified, must be in interval [0, %.2f].", maxRate); + return false; + } + + CustomRates::SaveXpRateToDB(player, rate); + + sAZTH->GetAZTHPlayer(player)->SetPlayerQuestRate(rate); + + if (sAZTH->GetAZTHPlayer(player)->GetPlayerQuestRate() == 0.0f) + ch->PSendSysMessage("|CFF7BBEF7[Custom Rates]|r: Quest & Dungeons XP Rate set to 0. You won't gain any experience from now on."); + else + ch->PSendSysMessage("|CFF7BBEF7[Custom Rates]|r: Quest & Dungeons XP Rate set to %.2f.", sAZTH->GetAZTHPlayer(player)->GetPlayerQuestRate()); + + return true; +}; diff --git a/src/azeroth_shard_loader.cpp b/src/azeroth_shard_loader.cpp new file mode 100644 index 0000000..d42a57c --- /dev/null +++ b/src/azeroth_shard_loader.cpp @@ -0,0 +1,56 @@ +/* + * This file is part of the AzerothCore Project. See AUTHORS file for Copyright information + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Affero General Public License as published by the + * Free Software Foundation; either version 3 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see . + */ + +// From SC +void AddSC_Solo_3v3_Arena(); +void AddSC_azth_misc_plg(); +void AddSC_azth_player_plg(); +void AddSC_AzthWorldScript(); +void AddSC_AzthWorldScript(); +void AddSC_azth_commandscript(); +void AddSC_AZTH(); +void AddSC_challengemode(); +void AddSC_guildhouse_npcs(); +void AddSC_hearthstone(); +void AddSC_playerstats(); +void AddSC_BGItemLevel(); +void AddSC_Professions_NPC(); +void AddSC_PvPMode(); +void AddSC_azth_smart_stone(); +void AddSC_TimeWalking(); +void AddSC_Custom_Rates(); + +// Add all +void Addmod_azerothshardScripts() +{ + AddSC_Solo_3v3_Arena(); + AddSC_azth_misc_plg(); + AddSC_azth_player_plg(); + AddSC_AzthWorldScript(); + AddSC_azth_commandscript(); + AddSC_AZTH(); + AddSC_challengemode(); + AddSC_guildhouse_npcs(); + AddSC_hearthstone(); + AddSC_playerstats(); + AddSC_BGItemLevel(); + AddSC_Professions_NPC(); + AddSC_PvPMode(); + AddSC_azth_smart_stone(); + AddSC_TimeWalking(); + AddSC_Custom_Rates(); +} diff --git a/src/loader.cpp b/src/loader.cpp deleted file mode 100644 index cf49711..0000000 --- a/src/loader.cpp +++ /dev/null @@ -1,5 +0,0 @@ -#include "../modules/mod-challenge-mode/src/scripts/loader.h" - -void Addmod_azerothshardScripts() { - AddSC_challengemode(); -}